diff --git a/.gitignore b/.gitignore index ea14c6f..a67a986 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,9 @@ android/ # macOS .DS_Store +# ignore prisma migrations +**/migrations + # @generated expo-cli sync-8d4afeec25ea8a192358fae2f8e2fc766bdce4ec # The following patterns were generated by expo-cli diff --git a/package.json b/package.json index 0dd0d90..b1c2cdc 100644 --- a/package.json +++ b/package.json @@ -58,6 +58,7 @@ "expo-updates": "0.25.25", "expo-web-browser": "~13.0.3", "express": "^4.21.0", + "fs-extra": "^11.2.0", "jsonwebtoken": "^9.0.2", "lucide-react-native": "^0.359.0", "nativewind": "^4.0.22", diff --git a/prisma/schema.prisma b/prisma/schema.prisma index eb1a038..72e00e2 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -1,75 +1,73 @@ -// This is your Prisma schema file, -// learn more about it in the docs: https://pris.ly/d/prisma-schema - -// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions? -// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init -// @see https://www.prisma.io/docs/getting-started/setup-prisma/add-to-existing-project/relational-databases/connect-your-database-typescript-postgresql - -// TODO : Cleanup comments afterwards generator client { provider = "prisma-client-js" } datasource db { provider = "postgresql" - // this is where the databse connection tkaes place url = env("DATABASE_URL") } -// * @see https://www.prisma.io/docs/orm/reference/prisma-schema-reference --> for what the different values represent -// ! @see https://www.prisma.io/docs/orm/reference/prisma-schema-reference#id --> explains id model User { id String @id @unique @default(uuid()) email String @unique password String - // ** Horrible security practice btw, but just for the sake of making things work atm, implement solution before pushing to production - plainTextPassword String? - refreshTokens RefreshTokens[] createdAt DateTime @default(now()) updatedAt DateTime @updatedAt + plainTextPassword String? + refreshTokens RefreshTokens[] } model RefreshTokens { id String @id @unique @default(uuid()) hashedToken String userId String - User User @relation(fields: [userId], references: [id], onDelete: Cascade) revoked Boolean @default(false) createdAt DateTime @default(now()) updatedAt DateTime @updatedAt + User User @relation(fields: [userId], references: [id], onDelete: Cascade) } model UserRegistrationDetails { - // TODO : Logic to randomly generate this value - userID Int @id @unique @db.Integer - // String type to support alphanumeric values + userID Int @id @unique username String @unique - // this will be the identifier to link us to the User database, allowing us to know which registered user's information this is associated with - emailDuplicate String @unique - degreeType String major String - // ? to indicate that DOB should be optional DOB String? CollegeYear Int pronouns String? Hobbies String? Gender String + emailDuplicate String @unique + degreeType String } -// this model will be used to store the summary format of the data -model RateMyProfessorDataSummary { - id String @id @unique @default(uuid()) //this will randomly generate an unique id - professorName String - numRatings String - rating Float - department String +model RateMyProfessorData { + id String @id @unique @default(uuid()) // primary key + department String + professorName String + avgDifficulty Float + avgRatings Float + wouldTakeAgain String + numRatings Int + // store the comments in the comment section here + //@see https://www.prisma.io/docs/orm/prisma-schema/data-model/relations/one-to-one-relations + //RateMyProfessorCompleteData RateMyProfessorCompleteData? + + // one professor may have multiple comments associated with them + RateMyProfessorComments RateMyProfessorComments[] } -// this model will be used to store the data about the professor and the comments relevant to the particular professor -model RateMyProfessorCompleteData { - id String @id @unique @default(uuid()) - professor_name String - rating Float - department String - comments Json[] +// TODO : foreign relaton model isn't fully working atm +// will simply push the data directly +model RateMyProfessorComments { + professor_name String + department String + comments String[] + foreign_linker_id String //foreign key --> @unique to ensure it follows the one-to-one relation we have setup + // for now, we will connect them manually instead + generated_id String @id @unique @default(uuid()) + // fields takes in the list of foregin key + // references takes in the key from the other table we are referencing + // store as JSON data instead + sentimentData Json[] + professorSummary RateMyProfessorData? @relation(fields: [foreign_linker_id], references: [id]) } diff --git a/results.json b/results.json new file mode 100644 index 0000000..b1a2e42 --- /dev/null +++ b/results.json @@ -0,0 +1 @@ +[[{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Shant Shahrigian","department":"Administration","link":"https://www.ratemyprofessors.com/professor/2840797"},{"avgRating":1,"avgDifficulty":5,"wouldTakeAgainPercent":0,"numRatings":2,"formattedName":"Tony Liss","department":"Administration","link":"https://www.ratemyprofessors.com/professor/2104635"},{"avgRating":2.2,"avgDifficulty":4.3,"wouldTakeAgainPercent":28.5714,"numRatings":35,"formattedName":"Joseph Davis","department":"Education","link":"https://www.ratemyprofessors.com/professor/514469"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Kara Pernicano","department":"Administration","link":"https://www.ratemyprofessors.com/professor/2557566"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Sameeullah Sher","department":"Administration","link":"https://www.ratemyprofessors.com/professor/2826404"},{"avgRating":3.3,"avgDifficulty":2.8,"wouldTakeAgainPercent":100,"numRatings":11,"formattedName":"Paul West","department":"Physics","link":"https://www.ratemyprofessors.com/professor/614234"},{"avgRating":2.5,"avgDifficulty":4.1,"wouldTakeAgainPercent":42.8571,"numRatings":22,"formattedName":"Zeev Dagan","department":"Administration","link":"https://www.ratemyprofessors.com/professor/647997"},{"avgRating":4,"avgDifficulty":4,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Warren Orange","department":"Administration","link":"https://www.ratemyprofessors.com/professor/2217453"},{"avgRating":1,"avgDifficulty":5,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Gregory Williams","department":"Administration","link":"https://www.ratemyprofessors.com/professor/931738"},{"avgRating":2,"avgDifficulty":5,"wouldTakeAgainPercent":0,"numRatings":1,"formattedName":"Ashiwel Undieh","department":"Administration","link":"https://www.ratemyprofessors.com/professor/2163461"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Tara Nachtigall","department":"Administration","link":"https://www.ratemyprofessors.com/professor/2720616"}],[{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Valerie Poulolo ","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/3023724"},{"avgRating":2.4,"avgDifficulty":3.2,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"Arnaldo Melendez","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/627511"},{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Lavie Margolin","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/2651196"},{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":-1,"numRatings":2,"formattedName":"Dawn Marczak","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/881164"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Alice Shepard","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/2632925"},{"avgRating":1.8,"avgDifficulty":4.1,"wouldTakeAgainPercent":0,"numRatings":12,"formattedName":"Belinda Smith","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/1031802"},{"avgRating":5,"avgDifficulty":1.7,"wouldTakeAgainPercent":100,"numRatings":3,"formattedName":"Debra Kennedy","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/2057494"},{"avgRating":4.5,"avgDifficulty":3,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Nkem Nkem Stanley-Mbamelu","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/1483114"},{"avgRating":1,"avgDifficulty":1,"wouldTakeAgainPercent":0,"numRatings":1,"formattedName":"Marie Nazon","department":"Advisor","link":"https://www.ratemyprofessors.com/professor/2637018"}],[{"avgRating":2.8,"avgDifficulty":4.5,"wouldTakeAgainPercent":-1,"numRatings":11,"formattedName":"Claude Brathwaite","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/884686"},{"avgRating":2.8,"avgDifficulty":3.8,"wouldTakeAgainPercent":0,"numRatings":9,"formattedName":"Cheryl Sterling","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1848473"},{"avgRating":5,"avgDifficulty":1.7,"wouldTakeAgainPercent":-1,"numRatings":3,"formattedName":"Zaheer Ali","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1848474"},{"avgRating":5,"avgDifficulty":1,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Heather Denyer","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/2264523"},{"avgRating":4.8,"avgDifficulty":2.4,"wouldTakeAgainPercent":100,"numRatings":8,"formattedName":"Herb Boyd","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1027622"},{"avgRating":4.6,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":7,"formattedName":"Timothy Mangin","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1971187"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Rebecca Wellington","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1977267"},{"avgRating":3.4,"avgDifficulty":2.7,"wouldTakeAgainPercent":53.8462,"numRatings":13,"formattedName":"Michelle Thompson","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/2382900"},{"avgRating":4.7,"avgDifficulty":3,"wouldTakeAgainPercent":-1,"numRatings":10,"formattedName":"Gregory Baggett","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1738693"},{"avgRating":5,"avgDifficulty":1.4,"wouldTakeAgainPercent":100,"numRatings":5,"formattedName":"Tanzeem Ajmiri","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/2771576"},{"avgRating":4.3,"avgDifficulty":3.7,"wouldTakeAgainPercent":-1,"numRatings":3,"formattedName":"Paula Austin","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1532959"},{"avgRating":3.7,"avgDifficulty":4,"wouldTakeAgainPercent":-1,"numRatings":3,"formattedName":"Jennifer Onyedum","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1864388"},{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Robert Gibbons","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/2560010"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Farnia Noel","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/2820341"},{"avgRating":2,"avgDifficulty":4.3,"wouldTakeAgainPercent":25,"numRatings":4,"formattedName":"Micheal Grove","department":"English","link":"https://www.ratemyprofessors.com/professor/2190789"},{"avgRating":1.5,"avgDifficulty":3,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Georgina Falu ","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/1977269"},{"avgRating":1,"avgDifficulty":2,"wouldTakeAgainPercent":0,"numRatings":1,"formattedName":"Tyrene Wright","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/2200134"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Abdul-Qasir Islam","department":"African-American Studies","link":"https://www.ratemyprofessors.com/professor/2804716"}],[{"avgRating":2.9,"avgDifficulty":3.7,"wouldTakeAgainPercent":32.2034,"numRatings":84,"formattedName":"Kareen Williams","department":"American Studies","link":"https://www.ratemyprofessors.com/professor/1505965"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"timothy nicholson","department":"American Studies","link":"https://www.ratemyprofessors.com/professor/2503934"},{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Christopher Burrell","department":"American Studies","link":"https://www.ratemyprofessors.com/professor/1706730"},{"avgRating":5,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Judy Hilkey","department":"American Studies","link":"https://www.ratemyprofessors.com/professor/1916699"},{"avgRating":5,"avgDifficulty":2.6,"wouldTakeAgainPercent":100,"numRatings":7,"formattedName":"Cody Nager","department":"American Studies","link":"https://www.ratemyprofessors.com/professor/2560955"},{"avgRating":1.5,"avgDifficulty":4,"wouldTakeAgainPercent":0,"numRatings":2,"formattedName":"Hajoe Moderegger","department":"American Studies","link":"https://www.ratemyprofessors.com/professor/2754367"}],[{"avgRating":3.9,"avgDifficulty":2.3,"wouldTakeAgainPercent":75,"numRatings":24,"formattedName":"Bernardo Chiachia M","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2701147"},{"avgRating":2.1,"avgDifficulty":3.8,"wouldTakeAgainPercent":0,"numRatings":20,"formattedName":"Arthur Spears","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/649436"},{"avgRating":4.6,"avgDifficulty":1.8,"wouldTakeAgainPercent":100,"numRatings":18,"formattedName":"Lindsay Parme","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1948966"},{"avgRating":4.9,"avgDifficulty":1.8,"wouldTakeAgainPercent":100,"numRatings":12,"formattedName":"Cecilia Salvi","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2619284"},{"avgRating":3.8,"avgDifficulty":2.2,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"Mohammed Nazammudin","department":"Engineering","link":"https://www.ratemyprofessors.com/professor/638342"},{"avgRating":4.1,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":6,"formattedName":"Simanique Moody","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1236207"},{"avgRating":5,"avgDifficulty":1.7,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"Melissa Huey","department":"Psychology","link":"https://www.ratemyprofessors.com/professor/1662729"},{"avgRating":5,"avgDifficulty":1.5,"wouldTakeAgainPercent":-1,"numRatings":2,"formattedName":"Kate Riley","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1468254"},{"avgRating":3,"avgDifficulty":3,"wouldTakeAgainPercent":0,"numRatings":1,"formattedName":"Samuel Byrd","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2345160"},{"avgRating":4,"avgDifficulty":2,"wouldTakeAgainPercent":0,"numRatings":1,"formattedName":"Kamal Soleimani","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2269467"},{"avgRating":4.5,"avgDifficulty":3.4,"wouldTakeAgainPercent":82.6087,"numRatings":23,"formattedName":"Stanley Thangaraj","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2150341"},{"avgRating":1.9,"avgDifficulty":3.3,"wouldTakeAgainPercent":-1,"numRatings":10,"formattedName":"Alice Baldwin Jones","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/851460"},{"avgRating":4.9,"avgDifficulty":1.5,"wouldTakeAgainPercent":100,"numRatings":11,"formattedName":"Omnia Khalil","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2738885"},{"avgRating":4.3,"avgDifficulty":3.2,"wouldTakeAgainPercent":100,"numRatings":9,"formattedName":"Monica Ortiz-Suloway","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2099404"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Jose Vazquez","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2093135"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Miriam Entin","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/3015471"},{"avgRating":2.4,"avgDifficulty":3,"wouldTakeAgainPercent":20.8333,"numRatings":126,"formattedName":"Asha Samad-Matias","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/515768"},{"avgRating":3.8,"avgDifficulty":1.6,"wouldTakeAgainPercent":-1,"numRatings":27,"formattedName":"Carol Laderman","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/547213"},{"avgRating":2.6,"avgDifficulty":3.1,"wouldTakeAgainPercent":36.3636,"numRatings":16,"formattedName":"Melissa Zavala","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1822471"},{"avgRating":4.6,"avgDifficulty":3.3,"wouldTakeAgainPercent":-1,"numRatings":11,"formattedName":"William (bill) Askins","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/544403"},{"avgRating":3.7,"avgDifficulty":2.6,"wouldTakeAgainPercent":63.6364,"numRatings":11,"formattedName":"Andrea Ariza Garcia","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2619282"},{"avgRating":3.4,"avgDifficulty":2.9,"wouldTakeAgainPercent":57.1429,"numRatings":7,"formattedName":"Rafael Munia","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2871157"},{"avgRating":4,"avgDifficulty":2,"wouldTakeAgainPercent":-1,"numRatings":2,"formattedName":"Dane Ruffin","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1902700"},{"avgRating":5,"avgDifficulty":1.5,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Lopez Joan Lopez","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2950950"},{"avgRating":4,"avgDifficulty":3,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"J Yarwood","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1142753"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Charles Rolph","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2801253"},{"avgRating":4,"avgDifficulty":2.5,"wouldTakeAgainPercent":-1,"numRatings":36,"formattedName":"D. Wall","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/320767"},{"avgRating":4.5,"avgDifficulty":2.6,"wouldTakeAgainPercent":-1,"numRatings":21,"formattedName":"Maggie Whitten","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1641321"},{"avgRating":3,"avgDifficulty":3.9,"wouldTakeAgainPercent":66.6667,"numRatings":13,"formattedName":"John Calagione","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/523958"},{"avgRating":4.8,"avgDifficulty":2.3,"wouldTakeAgainPercent":100,"numRatings":4,"formattedName":"Stuart Wright","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2615842"},{"avgRating":5,"avgDifficulty":3.3,"wouldTakeAgainPercent":100,"numRatings":3,"formattedName":"Shanelle Matthews","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2977984"},{"avgRating":2.5,"avgDifficulty":2.5,"wouldTakeAgainPercent":50,"numRatings":2,"formattedName":"Marcela Restrepo","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2912683"},{"avgRating":3.5,"avgDifficulty":1,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Robert Siebert","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2107109"},{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Adam Mikhail","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2994903"},{"avgRating":4,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Katherine Stefatos","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2914224"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Julie Lozano","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/3016236"},{"avgRating":2,"avgDifficulty":4.3,"wouldTakeAgainPercent":25,"numRatings":4,"formattedName":"Micheal Grove","department":"English","link":"https://www.ratemyprofessors.com/professor/2190789"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Luis Nieto","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2998301"},{"avgRating":3.7,"avgDifficulty":1.6,"wouldTakeAgainPercent":-1,"numRatings":41,"formattedName":"Diane Sank","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/143069"},{"avgRating":4.4,"avgDifficulty":2.3,"wouldTakeAgainPercent":86.9565,"numRatings":23,"formattedName":"Stuart Rockefeller","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2421580"},{"avgRating":4.8,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":18,"formattedName":"Bruce Burnside","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2636117"},{"avgRating":4.9,"avgDifficulty":2.3,"wouldTakeAgainPercent":100,"numRatings":15,"formattedName":"Matthew Reilly","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2317783"},{"avgRating":5,"avgDifficulty":1.2,"wouldTakeAgainPercent":100,"numRatings":12,"formattedName":"Scott Schwartz","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2708090"},{"avgRating":3.3,"avgDifficulty":3.2,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"Theodor Maghrak","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2038470"},{"avgRating":2.5,"avgDifficulty":4,"wouldTakeAgainPercent":33.3333,"numRatings":6,"formattedName":"Charles Dolph","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2702676"},{"avgRating":3,"avgDifficulty":1.2,"wouldTakeAgainPercent":0,"numRatings":4,"formattedName":"Branka Djuknic","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1780091"},{"avgRating":5,"avgDifficulty":2.8,"wouldTakeAgainPercent":75,"numRatings":4,"formattedName":"Leah Mollin-Kling","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2839164"},{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":-1,"numRatings":2,"formattedName":"Rocio Gil Martinez De Escobar","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/1782450"},{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Miriam Fried","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2820206"},{"avgRating":3.8,"avgDifficulty":2.2,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"Mohammed Nazammudin","department":"Engineering","link":"https://www.ratemyprofessors.com/professor/638342"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"James Tolleson","department":"Anthropology","link":"https://www.ratemyprofessors.com/professor/2869536"}],[{"avgRating":5,"avgDifficulty":2,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Shareah Taleghani","department":"Arabic","link":"https://www.ratemyprofessors.com/professor/1689106"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Jeremy Randall","department":"Arabic","link":"https://www.ratemyprofessors.com/professor/2782254"},{"avgRating":3.5,"avgDifficulty":2,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Rhoda Ismail","department":"Arabic","link":"https://www.ratemyprofessors.com/professor/1930518"},{"avgRating":5,"avgDifficulty":1,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Karim Elhaies","department":"Arabic","link":"https://www.ratemyprofessors.com/professor/2490952"},{"avgRating":3.5,"avgDifficulty":4,"wouldTakeAgainPercent":-1,"numRatings":2,"formattedName":"Iman Issa","department":"Arabic","link":"https://www.ratemyprofessors.com/professor/1375791"},{"avgRating":3.3,"avgDifficulty":2.7,"wouldTakeAgainPercent":33.3333,"numRatings":3,"formattedName":"Mohammed Tkachmita","department":"Arabic","link":"https://www.ratemyprofessors.com/professor/2661430"},{"avgRating":5,"avgDifficulty":1.5,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Mariam Elhaies","department":"Arabic","link":"https://www.ratemyprofessors.com/professor/2560798"}],[{"avgRating":2.8,"avgDifficulty":2.6,"wouldTakeAgainPercent":100,"numRatings":27,"formattedName":"M.T. Chang","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/80408"},{"avgRating":4.2,"avgDifficulty":3.3,"wouldTakeAgainPercent":100,"numRatings":14,"formattedName":"Jerrilyn Dodds","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/80412"},{"avgRating":3.6,"avgDifficulty":3.3,"wouldTakeAgainPercent":75,"numRatings":12,"formattedName":"Marta Gutman","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/563282"},{"avgRating":4.2,"avgDifficulty":2,"wouldTakeAgainPercent":-1,"numRatings":12,"formattedName":"Lee Weintraub","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/381204"},{"avgRating":3.1,"avgDifficulty":3.3,"wouldTakeAgainPercent":33.3333,"numRatings":9,"formattedName":"Ali Hocek","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/666143"},{"avgRating":4,"avgDifficulty":3.7,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"W. Garrison McNeil","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/836492"},{"avgRating":3.7,"avgDifficulty":4.7,"wouldTakeAgainPercent":66.6667,"numRatings":6,"formattedName":"Alberto Foyo","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2512130"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Jeremy Edmiston","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2189326"},{"avgRating":4.5,"avgDifficulty":1.5,"wouldTakeAgainPercent":-1,"numRatings":2,"formattedName":"Peter Gisolfi","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/666566"},{"avgRating":4.4,"avgDifficulty":3.4,"wouldTakeAgainPercent":85.7143,"numRatings":7,"formattedName":"Julia Brown","department":"English","link":"https://www.ratemyprofessors.com/professor/2378314"},{"avgRating":1,"avgDifficulty":3.5,"wouldTakeAgainPercent":0,"numRatings":2,"formattedName":"Jane Kim","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2509243"},{"avgRating":4,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"John Yurchyk","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2756440"},{"avgRating":5,"avgDifficulty":1,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"Kenneth Petrocca","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1817902"},{"avgRating":4,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Howard Duffy","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2228165"},{"avgRating":3,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Alfonso Oliva","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2871533"},{"avgRating":2,"avgDifficulty":3,"wouldTakeAgainPercent":0,"numRatings":1,"formattedName":"Joshua Jow","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2981198"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Dexter Ciprian","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2770478"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Abdullah Khawarzad","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2983018"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Burt Goncalves","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2000728"},{"avgRating":2.8,"avgDifficulty":3.2,"wouldTakeAgainPercent":16.6667,"numRatings":9,"formattedName":"Frank Melendez","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2092079"},{"avgRating":2.8,"avgDifficulty":3,"wouldTakeAgainPercent":40,"numRatings":5,"formattedName":"Cesare Birignani","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1916099"},{"avgRating":2.7,"avgDifficulty":4,"wouldTakeAgainPercent":33.3333,"numRatings":3,"formattedName":"Phillip Lee","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2168106"},{"avgRating":2.3,"avgDifficulty":4,"wouldTakeAgainPercent":25,"numRatings":4,"formattedName":"Oleksandra Topolnytska","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2932106"},{"avgRating":5,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"James Khamsi","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2216491"},{"avgRating":2,"avgDifficulty":4.3,"wouldTakeAgainPercent":25,"numRatings":4,"formattedName":"Micheal Grove","department":"English","link":"https://www.ratemyprofessors.com/professor/2190789"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Pablo Iglesias","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2386801"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Gonzalo Lopez","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2617593"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Kyle Dugdale","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2804532"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Damon Bolhassani","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/3017582"},{"avgRating":3.4,"avgDifficulty":4.2,"wouldTakeAgainPercent":75,"numRatings":33,"formattedName":"Brad Horn","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/516670"},{"avgRating":3.2,"avgDifficulty":3.6,"wouldTakeAgainPercent":100,"numRatings":9,"formattedName":"Gordon Gebert","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/80415"},{"avgRating":4.2,"avgDifficulty":3.9,"wouldTakeAgainPercent":80,"numRatings":8,"formattedName":"Sean Weiss","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1542989"},{"avgRating":3.7,"avgDifficulty":3.9,"wouldTakeAgainPercent":0,"numRatings":7,"formattedName":"Athanasios Haritos","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/664039"},{"avgRating":4.7,"avgDifficulty":2.8,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"Robert Twombly","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/80411"},{"avgRating":3.7,"avgDifficulty":3.7,"wouldTakeAgainPercent":66.6667,"numRatings":6,"formattedName":"Eliana Dotan","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2339550"},{"avgRating":4.3,"avgDifficulty":3,"wouldTakeAgainPercent":66.6667,"numRatings":6,"formattedName":"Christian Volkmann","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1103142"},{"avgRating":3.2,"avgDifficulty":3.8,"wouldTakeAgainPercent":0,"numRatings":5,"formattedName":"Timothy Collins","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/998450"},{"avgRating":4.3,"avgDifficulty":3.5,"wouldTakeAgainPercent":-1,"numRatings":4,"formattedName":"Johanna Dickson","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1308556"},{"avgRating":5,"avgDifficulty":1.8,"wouldTakeAgainPercent":100,"numRatings":4,"formattedName":"Jessica Larson","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2972800"},{"avgRating":4.3,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":3,"formattedName":"Suzanne Strum","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2839381"},{"avgRating":5,"avgDifficulty":2.5,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Olivia Vien","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2586348"},{"avgRating":5,"avgDifficulty":4,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Maria Bermudez","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2682771"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Bradley Horn","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2969656"},{"avgRating":3.5,"avgDifficulty":3.5,"wouldTakeAgainPercent":50,"numRatings":13,"formattedName":"Fabian Llonch","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/666169"},{"avgRating":3.6,"avgDifficulty":3.8,"wouldTakeAgainPercent":25,"numRatings":9,"formattedName":"Nandini Bagchee","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1194561"},{"avgRating":3.6,"avgDifficulty":3.9,"wouldTakeAgainPercent":-1,"numRatings":8,"formattedName":"Antonio Di Oronzo","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/768359"},{"avgRating":3.7,"avgDifficulty":2.8,"wouldTakeAgainPercent":100,"numRatings":8,"formattedName":"Ivan Rosa","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/677319"},{"avgRating":3.2,"avgDifficulty":3.4,"wouldTakeAgainPercent":40,"numRatings":8,"formattedName":"Dominick Pilla","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/836489"},{"avgRating":4.6,"avgDifficulty":2.5,"wouldTakeAgainPercent":-1,"numRatings":6,"formattedName":"Lance Brown","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/666623"},{"avgRating":4.8,"avgDifficulty":2.3,"wouldTakeAgainPercent":100,"numRatings":6,"formattedName":"Cassim Shepard","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2905387"},{"avgRating":4.3,"avgDifficulty":2.2,"wouldTakeAgainPercent":100,"numRatings":4,"formattedName":"Irma Ostroff","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/935221"},{"avgRating":4.5,"avgDifficulty":3.3,"wouldTakeAgainPercent":75,"numRatings":4,"formattedName":"Ahu Aydogan","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2668365"},{"avgRating":2.8,"avgDifficulty":3.8,"wouldTakeAgainPercent":66.6667,"numRatings":5,"formattedName":"June Williamson","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1240631"},{"avgRating":4,"avgDifficulty":4.5,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Jason Kim","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2381581"},{"avgRating":3.7,"avgDifficulty":3.3,"wouldTakeAgainPercent":66.6667,"numRatings":3,"formattedName":"Demir Purisic","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2555094"},{"avgRating":5,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Paul Ruppert","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2398168"},{"avgRating":4.5,"avgDifficulty":4,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"John Cunningham","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2608259"},{"avgRating":5,"avgDifficulty":4,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Tyler Survant","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2780593"},{"avgRating":4,"avgDifficulty":3,"wouldTakeAgainPercent":-1,"numRatings":1,"formattedName":"David Hotson","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2005652"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Jeffrey Roberson","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2788861"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Kaitlin Faherty","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2871539"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Jeremy Edmiston","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2189326"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Christian Martos","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2261892"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Brandt Graves","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2341274"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Jerome Haferd","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2714121"},{"avgRating":3.7,"avgDifficulty":3.7,"wouldTakeAgainPercent":41.6667,"numRatings":35,"formattedName":"Fran Leadon","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/459463"},{"avgRating":3.3,"avgDifficulty":4.1,"wouldTakeAgainPercent":-1,"numRatings":19,"formattedName":"Maria Berman","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/534511"},{"avgRating":3.1,"avgDifficulty":2.8,"wouldTakeAgainPercent":-1,"numRatings":12,"formattedName":"David Judelson","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/559512"},{"avgRating":4.6,"avgDifficulty":1.9,"wouldTakeAgainPercent":100,"numRatings":9,"formattedName":"Alan Feigenberg","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/770687"},{"avgRating":3.3,"avgDifficulty":4,"wouldTakeAgainPercent":50,"numRatings":6,"formattedName":"Denis Hoffman-Brandtt","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/1073870"},{"avgRating":4.5,"avgDifficulty":4.7,"wouldTakeAgainPercent":-1,"numRatings":3,"formattedName":"Antonio Furgiuelle","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/994122"},{"avgRating":1,"avgDifficulty":4.7,"wouldTakeAgainPercent":-1,"numRatings":3,"formattedName":"Andrew Zago","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/957834"},{"avgRating":5,"avgDifficulty":3,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Eduardo Alfonso","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2586343"},{"avgRating":5,"avgDifficulty":2.5,"wouldTakeAgainPercent":100,"numRatings":2,"formattedName":"Hillary Brown","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2756437"},{"avgRating":2,"avgDifficulty":1,"wouldTakeAgainPercent":0,"numRatings":1,"formattedName":"John Murray","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2724235"},{"avgRating":5,"avgDifficulty":1,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"Erik Forman","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2871537"},{"avgRating":3,"avgDifficulty":2,"wouldTakeAgainPercent":100,"numRatings":1,"formattedName":"VIREN BRAHMBHATT","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/3014547"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Beth Carliner","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2449292"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Mohammad Bolhassani","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2669811"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Alan Cation","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2364212"},{"avgRating":0,"avgDifficulty":0,"wouldTakeAgainPercent":-1,"numRatings":0,"formattedName":"Ruo Jia","department":"Architecture","link":"https://www.ratemyprofessors.com/professor/2879662"}]] \ No newline at end of file diff --git a/scraped_comments.json b/scraped_comments.json new file mode 100644 index 0000000..21f74a8 --- /dev/null +++ b/scraped_comments.json @@ -0,0 +1,273201 @@ +[ + { + "_id": { + "$oid": "6711d36ecd60fca157e59a4f" + }, + "professor_name": "Fardad Firooznia", + "rating": 2.7, + "department": "Biology department", + "comments": [ + { + "text": "This man expected us to read over 200 articles when only 1/200 will be on exam. Bio 101 is too much. I recommend you get an epermit so you can learn bio 1 properly. Fardad should be let go of the teaching position. God have mercy on you if you decide to take bio 1 at CCNY. I wish ePermit instead of CCNY", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d36ecd60fca157e59a50" + } + }, + { + "text": "I don't get how we are expected to remember all the information given in such a short amount of time for the difficult exams. If you are taking other classes, this course will feel very stressful. How is he the only professor for BIO101? IF YOU CAN, GET AN E-PERMIT! If for whatever reason you still choose to take this course, may God be with you.", + "pos": 0.029, + "neu": 0.881, + "neg": 0.089, + "_id": { + "$oid": "6711d36ecd60fca157e59a51" + } + }, + { + "text": "If you don't know much about bio or chemistry prior to taking this course, it will feel overwhelming. This professor expects way too much and goes through the topics extremely fast during lectures. You have to do A-LOT of reading/studying the textbook to understand. The exams are very difficult, and most of the questions require written responses.", + "pos": 0.0, + "neu": 0.952, + "neg": 0.048, + "_id": { + "$oid": "6711d36ecd60fca157e59a52" + } + }, + { + "text": "He's a good lecturer. If you go to office hours or see a tutor, you can get the information you need to do well. You just have to actually study.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d36ecd60fca157e59a53" + } + }, + { + "text": "Firooznia does not deserve the hate he gets here. Is he the most exceptional professor? No. Does he take pedantic to the next level? Yes. But he does explain concepts well during his lectures. There are just so many we have to learn in BIO 101 (or re-learn from high school) that it can be overwhelming if you miss a beat. Would take him again.", + "pos": 0.098, + "neu": 0.874, + "neg": 0.027, + "_id": { + "$oid": "6711d36ecd60fca157e59a54" + } + }, + { + "text": "Avoid. He himself is 100% superbly knowledgeable, but has made his class a deterrent for stem majors. His slides are incredibly simple and fail to elaborate on most concepts. He goes very fast and oftentimes skims over small details he would otherwise think is simple. This class essentially does FAR too much for \"intro level bio\" Take an e-permit!!", + "pos": 0.0, + "neu": 0.886, + "neg": 0.114, + "_id": { + "$oid": "6711d36ecd60fca157e59a55" + } + }, + { + "text": "BIO101 is a weed out course so it makes sense that it is somewhat difficult. However, it would seem that Firooznia goes an extra distance to ensure students cannot pass. Get an e-permit if you are a biology major or on the pre-med track, or avoid completely/take another science elective.", + "pos": 0.048, + "neu": 0.87, + "neg": 0.082, + "_id": { + "$oid": "6711d36ecd60fca157e59a56" + } + }, + { + "text": "If you think \"It's just biology, how hard can it be?\" then you're wrong, go take chem if this class isn't your major study area because for this school chem is way much easier!", + "pos": 0.073, + "neu": 0.803, + "neg": 0.124, + "_id": { + "$oid": "6711d36ecd60fca157e59a57" + } + }, + { + "text": "This prof is extremely tough. You will learn from lectures dont get me wrong, but they do not even begin to prepare you for exams. Exams are extremely hard, it is very hard to feel prepared, extremely long practice sets, that do not give you the answers, so they are also not very helpful. Genuinely way too difficult for an introductory class.", + "pos": 0.058, + "neu": 0.773, + "neg": 0.169, + "_id": { + "$oid": "6711d36ecd60fca157e59a58" + } + }, + { + "text": "For Bio 101 it was torture but for this class he was so chill. It is so adorable how passionate he is about plants. Gives a few exams but they are take home and he allows you to work with anyone you want as long as you write that you worked with them. He was busy with Bio 101 so he was lenient with us. Took in Spring 2022", + "pos": 0.186, + "neu": 0.784, + "neg": 0.03, + "_id": { + "$oid": "6711d36ecd60fca157e59a59" + } + }, + { + "text": "Don't be fooled by the term \"intro course\", you must put in the work to get the grade you want. Firooznia helps with that by holding his own recitation, always posting review questions, holding review sessions (in-person/zoom) for almost all exams. Little intimidating at first, but definitely cares about his students.", + "pos": 0.205, + "neu": 0.764, + "neg": 0.031, + "_id": { + "$oid": "6711d36ecd60fca157e59a5a" + } + }, + { + "text": "He is a smart man. But that's about it. It's a 1000 level course but realistically is at least a 2000. I would recommend you to avoid at all costs. I had my first academic-related mental breakdown over his course. The course is also quite disorganized, with new grading policies and guidelines being added and removed throughout the semester. AVOID.", + "pos": 0.073, + "neu": 0.785, + "neg": 0.142, + "_id": { + "$oid": "6711d36ecd60fca157e59a5b" + } + }, + { + "text": "Do yourself a favor and e-permit this class!!!", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d36ecd60fca157e59a5c" + } + }, + { + "text": "If you're taking 102 because of degree requirements, and you're not majoring in biology, stay away. He expects WAYYYY too much from you for a 100-level class. This class will eat into the time of your other classes. Unless you're extremely disciplined or interest in biology, it's not worth fretting over this class. Just find another science class.", + "pos": 0.054, + "neu": 0.919, + "neg": 0.027, + "_id": { + "$oid": "6711d36ecd60fca157e59a5d" + } + }, + { + "text": "Tons of reading from the textbook to articles, barely got by with a C. you have to study so much for this class daily. Exams are impossible to do if you haven't studied enough. Labs feel like it's a whole different class. I personally wouldn't recommend taking BIO 101 at CCNY, try and get an epermit.", + "pos": 0.043, + "neu": 0.921, + "neg": 0.036, + "_id": { + "$oid": "6711d36ecd60fca157e59a5e" + } + }, + { + "text": "Way too much to learn, and he speaks insanely fast. He's very rude and intimidating.\nAs if Gen bio 1 wasn't already a lot of material, he'll give you an insane amount of articles to learn too. \nIf you have no option but to take him, focus on the practice questions he gives, they're what will come on the test & record lecture + use khan academy.", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d36ecd60fca157e59a5f" + } + }, + { + "text": "He is far better than I expected based on the reviews. He's fair and clear on the requirements. Do practice sets, attend lectures and pay attention( even if he says lecture isn't mandatory), and submit labs based on requirements( he posts examples of good lab reports). He also teaches with real-life examples, which makes lectures engaging and fun.", + "pos": 0.238, + "neu": 0.724, + "neg": 0.038, + "_id": { + "$oid": "6711d36ecd60fca157e59a60" + } + }, + { + "text": "just get an ePermit. Students manage to get A's when they spend up to 8 hours/day studying but if you don't, this professor will make you rethink your career choices. He talks too fast in all his content, if you don't understand he'd literally repeat the exact same statement over again (as if it's supposed to help). WAY too hard for an intro course", + "pos": 0.053, + "neu": 0.923, + "neg": 0.024, + "_id": { + "$oid": "6711d36ecd60fca157e59a61" + } + }, + { + "text": "He's clearly a very knowledgeable man, but the way he conducts his class and transfers information isn't the best. Listen to the majority. His class will truly stress you out. I would recommend watching YouTube videos on lecture material they will help way more.", + "pos": 0.213, + "neu": 0.647, + "neg": 0.14, + "_id": { + "$oid": "6711d36ecd60fca157e59a62" + } + }, + { + "text": "He's terrible! If you can avoid taking this class please do. He's also very sassy (in a bad way)", + "pos": 0.087, + "neu": 0.568, + "neg": 0.344, + "_id": { + "$oid": "6711d36ecd60fca157e59a63" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d36fcd60fca157e59a65" + }, + "professor_name": "Bob Melara", + "rating": 4.6, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Melara's class is manageable if you stay on top of things. The lectures can be dry, but the assignments are straightforward. Unstuckstudy AI helped me prepare for exams efficiently.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a66" + } + }, + { + "text": "Melara is such a great professor, his lectures are easy to follow, he can be reached so easily and he gives so much extra credit so even if you fail all exams but got good grades on papers and did extra credit you could walk out with a B+ or A-.", + "pos": 0.272, + "neu": 0.691, + "neg": 0.036, + "_id": { + "$oid": "6711d36fcd60fca157e59a67" + } + }, + { + "text": "really fun class! the papers are essentially worksheets you fit to an essay format and the tests are fairly easy to get a good grade on as long as you actually study the material and take notes", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a68" + } + }, + { + "text": "Easy A", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a69" + } + }, + { + "text": "He goes way too fast writes notes in basically scribble and tries to put so much information all at once into an hour lecture and basically has you learn it on your own. I love psychology and this class has made me want to give up on it.", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a6a" + } + }, + { + "text": "I highly recommend taking Professor Melara's class at least once! He's super fun, and I promise you that the class is easy to pass if you just pay attention. If you can read the chapters of the textbook he assigns, you won't get lost at all. Highly recommend the class even if you're not a psych major and want to try the class out!", + "pos": 0.282, + "neu": 0.701, + "neg": 0.018, + "_id": { + "$oid": "6711d36fcd60fca157e59a6b" + } + }, + { + "text": "This was a class I took in the fall of 2022. I had a better interaction with the TA than the professor. Our online classes were fairly crowded, and the professor's attitude was terrible. He act like none of the students ever existed. The worst part was that no one would understand his notes since he would be so quick during the entire lecture.", + "pos": 0.073, + "neu": 0.799, + "neg": 0.127, + "_id": { + "$oid": "6711d36fcd60fca157e59a6c" + } + }, + { + "text": "I took this class fall 2021,It was a fully remote class but he was also teaching in-person as well.He is an amazing professor, easy to talk to.However,most of his TA's are unfair and think that they are the real boss but they aren't.He lets you rewrite papers if you go to the writing center and gives out extra credit.I would love to have him again.", + "pos": 0.186, + "neu": 0.762, + "neg": 0.052, + "_id": { + "$oid": "6711d36fcd60fca157e59a6d" + } + }, + { + "text": "Horrible handwriting, difficult to take notes. Rushes through lectures. No time for questions. Relies on TA's, Youtube, and Textbooks. Inaccessible through email. Told me to \"figure it out\" when I told him about my TA being unresponsive. Make friends in class to help with staying on track.", + "pos": 0.104, + "neu": 0.75, + "neg": 0.146, + "_id": { + "$oid": "6711d36fcd60fca157e59a6e" + } + }, + { + "text": "his handwriting is awful on the screen couldn't read half the words most times and he rushes most of the class, three papers but the last one is the hardest", + "pos": 0.0, + "neu": 0.935, + "neg": 0.065, + "_id": { + "$oid": "6711d36fcd60fca157e59a6f" + } + }, + { + "text": "I took Professor Melara as a first year student and he was the best professor I've had out of all the others I've taken this semester. His lectures are very interesting, and you will enjoy his lectures if you're someone who has a passion for psychology. I would take him again 10000%.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a70" + } + }, + { + "text": "He's a great professor!", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a71" + } + }, + { + "text": "You won't get any 1 on 1 time, its all through the TAs on your recitation. The asg literally tells you what to write for the 3 papers so they're more like long worksheets. He offers rewrites if you attend the Supplemental Instruction. Daily class \"quizzes\" to make sure you're paying attention but the questions are so easy. Zoom lecture available 2.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a72" + } + }, + { + "text": "He is a great professor, his class is super easy. Attendance is mandatory because he gives daily quizzes & he takes attendance at the beginning of class, its 4 questions and it is multiple-choice that can only be completed on i-Clicker. He gives weekly homework that can only be completed on LaunchPad. He offers weekly extra credit quizzes.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a73" + } + }, + { + "text": "He's a great teacher. Class consists of three papers, three exams, and one weekly homework assignment. The work isn't hard but it can be time consuming so DON'T wait last minute. As long as you do your work you'll pass. I actually learned a lot from this class. I'd definitely recommend!", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a74" + } + }, + { + "text": "He makes the material fun to learn and easy to understand. There is more than one way to have a good grade in the class as there are many opportunities. He is strict about deadlines, and his work is actually fun if you do them on time. There are quizzes every class about the lecture being taught on that day, not hard at all.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a75" + } + }, + { + "text": "His class makes you pay for a 70 dollar online textbook and this thing called iclicker, there's no loop hole and you need the textbook and iclicker to pass his class.", + "pos": 0.0, + "neu": 0.89, + "neg": 0.11, + "_id": { + "$oid": "6711d36fcd60fca157e59a76" + } + }, + { + "text": "This class is very easy. Bob made the lectures very interesting with his sense of humor. The fun papers suck but so does writing any paper. Easy A class tbh.", + "pos": 0.31, + "neu": 0.638, + "neg": 0.052, + "_id": { + "$oid": "6711d36fcd60fca157e59a77" + } + }, + { + "text": "This professor is very enthusiastic about his teachings. He is willing to help and answer questions his students may have. His exams are not difficult if you take good notes and stay on top of your homework. His \"fun papers\" are not difficult either if you pay attention and go to recitation as well.", + "pos": 0.307, + "neu": 0.673, + "neg": 0.021, + "_id": { + "$oid": "6711d36fcd60fca157e59a78" + } + }, + { + "text": "You wont be bored during his lectures! Makes psych really fun to learn about, just hated the 3 fun papers but doable. Read the textbook, weekly hw completely based off textbook, easy iclicker class participation, and go to SI. Youll be fine! Super kind & funny teacher. Provides notes and 3 tests are 50 mc 50min on bb. Take him!!", + "pos": 0.334, + "neu": 0.634, + "neg": 0.032, + "_id": { + "$oid": "6711d36fcd60fca157e59a79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d36fcd60fca157e59a7b" + }, + "professor_name": "Brandon Judell", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Prof Judell was such a joy and pleasure to have! He is extremely sweet. kind and hilarious. Practically every class we had a great time and always looked forward to the next one. It's a shame that he retired because we would have loved to visit him during the following semester. He is an amazing person and extremely inspirational!!", + "pos": 0.391, + "neu": 0.573, + "neg": 0.036, + "_id": { + "$oid": "6711d36fcd60fca157e59a7c" + } + }, + { + "text": "Professor Judell was honestly such an amazing mentor. He had also put his students first and made sure that we all had an opportunity to learn more about the arts and the history of its presence in New York City. I feel sad that we are his last MHC class because others can't say they they were taught by the BRANDON JUDELL: GENIUS & ICON!!!", + "pos": 0.168, + "neu": 0.791, + "neg": 0.041, + "_id": { + "$oid": "6711d36fcd60fca157e59a7d" + } + }, + { + "text": "richar", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a7e" + } + }, + { + "text": "This class was much better than I expected. Taking his lectures really made me feel at ease and made me comfortable speaking in front of my peers. He cares about his students and is very understanding. The lecture/work is easy and straightforward. One of the best professors I've had, take his class for speech", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a7f" + } + }, + { + "text": "He's amazing!!! Take him for speech. Thanks to him, I no longer feel shy or scared when speaking in public. He truly cares about his students and he's lectures are extremely easy to follow. I wish I could retake his class (also he likes SEVENTEEN, the group).", + "pos": 0.335, + "neu": 0.558, + "neg": 0.107, + "_id": { + "$oid": "6711d36fcd60fca157e59a80" + } + }, + { + "text": "Best professor I've taken hands down. He creates a welcoming, hilarious, and engaging environment for everyone and made my first semester of college a better experience overall. His class and field trips were the things I looked forward to most. Highly recommend his class.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a81" + } + }, + { + "text": "Absolutely hilarious! My fav professor no question.", + "pos": 0.514, + "neu": 0.314, + "neg": 0.173, + "_id": { + "$oid": "6711d36fcd60fca157e59a82" + } + }, + { + "text": "Professor Judell is probably the best professor you'll ever come across. He eases you into the world of arts without making it feel like a chore. You'll come out of every class in a lightened mood. Along with a few written assignments, you'll be taken to shows as well. Professor is hilarious and easy to talk to. His class is worth every second.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a83" + } + }, + { + "text": "LITERALLY THE BEST EVER! He is so funny and cares a lot about his students. He also has meaningful feedback and allows the class to be a safe space for everyone. I loved having him and his energy was always top tier. If you're reading this, because I know you will eventually, I would honestly let you fail me just to take your class again LOL", + "pos": 0.352, + "neu": 0.609, + "neg": 0.039, + "_id": { + "$oid": "6711d36fcd60fca157e59a84" + } + }, + { + "text": "I've never been a fan of public speaking but this class has helped me improve and become more comfortable doing it. He's a great and caring professor who's always looking to give tips and help when he can. The only work given was speeches you'd have to present in class. He's a lighthearted and kind soul. You won't regret taking this class.", + "pos": 0.381, + "neu": 0.602, + "neg": 0.017, + "_id": { + "$oid": "6711d36fcd60fca157e59a85" + } + }, + { + "text": "Professor Judell is one of the most charismatic professors. He makes the class genuinely fun and makes it a comfortable space for everyone to be able to present their speeches. I highly recommend taking him. Not a harsh grader and gives great feedback. Prepare to laugh and prepare to maybe end up on one of his slides like I did.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a86" + } + }, + { + "text": "Best Speech professor someone could take at ccny!! He actually cares about his students and makes sure to make everyone feel comfortable in his class. I enjoyed his small jokes lol. Not a harsh grader at all, just have fun! Brandon Judell is simply the BEST. YOU DON'T HAVE TO THINK TWICE ABOUT TAKING HIM.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a87" + } + }, + { + "text": "Professor Judell is very caring and funny. Classes are chill and he makes you want to be there. I enjoyed doing the speeches even though I tend to be very nervous. \n\nP.S. someone get him a cat pls :))", + "pos": 0.262, + "neu": 0.688, + "neg": 0.05, + "_id": { + "$oid": "6711d36fcd60fca157e59a88" + } + }, + { + "text": "He's proof that there are good people/teachers in this world. A+", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a89" + } + }, + { + "text": "Professor Judell is definitely the best professor at CCNY. His class made CCNY worth it. Wish I could've taken him for MHC 101 as well.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a8a" + } + }, + { + "text": "Such an amazing professor. I had him online and I wouldve loved to see how his in person classes are. Extremely funny, gives amazing and helpful feedback, and makes public speaking enjoyable. I would definitely take another class of his. I had an amazing time!", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a8b" + } + }, + { + "text": "I took this class virtually. So it might be different for people who will take it on campus. Nevertheless I enjoyed the class. Very easy. You just have listen to others speeches and do couple to speeches. Those are fun to do too.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a8c" + } + }, + { + "text": "A good professor", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a8d" + } + }, + { + "text": "Professor Judell is, hands down, one of the best teachers I've had in my entire life. His classes are always fun and everyone has a good time. He jokes around a lot and we mostly watch movies or learn about art and their importance in culture and society, with few papers/projects. He's also caring and takes the time to talk to his students.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d36fcd60fca157e59a8e" + } + }, + { + "text": "Literally the best professor at CCNY. From the first moment you meet him he is absolutely hilarious, and as you get to know him he is the most caring and sweetest person you will ever meet. He works so hard to get us to go to shows, has so many interesting stories, and will literally be there for you 24/7. Take him!!!!!!!", + "pos": 0.201, + "neu": 0.773, + "neg": 0.025, + "_id": { + "$oid": "6711d36fcd60fca157e59a8f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d370cd60fca157e59a91" + }, + "professor_name": "James Lepree", + "rating": 4.7, + "department": "World Civilizations department", + "comments": [ + { + "text": "I loved learning with Professor Lepree! Very interesting lectures", + "pos": 0.507, + "neu": 0.493, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a92" + } + }, + { + "text": "A good professor that isn't very harsh on the grading, which makes it easier to enjoy the class. There are a couple of papers that are 3 pages long along with some assignments given every month but their very easy and straightforward as long as you give it a try. so in conclusion a pretty easy class with a chill teacher.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a93" + } + }, + { + "text": "Very amaizing and caring professor! Also gives very interesting and great lectures. He is a very good professor and he will help you do good in his class", + "pos": 0.475, + "neu": 0.525, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a94" + } + }, + { + "text": "Professor Lepree is by far one of the best professors you can ever take at CCNY! If you want a caring professor with lenient grading system please take this professor. He will give a lot of papers to write throughout the semester but he gives amazing feedback and a lot of time to write these papers! Do yourself a favor and take his class!", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a95" + } + }, + { + "text": "Professor Lepree is the best ! He's super sweet and understanding. He gives many chances to turn in anything you missed. He's kind with the gradings and gives encouraging feedback/comments on assignments. I personally found the class very interesting and flexible. I'm glad I took it this semester !", + "pos": 0.408, + "neu": 0.56, + "neg": 0.032, + "_id": { + "$oid": "6711d370cd60fca157e59a96" + } + }, + { + "text": "He flexibility regarding late submissions and is understanding if you're unable to attend a class. He promptly addresses emails and questions related to lectures or assignments. His teaching style is marked by a compassionate and caring approach, coupled with genuine enthusiasm for the subject matter. Assignments are reasonable", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a97" + } + }, + { + "text": "He readily accepts late assignments and promptly responds to emails or questions regarding lectures and assignments. He accommodates absences from classes.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a98" + } + }, + { + "text": "He is very lenient when it comes to handing in late assignments, he is accommodating if you can't attend a class. \nHe is quick to respond to any emails/questions about lectures or assignments. \nThere are a lot of papers but easy writes.", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a99" + } + }, + { + "text": "He has a caring and compassionate approach. He is enthusiastic in the material he teaches. Gives reasonable assignments and offers support. You will have enough time to complete the papers and will kindly give you an extension given you give enough time to notify him. Participation counts.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a9a" + } + }, + { + "text": "Professor James is the best!! Literally a caring person. Gave extra time if really needed. His class was online and it was really interesting. Take him!!!", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a9b" + } + }, + { + "text": "Many interesting and infomative lectures", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a9c" + } + }, + { + "text": "This is one of the best Professors at CCNY. He is compassionate, helpful and very encouraging. He stays on topic, he gives feedback and he is willing to help you. An amazing Profe. Participate, do your assignments. This Profe is wonderful!", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a9d" + } + }, + { + "text": "You'll do fine as long as you do the work. Lepree is knowledgeable about the topics covered. He gives a reasonable number of papers with more than enough time to finish. Recommend that you participate in class regularly. Homework is minimal, mostly reading a couple of pages. We didn't read all the books he listed at the beginning of the semester.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a9e" + } + }, + { + "text": "Professor LePree is an absolutely amazing professor. He is an expert in the academic area he teaches, and genuinely wants his students to succeed. Compassion and brilliance is not possessed by every professor. The course assignments are fascinating and grading criteria clear. Finally, he is disability friendly so communicate issues upfront.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59a9f" + } + }, + { + "text": "It has been a great experience. He is a very thoughtful teacher who puts a lot of thought into how he presents the material. His lessons were engaging, useful, and he was very patient with everyone in class always encouraging his students to try. I would highly recommend him to anyone interested in learning World history | Arts and humanities.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59aa0" + } + }, + { + "text": "Professor LePree honostly loves his job, loves the subject, and it shows in his enthusiastic teaching. You will do well if you do the work. Period. Just do the work, and don't make excuses two weeks after the due date just because it's an online class. Just do the work, its not so hard and not so much.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59aa1" + } + }, + { + "text": "He was a great professor who was very interested in what he was teaching and wanted us to be interested as well.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59aa2" + } + }, + { + "text": "It's really cool that he is an expert on Medieval Europe. You can ask him anything about Medieval Europe and he will answer it for you. As long as you do the readings and the papers you can pass", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59aa3" + } + }, + { + "text": "Class is very easy. It doesn't really require any time just read the prompts for the papers and the \"book\" you're supposed to base your papers on and it's an easy A. There are like 4 papers total and he will postpone the due date anytime you ask, very understanding. Easy grader as long as you put in all required information.", + "pos": 0.169, + "neu": 0.804, + "neg": 0.027, + "_id": { + "$oid": "6711d370cd60fca157e59aa4" + } + }, + { + "text": "Professor LePree is a respected historian and an enthusiastic teacher. He was very gracious when I needed accommodations and genuinely wants his students to succeed. Grading is based upon three thoughtful written assignments and class participation. I truly hope to take Professor LePree again.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59aa5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d370cd60fca157e59aa7" + }, + "professor_name": "Douglas Troeger", + "rating": 2, + "department": "Computer Science department", + "comments": [ + { + "text": "Worst professor ever hust retire already he should retire he's the joe Biden of city college", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d370cd60fca157e59aa8" + } + }, + { + "text": "It's always been about love and hate, now let me say I'm the biggest hater\nI hate the way that you walk, the way that you talk, I hate the way that you dress\nI hate the way that you sneak diss, if I catch flight, it's gon' be direct", + "pos": 0.064, + "neu": 0.669, + "neg": 0.267, + "_id": { + "$oid": "6711d370cd60fca157e59aa9" + } + }, + { + "text": "what an absolutely useless class, If you're not great at coding this class isn't for you. It is a required course too so no avoiding it. I wish i was in CCNY after her retires, i just cant do this anymore.", + "pos": 0.131, + "neu": 0.738, + "neg": 0.131, + "_id": { + "$oid": "6711d370cd60fca157e59aaa" + } + }, + { + "text": "I am so happy for future students like 20 years from now this guy wont exist and the future students wont have to go through this useless class", + "pos": 0.204, + "neu": 0.704, + "neg": 0.092, + "_id": { + "$oid": "6711d370cd60fca157e59aab" + } + }, + { + "text": "Useless course with no outside resources. Professor tries hard to come off as a nice guy but really isnt. Will respond rudely if he doesn't like your question. Clearly takes pride in making the class unnecessarily difficult and enjoys when you struggle. Grades very harshly. Only way to do well is to kiss up a lot by going to office hours.", + "pos": 0.27, + "neu": 0.569, + "neg": 0.161, + "_id": { + "$oid": "6711d370cd60fca157e59aac" + } + }, + { + "text": "Even though he let spring 2024 off easier than other semesters, for future 335 students: focus more on the 2nd half of semester rather than the 1st half. First two quizzes are very easy to score points on, midterm is doable, but project & final are the hardest. This course is still TERRIBLE. However if you have no critical thinking skills, gg!", + "pos": 0.096, + "neu": 0.829, + "neg": 0.075, + "_id": { + "$oid": "6711d370cd60fca157e59aad" + } + }, + { + "text": "I will throw party the day he leave city college because of retirement.", + "pos": 0.181, + "neu": 0.738, + "neg": 0.081, + "_id": { + "$oid": "6711d370cd60fca157e59aae" + } + }, + { + "text": "He would rather fail people but he fail to understand that everyone is doing poorly due to his teaching style and improper testing format.", + "pos": 0.0, + "neu": 0.759, + "neg": 0.241, + "_id": { + "$oid": "6711d370cd60fca157e59aaf" + } + }, + { + "text": "This class had me stressing so much, i cannot even look at the professor anymore, it causes ptsd of the all nighters that i had to do to barely get a D. Troeger might seem like one of the nicest guys on earth, but the content that he is teaching and the difficulty of the quizzes and exams make him seem like he want students to fail.", + "pos": 0.109, + "neu": 0.768, + "neg": 0.123, + "_id": { + "$oid": "6711d370cd60fca157e59ab0" + } + }, + { + "text": "i really dont recommend taking this class but you cannot avoid this man at all since this is a required course. This class has literally destroyed all my spirit not because of the difficulty but because of the amount of time you will have to spend on studying. If you can, please E-permit this class if you can, i wish i did.", + "pos": 0.145, + "neu": 0.734, + "neg": 0.121, + "_id": { + "$oid": "6711d370cd60fca157e59ab1" + } + }, + { + "text": "This class is extremely hard!!!\nI recommend studying/practicing everyday and attend office hours! Also find a study group in your class.", + "pos": 0.16, + "neu": 0.772, + "neg": 0.069, + "_id": { + "$oid": "6711d370cd60fca157e59ab2" + } + }, + { + "text": "He goes to lectures and make office hours way to time consuming and confuse the students instead of teaching the basics. He does not make it understandable to students especially those who do not have functional programming knowledge or Dr. Racket. Everyone failed yet he still have not come to the conclusion his teaching method is over outdated!!!!", + "pos": 0.0, + "neu": 0.898, + "neg": 0.102, + "_id": { + "$oid": "6711d370cd60fca157e59ab3" + } + }, + { + "text": "You know what. I am going to say it. Most people who take this class are idiots who refuse to study. You should be fine as long as you pay attention to the lectures and follow the rubric for tests. Most CCNY students cannot do that. I am used to working hard. I am in Macaulay Honors and I will be going to MIT for grad school. You are just lazy.", + "pos": 0.066, + "neu": 0.838, + "neg": 0.097, + "_id": { + "$oid": "6711d370cd60fca157e59ab4" + } + }, + { + "text": "It's difficult to stay ahead in a class like this because it's impossible to find outside resources. Professor assigns homework that is not collected, but it's highly recommended to do it if you want to understand the concepts. Although the material is complicated, he notices students who put in effort and genuinely wants us to succeed.", + "pos": 0.161, + "neu": 0.811, + "neg": 0.028, + "_id": { + "$oid": "6711d370cd60fca157e59ab5" + } + }, + { + "text": "His quizzes and exams are tough and it's very easy to fall behind in this class. He struggles to finish lectures on time and has you attend office hours to wrap up what he couldn't do in class. He does care about his students and provides notes for all his lectures, but good luck finding additional resources if you struggle to understand his notes.", + "pos": 0.161, + "neu": 0.76, + "neg": 0.079, + "_id": { + "$oid": "6711d370cd60fca157e59ab6" + } + }, + { + "text": "If you are gonna take this class, take the am class not pm. He's being very tough for the pm class the whole semester. For the am exam, all questions are from hw and his notes, he also tells them what to remember for the final exam. But pm class got like a whole set of difficult new questions. What a joke.", + "pos": 0.088, + "neu": 0.844, + "neg": 0.068, + "_id": { + "$oid": "6711d370cd60fca157e59ab7" + } + }, + { + "text": "This class is so painful... be ready to meet 4 times a week rather than the scheduled 2.", + "pos": 0.123, + "neu": 0.711, + "neg": 0.166, + "_id": { + "$oid": "6711d370cd60fca157e59ab8" + } + }, + { + "text": "Go over his handwritten notes that he uploads on Microsoft Teams (after the respective class) and do the HW problems. If you do both, that is enough. I found taking notes of his notes (both class and uploaded notes) to help a lot. Proofs matter more than code. Note down what he's looking for in the proofs, and include those things every time.", + "pos": 0.097, + "neu": 0.864, + "neg": 0.04, + "_id": { + "$oid": "6711d370cd60fca157e59ab9" + } + }, + { + "text": "You only get points if you do things the exact way he wants it. The material isn't difficult, however, his lecture and approach are so pedantic and convoluted that it's difficult to discern how you're supposed to answer anything. He's incredibly condescending and isn't helpful in office hour. He doesn't answer questions directly- is unapproachable.", + "pos": 0.036, + "neu": 0.882, + "neg": 0.082, + "_id": { + "$oid": "6711d370cd60fca157e59aba" + } + }, + { + "text": "I don't think his teaching methods are good or his level of exams are fair. However the only reason I didn't rate him a 1 is because he really does care about the students passing. He continuously held these night office hours everyday where he would give really good feedback on our homework, or just go over lessons we didn't understand.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d370cd60fca157e59abb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d371cd60fca157e59abd" + }, + "professor_name": "Harold Falk", + "rating": 2.4, + "department": "Physics department", + "comments": [ + { + "text": "DO NOT TAKE THIS CLASS! Never under any circumstances! Half the class dropped and he was rude to students. I rarely write reviews but this class was that awful.", + "pos": 0.0, + "neu": 0.804, + "neg": 0.196, + "_id": { + "$oid": "6711d371cd60fca157e59abe" + } + }, + { + "text": "Dont bother. Ive taken classes with tough professors, Falk was plain sadistic. Look forward to a strict attendance policy, getting called on to answer questions when you least expect, and obscure test questions with no partial credit given. Plus the odd racist comment. HW & lab are mandatory but not graded. 2/3 of the class ended up dropping.", + "pos": 0.043, + "neu": 0.819, + "neg": 0.138, + "_id": { + "$oid": "6711d371cd60fca157e59abf" + } + }, + { + "text": "Falk is a tough guy,but it is possible to get an A in the class if you invest a lot of your time in it. His passing score is 55,anything above 80 is an A. Lectures are pretty heavy, and it feels like he overcomplicates the material. Exams are hard but fair, they somewhat resemble problems from homework and lecture examples. Almost no partial credit", + "pos": 0.092, + "neu": 0.769, + "neg": 0.139, + "_id": { + "$oid": "6711d371cd60fca157e59ac0" + } + }, + { + "text": "Just don't do it. In short, Falk is quite stingy with partial credit, he does not allow you to use a formula sheet or calculator during exams, and the difficulty of the exams don't match up with the quality of homework and classwork problems he assigns. Save yourself the money, time, and effort with this one and find a different physics professor.", + "pos": 0.081, + "neu": 0.784, + "neg": 0.135, + "_id": { + "$oid": "6711d371cd60fca157e59ac1" + } + }, + { + "text": "If you are serious about engineering or physics, Falk is one of the best teachers. Most of his class is Q&A. He seems rude but will spend a lot of time on anything. My exams were in the sixties These are decent and you will pass with less. The final was easier and had over 100 possible points. The class is hard but prepares you for future classes.", + "pos": 0.085, + "neu": 0.851, + "neg": 0.064, + "_id": { + "$oid": "6711d371cd60fca157e59ac2" + } + }, + { + "text": "Do. Not. Take. Under. Any. Circumstances. You will regret it for life.", + "pos": 0.0, + "neu": 0.797, + "neg": 0.203, + "_id": { + "$oid": "6711d371cd60fca157e59ac3" + } + }, + { + "text": "Lectures are boring and not very useful. He skims through most of the topics and expects us to know them as if we know quantum physics. Very unreasonable with the grading, as well. He has no mercy when it comes to giving partial credit. If youre wrong, youre wrong. If youre partly right, then youll receive a minimum of 5 points. Just horrible.", + "pos": 0.091, + "neu": 0.694, + "neg": 0.215, + "_id": { + "$oid": "6711d371cd60fca157e59ac4" + } + }, + { + "text": "His exams are really difficult and the grading is strict -- expectations are high. Calculators and reference tables are not allowed, which means they require mostly symbolic answers. If you write an answer that was supposed to be a vector instead of a scalar, then you will get no credit at all. His exams are also copyrighted, which is odd.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d371cd60fca157e59ac5" + } + }, + { + "text": "The warnings and rumors were true. About more than half of the students dropped the class. My biggest regret was not listening to my guts and believing that the class wouldn't be too bad. Boy was I wrong. Two failed exams and not an ounce of dignity were what I received from the class. Please, take it over the Summer or the following semester!!!", + "pos": 0.135, + "neu": 0.71, + "neg": 0.156, + "_id": { + "$oid": "6711d371cd60fca157e59ac6" + } + }, + { + "text": "Mandates homework, but does not grade it and lab reports are not graded. First test was similar to lecture examples (did well), second test was tricky and confusing (failed), and the third test was surprisingly straightforward. On the last week of lecture he reviewed an old final. Took advantage of that, studied effectively, and earned a B grade.", + "pos": 0.165, + "neu": 0.713, + "neg": 0.122, + "_id": { + "$oid": "6711d371cd60fca157e59ac7" + } + }, + { + "text": "Similarly to the guy below me, Falk's class was a big reason for me dropping my physics major. No curving in a subject where most of the class will only get 50% of an average exam right. Falk also has no tolerance for lateness even with subway delays. He must enjoy failing people or something rather than actually trying to teach...", + "pos": 0.047, + "neu": 0.84, + "neg": 0.113, + "_id": { + "$oid": "6711d371cd60fca157e59ac8" + } + }, + { + "text": "+Smart, sometimes funny, answers all the questions, lectures are interesting. -his lectures are slides from Mathematica, scrolling up&down is annoying. Final grade is based on 3 exams (20% ea) and a final (40%), nothing else. Exams are OK but no partial credit. Calls students and asks questions - super stressful. A minute late - you're absent.", + "pos": 0.18, + "neu": 0.654, + "neg": 0.165, + "_id": { + "$oid": "6711d371cd60fca157e59ac9" + } + }, + { + "text": "I recommend Prof. Falk to you as the man to go for 208. I know many people felt that he wasn't a wonderful professor, but he definitely made 208 clear as a whistle. Don't be misled! Go with Falk!", + "pos": 0.201, + "neu": 0.756, + "neg": 0.043, + "_id": { + "$oid": "6711d371cd60fca157e59aca" + } + }, + { + "text": "Falk is clearly brilliant in his own regard, but he does not know how to teach. He will routinely ask students if they have questions and not see the 3-4 hands that go up. He is extremely rude to students and will take attendance before the starting time. If you are late, you will be marked absent regardless of circumstance. Take any other prof.", + "pos": 0.061, + "neu": 0.875, + "neg": 0.064, + "_id": { + "$oid": "6711d371cd60fca157e59acb" + } + }, + { + "text": "I came into Falk's class thinking that it would be manageable; intense reading, poor communication, and difficult homework are things that I expect. Not only was Falk worse than I imagined, but he was a true piece of work. He's horribly rude, doesn't teach properly, gives wrong expectations for exams, and is practically inaccessible. DON'T TAKE!", + "pos": 0.068, + "neu": 0.669, + "neg": 0.263, + "_id": { + "$oid": "6711d371cd60fca157e59acc" + } + }, + { + "text": "Don't get cocky- this class will be your entire study-time/workload the entire semester w/ falk. Heed the warnings and satire 5/5 reviews. Avoid him 100% D O N O T T A K E F A L K If your options are take falk or take someone next semester, take the latter. Show up late? get called out. Pull out your phone? Get called out. WEBASSIGN SMH", + "pos": 0.068, + "neu": 0.828, + "neg": 0.104, + "_id": { + "$oid": "6711d371cd60fca157e59acd" + } + }, + { + "text": "WORST WORST AND WORST. NEVER EVER TAKE THIS PROFESSOR. THINK A THOUSAND TIMES BEFORE EVEN ADDING HIS CLASS TO YOUR SHOPPING CART. HIGHLY NOT RECOMMENDED!", + "pos": 0.0, + "neu": 0.592, + "neg": 0.408, + "_id": { + "$oid": "6711d371cd60fca157e59ace" + } + }, + { + "text": "His test grading is harsh & unclear. Test questions come from homework/notes but if you don't use his notation you'll get 0 points for a right answer. Your whole grade depends on tests only. He has an attitude problem so don't be surprised if he rudely addresses you in class. Also does not answer students' questions well. I regret taking his class.", + "pos": 0.035, + "neu": 0.733, + "neg": 0.232, + "_id": { + "$oid": "6711d371cd60fca157e59acf" + } + }, + { + "text": "BEWARE of this guy, He is possibly the worst professor ever lived. He doesn't teach, uses completely different examples on lecture than from book, the GPA grade is based on only 4 exams with 4 questions each. even as a person he is horrible.", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d371cd60fca157e59ad0" + } + }, + { + "text": "Falk is the worst professor Ive ever had. The way he teaches is just going over problems that dont have the same format as the homework so when you go to do the homework you basically have to teach yourself everything. The problems in class dont have clear questions so you dont know what your finding until he gets through most of the problems.", + "pos": 0.0, + "neu": 0.801, + "neg": 0.199, + "_id": { + "$oid": "6711d371cd60fca157e59ad1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d372cd60fca157e59ad3" + }, + "professor_name": "Antoni Piza", + "rating": 3.4, + "department": "Music department", + "comments": [ + { + "text": "Lots of writing, listening, watching. Get ready to submit many papers weekly. Nice, available attitude, but tough grader", + "pos": 0.179, + "neu": 0.735, + "neg": 0.086, + "_id": { + "$oid": "6711d372cd60fca157e59ad4" + } + }, + { + "text": "do not take him he will overwork you", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59ad5" + } + }, + { + "text": "I love working from home. Great mudic examples, but heavy on reading and writing. Expect to work hard and do not plagiarize with AI. He just knows. In case of doubt, ask, he's always available, responds quickly.", + "pos": 0.12, + "neu": 0.767, + "neg": 0.113, + "_id": { + "$oid": "6711d372cd60fca157e59ad6" + } + }, + { + "text": "Get ready to listen to a lot of music and write a long paper every week. The instructor is very web savy. Dont try to fool him. Responds to emails quick; grading criteria is very clear. One of the best classes beyond my major. He's cordial and caring; and knows the materials inside out. Dont waste your time if you dont care about learning.", + "pos": 0.227, + "neu": 0.739, + "neg": 0.034, + "_id": { + "$oid": "6711d372cd60fca157e59ad7" + } + }, + { + "text": "Got caught plagiaring with AI. However, no doubt he is a Wonderful professor, and a hard grader, emails are answered right away, even on vacations and lots of music files and readings in this engaging class. be ready: Be ready, lots of reading, writing, and listening required each week. Completing all of the asssignments is super important.", + "pos": 0.276, + "neu": 0.703, + "neg": 0.02, + "_id": { + "$oid": "6711d372cd60fca157e59ad8" + } + }, + { + "text": "no. just no.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59ad9" + } + }, + { + "text": "I did all my assignments/exams on time with perfect scores and got a 0/6 on one exam which should've put me around A- but I got a B- with zero explanation.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59ada" + } + }, + { + "text": "AVOID THIS PROFESSOR AT ALL COSTS! I worked my butt off to get an A. I literally had to draw and write up a picture of god, miss my first son being born, and he expected me to communicate with animals through music. If you value your mental health, DO NOT TAKE HIM. Thank god he gave me an A but never again I'm taking him.", + "pos": 0.069, + "neu": 0.858, + "neg": 0.073, + "_id": { + "$oid": "6711d372cd60fca157e59adb" + } + }, + { + "text": "I got a good grade so Im not just some sour student.\n\nThis man is an embarrassment to the American education system. You know exactly why I say this Antoni", + "pos": 0.086, + "neu": 0.828, + "neg": 0.086, + "_id": { + "$oid": "6711d372cd60fca157e59adc" + } + }, + { + "text": "Don't take this class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59add" + } + }, + { + "text": "The only difficult part if this class is that you have to write minimum 8-9 pages weekly, HANDWRITEN. The lectures and not hard at all. You just have to write notes and those essays every week, but easy work. But he doesn't request anything else, I took this class asynchronus.", + "pos": 0.093, + "neu": 0.874, + "neg": 0.033, + "_id": { + "$oid": "6711d372cd60fca157e59ade" + } + }, + { + "text": "just avoid. this guy asks for too much and you'll be spending more time on this class than you will for your other classes related to your major. stay away.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d372cd60fca157e59adf" + } + }, + { + "text": "assigns too much unnecessary work. I am a biochem major and this class is by far the most intensive class I've ever taken. if you ever sign up for his class, you will need god on your side because he makes you handwrite and type the assignments, even exams. do not take unless if you want to overwork yourself to the brim", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59ae0" + } + }, + { + "text": "Great professor but hard grader. Responds emails immediately, including holidays.The the course is interesting with lots of music files and readings.Since the class is online, there is a lot of listening, reading and writing every week. You have to do all the homework if you want to pass. My interactions with the professor were frequent and polite.", + "pos": 0.121, + "neu": 0.853, + "neg": 0.026, + "_id": { + "$oid": "6711d372cd60fca157e59ae1" + } + }, + { + "text": "he makes everything very complicated than it should be. very harsh late work policy, no makeups period. makes you submit a million things, all of them both typed and handwritten. do not take. I was warned by some people about him, didn't listen, and ended up dropping the day before classes start. don't be like me who doesn't listen and stay away", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d372cd60fca157e59ae2" + } + }, + { + "text": "I am so grateful I took his class. I took his asynchronous classes so I only spent 3.5 hours MAX each week doing the required work. He was super understanding when I missed a deadline. The only difficult part was reading the chapters. But even that was light. Overall, this class was super great and I would take it again for how organized it was.", + "pos": 0.203, + "neu": 0.754, + "neg": 0.043, + "_id": { + "$oid": "6711d372cd60fca157e59ae3" + } + }, + { + "text": "Eye-opening lectures and readings. The professor is always available to discuss the video lectures and readings. Be ready to do lots of homework, not fun but in the end lots of fun. The grading policy is very straightforward, each week you must do your homework, so don't fall behind. Grades are cumulative; there's no final exam or final paper.", + "pos": 0.094, + "neu": 0.835, + "neg": 0.071, + "_id": { + "$oid": "6711d372cd60fca157e59ae4" + } + }, + { + "text": "No essays, no midterms, or finals. But a 600-word summary is due every Wednesday. You can also just write down the sentences from the video and change into your own words. There are five unit quizzes and 2 attempts, you can find the answers online. I got a B because I was missing almost 1/3 of the weekly summaries and one exam.", + "pos": 0.042, + "neu": 0.89, + "neg": 0.068, + "_id": { + "$oid": "6711d372cd60fca157e59ae5" + } + }, + { + "text": "I took Professor Piza fall 2021, it was an asynchronous online class. We wrote a lot in his class, it was not 5 papers each it was more like 2 paragraphs for each written assignment. Quizzes are every week. Overall good professor and interesting topics learned in the class. And you have to watch the videos cause those are really important.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59ae6" + } + }, + { + "text": "Great class, lots of writing, many essays and exams; BE CAREFUL with plagiarism; do not copy from web. He just knows.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59ae7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d372cd60fca157e59ae9" + }, + "professor_name": "Roy Mittelman", + "rating": 4.4, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Dr. Mittelman is a rare gem in the CCNY faculty. After taking two semesters of classes with him, I am confident that my experience at CCNY has been enriched, as a result. He cares about all of his students deeply and provides various opportunities and guidance to those who need it. If you have a chance to sign up for a class with him, take it!", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59aea" + } + }, + { + "text": "This course as a lot of reading. Read the first 2-3 pages, then get a summarie, engage in class, and adapt your writing to his style! Essay every 2 weeks, take home midterm & final, pop quizes. Tips, use quotes in your essay. Go to office hours and ask what to improve on. Answer easy questions in class. Hard class!!! Not an easy A.", + "pos": 0.13, + "neu": 0.817, + "neg": 0.053, + "_id": { + "$oid": "6711d372cd60fca157e59aeb" + } + }, + { + "text": "Youre gonna have to read a lot every week and write a 2 page paper. Midterm and final were both 5-6 page papers. \n\nMittelman is a really cool guy, make worthwhile contributions to discussion and hell give a solid grade. Super cool guy", + "pos": 0.235, + "neu": 0.68, + "neg": 0.085, + "_id": { + "$oid": "6711d372cd60fca157e59aec" + } + }, + { + "text": "I mean, what can I say... Professor Mitellman was just loads of fun! Expect to write several papers over the course of the semester, but he's a fairly lenient grader. Attendance matters BIG TIME, extra credit is also available. The only way you won't get an A in this course is if you're lazy and your work reflects that.", + "pos": 0.144, + "neu": 0.807, + "neg": 0.049, + "_id": { + "$oid": "6711d372cd60fca157e59aed" + } + }, + { + "text": "Mittelman is the best professor I have encountered at City College. His classes are insightful, thought-provoking and leave you feeling energized. If you're looking for a class where you will truly LEARN something, then take a class with him! He creates a wonderful classroom culture and I could not say enough great things about him. Thank you Prof!", + "pos": 0.28, + "neu": 0.66, + "neg": 0.061, + "_id": { + "$oid": "6711d372cd60fca157e59aee" + } + }, + { + "text": "This professor seems to take pleasure in failing students, he wants every student to think exactly like him. He has no respect for differences of opinion or for difficult circumstances. I submitted every assignment, somehow still failed for not coming early enough to class, he uses punctuality as a power move to force people to retake his course.", + "pos": 0.089, + "neu": 0.744, + "neg": 0.167, + "_id": { + "$oid": "6711d372cd60fca157e59aef" + } + }, + { + "text": "Mittelman is amazing. He is hilarious, engages every student in his lectures. He is very caring, the syllabus is super clear and he gives a lot of extensions to hand in work. If you show up, you'll be happy with your grade. Truly easy class to pass.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59af0" + } + }, + { + "text": "He's a nice guy but gives too many papers and is really vague with what he wants. So if you don't write what he wants get ready for your grade to dip. The readings have the same theme the whole semsester so its difficult to write different things on each paper. He calls on almost everyone every class.", + "pos": 0.079, + "neu": 0.833, + "neg": 0.088, + "_id": { + "$oid": "6711d372cd60fca157e59af1" + } + }, + { + "text": "Professor Mittelman is a great teacher and a fair grader. Love his teaching style. Our voice is as important as anyone else in the class. He makes a difficult topic like the Holocaust easy to understand. I plan on taking another class with him.", + "pos": 0.311, + "neu": 0.646, + "neg": 0.044, + "_id": { + "$oid": "6711d372cd60fca157e59af2" + } + }, + { + "text": "Dr. Mittleman is A GEM. He manages to turn a grim subject (Holocaust in Films) into something that students actually enjoy learning about. He gave us important background information about the films we watched and actively encouraged us to participate in class discussions and through written reaction papers. Amazing experience. Great Professor.", + "pos": 0.267, + "neu": 0.678, + "neg": 0.056, + "_id": { + "$oid": "6711d372cd60fca157e59af3" + } + }, + { + "text": "Dr. M is one of the best and most passionate professors at CCNY. He assigns 1 reading every week (13 total readings) which you then give a 1-2 page analysis on, 2 take-home exams and a final fieldwork paper. Everything you need to know is on the syllabus. He also emails the class the dates of assignments for the next few weeks for your convenience.", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59af4" + } + }, + { + "text": "He is such a fun teacher. One that really cares about the students. He is inspired by his material and they are really fun to read. However, he does go on long personal rants at times. Totally worth it in my opinion. He talks politics in class. If you don't like that, BEWARE. He really made me love coming to class. Always talking up Jewish Studies", + "pos": 0.243, + "neu": 0.703, + "neg": 0.053, + "_id": { + "$oid": "6711d372cd60fca157e59af5" + } + }, + { + "text": "Come on time because it could lower your grade if you don't. There are a lot of papers and a lot of readings so if you don't like reading a lot than this class isn't for you.", + "pos": 0.0, + "neu": 0.89, + "neg": 0.11, + "_id": { + "$oid": "6711d372cd60fca157e59af6" + } + }, + { + "text": "He gives 1 paper to do every week which he grades out of a score of ten. He doesn't go over what he wants in a paper because he wants you to \"explore\" but that made it difficult to get anything above a 6/10. Over the semester you figure out what he wants in a paper and it gets better. He's hilarious and tries to get to know his students. Cool guy.", + "pos": 0.127, + "neu": 0.833, + "neg": 0.04, + "_id": { + "$oid": "6711d372cd60fca157e59af7" + } + }, + { + "text": "One of my favorite teachers! He does a really good job explaining things and makes class fun. He assigns a lot of papers, but they're only 1-2 pgs and you can find most of the info on the readings on the internet. If you show up and pay attention, the class should be easy.", + "pos": 0.17, + "neu": 0.803, + "neg": 0.026, + "_id": { + "$oid": "6711d372cd60fca157e59af8" + } + }, + { + "text": "Dr. M is one of the best things about CCNY! I took his class a while ago and just stumbled across my notes, which made me realize how much I got from his class. His words about life, learning and how the world works have shaped the way I think! Do yourself a favor and sign up for his class today!", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59af9" + } + }, + { + "text": "Majority of grade based on reactions to readings (essay format). No group projects. Learns names by second or third class. Humorous and full of interesting stories. Keeps classroom environment open for students to give opinions, but will counter opinions to keep students thinking. Stern about tardiness. Multiple extra credit opportunities.", + "pos": 0.183, + "neu": 0.789, + "neg": 0.028, + "_id": { + "$oid": "6711d372cd60fca157e59afa" + } + }, + { + "text": "One of the nicest people you'll ever meet. Really cares about his students and keeping them interested in what he's teaching about. It can get a little dull at times but I never regretted taking the class. He's really nice and it's an easy elective credit", + "pos": 0.338, + "neu": 0.634, + "neg": 0.028, + "_id": { + "$oid": "6711d372cd60fca157e59afb" + } + }, + { + "text": "He is a really good professor and he tells you what he expects from day one. His classes are fun, but very demanding. You can and probably will get an A, but not necessarily an easy A. Just do the work and show up to class.", + "pos": 0.081, + "neu": 0.805, + "neg": 0.113, + "_id": { + "$oid": "6711d372cd60fca157e59afc" + } + }, + { + "text": "Mittelman's lectures are very clear. In the History of the Afterlife class, the first half of the semester is reading 24/7 at home, writing 3 reaction papers and discussion in class. The second half is basically powerpoint notes. There are only two tests, multiple choice with 30-40 questions each. EC and readings given except 1 book (really cheap).", + "pos": 0.048, + "neu": 0.952, + "neg": 0.0, + "_id": { + "$oid": "6711d372cd60fca157e59afd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d373cd60fca157e59aff" + }, + "professor_name": "James Lewis", + "rating": 3.9, + "department": "History department", + "comments": [ + { + "text": "Laid back professor who encourages debate and participation. He's very knowledgeable and gets straight to his point.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b00" + } + }, + { + "text": "Take his class. Chill class and chill professor. Walked out learning a lot. He also encourages participation instead of forcing it.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b01" + } + }, + { + "text": "Chill professor. Lecture type of class but encourages students to participate and have discussions.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b02" + } + }, + { + "text": "I took Professor James Lewis for a class on modern European history. His course was well structured and the grading criteria was crystal clear. Professor Lewis cares about the success of his students, and went out of his way to make sure we understood the material. Assignments were very manageable and he provided extra credit questions on final.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b03" + } + }, + { + "text": "Great proffesor. This class is lecture heavy and very fast pace. TBH I didn't really pay attention in this class, but as long as you get the essays done then you won't fail.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b04" + } + }, + { + "text": "Gives enough time to do the assignment but they are very long. Lectures are messy.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d373cd60fca157e59b05" + } + }, + { + "text": "Mostly disorganized and lectures can quickly turn to rants or class discussions. But the assignments are graded fairly loosely so I would not worry about it.", + "pos": 0.106, + "neu": 0.783, + "neg": 0.111, + "_id": { + "$oid": "6711d373cd60fca157e59b06" + } + }, + { + "text": "Great History Prof. only gives 3 assignments per semester. You have to read a lot and be present in class but should be fairly easy as each assignment is 1 month long.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b07" + } + }, + { + "text": "A very knowledgeable professor, his class is VERY chill, and we are given 3 assignments total that is it. Granted each assignment is long and contains questions from each reading but he gives alot of time and is chill with attendance. He is also a nice grader and has great jokes. We also have class discussions at times as we may get off topic.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b08" + } + }, + { + "text": "Second time taking him. He gives meaningful lectures and gives inside details of the socialist movement, which is way better than many professors in ccny already. However, I do agree to others 1 point reviews that he does not give feedback, but clear instructions at the same time. I would say he is a fair grader since I bs papers and still got 90+.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b09" + } + }, + { + "text": "Professor Lewis was an excellent professor for HIST 20600. His lectures were engaging, the subject was interesting, and the class was easy. Professor Lewis is upfront with you - this is an easy A class. The 1-star reviews are correct, though - he gives no feedback on assignments (although instructions are clear), and he never responds to emails.", + "pos": 0.244, + "neu": 0.724, + "neg": 0.031, + "_id": { + "$oid": "6711d373cd60fca157e59b0a" + } + }, + { + "text": "Never responded back to any emails Unclear grading criteria", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d373cd60fca157e59b0b" + } + }, + { + "text": "Professor was hard to reach. Gave me the wrong grade. When emailed about it there was no response. Highly do not recommend if you are paying out of pocket.", + "pos": 0.032, + "neu": 0.702, + "neg": 0.266, + "_id": { + "$oid": "6711d373cd60fca157e59b0c" + } + }, + { + "text": "No good things can be said about Professor Lewis other than the class is easy. I have never experienced him as an in person professor but as an online one he is insensitive and apathetic. He does not give feedback. He does not respond to emails. He will blame you for your shortcomings with no accountability. His tone is very belittling.", + "pos": 0.028, + "neu": 0.789, + "neg": 0.183, + "_id": { + "$oid": "6711d373cd60fca157e59b0d" + } + }, + { + "text": "He is so disorganized. I had all A grades on my papers. He gave me a C.", + "pos": 0.0, + "neu": 0.848, + "neg": 0.152, + "_id": { + "$oid": "6711d373cd60fca157e59b0e" + } + }, + { + "text": "The class consisted of 3 homeworks (30%, 30%, 40%). There were no lectures! This means you had to read all the assigned readings on your own and do the work on your own. My problem with this is I could've done the same thing w/o paying tuition so I feel this course was wasted money. Also gave me the incorrect final grade & wasn't able to reach him", + "pos": 0.0, + "neu": 0.871, + "neg": 0.129, + "_id": { + "$oid": "6711d373cd60fca157e59b0f" + } + }, + { + "text": "I cannot comment on his teaching since this was an online course, but the assignments were straightforward. This class was similar to high school history and isn't that hard. Grades very lenient as long as it looks like you tried.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b10" + } + }, + { + "text": "Very nice professor. He only assigns 4 assignments and no mid-terms nor finals. His lecture is based entirely on the reading for the assignments. You don't have to read much to finish the assignments. Easy A class. Lecture is not necessary and he takes attendance occasionally.", + "pos": 0.117, + "neu": 0.84, + "neg": 0.043, + "_id": { + "$oid": "6711d373cd60fca157e59b11" + } + }, + { + "text": "I love him, you will too. Lectures are not entirely necessary to understand the assignments, but answers to assignments are given out in lectures which is helpful. He has 4 \"exams\" which are just take-home assignments. When it comes to the exams, make sure to write in detail when he does not mention the word \"briefly\" (quality + quantity).", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b12" + } + }, + { + "text": "such an easy class!! super understanding and there's only a few assignments throughout the course. he's super light hearted and funny and genuinely knows how to get everyones attention", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b13" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d373cd60fca157e59b15" + }, + "professor_name": "Niel Shell", + "rating": 2.9, + "department": "Mathematics department", + "comments": [ + { + "text": "shell is better compared to other math professors here. he is an EXTREMELY lenient grader and he is genuinely a nice guy. dropped one exam and there were no hws but the review sheets were basically exactly the exam. he made the final too so it was not bad at all. only writing bc everyone is giving him low ratings when he isn't that guy at all", + "pos": 0.166, + "neu": 0.779, + "neg": 0.055, + "_id": { + "$oid": "6711d373cd60fca157e59b16" + } + }, + { + "text": "One of the worst math professors ever! He likes to fail his students and deduct points. He made many mistakes on the board and did not teach the math. He memorized math and jotted it down.", + "pos": 0.062, + "neu": 0.708, + "neg": 0.23, + "_id": { + "$oid": "6711d373cd60fca157e59b17" + } + }, + { + "text": "Super generous with partial credit, however grading policy is steep. Lowest of four tests gets dropped, mess up on two, your grade is done. 60% Class tests, 40% Final. Makes a couple of mistakes during the lecture so if you are unfamiliar with the material, it can interfere with your learning. Review is very similar to exams and final.", + "pos": 0.139, + "neu": 0.753, + "neg": 0.108, + "_id": { + "$oid": "6711d373cd60fca157e59b18" + } + }, + { + "text": "Shell is one of the decent professors out there. Lectures can be confusing but pay attention in class, and use Leonard as a resource, you will be fine. You need to work hard to get a score in the class. Prof will be available to answer questions in office hours. Quite quick on emails as well. The grading policy is purely based on exams though.", + "pos": 0.07, + "neu": 0.863, + "neg": 0.067, + "_id": { + "$oid": "6711d373cd60fca157e59b19" + } + }, + { + "text": "Doesn't teach, just reads what he wrote on the board and makes things more complicated than it has to be. Learned everything online or through reading because you will not learn anything from the lectures.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d373cd60fca157e59b1a" + } + }, + { + "text": "Do not take this professor. He may be a kind person but his teaching skills and grading are horrendous. Save yourself the misery.", + "pos": 0.182, + "neu": 0.531, + "neg": 0.287, + "_id": { + "$oid": "6711d373cd60fca157e59b1b" + } + }, + { + "text": "A lot of people will be mad because it is a difficult class. That is a reality you will have to accept. Professor Shell is probably one of the better professors for Calc 2. The grade is all tests so be prepared, he is a fair grader and will look at mistakes or possible points back if you believe it to be there", + "pos": 0.135, + "neu": 0.755, + "neg": 0.111, + "_id": { + "$oid": "6711d373cd60fca157e59b1c" + } + }, + { + "text": "He's not the greatest professor out there, but not as demonic as other students say. It is tough to get a C in his class, but it is possible. Do the homework and his review sheets. Ask questions if you don't understand. Go to tutoring. If you fail you only have yourself to blame. Going on RMP to review bomb won't bring your GPA back.", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d373cd60fca157e59b1d" + } + }, + { + "text": "If you take Shell, you will definitely lost in any of his classes. He writes the questions and answers on the board without explaining what he is doing. He memorizes math and skips steps, not teaching. I do not recommend taking his class.", + "pos": 0.057, + "neu": 0.849, + "neg": 0.094, + "_id": { + "$oid": "6711d373cd60fca157e59b1e" + } + }, + { + "text": "Shell is way better than some other profs here, if he made a mistake on your exam, he'll gladly fix it, i've seen it happen a few times. He always gave out review sheets for every exam (PLEASE do them) and doesn't mind answering questions people ask in class from reviewing a step to reexplaining the whole problem. I would gladly take him again", + "pos": 0.145, + "neu": 0.786, + "neg": 0.069, + "_id": { + "$oid": "6711d373cd60fca157e59b1f" + } + }, + { + "text": "Stay away from him, anyway you will fail and will repeat the course with another professor, but unfortunately, after he damages your GPA.", + "pos": 0.0, + "neu": 0.685, + "neg": 0.315, + "_id": { + "$oid": "6711d373cd60fca157e59b20" + } + }, + { + "text": "Worst of the worst! We do not know why he loves to fail students easily.", + "pos": 0.217, + "neu": 0.356, + "neg": 0.427, + "_id": { + "$oid": "6711d373cd60fca157e59b21" + } + }, + { + "text": "idk why there's so many negative reviews. i took him last semester, and while it's true that lots failed, i don't think it was because of him. he was very accessible and open for questions. he made us reviews when we asked for them, and made exams very similar to those. he was very generous with partial credit too. use leonard as a source too.", + "pos": 0.117, + "neu": 0.77, + "neg": 0.113, + "_id": { + "$oid": "6711d373cd60fca157e59b22" + } + }, + { + "text": "The only good thing about this man is that we take attendance for each other and save the metro card since it is a useless class. Worst class ever if you attend it. The majority of us either fail or drop the course or even change the major from engineering to any major else or transfer to another school. CCNY is not a good place for stem majoring.", + "pos": 0.074, + "neu": 0.744, + "neg": 0.182, + "_id": { + "$oid": "6711d373cd60fca157e59b23" + } + }, + { + "text": "DO NOT TAKE THIS MAN. He will really damage you and damage the math department's reputation more than it is because of his actions and intentions toward us as students unprofessionally.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d373cd60fca157e59b24" + } + }, + { + "text": "We took the third exam with this who called a professor and gave us only 40 minutes to do the exam. He has intentionally failed us. I am blaming myself that I did not drop the course once he said to us that all of his students in the last semester got zero.", + "pos": 0.031, + "neu": 0.857, + "neg": 0.111, + "_id": { + "$oid": "6711d373cd60fca157e59b25" + } + }, + { + "text": "He says something and does the opposite. He promised us the exam will be after Thanksgiving, then he said before Thanksgiving. Do not trust anything that he says. He plays mental games and then fails us. Stay away from his class.", + "pos": 0.096, + "neu": 0.787, + "neg": 0.117, + "_id": { + "$oid": "6711d373cd60fca157e59b26" + } + }, + { + "text": "One of the few professors who will LOVE to fail the entire class easily. Stay away.", + "pos": 0.308, + "neu": 0.545, + "neg": 0.147, + "_id": { + "$oid": "6711d373cd60fca157e59b27" + } + }, + { + "text": "The worst class ever. He fail people easily, no sympathy.", + "pos": 0.133, + "neu": 0.331, + "neg": 0.536, + "_id": { + "$oid": "6711d373cd60fca157e59b28" + } + }, + { + "text": "Please do not take him. He is one of the worst options for Calc 2. A very harsh grader and does not curve AT ALL. The entire class either failed or barely passed. For your own sanity take someone else.", + "pos": 0.047, + "neu": 0.736, + "neg": 0.217, + "_id": { + "$oid": "6711d373cd60fca157e59b29" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d374cd60fca157e59b2b" + }, + "professor_name": "Izidor Gertner", + "rating": 2.7, + "department": "Computer Science department", + "comments": [ + { + "text": "He plays favoritism and your grade really depends on how he feels about you. Tip: participate in class, make yourself know, ask questions, make small talks with him outside of class so he knows your face/name.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b2c" + } + }, + { + "text": "Salutations, JD at your service. Despite my irregular attendance and limited participation, during the final project, I drew inspiration from peers and presented my semester's learning. Your generosity in awarding me an A, despite my sporadic presence, as a graduating student, is deeply appreciated.", + "pos": 0.244, + "neu": 0.721, + "neg": 0.035, + "_id": { + "$oid": "6711d374cd60fca157e59b2d" + } + }, + { + "text": "I took him in Spring 2023 Semester taking CSC 210 and I got A and I took him again in Fall 2023 Semester taking CSC 342 and got A. Even if you submit your work late and skip classes and quizzes, as long as you complete the take home exams and project assignments and put hard work/effort and answer everything accurately, you should be set for an A.", + "pos": 0.0, + "neu": 0.98, + "neg": 0.02, + "_id": { + "$oid": "6711d374cd60fca157e59b2e" + } + }, + { + "text": "Avoid him if you can. He doesn't care for the students. You can't ask for extensions under fear. He berates singular students during class periods. The amount of work you get is incongruent for how much you learn. Your grade is just a random check on how long your reports are and if you have a bunch of pictures. He is not worth it at all.", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d374cd60fca157e59b2f" + } + }, + { + "text": "I got an A because I told him my situation. However, he gives too much homework without writing it down on Slack. If you try to argue with him, just accept you are on his bad side. For his quizzes and tests you have to write in pen and if you cross off anything get ready for that question to get a zero.", + "pos": 0.073, + "neu": 0.843, + "neg": 0.084, + "_id": { + "$oid": "6711d374cd60fca157e59b30" + } + }, + { + "text": "Jd", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b31" + } + }, + { + "text": "I took him in Spring 2023 Semester. I dropped back in Fall 2022 due to his mistreatment of me getting help from him. I'm still scared of him and he lacks structure in teaching and hard exams, although I didn't attend some of the classes, but because of my good grades in HW and presentations in projects along with participation, I landed with an A.", + "pos": 0.082, + "neu": 0.873, + "neg": 0.045, + "_id": { + "$oid": "6711d374cd60fca157e59b32" + } + }, + { + "text": "I have to keep it PG but I have a lot of adjectives I could use to describe this man. He gives lots of homework, quizzes, and tests. He knows he's not fair and will give you lots of work in a short amount of time. However, if you're on his good side he'll pass you with an A. It really just depends on how well you present yourself to him.", + "pos": 0.084, + "neu": 0.884, + "neg": 0.032, + "_id": { + "$oid": "6711d374cd60fca157e59b33" + } + }, + { + "text": "I was lucky enough to take him online. Assembly Language isnt easy and for me quite boring. He is nice grader and doesnt want to fail students. If you put in the work and show you care by asking him questions every now and then; odds are you'll do well.", + "pos": 0.222, + "neu": 0.678, + "neg": 0.1, + "_id": { + "$oid": "6711d374cd60fca157e59b34" + } + }, + { + "text": "Take zheng peng instead!!! Terrible professor study all Semster to barely pass. Zheng has more structure and is better for 343", + "pos": 0.112, + "neu": 0.734, + "neg": 0.154, + "_id": { + "$oid": "6711d374cd60fca157e59b35" + } + }, + { + "text": "Useful material, terrible class and execution. Professor cannot teach very well and doesn't answer questions particularly well either but the material is straightforward. Very messy with assignments, but it seems like the class is graded only with the final project -- I missed an entire test and project and still got an A.", + "pos": 0.11, + "neu": 0.731, + "neg": 0.16, + "_id": { + "$oid": "6711d374cd60fca157e59b36" + } + }, + { + "text": "This guy is something else. He plays mind games (bluffs a lot). Try to pay attention during lectures because if you do that you most likely won't have to read the textbook (although reading is not much work). For more helpful advice, it's best that you reach out to people who take the class previously bc those things cannot be mentioned here ;)", + "pos": 0.174, + "neu": 0.806, + "neg": 0.02, + "_id": { + "$oid": "6711d374cd60fca157e59b37" + } + }, + { + "text": "Teaching was all over the place and I wish topics were explained better. Would be easier if he recorded his lectures so we could go back and review what he said during class.\nHowever his grading is not harsh at all. He was very lenient and nice and allowed retakes. He said if we do well on the final report he would base our final grade on only that", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b38" + } + }, + { + "text": "Terrible professor. The professor is very unclear with requirements and changes them on a whim. Also, the professor assigns long homework late at night and expects you to submit by morning. I got an A but jeez, he is a terrible professor.", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d374cd60fca157e59b39" + } + }, + { + "text": "You'll have a harder time understanding what the professor wants in an assignment, than the actual assignment itself. That itself speaks volume for what type of professor you'll be dealing with. Some famous quotes: \"where is title page\" \"student gets A+++++\" \"DEAR STUDENT\" \"please send me direct message\" \"Self evaluation\" Good luck students", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b3a" + } + }, + { + "text": "to the comment before me, this website is named \"rate my professor\" not \"Rate my course.\" I can tell that you really interested about the topic of this course, good for you. But do you really think this professor teaches well??????????????????", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b3b" + } + }, + { + "text": "The other students here just don't care about learning, they just want to BS and get a good grade. If you work hard and care to learn about FPGAs you will love this class. You have a great opportunity to learn real programming here. I learned so much that I was able to get a job with FPGAs at a big finance company in NYC. Do the work it pays off!", + "pos": 0.219, + "neu": 0.734, + "neg": 0.047, + "_id": { + "$oid": "6711d374cd60fca157e59b3c" + } + }, + { + "text": "- Lazy - NO LECTURES/NO OFFICE hours - Disorganized - Assignments come in last minute with unclear tutorial - Nasty attitude - Speaks over people with genuine questions and only answers questions that HE wants - Watches TV in background - Ends class early to do who knows what Overall Incompetent and unavoidable as a CCNY CS major (only prof for csc", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d374cd60fca157e59b3d" + } + }, + { + "text": "The workload is heavy so I do recommend taking the class during the summer if possible which I did. He does not give feedback for homework/projects/labs, he is disorganized, inconsistent, and hard to work with. Don't waste your time asking questions when he won't even read it. You won't learn anything. Show that you try to do the work.", + "pos": 0.08, + "neu": 0.863, + "neg": 0.057, + "_id": { + "$oid": "6711d374cd60fca157e59b3e" + } + }, + { + "text": "Alright so the class itself is interesting and he teaches fairly well. BUT there is an exhausting amount of work that will drain all interest in the subject. You do learn a lot, but the amount of work becomes torture if you're taking other classes. Cut down the 100-page reports, make tutorials count as HW, and reduce project requirements!", + "pos": 0.123, + "neu": 0.718, + "neg": 0.159, + "_id": { + "$oid": "6711d374cd60fca157e59b3f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d374cd60fca157e59b41" + }, + "professor_name": "Orly Krasner", + "rating": 2.2, + "department": "Music department", + "comments": [ + { + "text": "asynchronous, easy class you could honestly get by without reading the articles she puts up, I did, quiz every week, final project you need to make a song of ambient sounds kind of a tough grader she doesn't accept late work at all I never had an issue with this but she is strict there. Easy pass, anyone who says not wasnt on top of the work.", + "pos": 0.129, + "neu": 0.832, + "neg": 0.039, + "_id": { + "$oid": "6711d374cd60fca157e59b42" + } + }, + { + "text": "No wonder so many people think she is awful because she is. If you take her class, get ready to regret that forever. I wish I had come here before taking her, worst mistake. NEVER take her.", + "pos": 0.105, + "neu": 0.604, + "neg": 0.292, + "_id": { + "$oid": "6711d374cd60fca157e59b43" + } + }, + { + "text": "Very difficult tasks, it is very difficult to find a common language", + "pos": 0.0, + "neu": 0.642, + "neg": 0.358, + "_id": { + "$oid": "6711d374cd60fca157e59b44" + } + }, + { + "text": "never take this professor!!! NEVER and NEVER", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b45" + } + }, + { + "text": "I took her asynchronous Mus101. WORST DECISION EVER! She is unforgiving toward late submissions. She will not re open quizzes even if you have a valid excuse. She gave a 3 part final! I would honestly petition to get her fired. Just very miserable toward students. If you value your mental health, do not take her class!", + "pos": 0.095, + "neu": 0.723, + "neg": 0.182, + "_id": { + "$oid": "6711d374cd60fca157e59b46" + } + }, + { + "text": "I took her fully asynchronous Music 101 class for a required elective credit, the worst mistake of my life. She only assigns readings from the text with music videos without a way to break it down. It might be part of me being tone deaf but it was terrible. Communication with her was also very unclear.", + "pos": 0.028, + "neu": 0.795, + "neg": 0.177, + "_id": { + "$oid": "6711d374cd60fca157e59b47" + } + }, + { + "text": "do not take. too many hard quizzes. dont take if it not ur major", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d374cd60fca157e59b48" + } + }, + { + "text": "This class genuinely made me lose hair, for an elective and a 101 class she did way too much. Her modules are so long you would need weeks to fully understand one. Test heavy and she's a harsh grader for literally no reason. Why am i writing essays for a music class??? She set you up to fail, no other explanation. Never take it save yourself!!!", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d374cd60fca157e59b49" + } + }, + { + "text": "Don't take this class if you still want to enjoy music by the end of it. The prof assigns so much work and is too ambitious for beginner music students. Final exam has three parts which will be difficult. Don't take this class unless you have time to waste. She expects us to have the knowledge of music professionals. Save yourself, don't enroll.", + "pos": 0.148, + "neu": 0.78, + "neg": 0.073, + "_id": { + "$oid": "6711d374cd60fca157e59b4a" + } + }, + { + "text": "I took this class in fall 2020. I do not know how I got a B, but do yourselves a favor and never take this class. She expects you to know everything about music when she doesn't even teach the class. She should get fired tbh.", + "pos": 0.068, + "neu": 0.839, + "neg": 0.093, + "_id": { + "$oid": "6711d374cd60fca157e59b4b" + } + }, + { + "text": "She is a tough one to please. She would give to the lowest grade she can give you. she does give extra credit but is so long a difficult just for a few points that would make no big difference.", + "pos": 0.073, + "neu": 0.724, + "neg": 0.202, + "_id": { + "$oid": "6711d374cd60fca157e59b4c" + } + }, + { + "text": "You have to write 2 music reports where you have to attend 2 classical music concerts. You also have to pay out of your own pocket for these concerts. She is very unclear about the report requirements and graded them very harshly. Do not take this course if you're not a music major.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d374cd60fca157e59b4d" + } + }, + { + "text": "This professor has unreal expectations for a beginner music course. In order to do even do slightly well in this class you have to be extremely knowledgeable about everything. This class is harder than my stem courses, which is not something that should be happening.", + "pos": 0.039, + "neu": 0.961, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b4e" + } + }, + { + "text": "I understand having difficult courses, but I found this course a bit excessive for an introductory class. There are two textbooks provided and links beyond links to refer to when it comes to weekly listening and general quizzes. I am not well versed in musical terminology, but managed to work through it. Not sure I'd recommend to a friend.", + "pos": 0.064, + "neu": 0.801, + "neg": 0.135, + "_id": { + "$oid": "6711d374cd60fca157e59b4f" + } + }, + { + "text": "she made an intro to music class so unnecessarily difficult. it brought down my gpa. f her.", + "pos": 0.0, + "neu": 0.852, + "neg": 0.148, + "_id": { + "$oid": "6711d374cd60fca157e59b50" + } + }, + { + "text": "DO NOT TAKE!If you read all these negative reviews and decide \"how bad can it be?\" & give her a chance, you will forever regret it. Expects you to know everything she does & shes never available. When you reach out she basically tells u to study more. Grades so harsh and super late. This is the worst class and professor I have ever had! Depressing!", + "pos": 0.085, + "neu": 0.663, + "neg": 0.252, + "_id": { + "$oid": "6711d374cd60fca157e59b51" + } + }, + { + "text": "I took this class Fall 21' and it was too much. The amount of readings she made us read and then the test would be even more difficult. Do not recommend, plus there is no way to cheat on her exams. Tried to look for answer sheet but you would have to look up answers one by one on google, sometimes the answers you google are vague.", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d374cd60fca157e59b52" + } + }, + { + "text": "Do not take this class if it is not required for your major.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b53" + } + }, + { + "text": "This class was harder than my calculus and computer science courses. She completely destroyed my GPA and I will forever regret taking this class.", + "pos": 0.0, + "neu": 0.778, + "neg": 0.222, + "_id": { + "$oid": "6711d374cd60fca157e59b54" + } + }, + { + "text": "I don't know if it was because it was asynchronous, but this class? Horrendous. I thought I'd be learning about music and the structure of it, instruments, and how to compose, but I was DEAD. WRONG. And why am I getting papers for a MUSIC CLASS? And she's almost never available for office hours. Never taking this class EVER again.", + "pos": 0.0, + "neu": 0.761, + "neg": 0.239, + "_id": { + "$oid": "6711d374cd60fca157e59b55" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d374cd60fca157e59b57" + }, + "professor_name": "Grazyna Drabik", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "Professor Drabik is a passionate professor. She loves her students, so she is happy when we try our best in her class. She is also a very interactive+caring. She makes you come out of your shell and gives extra credit for group work. Her lectures are fun, acting out scenes & discussing with each other. Keep up with the reading & you'll do great!", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b58" + } + }, + { + "text": "Professor Drabik is a sweet old lady who can come off as harsh at first. However, as the semester went on I learned to love her teaching style. There is a decent amount of reading but not too many homework assignments. I will definitely miss the uniqueness of her class.", + "pos": 0.143, + "neu": 0.789, + "neg": 0.068, + "_id": { + "$oid": "6711d374cd60fca157e59b59" + } + }, + { + "text": "She puts effort into her lectures with a lot of energy and she would always try to get us involved as well. It was a fun entertaining class. Just dont fall back on reading. As long as you're caught up with that you'll be good in this class", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b5a" + } + }, + { + "text": "such a sweet lady. just be respectful, participate, and ASK HER QUESTIONS! she'll love you if you do those. shes very passionate about the city, very lenient with class and homework as long as you speak to her. she doesnt emphasize grades but rather learning and good experiences so as long as you put effort in, you'll do really well in her class.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b5b" + } + }, + { + "text": "Must participate, can be picky grader, doesn't use technology, some classes are BORING, discussion based. Honestly, she can be annoying at times but she's an easy A. If you participate a little and do the assignments you can get on her good side. A lot of readings (I never did) and unnecessary hw you can get away with not doing, just participate.", + "pos": 0.137, + "neu": 0.808, + "neg": 0.055, + "_id": { + "$oid": "6711d374cd60fca157e59b5c" + } + }, + { + "text": "Professor Drabik is a kind lady whom is very passionate in her teachings. She tends to change the schedule a lot and isn't huge on using technology. Expect to read a lot and participate or she will pick on you. She is wonderful and I would definitely take her again. She remembers everyone's names and is available to talk during office hours.", + "pos": 0.186, + "neu": 0.787, + "neg": 0.027, + "_id": { + "$oid": "6711d374cd60fca157e59b5d" + } + }, + { + "text": "i am currently taking her class and i don't know what i was expecting but i wasn't expecting her to be so aggressive as a teacher. she's an older lady and sometimes forgets what we are discussing. i think the class would be great if taught by someone else truthfully.", + "pos": 0.161, + "neu": 0.794, + "neg": 0.045, + "_id": { + "$oid": "6711d374cd60fca157e59b5e" + } + }, + { + "text": "Drabik was a nice professor but her lectures always went on tangents. She clearly knows her stuff and always encouraged us to take risks and learn more about the world. While she did have a clear grade criteria, we didn't have a concrete rubric for everything and always had to ask for clarification. Just do the work, you'll get an A. Good luck!", + "pos": 0.257, + "neu": 0.71, + "neg": 0.034, + "_id": { + "$oid": "6711d374cd60fca157e59b5f" + } + }, + { + "text": "Professor Drabik did a great job at getting students to participate and interact with each other. Although that might seem scary initially, I ended up enjoying the class and material. Taking one star away tho because there are a lot of readings and assignments but theyre fairly short. Drabik can also be confusing with her instructions.", + "pos": 0.078, + "neu": 0.85, + "neg": 0.073, + "_id": { + "$oid": "6711d374cd60fca157e59b60" + } + }, + { + "text": "Professor Drabik definitely made my semester more positive. She's heavy on group projects and genuine human connection, and it's easy to do well if you're genuine and try hard. I would absolutely take her class again.", + "pos": 0.264, + "neu": 0.705, + "neg": 0.032, + "_id": { + "$oid": "6711d374cd60fca157e59b61" + } + }, + { + "text": "Professor Drabik made my first semester of college a little bit more bearable. She really encouraged a fun, collaborative environment and always held us to a high standard. She also was very big on discussion and interaction which was really nice during online classes. Her class gave me something to look forward to every Tuesday and Thursday.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b62" + } + }, + { + "text": "This professor is very rude, she is very condescending and if you ask her to clarify directions for an assignment she will not explain and ignore you. She feels that she is superior than the students in her class and always wants it her own way. She curses at you and calls you idiot/stupid if your work is bad. Overall, she doesn't explain herself.", + "pos": 0.077, + "neu": 0.829, + "neg": 0.094, + "_id": { + "$oid": "6711d374cd60fca157e59b63" + } + }, + { + "text": "Professor Drabik was the perfect start to my day. She was always relatable and passionate in her lessons. Get ready to participate (and you will want to participate) because this is a discussion-intensive course. I've enjoyed my time with Professor Drabik and am looking forward to more courses with them!", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b64" + } + }, + { + "text": "Professor Drabik lives for class discussion. She assigns a bunch of readings and films (some quite gruesome to be honest) and two group projects. Sometimes we write up something short on readings but often we just discussed in class. You'll spend time outside of class but it's not hard and sometimes even interesting.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b65" + } + }, + { + "text": "I loved her class! She is very smart and always has interesting stories to tell. Lots of writing and reading, but it's all worth it. She gives very good feedback. Lovely professor!", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b66" + } + }, + { + "text": "She's not clear when she grades papers and her comments on essays are vague. She gave two extended essays (5 pages), many in-class free writes, and write ups (2-3 pages). For an english class, it's not that bad. She's very passionate and all the assignments are based on New York. No exams. Must participate or she'll call you out.", + "pos": 0.143, + "neu": 0.772, + "neg": 0.084, + "_id": { + "$oid": "6711d374cd60fca157e59b67" + } + }, + { + "text": "shes very tough on u if u dont show up to class or if ur work is weak. gives alot of work but most of it done during the classroom. alotof groupworks.u have to buy the little textbook", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d374cd60fca157e59b68" + } + }, + { + "text": "She is really nice and passionate. We had to do everything in group and she grades for midterm by letting us write one page essay on what would we grade ourselves are why? and base on how persuading your \"essay\" is she goona decide the grade. For our class, the final was take home and had to write 3 essays in total but they are not hard. Take her", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b69" + } + }, + { + "text": "Professor Drabik is by far the one of the most passionate people I have encountered in my life. She genuinely enjoys what she does, which is connecting with her students by exploring the arts of NYC. I highly recommend her if you want to be in a class with a motivated professor.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d374cd60fca157e59b6a" + } + }, + { + "text": "Professor Drabik is very passionate about the arts in nyc, and after taking her class, I can definitely say I've never understood and appreciated art as much as I do now. I'm glad I joined her class, which was just an incredible way to start the day at 9:30 am. Take her if you want a fun class that will make you fall in love with NYC. Strongly rec!", + "pos": 0.244, + "neu": 0.724, + "neg": 0.032, + "_id": { + "$oid": "6711d374cd60fca157e59b6b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d375cd60fca157e59b6d" + }, + "professor_name": "Bidyut Das", + "rating": 3.5, + "department": "Physics department", + "comments": [ + { + "text": "He is one of the best physics prof at City college. He cares a lot about his students and he wants them to learn as much physics as possible. He answers all the questions asked in class. Take him!", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b6e" + } + }, + { + "text": "Very nice and helpful guy. His lectures are interesting and they actually go by pretty quickly. Exams got progressively more difficult as the course went on, and the final was pretty hairy.", + "pos": 0.346, + "neu": 0.59, + "neg": 0.063, + "_id": { + "$oid": "6711d375cd60fca157e59b6f" + } + }, + { + "text": "GOOD LUCK I got good grade but very hard.", + "pos": 0.485, + "neu": 0.366, + "neg": 0.149, + "_id": { + "$oid": "6711d375cd60fca157e59b70" + } + }, + { + "text": "very boring and hard loves to give bad grades.", + "pos": 0.225, + "neu": 0.304, + "neg": 0.471, + "_id": { + "$oid": "6711d375cd60fca157e59b71" + } + }, + { + "text": "Is it just me, or does it seem like most of the more recent reviews sound like they're written by the same person...I really doubt 'straightforward' or 'easy' are words that should be used to describe anything about his class. Exams will be 4 questions, and 1 of the questions will be really really hard. But the final was ok.", + "pos": 0.085, + "neu": 0.862, + "neg": 0.053, + "_id": { + "$oid": "6711d375cd60fca157e59b72" + } + }, + { + "text": "One of the better physics professors CCNY has to offer for Phys 208. 90% of his exam questions are questions he had discussed in class. Attendance is a MUST!! Gives homework and collects it. He curves fairly.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b73" + } + }, + { + "text": "Very unorganized lecture are unclear exams are fair and based usually on his lectures be prepared to study on your own", + "pos": 0.174, + "neu": 0.744, + "neg": 0.083, + "_id": { + "$oid": "6711d375cd60fca157e59b74" + } + }, + { + "text": "very easy class. he is the best physics professor you will have in ccny. if you can take him, you will be lucky. his exams are from the problems he does in board. does not even need to buy book.", + "pos": 0.208, + "neu": 0.736, + "neg": 0.055, + "_id": { + "$oid": "6711d375cd60fca157e59b75" + } + }, + { + "text": "just do ur part. you will be fine. he is very very very straight forward. he never gives hard question in the exam.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b76" + } + }, + { + "text": "those who say he is hard , should die. he is really easy.", + "pos": 0.173, + "neu": 0.541, + "neg": 0.287, + "_id": { + "$oid": "6711d375cd60fca157e59b77" + } + }, + { + "text": "just got back the first exam. Got 95. really easy professor. highly recomended. there were lot of 80 and 90 in first exam. best professor in ccny.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b78" + } + }, + { + "text": "really easy professor. dont even need book.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b79" + } + }, + { + "text": "OMG Das is the best! He's willing to go the extra mile to help his students learn the difficult concepts in physics. Although he does drone on like a PBS show, he is a genuine person who is enthusiastic about physics. He's such a nerd!", + "pos": 0.232, + "neu": 0.686, + "neg": 0.083, + "_id": { + "$oid": "6711d375cd60fca157e59b7a" + } + }, + { + "text": "Easy Exam. Final Is same like the Class exam.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b7b" + } + }, + { + "text": "Great Professor .", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b7c" + } + }, + { + "text": "He gave 3 questions in the exam. All of them based on the problems that he discussed in class.", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d375cd60fca157e59b7d" + } + }, + { + "text": "He's alright. His teaching is ok, but for my lecture he didn't really go over many problems in class. I don't know what it is, but a lot of people seemed to really do not well (class test averages in the 50's). It's an easy B, but a difficult A. On the last test there was a question (1 of 4) that was amazingly hard that only a few people got.", + "pos": 0.065, + "neu": 0.795, + "neg": 0.14, + "_id": { + "$oid": "6711d375cd60fca157e59b7e" + } + }, + { + "text": "THIS GUY IS the best. He is really helpful and he sums up the whole chapter for you.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b7f" + } + }, + { + "text": "best teacher on earth", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b80" + } + }, + { + "text": "Great professor. I hated physics and always just got C . but in his class i got A's and B's. plus he solves many problems in class so that you can get practice for the in class test. AND hes funny. Makes the class fun", + "pos": 0.23, + "neu": 0.665, + "neg": 0.105, + "_id": { + "$oid": "6711d375cd60fca157e59b81" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d375cd60fca157e59b83" + }, + "professor_name": "Mary Wright", + "rating": 3, + "department": "Chemistry department", + "comments": [ + { + "text": "she was bad like ew", + "pos": 0.278, + "neu": 0.333, + "neg": 0.389, + "_id": { + "$oid": "6711d375cd60fca157e59b84" + } + }, + { + "text": "She gives lots of homework but everything adds up to your grade: 3 exams plus a final. You can tell she's passionate about chemistry. I would definitely take her again", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b85" + } + }, + { + "text": "She is a good professor as long as you are willing to put in work. Almost half of your points come from stuff other than tests. The reviews are alright but there are always 20-30 points that she never went over in class. Very good class for a chem major or if you go to chem 2 but a pain if you arent. Good lectures but you gota grind and read slides", + "pos": 0.094, + "neu": 0.814, + "neg": 0.092, + "_id": { + "$oid": "6711d375cd60fca157e59b86" + } + }, + { + "text": "really a hit or miss", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d375cd60fca157e59b87" + } + }, + { + "text": "Takes a certain person to like this professor but I loved her. She has great energy, is passionate about what she teaches, and explains the material. You will need to memorize the material out of class, just like with any chem class. If you study and are consistent then you will pass. I also like how she treats her students like adults.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b88" + } + }, + { + "text": "no", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d375cd60fca157e59b89" + } + }, + { + "text": "A lot of self teaching involved, so if you're not good at that- look for a different professor. No homework extensions, no curve/ extra credit. Sample exams are posted about 2-3 days before (sometimes have mistakes), answers are posted the night before or day of the exam (may have minor mistakes as well).", + "pos": 0.075, + "neu": 0.736, + "neg": 0.189, + "_id": { + "$oid": "6711d375cd60fca157e59b8a" + } + }, + { + "text": "would not recommend at all, she always has a problem on her tests/practice tests theres always some kind of mistake, doesnt curve, she only reads off the slides, her tests arent like the homework or recitation worksheets, and she only gives one practice test and will post it like 4 days before the actual test, shes very disorganized", + "pos": 0.038, + "neu": 0.781, + "neg": 0.182, + "_id": { + "$oid": "6711d375cd60fca157e59b8b" + } + }, + { + "text": "Will set you up for failure. Exams are nothing like review sheets. In our batch, she randomly made an exam early with very few resources. It was the hardest exam too.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d375cd60fca157e59b8c" + } + }, + { + "text": "makes recitation mandatory with quizzes, and makes you pay just for attendance :/", + "pos": 0.086, + "neu": 0.662, + "neg": 0.252, + "_id": { + "$oid": "6711d375cd60fca157e59b8d" + } + }, + { + "text": "Grade is composed of 3 exams (lowest dropped), final, recitation (going helps if you're struggling), lab, and Aleks hw. She goes pretty fast sometimes during lecture, but she posts the lecture slides on BB. The Aleks is due weekly and is a pain sometimes, but it's useful as well. Final is not worth much, so do well on the three exams. Lab was cool.", + "pos": 0.193, + "neu": 0.68, + "neg": 0.128, + "_id": { + "$oid": "6711d375cd60fca157e59b8e" + } + }, + { + "text": "Material is heavy, but it's easy as long as you do the homework. A lot of self-teaching. The homework will help with the lecture and the lecture is also posted on Blackboard. Overall, she's really nice and understanding. What is on the exams is what you learn in recitation and homework assignments but it is very time-consuming.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b8f" + } + }, + { + "text": "The students were lazy af! like duh it is biochemistry of course it will be a hard class. Dr. Wright is an amazing passionate professor who bent over backwards to make sure I understood the material last spring. Honestly helped me sooooooooo much for preparing for the MCAT! TAKE HER IF GIVEN THE CHANCE", + "pos": 0.269, + "neu": 0.674, + "neg": 0.057, + "_id": { + "$oid": "6711d375cd60fca157e59b90" + } + }, + { + "text": "This professor can not teach and seems to enjoy when her students don't understand the material. Yes there is an aspect of personal responsability but when every student struggles and the people who do well state that they dont find her lectures helpful, then thats a problem! Youtube was the only thing that allowed me to do well.", + "pos": 0.174, + "neu": 0.729, + "neg": 0.097, + "_id": { + "$oid": "6711d375cd60fca157e59b91" + } + }, + { + "text": "The disrespect and rudeness this lady can show to students is disgusting. Lucky for me I am a good self learner, but most of my peers did very bad. I understand a bad professor, but a rude one is intolerable. She's here just to collect a paycheck.", + "pos": 0.061, + "neu": 0.623, + "neg": 0.316, + "_id": { + "$oid": "6711d375cd60fca157e59b92" + } + }, + { + "text": "Great person. Always nice, understanding, and flexible. She let me take one of her exams at home after getting sick one time. She is absolutely amazing. I had her back in the Spring 2019 Semester. If you are struggling with anything, she is always there to help you. The exams were not that bad as I thought it would be. She is brilliant.", + "pos": 0.27, + "neu": 0.656, + "neg": 0.074, + "_id": { + "$oid": "6711d375cd60fca157e59b93" + } + }, + { + "text": "Probably the worst professor I've came across my college career. She's a highly disrespectful person & tries her best to fail her students. Exams are extremely hard and they look nothing like the homework. Do yourself a favor and avoid her at all times.", + "pos": 0.12, + "neu": 0.643, + "neg": 0.237, + "_id": { + "$oid": "6711d375cd60fca157e59b94" + } + }, + { + "text": "Professor Mary is the worst professor ever to learn from. She gives tests on material not covered in class and her homework cannot be solved except by herself. Avoid or retake it with another professor. I regret taking this class with her.", + "pos": 0.0, + "neu": 0.777, + "neg": 0.223, + "_id": { + "$oid": "6711d375cd60fca157e59b95" + } + }, + { + "text": "Wright was a pretty good professor but her exams were definitely harder than expected. My recitation, homework, and lab grade saved the overall grade. She tries to make the classes fun but its very lecture and exam heavy.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d375cd60fca157e59b96" + } + }, + { + "text": "The exams were extremely difficult and her lectures did not prepare us enough for them. I regret taking this class with her and would recommend you to take it without literally ANYONE else other than her. Your GPA will thank me later.", + "pos": 0.103, + "neu": 0.782, + "neg": 0.115, + "_id": { + "$oid": "6711d375cd60fca157e59b97" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d376cd60fca157e59b99" + }, + "professor_name": "Urs Jans", + "rating": 4.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Took Prof. Jans for Env. Organic Chemistry. He was amazing-- he truly wants to see his students succeed. Do yourself a favor and show up to class, he is worth it. He was always lenient when students had outside issues to deal with, and always accessible through email. A really great last chem class; topics are difficult at times, but manageable!!!", + "pos": 0.214, + "neu": 0.761, + "neg": 0.025, + "_id": { + "$oid": "6711d376cd60fca157e59b9a" + } + }, + { + "text": "Professor Jans had a clear grading criteria and provided us with past exams which mimicked the actual exams. He hosted extra review sessions before exams where he walked through multiple problems. Attendance is not required but he awards an extra 1% towards your final grade for attending most lectures.", + "pos": 0.108, + "neu": 0.857, + "neg": 0.034, + "_id": { + "$oid": "6711d376cd60fca157e59b9b" + } + }, + { + "text": "literally such a good professor, hes so good at what he does i wish i had him for 104, he gives tests from previous semesters and the real test will be almost exactly like the practice, go to office hours because hes also very nice", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59b9c" + } + }, + { + "text": "Best professor there is for Chem 10301.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59b9d" + } + }, + { + "text": "Jans is a great professor, I can see why he's been working at cony for 20+ years. The main things I liked is that he provided past exams so we can have an idea of what to expect, records lectures, and extends Aleks HW if needed. \n\nAleks is really annoying but helpful in the long run, do it early to avoid pressure", + "pos": 0.135, + "neu": 0.76, + "neg": 0.105, + "_id": { + "$oid": "6711d376cd60fca157e59b9e" + } + }, + { + "text": "The professor makes all lectures accessible and he is very accessible outside of class. He is very easy going and gives extensions on hw, just ask. Explains concepts really well. Aleks, which is the homework system is EXTREMELY helpful. Your grade is truly the amount of effort you put in.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59b9f" + } + }, + { + "text": "He def the best teacher in CCNY. If u want to do well do the practice exams and make sure you do the ALEK (so annoying) and you can pass.", + "pos": 0.263, + "neu": 0.665, + "neg": 0.072, + "_id": { + "$oid": "6711d376cd60fca157e59ba0" + } + }, + { + "text": "If you want to do research, he's the guy.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59ba1" + } + }, + { + "text": "Your whole grade is based on Aleks; midterm and finals are based on Aleks problems. Aleks is life.", + "pos": 0.0, + "neu": 0.863, + "neg": 0.137, + "_id": { + "$oid": "6711d376cd60fca157e59ba2" + } + }, + { + "text": "The professor is easy going and his grading is clear. I would recommend attending all classes: labs, lectures, and recitations. Be sure to complete your homework! Homework is not only required, but it is amazing practice and review for course material. For exams, practice the old exams he gives you and your grades should reflect your efforts.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59ba3" + } + }, + { + "text": "the homework system, ALEKS, is extremely annoying, and he's lowkey rude if you ask dumb questions lol, but he's 100% truly a gem. lectures are all recorded, labs are half virtual, half in-person, recitation is once a week. stay on top of ALEKS and do his practice exams and there's no reason you shouldn't pass.", + "pos": 0.123, + "neu": 0.74, + "neg": 0.138, + "_id": { + "$oid": "6711d376cd60fca157e59ba4" + } + }, + { + "text": "ONE OF THE BEST! A TRUE GEM! TAKE HIM IF YOU CAN!!!!!! :)", + "pos": 0.558, + "neu": 0.442, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59ba5" + } + }, + { + "text": "He is so sweet. He understands his students concerns and willing to extend ALEKS homework. If I could, I would take him again. His exams arent bad, as long as you study. If you do ALEKS homework and study, youll get an A.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59ba6" + } + }, + { + "text": "I loved having professor Jans and the class, lectures are interesting and extremely helpful if you pay attention. Using aleks was not bad, I would recommend watching videos on specific topics that arent gone over in class or your confused on. The labs were not extremely challenging as well, it sums up what is learned during the lectures.", + "pos": 0.243, + "neu": 0.683, + "neg": 0.075, + "_id": { + "$oid": "6711d376cd60fca157e59ba7" + } + }, + { + "text": "His Chem 103 class is not bad. You can pick up most of the topics just by doing homework and breezing through the textbook. His lectures have powerpoints which he makes available for students. You won't regret taking him, as long as you do your work.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59ba8" + } + }, + { + "text": "Great Professor, is willing to reason with the students. Very well spaced out Aleks assignments.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59ba9" + } + }, + { + "text": "Very nice person. His lecture is very good and he always helps and cares about the students. The online class required more work(Discussion Board + HW + mini project) but has only one midterm and final. The exams are open-book and short-essay questions. He posted old exams for study.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d376cd60fca157e59baa" + } + }, + { + "text": "The best chem prof at ccny. As long as you do the hw on Aleks and his practice exams, you'll get an A. Lowest exam grade is dropped.", + "pos": 0.128, + "neu": 0.793, + "neg": 0.079, + "_id": { + "$oid": "6711d376cd60fca157e59bab" + } + }, + { + "text": "If you would like to learn from his class, he is good at teaching but you have to make sure you get on top of your ass to pass this class in order to learn. Aleks is great but really stressful at times and even with the pandemic, however it is worth it considering other professors. He is sometimes a jerk when asking questions but answers by email.", + "pos": 0.19, + "neu": 0.666, + "neg": 0.144, + "_id": { + "$oid": "6711d376cd60fca157e59bac" + } + }, + { + "text": "I half-assed everything and still pass with a C. Probably the only chem professor that allows you to do that. Not gonna lie. Lecture and recitation are a waste of time. Also, Aleks (HW) has gotta be one of the worst thing to exist.", + "pos": 0.0, + "neu": 0.859, + "neg": 0.141, + "_id": { + "$oid": "6711d376cd60fca157e59bad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d377cd60fca157e59baf" + }, + "professor_name": "Pouyan Ghaemi Mohammadi", + "rating": 2.3, + "department": "Physics department", + "comments": [ + { + "text": "A majority of the curriculum I learned and mastered was only online. His lectures consist of him just deriving equations that waste potential time to actually go over examples. I suggest you try an E permit, so you can actually learn properly. However stick around for the final, I thought I got a C at most but was pleasantly surprised with a B+", + "pos": 0.1, + "neu": 0.872, + "neg": 0.028, + "_id": { + "$oid": "6711d377cd60fca157e59bb0" + } + }, + { + "text": "He wants his students to do well but doesn't teach effectively. I suggested using slides, but he refused. When I asked which problems to solve for better understanding, he always says, \"solve all 2-star problems\" (avg 50 per chap). If we have to learn everything on our own, I don't know what his job is. However, he's lenient with final exam grading", + "pos": 0.159, + "neu": 0.676, + "neg": 0.166, + "_id": { + "$oid": "6711d377cd60fca157e59bb1" + } + }, + { + "text": "Straightforward exams, mostly questions from lectures. Great pacing for lectures for questions however it could be a little unclear. He raw dogs his lesson tho, no slides just straight up sketchpad and talks. He seems chill and is very generous with grading exams. He doesnt upload notes which is annoying. Please study 2 hours a week atleast!!", + "pos": 0.181, + "neu": 0.724, + "neg": 0.096, + "_id": { + "$oid": "6711d377cd60fca157e59bb2" + } + }, + { + "text": "Here's the deal: If you read the textbook and learn to solve the problems in it, you will get an A or B in the class. Lectures can be helpful (300+ student lecture hall), but attendance isn't mandatory. To be fair, he is very clear about course expectations, but the course can be challenging for students who are new to 'self-teaching'.", + "pos": 0.173, + "neu": 0.781, + "neg": 0.046, + "_id": { + "$oid": "6711d377cd60fca157e59bb3" + } + }, + { + "text": "Professor Pouyan is a fair professor and a good option if you have a good understanding of the material. His tests are 3 questions and the final was 6. He does curve as well(A- to A for me). I would attend classes to see the problems he does in class as they are similar to ones on test. Only complaint is he spends a lot of time deriving equations.", + "pos": 0.105, + "neu": 0.831, + "neg": 0.064, + "_id": { + "$oid": "6711d377cd60fca157e59bb4" + } + }, + { + "text": "Generation teacher, easy lectures, do your work and he grades with curves", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bb5" + } + }, + { + "text": "i will shorten things up, heres the method: very heavy curve (1-2 letters). only attend lectures to copy the questions (will be on exams). learn topics thru van biezen. do old exams + finals (important). textbook problems are likely a waste of time. if final higher, replaces midterms. possibly bring more than one cheat sheet. use Mu's study guide.", + "pos": 0.027, + "neu": 0.839, + "neg": 0.134, + "_id": { + "$oid": "6711d377cd60fca157e59bb6" + } + }, + { + "text": "Professor isnt as bad as students desrcibe him. He prepares students for their major based on his tests.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bb7" + } + }, + { + "text": "Certified yapper in lectures. Best off just doing practice questions from the textbook.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bb8" + } + }, + { + "text": "Curves and grading are immensely generous. Absolutely take this course if you have already taken physics before or somewhat understand the course. Otherwise, it's an uphill battle, as Pouyan's explanations are difficult for first time physics students. Lectures can be skipped and it is worth self studying and relying on the generous final curve", + "pos": 0.136, + "neu": 0.783, + "neg": 0.081, + "_id": { + "$oid": "6711d377cd60fca157e59bb9" + } + }, + { + "text": "I simply don't know what he does in lectures it's just words coming out. Self-study class. He does allow cheat sheets which are pretty nice. Very slow on grading", + "pos": 0.22, + "neu": 0.696, + "neg": 0.084, + "_id": { + "$oid": "6711d377cd60fca157e59bba" + } + }, + { + "text": "One of the Worst Professors for Physics in CCNY. The Lectures are absolutely pointless, but some examples end up on Exams. 99 percent of what I have learned in physics came from Van Biezan on Youtube. The only benefit of taking him is for the one page cheat sheet. Do yourself a favor and please E permit to BMCC or take the course under a good prof", + "pos": 0.175, + "neu": 0.745, + "neg": 0.08, + "_id": { + "$oid": "6711d377cd60fca157e59bbb" + } + }, + { + "text": "Very easy to get an A in this class. The same problems that he solves in class are the same as the ones that appear on his exams, albeit different numbers and scenarios, but that doesn't matter as you are solving for variables, not actual numbers.", + "pos": 0.133, + "neu": 0.809, + "neg": 0.058, + "_id": { + "$oid": "6711d377cd60fca157e59bbc" + } + }, + { + "text": "Drinking bleach might be better than taking his class. Yamming straight doo doo batty might be better than taking this class. Doing 200 consecutive lines of the finest columbian booger sugar might be healthier than taking his class. Save your mental well being and avoid Pouyan Ghaemi Mohammadi.", + "pos": 0.227, + "neu": 0.734, + "neg": 0.038, + "_id": { + "$oid": "6711d377cd60fca157e59bbd" + } + }, + { + "text": "This professor is a joke. He is only teaching because he is good at research. It is a complete robbery that students take his class will most likely struggle and he continues to get paid for such poor teaching. Avoid his class. The material is not so bad but its the lack of clarity and explanation that is that is the real problem.", + "pos": 0.125, + "neu": 0.717, + "neg": 0.158, + "_id": { + "$oid": "6711d377cd60fca157e59bbe" + } + }, + { + "text": "Pouyan is by far the worst professor. Be prepared to teach yourself because he does not explain what he is doing and he does not tell you what section/chapter you are in. If you ask him what you should do to prepare, he'll say do problems in the book which you'll find hard to do because you do not know what chapter you are in. Avoid his class.", + "pos": 0.025, + "neu": 0.837, + "neg": 0.138, + "_id": { + "$oid": "6711d377cd60fca157e59bbf" + } + }, + { + "text": "So, here's the deal. Lectures are not regular slides, he actively does problems. The issue is that he explains things in a way that's hard for students to understand. The class would've been a lot easier if he taught it differently, because the topics are somewhat easy, the issue is the explanation.\nAlso Mu carried :)", + "pos": 0.165, + "neu": 0.772, + "neg": 0.063, + "_id": { + "$oid": "6711d377cd60fca157e59bc0" + } + }, + { + "text": "The midterms and the finals are graded by his TA's and they are graded completely wrong. He also makes mistakes on giving your final grade. This professor puts zero effort in teaching this class and he is very lazy to do anything. it's unfair that he is getting paid for free to be a professor only because he is good at researching.", + "pos": 0.114, + "neu": 0.73, + "neg": 0.156, + "_id": { + "$oid": "6711d377cd60fca157e59bc1" + } + }, + { + "text": "If you go back far enough, you'll see other people who received an A in his class suggested Khan Academy's physics playlist. Mainly do this alongside doing practice problems from the textbook. Could try Michael Van Biezen's videos too. Don't read that textbook, not enough time for the amount of material covered. Wish I could say more but word count", + "pos": 0.03, + "neu": 0.94, + "neg": 0.03, + "_id": { + "$oid": "6711d377cd60fca157e59bc2" + } + }, + { + "text": "JUST DON'T! SAVE YOURSELF AND YOUR GPA. HE CURVES OD BUT...you still need to have some sort understanding of the material and its NOT simple, you need to teach yourself. If you know about 60% you can pass with a C. He allows 1 cheat sheet, but he doesn't check so bring up to 3 and hide them. Write answers from past exams on them. GOOD LUCK!", + "pos": 0.135, + "neu": 0.787, + "neg": 0.078, + "_id": { + "$oid": "6711d377cd60fca157e59bc3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d377cd60fca157e59bc5" + }, + "professor_name": "Leonid Roytman", + "rating": 2.3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Does nothing but playing some recordings and everything else is online. He doesn't care about students at all.", + "pos": 0.0, + "neu": 0.75, + "neg": 0.25, + "_id": { + "$oid": "6711d377cd60fca157e59bc6" + } + }, + { + "text": "Took his class online. To be short, this guy is a joke. He played the recording of his past teaching, and in that video, he writes with his mouse so whatever he writes, its illegible. Don't expect anything from lecture. It's difficult, but study on your own. I asked him a question at the end, and he just ended the meeting.", + "pos": 0.052, + "neu": 0.92, + "neg": 0.028, + "_id": { + "$oid": "6711d377cd60fca157e59bc7" + } + }, + { + "text": "Great professor.I would definitely take him again.", + "pos": 0.576, + "neu": 0.424, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bc8" + } + }, + { + "text": "Easily one of the best professor at CCNY. Extremely knowledgeable and goes through great depths to help students succeed. Extremely lenient and funny. We don't deserve a professor like prof Roytman he is too good.", + "pos": 0.515, + "neu": 0.485, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bc9" + } + }, + { + "text": "Professor Lenny Roytman is one whose teaching skills cannot be fully explained in a 350-word limit review. Any class that he teaches? Take it. You will not regret it. From analogies to make complex topics more simple... to the little jokes throughout his lecture, and to his beautiful handwriting... he is the best professor without a doubt.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bca" + } + }, + { + "text": "Lenny is a great Electrical Circuits professor due to his ability to explain complex concepts in a simple and understandable way, his commitment to helping students succeed, and his contagious passion for the subject matter.", + "pos": 0.386, + "neu": 0.564, + "neg": 0.05, + "_id": { + "$oid": "6711d377cd60fca157e59bcb" + } + }, + { + "text": "Don't expect to learn anything from him. Self teach yourself. Homework was online platform. He was very lenient in terms of due dates for those online homework assignments.\n\nIf you're trying to get a professor to learn basic circuit analysis, get ready to self-teach yourself if you end up in his class. Easy A if it's just an elective for you.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bcc" + } + }, + { + "text": "You will barely learn from him. the class itself isnt very difficult and you can teach yourself entirely through the textbook and the online hw. the online hw is very helpful to learn the material on your own. he's a nice guy, has an accent, but cant teach very well (at least not online). you can still pass though. his exams are reasonable.", + "pos": 0.084, + "neu": 0.879, + "neg": 0.038, + "_id": { + "$oid": "6711d377cd60fca157e59bcd" + } + }, + { + "text": "As others said, you will not learn well in this class, but it is not difficult.", + "pos": 0.147, + "neu": 0.775, + "neg": 0.078, + "_id": { + "$oid": "6711d377cd60fca157e59bce" + } + }, + { + "text": "Bruh, do not listen to these 5 star ratings. This guy just comes to class and puts on a video lecture of himself from last semester. You literally cant ask questions or anything. I just mute the \"lecture\" and learn on my own. Luckily the exams are easy if you study using the online site for HW. Hes understanding but cant teach to save his life.", + "pos": 0.058, + "neu": 0.893, + "neg": 0.049, + "_id": { + "$oid": "6711d377cd60fca157e59bcf" + } + }, + { + "text": "The best professor ever i love this class best part of my day", + "pos": 0.558, + "neu": 0.442, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bd0" + } + }, + { + "text": "Wonder man. If you want to learn engineering, then he is the person...", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bd1" + } + }, + { + "text": "Roytman is a professor who equips his students with the skills necessary to survive in the real world. With 25 min breaks before and after class, and questions to reinforce learning, Roytman teaches students the importance of self study among many other skills. Highly recommended for the CCNY EE Dept. experience.", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bd2" + } + }, + { + "text": "This was the most ridiculous class I have ever taken. Professor Roytman does not know how to teach, he always shows up 20 minutes late to class and leaves 20 minutes early, and no matter how many people are in class he'll 'teach'. You have to teach the material to yourself, if you need to know the material for future classes, don't take him.", + "pos": 0.0, + "neu": 0.941, + "neg": 0.059, + "_id": { + "$oid": "6711d377cd60fca157e59bd3" + } + }, + { + "text": "Only real engineers understand the unequivocal power of checking your pockets for money to find the current, voltage, resistance, power, inductance, phasor, and energy of the circuit.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d377cd60fca157e59bd4" + } + }, + { + "text": "IF YOUR AN EE MAJOR OR COMP ENGR I STRONGLY ADVISE YOU NOT TO TAKE ROYTMAN PLZ. HE WILL NOT HELP YOU. TAKE ANYONE ELSE AND YOU WILL LEARN. NOT WITH THIS DUDE PLZ SAVE URSELF FOR GODSAKE", + "pos": 0.183, + "neu": 0.765, + "neg": 0.052, + "_id": { + "$oid": "6711d377cd60fca157e59bd5" + } + }, + { + "text": "Does not explain anything. Has such a thick accent that you can't understand him even when you ask him questions. If you are in EE, DO NOT take this class... You won't learn a thing. Only good thing about this class was the crazy curve. I barely passed my exams and ended with a B+", + "pos": 0.05, + "neu": 0.909, + "neg": 0.041, + "_id": { + "$oid": "6711d377cd60fca157e59bd6" + } + }, + { + "text": "insane curve. Honestly just try your best. Got 30/50s on each exam including the final and got a B", + "pos": 0.278, + "neu": 0.618, + "neg": 0.104, + "_id": { + "$oid": "6711d377cd60fca157e59bd7" + } + }, + { + "text": "You will have a great time if you are a phd in Electrical Eng. He never stayed full time, comes up to the board solves two exercises and leaves, never really explained anything. Every class ended the same way, everyone looking lost as hell as he left in 20/25 mins. Final is worth 70% of the grade. He isn't a bad guy, but he is not a good professor.", + "pos": 0.097, + "neu": 0.805, + "neg": 0.098, + "_id": { + "$oid": "6711d377cd60fca157e59bd8" + } + }, + { + "text": "I honestly thought he was trolling us the first few classes. I figured there was a hidden camera somewhere. Nope. He's just the worst professor you'll ever have in your life. Kim Kardashian could do a better job. Skip class, get old exams, skim the textbook.", + "pos": 0.111, + "neu": 0.811, + "neg": 0.077, + "_id": { + "$oid": "6711d377cd60fca157e59bd9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d378cd60fca157e59bdb" + }, + "professor_name": "Jhevon Smith", + "rating": 3.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Great professor. Uploads lectures to Youtube and in case people want to see the slides of the lecture as well as the notes/material, they can access to YouTube to see it. Very awesome. Also, the quiz and exam questions including the style and format that Jhevon Smith gives are not as bad as what other professor gives and they are actually doable.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d378cd60fca157e59bdc" + } + }, + { + "text": "Jhevon is a good teacher, that's evident. He's a little pompous and tries to be funny, it never turns out well. He doesn't give extra credit on the quizzes, so if you get half of the question right, it's automatically wrong. Make sure you pay attention throughout the year, since he explains things well. His tests are like the reviews he gives.", + "pos": 0.171, + "neu": 0.714, + "neg": 0.115, + "_id": { + "$oid": "6711d378cd60fca157e59bdd" + } + }, + { + "text": "Honestly, he's tough. I won't deny that but he made me love math. I worked hard to improve and he rewarded me for that. He truly wants his students to be the best and his lectures were always a good time. I wish I had him for all of my math classes tbh. I'd be a beast at math if I did. A true gem. Take him if you want to learn.", + "pos": 0.391, + "neu": 0.581, + "neg": 0.028, + "_id": { + "$oid": "6711d378cd60fca157e59bde" + } + }, + { + "text": "Very crazy class. I did not mind his lectures however his teaching is awful. Does good on notes however very hard to pass since nothing on the quiz is covered on his lectures. If you would like to experiment him, take him but bare in mind that you would get a bad grade. I was one of the few students who passed his class.", + "pos": 0.052, + "neu": 0.81, + "neg": 0.139, + "_id": { + "$oid": "6711d378cd60fca157e59bdf" + } + }, + { + "text": "You need to study very hard and need to work in order to do good on his class. His quizzes and tests are so hard and he does not curve. Do not take him for the sake of your grade.", + "pos": 0.067, + "neu": 0.851, + "neg": 0.082, + "_id": { + "$oid": "6711d378cd60fca157e59be0" + } + }, + { + "text": "He does not curve any grades. He is the most hardest teacher you will ever take in your life. The only thing that's good about him are his notes and his notes only. Do not recommend this professor under any circumstances!", + "pos": 0.072, + "neu": 0.88, + "neg": 0.048, + "_id": { + "$oid": "6711d378cd60fca157e59be1" + } + }, + { + "text": "Took him for Calc 1 and 2. He's a great prof. , tried his best to teach from a distance and used different methods to help us. He was handling the covid situation very well and curved our grades. He wanted to prevent cheating so he used an online proctoring service. Overall, a good prof. I recommend him.", + "pos": 0.271, + "neu": 0.68, + "neg": 0.049, + "_id": { + "$oid": "6711d378cd60fca157e59be2" + } + }, + { + "text": "Jhevon is a great lecturer and actually mentions real world applications of the math he teaches. The material may be a bit tough but he does his best to guide you through it and where the ideas come from. He gives quizzes every week that you need to study for but there were no surprises and everything on the quiz he mentioned in class.", + "pos": 0.117, + "neu": 0.838, + "neg": 0.045, + "_id": { + "$oid": "6711d378cd60fca157e59be3" + } + }, + { + "text": "Jhevon is not the best math professor that I had. Sometimes his lectures go off topic and teaches extra information that is not needed for this class. There was 10 quizzes and 2 test and a final.", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d378cd60fca157e59be4" + } + }, + { + "text": "BEYOND AMAZING. took him for Calc.1 and I don't regret it. He records his lectures and uploads them on Youtube, which's perfect. He gives a quiz every week based on previous two classes, you could literally get a 100 on these quizzes if you memorize the formulas that he boxes and if you practice. 2 exams 30% and a final 40%. QZ on the 1st day", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d378cd60fca157e59be5" + } + }, + { + "text": "He is no joke. You will fail his class or barely pass. I can guarantee it. He teaches fast. The way he teaches is for you to fail because he teaches based on examples of the book and tells you to practice department finals. But his exams are MORE challenging than what YOU practiced. However, after you failed his class you will be a better student.", + "pos": 0.112, + "neu": 0.755, + "neg": 0.133, + "_id": { + "$oid": "6711d378cd60fca157e59be6" + } + }, + { + "text": "Jhevon is a great person and professor, BUT his class structure is NOT designed for you to pass it is designed for you to be perfect. So if you really like challenges and you're willing to risk your GPA, risk failing, or even risk dropping the class go ahead, but it is YOUR funeral! & if he's the only available option then........ Good luck!!", + "pos": 0.242, + "neu": 0.585, + "neg": 0.173, + "_id": { + "$oid": "6711d378cd60fca157e59be7" + } + }, + { + "text": "One of the worst professor that I ever took. Stay away from him if you want a good grade. He teaches you to learn the topic, not pass in the exam. He sounds like he cares about the student. But he doesn't. He made the final hard, And don't curve.", + "pos": 0.125, + "neu": 0.8, + "neg": 0.075, + "_id": { + "$oid": "6711d378cd60fca157e59be8" + } + }, + { + "text": "He is EXTREMELY clear and fair. Closely follows the book; his lectures are really organized (writes the formal stuff, then breaks it down informally, then does examples). he also records his lectures. a lot of profs in this school dont prioritize teaching and halfass their lectures, but he doesnt. he curves, but tests are hard, so do not slack off", + "pos": 0.07, + "neu": 0.904, + "neg": 0.025, + "_id": { + "$oid": "6711d378cd60fca157e59be9" + } + }, + { + "text": "He's the best !!!! - that's all I had to say!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d378cd60fca157e59bea" + } + }, + { + "text": "great lectures, he expects you to be prepared for class with a quiz every Tuesday; quizzes with extra credits: quizzes are on everything covered in the previous week no surprises, extra credits are stuff on what will be covered this week, basically rewards people who read ahead. if you study for class and not being lazy, you will get a good grade", + "pos": 0.256, + "neu": 0.722, + "neg": 0.022, + "_id": { + "$oid": "6711d378cd60fca157e59beb" + } + }, + { + "text": "Bless his almighty soul.", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d378cd60fca157e59bec" + } + }, + { + "text": "Jesus... he can teach. For the love of all that is holy, please do not take this class if you are prone to making silly mistakes. Because you will not pass. However, if you're confident in your ability, if you take him, you will learn, and you will learn to be careful.", + "pos": 0.236, + "neu": 0.723, + "neg": 0.04, + "_id": { + "$oid": "6711d378cd60fca157e59bed" + } + }, + { + "text": "Okay, this guy could teach and his lecture is useful. Buttt quiz every week and very very tough grading. He loves to take off small points and they add up. On the exam are usually one or two questions that you will be surprised, so make sure you do a lot of practice before exam.", + "pos": 0.203, + "neu": 0.765, + "neg": 0.032, + "_id": { + "$oid": "6711d378cd60fca157e59bee" + } + }, + { + "text": "He is a good math teacher of yours even though a lot of in-class quizzes and exams will be tough.", + "pos": 0.129, + "neu": 0.804, + "neg": 0.067, + "_id": { + "$oid": "6711d378cd60fca157e59bef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d379cd60fca157e59bf1" + }, + "professor_name": "Alexander Punnoose", + "rating": 2.7, + "department": "Physics department", + "comments": [ + { + "text": "Run away man", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59bf2" + } + }, + { + "text": "Avoid if possible. Very unfair professor and his exams aren't a reflection of the lecture material. Changes rules of physics just because he wants to. Makes students feel like they are uneducated and makes them feel bad about themselves. Is always making mistakes especially on exams and never gave back credit for questions he made mistakes on.", + "pos": 0.036, + "neu": 0.727, + "neg": 0.237, + "_id": { + "$oid": "6711d379cd60fca157e59bf3" + } + }, + { + "text": "Spends an entire lecture deriving an equation and then gives exams on material not covered. Exams are 20 mcq and 3 of them make up 84% of your grade. Also, pop attendance quizzes. Avoid him if possible... if not, good luck.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d379cd60fca157e59bf4" + } + }, + { + "text": "The level of tr0ma he gave is indescribable. his \"realtime syllabus\" is useless & dishonest, no slides he j derives equations. cant even self-teach w his class bc his qs r based on unpredictable content. he purposely does not want to help. he is mean irl but nice on email so he doesn't get reported. he ruined my semster AVOID HIM, HE IS MAL1C10US!", + "pos": 0.048, + "neu": 0.731, + "neg": 0.221, + "_id": { + "$oid": "6711d379cd60fca157e59bf5" + } + }, + { + "text": "we all have a goal in life and his is to ensure that most students fail. 3 exams 20 q each and 84%. When confronted about exams covering unlearned material starts yelling. gives resources just to say he tried, knowing they won't help on exams. better off getting an e-permit than ever having to interact with him.", + "pos": 0.084, + "neu": 0.796, + "neg": 0.12, + "_id": { + "$oid": "6711d379cd60fca157e59bf6" + } + }, + { + "text": "Wow. never dealt with such a psych0t1c professor in my life. 1st day, student raised concern about never taking physics course before and requesting additional resources, he told the student \"you're scr3w3d.\" horrible at explaining concepts, tests w/ mistakes, exam q's are unrealistic his lab TAs can't even do, acts nice in email, but very rude irl", + "pos": 0.066, + "neu": 0.803, + "neg": 0.13, + "_id": { + "$oid": "6711d379cd60fca157e59bf7" + } + }, + { + "text": "straight up horrible professor. has been receiving complaints for years. he will give little to no related homework practice. class is basically graded on 3 exams and the exams are full of mistakes and different than what he teaches in class. exams are unfair because they are drastically different from the textbook and material he uses.", + "pos": 0.029, + "neu": 0.762, + "neg": 0.209, + "_id": { + "$oid": "6711d379cd60fca157e59bf8" + } + }, + { + "text": "Got so bad there was a point in my life where'd I rather d** than take his class :). \n\nHonestly don't know how this guy is still a professor. On the first exam, he made many mistakes and had students (who took AP Physics in high school) correcting the answers and wording on the exams. Take a diff. professor or drop out of his class.", + "pos": 0.041, + "neu": 0.843, + "neg": 0.116, + "_id": { + "$oid": "6711d379cd60fca157e59bf9" + } + }, + { + "text": "mtch.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59bfa" + } + }, + { + "text": "If I could give him a 0, I would. As others said, his exams are multiple choice questions without the option of partial credit. Most of the class got D's and F's and no curve at all. Honestly, you're in a much better position if you take this course in the summer and avoid him at all costs.", + "pos": 0.129, + "neu": 0.804, + "neg": 0.067, + "_id": { + "$oid": "6711d379cd60fca157e59bfb" + } + }, + { + "text": "Unless you have a solid physics background DO NOT TAKE HIM. His exams are insane about 80% of the class failed them. read the textbook and do the majority of the problems and u might get a 50 on his exams. we relied on hw 30% to pass but he's removing hw next term. As someone said time spent studying is not proportional to grade. No partial credit.", + "pos": 0.017, + "neu": 0.83, + "neg": 0.153, + "_id": { + "$oid": "6711d379cd60fca157e59bfc" + } + }, + { + "text": "Can teach well, but grades very sternly. Exams were multiple choice with no partial credit. Most kids get D's or F's on the exams. To pass his class, try to be above average for exams i.e 10/20 or above. However, this might change because homework might be removed for Fall 2023 (homework was 30% of our grade). The textbook is your best friend.", + "pos": 0.155, + "neu": 0.771, + "neg": 0.074, + "_id": { + "$oid": "6711d379cd60fca157e59bfd" + } + }, + { + "text": "Quiet lecturer. Only covers concepts in class, no problem solving. HW on Wiley online platform. Exams are MCQ with no chance of partial cred. Exam questions rely on strong physics background which most dont have. No curve. Low chance of an avg student passing. Take another professor if possible. Time spent studying not proportional to final grade.", + "pos": 0.176, + "neu": 0.766, + "neg": 0.058, + "_id": { + "$oid": "6711d379cd60fca157e59bfe" + } + }, + { + "text": "mannnnn words cant describe ****", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59bff" + } + }, + { + "text": "Please avoid this professor if possible!\nHe pulled a full 180 on his students this semester. \nThe exams are multiple choice, which leaves no room for partial credit. \nHe doesn't provide or allow any sort of reference sheet. \nHe makes homework 40% of your total grade, so keep on top of that. \nHe will stress you the hell out!", + "pos": 0.097, + "neu": 0.708, + "neg": 0.195, + "_id": { + "$oid": "6711d379cd60fca157e59c00" + } + }, + { + "text": "His lectures are mostly about theories of the subjects in the textbook and proving how these equations came to be through derivation. Homework is very time-consuming but is worth 40% of the final grade, make sure to do all of it. As long as you do well in HW/Lab and get at least a 60% on one of your midterms then you could pass the class with a C", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59c01" + } + }, + { + "text": "STAY AWAY!!!!!.\n\nI CARE FOR Y'ALL SO NO ONE SHOULD HAVE GO THROUGH THIS BAD A PROFESSOR IN THEIR COLLEGE LIFETIME.\n\nI DON'T KNOW WHO SAID HE'S GOOD. \n\nABSOLUTE WORSE. \n\nE-PERMIT OR SUMMMER", + "pos": 0.134, + "neu": 0.617, + "neg": 0.248, + "_id": { + "$oid": "6711d379cd60fca157e59c02" + } + }, + { + "text": "I hardly contribute to site like these. But Punnoose is unbelievable. First things first. He is not organized and can't teach. He is not coherent at all. Secondly, his exams are multiple choice, which leaves no room for partial credit resulting in his entire class getting F and D.\n\nRefuses to curve and not empathetic at all. Also smells like cigars", + "pos": 0.149, + "neu": 0.772, + "neg": 0.08, + "_id": { + "$oid": "6711d379cd60fca157e59c03" + } + }, + { + "text": "JUST TAKE IT OVER THE SUMMER PLEASE. AVOID HIM, THE STRESS IS NOT WORTH IT. PLEASE JUST DON'T DO THIS TO YOURSELF. IT IS NOT WORTH IT. STAY AWAYYYYYY FROM THIS PROF.", + "pos": 0.06, + "neu": 0.674, + "neg": 0.267, + "_id": { + "$oid": "6711d379cd60fca157e59c04" + } + }, + { + "text": "He changed his policies this semester making his class MUCH harder. For the exams you not allowed to bring a formula sheet and won't be provided one. The HW grade is 40% so it will literally save you if you do it all. \nFor every exam most people failed with an F very few got above a D or C. You're better off taking the course in the summer tbh.", + "pos": 0.08, + "neu": 0.874, + "neg": 0.047, + "_id": { + "$oid": "6711d379cd60fca157e59c05" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d379cd60fca157e59c07" + }, + "professor_name": "Ann Marie Yali", + "rating": 3.1, + "department": "Psychology department", + "comments": [ + { + "text": "One of the nicest professors u'll ever see! if you participate in class (she makes it very easy) you'll do just fine. She has a very hard line grading criteria but honestly if you read the notes she gives on your paper the next one will be fine. If she sees the effort she will accommodate. come to lecture u and participate will be fine. Fun class!", + "pos": 0.24, + "neu": 0.743, + "neg": 0.017, + "_id": { + "$oid": "6711d379cd60fca157e59c08" + } + }, + { + "text": "She's a pleasant lady and she knows her stuff, however I felt the class was unnecessarily stressful. She gives a lot of feedback which is cool. She is a tough/picky grader though. Overall, I learned a lot in the class but I wouldn't recommend if you are looking for a stress free class that is an easy A (I got a B+ and I put in SO much work).", + "pos": 0.146, + "neu": 0.75, + "neg": 0.103, + "_id": { + "$oid": "6711d379cd60fca157e59c09" + } + }, + { + "text": "Prof. Yali is NOT an easy Professor. She will push you. Very helpful for thesis writing. Yet, she is also very fast-paced. Assigns very demanding/challenging readings and writing assignments. This can be a lot to balance and very, very difficult when taking more than 1 class and/or if you're balancing a job. Can be hard to keep up with.", + "pos": 0.048, + "neu": 0.847, + "neg": 0.106, + "_id": { + "$oid": "6711d379cd60fca157e59c0a" + } + }, + { + "text": "I was almost deceived by the negative reviews but am very glad I wasn't. Professor Yali is an amazing and kind professor who I would highly recommend anyone to take if you are willing to actually work for a good grade. Her quizzes all had three attempts so you could get the best grade. Papers also had many opportunities for bonus points as well.", + "pos": 0.402, + "neu": 0.555, + "neg": 0.043, + "_id": { + "$oid": "6711d379cd60fca157e59c0b" + } + }, + { + "text": "Tough grader and not good at teaching the material. Difficult exams and wouldn't accept requests for more time. Strict with h.w & assignments. Most material was from articles as there's no textbook. Hypocritical, always says she's open to feedback but would interrupt us when we actually do so. If you need a psych literally take any other professor.", + "pos": 0.027, + "neu": 0.8, + "neg": 0.173, + "_id": { + "$oid": "6711d379cd60fca157e59c0c" + } + }, + { + "text": "As great as Professor Yali may be for other students, I find that she makes things really stressful and if you do not immediately get what she is asking for - despite how hard you are trying - this will be reflected in your grade. If you enjoy the subject and don't mind the stress -- go for it. Otherwise, prepare for a lot of work, writing, stress.", + "pos": 0.138, + "neu": 0.782, + "neg": 0.081, + "_id": { + "$oid": "6711d379cd60fca157e59c0d" + } + }, + { + "text": "JUST DO NOT DO IT!!! SHE IS A NIGHTMARE AND HER CLASS HAD LOW ENROLLMENT SO THEY MADE IT ONLINE TO MAKE PEOPLE ENROLL", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d379cd60fca157e59c0e" + } + }, + { + "text": "Do NOT take a class with this professor! She does wayy too much!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59c0f" + } + }, + { + "text": "Dr. Yali is an awesome instructor. The class was 100% discussion based which kept it fun and interesting. You read lots of studies and write a 2 page weekly paper, but for grad school that's not too bad. The final paper is due around midterm so she can give you feedback and the chance to improve it for a potentially better grade.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59c10" + } + }, + { + "text": "Dr. Yali is amazing! I had her for graduate level Social Psychology which was a discussion based class. She grades with a TON of feedback and grades on improvement. If your first papers aren't great but they improve over the semester, you'll do fine. (There is a 2pg paper due each week, with 2 lowest scores dropping.) She is FANTASTIC.", + "pos": 0.222, + "neu": 0.704, + "neg": 0.074, + "_id": { + "$oid": "6711d379cd60fca157e59c11" + } + }, + { + "text": "Prof. Yali was overall alright. Her lectures are decent and you need to take copious notes in order to do well. Her examples are funny and connect to students. There are lots of quizzes in this class. You need to attend class. You are not only graded on being there but also participation. If you dont talk in a given class you'l get a 0 for that day", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59c12" + } + }, + { + "text": "Just don't.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59c13" + } + }, + { + "text": "your whole grade depends on 3 essays. She's a picky grader and will take out points for every little things. Don't take her", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59c14" + } + }, + { + "text": "She is not a nice person. Social is suppose to be an interesting class. This was an awful experience for me and my friends.", + "pos": 0.186, + "neu": 0.642, + "neg": 0.171, + "_id": { + "$oid": "6711d379cd60fca157e59c15" + } + }, + { + "text": "we are not a masters class. This professor was a nightmare she expected you to take 50 minutes to answer 50 questions. 5 exams each exam has three chapters in it.3 papers the 4th is optional no room for extra extra. She has this AOTEL option but thats literally one point for the amount of work shes asking. Shes not realistic and exam heavy grade", + "pos": 0.0, + "neu": 0.976, + "neg": 0.024, + "_id": { + "$oid": "6711d379cd60fca157e59c16" + } + }, + { + "text": "She's honestly ridiculous. Five exams with 50 questions each. Three chapters in each exam. No room for extra credit, she grades you for every single thing. Textbook heavy use! She gave two extra credit assignments that was only worth 3% like what's that gonna do? She doesn't give homework. She sucks and you are bound to fail her class.", + "pos": 0.175, + "neu": 0.679, + "neg": 0.145, + "_id": { + "$oid": "6711d379cd60fca157e59c17" + } + }, + { + "text": "50 questions for 50 mins she thinks we are trained doggies, she expects everyone to be up to her par. if your not on her level then dont be at all. She will make you want to pull your hair out even if your bald. Her expectations is way too high for a level 200 class", + "pos": 0.023, + "neu": 0.977, + "neg": 0.0, + "_id": { + "$oid": "6711d379cd60fca157e59c18" + } + }, + { + "text": "Tests are 50 multiple choice questions in 50 minutes. Some questions have up to 6 choices each. You get a what you should focus on per chapter for her exams but manages to put things that are not there on the tests. Theres 5 exams, drops the lowest and papers are ok. Lectures are boring, and extra credit opportunities are harder than the papers.", + "pos": 0.093, + "neu": 0.82, + "neg": 0.087, + "_id": { + "$oid": "6711d379cd60fca157e59c19" + } + }, + { + "text": "She gives 50+ in-depth questions with 50 mins available. Chapters are huge (each test is 3 chapter; 150ish pages) if you're a full-time student you need to forget about any other classes if you want to get B here. Speaks fast, which is ok, but she expects students to know all 14 chapters by heart. There just will never be enough time to study.", + "pos": 0.123, + "neu": 0.857, + "neg": 0.021, + "_id": { + "$oid": "6711d379cd60fca157e59c1a" + } + }, + { + "text": "Prof. Yali's positive psych class is none to just get by in, you can put in a lot n still get horrible grade. 5 homework assignments applying your life to supported pos. psych text; it is introspection but then she grades it; her ink is a lethal weapon. Huge final paper, difficult exams, no access to slides. Curved by 2. Research missionary.", + "pos": 0.078, + "neu": 0.767, + "neg": 0.155, + "_id": { + "$oid": "6711d379cd60fca157e59c1b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37acd60fca157e59c1d" + }, + "professor_name": "Keith Thompson", + "rating": 3.2, + "department": "Sociology department", + "comments": [ + { + "text": "No. Just no. What a total waste. Hes rude and never stays on topic. He changed the dates every single class. He changed the topic of assignments every class. If you dont respond to him in split second he will yell at the class. He would constantly blame us (the class) for his short comings. Just avoid his classes online.", + "pos": 0.0, + "neu": 0.836, + "neg": 0.164, + "_id": { + "$oid": "6711d37acd60fca157e59c1e" + } + }, + { + "text": "I've taken 3 of his classes so far. You really must pay attention, take notes, and participate to understand the material. He is big on correct grammar in assignments. ASA style is used. He says that A(s) are over-rated in his class, but I really worked hard for mine and it shows. I've become a stronger writer from his classes, and he is so funny.", + "pos": 0.117, + "neu": 0.837, + "neg": 0.046, + "_id": { + "$oid": "6711d37acd60fca157e59c1f" + } + }, + { + "text": "Professor Thompson was a huge waste of my time. His class was terrible. He was so disorganized, and dysfunctional. He assigns things, then reassigns them, he goes off on certain tangents, and he manages to have favorites. Please do not take him. I would post my grade but we are a week after the grades where supposed to be submitted and I have none.", + "pos": 0.097, + "neu": 0.819, + "neg": 0.084, + "_id": { + "$oid": "6711d37acd60fca157e59c20" + } + }, + { + "text": "Professor Tompson is a great guy, but if you're not okay with due dates constantly changing, papers and expectations not being clear, and no organization do not take him. He might be an easy A but its comes with a lot of stress. He only communications through his personal cell phone by call or text and always has excuses. Also took him for SOC 244", + "pos": 0.083, + "neu": 0.769, + "neg": 0.147, + "_id": { + "$oid": "6711d37acd60fca157e59c21" + } + }, + { + "text": "Love this professor! Have a sense of humor with this professor, join him in class discussion, visit his office hours, and you will be on his top 10 student list. It's ok if challenges what you are addressing in class he wants to hear you! WRITE EVERYTHING DOWN HE WILL FORGET! I SUGGEST BRINGING YOUR PC TO THIS CLASS to take notes. I RECOMMEND HIM!!", + "pos": 0.234, + "neu": 0.732, + "neg": 0.034, + "_id": { + "$oid": "6711d37acd60fca157e59c22" + } + }, + { + "text": "MY ALL TIME FAVE PROFESSOR! SOME PPL GET WORKED UP ABOUT HOW HE CHANGES THINGS THE LAST MINUTE \"BUT IF I WERE YOU BUT IM NOT\" (HAHA) MAKE SURE EVERY SINGLE CLASS YOU ASK HIM WHEN ARE THINGS DUE AND MAKE SURE YOU ARE WRITING DOWN WHAT HE'S SAYING BCUZ IT WILL CHANGE A FEW TIMES. IF YOU ARE SENSITIVE DO NOT TAKE HIM. HE IS A DOWN TO EARTH PERSON !", + "pos": 0.077, + "neu": 0.827, + "neg": 0.096, + "_id": { + "$oid": "6711d37acd60fca157e59c23" + } + }, + { + "text": "Easy Class, Professor is Hilarious. If you are a highly sensitive person, either do not take his class, or do not take offense to his comments. He is fair and will work with you even though he will give you a hard time. Talks a lot about his own life and tries to make the class fun. Is a bit disorganized and forgetful but just do the assignments.", + "pos": 0.122, + "neu": 0.818, + "neg": 0.059, + "_id": { + "$oid": "6711d37acd60fca157e59c24" + } + }, + { + "text": "Keith is great... if you do the work. He is a little all over the place, but he is engaging and accessible. He is always available to talk outside of class about anything and offers a number of extra credit assignments. Don't trust the syllabus - he will change it throughout the semester but show up, do your work, seem interested and you can't fail", + "pos": 0.225, + "neu": 0.731, + "neg": 0.045, + "_id": { + "$oid": "6711d37acd60fca157e59c25" + } + }, + { + "text": "Make sure to do the readings he assigns. That will be your saving grace. He means well but, will forget he assigned a reading and goes off topic most of the time. If you are someone who needs structure this may not be the class for you. Fair grader and very approachable if you need help with an assignment.", + "pos": 0.173, + "neu": 0.792, + "neg": 0.035, + "_id": { + "$oid": "6711d37acd60fca157e59c26" + } + }, + { + "text": "Down to earth professor. Thompson explains things in a way students can really understand. Cares about students success in the course. Overall a really nice guy.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c27" + } + }, + { + "text": "He has been one of the best professors that I have encounter at ccny. I am an older learner and he taught me a lot. I loved his class. Great class. I strongly encourage young men to take his course", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c28" + } + }, + { + "text": "Professor Thompson is an interesting professor. He talks a lot, and not usually on the topic at hand. He goes on a lot of small tangents that waste class time and then assigns and unassigns papers because we are unable to cover the readings. It is very frustrating. In the end we were graded on a 5 page midterm essay and a 6 page final essay.", + "pos": 0.08, + "neu": 0.839, + "neg": 0.081, + "_id": { + "$oid": "6711d37acd60fca157e59c29" + } + }, + { + "text": "He was pretty disorganized and he did like to go head to head with students a lot of the time. If he didn't like you he made that extremely clear. He gave take home tests but his requirements changed so often - I got an A but I wasn't really sure how. I saw other students exams who he had failed and they basically wrote the same thing he did.", + "pos": 0.073, + "neu": 0.796, + "neg": 0.131, + "_id": { + "$oid": "6711d37acd60fca157e59c2a" + } + }, + { + "text": "He can be a little rough around the edges but hes harmless. Bring the textbook. Hell explain every chapter and he always has his own personal experiences to share which makes it interesting. Do his assignments straight from the textbook and add examples youll be fine. 3-4 assignments max which includes take home exam.", + "pos": 0.198, + "neu": 0.708, + "neg": 0.094, + "_id": { + "$oid": "6711d37acd60fca157e59c2b" + } + }, + { + "text": "Don't even give this guy a chance unless you are desperate for a class or there are no more classes you can take that semester. He will ruin your life. He will embarrass you in class if it suits him.", + "pos": 0.042, + "neu": 0.737, + "neg": 0.221, + "_id": { + "$oid": "6711d37acd60fca157e59c2c" + } + }, + { + "text": "Professor Thompson is a tough grader. His pet peeve is grammar. He lectured every class, heavy reading but he provides majority of reading pamphlets, and reserves textbook for students in library. No quiz, no homework, take home midterm, and take home final.", + "pos": 0.051, + "neu": 0.859, + "neg": 0.089, + "_id": { + "$oid": "6711d37acd60fca157e59c2d" + } + }, + { + "text": "I took 3 classes with him, he is a tough cookie, speaks the truth with no filter but he tells you what he expects and if you participate and show up an American is quite doable", + "pos": 0.044, + "neu": 0.88, + "neg": 0.076, + "_id": { + "$oid": "6711d37acd60fca157e59c2e" + } + }, + { + "text": "Great professor. Helpful when you need help. Approachable!", + "pos": 0.664, + "neu": 0.336, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c2f" + } + }, + { + "text": "If you want an A in his class, just complete your assignments & don't take things personal. He can be rude at times but its one of those classes for lazy students. He ends class early often and assigns a lot of readings but the lectures end up being more conversational and unorganized. only time you'll need the books is for the papers.", + "pos": 0.017, + "neu": 0.904, + "neg": 0.079, + "_id": { + "$oid": "6711d37acd60fca157e59c30" + } + }, + { + "text": "One of the worst professors I have ever met in my college experience. In order to to pass his class, you have to stoop down to his level. He pretty much likes students that praises him for the little things he has done in his life. You don't learn anything useful in his class. The books and textbook are the only things you need in order to pass", + "pos": 0.119, + "neu": 0.798, + "neg": 0.082, + "_id": { + "$oid": "6711d37acd60fca157e59c31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37acd60fca157e59c33" + }, + "professor_name": "Kevin Hall", + "rating": 4.8, + "department": "Speech department", + "comments": [ + { + "text": "I took Professor Hall back in Fall 2021 and I 100% recommend taking his class. This class was pretty light, just do your work, participate, and show up to class. It's an easy A. He also makes class fun even if the class is online and is available to help you if you need it.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c34" + } + }, + { + "text": "Probably one of the best professors I have ever had. I would 100 percent recommend taking him. From the group games to interactive activities, Prof. Hall makes sure that you have fun in class. Gives great feedback on the speeches and makes sure you participate. As a second language student, I was able to further develop my public speaking skills.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c35" + } + }, + { + "text": "The best class I've taken so far with such a kind professor who really makes you wanna come to class to learn and better yourself. However, keep in mind this is a class where you can't hide in the corner. Amazing vibe in the class and also an amazing teacher", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c36" + } + }, + { + "text": "Your grade is based on a few quizzes and a few speeches. Professor Hall is an understandable teacher and makes you work for your grade.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c37" + } + }, + { + "text": "Professor Hall was honestly pretty fun to work with. He made classes engaging and I really grew as a speaker. You definitely need to put the work into this class in order to give a good speech and fulfill his criteria, but it was all worth it. Despite the serious anxiety I felt at times during this class, I came out much more confident.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c38" + } + }, + { + "text": "Great professor!! Makes you feel so comfortable while giving your speech and is a very genuinely funny person.", + "pos": 0.513, + "neu": 0.487, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c39" + } + }, + { + "text": "Professor Hall is the best, he does an amazing job showing you your true potential", + "pos": 0.474, + "neu": 0.526, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c3a" + } + }, + { + "text": "Arguably the best one I had this semester. He is awesome. You need to give 4 speeches and they are a bit challenging but nothing too crazy. Participation is the key. He isn't a harsh grader and communicates with students very well. Have to be a good speaker if you want an A but if you are not a good talker, you will soon get the hang of it.", + "pos": 0.241, + "neu": 0.704, + "neg": 0.055, + "_id": { + "$oid": "6711d37acd60fca157e59c3b" + } + }, + { + "text": "AMAZINGG PROFF. His class is fun and not hard at all. Would def take him again. not hard homework and u don't get a lot of them.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c3c" + } + }, + { + "text": "Hes just amazing. The work load isnt that much to be honest. Its like 4 speeches which all come by easy and also pretty fun.", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c3d" + } + }, + { + "text": "Absolutely the best professor I've had. The class is really fun and you get to step outside of your comfort zone.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c3e" + } + }, + { + "text": "sweetest and funniest professor ever. you have to prepare 3-4 speeches and a group project. also for the final, you can do anything, sing, stand up, anything.", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c3f" + } + }, + { + "text": "professor hall is amazing! I took him in spring 2019 and I still remain in contact with him. he's very funny, his class was extremely fun, but he makes you work for your grade! make sure you keep up with the readings and do well on your speeches", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c40" + } + }, + { + "text": "Their is alot of assignment and his very harsh grader and didnt want to give out good grades his quizzes are super hard and specific that the hole class literally fail them", + "pos": 0.161, + "neu": 0.617, + "neg": 0.221, + "_id": { + "$oid": "6711d37acd60fca157e59c41" + } + }, + { + "text": "hes really extra for no reason. his class is fun but he makes you do the most to get a A for his class. He expects so much for speeches. he has five total speeches. His group project is annoying if people you work with doesn't contribute or help. he gives quizzes off of a textbook. ATTENDANCE IS MANDATORY.", + "pos": 0.07, + "neu": 0.808, + "neg": 0.122, + "_id": { + "$oid": "6711d37acd60fca157e59c42" + } + }, + { + "text": "Be prepared to work your butt off and only get an A-.", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c43" + } + }, + { + "text": "This review is by someone who hates speech and is a second language. Speech is no easy A class. Expect to put enough work. But Prof Hall was amazing. He made sure everyone enjoys the class. No judgment or anything, just do your work and you will be fine and walk away from the class happily. Take him! He is the loveliest professor I have ever had.", + "pos": 0.234, + "neu": 0.691, + "neg": 0.076, + "_id": { + "$oid": "6711d37acd60fca157e59c44" + } + }, + { + "text": "His class was amazing. At first I hated speech but he gives a lot of good feedback and makes it a lot easier. It is one of those classes where you always communicate with your classmates. His exercises are fun and he is very inspirational.", + "pos": 0.317, + "neu": 0.641, + "neg": 0.043, + "_id": { + "$oid": "6711d37acd60fca157e59c45" + } + }, + { + "text": "One of the best professors of CCNY. I used to hate giving speech before. However, after taking his class, I got a little encouragement. He really makes the class enjoyable with games and other fun activities. I strongly recommend taking him. You won't regret it.", + "pos": 0.359, + "neu": 0.581, + "neg": 0.06, + "_id": { + "$oid": "6711d37acd60fca157e59c46" + } + }, + { + "text": "HALL IS AMAZING!!!took him as an elective bc i didnt have any other option (im the very last person to be a public speakr) and that was the best decision ive made so far as electives!!! His class is super easy just make sure you have your speech prepared by the due dates! As a side note, you will learn more things other than speech! TAKE HIM 1000%!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d37acd60fca157e59c47" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37bcd60fca157e59c49" + }, + "professor_name": "Ahmet Yuksel", + "rating": 4.1, + "department": "Computer Science department", + "comments": [ + { + "text": "Prof Yuksel was a straightforward person, attendance matters for your grade, the class is difficult but what I like about this prof was his lectures and how he broke down every information into slides so the class gets a better understanding. There are a lot of labs and there isn't makeup unless you email him. Overall, strict but very helpful.", + "pos": 0.171, + "neu": 0.753, + "neg": 0.076, + "_id": { + "$oid": "6711d37bcd60fca157e59c4a" + } + }, + { + "text": "I took Algo in Summer 22. While its not the most challenging course, he is one of the few professors who can actually teach; I loved how he broke down each concept and would ask you to make sure you understand. He'd switch between in person and zoom. His project is straight foward. His exams are tough, but he will curve at the end. Past exams help!", + "pos": 0.127, + "neu": 0.812, + "neg": 0.061, + "_id": { + "$oid": "6711d37bcd60fca157e59c4b" + } + }, + { + "text": "The professor help a lot, if student do not understand something on class or lab time. Explain good.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c4c" + } + }, + { + "text": "Always available to answer questions. Lectures are clear and ease understanding of topics. Exams are fairly difficult, but curves grades as needed.", + "pos": 0.146, + "neu": 0.782, + "neg": 0.072, + "_id": { + "$oid": "6711d37bcd60fca157e59c4d" + } + }, + { + "text": "He is the best CS professor I ever had. I also had professor Yuksel for CSC113 and I loved his lectures. His exams are tough but he teaches materials well enough, grades fairly, and curves when needed. I am so glad I had him for two courses since he is transferring from CCNY to another CUNY college.", + "pos": 0.196, + "neu": 0.785, + "neg": 0.019, + "_id": { + "$oid": "6711d37bcd60fca157e59c4e" + } + }, + { + "text": "He is the best CS professor I ever had. I also had professor Yuksel for CSC113 and I loved his lectures. His exams are tough but he teaches materials well enough, grades fairly, and curves when needed. I am so glad I had him for two courses since he is transferring from CCNY to another CUNY college. Will miss this prof!!", + "pos": 0.189, + "neu": 0.767, + "neg": 0.044, + "_id": { + "$oid": "6711d37bcd60fca157e59c4f" + } + }, + { + "text": "Avoid asking too many questions because he gets frustrated easily. Regardless of that, he's a pretty good professor and can actually teach the content well. Definitely attend and/or watch lectures. Ended up curving grades but it's still important to demonstrate understanding.", + "pos": 0.236, + "neu": 0.685, + "neg": 0.079, + "_id": { + "$oid": "6711d37bcd60fca157e59c50" + } + }, + { + "text": "As mentioned below it's true he has a short temper & he never smiles but his teaching skill is excellent. He gave extra credit assignment which saved many people from failing the class. In addition, he answered our questions for twelve hours straight which really helped me improve my grade on his take-home exam. Real tough cookie but a real gem.", + "pos": 0.245, + "neu": 0.633, + "neg": 0.123, + "_id": { + "$oid": "6711d37bcd60fca157e59c51" + } + }, + { + "text": "Great at explaining concepts to help you understand coding. Has helped me improve my python skills. Also saw his 221 lectures when I got lost in my 221 class, and his explanations were amazing. One con is that he's a very strict grader made me question if he actually checked one of my assignments. Also kinda rude. Otherwise great at teaching.", + "pos": 0.227, + "neu": 0.707, + "neg": 0.066, + "_id": { + "$oid": "6711d37bcd60fca157e59c52" + } + }, + { + "text": "I took this professor this semester. He makes his lectures fun. He is very understanding. Could not ask for more.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c53" + } + }, + { + "text": "lazy enough to make 0 effort to make an in-person class, grades nothing, easy A though", + "pos": 0.0, + "neu": 0.741, + "neg": 0.259, + "_id": { + "$oid": "6711d37bcd60fca157e59c54" + } + }, + { + "text": "Prof. Yuksel genuinely cares about his students and truly wants them to succeed. That doesn't mean that you should slack off though, in his class! Put in the work and he will reward you with a decent grade at the end of the semester. Overall, Prof. Yuksel is a fantastic prof. and you will learn the importance computer science based algorithms.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c55" + } + }, + { + "text": "I heard great things about Yuksel from a previous student which turned out to be true. He teaches programming in a way preparing students for professional life. Almost in every project, he was guiding students 24/7 on Zoom. I couldve done better if I had taken fewer classes for this semester. I hope I can do well in his 22000 too.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c56" + } + }, + { + "text": "Towards the beginning fo the semester, he was very rude and unhelpful. He talks about professionalism and isn't very professional himself. That's why I stopped asking him for help which turned out to be a great idea. I learned all the material by myself and did pretty decent in the class. My advice is to learn python before you take the class.", + "pos": 0.139, + "neu": 0.79, + "neg": 0.072, + "_id": { + "$oid": "6711d37bcd60fca157e59c57" + } + }, + { + "text": "Why is this class harder than CSC 103? It's a one credit course. The amount of work he assigns is over-the-top. This class should be a breeze. It is anything but.", + "pos": 0.057, + "neu": 0.943, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c58" + } + }, + { + "text": "He has a short temper. But, yes he can teach algorithms. If you have a chance take another professor because there's no need to hit yourself in the foot.", + "pos": 0.169, + "neu": 0.699, + "neg": 0.131, + "_id": { + "$oid": "6711d37bcd60fca157e59c59" + } + }, + { + "text": "He downloads slides from internet and often wrong. He just read them and have no idea what is going on. He won't admit when student point out his mistake. Does not care about student. He just throw you recording videos and very hard to reach. He keeps saying ask him on Zoom but most of time do not reply or very rule even he reply!", + "pos": 0.017, + "neu": 0.837, + "neg": 0.146, + "_id": { + "$oid": "6711d37bcd60fca157e59c5a" + } + }, + { + "text": "At first, it may seem like professor Yuksel has an austere disposition, however, based on attending all of his classes, I can tell he truly cares about the success of his students. Just try your best in this class and don't be afraid to ask questions even if he snaps at you. Also, remember this class is algorithms, it is not supposed to be \"easy\".", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c5b" + } + }, + { + "text": "Yuksel is a good teacher, but has an attitude problem. Me and other student's are afraid to ask him anything because he will may respond in a rude fashion. Otherwise, he teaches pretty well. The class consisted of 3 lab assignments, a midterm and final all programming in Python. The tests and lab are take home, so you have plenty of time to finish.", + "pos": 0.118, + "neu": 0.782, + "neg": 0.1, + "_id": { + "$oid": "6711d37bcd60fca157e59c5c" + } + }, + { + "text": "Yuksel's lectures are fun. He describes the material well and always encourages people to participate. However, you will not get a good grade if you do not participate. Other than that, I would take his classes again in the future.", + "pos": 0.178, + "neu": 0.771, + "neg": 0.052, + "_id": { + "$oid": "6711d37bcd60fca157e59c5d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37bcd60fca157e59c5f" + }, + "professor_name": "Leticia Perez", + "rating": 2.9, + "department": "Psychology department", + "comments": [ + { + "text": "nothing was learnt in this class; the goal was just to pass. i'd only advise you to take this class if other classes are full and this is the last option.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c60" + } + }, + { + "text": "I really don't understand the bad reviews, she is amazinggggg!! She is strict about phones, and coming on time, other than that she is really nice, understanding and gives a lot of extra credit, so if you failed it's your fault you didn't study enough.", + "pos": 0.165, + "neu": 0.722, + "neg": 0.113, + "_id": { + "$oid": "6711d37bcd60fca157e59c61" + } + }, + { + "text": "Only take this lady if you have no other option. The content of the class itself is straightforward; quizzes at the end of each chapter, 2-3 noncumulative exams incl. the final, so you just need the book & grade-wise you should be fine. Her as a professor, brings nothing to the table & her lectures leave a lot to be desired.", + "pos": 0.061, + "neu": 0.886, + "neg": 0.053, + "_id": { + "$oid": "6711d37bcd60fca157e59c62" + } + }, + { + "text": "i love prof Perez her classes and lectures are very interesting, she does base tests off the textbook but there are no papers for her class. If you read the txt book you will ace this class and she gives opportunity for extra credit as well. I learned a lot from her.", + "pos": 0.207, + "neu": 0.747, + "neg": 0.045, + "_id": { + "$oid": "6711d37bcd60fca157e59c63" + } + }, + { + "text": "She had a bad attitude, she reads directly from the PowerPoint, and the exams are poorly written and oddly specific. Avoid her class at all costs", + "pos": 0.0, + "neu": 0.808, + "neg": 0.192, + "_id": { + "$oid": "6711d37bcd60fca157e59c64" + } + }, + { + "text": "Her class is alright, grading system was a bit confusing though.", + "pos": 0.155, + "neu": 0.698, + "neg": 0.147, + "_id": { + "$oid": "6711d37bcd60fca157e59c65" + } + }, + { + "text": "Even though I'm probably not passing this class I think she teaches good, all you have to do is basically read the slides and you'll be good, I just don't pay attention ;( And yes everything is based on the textbook nothing from outside which kinda sucks", + "pos": 0.181, + "neu": 0.778, + "neg": 0.041, + "_id": { + "$oid": "6711d37bcd60fca157e59c66" + } + }, + { + "text": "Basically a self-teach class. She reads straight off the slides and is very unorganized. There is a quiz after every chapter that she speeds through and the quizzes are every other day. She says she's always available but has never once responded to my emails. Just study and you're likely to pass.", + "pos": 0.028, + "neu": 0.972, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c67" + } + }, + { + "text": "She reads off slides and does not finish the chapters so you basically have to teach yourself . The test are based on small sentences that are supposed to be in the textbook. The tests and quizzes are timed, She gives a minuter per question on the tests and quizzes so you basically have to rush .", + "pos": 0.021, + "neu": 0.979, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c68" + } + }, + { + "text": "She comes off strict but actually is very nice. The only thing that's annoying is that she changes her due dates everyday, just be on top because no make up quizes. But she gives sooo much extra credit and her test are easy and fair. The highest grade you can get is 125% instead of 100%!! Requires camera for attendance but not the whole class.", + "pos": 0.21, + "neu": 0.712, + "neg": 0.078, + "_id": { + "$oid": "6711d37bcd60fca157e59c69" + } + }, + { + "text": "The professor assigns assignments and does not even grade them, therefore harming your grades. Entire grade is basically based on exams because half the assignments you put your hard-work in would not even be accounted for. She just reads off the slides, and when she doesn't know an answer, she throws it back to the students.", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d37bcd60fca157e59c6a" + } + }, + { + "text": "Prof. Perez is great, not very organized though and yes, she reads the slides. But, if you ask her a question she will respond and with examples. She gives a lot of extra credit and participation is a plus. People who give a bad review are just lazy and do not want to study, they want an easy A.", + "pos": 0.178, + "neu": 0.695, + "neg": 0.127, + "_id": { + "$oid": "6711d37bcd60fca157e59c6b" + } + }, + { + "text": "She reads from PPT and cannot answer simple questions unless she given time to flip through the text. And if she doesn't know the answer, which is often, she will ask the students what they think of the question and move on.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c6c" + } + }, + { + "text": "Professor Perez is a solid instructor. She can be a little snappy sometimes, but she means well. She's tough on attendance and gives minimal but easy hmwk assignments. She also gives extra credit opportunities. Her exams are all info from the slides she lectures in class. Show up, take notes, ask questions (when needed) and you'll do fine.", + "pos": 0.242, + "neu": 0.733, + "neg": 0.025, + "_id": { + "$oid": "6711d37bcd60fca157e59c6d" + } + }, + { + "text": "We all know who wrote these reviews!! Scroll down for the real ones. At one point she even asked students to write them.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c6e" + } + }, + { + "text": "Shes great professor before and during the pandemic. She tried her best to delivery the material and rose above the occasion. I really enjoyed her class. She gives 4 exams including the final and a lot of extra credit. You also have a quiz after every chapter. She wants kids to be engage so participate much as you can. The material is interesting.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c6f" + } + }, + { + "text": "One of the Gems I've found at CCNY. Easy if you READ the Textbook, Slides and take good notes. Attendance Mandatory (10%), No Cell Phones or Laptops were allowed during class. 2 Midterms + 1 Final and Quizzes on Every Chapter. Always available through Email and makes learning FUN and EASY. I laughed every class. TAKE HER 100% Recommend.", + "pos": 0.276, + "neu": 0.694, + "neg": 0.03, + "_id": { + "$oid": "6711d37bcd60fca157e59c70" + } + }, + { + "text": "I took this class as a Hybrid course, half online/in person. I have to be honest, her personality is intense but if you get to know her, she's a sweet person. Just get your work done and don't miss class. Expect quizzes every week. The questions aren't hard, answers can be found directly in the textbook (even online). I recommend online.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c71" + } + }, + { + "text": "Prof. Perez is fine, she is very strict but she explains the material very clear. There are 3 exams 50 question each. The exams are worth 30% each and attendance is 10% of the grade. She gives a lot of extra credit which helps a lot!! I will take her again for another PSY course next semester.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d37bcd60fca157e59c72" + } + }, + { + "text": "One of the Toughest professor at ccny.", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d37bcd60fca157e59c73" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37ccd60fca157e59c75" + }, + "professor_name": "Michael Vulis", + "rating": 2.3, + "department": "Computer Science department", + "comments": [ + { + "text": "Good luck. He grades on two projects (49% midterm and 51% final). His lectures are useless. You won't even know what to ask because the lecture is so confusing. To get a A you must \"surprise him\".", + "pos": 0.177, + "neu": 0.707, + "neg": 0.117, + "_id": { + "$oid": "6711d37ccd60fca157e59c76" + } + }, + { + "text": "Great Guy. I learned a lot with his two projects. The pdf's were good and you have to also compliment them with google. He was accessible all the time. You can see that he cares about students.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c77" + } + }, + { + "text": "What are you talking about? those pdf files has everything (plus exercises), if not , then Google exists. Also, he can answer any question you throw at him in the group. It's either you did not want to learn or did not want to read. Covid happened, so we also need to do the work. This is a tough class if you wait last minute to do the work.", + "pos": 0.0, + "neu": 0.944, + "neg": 0.056, + "_id": { + "$oid": "6711d37ccd60fca157e59c78" + } + }, + { + "text": "This professor is hands down the worst professor I ever had during the COVID-19. He refused to teach the class during online classes. He gave us pdf notes to read that didn't make sense at all and then expects us to do a whole intermediate level assembly language project. No online resources can help you because the language is outdated.", + "pos": 0.04, + "neu": 0.833, + "neg": 0.126, + "_id": { + "$oid": "6711d37ccd60fca157e59c79" + } + }, + { + "text": "Professor Vulis is a very knowledgeable professor, but he gives no attention to whether students understand the material. He seems to not want to help students even when they have questions about the difficult concepts. Class is only 2 projects, no homework make sure u keep up with the class from the start. He is barely accessible out of class.", + "pos": 0.042, + "neu": 0.771, + "neg": 0.187, + "_id": { + "$oid": "6711d37ccd60fca157e59c7a" + } + }, + { + "text": "super simple class. grade is based on two projects midterm project and final project. if u go to lectures, he shows u parts of code you can use for the project. tells you exactly what you need for an A or B or C on the project so super straightforward. the projects take a longgg time though. so definitely don't try to do it last minute.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c7b" + } + }, + { + "text": "HE IS THE WORST!!!!!! MUST AVOID!!!! TAKE SUMMER CLASS WITH LUCCI!!!", + "pos": 0.0, + "neu": 0.547, + "neg": 0.453, + "_id": { + "$oid": "6711d37ccd60fca157e59c7c" + } + }, + { + "text": "Took him last semester, he's no longer allowed to teach 104. That should say enough. But if he somehow does, expect no syllabus, no HW, only 2 exams and you can't hear him. He only gives an A,B,C or F and nothing in between. Can't teach at all and doesn't care if you understand him or not. A disgrace to CCNY and to the CS department. He's a mess.", + "pos": 0.072, + "neu": 0.789, + "neg": 0.139, + "_id": { + "$oid": "6711d37ccd60fca157e59c7d" + } + }, + { + "text": "Must avoid at all cost! The absolute worst cs professor. He should not teach 104.", + "pos": 0.0, + "neu": 0.664, + "neg": 0.336, + "_id": { + "$oid": "6711d37ccd60fca157e59c7e" + } + }, + { + "text": "Cs104 is a nightmare at city college. That being said, Vulis is lessworsethan other profs in this course. Tricky class so read the textbook regularly each week emphasis on practice problems&concepts over vocabulary. Vulis gives credit for explaining concepts on test even if final answer wrong. Listen to TA, practice any hw given study20hrb4testpls.", + "pos": 0.045, + "neu": 0.875, + "neg": 0.081, + "_id": { + "$oid": "6711d37ccd60fca157e59c7f" + } + }, + { + "text": "This guy is the laziest, disorganized, and the most terrible professor I've seen at City College. Study from the textbook, youtube, and anything other than his lectures or don't take him at all. The TA's helpful but when the guy can't even prepare a lecture how can you re-enforce what you've learned in recitation? JUST AVOID HIM AT ALL COSTS!!!!!!!", + "pos": 0.028, + "neu": 0.807, + "neg": 0.165, + "_id": { + "$oid": "6711d37ccd60fca157e59c80" + } + }, + { + "text": "It is very hard to understand Prof Vulis and he speaks as if everyone has been programming as long as he has. Lazy professor, even he said so himself on the first day of class. Takes no pride in his appearance and could probably care less about his students. I learned everything on my own as usual with the CS dept at City.", + "pos": 0.047, + "neu": 0.862, + "neg": 0.091, + "_id": { + "$oid": "6711d37ccd60fca157e59c81" + } + }, + { + "text": "For those who are taking his class, you should attend every lecture and work through the problems Prof. Vulis goes through in class - they'll be very similar to exam problems. I can't emphasize this enough. He'll only test you on material covered in class. Reading relevant chapters from the textbook will be helpful too.", + "pos": 0.047, + "neu": 0.864, + "neg": 0.09, + "_id": { + "$oid": "6711d37ccd60fca157e59c82" + } + }, + { + "text": "Do yourself a favor and do NOT take him. His accent makes it very hard to understand him. His lectures are pointless and do not prepare you at all for the exams. His grading criteria consists of only the midterm and the final, and he \"does not believe in curves.\" His tests are short but super hard, even if you've studied the whole book by yourself.", + "pos": 0.1, + "neu": 0.859, + "neg": 0.041, + "_id": { + "$oid": "6711d37ccd60fca157e59c83" + } + }, + { + "text": "He's the worst. Nobody understands what he says. So lazy and boring. Very messy. No guideline for exams. Get ready to study everything on your own. Hard grader. Had to drop out...", + "pos": 0.055, + "neu": 0.531, + "neg": 0.413, + "_id": { + "$oid": "6711d37ccd60fca157e59c84" + } + }, + { + "text": "3rd year student here, best CSC professor Ive had yet. Clearly has been programming since it was a hobby as he said in the 80s. Everything you need for projects given in lecture, a tiny bit of things you need to look up but straight forward. Any textbook allowed, most assembly books are open source/free! Only 3 ppl got C for just handing in smthng", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c85" + } + }, + { + "text": "This is by far one of the best professor's at CCNY, despite his thick accent he knows his stuff and is willing to explain. This course is not for the weak, be prepare to think for yourself and learn! I enjoyed his course.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c86" + } + }, + { + "text": "Terrible at explaining key concepts. Hard to understand what he is saying at times. Graded by just 2 very hard exams which most people end up failing. Doesnt have a syllabus. Asks hard questions on exam. Not sure if theres a curve but try to avoid this professor if you can.", + "pos": 0.0, + "neu": 0.783, + "neg": 0.217, + "_id": { + "$oid": "6711d37ccd60fca157e59c87" + } + }, + { + "text": "Go to lecture and take notes. Many people fail and do bad Bcs they dont take notes. Most of the time he writes some code that is very helpful for the project. I know the first month is not helful, but you really need to go after the first month. You wont find good sources outside class.", + "pos": 0.033, + "neu": 0.846, + "neg": 0.121, + "_id": { + "$oid": "6711d37ccd60fca157e59c88" + } + }, + { + "text": "The course was explained thoroughly and the professor provided detailed answers to questions. There was one mid-sized indivfinal project.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c89" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37ccd60fca157e59c8b" + }, + "professor_name": "Ngee-Pong Chang", + "rating": 2.5, + "department": "Physics department", + "comments": [ + { + "text": "I'm not sure why his reviews are so negative. This Professor was very fair and had clear grading criteria. So long as you follow through on the work it's easy to do well.", + "pos": 0.232, + "neu": 0.615, + "neg": 0.153, + "_id": { + "$oid": "6711d37ccd60fca157e59c8c" + } + }, + { + "text": "Grade is calculated by exams, homework, and labs. Exams are more challenging than examples seen in lecture. Homework-type problems rarely appear on the exam. Lots of conceptual questions. Homework usually consists of a mix of multiple choice and short answer problems on WileyPlus Physics. Honestly, use the textbook to learn the material yourself.", + "pos": 0.083, + "neu": 0.826, + "neg": 0.091, + "_id": { + "$oid": "6711d37ccd60fca157e59c8d" + } + }, + { + "text": "Definitely, a class where you have to teach yourself the content, would not recommend. The professor is very kind and caring, but that is not reflected in the material he puts on his exams. The curve is massive and the test averages are usually very low.", + "pos": 0.123, + "neu": 0.787, + "neg": 0.089, + "_id": { + "$oid": "6711d37ccd60fca157e59c8e" + } + }, + { + "text": "This CCNY course was held on Mondays and Wednesdays, 12:00-2:00 PM, via Blackboard Collaborate. The class requires self-learning, possibly due to the vast course material. It can seem overwhelming, but the professor grades on a curve based on class average, easing the stress. Only an access code for Pearson is needed. Persistence is key. Good luck!", + "pos": 0.16, + "neu": 0.784, + "neg": 0.056, + "_id": { + "$oid": "6711d37ccd60fca157e59c8f" + } + }, + { + "text": "My best suggestion for when you take his tests--use your first attempt to find out the multiple choice algebraic equations to use on similar problems. Then use the second attempt to receive a higher score. The lecture doesn't help, although he is a sweet guy. The curve for the class is great, but still try your best.", + "pos": 0.192, + "neu": 0.756, + "neg": 0.052, + "_id": { + "$oid": "6711d37ccd60fca157e59c90" + } + }, + { + "text": "Prof Chang is not tech savvy. When we mentioned to do exams on Wiley since BB was not grading well, he said he doesn't know how to. His lectures are so long and uninteresting as he goes over unrelated topics. His exams are not like things we learned in class so good luck. Only thing I appreciate about him was he curved. Take another prof if you can", + "pos": 0.127, + "neu": 0.822, + "neg": 0.051, + "_id": { + "$oid": "6711d37ccd60fca157e59c91" + } + }, + { + "text": "Don't even get me started on the tests. They are literally impossible and NOTHING like the long homework he assigns. Your grade is basically half midterm and half final. The homework is worth 10% and he doesn't care about attendance. When I asked for help or how I can boost my grade he's like study. He doesn't care AT ALL. STEER CLEAR FROM HIM", + "pos": 0.172, + "neu": 0.732, + "neg": 0.096, + "_id": { + "$oid": "6711d37ccd60fca157e59c92" + } + }, + { + "text": "He was by far the worse teacher I've ever had in my life. I'd rather write 9,000 papers than take his class ever again. Save your time, energy, and sanity if you can.", + "pos": 0.138, + "neu": 0.781, + "neg": 0.081, + "_id": { + "$oid": "6711d37ccd60fca157e59c93" + } + }, + { + "text": "If you have this professor, I URGE you to transfer out. I am a medical student at Sophie Davis and this man almost ruined my chances with becoming a doctor because of his unfair grading system and exams. Once, because the entire class did well (average of 90/100), he purposely changed the test total to be out of 150 instead of 100.", + "pos": 0.054, + "neu": 0.859, + "neg": 0.087, + "_id": { + "$oid": "6711d37ccd60fca157e59c94" + } + }, + { + "text": "Though the material can be hard, many of the qs on his exams are variations from the homework, tb and class notes. The class average for our exams were pretty low but hes mad nice & wants everyone to do well and curves. I recommend going to his office hours, making sure you have/study ALL his notes , and redo Wileyplus practice/homework problems.", + "pos": 0.173, + "neu": 0.691, + "neg": 0.136, + "_id": { + "$oid": "6711d37ccd60fca157e59c95" + } + }, + { + "text": "He is a nice person HOWEVER, he should teach graduate classes not introductory physics. He does examples from the textbook, but the exams are twisted in all dimensions to give you a stroke.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c96" + } + }, + { + "text": "Worst class I've ever taken. Listen to the reviews, I didn't have a choice since it was my only option. Avoid at all cost. The class is really bad. And the textbook is extremely complicated. If you want to learn physics get an e-permit!", + "pos": 0.025, + "neu": 0.774, + "neg": 0.201, + "_id": { + "$oid": "6711d37ccd60fca157e59c97" + } + }, + { + "text": "There is no one way to solving physics problems, however his exams are graded by HIS formula and HIS answers, that's it. You will be lost, confused and stressed for a semester. This class has scared me from physics forever.", + "pos": 0.048, + "neu": 0.657, + "neg": 0.295, + "_id": { + "$oid": "6711d37ccd60fca157e59c98" + } + }, + { + "text": "While he is friendly, I would advise you to not pick him unless you are confident in physics. His tests are harder (avg 40-60) than what he presents in the lectures (basically the textbook). You'll be fine if you're willing to dedicate your time self-studying multi-step questions in a class that over-complicates simple physics, but I wouldn't.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c99" + } + }, + { + "text": "Nice guy however DON'T TAKE HIM", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c9a" + } + }, + { + "text": "Very entertaining. Does not always explain concepts terribly clearly, but if you do the homework and pay attention in class and study hard for the tests you will be fine. Kind of guy you would like to have as a grandfather. Got an A+ just by getting better on tests than others and not doing other homework during his lectures.", + "pos": 0.187, + "neu": 0.735, + "neg": 0.078, + "_id": { + "$oid": "6711d37ccd60fca157e59c9b" + } + }, + { + "text": "Great professor! Get ready to work super hard though if you want an A.", + "pos": 0.538, + "neu": 0.4, + "neg": 0.062, + "_id": { + "$oid": "6711d37ccd60fca157e59c9c" + } + }, + { + "text": "Like every intro chem or physics prof at ccny, he basically repeats the textbook in his lectures. so you'll have to self teach. he does sometimes break down the problems tho. he curves a lot because the exam average is usually below 60. just practice the problems a lot and the study guides and youll be fine", + "pos": 0.069, + "neu": 0.845, + "neg": 0.086, + "_id": { + "$oid": "6711d37ccd60fca157e59c9d" + } + }, + { + "text": "Lectures can be entertaining but not very useful for exams. Be sure to read the textbook before hand, or find outside resources. Homeworks are helpful for the test but not good for learning in my opinion. Stay above average on exams and you'll be okay. Make sure you're good at managing time on exams if you want to do well", + "pos": 0.32, + "neu": 0.6, + "neg": 0.08, + "_id": { + "$oid": "6711d37ccd60fca157e59c9e" + } + }, + { + "text": "You're better off having Cardi B as your professor", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d37ccd60fca157e59c9f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37dcd60fca157e59ca1" + }, + "professor_name": "Jania Begum", + "rating": 3.6, + "department": "Mathematics department", + "comments": [ + { + "text": "She was constantly getting material wrong herself in class which made it so confusing for everyone. \n\nSuper strict and not helpful when a student was struggling with concepts.", + "pos": 0.104, + "neu": 0.611, + "neg": 0.285, + "_id": { + "$oid": "6711d37dcd60fca157e59ca2" + } + }, + { + "text": "Boring, rushes everything. Hard to reach out of class. Never really explains how she got the answers. Feels like learning from a robot.", + "pos": 0.137, + "neu": 0.722, + "neg": 0.141, + "_id": { + "$oid": "6711d37dcd60fca157e59ca3" + } + }, + { + "text": "Hard to", + "pos": 0.0, + "neu": 0.417, + "neg": 0.583, + "_id": { + "$oid": "6711d37dcd60fca157e59ca4" + } + }, + { + "text": "I don't really understand the hate she's getting. Super nice and caring professor that gives you tons of resources like review sheets, topic explanation on youtube. She's a really nice person. Does a ton of examples in class in order to get you prepared for the exam. I dont think her midterms were more difficult than the final for this class.", + "pos": 0.225, + "neu": 0.687, + "neg": 0.088, + "_id": { + "$oid": "6711d37dcd60fca157e59ca5" + } + }, + { + "text": "Fair grader, lots of partial credit, quiz every Monday, but a few of them are dropped, and the final is not bad. Good lecturer, but if you have a hard time w math you will need to also study on your own. She reminds us about the tutoring sessions that are available and always stops to answer questions when people have them.", + "pos": 0.103, + "neu": 0.802, + "neg": 0.095, + "_id": { + "$oid": "6711d37dcd60fca157e59ca6" + } + }, + { + "text": "Fair grader, lots of partial credit, quiz every Monday, but a few of them are dropped, and the final is not bad. Good lecturer, but if you have a hard time w math you will need to also study on your own. She reminds us about the tutoring sessions that are available and always stops to answer questions when people have them.", + "pos": 0.103, + "neu": 0.802, + "neg": 0.095, + "_id": { + "$oid": "6711d37dcd60fca157e59ca7" + } + }, + { + "text": "Guys, please read this carefully and be warned. I took Math 19500 during the spring semester of 2023 with this semester. This is the worst professor and the worst class I ever had taken by far. She is inexperienced in teaching, does things very fast, and does not care to help her students. In my opinion, on of the worst professors in CCNY,", + "pos": 0.049, + "neu": 0.704, + "neg": 0.247, + "_id": { + "$oid": "6711d37dcd60fca157e59ca8" + } + }, + { + "text": "Don't expect to gain anything from this class if you aren't freshly out of a math course. She rushes through the lectures and doesn't give you enough time to even solve problems. The sad thing about it is that we meet twice a week, so why the rush? Very hard to reach outside of class. You're better off taking this course with another professor.", + "pos": 0.083, + "neu": 0.777, + "neg": 0.14, + "_id": { + "$oid": "6711d37dcd60fca157e59ca9" + } + }, + { + "text": "I loved Professor Begum's class you can tell she's a good person and will be patient with those who need a bit more time understanding concepts. She's a very fair grader and will give partial credit as long as some steps are correct. She explained calculus better than any other professor I've had and would've taken her class for Calc 3 as well.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59caa" + } + }, + { + "text": "I appreciate how she always submitted class notes to blackboard and they are easy to read. If you meet with her for office hrs, she explains why you got something wrong for an exam, or just helps you understand a topic. I would say the exams were somewhat hard. The more you participate, the more you understand it.", + "pos": 0.125, + "neu": 0.81, + "neg": 0.064, + "_id": { + "$oid": "6711d37dcd60fca157e59cab" + } + }, + { + "text": "She did not teach at all, almost all of her \"teaching\" was thru watching a bunch of vids before class and then taking a quiz on it. Then she would answer questions abt it after for the rest of class time. You can learn more skipping and doing ur own studying. She made so many mistakes and would not account for tech mistakes when grading", + "pos": 0.0, + "neu": 0.923, + "neg": 0.077, + "_id": { + "$oid": "6711d37dcd60fca157e59cac" + } + }, + { + "text": "Doesn't teach and isn't willing to help. Isn't accessible outside of class. Will tell you to watch videos.", + "pos": 0.0, + "neu": 0.883, + "neg": 0.117, + "_id": { + "$oid": "6711d37dcd60fca157e59cad" + } + }, + { + "text": "Doesn't know how to teach and doesn't care if you learn the material. Her exams are harder than the final exam. She isn't accessible outside of class. Will tell you to watch videos.", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d37dcd60fca157e59cae" + } + }, + { + "text": "Great professor.I would definitely take her again. Her lecture is super clear. Exams and quizzes are from the homework. if you do the homework problems you will be fine.", + "pos": 0.37, + "neu": 0.564, + "neg": 0.066, + "_id": { + "$oid": "6711d37dcd60fca157e59caf" + } + }, + { + "text": "Avoid at all costs! She doesn't care if you learn the material. Gives very hard exams.", + "pos": 0.0, + "neu": 0.656, + "neg": 0.344, + "_id": { + "$oid": "6711d37dcd60fca157e59cb0" + } + }, + { + "text": "Not very helpful. She can be rude at times and rushes through the examples without slowing down. Doesn't care to help. If you can, avoid her at all costs.", + "pos": 0.0, + "neu": 0.655, + "neg": 0.345, + "_id": { + "$oid": "6711d37dcd60fca157e59cb1" + } + }, + { + "text": "Very kind and paced to ensure everyone understands things with a fun personality. She gives clear homeworks which are not collected, but if you do them you can for sure earn an A. Everything is straightforward and she is a very reasonable and good-willed person. I strongly recommend this professor!", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cb2" + } + }, + { + "text": "This professor is an elite calculus professor. I had her for Calc II during Fall of 2022 and she was amazing. The lectures were clear and easy to understand. She also made sure everyone understood before continuing. There would be one quiz every week consisting of three questions that are very similar to the homework questions. Same for exams.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cb3" + } + }, + { + "text": "I would recommend this class if you are struggling in calc like I was. She is very sweet and takes the time to help you understand concepts. There are also weekly quizzes that keep you on your toes and aren't too bad, as only half of them count towards overall grades. imo calc 2 is hard but as long as you put in the work you will pass the class.", + "pos": 0.125, + "neu": 0.834, + "neg": 0.041, + "_id": { + "$oid": "6711d37dcd60fca157e59cb4" + } + }, + { + "text": "Probably the best prof I had this semester. She's really nice and actually wants the class to learn. She does really good at teaching the material and makes sure everyone understands. She doesn't take attendance, but theres one quiz every week so you don't wanna miss class. She grades based on your top 5 quizzes and top 2 out of 3 exams. TAKE HER", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cb5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37dcd60fca157e59cb7" + }, + "professor_name": "Luke Rawlings", + "rating": 4.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Rawlings is an exemplary professor, he is great at explaining and shows his students a level of caring that is unmatched to any other professor at ccny. The class is in no way easy but work with him and ask for help if needed and u will pass. His handwriting is like something from a textbook. Amazing professor!!!!! Also, do your hw.", + "pos": 0.231, + "neu": 0.712, + "neg": 0.058, + "_id": { + "$oid": "6711d37dcd60fca157e59cb8" + } + }, + { + "text": "The best professor I have every had in city college, I'm about to graduate from electrical engineering and I still have not had such a great professor. If only she professors were half the the teaching ability he had everyone would be in their way of doing well in college.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cb9" + } + }, + { + "text": "Wow, Im not sure Ive ever had a professor that cares as much as Dr. Rawlings. It really shows how messed up CCNY's priorities are considering they never moved him up from adjunct. Very sad he is leaving.", + "pos": 0.142, + "neu": 0.69, + "neg": 0.168, + "_id": { + "$oid": "6711d37dcd60fca157e59cba" + } + }, + { + "text": "One of those few educators who is not only extremely well-versed, but has an extraordinary ability to teach. He tries to convey topics in ways that would benefit his students the most and actually tries to teach you the importance of the material in the field. While the course load was a lot, it is to be excepted. Dont make silly mistakes on exams", + "pos": 0.176, + "neu": 0.808, + "neg": 0.015, + "_id": { + "$oid": "6711d37dcd60fca157e59cbb" + } + }, + { + "text": "Dr. Rawlings is by far the best professor I have here at CCNY. He's super nice and teaches the material with clarity and make sure everyone in the class understands. He writes out the whole complete step for the problem. He's there for you outside of the class as well! Take him if you can, you won't regret it!", + "pos": 0.28, + "neu": 0.683, + "neg": 0.036, + "_id": { + "$oid": "6711d37dcd60fca157e59cbc" + } + }, + { + "text": "Mr. Rawlings is by far the best professor at CCNY across any subject. He truly cares about the academic experience and is a great resource for students. He assigns HW regularly but you'll be okay as long as you do most of it, and is understanding if you miss a couple during busy stretches. He's the reason I stuck with my major!", + "pos": 0.165, + "neu": 0.773, + "neg": 0.062, + "_id": { + "$oid": "6711d37dcd60fca157e59cbd" + } + }, + { + "text": "If you do HWs and come to class on time, it is an easy class because of him. He tries to break down the material and make it easy to understand.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cbe" + } + }, + { + "text": "Professor Rawlings is one of the best professors in Mathematics.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cbf" + } + }, + { + "text": "Professor Rawlings tries his absolutely best during lectures to teach this challenging course very well. If you are a fast learner, the class will quickly become boring because he likes to prove and explain the topics in detail. He is a tough grader and gives difficult tests, but that is to prepare everyone for the final (which is extremely hard).", + "pos": 0.116, + "neu": 0.783, + "neg": 0.101, + "_id": { + "$oid": "6711d37dcd60fca157e59cc0" + } + }, + { + "text": "Rawlings is THE man! His grading is definitely very harsh and it's definitely annoying while your'e taking the class, but trust me you will appreciate & respect why he was so harsh on grading after you finish the class. Lots of homework, but if you do them all religiously you shouldn't make the silly mistakes on exams where he takes off major pts.", + "pos": 0.196, + "neu": 0.642, + "neg": 0.163, + "_id": { + "$oid": "6711d37dcd60fca157e59cc1" + } + }, + { + "text": "Had him about 2 yrs back 4 Bridge to Adv Math so this review's a long time coming. This guy should b the model 4 all professors wregards 2 teaching skills. i WISH i had this guy for every math class... He's really clear & super helpful. He really takes the time in class 2 make sure we get it. His tests are straight forward & he's really nice.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cc2" + } + }, + { + "text": "Eh. He's nice and make the class interesting, but you can study your ass off and do all the homeworks and still end up with a grade lower than what you expected because off his annoying grading, and it really messes up motivation. Just know that whatever grade you end up with, you probably deserved at least half a letter grade more.", + "pos": 0.097, + "neu": 0.753, + "neg": 0.149, + "_id": { + "$oid": "6711d37dcd60fca157e59cc3" + } + }, + { + "text": "Luke is a great professor. Do all of the homeworks and you'll be just fine come the end of the semester. Midterm exams are tough and he is a harsh grader, but he makes the final easier and if you show signs of improvement, he will make your final exam grade your semester grade. Couldn't ask for a better professor to prepare me for engineering.", + "pos": 0.202, + "neu": 0.756, + "neg": 0.042, + "_id": { + "$oid": "6711d37dcd60fca157e59cc4" + } + }, + { + "text": "Not a difficult or easy class. There are 3 mid terms and a final. One of the midterms is optional and will replace the midterm with the lowest score. Also, if you do really well on the final he will also use that as the final grade I believe. Do homework and you should be fine.", + "pos": 0.147, + "neu": 0.812, + "neg": 0.041, + "_id": { + "$oid": "6711d37dcd60fca157e59cc5" + } + }, + { + "text": "Good lectures. Picky grader. No curve, what you get is what you get. The end.", + "pos": 0.16, + "neu": 0.718, + "neg": 0.122, + "_id": { + "$oid": "6711d37dcd60fca157e59cc6" + } + }, + { + "text": "Learned alot from the lecture and he makes sure you understand the material well. His grading criteria can be annoying and tough for algebraic and minor mistakes in exam. Alot of homework is given in class but doing it is for own good. His exams are doable and some of the questions are tedious and long. His handwriting is like a font scripture", + "pos": 0.145, + "neu": 0.787, + "neg": 0.068, + "_id": { + "$oid": "6711d37dcd60fca157e59cc7" + } + }, + { + "text": "Luke is the man! His handwriting is beyond perfection! Besides that, he is a great math professor who is there for you, and sticks around after class too! His lectures are great and will clear your confusions. Take him if you want to learn and for someone who isn't boring at all! Take him for all your math classes if you can! :)", + "pos": 0.278, + "neu": 0.698, + "neg": 0.024, + "_id": { + "$oid": "6711d37dcd60fca157e59cc8" + } + }, + { + "text": "He works hard and tries to be helpful. He doesn't seem as concerned about the learning process as he is with students doing well on the final. He is clear with process but does not explain concepts.", + "pos": 0.133, + "neu": 0.837, + "neg": 0.03, + "_id": { + "$oid": "6711d37dcd60fca157e59cc9" + } + }, + { + "text": "His exams can be really time-consuming at times, and he grades pretty harshly for algebra mistakes. But on the bright side, if you do really well on the final, he'll drop your other exams and count the final as your class grade.", + "pos": 0.179, + "neu": 0.734, + "neg": 0.087, + "_id": { + "$oid": "6711d37dcd60fca157e59cca" + } + }, + { + "text": "Professor Rawlings knows his stuff! Be ready to work though. He always makes time to explain what ever you dont know. One of the best professors I've ever had I highly recommend taking any math class with him.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59ccb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37dcd60fca157e59ccd" + }, + "professor_name": "Ralph Jenkins", + "rating": 3, + "department": "Philosophy department", + "comments": [ + { + "text": "AVOID this class. It is one of the HARDEST intro courses I have taken. The only way I survived was with creating a group chat with my classmates. Please do not take this course. The workload is ASTRONOMICAL not joking. It is very hard to manage his work. The content is extremely difficult, more than half of the class dropped out!", + "pos": 0.11, + "neu": 0.759, + "neg": 0.132, + "_id": { + "$oid": "6711d37dcd60fca157e59cce" + } + }, + { + "text": "The biggest reason why Prof. Jenkins has many negative reviews is because a lot of students take this course thinking it's a fun Phil elective. It is not! Only take this course if you absolutely need it. Jenkins is a very sweet and genuine man. He really is not the issue, I genuinely would take another course with him. This topic is just very hard!", + "pos": 0.098, + "neu": 0.829, + "neg": 0.073, + "_id": { + "$oid": "6711d37dcd60fca157e59ccf" + } + }, + { + "text": "I feel like a lot of people hate on him unnecessarily just because the course is very difficult. Jenkins is a very nice man who is helpful and will hear you out if you have any concerns. This is probably the hardest course I have and ever will take in my academic career, but I'm glad I took it with someone as kind and approachable as him.", + "pos": 0.182, + "neu": 0.764, + "neg": 0.054, + "_id": { + "$oid": "6711d37dcd60fca157e59cd0" + } + }, + { + "text": "Boring lectures, and crazy work load", + "pos": 0.0, + "neu": 0.46, + "neg": 0.54, + "_id": { + "$oid": "6711d37dcd60fca157e59cd1" + } + }, + { + "text": "Stay away!! very nice man but do not take this \"intro\" class unless you want a super heavy workload and have to do extra work just to get a crap grade. Nice guy but horrible to take as an \"intro\" class, leaves sarcastic snappy comments under your work, he expects that you have taken a philosophy class before or something. too high of expectations", + "pos": 0.163, + "neu": 0.706, + "neg": 0.132, + "_id": { + "$oid": "6711d37dcd60fca157e59cd2" + } + }, + { + "text": "A lot of what he says and does is irrelevant or superfluous. Do your best to find what's important so you can minimize the work you have to do for this class. Otherwise, be prepared to give a lot of attention and read a lot.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cd3" + } + }, + { + "text": "For the love of god, do not take this man. I took this course to meet my general elective and I regret it. There is so much work, and the problem sets include a lot of work. They need scrap work, they need a lot of thinking, and they need a lot of time. Stay away from this class.", + "pos": 0.094, + "neu": 0.823, + "neg": 0.082, + "_id": { + "$oid": "6711d37dcd60fca157e59cd4" + } + }, + { + "text": "Absolutely worst professor I've ever had.", + "pos": 0.0, + "neu": 0.532, + "neg": 0.468, + "_id": { + "$oid": "6711d37dcd60fca157e59cd5" + } + }, + { + "text": "Do not take this class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cd6" + } + }, + { + "text": "Extremely difficult to earn an A+ in the course, reading material was confusing at times to understand, and there's too many essay to complete for an intro course. The professor wasn't necessarily mean but his feedback on some occasions was unclear. I would never take this course again because the grading requirements is too strict and unfair.", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d37dcd60fca157e59cd7" + } + }, + { + "text": "For a intro course there's too much work to complete, especially the long chapters in the three books. In order to pass this course you can't get anything lower than a 2 on your three essay's so, be prepared to write a lot. It was stressful taking this course and I recommend, no one take this course. You're better off taking something else.", + "pos": 0.128, + "neu": 0.795, + "neg": 0.077, + "_id": { + "$oid": "6711d37dcd60fca157e59cd8" + } + }, + { + "text": "Clear curriculum & syllabus. This is a pass-or-fail class. There are 3 major papers on Epistemology, Axiology, & Ontology. Each one is accompanied by an essay defense, which is a one-on-one meeting w/ the professor prior to turning in the essay & is graded. So 6 total assignments. Easy class if you actually write your papers & don't use ChatGPT :)", + "pos": 0.109, + "neu": 0.854, + "neg": 0.037, + "_id": { + "$oid": "6711d37dcd60fca157e59cd9" + } + }, + { + "text": "Although the philosophy of this class was a bit hard to comprehend at first, Prof Jenkins tried his best to present the material in a more understanding way. lectures were sometimes boring but the assignments weren't hard. couple paragraph assignments, framework exam from textbook questions, and final research paper. would take him again", + "pos": 0.072, + "neu": 0.877, + "neg": 0.051, + "_id": { + "$oid": "6711d37dcd60fca157e59cda" + } + }, + { + "text": "prof jenkins is super passionate about philosophy. the lectures can be boring and he is a tough grader but he allowed rewrites for all assignments to get a better grade. no final exam or quizzes. the class was graded on weekly assignments, framework exam (from the textbook), and the final paper. overall pretty great, easy going class.", + "pos": 0.293, + "neu": 0.632, + "neg": 0.075, + "_id": { + "$oid": "6711d37dcd60fca157e59cdb" + } + }, + { + "text": "The lectures can be boring at times but he's a really nice professor who just wants to help drill some philosophical ideas into your head. The topic is very complicated and the term paper is definitely not something you should work on last minute. I turned in tons of late work which he accepted along with several rewrites.", + "pos": 0.203, + "neu": 0.773, + "neg": 0.024, + "_id": { + "$oid": "6711d37dcd60fca157e59cdc" + } + }, + { + "text": "Where do I begin, professor Jenkins seems like a very caring, funny and easy going teacher that cares about the material he teaches. His lectures are very heavy and students had a hard time understanding the material. Tough grader and a \"two face\", he was very harsh when it came to the final exam grades. Elden Ring sorcerer class type of teacher.", + "pos": 0.201, + "neu": 0.718, + "neg": 0.081, + "_id": { + "$oid": "6711d37dcd60fca157e59cdd" + } + }, + { + "text": "j", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37dcd60fca157e59cde" + } + }, + { + "text": "AVOID AT ALL COSTS! I just needed the credits and had expectations for it to be a somewhat easy course, which it may be, but this Professor made it way too difficult to comprehend anything. Would score 10/10 on weekly assignments, but on exam he would easily give you a 40/100, his exams are way too difficult for what/how he teaches. TAKE MY ADVICE!", + "pos": 0.09, + "neu": 0.787, + "neg": 0.123, + "_id": { + "$oid": "6711d37dcd60fca157e59cdf" + } + }, + { + "text": "DO NOT TAKE THIS CLASS (unless you are ready to bs the life out of your work and be confused as hell throughout the entire semester). This man literally forgot to give me my final grade when I submitted all my work on time and days before the deadline. Also it is a very confusing class to keep up with for no reason whatsoever as an intro class!", + "pos": 0.032, + "neu": 0.817, + "neg": 0.15, + "_id": { + "$oid": "6711d37dcd60fca157e59ce0" + } + }, + { + "text": "He said I plagiarized because I didnt use quotes. WHICH I DID. I went back and edited the essay like he told me to and still gave me a 0 for no reason. Dont take this man. I will never take this man ever in my life. He has traumatized me.", + "pos": 0.045, + "neu": 0.866, + "neg": 0.088, + "_id": { + "$oid": "6711d37dcd60fca157e59ce1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37ecd60fca157e59ce3" + }, + "professor_name": "Mark Steinberg", + "rating": 2.1, + "department": "Chemistry department", + "comments": [ + { + "text": "You are provided with a study sheet on topics to focus on but the lectures are not very useful in breaking down complex topics to make them more digestible. It's better to read one's textbook and pretend like it's a DIY course. It's very hard to teach yourself biochemistry. Very hard. He is nice in class though.", + "pos": 0.159, + "neu": 0.711, + "neg": 0.13, + "_id": { + "$oid": "6711d37ecd60fca157e59ce4" + } + }, + { + "text": "absolutely no direction, no teaching, below bare minimum, horrible", + "pos": 0.152, + "neu": 0.424, + "neg": 0.424, + "_id": { + "$oid": "6711d37ecd60fca157e59ce5" + } + }, + { + "text": "Only passed the third and final but curves at the end heavily and drops lowest. Lots of self teaching but this can be done by doing the ALEKS homework; very time consuming. Try to do them by their due date and go a bit ahead, doesn't follow class syllabus. Very boring lectures, self study to pass this class!!!", + "pos": 0.0, + "neu": 0.88, + "neg": 0.12, + "_id": { + "$oid": "6711d37ecd60fca157e59ce6" + } + }, + { + "text": "Curves like crazy because everyone fails. He reads straight off the slides in a monotone voice, zero enthusiasm for teaching. The recorded MIT lectures carried me.", + "pos": 0.218, + "neu": 0.627, + "neg": 0.155, + "_id": { + "$oid": "6711d37ecd60fca157e59ce7" + } + }, + { + "text": "The lectures are the biggest waste of time, he reads directly off of power points. There are 3 test, which are 35% of the grade, lowest grade is dropped, and the final is 35% alone. In order to pass the exams and final I had to self prep. I highly recommend watching the Organic Chem Tutor on YouTube to prepare for the exam.", + "pos": 0.04, + "neu": 0.853, + "neg": 0.107, + "_id": { + "$oid": "6711d37ecd60fca157e59ce8" + } + }, + { + "text": "This class will make you a very good self learner. High school chemistry is enough to pass this class!!", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59ce9" + } + }, + { + "text": "The only upside of this class is that it has a very forgiving scoring breakdown. With that being said- If you click enroll on this guys class for an upcoming semester, you are enrolling yourself into a self taught class that is unbelievably hard and genuinely requires a great professor. Mark Steinberg is farrrrr from good, let alone great.", + "pos": 0.201, + "neu": 0.747, + "neg": 0.052, + "_id": { + "$oid": "6711d37ecd60fca157e59cea" + } + }, + { + "text": "The lectures are the biggest waste of time, he reads directly off of power points and will not take any questions. 3 test, he drops lowest grade and counts it as 35% and then the final is 35% alone. This is a self taught class with easy labs but a whole lot to self teach.", + "pos": 0.034, + "neu": 0.877, + "neg": 0.089, + "_id": { + "$oid": "6711d37ecd60fca157e59ceb" + } + }, + { + "text": "Simply no words for how bad he is. He just reads from the slides and that's it! You have do EVERYTHING on your own, he won't even answer your questions in class he just says to ask our recitation teacher...", + "pos": 0.0, + "neu": 0.864, + "neg": 0.136, + "_id": { + "$oid": "6711d37ecd60fca157e59cec" + } + }, + { + "text": "Reads directly from the slides... be prepared to do A LOT of work on your own.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59ced" + } + }, + { + "text": "Well, take a class with him you will understand my frastruction.... no learning . Just memorizing...", + "pos": 0.115, + "neu": 0.765, + "neg": 0.12, + "_id": { + "$oid": "6711d37ecd60fca157e59cee" + } + }, + { + "text": "His lectures are useless. Use his study guides and the textbook homeworks to learn everything you need to know. If you're good at self teaching then you will do fine", + "pos": 0.136, + "neu": 0.783, + "neg": 0.081, + "_id": { + "$oid": "6711d37ecd60fca157e59cef" + } + }, + { + "text": "He's definitely not the best. You'll have to teach chemistry to yourself, but the textbook and hw problems are helpful. Most people never went to lecture, and even though I did, I don't think it helped much. It's the first chem class and it's very introductory, so it's definitely doable on your own.", + "pos": 0.15, + "neu": 0.759, + "neg": 0.091, + "_id": { + "$oid": "6711d37ecd60fca157e59cf0" + } + }, + { + "text": "He's so nice omgggg chemistri was so E-Z bcuz of him I got a++!!!", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59cf1" + } + }, + { + "text": "he doesn't teach, just read off the PowerPoint made by the textbook company. he is really nice outside of class and curve grade based on class average. but be ready to teach yourself and his tests are ridiculously hard. overall not a professor i would take as a freshmen like i did.", + "pos": 0.142, + "neu": 0.78, + "neg": 0.078, + "_id": { + "$oid": "6711d37ecd60fca157e59cf2" + } + }, + { + "text": "Professor Steinberg is such a gem! He gives amazing lectures and has a very lenient. You won't need it though as his tests are pretty easy. Easy A!", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59cf3" + } + }, + { + "text": "If you have old exams you will get an A. He helps students out.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59cf4" + } + }, + { + "text": "He's not as bad as students say. Just do your work on your own. You don't even need to go to class.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59cf5" + } + }, + { + "text": "My man was not that bad. He is extremely helpful when it comes to asking questions. People over exaggerate when they say he's bad because they don't put in work.", + "pos": 0.16, + "neu": 0.702, + "neg": 0.138, + "_id": { + "$oid": "6711d37ecd60fca157e59cf6" + } + }, + { + "text": "Attendance isn't mandatory after the first week or two. Boring lectures straight from the textbook. You can get an A if you just show up for the tests by doing the readings each week + cramming hard for the exams. Takes the highest of 3 exams and the final (so final is optional). Very nice dude, and probably smart, but very boring class.", + "pos": 0.078, + "neu": 0.815, + "neg": 0.107, + "_id": { + "$oid": "6711d37ecd60fca157e59cf7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37ecd60fca157e59cf9" + }, + "professor_name": "Tiffany Floyd", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "Look, shes the best,\n her tests are not bad at all. I was just taking so many other difficult classes that psych was low on my list of priorities which is why i didn't do so well. She gives quiz works, which is graded on completion which i never did hence my c+. give yourself 5 hours of study time for exams, do the free-point quizzes and ur good.", + "pos": 0.158, + "neu": 0.782, + "neg": 0.06, + "_id": { + "$oid": "6711d37ecd60fca157e59cfa" + } + }, + { + "text": "She's a good professor you will learn a lot but participation and attendance matters so you have to be on top of the readings", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59cfb" + } + }, + { + "text": "Participation matters and affects your overall grade. I received 100 on all her exams and quizzes and I received an A due to participation and not an A+, so make sure to participate. Also, she pulls material from the textbook like the bold terms and I would record the lectures so you can listen back. The exams and quizzes are really lecture heavy", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59cfc" + } + }, + { + "text": "AVOID HER! She is not good at explaining material. You will have to depend heavy on reading the textbook. There is no backtracking on your exams. Class had roughly 140+ students. Focused majority of my attention to this class. Will never again take one of her classes.", + "pos": 0.049, + "neu": 0.805, + "neg": 0.147, + "_id": { + "$oid": "6711d37ecd60fca157e59cfd" + } + }, + { + "text": "Professor Floyd is very caring and knowledgeable; her class is hard but she is always able to help and answer any questions you may have. Her exams/quizzes are hard you need to study and understand the content (not memorize it). She is clear and fluent; however, she is a tough grader but we are in college not in high school!", + "pos": 0.139, + "neu": 0.794, + "neg": 0.067, + "_id": { + "$oid": "6711d37ecd60fca157e59cfe" + } + }, + { + "text": "3 exams worth 75% of your grade -> 90% from textbook, 10% from lecture, shes rude, and cameras need to be on during tests, no backtracking during tests. A majority of the students did super bad on the tests and she said better luck next time, save yourself and don't take her. You can only pass her class if you know the material by heart", + "pos": 0.228, + "neu": 0.668, + "neg": 0.104, + "_id": { + "$oid": "6711d37ecd60fca157e59cff" + } + }, + { + "text": "There are four exams including the final, one journal article assignment where you have to outline an empirical study, and extra credit opportunities through writing summaries of your SONA participation (up to 6 points), and what she calls\"Professional Responsibility\" are also taken into account for your grade. I did not enjoy her. Textbook HEAVY", + "pos": 0.088, + "neu": 0.867, + "neg": 0.045, + "_id": { + "$oid": "6711d37ecd60fca157e59d00" + } + }, + { + "text": "Avoid her at all costs - at least during covid. She puts in less than no effort to helping students learn during quarantine. Your classes will be about as helpful as a video from youtube.", + "pos": 0.125, + "neu": 0.773, + "neg": 0.103, + "_id": { + "$oid": "6711d37ecd60fca157e59d01" + } + }, + { + "text": "This class is stressful as exams are what count the most, so make sure to read the chapters assigned and take notes. Do the extra credit as it will help you. Make sure to complete the journal assignment on time and follow the sample given to us exactly to get the full ten points.", + "pos": 0.166, + "neu": 0.781, + "neg": 0.053, + "_id": { + "$oid": "6711d37ecd60fca157e59d02" + } + }, + { + "text": "Dr. Floyd is a great professor and she's always available outside of class. If you don't understand something, you can always shoot her an email (she replies pretty fast) or meet with her during office hours and she'll happily go over materials that you find confusing. Tests can be difficult, but it shouldn't be that hard if you read the textbook.", + "pos": 0.125, + "neu": 0.802, + "neg": 0.073, + "_id": { + "$oid": "6711d37ecd60fca157e59d03" + } + }, + { + "text": "4 exams the lowest is dropped. 1 Literature outline. Lecture and textbook based. Recitation is a waste of time. The class is just too big, yet she expects over 130+ to always participate and answer questions. Its nonsense. She probably gets paid to do research and not to teach. The first exam is difficult, but they get easier.", + "pos": 0.058, + "neu": 0.828, + "neg": 0.114, + "_id": { + "$oid": "6711d37ecd60fca157e59d04" + } + }, + { + "text": "DO NOT TAKE HER. She is very strict and rude. Very tough grader and does not care about her students. If you happen to miss something on her lectures due to bad internet connection and ask her a question don't even bother because she will give you an obnoxious and rude response. She only cares for some students not everyone. Trust.", + "pos": 0.065, + "neu": 0.658, + "neg": 0.277, + "_id": { + "$oid": "6711d37ecd60fca157e59d05" + } + }, + { + "text": "If you want to take personality psychology go with her. just buy the test bank for multiple choice you will fine. TRUST ME!!! She gives all her question from test bank.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59d06" + } + }, + { + "text": "To put it bluntly, she's no good and can be extremely rude. She wastes a lot of time in class and ends up rushing through the power point slides. There are four exams (lowest score gets dropped), one journal article assignment and barely 2 extra credit points, which requires a lot of work but the full 2 points aren't still awarded.", + "pos": 0.025, + "neu": 0.846, + "neg": 0.129, + "_id": { + "$oid": "6711d37ecd60fca157e59d07" + } + }, + { + "text": "I never wanted to take 249 but it was a gateway class. She honestly made me enjoy this class so much, reading for this class surprisingly fun. She's a funny lecturer and will throw life lessons here and there. Honestly, show up to class and recitation, read your textbook and I can guarantee you will get a good grade. 10/10 recommend.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59d08" + } + }, + { + "text": "She is one of the BEST professors I have ever had. Lectures are super engaging and clear. Very knowledgeable in her field. For exam: COME to her lecture and READ the textbook (most interesting textbook I have read). She is a picky grader when it comes to writing assignments. She drops 1 of 4 exams, but no curving so do all the SONA extra credits.", + "pos": 0.189, + "neu": 0.774, + "neg": 0.037, + "_id": { + "$oid": "6711d37ecd60fca157e59d09" + } + }, + { + "text": "She's a great professor. Took her for Small group processes. Take good notes, she writes on the blackboard more than PowerPoint presentation. You can study right before tests to pass. The midterm & final is based on notes and textbook. 6 quizzes, one big group presentation, peer grade, presentation grade, midterm, final, responsibility", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59d0a" + } + }, + { + "text": "she was a great professor but felt as i needed to re -read my slides on my own to understand i passed with a 65 just because it seemed to easy so i left it for last, trust me do not do my mistake this is an easy A.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d37ecd60fca157e59d0b" + } + }, + { + "text": "You need the textbook. Attendance is not mandatory, but a lot of her questions are from lecture. Her tests are 85% of your grade and they're pretty tough. You have to study textbook and lecture. 4 tests, 1 gets dropped. The other 15% is basically a giveaway. It's for an essay and 5% for idk. I got a 70%, but it was hard af to get it.", + "pos": 0.059, + "neu": 0.857, + "neg": 0.084, + "_id": { + "$oid": "6711d37ecd60fca157e59d0c" + } + }, + { + "text": "Dr. Floyd is a wonderful professor who tries to make lecture as relatable and enjoyable as possible. The class is based on a few exams and one journal article outline. You will need to read and attend lectures to pass, but it really isn't much. Highly recommend!", + "pos": 0.089, + "neu": 0.853, + "neg": 0.058, + "_id": { + "$oid": "6711d37ecd60fca157e59d0d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37fcd60fca157e59d0f" + }, + "professor_name": "George John", + "rating": 2.9, + "department": "Chemistry department", + "comments": [ + { + "text": "Helpful, knowledgeful listener.", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d10" + } + }, + { + "text": "Chem 26100 is certainly known for being practice/read class so it is hard. However, this professor simply had lectures to read off pre made slides made by the textbook and rarely reviewed or explained problems. Exams were harshly graded, grades never given until asked, and overall no major support other than tutors or office hours. Avoid this prof", + "pos": 0.037, + "neu": 0.791, + "neg": 0.172, + "_id": { + "$oid": "6711d37fcd60fca157e59d11" + } + }, + { + "text": "I highly suggest not to take him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d12" + } + }, + { + "text": "He is off the topics and many questions in the exam are not even related as well from the lecture. The test is very heavy and he is a very tough grader as well. Doesn't teach really well about the topics he is very complicated. Tries to help the students but he seems confused himself.", + "pos": 0.083, + "neu": 0.819, + "neg": 0.098, + "_id": { + "$oid": "6711d37fcd60fca157e59d13" + } + }, + { + "text": "I don't know how his teaching style in person, but the online class required a lot of work(homework + presentation + team paper + poster). The exams are very lengthy and time-consuming. Be ready to answer a lot of short-essay questions in a very short time. But, material-wise was not difficult, and Prof. John very cares about his students.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d14" + } + }, + { + "text": "This is a very hard course, I did very well on 2 exams and still ended up with a C. The reason you should take him is because he is caring and provides so many study questions. Some of them were even in exams verbatim. He offers too much study material for you not to at least Pass. You still have to teach yourself, this is ORGO.", + "pos": 0.078, + "neu": 0.898, + "neg": 0.024, + "_id": { + "$oid": "6711d37fcd60fca157e59d15" + } + }, + { + "text": "Great prof. Brilliant man. Rate my prof refuses to post my outstanding rating of this outstanding teacher and scientist. His superb slides & alluring voice, draw you into the chemical world. Images fly off his slides and implant themselves into your brain, so you will not have any problems. But if have problems, your skull is in the way.", + "pos": 0.207, + "neu": 0.742, + "neg": 0.051, + "_id": { + "$oid": "6711d37fcd60fca157e59d16" + } + }, + { + "text": "Ridiculous exams and grading. His FIRST quiz could be considered an ENTIRE exam (I kid you not) but he only gave 15 MINS to complete. From then on I realized that this class was gonna be a drag. He makes it seem like his class is worth 5 credits when it's only 2. Consider making the course work equivalent to the amount of credits!", + "pos": 0.166, + "neu": 0.779, + "neg": 0.055, + "_id": { + "$oid": "6711d37fcd60fca157e59d17" + } + }, + { + "text": "This professor made it seem like a 2 credit class was a 4 credit class. Never took a laboratory class that was as HARD as that. Save your GPA, he likes to give you slides that contains a lot of useless info while none of it will be on exam. Quizzes you on questions not related to the lab at all which is why a lot of people performed poor throughout", + "pos": 0.162, + "neu": 0.744, + "neg": 0.095, + "_id": { + "$oid": "6711d37fcd60fca157e59d18" + } + }, + { + "text": "I took him for recitation for Chem26101 lab (2 credits). But boy did it feel like a 4 credit class! Despite getting mostly 100s on my lab reports evaluation, my grade dropped because of his exams. Most questions have nothing to do with the actual lab, and has very confusing questions. It was really hard to know how you are doing, he won't tell you.", + "pos": 0.118, + "neu": 0.816, + "neg": 0.066, + "_id": { + "$oid": "6711d37fcd60fca157e59d19" + } + }, + { + "text": "A nice guy, but skips around slides, often seems confused by what's on slides & teaches assuming the whole class has an extensive orgo background. Exams are mix of MC & shortanswer/draw. Fair grader, but he'll put content that wasn't in text or lecture (ie reagents you've never seen) so you get a q wrong you could've gotten right if recognized it.", + "pos": 0.069, + "neu": 0.829, + "neg": 0.102, + "_id": { + "$oid": "6711d37fcd60fca157e59d1a" + } + }, + { + "text": "Professor George John sets expectations for his students. Whether those expectations align with your expectations, only you know. Organic Chemistry is already an incredibly difficult course but Professor John takes it up one level. You will have to work your butt off, but trust me, itll be worth every practice problem you do. I did about 700 total", + "pos": 0.103, + "neu": 0.815, + "neg": 0.082, + "_id": { + "$oid": "6711d37fcd60fca157e59d1b" + } + }, + { + "text": "Not biased: Im doing fairly well (A/A-) in this class but its requires all your time. Like you have to neglect all other classes. The professor is very tricky And hes very approachable but he cannot explain. You can succeed but the work load is insanely high on your part. I wont say not to take him but hes definitely the hardest for orgo 1.", + "pos": 0.179, + "neu": 0.74, + "neg": 0.081, + "_id": { + "$oid": "6711d37fcd60fca157e59d1c" + } + }, + { + "text": "Organic chemistry with Prof. John is very difficult. It may be true that Orgo, in general is a challenging course but when these challenges are further exacerbated by long exams, and tough grading it is a nightmare. Doing as many practice problems from the text helps but be sure to focus on the most difficult problems. Prof John does TRY to help.", + "pos": 0.178, + "neu": 0.637, + "neg": 0.185, + "_id": { + "$oid": "6711d37fcd60fca157e59d1d" + } + }, + { + "text": "Orgo is very hard, and he didn't make it much easier. His overall grade is only dependent on the tests (not homework, quizzes, etc) and his tests are extremely hard.", + "pos": 0.084, + "neu": 0.814, + "neg": 0.102, + "_id": { + "$oid": "6711d37fcd60fca157e59d1e" + } + }, + { + "text": "The single best organic Chem Prof in the world. Excellent teacher, fair exams, caring, easiest A in my life and Im a liberal arts major.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d1f" + } + }, + { + "text": "DO NOT TAKE THIS CLASS!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d20" + } + }, + { + "text": "Prof. John knows his material and is passionate about organic chemistry, but this does not translate into teaching OR a fair assessment. His expectations are unrealistic, the tests are are long, extremely difficult (a lot of tricks) and he does not curve. This class is not about learning, take it only if you've mastered the material.", + "pos": 0.082, + "neu": 0.831, + "neg": 0.087, + "_id": { + "$oid": "6711d37fcd60fca157e59d21" + } + }, + { + "text": "Although he has good personality and during his office hrs. he tries to help you, it does not guaranteed you will be fine. Very boring lectures and useless material bc he does not teach you anything, all you need to do is just read and prepare for his long and super hard tests which are not based on his lecture materials. Pop quizez make the class", + "pos": 0.147, + "neu": 0.765, + "neg": 0.088, + "_id": { + "$oid": "6711d37fcd60fca157e59d22" + } + }, + { + "text": "exams are hard and very long. i would not recommend him at all. I am not taking orgo 26200 next semester just because he's teaching it.", + "pos": 0.0, + "neu": 0.872, + "neg": 0.128, + "_id": { + "$oid": "6711d37fcd60fca157e59d23" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d37fcd60fca157e59d25" + }, + "professor_name": "Kevin Foster", + "rating": 3, + "department": "Economics department", + "comments": [ + { + "text": "Do not take him. He posts lectures online and is not willing to teach in person. Only 50-minute recitation taught by TA. If you email him nicely, he replies with an attitude.", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d26" + } + }, + { + "text": "He doesn't care about teaching. In fact, he didn't even teach the course. We only had recordings of the presentation for each week that he uploads, and had a 50 minute recitation by T.A. Nobody saw the professor in person, and when I emailed him about a question on homework, his reply was \"find a study group.\"", + "pos": 0.0, + "neu": 0.955, + "neg": 0.045, + "_id": { + "$oid": "6711d37fcd60fca157e59d27" + } + }, + { + "text": "very smart professor", + "pos": 0.599, + "neu": 0.401, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d28" + } + }, + { + "text": "He has unrealistic expectations from students, and does not teach anything during the lectures. Students survive on their on abilities & yet he is never satisfied with their performance. Either he should teach or lower his expectations! This makes the grading criteria extremely unfair. Take him if you want to torcher yourself & receive a bad grade.", + "pos": 0.05, + "neu": 0.773, + "neg": 0.177, + "_id": { + "$oid": "6711d37fcd60fca157e59d29" + } + }, + { + "text": "Honestly doesnt care about his students. Grades students unfairly!! And feels proud and cocky for making others lives miserable!!! He doesnt teach either, and nothing you can do because he is the Dean. Class itself is hard and well he does a great job in making the student experience as worst as he can! Stay safe and dont take him!", + "pos": 0.207, + "neu": 0.631, + "neg": 0.162, + "_id": { + "$oid": "6711d37fcd60fca157e59d2a" + } + }, + { + "text": "You can tell he really isn't interested in teaching and when you reach out to him he doesn't respond, just tells you to attend office hours. His videos aren't that helpful and if you're lucky he will add decent videos. Otherwise you're on your own. Avoid if you can.", + "pos": 0.071, + "neu": 0.8, + "neg": 0.129, + "_id": { + "$oid": "6711d37fcd60fca157e59d2b" + } + }, + { + "text": "Any good reviews he has he probably made. For an Asynchronous class, he loves to be an annoying pain. He is super inconsistent when responding, rude when he does, and doesn't even think about asking for anything. He will give the weirdest and unrelated answer to the question. Bad quality videos that don't help and you have to teach yourself. Bad!", + "pos": 0.128, + "neu": 0.622, + "neg": 0.25, + "_id": { + "$oid": "6711d37fcd60fca157e59d2c" + } + }, + { + "text": "I've never met a professor that didn't want to teach. This is an intro class but he doesn't explain anything at all. He just gives you chapters to read and videos. All of his HW is math problems. What about the actual macroeconomic terms? He tells students to learn themselves smh. That's what we are paying you to do. I will not take him again.", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d37fcd60fca157e59d2d" + } + }, + { + "text": "Stay away from this Professor. Would not teach you at all, and if he did post any videos, it would be very unhelpful with the Hws. You would need to force yourself to learn the materials, and if you dont understand, you would suffer!", + "pos": 0.0, + "neu": 0.919, + "neg": 0.081, + "_id": { + "$oid": "6711d37fcd60fca157e59d2e" + } + }, + { + "text": "This professor has such a bad attitude. If you have the choice of choosing another professor please do so.", + "pos": 0.101, + "neu": 0.746, + "neg": 0.154, + "_id": { + "$oid": "6711d37fcd60fca157e59d2f" + } + }, + { + "text": "When I first started his class I was having trouble keeping up and considered dropping it. It wasnt until mid semester that I realized how easy his class is. Practice the math problems he gives and go over examples and you will do great. His practice test are pretty much the same as the exam so if you use that as a guide you should score high.", + "pos": 0.131, + "neu": 0.799, + "neg": 0.07, + "_id": { + "$oid": "6711d37fcd60fca157e59d30" + } + }, + { + "text": "Be prepared to put in a lot of work. This is a difficult class for those who have never done any type of coding before. Professor Kevin gives some guidance but he expects you to learn and figure it out on your own. If you put in the work, youll learn a lot and he recognizes it. Id strongly recommend to take a course in R prior to this class!", + "pos": 0.101, + "neu": 0.875, + "neg": 0.023, + "_id": { + "$oid": "6711d37fcd60fca157e59d31" + } + }, + { + "text": "He is good! Don't see a reason why you would say otherwise.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d32" + } + }, + { + "text": "His exams are 65 % however, if you understand how to do his review sheets you should be okay. The other 35 % are homework which are given every week with average of 5 questions. Although he doesn't specifically go through how to do the math, most of the homework are math based. He only goes through concept and define. Make sure you get a good TA.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d33" + } + }, + { + "text": "Literally if you get a bad grade in this class is simply because you did not put in the effort. Prof Kevin is more than happy to answer questions after class and he always replies to his emails. His grading criteria is really straightforward and the exams are based on the reviews. One of the best profs I've ever had. He gives lots of opportunities!", + "pos": 0.146, + "neu": 0.807, + "neg": 0.046, + "_id": { + "$oid": "6711d37fcd60fca157e59d34" + } + }, + { + "text": "Worst professor in the CCNY system. I have taken bad professors here, but hes one of the worst.", + "pos": 0.0, + "neu": 0.589, + "neg": 0.411, + "_id": { + "$oid": "6711d37fcd60fca157e59d35" + } + }, + { + "text": "Professor Foster truly cares about his students. If you make the effort to team up with a hard-working study group, you will leave Foster's class with an advanced understanding of statistical software and data analysis. This class will force you to hone in on your statistical analysis, and this skillset will carry over into your professional life.", + "pos": 0.127, + "neu": 0.853, + "neg": 0.019, + "_id": { + "$oid": "6711d37fcd60fca157e59d36" + } + }, + { + "text": "I had Kevin Foster for the graduate level econometrics class. This was my first real exposure to econometrics and his hands off teaching style really forces you to learn the material. He is always available to help you if you need help. He is always there to give you great advice. Overall, he teaches a great class and is a great person to know.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d37" + } + }, + { + "text": "Foster is an amazing academic. People say he can not teach; I think Foster chooses not to teach to see who is smart and who is dumb in his class. He knows his stuff; if you have specific questions, you can go ask. He really cares about the students and his advising is on point. Overall, a great guy to know.", + "pos": 0.19, + "neu": 0.765, + "neg": 0.045, + "_id": { + "$oid": "6711d37fcd60fca157e59d38" + } + }, + { + "text": "Not too bad, just go over the practice exams and get the homework and do the project done on time. Not horrible as others say. He tries to make class fun. You don't need the book, his notes are all online. Pretty understanding and the work is not too hard. Actually I was interested in stats after the class.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d37fcd60fca157e59d39" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d380cd60fca157e59d3b" + }, + "professor_name": "Georgio Malouf", + "rating": 4.3, + "department": "Biology department", + "comments": [ + { + "text": "Georgio Maluaf is very disorganized, late to online meetings. He is even late with giving feedback and grades(1-2months after). Expect to see your grades at the end of the semester. He expects you to write a PHD level lab report for 5% of your grade. He cant even remember his own rubric for grading when asked to clarify, smh", + "pos": 0.038, + "neu": 0.886, + "neg": 0.076, + "_id": { + "$oid": "6711d380cd60fca157e59d3c" + } + }, + { + "text": "Don't miss out on the chance to take anatomy with Georgio. It's an actual party. Don't believe me? What if I said we have... crash course. Fun stuff.", + "pos": 0.269, + "neu": 0.654, + "neg": 0.077, + "_id": { + "$oid": "6711d380cd60fca157e59d3d" + } + }, + { + "text": "He changes his teaching style based on what student feedback. Does a combo of crash course and in-depth lecture on specific topics. I'm a really big fan of the fact that he would stay on a topic if the class doesn't get it.", + "pos": 0.056, + "neu": 0.886, + "neg": 0.058, + "_id": { + "$oid": "6711d380cd60fca157e59d3e" + } + }, + { + "text": "He shows us crash course you tube videos of anatomy systems (i paid money for a kid to show me you tube videos). A lot of what he does is what students can do in their own free time or in a group study setting. I am glad im taking this course online.", + "pos": 0.107, + "neu": 0.847, + "neg": 0.046, + "_id": { + "$oid": "6711d380cd60fca157e59d3f" + } + }, + { + "text": "He makes you work for your grade. Had him as a TA & all I could say is wow. He kept us for the entire four hours teaching us from the very basics. He wants to make sure you completely understand the material. His lab quizzes are easy if you pay close attention. He may seem annoying but trust me he helps out a lot when it comes to grading in the end", + "pos": 0.167, + "neu": 0.796, + "neg": 0.037, + "_id": { + "$oid": "6711d380cd60fca157e59d40" + } + }, + { + "text": "day of ourFinal we waited 1-2hr AFTER our exam was supposed to start he didnt communic8 anything to us we're sitting in the hallway with no idea wats going on finally werealized hes in the room theWholeTime while weSAT on the floor outside andHeWasMaking ourFinal i had a commitment so had to leave early and did horrible,paid for 3d med+didnt use it", + "pos": 0.04, + "neu": 0.904, + "neg": 0.056, + "_id": { + "$oid": "6711d380cd60fca157e59d41" + } + }, + { + "text": "Georgio is really tough but it all pays off in the end trust me. He actually cares about his students and pushes you to make sure you understand the material like the back of your hand. He is busy with a billion different tasks, but will still stay late for you even after a 4 hour lab. Just make sure he drank his iced coffee and you'll do great.", + "pos": 0.306, + "neu": 0.678, + "neg": 0.016, + "_id": { + "$oid": "6711d380cd60fca157e59d42" + } + }, + { + "text": "He was the BEST TA I've ever had. Took him for both A&P 1&2 over the summer and he was passionate about the subject. He truly cared about his students and wanted them to learn. Sure his lectures are long & detailed but it's better that way bc not only u learn but it will also help w/ lecture exams. He also gives lots of great life/academic advice", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d43" + } + }, + { + "text": "Georgio is very passionate. He goes off on long tangents about topics that may or may not show up on exams. And expects you to know everything for exams. He is very knowledgeable that he goes into the very little detail of things and then always runs out of time. Nonetheless, I learned a lot but lab with him made it even harder of a summer class.", + "pos": 0.034, + "neu": 0.966, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d44" + } + }, + { + "text": "He truly cares for his students, and always makes sure everyone understands the material. No questions remain unanswered. Always replies to emails and very accessible outside of the class - holds review sessions before the exams. Explains material WAY better than lecturer.", + "pos": 0.221, + "neu": 0.736, + "neg": 0.044, + "_id": { + "$oid": "6711d380cd60fca157e59d45" + } + }, + { + "text": "Lectures are long, but really takes the time to break down info as simple as possible. Plenty of useful analogies and imagery. Modern teaching, utilizes plenty of YouTube videos, brings info from textbook to real life. For a challenging course, he is pretty good at making it more feasible. Relates with students well & has great speaking ability", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d46" + } + }, + { + "text": "Beyond motivating his students to become the best, his teaching is the best. He will find every possible way for you to understand the material, whether it is visual, kinesthetic, and/or auditory. He uses analogies, youtube videos, quiz questions, slides, anatomy models, 3D anatomy models, real life examples, etc. Best learning experience!", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d47" + } + }, + { + "text": "Very motivated and determined for his student's to learn. Read the textbook and study those CrashCourse videos! This TA offered my class a learning experience no professor has come close to doing here at CCNY.", + "pos": 0.154, + "neu": 0.791, + "neg": 0.054, + "_id": { + "$oid": "6711d380cd60fca157e59d48" + } + }, + { + "text": "Georgio is an A++++ instructor! Very easy to work with and definitely puts the student's outside factors into consideration. Great Semester!", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d49" + } + }, + { + "text": "Pay attention and learn during class! He puts in a lot of effort to make sure you understand the material. Highly recommended!", + "pos": 0.196, + "neu": 0.749, + "neg": 0.055, + "_id": { + "$oid": "6711d380cd60fca157e59d4a" + } + }, + { + "text": "Georgio was a great dude in a boring class. 4 hour labs were a drag, but he taught well and went above and beyond what the lecture professor taught. He taught us so we'd have knowledge, not just so we would pass tests. He is the kind of person who I could see myself hanging out with outside of class as a bro.", + "pos": 0.077, + "neu": 0.877, + "neg": 0.046, + "_id": { + "$oid": "6711d380cd60fca157e59d4b" + } + }, + { + "text": "Georgio Malouf is like the Energizer Bunny. He always had a high energy level for our four hour lab classes, and poured into us every bit of information he could. Additionally, he made time after class to discuss the lecture material, or even work that he graded. Mr. Malouf, is very kind and does his best to teach us to learn, not just pass a test.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d4c" + } + }, + { + "text": "When I first sat down in one of Georgio's classes on my first day I realized one thing, I was NOT getting out early. Georgio is very thorough which can sometimes get a bit annoying but the information he gives his students often shows up on important tests. He is nice and eager to answer your questions to the best of his ability. Overall, good guy.", + "pos": 0.263, + "neu": 0.714, + "neg": 0.022, + "_id": { + "$oid": "6711d380cd60fca157e59d4d" + } + }, + { + "text": "Takes longer than other TAs to get through the material for each class, but goes into practical depth.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d4e" + } + }, + { + "text": "Goes beyond what is expected of a TA in order for his students to truly understand the material learned in class. Takes his time to teach and actively asks questions to make sure the class understands the workshop and lab. Very patient and thorough. Gives great advice on study habits/methods.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d4f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d380cd60fca157e59d51" + }, + "professor_name": "Andrea Marchese", + "rating": 3.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Great teacher!! Took the hybrid class and most of it is self study. Every week you are expected to watch the videos, complete the problems and take the in class-quiz. If you put in the time you'll pass.", + "pos": 0.108, + "neu": 0.83, + "neg": 0.062, + "_id": { + "$oid": "6711d380cd60fca157e59d52" + } + }, + { + "text": "save your future! this lady only teaches for her own personal reputation. she wants every student of her to be a genius. students who only study calculus 2 throughout the semester can survive. i am a recently immigrant student who got hit badly by her poor class format (hybrid) and i was work studying. so for work study students,don't take her.", + "pos": 0.047, + "neu": 0.857, + "neg": 0.096, + "_id": { + "$oid": "6711d380cd60fca157e59d53" + } + }, + { + "text": "She looks good on paper with all of her video lectures and experience, but don't be fooled. She doesn't care about you. Email her a problem and expect a vague response 12 hours later. Quizzes and tests are brutal. Don't take under ANY circumstances.", + "pos": 0.083, + "neu": 0.667, + "neg": 0.25, + "_id": { + "$oid": "6711d380cd60fca157e59d54" + } + }, + { + "text": "AVOID!", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d380cd60fca157e59d55" + } + }, + { + "text": "doesnt give any partial credit and will fail you becaues she doesnt care. treats everyone like they have a phD in calculus and should know everything. honestly just avoid her. her video lectures arent enough to suffice for whats on the exams.", + "pos": 0.154, + "neu": 0.687, + "neg": 0.159, + "_id": { + "$oid": "6711d380cd60fca157e59d56" + } + }, + { + "text": "I honestly believe that this professor is way to harsh on students.", + "pos": 0.189, + "neu": 0.629, + "neg": 0.182, + "_id": { + "$oid": "6711d380cd60fca157e59d57" + } + }, + { + "text": "so guys if you are specifically going for engineering major, don't take her. please don't take her. her quizzes are on computer so if you even miss a parenthesis, you are gone. she is the head of math department so i guess she does it for her personal pride too but she wants to play with our futures as simple as that. got a 91 in final yet failed", + "pos": 0.063, + "neu": 0.842, + "neg": 0.095, + "_id": { + "$oid": "6711d380cd60fca157e59d58" + } + }, + { + "text": "VERY VERY VERY VERY VERY VERY DIFFICULT. this class took about 89% of my total study time for the semester. MY god it was difficult. DOnt tke hybrid at all. it will be all self study. her videos doesnt go with her exams and quizes.", + "pos": 0.04, + "neu": 0.796, + "neg": 0.164, + "_id": { + "$oid": "6711d380cd60fca157e59d59" + } + }, + { + "text": "She is the BEST math teacher! I actually learnt a lot when I took this class and still now I watch her YOUTUBE videos when I need a refresher! PS Watching her do math is a joy!", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d5a" + } + }, + { + "text": "She definitely knows her subject matter very well but she is an unnecessarily hard professor. I feel like I know enough calculus to scrape by a B with any other professor. Avoid her if you cherish your GPA.", + "pos": 0.241, + "neu": 0.665, + "neg": 0.094, + "_id": { + "$oid": "6711d380cd60fca157e59d5b" + } + }, + { + "text": "One of the worst professor ever! Gives no feedback at all, expects you to not just learn the whole course by lousy videos but expects you to show full work with simplifications. In other words, she takes of points for anything with no feedback or clarification. Find another professor.", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d380cd60fca157e59d5c" + } + }, + { + "text": "I put in almost 10 hours every week studying for the weekly topics and i don't know if it was worth it. She expects everyone to be on a phD level like herself which doesn't really make you want to ask questions. Hw isn't for credit. Avoid her if you cherish your grade. If you're looking for a challenge then take it, but its not worth it I promise.", + "pos": 0.157, + "neu": 0.796, + "neg": 0.048, + "_id": { + "$oid": "6711d380cd60fca157e59d5d" + } + }, + { + "text": "Dr. Marchese is one of the best Calc 2 professor, but her exams are extremely difficult to pass. She doesn't curve and barely gives partial credit on the test. When you attend her class she goes over all the homework problems in details and writes out all the steps. Her office hours will help you! Take her if you want a challenge.", + "pos": 0.166, + "neu": 0.737, + "neg": 0.097, + "_id": { + "$oid": "6711d380cd60fca157e59d5e" + } + }, + { + "text": "I had written a review earlier in the year. I want to withdraw it or override it with this because she is actually not a good professor. You want to ask for help? Go for it expect a reply anywhere from 12-48 hours later. Extensive and unreasonable amounts of work. She has implemented experimental mymathlab, and makes study apps that arewrongforexam", + "pos": 0.082, + "neu": 0.881, + "neg": 0.037, + "_id": { + "$oid": "6711d380cd60fca157e59d5f" + } + }, + { + "text": "Just started having her. Her classes are flip classes. You watch her videos on youtube and do math problems on either mymathlab or any other site (this semester we are experimental and are using mathlab). Her videos are more of an intro not very detailed on the subject, but still pretty helpful. She gives a quiz every time you meet, reviews an hour", + "pos": 0.115, + "neu": 0.859, + "neg": 0.026, + "_id": { + "$oid": "6711d380cd60fca157e59d60" + } + }, + { + "text": "quality professor with good teaching style. i got a C but it was because of the final. you gotta pay attention to the review right before the final, most questions were from that class day (unfortunately for me). do the homework and webassign religiously and you'll get a really good grade", + "pos": 0.108, + "neu": 0.811, + "neg": 0.081, + "_id": { + "$oid": "6711d380cd60fca157e59d61" + } + }, + { + "text": "I had the calc 2 hybrid class with only one class a week. There was a online HW system but she expects you to do all the assigned hw. Anyway the lectures are clear and the online videos really helps but if you don't self study, you will fail. The tests are hard and she is a tough grader. 3 tests including a final. If you do all the hw u will pass.", + "pos": 0.087, + "neu": 0.816, + "neg": 0.097, + "_id": { + "$oid": "6711d380cd60fca157e59d62" + } + }, + { + "text": "To get a good grade in this class, make sure you do all the homework and not just cheat it through but understand how to solve them because they are the exam and quiz questions. She is changing the course next semester but the formula is simple: Do Your Part with Homeowork/Lectures/Classwork Good Grade", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d380cd60fca157e59d63" + } + }, + { + "text": "She's a total math geek, which I state as a complement. Overall, an excellent communicator and teaches all concepts clearly and with an obvious passion. Very helpful in office hours, so reach out to her if there are any topics you don't understand. Exams are pretty straightforward. Wannabe class clowns and daydreamers: she will rip you a new one.", + "pos": 0.241, + "neu": 0.73, + "neg": 0.029, + "_id": { + "$oid": "6711d380cd60fca157e59d64" + } + }, + { + "text": "Do all the HW on time and get your concepts straight to pass this class. Prof. was very helpful. Be sure to email her as soon as you start having questions & show your work. I learned a lot & she was nice when I got sick (w doctors note). Also get student's sol. manual to check work! This saved my life!", + "pos": 0.193, + "neu": 0.762, + "neg": 0.045, + "_id": { + "$oid": "6711d380cd60fca157e59d65" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d381cd60fca157e59d67" + }, + "professor_name": "Jong Wan Baik", + "rating": 3.7, + "department": "Political Science department", + "comments": [ + { + "text": "Don't take him, please. He asks for too much in his papers, and he expects you to know how to write a proper paper without even teaching you. I really want to drop out of the class, but I can't cause I really need the credit. C'mon Baik do a better freaking job teaching the class.", + "pos": 0.136, + "neu": 0.76, + "neg": 0.104, + "_id": { + "$oid": "6711d381cd60fca157e59d68" + } + }, + { + "text": "At first I was scared of this class with all these comments but i had to take due to no other choice. Turned out he wasn't that bad, he was understanding and fair grader. Liked the class.", + "pos": 0.221, + "neu": 0.678, + "neg": 0.101, + "_id": { + "$oid": "6711d381cd60fca157e59d69" + } + }, + { + "text": "I had an amazing time in this course! Prof. Baik was my M4 discussion leader, he easily and clearly explained U.S. Politics and gave critical feedback that helped me do well in the class. He is very unbiased when teaching and he has a decent sense of humor! I'm sure I caused him much grief during the discussions :) but he taught everyone well.", + "pos": 0.216, + "neu": 0.717, + "neg": 0.067, + "_id": { + "$oid": "6711d381cd60fca157e59d6a" + } + }, + { + "text": "Watch out for his multiple choice exams because his questions can be tricky and confusing. When students point that out to him, he denies it. He also doesn't give much extra credit. Do your readings and know them well, review before your exam, and you should be okay though.", + "pos": 0.118, + "neu": 0.769, + "neg": 0.113, + "_id": { + "$oid": "6711d381cd60fca157e59d6b" + } + }, + { + "text": "We took 3-4 exams, not really sure exactly because I had to drop the class. Every week we were expected to read 50-80 pages of material that didn't include our textbook readings. Tests were comprised of a mix of all the readings and extensive notes we had to take on his FAST and UNCLEAR lectures. I couldn't understand his accent.", + "pos": 0.0, + "neu": 0.89, + "neg": 0.11, + "_id": { + "$oid": "6711d381cd60fca157e59d6c" + } + }, + { + "text": "Prof Baik has an interesting style of teaching. He lectures throughout the class, takes very few questions, and emphasizes the readings from the textbook. Textbook is key, do the reading or you won't pass! He is accessible outside of class and can be convinced to offer extra credit. Tests are tough, study!!", + "pos": 0.152, + "neu": 0.822, + "neg": 0.026, + "_id": { + "$oid": "6711d381cd60fca157e59d6d" + } + }, + { + "text": "This professor is probably the worst professor I have ever taken and I am a senior at this college. I was forced to drop his course because he does not permit extra credit and when he disagrees with your participation he does not adequately express why he disagrees with your opinion or your interpretation of the readings he assigns.", + "pos": 0.0, + "neu": 0.768, + "neg": 0.232, + "_id": { + "$oid": "6711d381cd60fca157e59d6e" + } + }, + { + "text": "This class only had two opportunities to create the bulk of your grade- a midterm and final. The rest is left up to pop quizzes. His test questions are trickily worded and he can be difficult to understand. It wasn't a difficult class, but not an enjoyable one either.", + "pos": 0.091, + "neu": 0.794, + "neg": 0.116, + "_id": { + "$oid": "6711d381cd60fca157e59d6f" + } + }, + { + "text": "Summer intro to public policy course. Quizzes, midterm, and final exam (all multiple choice). Course is very informative, and professor is very helpful and generous. Learned a lot and retaking this professor's class again in the fall.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d70" + } + }, + { + "text": "This was the worst class ever. All the students were struggling in the class and couldn't grasp what they ought to learn. They ended up learning nothing. Take a class with one of the good Professors and you will come to know what real learning is. This Professor is just gonna kill time. Doesn't put the effort into teaching but expectations are...", + "pos": 0.029, + "neu": 0.862, + "neg": 0.109, + "_id": { + "$oid": "6711d381cd60fca157e59d71" + } + }, + { + "text": "Not a difficult or poor class at all! I was able to master social, economic, and political transformations in China and India. I was working full time, but able to read and study to get a good grade. Working cannot be an excuse if you use reading skills that professor taught you. I find his lessons are very useful.", + "pos": 0.148, + "neu": 0.802, + "neg": 0.05, + "_id": { + "$oid": "6711d381cd60fca157e59d72" + } + }, + { + "text": "2 papers, one midterm, one final, blogs, attendance gives final grade. The issue with him is that he want students to understand EVERYTHING about China and India which is impossible in 1 semester. He has to rethink his teaching considering the fact that most students at CUNY also work full time so they dont have the luxury of the time to READ ALL.", + "pos": 0.021, + "neu": 0.979, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d73" + } + }, + { + "text": "This course and professor need a fair review. All my classmates including me got the B or above grade. Very informative, organized class and intelligent professor. Professor's grade policy was even generous since even F students got the C grade. Don't be fooled by unintelligent and whining students.", + "pos": 0.187, + "neu": 0.728, + "neg": 0.085, + "_id": { + "$oid": "6711d381cd60fca157e59d74" + } + }, + { + "text": "This course is challenging because professor treats you like a student in good 4-year universities. If you want to be spoon-fed or treated like a community college student, you don't deserve this course. But hard work will be rewarded. This is certainly the most exciting and high quality course at CCNY.", + "pos": 0.315, + "neu": 0.66, + "neg": 0.025, + "_id": { + "$oid": "6711d381cd60fca157e59d75" + } + }, + { + "text": "LOTS of reading. Grade based on 1 midterm, 2 papers, blog posting. I regret taking his class because it dumped my GPA. Has elite expectations from you but he himself doesnt put in the effort to produce good result. Half class failed the midterm and performed below average on papers. So most students got C final grade. Beware of him and DON'T take", + "pos": 0.054, + "neu": 0.83, + "neg": 0.115, + "_id": { + "$oid": "6711d381cd60fca157e59d76" + } + }, + { + "text": "This is NOT easy A class nor the Professor is of good quality. He speaks English as second language so he can't communicate the lectures well. Hence you do poorly on exams and papers. If you want to save your good GPA or not interested in an F grade then DON'T take his class. There are some great professors in the Poli Sci Dept. so take them.", + "pos": 0.206, + "neu": 0.736, + "neg": 0.058, + "_id": { + "$oid": "6711d381cd60fca157e59d77" + } + }, + { + "text": "Great professor with clarity and knowledge. Exams are multiple choice questions and identifications based on readings and lecture notes. if you read and take a good lecture notes, you will be fine.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d78" + } + }, + { + "text": "Prof. Baik's Intro to World Politics class covers all bases in the field, which can be as intimidating as it is informative if taken early in your undergraduate career. He cares about his students, and appreciates hard work and effort more than perfection. If you show up to class, take good notes, do the readings, and study, you will do fine.", + "pos": 0.204, + "neu": 0.737, + "neg": 0.059, + "_id": { + "$oid": "6711d381cd60fca157e59d79" + } + }, + { + "text": "I learned a lot from this class. Lecturers are clear and inspirational. If you want to study and experience a true college level class, take this professor. If you don't want to study, don't take this professor because you will complain later like some students. You will learn a lot from this professor.", + "pos": 0.201, + "neu": 0.739, + "neg": 0.06, + "_id": { + "$oid": "6711d381cd60fca157e59d7a" + } + }, + { + "text": "I could not hear him for the whole semester. He is confusing at times, He is a good professor and want you to study for your grades, but does not specify what to study for; his notes, the slides, the readings, or what he said in class, he wants to study and memorize all four. Good luck.", + "pos": 0.17, + "neu": 0.807, + "neg": 0.023, + "_id": { + "$oid": "6711d381cd60fca157e59d7b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d381cd60fca157e59d7d" + }, + "professor_name": "Harold Veeser", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Professor Veeser is by far the best English teacher I met in my life. His class is my first that I will save course materials and keep with me. He is the living library. He is so knowledgeable. There is no English professor I know who can help you move to the next as much as he can. He is ground breaking professor.", + "pos": 0.142, + "neu": 0.827, + "neg": 0.031, + "_id": { + "$oid": "6711d381cd60fca157e59d7e" + } + }, + { + "text": "He's super sweet and caring. He always valued listening to everyone's perspectives in class. We only had 4 short in-class essays with a bunch of prompts to choose from. He does call on everyone to share their thoughts on the readings so definitely stay on top of them.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d7f" + } + }, + { + "text": "I'm surprised he has any ratings below a 4. I feel he is very easy when it comes to what he wants. As long as when its your turn to speak and you offer your opinion, you're ok. He gives you about 10 different options on what to talk about/write about and lets you form your own opinion. Such a nice guy too. and cool style.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d80" + } + }, + { + "text": "Do the readings, have an opinion on them, and participate. As for the papers,they were fairly easy, with 6 main papers, a midterm, and a final which included 10 MC questions and a paragraph. The readings were also interesting so you wont get bored, his lectures are fun but long, it's obvious he cares about what he teaches and seems like a cool guy", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d81" + } + }, + { + "text": "Super kind and knowledgeable person. Readings are also interesting. Easy papers, not very strict guidelines. Just form an opinion with evidence and follow his instructions. Very fair grader. His midterm and final are a little difficult but I think I failed them and still got an A+... He stopped using blackboard like halfway through though.", + "pos": 0.199, + "neu": 0.677, + "neg": 0.124, + "_id": { + "$oid": "6711d381cd60fca157e59d82" + } + }, + { + "text": "He is a very kind professor but his lectures were boring.", + "pos": 0.164, + "neu": 0.63, + "neg": 0.206, + "_id": { + "$oid": "6711d381cd60fca157e59d83" + } + }, + { + "text": "Its obvious that he cares about the material he is teaching. Sometimes it may be boring, but its never unbearable. Hes more lenient than the syllabus makes it seem, but you still have to do the work eventually. Assignments are pretty straightforward, but if youre confused hes always reachable by email.", + "pos": 0.157, + "neu": 0.767, + "neg": 0.077, + "_id": { + "$oid": "6711d381cd60fca157e59d84" + } + }, + { + "text": "Highly recommend! Communication is key and let your Professor know if you're missing something or submitting a late assignment, etc. He's a very understanding Professor. However, in order to pass the class you need to work hard. Study, pray & take it easy.", + "pos": 0.166, + "neu": 0.762, + "neg": 0.072, + "_id": { + "$oid": "6711d381cd60fca157e59d85" + } + }, + { + "text": "This professor is nice and all, but sometimes he can be too much. He would give us quizzes on books and tell us the quiz is on chapters 1-7 but on the actual quizzes it'll be asking questions from the whole entire book which was annoying. He expects you to read a whole book in a week. His lecture are BORING. An A is possible but effort is required", + "pos": 0.025, + "neu": 0.874, + "neg": 0.101, + "_id": { + "$oid": "6711d381cd60fca157e59d86" + } + }, + { + "text": "Prof Veeser is the best. He really pays attention to new thoughts and ideas students have. He picks the best books for class and he is really hip with the times, he always chooses books that matter, whether they talk about racism or feminism, or what have you. Really laid back, just a couple short papers and an oral report.", + "pos": 0.136, + "neu": 0.805, + "neg": 0.059, + "_id": { + "$oid": "6711d381cd60fca157e59d87" + } + }, + { + "text": "One of those teachers where you feel absolutely lucky you found them. I learned so much and felt so inspired by his feedback. He really encourages class discussion and values everyones ideas and contributions. I enjoyed the readings immensely, the things I learned in this class I will carry with me forever.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d88" + } + }, + { + "text": "It has no doubt, Prof. Vesser is the best professor at CCNY. His class is challenging and it's a good start to have strong command in writing and analyzing literature with him. If you do class regularly there is no doubt you will pass with a good grade. But you have to work hard for his class.", + "pos": 0.205, + "neu": 0.77, + "neg": 0.025, + "_id": { + "$oid": "6711d381cd60fca157e59d89" + } + }, + { + "text": "Veeser is the best professors at ccny! Hes extremely knowledgable about literature but unpretentious about it. His lectures were very interesting and engaging. And he definitely has a presence that is warm and charismatic.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d8a" + } + }, + { + "text": "Besides the fact that he switched up on the grade breakdown pop quizzes instead of a group project because it was clear 80% of the class didnt do the readings the class was light. Barely a lecture from him just oral reports from students every single class. Those plus two term papers and thats your grade", + "pos": 0.045, + "neu": 0.955, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d8b" + } + }, + { + "text": "Professor Veeser is great! He gives a lot of readings though. If you don't do them, he won't hesitate to give pop quizzes and they are HARD (you'll fail the course). He's also a tough but fair grader on papers, giving good feedback. He is passionate about literature and it doesn't hurt that he's attractive too. He's one of the best at CCNY.", + "pos": 0.364, + "neu": 0.579, + "neg": 0.057, + "_id": { + "$oid": "6711d381cd60fca157e59d8c" + } + }, + { + "text": "Professor Veeser has taught me so much. If you're just looking for an easy A, don't bother. If you're really interested in pushing yourself and learning, he is your guy. He will expose you to really great authors, literary critics, philosophers and writing styles.", + "pos": 0.228, + "neu": 0.702, + "neg": 0.07, + "_id": { + "$oid": "6711d381cd60fca157e59d8d" + } + }, + { + "text": "I will never take a class with him again. First day of class we went through the syllabus there was no talk of pop quizzes being done through the semester. He came 2 weeks later stating we will be having random pop quizzes and if we fail 3 of them we fail the class. Not to mention he adds extra readings last minute which are also on the quizzes.", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d381cd60fca157e59d8e" + } + }, + { + "text": "I took this class because everyone said how Great he is Howeverr, he gives pop quizzes in which if you fail 3 you fail the course. Yes, the Whole Course. The anxiety was real. I wouldve dropped/waited to take another class but it was the last semester so my drugs helped.", + "pos": 0.078, + "neu": 0.818, + "neg": 0.104, + "_id": { + "$oid": "6711d381cd60fca157e59d8f" + } + }, + { + "text": "Great prof. Show up, participate, do you 2 oral presentations and your easy papers and you're GOOD. Easy A. Might even take a paper off like he did for me with no charge but if you're lucky enough ;)", + "pos": 0.337, + "neu": 0.631, + "neg": 0.033, + "_id": { + "$oid": "6711d381cd60fca157e59d90" + } + }, + { + "text": "Professor Veeser combines scholarliness with humor, and shows how 17th Century texts are still relevant today. Class participation is important. You will need to give at least two oral presentations of poems in class, and do a group project as well as two short essays. This helped me become more concise and forthcoming in discussions.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d381cd60fca157e59d91" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d382cd60fca157e59d93" + }, + "professor_name": "Zinoviy Akkerman", + "rating": 2.8, + "department": "Physics department", + "comments": [ + { + "text": "Complains a lot", + "pos": 0.0, + "neu": 0.435, + "neg": 0.565, + "_id": { + "$oid": "6711d382cd60fca157e59d94" + } + }, + { + "text": "Now that I look back... he was the BEST physics professor ever. Super smart, always available.. just great", + "pos": 0.528, + "neu": 0.472, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59d95" + } + }, + { + "text": "Good teacher, could seem unapproachable at first. But, dont be afraid to go to office hours. Exams are short answer except for final (w/ partial credit & formula sheet). Final was HARD and mostly conceptual which wasnt so fair bc all the other exams were mathematical and easy.", + "pos": 0.158, + "neu": 0.74, + "neg": 0.102, + "_id": { + "$oid": "6711d382cd60fca157e59d96" + } + }, + { + "text": "I took this during the summer and he goes FAST! But if you put in the work, youll learn and do well. He can seem intimidating, but is actually very willing to help. Ask questions and practice! His lectures are great-very clear. Taking good notes will help you prepare for tests. Smart, funny guy. I hope to take him again!", + "pos": 0.35, + "neu": 0.604, + "neg": 0.046, + "_id": { + "$oid": "6711d382cd60fca157e59d97" + } + }, + { + "text": "Many mixed reviews on here so I'm here to clear it up. Professor Akkerman is a great person and very knowledgeable. However he does not necessarily \"teach\",to do well in the class you have to study almost everyday and read the chapter before class to understand what's going on. Go to his office hours, very down to earth and he listens to students.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59d98" + } + }, + { + "text": "Awful, took him for Physics 207 in the summer. He shows you abstract ideas on the board, then tests you using other university exams that have nothing to do with what he showed you. He will grade how he deems acceptable, class average is a 38 and he is happy about this. Avoid him, avoid CUNY physics, the chair refused to help. He wont help in offic", + "pos": 0.109, + "neu": 0.742, + "neg": 0.149, + "_id": { + "$oid": "6711d382cd60fca157e59d99" + } + }, + { + "text": "Worst class I've ever taken. Not only does his thick accent make him hard to understand, he teaches too fast and goes off on unrelated topics. DO NOT take him if you ever have the option. Only one person is passing in my class and they told me they are teaching themselves the material. Also very cold and insulting when answering questions.", + "pos": 0.0, + "neu": 0.868, + "neg": 0.132, + "_id": { + "$oid": "6711d382cd60fca157e59d9a" + } + }, + { + "text": "He is the best teacher I have ever had. Always very smart and inspirational. Yeah you gotta work, but that is probably what college is for. You will learn and you will like it.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59d9b" + } + }, + { + "text": "Took him in the summer. He's not that bad. He's a fair grader. Tries to be as helpful as possible. His tests are kind of hard, but he curves a lot. It's not that difficult to pass. It's pretty hard to get an A though. I think I would have gotten a higher grade if I did better on the labs. Overall, not bad I would recommend him.", + "pos": 0.277, + "neu": 0.688, + "neg": 0.035, + "_id": { + "$oid": "6711d382cd60fca157e59d9c" + } + }, + { + "text": "I got 35 on the first exam and asked him if I should drop the class. He said I am close to the average ( class average in all 3 exams was between 30-40) so I should stay. Ended up failing. Do not take this class! You will pay 1000$ just so you could teach yourself, and to get yelled at whenever you'll have a question.", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d382cd60fca157e59d9d" + } + }, + { + "text": "Just stay away from him. Once you are lost in his class, you are lost forever.", + "pos": 0.0, + "neu": 0.753, + "neg": 0.247, + "_id": { + "$oid": "6711d382cd60fca157e59d9e" + } + }, + { + "text": "He is very helpful though i never went to his office. But he is not good in teaching.Mostly i learnt phy208 from prof. walter (MIT). My score was (75,96,85,89) while avg was (47,43,67,57) and finally manage to get A. My advice read book, do home work by yourself, listen MIT. This is not that hard. Best of luck. (believe me at the end I like him)", + "pos": 0.137, + "neu": 0.765, + "neg": 0.098, + "_id": { + "$oid": "6711d382cd60fca157e59d9f" + } + }, + { + "text": "208 is a hard course and you have to cover a lot. His Exams are brutal but curves insanely. You have to study hard to do above average.", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d382cd60fca157e59da0" + } + }, + { + "text": "Tough professor. Read chapters before going to lectures if you don't want to be lost, goes fast.", + "pos": 0.0, + "neu": 0.736, + "neg": 0.264, + "_id": { + "$oid": "6711d382cd60fca157e59da1" + } + }, + { + "text": "Took him in the summer. He's tough, and goes fast. Trust me most of his question from the book and online and understanding the concept is the most important and be his friend and let him know you(usually gives higher grade for people who he knows).Good Luck! Got an A-", + "pos": 0.204, + "neu": 0.771, + "neg": 0.026, + "_id": { + "$oid": "6711d382cd60fca157e59da2" + } + }, + { + "text": "OMG! Hes gonna kill your gpa! please avoid him no matter what! yu wouldnt do well even if you studied 24/7....well I hope the best to everyone whose taking him! study as hard as you can!", + "pos": 0.189, + "neu": 0.563, + "neg": 0.248, + "_id": { + "$oid": "6711d382cd60fca157e59da3" + } + }, + { + "text": "I'm an honors student, and I'm pretty sure I failed this class. No amount of studying could repair my soul that Akkerman broke with his brutal exams. DO NOT TAKE HIM!I studied, did the homeworks and the additional problems, but to no avail.", + "pos": 0.111, + "neu": 0.641, + "neg": 0.248, + "_id": { + "$oid": "6711d382cd60fca157e59da4" + } + }, + { + "text": "Good professor!, But if you don't have a physics background stay away from CCNY physics professors. You get what you put into the class.. Only way to pass his exams if you know the material inside and out. Only way. The test can look like anything, only way of passing if you prepare for anything. But the exams get a little less complex in the final", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59da5" + } + }, + { + "text": "One of the worst professors I have had. He expects us to know formulas. Exams are complete mess. Class average is lower than 50 and he makes fun of you when you ask a question. Stay away from him.", + "pos": 0.07, + "neu": 0.743, + "neg": 0.187, + "_id": { + "$oid": "6711d382cd60fca157e59da6" + } + }, + { + "text": "I strongly recommend to not take him, even if you have a good background of physics.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59da7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d382cd60fca157e59da9" + }, + "professor_name": "Swapan Gayen", + "rating": 3.3, + "department": "Physics department", + "comments": [ + { + "text": "Couldn't understand a word he said", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59daa" + } + }, + { + "text": "Do not take this course with him, this was my 2nd time taking this course and I ended up doing worse. His grade test heavy, class averages for the", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d382cd60fca157e59dab" + } + }, + { + "text": "Complete waste of time. Bottom of the barrel. Just retire if you can't teach. Some of us can't afford to fail because you feel like it.", + "pos": 0.172, + "neu": 0.738, + "neg": 0.09, + "_id": { + "$oid": "6711d382cd60fca157e59dac" + } + }, + { + "text": "If you fail the first midterms its very hard to come back for the final. Professors accent made it near impossible to understand what was going on in the class, I thought it was just his mic. Exams are nearly impossible, class average a 40 every time. Barely curves as well (he keeps a certain standard in curving), so this will ruin gpa. Avoid.", + "pos": 0.054, + "neu": 0.79, + "neg": 0.156, + "_id": { + "$oid": "6711d382cd60fca157e59dad" + } + }, + { + "text": "Have you ever had a dream? Well this professor was a nightmare. This is who you take if you wanna waste 100+ hours out of campus miserable just self teaching yourself everything. Professor probably knows what he's talking about, but I sure don't, his accent made it impossible to even understand lectures and we from the same country so Idk what's up", + "pos": 0.088, + "neu": 0.82, + "neg": 0.092, + "_id": { + "$oid": "6711d382cd60fca157e59dae" + } + }, + { + "text": "No words that i can use on this site can describe him. If you appreciate whatever ounce of sanity you may have left at this point you will avoid at all costs. Impossible accent, 0 understanding for his students, terrible grader. Exams that are not even close to the hw or any other prof. Exams made me wish I was a cave man banging sticks on a wall", + "pos": 0.071, + "neu": 0.83, + "neg": 0.099, + "_id": { + "$oid": "6711d382cd60fca157e59daf" + } + }, + { + "text": "The function f(x)=e^(-5x) represents my sanity over time with this man as my professor. As you can see, it did not take me long to reach the trenches. Each lecture felt like a battlefield with information exploding around us--not in a good way. The exams felt like D-Day. My buddy John can still see the sparks. Who's John? Exactly.", + "pos": 0.137, + "neu": 0.823, + "neg": 0.04, + "_id": { + "$oid": "6711d382cd60fca157e59db0" + } + }, + { + "text": "If you had no other responsibilities besides breathing, eating and sleeping, then I'd say take this class. He expects so much, but very little is given in return. The exams are absurdly difficult, and he is a very tough grader. If your goal is to surpass Einstein's achievements, this class is for you.", + "pos": 0.0, + "neu": 0.877, + "neg": 0.123, + "_id": { + "$oid": "6711d382cd60fca157e59db1" + } + }, + { + "text": "Had 2 exams, 3 quizzes, and a final. Prof has an accent, it's so difficult to understand him, not to mention his handwriting. He sends homework after every chapter but those look nothing like the exams. You'll probably have to learn all the material by yourself and study a ton. I would say avoid but there are only two phys208 prof and both are bad.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d382cd60fca157e59db2" + } + }, + { + "text": "He assigns a few few HW, few quizzes, 2 exams, and 1 final which are all are EXTREMELY DIFFICULT. Lectures are heavy. Solve a lot of practice problems and go through the textbook and spend some hours studying if you really want to pass. Do not take this with any other MA or PH class.", + "pos": 0.055, + "neu": 0.831, + "neg": 0.113, + "_id": { + "$oid": "6711d382cd60fca157e59db3" + } + }, + { + "text": "Gayen is a solid professor. He gives 10HW, 3 exams, 1 final all are EXTREMELY DIFFICULT. Lectures are heavy. This is the hardest class ever so you must study extremely hard. Go to his office and ask questions, he is available by appt. He tells us many fun physics facts which I thought was great. Do not take this with any other MA or PH class.", + "pos": 0.118, + "neu": 0.803, + "neg": 0.078, + "_id": { + "$oid": "6711d382cd60fca157e59db4" + } + }, + { + "text": "Quizzes and exams are complicated.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59db5" + } + }, + { + "text": "Professor Gayen is one of the kindest and most caring professors at CCNY - he really does care about students' wellbeing and their understanding of the material. His exams are not easy, but the difficulty of the course is sufficient to prepare physics majors for upper level classes. Be prepared to work hard, you'll learn a lot in this class!", + "pos": 0.106, + "neu": 0.8, + "neg": 0.095, + "_id": { + "$oid": "6711d382cd60fca157e59db6" + } + }, + { + "text": "In the beginning of class, it was very hard to understand Prof. Gayen and also the subject material, optics, was very hard to intake. But as the semester past, it was more fun and Gayen basically taught much better, or at least the I would enjoy learning the things more. The guy is very helpful, and I say a overall good teacher.", + "pos": 0.267, + "neu": 0.699, + "neg": 0.034, + "_id": { + "$oid": "6711d382cd60fca157e59db7" + } + }, + { + "text": "Has a heavy accent, he is barely understandable, and his handwriting is very bad. All I can say is he is knows his stuff. Two exams, Four quizzes, mandatory homework and a final. he curves but only when the test grades are bad. Take his class only as a last resort.", + "pos": 0.02, + "neu": 0.853, + "neg": 0.127, + "_id": { + "$oid": "6711d382cd60fca157e59db8" + } + }, + { + "text": "You need to know in and out to pass his class. If you screw one of his midterm it is really hard to come back. The average is pretty low (around 45 or something) but if you are below it ,its goin to be hard to pass.His finals are Very Hard. And Don't ignore the quizzes.If you take him you need to put a ton of effort.", + "pos": 0.066, + "neu": 0.828, + "neg": 0.107, + "_id": { + "$oid": "6711d382cd60fca157e59db9" + } + }, + { + "text": "DO THE HOMEWORK. He usually gives two exams and short quiz every other week. Exams and the quizzes are simile to the homework. His finals are very hard so study for the final.", + "pos": 0.0, + "neu": 0.95, + "neg": 0.05, + "_id": { + "$oid": "6711d382cd60fca157e59dba" + } + }, + { + "text": "Terrible professor. Hard to understand, teaches straight out of the book. Changed his teaching style and test giving. Final was out of this world, he curves but class average on test is a borderline C.", + "pos": 0.084, + "neu": 0.829, + "neg": 0.087, + "_id": { + "$oid": "6711d382cd60fca157e59dbb" + } + }, + { + "text": "Lectures aren't that clear. His quizzes aren't that bad if you know what the topic is about. His exams are hard. (40 class average) There is no formula sheet allowed since he provides one. (which is not helpful) His sample tests barely help and the webassign homework is barely helpful. Better know physics or read ahead if you're taking him.", + "pos": 0.147, + "neu": 0.738, + "neg": 0.115, + "_id": { + "$oid": "6711d382cd60fca157e59dbc" + } + }, + { + "text": "You will learn a lot. You need to do above average to do good in his class. Everything is really hard. His test are beyond hard he tests you to know if you can derive everything. HE CURVES.", + "pos": 0.071, + "neu": 0.854, + "neg": 0.075, + "_id": { + "$oid": "6711d382cd60fca157e59dbd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d382cd60fca157e59dbf" + }, + "professor_name": "Hesham Auda", + "rating": 2.3, + "department": "Computer Science department", + "comments": [ + { + "text": "Take pictures of his code, they help you with the projects\nBe prepared to go to office hours often or ask him for help after class he'll help you\nStrict grader, he takes off a lot of points for minor errors and only gives feedback on your grade if you go to office hours.\nIf you make corrections to your project grade he does give some points back", + "pos": 0.133, + "neu": 0.836, + "neg": 0.032, + "_id": { + "$oid": "6711d382cd60fca157e59dc0" + } + }, + { + "text": "His lectures are not the easiest to follow but the class is overall not that difficult. Used Zybooks for assignments and lab. Tests/quizzes are open laptop and reuses questions from past semesters. Fair grader and curves.", + "pos": 0.139, + "neu": 0.819, + "neg": 0.041, + "_id": { + "$oid": "6711d382cd60fca157e59dc1" + } + }, + { + "text": "Awesome", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59dc2" + } + }, + { + "text": "You will probably have to take Auda so its not worth trying to evade him for a class like 221. Make sure you take plenty of pictures of his code, as that's a good starting point for the assignments. Also make sure to visit during office hours, as that is going to help your grade, plus he gives good information. His grading is fair but very strict.", + "pos": 0.171, + "neu": 0.809, + "neg": 0.02, + "_id": { + "$oid": "6711d382cd60fca157e59dc3" + } + }, + { + "text": "If you can stay away, stay away. He is a very tough professor. All the projects are connected, so you have to do them all. He does not share notes and gives most of the code for the projects during class time, so go to class and take pics. If you do the work, you will pass. I dont think he fails students for the most part. Final was open notes.", + "pos": 0.032, + "neu": 0.919, + "neg": 0.05, + "_id": { + "$oid": "6711d382cd60fca157e59dc4" + } + }, + { + "text": "Grade is based on homework on Zybooks (worth 45%) and two exams, which you can use your notes for. You will get a lower grade if you blatantly copy your answers from somewhere. Demonstrate some understanding of the course material and you will pass.", + "pos": 0.041, + "neu": 0.911, + "neg": 0.048, + "_id": { + "$oid": "6711d382cd60fca157e59dc5" + } + }, + { + "text": "You'll pass, but getting a good grade is a difficult and stressful task. Grading is a complete mystery because you never know for sure what he wants. Attend class to get the code necessary to start his projects. Exams are open-book but he will take off points if he suspects academic dishonesty. Available during office hours if you need help.", + "pos": 0.099, + "neu": 0.723, + "neg": 0.177, + "_id": { + "$oid": "6711d382cd60fca157e59dc6" + } + }, + { + "text": "Don't take this professor for CS 221 or CS 336 or any class. He is terrible at teaching in general and is a complete creep. He will disrespect you in his office hours, he will not answer valid questions and instead give you a \"it depends\" and not say anything more. He only answers the questions of females and thats it.", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d382cd60fca157e59dc7" + } + }, + { + "text": "He puts 0 effort into teaching the material. He refuses to record lectures or share his notes. We had to record for ourselves since the code he shows is essential to doing his projects. His grading is a mystery since he provides no feedback and you can get away with faking the reports. I wrote so much Java but learned no Java if you know?", + "pos": 0.023, + "neu": 0.885, + "neg": 0.091, + "_id": { + "$oid": "6711d382cd60fca157e59dc8" + } + }, + { + "text": "To be frank, I do not learn much from him. His lecture is so dull, I do not really understand him, and he does not care us at all. Good luck if you are taking him.", + "pos": 0.134, + "neu": 0.727, + "neg": 0.139, + "_id": { + "$oid": "6711d382cd60fca157e59dc9" + } + }, + { + "text": "You won't be able to hear what he is taking and he doesn't even care if student can hear him or not, do not give any feedback whatsoever. Teach you nothing since no one can hear or understand his English and he expect you know every thing already.", + "pos": 0.037, + "neu": 0.911, + "neg": 0.052, + "_id": { + "$oid": "6711d382cd60fca157e59dca" + } + }, + { + "text": "Honestly Auda is the worst professor in CCNY. He's the definition of delusional. Thinks he's an expert but can only do 1 thing, hence why there's only 1 project. The rest are same code + useless functions. Don't expect to learn, he can't teach. Ask a question and he'll say \"Idk, what do you think?\" Doesn't actually read HW, grades based on keywords", + "pos": 0.029, + "neu": 0.857, + "neg": 0.114, + "_id": { + "$oid": "6711d382cd60fca157e59dcb" + } + }, + { + "text": "He is everything you dont want in a teacher: condensating, boring, answers questions with more questions or tell you to look it up, strict, unforgiving and doesn't help with assigments at all that each cost 20% of your grade. Saw students complain directly to him. I would say avoid at all costs but his class is the only one thats usually available.", + "pos": 0.0, + "neu": 0.88, + "neg": 0.12, + "_id": { + "$oid": "6711d382cd60fca157e59dcc" + } + }, + { + "text": "He is one of the worst there is in CCNY. 1) Does not give any feedback whatsoever. 2) The supposed 1 hr and 15 min class is on average 30 minutes, ask him question and he'll give rude non-answers. 3) The assignment instructions are so vague. Am I suppose to read his mind? 4) Does not respond to emails.", + "pos": 0.0, + "neu": 0.862, + "neg": 0.138, + "_id": { + "$oid": "6711d382cd60fca157e59dcd" + } + }, + { + "text": "He kind of saddens me, really. He curved my grade up by nine-ten points, which was kind of him, but his lectures were so.. uninspired. If you do this online, be prepared to screenshot. If you take the final, it was open book and open notes. Start projects early since he is finnicky about code cleanliness and following instructions. Sometimes rude.", + "pos": 0.035, + "neu": 0.873, + "neg": 0.092, + "_id": { + "$oid": "6711d382cd60fca157e59dce" + } + }, + { + "text": "He uses Zybooks for homework, which is easy. Try your best to understand his notes, you will be good.", + "pos": 0.385, + "neu": 0.615, + "neg": 0.0, + "_id": { + "$oid": "6711d382cd60fca157e59dcf" + } + }, + { + "text": "This class gave me so much anxiety because everything is on YOU from setting up your projects to learning. 1. Start assignments 2 weeks in advance so you can ask him questions if you do not understand something in the task 2. You won't learn from him but take the topics discussed and watch videos or read the textbook 3. Don't bother emailing", + "pos": 0.039, + "neu": 0.938, + "neg": 0.023, + "_id": { + "$oid": "6711d382cd60fca157e59dd0" + } + }, + { + "text": "Took him during quarantine so no tests. Honestly, the whole class was a joke. If students ask him questions, he doesn't answer them instead he makes you research them which defeats the whole purpose of him being a professor (but okay). His grading criteria is very vague but what I did was putting the extra mile (worth it).", + "pos": 0.097, + "neu": 0.787, + "neg": 0.116, + "_id": { + "$oid": "6711d382cd60fca157e59dd1" + } + }, + { + "text": "Lectures are 30 minutes long on average. No feedbacks on assignments. If you lost points it is because you didnt do something I asked for. Nothing specific.", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d382cd60fca157e59dd2" + } + }, + { + "text": "He tells you that reading the Oracle docs is the best way to learn from the first class. You're better off just doing that instead of going to his lectures after the first project. No feedback on projects unless you show up to office hours. He seems eager to subtract 5 points from your project grades.", + "pos": 0.15, + "neu": 0.815, + "neg": 0.034, + "_id": { + "$oid": "6711d382cd60fca157e59dd3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d383cd60fca157e59dd5" + }, + "professor_name": "Tyson Ward", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Super nice and understanding teacher. Communicate with him about any late arrivals or any absences, attendance matters!! He responds to emails almost immediately. There are in class writing, group discussions and speaking in front of the whole class. Midterm and final will be online and blackboard is well organized and easy to access.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59dd6" + } + }, + { + "text": "The professor is nice, but his lectures are boring. Man goes on about Genesis and speaks sophisticatedly that the 1hr and 40 min class seems like a day. Unless you are very interested in humanities, you should pick a different class for your prerequisite. Attendance is mandatory. midterm is online(mult choice/response question.", + "pos": 0.175, + "neu": 0.776, + "neg": 0.049, + "_id": { + "$oid": "6711d383cd60fca157e59dd7" + } + }, + { + "text": "prof ward is chill guy, class was easy, attendance is mandatory, try not to miss class, group discussions are key part of your grade for every class so read your book beforehand and do all your other work", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59dd8" + } + }, + { + "text": "This class was once a week and lectures were mainly online. Try not to procrastinate on work because an asynchronous class makes it really tempting. The class was a little boring but the books we read were interesting. Just do your work and you should have no problem passing.", + "pos": 0.119, + "neu": 0.853, + "neg": 0.028, + "_id": { + "$oid": "6711d383cd60fca157e59dd9" + } + }, + { + "text": "Overall he made the class quite light and enjoyable. The work itself wasn't too bad and the reading was fun as well. Would definitely recommend it to someone who has never taken a world humanities class before! It was also one meeting a week which was for group discussion so not bad at all!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59dda" + } + }, + { + "text": "Ward is pretty cool and understanding professor. He is willing to explain further more what you did wrong in your writing. Although he is a hard grader he is lenient with late submissions. There is a lot of reading though. I would recommend him if you want to expand more in your writing.", + "pos": 0.217, + "neu": 0.712, + "neg": 0.071, + "_id": { + "$oid": "6711d383cd60fca157e59ddb" + } + }, + { + "text": "Absolutely corny , you can participate whole semester, hand in work before Time and still end up with a B- so ridiculous. Do not take this class waste of time !", + "pos": 0.085, + "neu": 0.746, + "neg": 0.169, + "_id": { + "$oid": "6711d383cd60fca157e59ddc" + } + }, + { + "text": "I think he's a really great instructor for this course. The class overall is easy, but can be very time consuming. Professor Ward does make each lecture interesting and he does his best to respond to students. He also gives good feedback on papers and he is very straightforward. If you're taking this class, I would recommend him.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59ddd" + } + }, + { + "text": "The class was really easy in my opinion just one quiz and discussion board post a week followed by a discussion in class where we go over the homework questions so if you wait until last minute just remember some notes from class and you'll be fine.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59dde" + } + }, + { + "text": "Cool Professor, just the class gets boring sometimes. But I recommend him if you are going to take World Humanities 1.", + "pos": 0.2, + "neu": 0.733, + "neg": 0.067, + "_id": { + "$oid": "6711d383cd60fca157e59ddf" + } + }, + { + "text": "I would take this class again but beware of reading a lot of texts. You could easily cheat on the weekly quizzes but once you go in person, he could def tell who has read the material or not. Other than the weekly quizzes and lectures, he only assigned 2 essays and the midterm and final. He clearly loves what he does and is knowledgeable about it.", + "pos": 0.149, + "neu": 0.801, + "neg": 0.051, + "_id": { + "$oid": "6711d383cd60fca157e59de0" + } + }, + { + "text": "Professor Ward is good at his job, he is knowledgable and loves what he teaches. Only thing I didn't like was the lectures we had to watch on our own. They were very boring and difficult to sit through. He gave weekly homework that included the lectures, a quiz, and a discussion post. 2 papers, midterm, and final", + "pos": 0.098, + "neu": 0.79, + "neg": 0.111, + "_id": { + "$oid": "6711d383cd60fca157e59de1" + } + }, + { + "text": "Readings were provided for each class and got pretty heavy at times. Discussion boards due every week, 2 papers, a midterm and a final. The papers were more challenging than I expected. For the midterm and final, he gave a glossary with all the terms that were on the exam. Very lecture heavy and without participation from students is very boring.", + "pos": 0.078, + "neu": 0.883, + "neg": 0.039, + "_id": { + "$oid": "6711d383cd60fca157e59de2" + } + }, + { + "text": "It is clear that he cares about the topics being discussed. We get readings every week with lecture videos, quizzes, and discussions due every week. A lot, I know, but the quizzes are not that difficult and the videos are quite engaging. We do have in class discussions weekly and students are given a day to ask a question based on the reading.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59de3" + } + }, + { + "text": "Chill professor. His lectures are pretty heavy with talking, but it's best to participate. Granted, there's a lot of reading, quiz, and discussion post in the class but that's expected for every whum class. Theres two essay, a midterm and a final. He's willing to help you out with your drafts and thesis statement too. Overall, very nice guy.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59de4" + } + }, + { + "text": "Way too much homework and really boring lectures. Good luck.", + "pos": 0.391, + "neu": 0.444, + "neg": 0.165, + "_id": { + "$oid": "6711d383cd60fca157e59de5" + } + }, + { + "text": "Hes okay but boring as hell. Lots of wack reading and kind of tough grader. Dont miss class.", + "pos": 0.113, + "neu": 0.47, + "neg": 0.417, + "_id": { + "$oid": "6711d383cd60fca157e59de6" + } + }, + { + "text": "Professor Ward is like a polymath and enjoys what he does. He always makes jokes and makes class fun. I would definitely take him again for another English class. Overall, great guy.", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59de7" + } + }, + { + "text": "He is nice professor. Always willing to help and provide feedback, but his lectures are LONG and BORING!!!!!", + "pos": 0.156, + "neu": 0.626, + "neg": 0.218, + "_id": { + "$oid": "6711d383cd60fca157e59de8" + } + }, + { + "text": "Well, first of all Tyson Ward is amazing. He gives you the best assignments, both challenging and thought-provoking. Not only do you get to have \"draft workshops\" a week before the paper is due, but you can visit him anytime for feedback. He is also kind and has a great sense of humor. I mean what more should I add? The guy is just cool, TAKE HIM.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59de9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d383cd60fca157e59deb" + }, + "professor_name": "Diane Reid", + "rating": 3.7, + "department": "Civil Engineering department", + "comments": [ + { + "text": "I am writing this in my senior year, so maybe my words will mean something. Prof. Reid was a very tough teacher, yes. But her toughness instilled a work ethic in me that carried me through my undergraduate degree. I wouldn't want to take the class again, knowing the amount of stress it caused, but I can't deny how rewarding it was in the end.", + "pos": 0.061, + "neu": 0.785, + "neg": 0.154, + "_id": { + "$oid": "6711d383cd60fca157e59dec" + } + }, + { + "text": "Professor Reid is one of the best Civil Engineering Professors in CCNY. She is tough and will make do a lot of homework and reading, but its all worth it because everything she teaches is extremely useful and helpful. She teaches really well and her main goal is to make sure that you learn. Just pay attention, do what you need to, STUDY for tests.", + "pos": 0.245, + "neu": 0.719, + "neg": 0.036, + "_id": { + "$oid": "6711d383cd60fca157e59ded" + } + }, + { + "text": "Diane communicates material well and cares about students. However, she is extremely harsh and often mean. She has high expectations and can be manipulative. She genuinely enjoys stressing us out, saying it will make us better engineers. I learned a lot and received a fair grade but it was a ton of work and came at the expense of other classes.", + "pos": 0.139, + "neu": 0.804, + "neg": 0.057, + "_id": { + "$oid": "6711d383cd60fca157e59dee" + } + }, + { + "text": "Just stay Away from her and you will be good, but Wht? u can't so good lock. She uses to like some students most than another and this can make a big difference in your final grade and her \"Strictures\" When I was in her class a tutor was teaching, judge yourself.", + "pos": 0.089, + "neu": 0.841, + "neg": 0.069, + "_id": { + "$oid": "6711d383cd60fca157e59def" + } + }, + { + "text": "If you really like Civil Engineering you will learn a lot from her since she bases her classes with real work she has already done to explain topics. She is a scary prof but if you work really hard in her class you'll be fine, this class is nor for lazy people since she gives a large amount of work, hws and readings.", + "pos": 0.098, + "neu": 0.842, + "neg": 0.06, + "_id": { + "$oid": "6711d383cd60fca157e59df0" + } + }, + { + "text": "For me, she is such an amazing person and prof. Material is not that hard but she gives a lot of works to do so don't take it together with major classes but you will learn so much from the class and her. Make sure she knows your name. Do very well on the Final and the presentation. She gives very useful advises so take her. She is the best.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59df1" + } + }, + { + "text": "Shes very knowledgeable and often incorporates real world examples into her lectures. However, her big ego really gets in the way of me liking her. She thinks everyone has the same abilities she has if I can do it then you can too we have other obligations, Diane. I genuinely believe if she didnt boast all the time she would be a wonderful prof", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59df2" + } + }, + { + "text": "You get homework that are usually longer than 10 pages every week. In addition, there are autocads to do every week. The grading criteria very straightforward but you have to be ready to do the work otherwise there's no way you will pass.", + "pos": 0.069, + "neu": 0.871, + "neg": 0.06, + "_id": { + "$oid": "6711d383cd60fca157e59df3" + } + }, + { + "text": "She's really real about what Civil Engineering is all about, and the workload goes to show for it. I gave up on engineering because of her. Thanks Diane :)", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59df4" + } + }, + { + "text": "Lots of HW but you learn from it! She sets you up to build your resume by exposing you to real life big project at the end, which is why youre studying CE. work load makes sense in relations to career. Its an easy class if you do readings ahead of time and attend office hours. With Autocad you might b lost @ begin with, but you will get better.", + "pos": 0.1, + "neu": 0.829, + "neg": 0.07, + "_id": { + "$oid": "6711d383cd60fca157e59df5" + } + }, + { + "text": "This class is introductory however the work load doesnt make any sense. Worst professor ever !! You wont learn anything because of unnecessary work load.", + "pos": 0.0, + "neu": 0.837, + "neg": 0.163, + "_id": { + "$oid": "6711d383cd60fca157e59df6" + } + }, + { + "text": "Two F's, two semester straight. I am not the only one. My advice just do not, since there is not other prof to teach this class, CE- 20900, unless she is traveling and put the tutor to teach, please go to another university. The grove school do nothing if you complain.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59df7" + } + }, + { + "text": "Easy class, with a lot of HW. You will learn a lot of useful things that may help you to secure an internship in the future. A lot of reading too. Student with no prior experience with AutoCad will find this class more difficult than those who had the experience.", + "pos": 0.182, + "neu": 0.735, + "neg": 0.083, + "_id": { + "$oid": "6711d383cd60fca157e59df8" + } + }, + { + "text": "It is a lot of homework but, the homework helps you learn the material. That way you dont have to study as hard for the exams and dont cheat the homework because then you wont learn anything, and have to actually study hard for the exams. (Side note dont complain about the work load because she will give you more.)", + "pos": 0.138, + "neu": 0.815, + "neg": 0.047, + "_id": { + "$oid": "6711d383cd60fca157e59df9" + } + }, + { + "text": "Due to the amount of work you do in class quite unethical because it will not help u learn anything. Given so many work HW and projects will not make you understand any material well for future classes, over loaded of work.", + "pos": 0.045, + "neu": 0.831, + "neg": 0.125, + "_id": { + "$oid": "6711d383cd60fca157e59dfa" + } + }, + { + "text": "Well she is the only one who is teaching 20900 but I would take less class when taking this class , she gives load amount of work and lecture-heavy. This will make you not learn anything for this class, they should take out this prof.", + "pos": 0.034, + "neu": 0.966, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59dfb" + } + }, + { + "text": "Prof. Reid is one of the best Professors in CCNY. She is a GREAT teacher and has experience that she uses to emphasize the lessons. Straightforward and Inspirational. Gives insight on steps an engineer should take in the future. Not a tough class. Medium to High Workload but if you manage yourself you should be fine. Exams are from HW and Lectures.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d383cd60fca157e59dfc" + } + }, + { + "text": "Great professor, but you gotta work hard in this class. Recommend only taking 2 other classes while taking this class. Loads of work and projects, wouldn't say tough grader but you can find the answers in the textbook. Expect to answer questions and read before going to class.", + "pos": 0.139, + "neu": 0.831, + "neg": 0.03, + "_id": { + "$oid": "6711d383cd60fca157e59dfd" + } + }, + { + "text": "Given the circumstances in this class Id have to say she was somewhat fair when came to the final grade. There was barley a curve and some of the grades were given because she felt like it was deserved. She showed no mercy giving me an F. No comments regarding her, I would just stay away from her.", + "pos": 0.071, + "neu": 0.83, + "neg": 0.099, + "_id": { + "$oid": "6711d383cd60fca157e59dfe" + } + }, + { + "text": "Shes a great professor from the one time I met her. Chances are she wont be teaching next semster, but will have her friend sub. My expierence with this class would be so much better if she actually showed up to lecture and responded to emails in a timely manner. The CE department is messed up with Keles and Diane.", + "pos": 0.177, + "neu": 0.779, + "neg": 0.044, + "_id": { + "$oid": "6711d383cd60fca157e59dff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d384cd60fca157e59e01" + }, + "professor_name": "Cheikh Mboup", + "rating": 3.6, + "department": "Mathematics department", + "comments": [ + { + "text": "Doesn't know how to teach at all and confuses himself frequently. Never engages with students in class. You will have to teach everything yourself. Please save your grade and take someone else by all means.", + "pos": 0.136, + "neu": 0.765, + "neg": 0.1, + "_id": { + "$oid": "6711d384cd60fca157e59e02" + } + }, + { + "text": "Really funny guy, but difficult class. He prepares you for the final by giving harder tests, which I appreciated in some ways. Prepare to really work for the grade.", + "pos": 0.255, + "neu": 0.66, + "neg": 0.086, + "_id": { + "$oid": "6711d384cd60fca157e59e03" + } + }, + { + "text": "He gives 4 exams and the lowest one gets dropped. His exams are a lot harder than the final. But if you do okay on his exams, you will find the final a lot easier. Study webassign, and do decent on his exams, you can pass the final with good grades. I did okay in the class and did very well on the final. he's a lenient grader", + "pos": 0.223, + "neu": 0.755, + "neg": 0.022, + "_id": { + "$oid": "6711d384cd60fca157e59e04" + } + }, + { + "text": "Very difficult professor gives extremely hard tests, doesn't take attendance, quizzes come left and right and they are long quizzes that look like tests. He'll never give a problem in class where he give his students time or the chance to solve it, he just solves it him self and makes u follow along. Get ready to study your ass off if u take him.", + "pos": 0.171, + "neu": 0.726, + "neg": 0.104, + "_id": { + "$oid": "6711d384cd60fca157e59e05" + } + }, + { + "text": "This guy is literally the funniest person in the world. He made class very enjoyable, and learning Calc III very fun. The only problem I had with him was that his tests were very different from what he would give as hw and from the review sheets. He drops the lowest of 4 test grades. Also gives a reasonable curve on the final grade. Love this guy!!", + "pos": 0.186, + "neu": 0.749, + "neg": 0.065, + "_id": { + "$oid": "6711d384cd60fca157e59e06" + } + }, + { + "text": "Class exams are way tougher than the finals, which makes the departmental finals (40% of your grade) very easy. Provides review sheets for his exams (Drops 1 out of 4). Very generous when it comes to final grades (thankfully). Take him if you want to learn. He does make mistakes on the board while teaching but doesn't mind if you point them out.", + "pos": 0.13, + "neu": 0.844, + "neg": 0.026, + "_id": { + "$oid": "6711d384cd60fca157e59e07" + } + }, + { + "text": "Dropped lowest exam out of 4. Didn't curve. Does example problems straight out of the textbook, get ready to self study if you take him.", + "pos": 0.143, + "neu": 0.684, + "neg": 0.173, + "_id": { + "$oid": "6711d384cd60fca157e59e08" + } + }, + { + "text": "I took his class during the summer and by far he is one of the chilliest professors and I've learned so much from him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e09" + } + }, + { + "text": "He's a good professor, but calculus 3 is very hard. He is one of my only math professors who curved the grades, and is good with partial credit. He probably will complain about how badly the class as a whole is doing. very funny too.", + "pos": 0.221, + "neu": 0.624, + "neg": 0.155, + "_id": { + "$oid": "6711d384cd60fca157e59e0a" + } + }, + { + "text": "Great professor. Teaches very well, lots of examples. He may make a mistake on the board, so point it out to him. Hes funny too. He has 4 exams, lowest is dropped. His HW is optional, its a lot but DO IT. It will give you practice for the exams. Then he gives you a review sheet for the exam, its literally like it. Do both those, you'll do well!", + "pos": 0.157, + "neu": 0.799, + "neg": 0.044, + "_id": { + "$oid": "6711d384cd60fca157e59e0b" + } + }, + { + "text": "Amazing, amazing, amazing! He is a true math teacher. Very knowledgeable and understanding individual. I am not the best at math but with taking this class I became better. He is funny, energetic and on top of his game. Truly a gem.", + "pos": 0.441, + "neu": 0.523, + "neg": 0.036, + "_id": { + "$oid": "6711d384cd60fca157e59e0c" + } + }, + { + "text": "This is the best PreCalculus adjunct ever, in my opinion! I got an A in his class. He's hilarious, clear, and very considerate of his students. I definitely recommend him to anyone that has a background with precalculus, or college algebra. Mboup rocks!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e0d" + } + }, + { + "text": "Mboup is one of the best math instructors I've had in my entire life. Although he teaches straight from the book, his lectures simplify the material. &He's hilarious! He was always open to students asking questions and was available if we needed help. He genuinely cares about his students. You have to put in work, duh, it's math .But def. take him!", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e0e" + } + }, + { + "text": "Hilarious professor who really enjoys what he teaches. Exams are fairly tough, but if you study the review sheet he gives you before each one and complete the optional homework, you will definitely be ready. Doesn't take attendance but notices who comes to class and who participates. Has a bit of an accent, but is willing to help outside of class.", + "pos": 0.205, + "neu": 0.777, + "neg": 0.018, + "_id": { + "$oid": "6711d384cd60fca157e59e0f" + } + }, + { + "text": "One of the best professors I've had. Very clear, funny, and you know what to expect on exams. He gives review sheets before every test and that are about the same difficulty as the exam, and he'll even solve them for you if you ask. Exam has similar questions to the review sheet.", + "pos": 0.193, + "neu": 0.768, + "neg": 0.038, + "_id": { + "$oid": "6711d384cd60fca157e59e10" + } + }, + { + "text": "he's not a good professor. doesn't know how to teach a class.", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d384cd60fca157e59e11" + } + }, + { + "text": "Funny. Easy grading.", + "pos": 0.853, + "neu": 0.147, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e12" + } + }, + { + "text": "exams are hard but he is a good grader", + "pos": 0.32, + "neu": 0.581, + "neg": 0.1, + "_id": { + "$oid": "6711d384cd60fca157e59e13" + } + }, + { + "text": "This professor is great. You can tell he has a genuine love for math and so he knows what he's talking about. Ask him the hardest questions you can think of, and he'll probably get an answer for you. Even the most abstract math questions. Be sure to ask him to re-explain concepts, and he'll make things clear. Would take this professor again.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e14" + } + }, + { + "text": "Calculus 2 is a challenging course by nature. Professor Mboup is your best bet. He is fair when grading exams and is very lenient when it comes to your final grade. He does not just use the grading criteria when assigning final grades. He looks at your overall performance as a student. CCNY needs more like him. 250 characters is not enough for him!", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e15" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d384cd60fca157e59e17" + }, + "professor_name": "Zhexuan Wang", + "rating": 4.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "the coolest guy ever. got my first-ever A+ never thought this day would come. insane curve he understands how hard we work during the semester. he's a very funny guy too. you will have quizzes nearly every week tho. Learned so so much in this class you wont regret.", + "pos": 0.101, + "neu": 0.824, + "neg": 0.075, + "_id": { + "$oid": "6711d384cd60fca157e59e18" + } + }, + { + "text": "As someone who does is not very good at drawing or visualizing things in three dimensions, this class was very challenging. But the class was organized in such a way that I was able to see incremental improvements from week to week, making me surprised to realize how much I learned at the end. Overall a great introduction to Mech E.", + "pos": 0.177, + "neu": 0.798, + "neg": 0.026, + "_id": { + "$oid": "6711d384cd60fca157e59e19" + } + }, + { + "text": "Great professor. Care about his students and appreciate the effort", + "pos": 0.588, + "neu": 0.412, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e1a" + } + }, + { + "text": "I honestly had a lot of fun during his lectures. He gave thorough explanations, step-by-step solutions, his examples were easy to follow, and above all that he's pretty funny. Homework, quizzes, and group projects should be taken seriously because he does grades them every week and they all have a set due date. 10/10 great professor.", + "pos": 0.298, + "neu": 0.678, + "neg": 0.024, + "_id": { + "$oid": "6711d384cd60fca157e59e1b" + } + }, + { + "text": "He is a pretty good professor, teaches well, and is honestly realistic, grades quite lenient but quizzes every lecture. Though it has a small attitude, you can get used to it.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e1c" + } + }, + { + "text": "Pretty good professor, has quizzes every class so attendance is basically mandatory, the work itself isn't difficult except maybe the 3D project. Assigns homework every week.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e1d" + } + }, + { + "text": "Average Professor. Study every week so you will be prepared for pop quizzes.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e1e" + } + }, + { + "text": "He looks for effort and he emphasizes work ethic. Grading is concrete but there is some leeway if you really need help. He cares for his students.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e1f" + } + }, + { + "text": "He is a little quirky but cares deeply about students and wants them to succeed. I had no prior knowledge of the subject but ended up doing fine. Just do all the homework and review the last class's lectures because there's often pop quizzes. He let me redo an important assignment for more credit. Only thing is that \"hybrid\" class was all online.", + "pos": 0.213, + "neu": 0.751, + "neg": 0.037, + "_id": { + "$oid": "6711d384cd60fca157e59e20" + } + }, + { + "text": "When I become a successful engineer, I want to invite Professor Wang to my home to have dinner with me and meet my family. He has made an incredible impact on me, and only I can feel this. I regret not trying harder. Thank you for everything, Professor Wang. May God bless you, from the bottom of my heart.", + "pos": 0.22, + "neu": 0.711, + "neg": 0.068, + "_id": { + "$oid": "6711d384cd60fca157e59e21" + } + }, + { + "text": "Taking his class for Spring 2023 for once a week online.\nProfessor Wang has an unorthodox way of organizing his online resources on blackboard. His exams has difficulty levels for each student, which IMO is unfair grading, also no study guide. He grades exams/hw/project pretty leniently. Seemed pretty harsh gradewise and respectfully this semester.", + "pos": 0.136, + "neu": 0.705, + "neg": 0.159, + "_id": { + "$oid": "6711d384cd60fca157e59e22" + } + }, + { + "text": "Professor Wang is amazing. Great gateway into ME. Class is around 3 hours long but he keeps you engaged with his humor here and there. Material is taught clearly. Values effort. Homework is essential to passing the class. Gives great feedback. If you ever see a course being taught by him, enroll immediately. He's always available if you need help.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e23" + } + }, + { + "text": "class is a bit difficult online, but you truly learn a lot, wang is a true gem and attempts to make things entertaining, put in the work show effort and he will truly notice it and grade you based on that", + "pos": 0.288, + "neu": 0.679, + "neg": 0.033, + "_id": { + "$oid": "6711d384cd60fca157e59e24" + } + }, + { + "text": "I would purposely fail just to retake this class with this professor. That's all you need to know. If you see him teaching a class, go click enroll right now.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d384cd60fca157e59e25" + } + }, + { + "text": "Don't let the project scare you. It's really not that bad, believe me. Think of it like another HW assignment every week. I usually did everything the day before they were due and still managed to do well. Make sure you understand the HW's because the midterms and quizzes reflect the HWs immensely. Overall an amazing prof. Wish I had him again.", + "pos": 0.221, + "neu": 0.736, + "neg": 0.043, + "_id": { + "$oid": "6711d384cd60fca157e59e26" + } + }, + { + "text": "THE GOAT. This man is magnificent. He's funny, interacts with students, lets people share opinions, and is good with grading/feedback. He is the definition of a good professor. Loves what he does and makes students love it too. Grading is reasonable. Only thing is he connects everything to \"fake news\". Some find it annoying, I find it hilarious.", + "pos": 0.321, + "neu": 0.606, + "neg": 0.073, + "_id": { + "$oid": "6711d384cd60fca157e59e27" + } + }, + { + "text": "Prof. is super helpful, and often grades more on the improvement he sees because he knows the material is tough. He gives corrections on all homeworks and quizzes. He really just wants to see you think, for you to learn something. Group project throughout the course of the class. Endorses collaboration and communication amongst students. A true gem", + "pos": 0.221, + "neu": 0.757, + "neg": 0.022, + "_id": { + "$oid": "6711d384cd60fca157e59e28" + } + }, + { + "text": "The professor was clear and fair on grading. In class we used AutoCAD/Solidworks and pencil and paper to draw 2D and 3D mechanical drawings. For HW questions, he went through the solutions in class so you are able to review the class material. If you needed extra help, the professor was happy to pair you up with someone so you could work together.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d384cd60fca157e59e29" + } + }, + { + "text": "Professor Wang is a fair grader and he teaches with a lot of details and is easy to follow. As far as grading is concerned, he is a fair grader if you manage to do your part. Make sure to pay attention in class and his assignment requirements.", + "pos": 0.181, + "neu": 0.793, + "neg": 0.026, + "_id": { + "$oid": "6711d384cd60fca157e59e2a" + } + }, + { + "text": "HW every week alongside assignments for the project. The hw, quizzes, and exams are graded harshly. He jokes around too much. Rambled on for like 30min about lying media. I get ya man, but time and place. Didn't learn much. FWIW I got an A. Dunno if there's a curve but my scores definitely weren't that high. Nice guy. Unsure if recommend.", + "pos": 0.138, + "neu": 0.756, + "neg": 0.106, + "_id": { + "$oid": "6711d384cd60fca157e59e2b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d385cd60fca157e59e2d" + }, + "professor_name": "David Cieri", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "If every professor were like him I'd love to be in college forever! The most interesting, entertaining, wise, & sweetest ever! Class discussions are always insightful & valuable information. Work is manageable with readings and quizzes based on the reading due each week. Without a doubt, you'll love this class even wishing it didn't have to end.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e2e" + } + }, + { + "text": "The reviews were indeed right. This professor by far is the best professor i've ever taken so far. His class is very easy as long as you read the chapter and do the quiz and also do all your assignments. A little strict on the attendance but overall very awesome guy. Will 1000% take him again in the future. Professor David, you rock!", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e2f" + } + }, + { + "text": "Honestly, at first, I thought Professor Cieri was going to be one of those teachers, but he's actually a sweetheart. All you have to do to pass in the class, do the 5 question quizzes weekly, read the article he assigns and talk about it in class. It's not a really hard class to fail, and an easy class to take.", + "pos": 0.183, + "neu": 0.754, + "neg": 0.064, + "_id": { + "$oid": "6711d385cd60fca157e59e30" + } + }, + { + "text": "By far one of the best professors I've ever had. I looked forward to his passionate lectures every week. My classmates and I didn't want the semester to end! Regardless of your major, I highly recommend taking one of his classes. Not just for credit or to fill your schedule, but to quote David himself, \"for the life!\"", + "pos": 0.117, + "neu": 0.84, + "neg": 0.043, + "_id": { + "$oid": "6711d385cd60fca157e59e31" + } + }, + { + "text": "All the reviews, I read on here were right. He is an awesome professor that really cares about the topic he teaches. He did assign 2 papers which is the most difficult part of his class but he is not a very tough grader. You really need to show up though because he does not share notes. The passion with which he taught the class was inspiring.", + "pos": 0.182, + "neu": 0.764, + "neg": 0.054, + "_id": { + "$oid": "6711d385cd60fca157e59e32" + } + }, + { + "text": "David Cieri is an amazing professor that truly cares about how his students are feeling and what they will learn from his class to use on their future endeavors. Overall if I could retake this class I would. David you rock!!", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e33" + } + }, + { + "text": "such a nice professor. he is very engaging and very interesting. you can tell how passionate he is about music and it makes the class very fun. he assigns two papers and he's very nice when grading and critiquing. 100% would take him again.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e34" + } + }, + { + "text": "amazing person, very good professor", + "pos": 0.7, + "neu": 0.3, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e35" + } + }, + { + "text": "Overall he's a great professor, very passionate about what he's teaching and his career, if you're into music you'll enjoy this class a lot but for those only taking this for credit you might get bored. Notes are important for the papers and quizzes since he does not always record lectures. The class is an easy A.", + "pos": 0.238, + "neu": 0.724, + "neg": 0.038, + "_id": { + "$oid": "6711d385cd60fca157e59e36" + } + }, + { + "text": "Prof. Cieri is a GEM. Hes very caring, and you can tell hes very passionate about what he teaches. His classes were like therapy, while still being informative and interesting. 1000000% recommend. Wish more professors were like him.", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e37" + } + }, + { + "text": "Dear David, Where are you now, when I need you? Superb teaching skills. Life lessons for the lost nomad. You are the sun, we are the earth. Would take again and again.", + "pos": 0.176, + "neu": 0.763, + "neg": 0.061, + "_id": { + "$oid": "6711d385cd60fca157e59e38" + } + }, + { + "text": "Nice guy, but very harsh grader. I found it difficult to anticipate what exactly he wanted on our papers/projects. Maybe a grading criteria might help? He tries to have a lot of discussion during class which sometimes causes us to stray far off topic which is fine, just found it difficult to focus sometimes. Doesn't use bb so also a downer.", + "pos": 0.104, + "neu": 0.749, + "neg": 0.147, + "_id": { + "$oid": "6711d385cd60fca157e59e39" + } + }, + { + "text": "The most caring and understanding prof at CCNY. Take him. Youll be grateful.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e3a" + } + }, + { + "text": "I would give a 5.0 but he does not use blackboard so that's a drawback. You sort of have to guess what your grade is. Otherwise he a real calm & chill guy, he knows what he's talking about, and really understanding. However, it might seem like it's more of a philosphy/history class than a music class, I was expecting to learn how to play the piano", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e3b" + } + }, + { + "text": "He is very specific about what he wants. Overall, he wants you to do your best.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e3c" + } + }, + { + "text": "Great professor and and very unique lectures. David really makes you think deeply and always considers the opinions of others. He teachers you about not only music but life and you can really tell that he is passionate when he speaks. He is a tough grader but if you participate in class, do the work, pass the quizzes, and final, you'll get an A.", + "pos": 0.102, + "neu": 0.873, + "neg": 0.025, + "_id": { + "$oid": "6711d385cd60fca157e59e3d" + } + }, + { + "text": "Excellent professor and lecturer. This class was very inspiring even for stem majors. I could really careless about his subtle remarks on the Trump administration. If you are a trump supporter, stay quiet to protect your grade. Study and participate and you'll get an A.", + "pos": 0.212, + "neu": 0.737, + "neg": 0.051, + "_id": { + "$oid": "6711d385cd60fca157e59e3e" + } + }, + { + "text": "I miss this class.", + "pos": 0.0, + "neu": 0.652, + "neg": 0.348, + "_id": { + "$oid": "6711d385cd60fca157e59e3f" + } + }, + { + "text": "Make sure you participate in his class and show up every class. He is a good professor and will make you work for his grade. Other then that, he is very passionate about what he does and wants you to succeed in life. He makes you think about everything you do and wants you to put in the best effort in anything you do. We had one 4-5 quizzes so read", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e40" + } + }, + { + "text": "I would take David's class a million times if I could. He is such an understanding professor and you really learn a lot from his class. He creates a comfortable environment for everyone to contribute to the class discussion which is always enriching.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e41" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d385cd60fca157e59e43" + }, + "professor_name": "Leonard Trugman", + "rating": 3.9, + "department": "Economics department", + "comments": [ + { + "text": "Want an easy A? Go ahead, but a few warnings. You won't learn anything about operations, but will know all about his family. Says nothing of value, but shushes you if you start talking while he's \"lecturing\". And ladies beware, you'll be the main focus of his attention. Then he gets sick midsemester and you're left a new prof. and new expectations.", + "pos": 0.044, + "neu": 0.815, + "neg": 0.14, + "_id": { + "$oid": "6711d385cd60fca157e59e44" + } + }, + { + "text": "2 case study presentations, 1 15 page term paper, do that and you are good!! Really laid back and chilled. If you need a break from a lot of classes i would definitely recommend him!!", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e45" + } + }, + { + "text": "He is more likely to give females A. He lost my term paper and gave me an incomplete. Took 45 days to fix my grade to A. Makesure you take his cellphone coz he doesn't use email.He can never relate name and face.So don't rely on that for grades. Submit your assignment on the last day of class along with rest of the students,he won't lose it then.", + "pos": 0.032, + "neu": 0.935, + "neg": 0.033, + "_id": { + "$oid": "6711d385cd60fca157e59e46" + } + }, + { + "text": "Trugman is the man!! Yes, his class is an easy A but you must still attend as often as you can. You must let him know you by name. And he tales attend dance out of the blue. Present the PowerPoints early in the semester to catch his attention and get it over with! He's very knowledgeable about Economics. Ask him questions about anything! Great man!", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e47" + } + }, + { + "text": "Easy A. Has 2 presentation. you can do it when every you want. Even do 2 together one 15 page final paper. Takes attendance 3 time for the whole semester. I was their only twice, did one presentation and the final paper. went to his class 3 time for the whole semester and got a A.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e48" + } + }, + { + "text": "Truggie/Brooklyn boy is a real world professor. He talks much more about his family than the subject itself. Learned a lot about corporations. 2 case studies, 1-15 page research paper.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e49" + } + }, + { + "text": "he is nice. i am sitting in his class now and cant take my life! he says the same stories week after week. he sits in class and doesnt teach and then he just keeps asking \"ask me a marketing question\" and then you ask him a random one and he just answers and trails off.", + "pos": 0.053, + "neu": 0.947, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e4a" + } + }, + { + "text": "He is an awesome, excellent professor. He can give you the real world experience instead of just memorizing the book. He is the best, Must take him if you want A.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e4b" + } + }, + { + "text": "if you want to risk your grade at the end of the semester or wanna surprise yourself with an INC as course grade cz somehow he could not find your 20 page research paper and will fix it when the next semester begins go for it..he is all yours. Doesnt teach so dont expect to learn anything in that class except about his family", + "pos": 0.051, + "neu": 0.917, + "neg": 0.032, + "_id": { + "$oid": "6711d385cd60fca157e59e4c" + } + }, + { + "text": "He does not teach...his class is a joke...on the other hand, he is very smart...you can ask him questions and he will answer them...if you want an easy A take him...", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e4d" + } + }, + { + "text": "he is a joke super easy 2 presentations and a 20 page paper which you can easily bs on because he doesnt read it..you will learn nothing and also doesnt care about attendance if you wanna boost up your grade just do yourself a favor and register for any class hes teaching :)", + "pos": 0.294, + "neu": 0.667, + "neg": 0.039, + "_id": { + "$oid": "6711d385cd60fca157e59e4e" + } + }, + { + "text": "Easiest professor in CCNY. If you want an A take any of his classes. He actually teaches with out giving tons of useless assignments. Participation is 1/3 of the grade so make sure you talk in class about anything really. I heard that for the final paper you can just hand in 15ph of bs and still get an A.", + "pos": 0.178, + "neu": 0.782, + "neg": 0.041, + "_id": { + "$oid": "6711d385cd60fca157e59e4f" + } + }, + { + "text": "very good professor, only 1 presentation,(1/3 grade), 1 15-20 page research paper(1/3 grade), attendance(1/3 grade); if you just want to get A, take his class. easiest professor in CCNY.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e50" + } + }, + { + "text": "This is a great professor, with a great deal of knowledge in anything you want to know. I will never forget this guy for ever. I learned more from him than I did from any other professor.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e51" + } + }, + { + "text": "cool dude. but lazy. hardly went to class. did my presentation and wrote a 20 page final. he gave me a B+.", + "pos": 0.066, + "neu": 0.803, + "neg": 0.131, + "_id": { + "$oid": "6711d385cd60fca157e59e52" + } + }, + { + "text": "He is a good professor he talks about current situations in the news BUT if you want to learn about economics he is not your best bet to grasp important concept if the subject. If you dont understand economics is going to be very hard for you to follow up on your next economics classes. He is good mostly becuase you have no homework, no textbooks t", + "pos": 0.147, + "neu": 0.736, + "neg": 0.117, + "_id": { + "$oid": "6711d385cd60fca157e59e53" + } + }, + { + "text": "Best professor CCNY. He is concise, and clear. All you have to do is follow his instructions and participate in class.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e54" + } + }, + { + "text": "Great professor. Don't expect A without doing any work. You might surprise by looking at your grade. Class participation really matters. And 20 pages paper....better start working on it early.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e55" + } + }, + { + "text": "Great teacher... if you pay attention to what the teacher says", + "pos": 0.283, + "neu": 0.621, + "neg": 0.097, + "_id": { + "$oid": "6711d385cd60fca157e59e56" + } + }, + { + "text": "At first I thought that he would be teaching a lot but he really don't teach much. He is super nice but very laid back. Group project and 20 page paper is all there is to it. You will not break a sweat in his class, its as cool as a winter breeze.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d385cd60fca157e59e57" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d386cd60fca157e59e59" + }, + "professor_name": "Dulce Garcia", + "rating": 4.4, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "She's a really sweet lady but you won't really learn much if you don't know Spanish already. Either that or rely on Pearson and textbooks to teach yourself and pass her tests. Her quizzes and tests are fairly straightforward if you understand the content or even if you memorize the worksheets.", + "pos": 0.041, + "neu": 0.959, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e5a" + } + }, + { + "text": "She's very nice prof. Very understanding. She expect you to know what she's teaching. If you are Spanish speaker its an easy A. She goes over the exam day before.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e5b" + } + }, + { + "text": "shes amazing and makes sure you understand the material before moving on and provided a number for you to call her at anytime, TAKE HER!!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e5c" + } + }, + { + "text": "Professor Garcia is an amazing professor. She makes the class engaging and wants you to participate but its fine if you read the texts. The text are hefty but are so good. Theres a few essay assignments and 2 exams but I personally didnt find them hard. She gives extra credit. If you have any problems be sure to email her, shes understandable!", + "pos": 0.25, + "neu": 0.705, + "neg": 0.045, + "_id": { + "$oid": "6711d386cd60fca157e59e5d" + } + }, + { + "text": "I liked her class, final is the exact same as the practice test she gives you she just cuts out some parts STUDY THAT PACKET. Lots of homework but shes funny and caring and that shines through when she teaches", + "pos": 0.211, + "neu": 0.756, + "neg": 0.034, + "_id": { + "$oid": "6711d386cd60fca157e59e5e" + } + }, + { + "text": "Made learning Spanish less intimidating and more fun. Very personable and hilarious, but gets sidetracked easily and even confused sometimes. TONS of worksheets;you will redo worksheets you've already done to really \"drill\" it. This class is not for comfortable, more advanced Spanish speakers, but if you're a slow learner this will help you a lot!", + "pos": 0.204, + "neu": 0.677, + "neg": 0.12, + "_id": { + "$oid": "6711d386cd60fca157e59e5f" + } + }, + { + "text": "she's very nice, caring, and enthusiastic. however, she gets sidetracked easily and you have to be on top of her to make sure she has received assignments/papers. I went from having a C to an A on my transcript as a result of an error made in this class", + "pos": 0.267, + "neu": 0.689, + "neg": 0.044, + "_id": { + "$oid": "6711d386cd60fca157e59e60" + } + }, + { + "text": "Great professor. Grading criteria is based on participation and tests (2-4). Gives you the test to take home and answer before the actual tests. Roughly a day or two of review for the tests (makes sure the answers you have are correct) and then you take the test. But the tests are very detail oriented since she gives you the answers. PARTICIPATE", + "pos": 0.065, + "neu": 0.935, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e61" + } + }, + { + "text": "This professor is cool and all, but she loves to crack jokes, play around, and her review packets are not good. she played all semester and her final was insane. She gave me a B and I was one of the top student in her class. she doesn't respond to email. I would not recommend anyone take her class due to the fact that her class is not structured.", + "pos": 0.168, + "neu": 0.695, + "neg": 0.138, + "_id": { + "$oid": "6711d386cd60fca157e59e62" + } + }, + { + "text": "THIS IS MY FIRST TIME TAKING HER, BUT HEARD FANTASTIC THINGS ABOUT THIS WOMAN, AND ITS ALL TRUE!I LOVE HOW SHE CAN MAKE A BORING TOPIC, SO MUCH MORE INTERESTING THAN THE TEXTBOOK SAYS, AND AT THE SAME TIME LEARN A WHOLE LOT ABOUT THE CULTURE AND IDEAS OF THE TIME. SHE REALLY MAKES SURE YOU'LL GET IT. SHE'S NOT AN EASY A CLASS, BUT THE OPPOSITE.", + "pos": 0.218, + "neu": 0.711, + "neg": 0.071, + "_id": { + "$oid": "6711d386cd60fca157e59e63" + } + }, + { + "text": "fantastic the best prof. i ever had in my life", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e64" + } + }, + { + "text": "She is the best professor i ever had!!! u have so much fun in her class while u learn a lot!!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e65" + } + }, + { + "text": "She is extremely friendly and takes an active interest in her students' performance. However, I think the reason so many people like her so much is that she doesn't have very high standards. I took her Quixote class, and anytime anyone made an observation about the book she flipped out, even if the comment was mediocre. Not very challenging.", + "pos": 0.177, + "neu": 0.799, + "neg": 0.025, + "_id": { + "$oid": "6711d386cd60fca157e59e66" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d386cd60fca157e59e67" + } + }, + { + "text": "Dulce is serious when she has to be, otherwise the class is a blast. If you are a native spanish speaker you be on your P's and Q's, she will test you and does not like incorrect grammar used in class (spanish). She is a fair grader and helps anyone who needs it. I STRONGLY RECOMMEND. its not a easy A, but if you do what is required you'll be fine", + "pos": 0.116, + "neu": 0.826, + "neg": 0.058, + "_id": { + "$oid": "6711d386cd60fca157e59e68" + } + }, + { + "text": "La mejor profesora que tiene el Citi College. Tatra de tomar todas las de Espa\u00f1on con ella y nunca te arrepentira.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e69" + } + }, + { + "text": "Easy grader. Great explanations of the material. She is dynamic, you will never be bored on class. Besides reading the text book, it is a requirement to read allot, allot of extra material sent by email. On the tests, she will ask you to write allot; gives bonus questions. She loves her students and is in love of her profession.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e6a" + } + }, + { + "text": "the best teacher I had in my life. Dulce is amazing. Gracias bella.", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e6b" + } + }, + { + "text": "She is an EXCELLENT person. I took her class because of what I heard from her previous students. I am not a native speaker, but I found her teaching style exciting. You are NEVER bored in her class.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e6c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d386cd60fca157e59e6d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d386cd60fca157e59e6f" + }, + "professor_name": "Mahesh Lakshman", + "rating": 4.1, + "department": "Chemistry department", + "comments": [ + { + "text": "Prof. Lakshman is so knowledgeable and makes the concepts very understandable and digestible. Exams were multiple choice only but as long as you do practice problems from the book, you'll be good. He's very hilarious and I miss his class sm!", + "pos": 0.161, + "neu": 0.731, + "neg": 0.108, + "_id": { + "$oid": "6711d386cd60fca157e59e70" + } + }, + { + "text": "pop quizzes that are basically weekly. content is fair but a little much for a 2 credit class. no curves or extra credit on quizzes speaks very fast but lecture isnt that important just know labs inside and out", + "pos": 0.179, + "neu": 0.721, + "neg": 0.099, + "_id": { + "$oid": "6711d386cd60fca157e59e71" + } + }, + { + "text": "Amazing Professor.\nChallenging class.\n6 POP quizzes (lowest is dropped)\n13 lab reports due every week (lowest is dropped)\n1 CUMULATIVE final exam\nLectures are extremally important \nQuizzes and exams are from the lecture slides and the experiments.\nAttendance is mandatory \nNo make ups \n15% quizzes,5% TA evaluation,60% Lab reports,20% Final exam", + "pos": 0.14, + "neu": 0.739, + "neg": 0.122, + "_id": { + "$oid": "6711d386cd60fca157e59e72" + } + }, + { + "text": "Very charismatic lecturer who cares deeply about his students' success in class and in life. Anything on his lecture slides is fair game for the 6 quizzes and the final, so study them well. Sometimes goes over class time by just a few minutes, but always means well when explaining concepts in detail. One of the few gems in the chem dept!", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e73" + } + }, + { + "text": "No one give a crap what people post here. this is not an evaluation of education or how good/bad instructors are. its just a junk. posting has no meaning, you either can take course or not. if not, you have to find someone else, could be better or worse. posting means nothing ultimately as mostly it is to complain and cry.", + "pos": 0.04, + "neu": 0.744, + "neg": 0.216, + "_id": { + "$oid": "6711d386cd60fca157e59e74" + } + }, + { + "text": "Completing coursework well requires a lot of effort. Usually those who dont have it their way come to complain in these places. Its hardly a forum for assessment of quality!!", + "pos": 0.063, + "neu": 0.844, + "neg": 0.093, + "_id": { + "$oid": "6711d386cd60fca157e59e75" + } + }, + { + "text": "The last note states could not understand the class but scored A on retake. Taking a class twice usually results in better grade and some profs also hand out easier grades. It says nothing about learning! This prof. teaches and that is what counts, grades depend on what anyone learns and whether a prof. gives easy grades.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e76" + } + }, + { + "text": "It is interesting that he has a lot of good reviews. This professor is ok, but his exams were hard and I did not understand the class, I asked for help and I was sent to tutoring, the tutor was not helping at all, and I did not have enough time to go to tutoring. I was working and taking other classes. I retake the class with Salame got an A", + "pos": 0.095, + "neu": 0.854, + "neg": 0.051, + "_id": { + "$oid": "6711d386cd60fca157e59e77" + } + }, + { + "text": "This prof gave up his sabbatical to teach this class during COVID. He addresses all emails in a timely manner, offers support, resources, and great power points. He's open about his life which makes him humble and relatable. He went over sometimes on lectures, but always acknowledged it and apologized. He always prioritized our education.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e78" + } + }, + { + "text": "I saw a review about going over class time and ending class before the semester is over. LISTEN, this Lakshman knows his stuff, teaches THOROUGHLY, EFFECTIVELY & HE CARES if his students understands the material. He even has good humor! If youre complaining about him going over class time your head is in the wrong place. TAKE HIM u Wont regret it", + "pos": 0.211, + "neu": 0.724, + "neg": 0.065, + "_id": { + "$oid": "6711d386cd60fca157e59e79" + } + }, + { + "text": "He is a very sweet professor. His lectures keep you engaged and hit you with an occasional funny joke. He tends to go over class time but he does it with good intention, he wants you to make sure you know the material and he does it to end class early so you can focus on your other classes. He is worth taking, and I couldn't ask for a better prof.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e7a" + } + }, + { + "text": "Professor Lakshman is a caring professor who goes out of his way to help you understand the material. Although he went over the class time limit a few times, it was to help us have a complete understanding of the material. Anyone who was complaining about his lectures most likely wasn't paying attention in the first place.", + "pos": 0.136, + "neu": 0.836, + "neg": 0.028, + "_id": { + "$oid": "6711d386cd60fca157e59e7b" + } + }, + { + "text": "I took Lakshman for orgo 1 lab and I have to say he was a great professor. He did everything he could to make sure the class ran smoothly and took in any feedback provided by his students. He merged a few labs together which helped us finish the semester early which allowed us to focus on other classes. Lab reports depend on the TA who is grading.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d386cd60fca157e59e7c" + } + }, + { + "text": "Constantly interrupted by whatever was happening at his home. He sometimes merged two labs in one class so he doesn't have to teach towards the end of the semester, therefore he would go over class time (twice, over 30-40 min) -class is supposed to be 50 min-. Other than the mandatory attendance, this lab class was not very helpful or interesting.", + "pos": 0.065, + "neu": 0.863, + "neg": 0.072, + "_id": { + "$oid": "6711d386cd60fca157e59e7d" + } + }, + { + "text": "He is so sweet and caring. He explains material well and goes slow to ensure everyone understands. However, his exams are extremely difficult compared to the material taught in class. He provided a small curve which did not really help. Tests are all you are graded on. You have to do a lot of studying on your own. Try to get pass exams and study.", + "pos": 0.158, + "neu": 0.773, + "neg": 0.069, + "_id": { + "$oid": "6711d386cd60fca157e59e7e" + } + }, + { + "text": "I learned. My test scores may not reflect it, but I can still hear his voice explaining nucleophilic attacks. Take his class!! It won't be easy but you will learn", + "pos": 0.0, + "neu": 0.788, + "neg": 0.212, + "_id": { + "$oid": "6711d386cd60fca157e59e7f" + } + }, + { + "text": "What an amazing professor! I def recommend taking him. orgo isn't an easy course but with lakshman it is! Exams were okay, some questions were tricky but if u practice you'll be fine. He is very caring and goes above and beyond to explain concepts so everyone can understand. Practice and you'll do great on his exams. He is really an amazing person!", + "pos": 0.308, + "neu": 0.649, + "neg": 0.043, + "_id": { + "$oid": "6711d386cd60fca157e59e80" + } + }, + { + "text": "Amazing! Chem at CCNY is a nightmare and I found Orgo difficult but he teaches so well, clear and easy to follow. Hes straight forward in what he expects and starts on a curve, 86 is an A... MUST read and do practice problems bc lectures slides only outline easy examples. Put in the work and you will do great. Hes a sweetheart, highly recommend!", + "pos": 0.367, + "neu": 0.544, + "neg": 0.089, + "_id": { + "$oid": "6711d386cd60fca157e59e81" + } + }, + { + "text": "I dont even know where to begin. He keeps it real with you. Super down to earth, treats you like your own kid and explains the material super well. If you are unclear about concepts just go and talk to him during office hours. He gives you short summary notes on each chapter before the exam so make sure you understand those. Great professor!!!", + "pos": 0.253, + "neu": 0.722, + "neg": 0.025, + "_id": { + "$oid": "6711d386cd60fca157e59e82" + } + }, + { + "text": "Orgo 1 is a hard course that requires a lot of studying but he was generous with grade cutoffs a C started at a 63 and an A started at an 85. He gave one extra credit question on all of his tests. All his tests are 30 mc questions and if you do good on all 3 tests you don't have to take the final. If you do take the final he'll drop a grade.", + "pos": 0.135, + "neu": 0.82, + "neg": 0.044, + "_id": { + "$oid": "6711d386cd60fca157e59e83" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d386cd60fca157e59e85" + }, + "professor_name": "Niell Elvin", + "rating": 3.3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "1 question homeworks that he actually grades so theyre challenging questions. exams are really tough even though they were open book. you really should read the textbook for this class. he was a nice guy though. really wants students to know the material and be good engineers. i feel like hes more lenient in this class than for 246.", + "pos": 0.185, + "neu": 0.788, + "neg": 0.027, + "_id": { + "$oid": "6711d386cd60fca157e59e86" + } + }, + { + "text": "My main criticism is that he just reads off of his slides which makes it hard to learn. It was his 1st time teaching the class so I understand. The material is mainly ME330/246. There were only 2-3 new topics in the whole class. Still difficult because his exams combine concepts together in each problem and the questions are unlike what youve seen.", + "pos": 0.0, + "neu": 0.861, + "neg": 0.139, + "_id": { + "$oid": "6711d386cd60fca157e59e87" + } + }, + { + "text": "He really cares about his students. Anyone who thinks otherwise doesn't value hard work. I have taken him for other classes and don't mind failing. He literally asked the whole class how he should teach. He even asked if he should stop teaching and rather, review past material which we should have known", + "pos": 0.122, + "neu": 0.806, + "neg": 0.071, + "_id": { + "$oid": "6711d386cd60fca157e59e88" + } + }, + { + "text": "Dude does not make your life easy at all. Doesn't upload the slides, doesn't post solutions to homework's. Literally does nothing at all to help you besides lecture. Grades ridiculously hard. You're on your own with this guy.", + "pos": 0.128, + "neu": 0.751, + "neg": 0.121, + "_id": { + "$oid": "6711d386cd60fca157e59e89" + } + }, + { + "text": "If you want to LEARN, take this prof. Do not expect it to be easy. If you're an engineering major this class can seriously whip you into shape and teach you so much. Prof gives you everything you need, but it is up to YOU to use it and put in the work. Very no BS, clear guidelines from the beginning. He's accessible outside of class, so reach out!", + "pos": 0.064, + "neu": 0.83, + "neg": 0.106, + "_id": { + "$oid": "6711d386cd60fca157e59e8a" + } + }, + { + "text": "This is a prof that you will hate during the semester and love after. He grades tough during the semester everything, and desperation is inevitable. But if you study, listen, watch replays, you will get the material nicely. And in the end, you get a curved grade. Don't expect an A unless you are very good at the class. Read above, when desperate", + "pos": 0.143, + "neu": 0.744, + "neg": 0.114, + "_id": { + "$oid": "6711d386cd60fca157e59e8b" + } + }, + { + "text": "Do not take this prof. I am currently taking him and I am drenched in mental depression. He grades 100% of exams. His HW do not match the exam. if you truly want to learn without having a social life and spending hours watching videos on youtube take him. But if you want a normal life without worrying about failure AVOID HIM AT ALL COST.", + "pos": 0.142, + "neu": 0.774, + "neg": 0.083, + "_id": { + "$oid": "6711d386cd60fca157e59e8c" + } + }, + { + "text": "His brilliance is only surpassed by his ruthlessness. You will be pulling your hair out in this course, but will learn more from him than anyone else. Not for the thin-skinned for weak of heart. Work hard, study alot, dont be shocked when average exam scores come back around 40-50%", + "pos": 0.175, + "neu": 0.736, + "neg": 0.089, + "_id": { + "$oid": "6711d386cd60fca157e59e8d" + } + }, + { + "text": "He tries to make the students depressed unnecessarily. He teaches good, but he does not consider student's side. His quiz and exams are crazy hard which do not match with assigned hws. You have to study crazy hard if you want good grades.. He curves in the end, but before that he makes your mind to drop the class. Try to avoid him if you can.", + "pos": 0.09, + "neu": 0.698, + "neg": 0.212, + "_id": { + "$oid": "6711d386cd60fca157e59e8e" + } + }, + { + "text": "I regret taking his class. He is a really tough grader. Unreachable after class, Don't curve. He doesn't care if you are in the class or not. He will not look at the problem if your FBD is wrong. No partial credit. For an online class, he is a horrible professor. He refuses to upload the lecture video. Don't count quizzes through email.", + "pos": 0.0, + "neu": 0.725, + "neg": 0.275, + "_id": { + "$oid": "6711d386cd60fca157e59e8f" + } + }, + { + "text": "This professor is like a nightmare. You will suffer from his class. I regretted taking his class because he is a tough grader, doesn't care about you, and inaccessible outside class which makes the class harder as it is. He doesn't give partial credit. if the free body diagram is wrong, he isn't going to look at your solutions.", + "pos": 0.103, + "neu": 0.685, + "neg": 0.212, + "_id": { + "$oid": "6711d386cd60fca157e59e90" + } + }, + { + "text": "i am not ME major and this class is rlly hard for me. However, Elvin kinda makes my life easier bc his lecture is rlly good. Do all the HWs he posted and read the txtbks. I think you will be fine. One thing bad abt him is that he is not accessible outside class even though he put off hrs on syllabus.", + "pos": 0.107, + "neu": 0.824, + "neg": 0.07, + "_id": { + "$oid": "6711d386cd60fca157e59e91" + } + }, + { + "text": "Professor knows the class materials very well, but you have to watch a lot of online videos and do a lot of homeworks because he did not record the lecture due to the privacy of the students. In this class, you will take quiz once a week. Don't cheat in his quizzes and exams because he is very strict. He will fail you at the end of the semester", + "pos": 0.065, + "neu": 0.872, + "neg": 0.063, + "_id": { + "$oid": "6711d386cd60fca157e59e92" + } + }, + { + "text": "Don't take this professor. He is an excellent professor in terms of teaching but no cruel at grading. Gives you hw it counts nothing. quiz every week which are 10 times tougher than the hw and he doesn't care about you. In my class about 2/3 people failed and dropped it. The professor makes you depressed that you could never imagined of.", + "pos": 0.111, + "neu": 0.729, + "neg": 0.161, + "_id": { + "$oid": "6711d386cd60fca157e59e93" + } + }, + { + "text": "Professor Elvin is kind of like the Gordon Ramsay of the ME department. He will initially come off as very intense and kind of elitist, but he is an AMAZING professor and is immensely helpful in his office hours. I recommend taking at least one course with him, very challenging but you will feel proud of yourself. DON'T CHEAT HE WILL HUMILIATE YOU", + "pos": 0.308, + "neu": 0.624, + "neg": 0.068, + "_id": { + "$oid": "6711d386cd60fca157e59e94" + } + }, + { + "text": "I took him for ME 571, Mechanism Design. He is one of if not the best professor at the Grove School of Engineering. Lectures are interesting, and the class is taught well. He is a smart guy and dumb questions get dumb answers. I wish I had taken more classes with him.", + "pos": 0.157, + "neu": 0.691, + "neg": 0.153, + "_id": { + "$oid": "6711d386cd60fca157e59e95" + } + }, + { + "text": "be prepared to work work work work. he is tuff and will make you earn your grade. not the nicest in personality, always serious and makes you not want to visit his office hours. However, if you are not lazy you will learn a lot about your work habits and about the course because he will make you research the topic even if you don't want to.", + "pos": 0.056, + "neu": 0.855, + "neg": 0.089, + "_id": { + "$oid": "6711d386cd60fca157e59e96" + } + }, + { + "text": "He's ok at best at teaching. The main problem with this guy is his homeworks does not prepare you for his quizzes which he gives almost every week. The homework resembles the textbook problems but he keeps sneaking in something that wasn't in the homework into the quizzes. He's arrogant, rude, and a strict grader and latenessabsence. Avoid him!!!", + "pos": 0.058, + "neu": 0.723, + "neg": 0.218, + "_id": { + "$oid": "6711d386cd60fca157e59e97" + } + }, + { + "text": "I took statics with Prof. Elvin and it was tough. If you do not study on your own and UNDERSTAND the material he is teaching it is impossible to get an A. That is why I like him, he makes you to learn and understand the material. His speeches are clear even though he has an accent. Overall, great professor for those who are smart n like to workhard", + "pos": 0.183, + "neu": 0.798, + "neg": 0.019, + "_id": { + "$oid": "6711d386cd60fca157e59e98" + } + }, + { + "text": "Many intensive projects. You will learn a lot about yourself and about the material by taking Elvin. When I took him, it was his first time teaching 571. Made LEGO models to learn about mobility, pendulums, drawing shapes, etc. It's what ME 472 should've been. The FINAL was rough though - so much work w/ very limited time. Worthwhile, but HARD.", + "pos": 0.029, + "neu": 0.904, + "neg": 0.067, + "_id": { + "$oid": "6711d386cd60fca157e59e99" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d387cd60fca157e59e9b" + }, + "professor_name": "Kevin Ryan", + "rating": 3.3, + "department": "Chemistry department", + "comments": [ + { + "text": "I took this biochemistry class in Spring 2022, I hadn't taken a chemistry course since 2013. There's a lot of people rating Dr. Ryan as ridiculously difficult, and to be frank, they come off as lazy to me. Read the damn textbook and study the concepts in the chapters and what he covers in lecture. You'll be fine.", + "pos": 0.028, + "neu": 0.817, + "neg": 0.156, + "_id": { + "$oid": "6711d387cd60fca157e59e9c" + } + }, + { + "text": "AVOID at ALL costs, tests had NOTHING to do with the material in class, he tests on the smallest minor details you'd skip over when studying. He just reads off of the slides says the most \"important\" material is on them then gives tests on absolutely nothing we went over in class.", + "pos": 0.038, + "neu": 0.909, + "neg": 0.053, + "_id": { + "$oid": "6711d387cd60fca157e59e9d" + } + }, + { + "text": "Be pre to work, this class is tough I've seen harder, but Mr. Ryan makes it simple for the great explanation. this was a great class to test your knowledge and to challenge yourself. grading is very simple nothing hidden, just get good grades in exams and your good. this class had no HWs all about your understanding to the material go for him.", + "pos": 0.251, + "neu": 0.699, + "neg": 0.05, + "_id": { + "$oid": "6711d387cd60fca157e59e9e" + } + }, + { + "text": "Hes a huggable as a teddy bear! His course is so warm and cuddly. Absolutely the pinnacle of the college courses offered. He should teach others how to teach ;)", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59e9f" + } + }, + { + "text": "I love Prof. Ryan! I wish I could tell him that to his face (of course in platonic way) . You will read a lot of scientific papers (they're tough) but really helpful. You will then read a paper and present it to the class which is not too difficult. The class is well structured and prof. Ryan makes the class quite interesting. Take it if you can", + "pos": 0.226, + "neu": 0.758, + "neg": 0.016, + "_id": { + "$oid": "6711d387cd60fca157e59ea0" + } + }, + { + "text": "I highly recommend all Masters and prospective PhD students to take RNA Biochemistry with Prof. Ryan. This professor is unlike others as he will make you think and prepare you for success. By far the best class with the best professor.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59ea1" + } + }, + { + "text": "He is very organized and gives fair exams that cover all the topics. Best way to study is to print his slides and read them alongside the textbook. Everything is from there. You will be so well prepared, there is no way you will score below a 90. He grades the exams fairly and also curves. Do good on the first 3 so you can skip taking the final.", + "pos": 0.18, + "neu": 0.792, + "neg": 0.028, + "_id": { + "$oid": "6711d387cd60fca157e59ea2" + } + }, + { + "text": "look out for snapple branded water and a plastic cup read the slidess and supplement with textbook readings. the textbook problems align very well with what he asks on the exam. he curves some exams based on class performance, but not the final grade. no need to go to class split a model kit with 2 ppl cuz u only need 1 model per exam. saves $$", + "pos": 0.024, + "neu": 0.91, + "neg": 0.066, + "_id": { + "$oid": "6711d387cd60fca157e59ea3" + } + }, + { + "text": "Awesome professor! He makes math simple even when its not. Make sure you do all of your modules b/c that will really save you when you are doing bad on the tests! Practice exams is a must b/c his tests are based from the practice exams! 1 cheat sheet on a 3x5 card(put as much formulas as you can). And he drops your lowest grade.", + "pos": 0.097, + "neu": 0.751, + "neg": 0.152, + "_id": { + "$oid": "6711d387cd60fca157e59ea4" + } + }, + { + "text": "Prof. Ryan is straightforward with his powerpoint slides. Practice the hw problems and you'll do fine.", + "pos": 0.097, + "neu": 0.757, + "neg": 0.146, + "_id": { + "$oid": "6711d387cd60fca157e59ea5" + } + }, + { + "text": "Dr. Ryan is an excellent option for \"RNA Biochemistry\". With the proper background, this class will prove to be extremely rewarding. Great Guy. Since nearly everyone in the class has an excellent biology and chemistry foundation (all MS students), the curve generally is very low. Dr. Ryan will adjust accordingly though. Phenomenal advisor too.", + "pos": 0.231, + "neu": 0.733, + "neg": 0.036, + "_id": { + "$oid": "6711d387cd60fca157e59ea6" + } + }, + { + "text": "You can definitely skip all classes and just study from the book and slides very well. Make sure to show up for the review before exams. The tests aren't hard at all, but each question is worth a lot. There are 20 multiple choice questions and each exam is worth 33.33%.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59ea7" + } + }, + { + "text": "Professor Ryan is a nice dude. My only complain is that tests are only 20 questions, worth 5 points each. He gives three tests, worth 33.33% each. Be ready to read. Class is very simple tho.", + "pos": 0.214, + "neu": 0.728, + "neg": 0.059, + "_id": { + "$oid": "6711d387cd60fca157e59ea8" + } + }, + { + "text": "3 exams (including final) each are worth 32%. Read the book and study the slides. He's easy if you read the book.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59ea9" + } + }, + { + "text": "Orgo is a hard subject, so expect to study hard - no matter who you have as your professor. He is articulate and clear in his lectures - when you can hear him. He doesn't use a microphone, so make sure to sit close. His lectures are pretty boring. Three exams and a final. Worst exam is dropped, other two are worth 35%. Final is worth 30%.", + "pos": 0.153, + "neu": 0.717, + "neg": 0.129, + "_id": { + "$oid": "6711d387cd60fca157e59eaa" + } + }, + { + "text": "This professor is one of the best! an A is definitely manageable. You just have to work for your grade! Goes over each chapter and some problems. He may be boring, but whatever he says, in the book. Study on your own. Easy 20 Question Exams with MC and Short Answer. He drops one and curved for one exam cause everyone did bad", + "pos": 0.12, + "neu": 0.769, + "neg": 0.111, + "_id": { + "$oid": "6711d387cd60fca157e59eab" + } + }, + { + "text": "this proffesor is boring. his lectures are useless. his exams are hard. he doesnot give homework. you have to read the book and the entire chapter. hard grade. save yourself from an F. run", + "pos": 0.08, + "neu": 0.723, + "neg": 0.197, + "_id": { + "$oid": "6711d387cd60fca157e59eac" + } + }, + { + "text": "This guy is very tough.One of the toughest orgo professors in city college. Only way to get through him is study continuously. Very comprehensive in his exams. Won't really learn much from his lectures since he is very monotonous and hard to follow in class..Take him if you are prepared to work very hard", + "pos": 0.072, + "neu": 0.847, + "neg": 0.08, + "_id": { + "$oid": "6711d387cd60fca157e59ead" + } + }, + { + "text": "He is allright. Orgo it is hard, but his tests are reasonable and grading is fair - no complaints.", + "pos": 0.253, + "neu": 0.695, + "neg": 0.052, + "_id": { + "$oid": "6711d387cd60fca157e59eae" + } + }, + { + "text": "Attendance isn't mandatory, just read the book. He goes over slides with the material thats already in the textbook. Lecture isn't helpful. Exams are partial multiple choice and partial short answer. Exam are very straight to the point, no tricky questions. In regards to his teaching skills booorrinnngg. good luck staying awake!", + "pos": 0.166, + "neu": 0.775, + "neg": 0.06, + "_id": { + "$oid": "6711d387cd60fca157e59eaf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d387cd60fca157e59eb1" + }, + "professor_name": "Guatam Chinta", + "rating": 3.1, + "department": "Mathematics department", + "comments": [ + { + "text": "The professor is nonchalant but can be blunt makes mistakes but corrects them. Homework is worth 10% and varies weekly. There are 3 exams, each worth 30%. He reviews exam topics in the class before and may post mock questions.\n\nOverall, a test-heavy class, so don't miss lectures. There isn't much partial credit on exams. Use Teams to ask questions.", + "pos": 0.096, + "neu": 0.766, + "neg": 0.138, + "_id": { + "$oid": "6711d387cd60fca157e59eb2" + } + }, + { + "text": "This was my last math class and it definitely tested me on everything I learned in my earlier classes like calculus and probability. Professor was laid back and chill. I appreciated the python programs he showed us in class. Overall, I'd take this professor again, but I never have to take math again!", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59eb3" + } + }, + { + "text": "One of the best professors I've had! Advanced Calculus is a tough class but the lectures were really good and he answers all the questions clearly. Would definitely take him again@!", + "pos": 0.38, + "neu": 0.591, + "neg": 0.03, + "_id": { + "$oid": "6711d387cd60fca157e59eb4" + } + }, + { + "text": "Quite possible the single worst math professor at CCNY. He never knows what to teach, has the most horrendous handwriting, and is an overall stingy, self absorbed twat. He will report suspected academic violations based on no evidence whatsoever. A truly delusional individual who should be avoided at all costs!", + "pos": 0.042, + "neu": 0.592, + "neg": 0.366, + "_id": { + "$oid": "6711d387cd60fca157e59eb5" + } + }, + { + "text": "My favorite (and hopefully last) pandemic-era class! He jumps around to different topics (counting, induction, graphs) but that helps keep anything from getting too deep.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59eb6" + } + }, + { + "text": "Professor gave very clear notes and lectures. It was online, so that was tough on everyone, but it was still kind of fun. He made the tests a lot like the homeowrk and practice exams. Just keep up with those and you'll sail through!", + "pos": 0.187, + "neu": 0.786, + "neg": 0.027, + "_id": { + "$oid": "6711d387cd60fca157e59eb7" + } + }, + { + "text": "He was really clear but the tests were hard. On the positive side the group final was easy by comparison at end of semester.", + "pos": 0.331, + "neu": 0.619, + "neg": 0.05, + "_id": { + "$oid": "6711d387cd60fca157e59eb8" + } + }, + { + "text": "Chinta is horrible at teaching. He might as well continue with his researc, because this is the type of person that ruins peoples College careers. Just all around sloppy and looks down on people. I would avoid him like the plague.", + "pos": 0.093, + "neu": 0.732, + "neg": 0.175, + "_id": { + "$oid": "6711d387cd60fca157e59eb9" + } + }, + { + "text": "I found the class easy. Professor does a real good job explaining and preparing you for exam.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59eba" + } + }, + { + "text": "Professor is fair and reasonable. Calculus is difficult, any math is difficult for me and unless you are great in math and put a lot of time into it you probably won't do well in this class. Teaching style is pretty straight forward as are his quizzes and tests.4 quizzes, drops lowest, midterm and final are only grades so there's little opportunity", + "pos": 0.186, + "neu": 0.691, + "neg": 0.123, + "_id": { + "$oid": "6711d387cd60fca157e59ebb" + } + }, + { + "text": "Professor sucked at explaining calculus, only made it more complicated. Better off teaching yourself because he cannot teach. One of the worst professors I've encountered. If you don't know calculus beforehand, its going to be tough.", + "pos": 0.073, + "neu": 0.731, + "neg": 0.196, + "_id": { + "$oid": "6711d387cd60fca157e59ebc" + } + }, + { + "text": "If you are comfortable with Calculus before taking this course, then you should be fine. However, if you struggle in Calculus, you will not learn from Chinta since he expects you to know the material. He does the problem and moves on to the next. 1 midterm 30% 1 Final 40% 4 quizzes 10% each (drops the lowest one).", + "pos": 0.076, + "neu": 0.81, + "neg": 0.114, + "_id": { + "$oid": "6711d387cd60fca157e59ebd" + } + }, + { + "text": "He is a good professor, but he has room for improvement.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59ebe" + } + }, + { + "text": "He doea not teach well. He just do the math by himself in the board! Test and quizzes are easy. if you take him, you have to understand math by yourself!", + "pos": 0.102, + "neu": 0.846, + "neg": 0.053, + "_id": { + "$oid": "6711d387cd60fca157e59ebf" + } + }, + { + "text": "He's intelligent, but he's just not good at explaining. When he does a problem on the board, he skips so many steps and that makes 3/4 of the class confused. You are better off studying on your own, watching videos, teaching yourself, and practicing problems on your own. The only thing I like is that he tells you what is going to be on the exam.", + "pos": 0.112, + "neu": 0.726, + "neg": 0.162, + "_id": { + "$oid": "6711d387cd60fca157e59ec0" + } + }, + { + "text": "Horrible professor. He turns something so simple into something so complicated!", + "pos": 0.0, + "neu": 0.725, + "neg": 0.275, + "_id": { + "$oid": "6711d387cd60fca157e59ec1" + } + }, + { + "text": "The course material was straightfoward but his teaching style is dull...", + "pos": 0.0, + "neu": 0.738, + "neg": 0.262, + "_id": { + "$oid": "6711d387cd60fca157e59ec2" + } + }, + { + "text": "Only way you'll pass is if you study by yourself.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59ec3" + } + }, + { + "text": "Save your money.", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d387cd60fca157e59ec4" + } + }, + { + "text": "The guy is smart,but his teaching style is not good. I mostly learned everything on my own. He gives out 2 exams which are 40% and 1 exam which is 20%. I would avoid him if you require calculus for your curriculm. There are Porfessors that are far better at what they do and are more engaged than him.", + "pos": 0.09, + "neu": 0.84, + "neg": 0.07, + "_id": { + "$oid": "6711d387cd60fca157e59ec5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d388cd60fca157e59ec7" + }, + "professor_name": "David Crismond", + "rating": 2.2, + "department": "Education department", + "comments": [ + { + "text": "Had him for during Fall 2022. He was a very nice person but was a little disorganized. There were weekly homeworks consisting of readings and journal entries that aren't graded too harshly. You'll work with a team on a semester-long project related to engineering design principles. You might also have to commit out-of-class hours for projects.", + "pos": 0.08, + "neu": 0.88, + "neg": 0.039, + "_id": { + "$oid": "6711d388cd60fca157e59ec8" + } + }, + { + "text": "Avoid this professor if you are a full time student or have a job. This professor will give you tons, TONS of homework, discussing board and papers EVERY week. Also he gives a lots of PROJECTS, and his fieldwork is super hard. He's feedback are longer than your papers. Be aware that you will have to re-write every paper, including your last one.", + "pos": 0.058, + "neu": 0.889, + "neg": 0.053, + "_id": { + "$oid": "6711d388cd60fca157e59ec9" + } + }, + { + "text": "Doesn't understand the workload he puts his students under. Took a summer class and there were 24 assignments and a 10-page paper due in 4 weeks. Our class had an intervention on the amount of work he gave and he dropped 1 assignment. Not sure what grading standard he uses-- you could go over the word count and he'd still say \"could've used more\"", + "pos": 0.0, + "neu": 0.97, + "neg": 0.03, + "_id": { + "$oid": "6711d388cd60fca157e59eca" + } + }, + { + "text": "BEWARE!! If you are taking this class in the summer say good bye to ALL your plans. This is an overwhelming course so much homework was assigned I had to eventually give up and just focus on the Final Project & Fieldwork which is overwhelming. He's available outside of class and gives feedback.", + "pos": 0.063, + "neu": 0.937, + "neg": 0.0, + "_id": { + "$oid": "6711d388cd60fca157e59ecb" + } + }, + { + "text": "Professor Crismond is a very pleasant professor. He truly cares about teaching and for his students to retain information that is relevant to them. Some of his teachings are just a bit outdated, and you have about 2-3 homework assignments each week, but he's honestly not bad. Getting an A very possible. He's a very kind soul.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d388cd60fca157e59ecc" + } + }, + { + "text": "A horrible professor, so unorganized on explaining and giving instructions on how to do his assignments. He doesn't allow students to have creativity and ideas on the assignments. Also, for every class he make you read 3 articles, all you are going to see is homework in his lectures and he wants the assignments at day before class. Don't take him.", + "pos": 0.074, + "neu": 0.849, + "neg": 0.077, + "_id": { + "$oid": "6711d388cd60fca157e59ecd" + } + }, + { + "text": "Would definitely not take this class again!! Too much homework, at least 4 each week. For each homework, you need to at least dedicate a good thirty minutes, which is a lot considering if you are working, a full-time student, and a parent. Changes the syllabus throughout the semester! I do not recommend him at all!", + "pos": 0.109, + "neu": 0.857, + "neg": 0.034, + "_id": { + "$oid": "6711d388cd60fca157e59ece" + } + }, + { + "text": "This man is nice but a terror. His work is overload, especially for those in other classes/student teaching/working/parenting or any and all of these. The readings are dense and need to be switched up. There are so many minuscule assignments. Feedback is more critical than constructive. Asks for answers that are difficult to produce. Try to avoid.", + "pos": 0.027, + "neu": 0.727, + "neg": 0.246, + "_id": { + "$oid": "6711d388cd60fca157e59ecf" + } + }, + { + "text": "Not a good Professor. Started the semester in august and didnt receive our grades until December, the week before the semester ended and only because students complained. Would not recommend this section. I only took the class because it was a last minute thing.", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d388cd60fca157e59ed0" + } + }, + { + "text": "This class was A LOT of work. I spent so much time navigating the logistics of the course & assignments. He changed the syllabus regularly, which was a bit confusing, but he was trying to help. It's tough 100%, but the content is very useful. This class is great if you want to learn a lot about the science of teaching AND the teaching of science.", + "pos": 0.191, + "neu": 0.768, + "neg": 0.041, + "_id": { + "$oid": "6711d388cd60fca157e59ed1" + } + }, + { + "text": "This course I never want to recall again. Too many homework, 4-5 a week. In the last week, it took overnight to complete assignments.", + "pos": 0.0, + "neu": 0.95, + "neg": 0.05, + "_id": { + "$oid": "6711d388cd60fca157e59ed2" + } + }, + { + "text": "Terrible. I can't believe he taught elementary school, I bet he made all the kids cry. Ridiculous workload", + "pos": 0.0, + "neu": 0.633, + "neg": 0.367, + "_id": { + "$oid": "6711d388cd60fca157e59ed3" + } + }, + { + "text": "Changes the syllabus many times. Misunderstand your questions, answers something else. Admire his passion for science but it gets overwhelming with the number of assignments he makes you do. The final project felt like a boulder being thrown at me as it was so much to do in a span of less than a week. Called you out if your camera is off.", + "pos": 0.128, + "neu": 0.847, + "neg": 0.026, + "_id": { + "$oid": "6711d388cd60fca157e59ed4" + } + }, + { + "text": "The first day of class, he seemed like a nice and reasonable person but he gets bad throughout the weeks. He changes things so many times as many people below said. Don't do it", + "pos": 0.093, + "neu": 0.787, + "neg": 0.121, + "_id": { + "$oid": "6711d388cd60fca157e59ed5" + } + }, + { + "text": "If you care about your mental well being, dont do it. Gives a ridiculous amount of homework and clearly doesnt care about students. He changes the syllabus soooooo many times. He cant make up his mind", + "pos": 0.181, + "neu": 0.703, + "neg": 0.116, + "_id": { + "$oid": "6711d388cd60fca157e59ed6" + } + }, + { + "text": "The absolutely worst education professor at City College. He wants you to love science but makes you hate it. He is indirect when you asks questions or often doesnt even answer your questions at all. Changed the syllabus countless times. Do yourself a favor and dont take him", + "pos": 0.106, + "neu": 0.76, + "neg": 0.134, + "_id": { + "$oid": "6711d388cd60fca157e59ed7" + } + }, + { + "text": "summer class only have 4weeks, he changes the syllabus every week. Every week have many assessments and the instructions is not clear at all! Dont take him!", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d388cd60fca157e59ed8" + } + }, + { + "text": "Not good at all, cannot say more.", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d388cd60fca157e59ed9" + } + }, + { + "text": "He gives too much work (2-4 assignments per week), he can't keep up with grading, changed the syllabus literally each week which makes it hard to keep up with what's due. His assignments are worth 1-2 points all semester long and then he hits you with a brutal final project that determines your grade. Super stressful class!!", + "pos": 0.086, + "neu": 0.774, + "neg": 0.14, + "_id": { + "$oid": "6711d388cd60fca157e59eda" + } + }, + { + "text": "Heavy workload (sometimes fails to consider realistic limitations - but responsive to student FB), many last-min changes to syllabi (& V wordy instructions), very accessible (gives out personal cell #), very insistent on science literacy (not a bad thing, TBH). I rec having an ongoing email correspondence - good commssuper helpful. lots of HWK.!", + "pos": 0.226, + "neu": 0.745, + "neg": 0.029, + "_id": { + "$oid": "6711d388cd60fca157e59edb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d388cd60fca157e59edd" + }, + "professor_name": "Ping-Pei Ho", + "rating": 2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He was assigning 30-40 pages for a lab that can be done in 5 or 6 pages. Gave automatic C's without checking the content of lab because they weren't 40 pages long. He asked for 4 hours long videos plus the reports when class went virtual and half the class dropped", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d388cd60fca157e59ede" + } + }, + { + "text": "He does not provide any instructions for lab experiments and you are pretty much on your own to do your experiments without ANY demonstration by instructor. OH! He also wants students to write at least 30 to 40 page lab report!", + "pos": 0.086, + "neu": 0.885, + "neg": 0.029, + "_id": { + "$oid": "6711d388cd60fca157e59edf" + } + }, + { + "text": "He wants you to write 50 page report and he doesnt teach anything and tells you to learn it yourself", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d388cd60fca157e59ee0" + } + }, + { + "text": "This professor looks for reasons to fail students. This course is a 1 credit course and he does not teach anything or help. When asked a question he said he doesn't know and that to read the book. He will look for any reason to take off points from your lab reports which is 90% of your grade and doesn't tell you what he wants in them either.", + "pos": 0.072, + "neu": 0.881, + "neg": 0.047, + "_id": { + "$oid": "6711d388cd60fca157e59ee1" + } + }, + { + "text": "This class was a nightmare. Spent way too much time on this class and couldn't focus on my other classes. I don't think he realizes that he is not the only class we take. He gives a lot of hw that take hrs to do and grades them harshly. He also gave a pop quiz every day, sometimes on material he just taught. Take this class if you want to lower GPA", + "pos": 0.018, + "neu": 0.952, + "neg": 0.03, + "_id": { + "$oid": "6711d388cd60fca157e59ee2" + } + }, + { + "text": "I went to ask about a part in the lab that I did not understand. The professor responded with, \"I can't help you. Go look online.\" There I knew this class needs to be dropped and try a different professor.", + "pos": 0.0, + "neu": 0.945, + "neg": 0.055, + "_id": { + "$oid": "6711d388cd60fca157e59ee3" + } + }, + { + "text": "His h.w are incredibly long and he takes points off for everything (have to include where in the textbook you found equation and do a sketch diagram for every question). when you answer questions for his oral exam he doesn't give you any feedback just a grade. incredibly hard class. the only good part is that it's an open book test. Do Not Take.", + "pos": 0.044, + "neu": 0.931, + "neg": 0.025, + "_id": { + "$oid": "6711d388cd60fca157e59ee4" + } + }, + { + "text": "Super Hard grader. The pop quizzes are worth most of your final grade. At least telling students about the quizzes even one day beforehand will help. There was a pandemic going on, and I felt like the guidelines were so harsh considering the state of mind so many people were in. He doesn't think about the students and doesnt grade fairly. UGHHHH", + "pos": 0.152, + "neu": 0.776, + "neg": 0.071, + "_id": { + "$oid": "6711d388cd60fca157e59ee5" + } + }, + { + "text": "1. 20+ pages per elementary report, any less than that forget about getting above 80 and that's if he doesn't take off 20 points for nth like he always does. 2. Impolite, no professional attitude. 3. the most useless prof ( not sure why he is called so ) in the whole school ( so far ) 4. this dude needs to chill, it's only 1credit. AVOID and REPORT", + "pos": 0.032, + "neu": 0.786, + "neg": 0.183, + "_id": { + "$oid": "6711d388cd60fca157e59ee6" + } + }, + { + "text": "Worst Professor I have ever had. For 1 credit lab, he makes you write 20+ lab reports or else you would pass an 80. Finds anyway to subtract points, gave me a 65 on a 50 page lab report , that took 7+ hours to write. Avoid him at all costs for any class", + "pos": 0.043, + "neu": 0.851, + "neg": 0.105, + "_id": { + "$oid": "6711d388cd60fca157e59ee7" + } + }, + { + "text": "Hes a good professor, he doesnt mess around but if you tell him you're struggling he can help you. I showed this class the least amount of attention and showed up to class and the final was moderate", + "pos": 0.158, + "neu": 0.76, + "neg": 0.083, + "_id": { + "$oid": "6711d388cd60fca157e59ee8" + } + }, + { + "text": "Idk how you do bad in this class. He literally puts how to write a lab report the first day. Do it his way. I did it,easily got to 20-30 pages. A lot of it can be just data from class, pictures,graphs. Show your report before handing it in to see if good. If you need help in lab just ask. Straight forward labs, just don't rush reading instructions", + "pos": 0.098, + "neu": 0.838, + "neg": 0.064, + "_id": { + "$oid": "6711d388cd60fca157e59ee9" + } + }, + { + "text": "The experiments are quite interesting and I enjoyed working on them. However, if you encounter some sort of issue, Prof Ho will be of ZERO help to you. I dont think he spoke more than three times the entire semester. Youll have fun working on his required 50 page lab reports - any less and he wont even consider giving you a grade above 80.", + "pos": 0.165, + "neu": 0.807, + "neg": 0.027, + "_id": { + "$oid": "6711d388cd60fca157e59eea" + } + }, + { + "text": "All the stories about him are true as this was my most traumatic academic experience. I literally had to study every day, especially when he might spring a pop quiz on us. Lectures were hard to follow, since he went too fast when using powerpoint slides. His english is incomprehensible at times (achume?). Shockingly helpful during his office hours.", + "pos": 0.084, + "neu": 0.81, + "neg": 0.106, + "_id": { + "$oid": "6711d388cd60fca157e59eeb" + } + }, + { + "text": "Well, this is the hardest course I ever took. The materials are not easy to absorb and Prof. Ho is tough grader as well (6069D,7079C, no curve ). As long as you show him you understand the material, he will forgive you. He want the students to ask questions and he is willing to help. 2.42,Maxwell,wave(chapter 7) will be 40% of the total grade.", + "pos": 0.142, + "neu": 0.773, + "neg": 0.084, + "_id": { + "$oid": "6711d388cd60fca157e59eec" + } + }, + { + "text": "This guy is the worst guy you can take for 330, he doesn't care about, and he thinks u're only taking 3 credits per semester because you have to constantly study for his pop quizzes. Avoid it at all cost. When I took this class he gave us the pop quizz in the second of class .... like seriously ? u have not time to warm up with him", + "pos": 0.063, + "neu": 0.782, + "neg": 0.155, + "_id": { + "$oid": "6711d388cd60fca157e59eed" + } + }, + { + "text": "His English is beyond broken, so lectures are totally useless. Overemphasizes pop quizzes (50% of your grade!) and I feel he enjoys to hand out extremely low grades. His grading criteria is based on fluff - he wont be able to explain to you why he took off x points on a HW. Overall a truly awful experience and you will suffer all semester long.", + "pos": 0.115, + "neu": 0.697, + "neg": 0.188, + "_id": { + "$oid": "6711d388cd60fca157e59eee" + } + }, + { + "text": "One of the hardest classes/prof in the EE cirriculum. You constantly need to study to prepare for a potential pop quiz (he once gave a quiz on the 2nd day of class). You must have old material in order to stand a chance. Teaches mainly via powerpoint slides, and therefore goes too fast. HW is worth only 10%, he takes off points based on \"effort\"", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d388cd60fca157e59eef" + } + }, + { + "text": "Worst Professor I have ever had. I got an A- in his class but had to study every single day. After taking final, I couldn't sleep for 4 days until I received my grade because the final was so incredibly hard. Everyone came out of the final traumatized. Unfortunately, CCNY makes this course very hard to pass no matter which professor you take.", + "pos": 0.0, + "neu": 0.794, + "neg": 0.206, + "_id": { + "$oid": "6711d388cd60fca157e59ef0" + } + }, + { + "text": "He doesn't use much words, leave the thinking to students to ask questions. quizzes and hws r pretty straight forward. Final is hard. Notes help but just to get brief idea. Requires large amount of time to do well in this class.", + "pos": 0.154, + "neu": 0.796, + "neg": 0.051, + "_id": { + "$oid": "6711d388cd60fca157e59ef1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d389cd60fca157e59ef3" + }, + "professor_name": "Robert Rockwell", + "rating": 3.8, + "department": "Biology department", + "comments": [ + { + "text": "Gives unreasonable amount of homework and assignments, grades them harshly, strict timelines that expect you to do PhD level work, grades harshly, exam had so many questions in an unreasonable amount of time. Fails more than half the class and does not care", + "pos": 0.0, + "neu": 0.883, + "neg": 0.117, + "_id": { + "$oid": "6711d389cd60fca157e59ef4" + } + }, + { + "text": "This class was not fair, he does not tell you what he wants on the assignments and grades them harshly. Exam had questions that were never taught and doesnt even make sense. Class average was in the 50s to 60s and he said that was good. No curves. Im glad I passed", + "pos": 0.102, + "neu": 0.827, + "neg": 0.072, + "_id": { + "$oid": "6711d389cd60fca157e59ef5" + } + }, + { + "text": "Professor Rockwell is tough on students. This is a bio class but his exams include maths that are harder than calc2 questions. Exams had a bunch of errors, he said hell correct them but then never did.", + "pos": 0.0, + "neu": 0.76, + "neg": 0.24, + "_id": { + "$oid": "6711d389cd60fca157e59ef6" + } + }, + { + "text": "Professor Rockwell is hard on the class for no reason. His exams are nightmares with terrible wording and there is no resource to prepare you for them. lectures cover an unreasonable amount of material that will destroy you", + "pos": 0.0, + "neu": 0.727, + "neg": 0.273, + "_id": { + "$oid": "6711d389cd60fca157e59ef7" + } + }, + { + "text": "Worst prof ever. He goes on a tangent every class and does not cover the material for the exam, gives tremendous amount of questions in a short period of time. Also speaks at the speed of light and blames you for doing bad. Get ready to read over 40 pages a week just to fail the exam. Exam is harder than diamond.", + "pos": 0.066, + "neu": 0.75, + "neg": 0.185, + "_id": { + "$oid": "6711d389cd60fca157e59ef8" + } + }, + { + "text": "I originally wanted to take this class to help maintain my 4.0 GPA but NO. This guy is ridiculous for a biology elective, I would never have taken this class if I knew how hard his exam and assignments were, and to make it worse he grades them harshly. Class average was horrendous and he did not care. AVOID him, I would rather have Firooznia.", + "pos": 0.062, + "neu": 0.719, + "neg": 0.219, + "_id": { + "$oid": "6711d389cd60fca157e59ef9" + } + }, + { + "text": "The amount of assignments Prof. Robert Rockwell gives is horrendous and very time consuming, and he grades them extremely harsh. Get ready to spend hours reading and end up with a bad grade. The exam will make you rip your hair off your scalp. Im having a better time in Orgo 2 than his conservation bio class.", + "pos": 0.083, + "neu": 0.763, + "neg": 0.154, + "_id": { + "$oid": "6711d389cd60fca157e59efa" + } + }, + { + "text": "dont do it ridiculous hard", + "pos": 0.324, + "neu": 0.461, + "neg": 0.215, + "_id": { + "$oid": "6711d389cd60fca157e59efb" + } + }, + { + "text": "He's a great professor and very knowledgeable. just show up and talk about articles related to conservation. do well on exam (it's pretty easy as long you pay attention) and do your presentation. Don't have to show up to every class, just know when you're presenting and the exam date.", + "pos": 0.21, + "neu": 0.767, + "neg": 0.024, + "_id": { + "$oid": "6711d389cd60fca157e59efc" + } + }, + { + "text": "He is a great professor with a unique way of teaching. Just attend all the lectures, study for the exam, do the presentation, and you will get a good grade.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59efd" + } + }, + { + "text": "Dr. Rockwell is great, his teaching style is unique and useful for helping retain material. I wish other professors used his method of teaching. Hilarious guy and not afraid to express his opinion. Grade is based on a midterm and project (debate). Would definitely take again", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59efe" + } + }, + { + "text": "The BEST Prof. at CCNY who has very unique and unusual teaching method. Great sense of humor. Honest and knows how to make his class very interesting. I think he should teach to other prof.s about how to teach at CCNY. In his class, you learn how to think outside the box and apply all your knowledge in real life problems. Highly recommended.", + "pos": 0.25, + "neu": 0.716, + "neg": 0.035, + "_id": { + "$oid": "6711d389cd60fca157e59eff" + } + }, + { + "text": "He is amazing. Very easy and smooth bio elective class taking at the museum. Take him if u can. just one final and a presentation!!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f00" + } + }, + { + "text": "best of the best. enough said. He should take over CCNY. Not only is he probably the fairest professor at CCNY, but you can actually have a conversation with him. He is super approachable and always welcoming (nonexistent among ccny faculty and staff).", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f01" + } + }, + { + "text": "He is simply amazing, he's not your traditional-type of professor. very lenient and loves having conversations in classes & cracking up jokes. Easy-going, and the list goes on. Any class with him is an easy A.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f02" + } + }, + { + "text": "Dr. Rockwell is amazing. Took him for advanced ecology and conservation biology. Very lenient grader. 40% is your exam and the other %60 is a presentation. Just be very passionate about your species that you are presenting on.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f03" + } + }, + { + "text": "Rocky is amazing!! Easy going class. Show up (if you'd like to), talk current events and politics. Ask questions! Presentation is a breeze (just seem passionate about your species) and a 5 pg (or less) paper about it. Only one exam, which was the final! And let me tell you, that was the easiest Bio exam I have ever taken at CCNY.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f04" + } + }, + { + "text": "Best Professor ever!Just come to class with current events relative to the class, and listen to his lecture. Had one presentation based an endangered species, a paper based on the presentation, and final exam for which you don't need to study from the textbook. I wish he thought bio101 when I took it 3years back.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f05" + } + }, + { + "text": "This professor is one of the best professors for bio at ccny his exams were multiple choice as stated below and he is approachable and extremely helpful with any material you might not understand. He also gives you the best analogies to use to remember the material. I am seriously grateful I had this professor and as long as READ youll be all right", + "pos": 0.193, + "neu": 0.785, + "neg": 0.023, + "_id": { + "$oid": "6711d389cd60fca157e59f06" + } + }, + { + "text": "Professor is awesome!!! Class is bascially a self-learning class. If you come to class and listen to the lectures, he goes through them quickly and expects everyone to know the basic info. 3 exams with 50 multiple choice on each one. IF you read the book, you'll do fine.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f07" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d389cd60fca157e59f09" + }, + "professor_name": "Kenneth Sobel", + "rating": 3.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "I don't understand the low ratings. He is a fine professor. The only issue is that he can't speak loudly, so it's suggested that one ask him to clarify a concept at the end of the class or his office hours. The exam questions are not excruciatingly long. They are short but tricky. They require a proper understanding of the concepts. Good for EE.", + "pos": 0.125, + "neu": 0.847, + "neg": 0.027, + "_id": { + "$oid": "6711d389cd60fca157e59f0a" + } + }, + { + "text": "So old and will not grade fairly even if all the work is correct you will get B maximum", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f0b" + } + }, + { + "text": "I thought this class was going to be easy due to my HW average being a 90 and a score of a 94 on my midterm exam, but on the final, it was extremely difficult and I failed, no matter how much I studied, even at the top maximum ability, I still cannot believe I failed the final but passed the midterm exam and HW.", + "pos": 0.137, + "neu": 0.745, + "neg": 0.119, + "_id": { + "$oid": "6711d389cd60fca157e59f0c" + } + }, + { + "text": "7 Assignments worth 10% of grade. Midterm and final each worth 45%. Very few questions on each exam so you really need to aim for a perfect score on each if you want an A in the class. Nice guy, no curve, voice is veryyyy low and hard to hear over zoom.", + "pos": 0.189, + "neu": 0.718, + "neg": 0.093, + "_id": { + "$oid": "6711d389cd60fca157e59f0d" + } + }, + { + "text": "Excellent professor, the only class this semester I enjoyed. Just make sure you don't miss any of his class because you will fall behind. His notes are the key to get a A in his class, so make sure your never late to his class because sometime he write too fast and erase very important notes on the board to write more. Also no cheat sheet in exam.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f0e" + } + }, + { + "text": "Straightforward course expectations, no real curveballs on exams. The problems are a bit tedious and he isn't very forgiving of calculation errors, but no one can say he isn't fair.", + "pos": 0.0, + "neu": 0.663, + "neg": 0.337, + "_id": { + "$oid": "6711d389cd60fca157e59f0f" + } + }, + { + "text": "If you're even 5 min late, the board is already full and he's already erasing. Writes microscopically, is very organized, speaks really softly. Don't try to take pictures of the board, he'll stop the class and tell you to put the phone down. DO THE HW and get past exams and practice. 5-6 pgs of notes per class. Show all of your work. DON'T SLIP UP!", + "pos": 0.0, + "neu": 0.963, + "neg": 0.037, + "_id": { + "$oid": "6711d389cd60fca157e59f10" + } + }, + { + "text": "One of the best professors in EE", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f11" + } + }, + { + "text": "Best professor in my opinion. Very clear grading policy, 25% for four exams, the final also 25% however is cumulative in a sense. Just study the in class examples, study the homework (which arent graded), and do practice problems in the book to ace every test. He will try to put some tricky problems, KNOW everything. Talks low, and can be funny.", + "pos": 0.135, + "neu": 0.742, + "neg": 0.123, + "_id": { + "$oid": "6711d389cd60fca157e59f12" + } + }, + { + "text": "Sit at the very front as he speaks very low and writes very small. Understand the first 2 chapters very clearly as it is the basis for everything else. His notes are clear but the textbook offers more detail. Speeds through lectures very quickly so it is difficult to follow. Exam problems often have a twist so be familiar with different approaches.", + "pos": 0.054, + "neu": 0.818, + "neg": 0.128, + "_id": { + "$oid": "6711d389cd60fca157e59f13" + } + }, + { + "text": "This teacher is the epitome of stupidity at best. He can't lecture properly because he mumbles all the time. He doesn't give mandatory hw which would help the class but the biggest issue was his grading policy. He grades harshly and the fact that he regurgitates all his notes from the textbook and the lack of interest makes him a bad professor.", + "pos": 0.114, + "neu": 0.741, + "neg": 0.145, + "_id": { + "$oid": "6711d389cd60fca157e59f14" + } + }, + { + "text": "easy course if you have fundamental knowledge. take attendance , speaking quiet , should sit at front of the room, take notes in whole class, suggest hw but not mandatory. All in all, the course is easy.", + "pos": 0.141, + "neu": 0.827, + "neg": 0.032, + "_id": { + "$oid": "6711d389cd60fca157e59f15" + } + }, + { + "text": "Takes attendance every class and writes very quickly on the black board so be prepared to have multiple pages of notes every lecture. He is very soft spoken and monotonic, review the hw and in class examples to pass.", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f16" + } + }, + { + "text": "Monotone, soft spoken and writes very small on the board, so sit at the front. Expect to take a LOT of notes during each class session. Homework is assigned, isn't collected, but do it because potential exam questions resemble homework problems. No calculator allowed on midterms. 3 midterms, 1 final. Every exam is 25%. Take him if you are EE major!", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d389cd60fca157e59f17" + } + }, + { + "text": "I didnt like this class. Unlike EE371, where you get an intuitive sense of the steps being taken, it felt as if he just threw formulas on the board and we had to follow them blindly. Exams were no surprise if you understood the HW and examples covered in lecture. Computer assignments are a bit tough. Overall though, the material is interesting.", + "pos": 0.041, + "neu": 0.877, + "neg": 0.082, + "_id": { + "$oid": "6711d389cd60fca157e59f18" + } + }, + { + "text": "An excellent professor! He's a bit robotic at times, but his mastery of the subject is obvious and he teaches everything in a very clear manner. This class covers a ton of material. If you can handle the HW and the examples covered in class, you should do well in the exams. I'm very glad Prof. Sobel taught the class this semester!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d389cd60fca157e59f19" + } + }, + { + "text": "A very poor professor with zero communication skills. Despite being an experienced lab instructor, he seemed totally clueless when asked any sort of question. His lack of guidance made the experiments much more complicated than they really were. He was not very harsh when grading lab reports. However, I would recommend any other instructor.", + "pos": 0.082, + "neu": 0.783, + "neg": 0.136, + "_id": { + "$oid": "6711d389cd60fca157e59f1a" + } + }, + { + "text": "Sobel is strange professor with below average teaching skills and a bit harsh in grading. There are alot of useless stuff that he covered in the class. it is not recommend it to take this class.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d389cd60fca157e59f1b" + } + }, + { + "text": "DO NOT TAKE HIM FOR LAB. When grading, he checks details, quality, and quantity. I once gave him 60 pages just to get a \"B\" in the report. He marked off all my grammar, spelling, and style errors. He likes to call this \"Professionalism\" when writing reports.", + "pos": 0.056, + "neu": 0.896, + "neg": 0.048, + "_id": { + "$oid": "6711d389cd60fca157e59f1c" + } + }, + { + "text": "Easy class. Just make sure to practice the homework and previous exam problems, and you'll definitely do fine. Don't miss class since attendance is required (or he'll drop you) and it's definitely harder to learn the material from the book as opposed from class notes.", + "pos": 0.249, + "neu": 0.665, + "neg": 0.086, + "_id": { + "$oid": "6711d389cd60fca157e59f1d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38acd60fca157e59f1f" + }, + "professor_name": "Jiufeng Tu", + "rating": 2.7, + "department": "Physics department", + "comments": [ + { + "text": "RUN AWAYYYYYYY", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f20" + } + }, + { + "text": "If you have to take physic take it with him he is the best.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f21" + } + }, + { + "text": "Scribbling on his PowerPoint slides as if we can understand his work. Save your gpa and time and dont take this guy.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f22" + } + }, + { + "text": "This professor basically reads off of extremely messy pre-written slides for 3 hours and does not practice questions alongside the class. His voice is extremely drone, he always sounds like he has a cold, and he has a thick accent.\n\nAs a person, he is even worse. If you miss an exam due to crippling physical injury, don't expect a make-up!!", + "pos": 0.036, + "neu": 0.807, + "neg": 0.157, + "_id": { + "$oid": "6711d38acd60fca157e59f23" + } + }, + { + "text": "The lectures are so hard to keep up with but if you have the attention span for it I would listen. Otherwise don't take his deadlines for granted, do the homework as it's assigned because if you're not good at calculus-based physics you will struggle. Go to tutoring and put the work in. Others have said the material isn't hard, it's untrue. Study!!", + "pos": 0.056, + "neu": 0.828, + "neg": 0.115, + "_id": { + "$oid": "6711d38acd60fca157e59f24" + } + }, + { + "text": "He just talks over messy pre-written slides during his lecture. There's already so much writings on his slides that it makes it impossible to read them. Lectures incredible boring and not engaging however he doesn't care about attendance and weekly hws r doable. Best thing about him is how much he curved our midterm and final.", + "pos": 0.065, + "neu": 0.785, + "neg": 0.15, + "_id": { + "$oid": "6711d38acd60fca157e59f25" + } + }, + { + "text": "Terrible lectures. Just goes over Physics problems and concepts (already solved) on PowerPoint slides. Students never get to practice. Coughs every few moments, which I understand may not be his fault, but didn't help with the immersion into learning. Muted the class often. However, he does try to help us by creating grading policies in favor of us", + "pos": 0.187, + "neu": 0.716, + "neg": 0.097, + "_id": { + "$oid": "6711d38acd60fca157e59f26" + } + }, + { + "text": "PHYS 203 was harder than Orgo for me. 10% HW, 10% Labs, 40% two midterms, 40% Final. Attendance is not mandatory BUT he goes over practice questions in class and HW must be submitted every Friday in person. The exams are very hard and there is no partial credit so answer at least 3/5 questions to pass. Formula sheets allowed. Do HW+Labs to pass.", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d38acd60fca157e59f27" + } + }, + { + "text": "Awful professor. Lectures are fine, but then the exams were 10 times more difficult than things we went over in class. Also, clears his throat approximately 100 times per lecture. But he's a nice guy.", + "pos": 0.155, + "neu": 0.71, + "neg": 0.135, + "_id": { + "$oid": "6711d38acd60fca157e59f28" + } + }, + { + "text": "Not an amazing lecturer but class isn't even mandatory. If you stay on top of the work, which is not difficult, then you should be fine. His curves help a lot and he goes through sample problems that eventually show up on tests.", + "pos": 0.198, + "neu": 0.672, + "neg": 0.129, + "_id": { + "$oid": "6711d38acd60fca157e59f29" + } + }, + { + "text": "One of the most boring lectures I've ever sat in on. He exclusively reads from slides in a very droney voice, and he is very bad at explaining things if you ask questions. Probably on the better side of physics professors offered in City, but still quite horrible.", + "pos": 0.035, + "neu": 0.795, + "neg": 0.17, + "_id": { + "$oid": "6711d38acd60fca157e59f2a" + } + }, + { + "text": "Submit the lab reports and homework. No attendance. Must do well in the exam. I personally came once a week just to hand my homework. Make sure you score above the average from the tests and you will be fine. The average from the tests were around 40%, so anything higher than that guarantees a good grade. Lectures are boring (mainly slideshows).", + "pos": 0.171, + "neu": 0.766, + "neg": 0.063, + "_id": { + "$oid": "6711d38acd60fca157e59f2b" + } + }, + { + "text": "Professor Tu is nothing more than a glorified powerpoint reader, and a particularly bad one at that. His incessant verbal ticks and thick accent make him difficult, if not impossible to understand. Be prepared to teach yourself physics from the textbook - lectures are pointless.", + "pos": 0.104, + "neu": 0.777, + "neg": 0.119, + "_id": { + "$oid": "6711d38acd60fca157e59f2c" + } + }, + { + "text": "He only reads from his powerpoint slides and sometimes add his own input. He collects HW each week but does not give it back nor tells you the grade of the HW. His tests are more conceptual rather than plugging in equations. The only thing good about this is the outrageous curve. As long as u do better than class avg on each test, u get an A.", + "pos": 0.1, + "neu": 0.847, + "neg": 0.052, + "_id": { + "$oid": "6711d38acd60fca157e59f2d" + } + }, + { + "text": "Professor Tu is monotonous and drones on a lot. He reads from the slides more than he actually engages the class, but he does post everything online on his website, like lectures, old tests, homework solutions, etc, which is helpful. His tests are tough, but he curves a lot. Not a bad choice for a physics professor.", + "pos": 0.213, + "neu": 0.761, + "neg": 0.026, + "_id": { + "$oid": "6711d38acd60fca157e59f2e" + } + }, + { + "text": "This guy had a cold every single day when I took him. I loved his lectures tho, I really learned a lot in his class. You only don't learn if you don't pay attention. He curves like crazy so just make sure you're above the class average at all times and you'll get an A. TAKE HIM!!!! SERIOUSLY!!!", + "pos": 0.167, + "neu": 0.762, + "neg": 0.071, + "_id": { + "$oid": "6711d38acd60fca157e59f2f" + } + }, + { + "text": "He's really organized, the curves really does help out. I don't think anyone's ever failed his class. He's definitely a nice professor and physics isn't a strong suit. If you want to get out of physics take him! He gives weekly HW, just do the hw and study.", + "pos": 0.173, + "neu": 0.723, + "neg": 0.103, + "_id": { + "$oid": "6711d38acd60fca157e59f30" + } + }, + { + "text": "I mean the curves really do help out in class. I got a C but I didn't even do anything in class. He seems too interested in research so when you ask for help in office hours he won't really help. His tests are all from the book, so you can't complain. May as well just study by yourself instead of going to class. Take him over Falk is my advice.", + "pos": 0.178, + "neu": 0.783, + "neg": 0.039, + "_id": { + "$oid": "6711d38acd60fca157e59f31" + } + }, + { + "text": "Prof. Tu is unfortunately a horrible professor. He has a monotone voice and lectures are boring. All he does is read his lecture slides. You will not learn from him. The textbook isn't helpful. The only good thing from this class is the OUTRAGEOUS curve-he makes exam averages equivalent to a B+, so if you can attain that, you will be fine.", + "pos": 0.064, + "neu": 0.744, + "neg": 0.193, + "_id": { + "$oid": "6711d38acd60fca157e59f32" + } + }, + { + "text": "His curves are lenient, but don't use that as an excuse to slack. Be prepared to teach yourself the entire curriculum. Doing practice problems from the textbook helps. His lectures aren't that helpful since he just reads off powerpoint slides.", + "pos": 0.177, + "neu": 0.69, + "neg": 0.133, + "_id": { + "$oid": "6711d38acd60fca157e59f33" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38acd60fca157e59f35" + }, + "professor_name": "Lale Can", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "Prof. Can is very passionate about her work. Yes, you'll read a lot. And yes, you will have to take a minimum interest in the topics covered and work. But in the end, you will come out with better writing skills, a sharp critical mind and a deep knowledge. Bonus point: kindness and good humor are always there! You won't regret taking this class!", + "pos": 0.355, + "neu": 0.611, + "neg": 0.034, + "_id": { + "$oid": "6711d38acd60fca157e59f36" + } + }, + { + "text": "Dr. Lale Can's Ottoman Empire class last fall was transformative. You learn the subject through her courses while enhancing reading comprehension and writing style. She is a rare gem who genuinely cares about her student's success in college and beyond. Take advantage of the opportunity to take her courses and witness remarkable personal growth.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f37" + } + }, + { + "text": "I took Can's Ottoman Empire class and it was an incredible experience. She's passionate about teaching and she challenged us to work hard every day by making sure we read the books and articles she assigned and would ask our opinions about the readings. If you don't read, you won't pass. And if you're struggling, just talk to her, she will help.", + "pos": 0.123, + "neu": 0.797, + "neg": 0.08, + "_id": { + "$oid": "6711d38acd60fca157e59f38" + } + }, + { + "text": "Professor Can is one of the most dedicated professors at CCNY. Yes, her classes are tough and has high expectations of her students but she is very caring and gives great feedback on papers. I improved a lot in her class and became more confident to speak. The readings she assigned were also very engaging and I learned a lot from class discussions.", + "pos": 0.323, + "neu": 0.662, + "neg": 0.015, + "_id": { + "$oid": "6711d38acd60fca157e59f39" + } + }, + { + "text": "I feel the need to confute, or at least contextualize, some of the reviews here. The class I took with Prof. Can was challenging, but as is any intellectually rewarding experience. The syllabus made clear what the reading expectations were and Prof. Can was always available to help. Not an easy A, but hardly an impossible one if you're interested.", + "pos": 0.258, + "neu": 0.701, + "neg": 0.041, + "_id": { + "$oid": "6711d38acd60fca157e59f3a" + } + }, + { + "text": "I am being completely honest with you all, if you're looking for a flexible course that will NOT stress you out, DO NOT take this class. I made the same mistake, I wanted a chill flexible course but ended up becoming the most stressful class this semester.", + "pos": 0.126, + "neu": 0.753, + "neg": 0.121, + "_id": { + "$oid": "6711d38acd60fca157e59f3b" + } + }, + { + "text": "I can see that she is very enthusiastic about teaching the class and cares about students' wellness and grades. sometimes, the work and readings can get a little too overwhelming. If you miss reading you won't be able to do the discussion posts. This class is going to be very difficult if you don't read the books and documents she assigns.", + "pos": 0.135, + "neu": 0.802, + "neg": 0.063, + "_id": { + "$oid": "6711d38acd60fca157e59f3c" + } + }, + { + "text": "Prof Can was one of the best profs I've ever had. I've taken multiple classes with her & learned so much in each. She really pushes you to think like a historian and not just memorize things. She cares deeply about each student and pushes them to their full potential, especially in the detailed feedback she gives on writing assignments. Take her!!", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f3d" + } + }, + { + "text": "she is an amazing professor but sometimes gets off track. she really knows what she is talking about. super critical of papers but if you go to her for help, you will do well. 2 tests, 3 essays, a book review (and sometimes quizzes). you have to do the readings (which are given out in packets and posted online) and participate!!!", + "pos": 0.201, + "neu": 0.759, + "neg": 0.04, + "_id": { + "$oid": "6711d38acd60fca157e59f3e" + } + }, + { + "text": "Dr. Can cares so much about her students, one of the best professors Ive had at CCNY. Take her!!", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f3f" + } + }, + { + "text": "Dr. Can is a brilliant, warm, and dedicated professor. She is one who truly cares about her students. It is no surprise she is as accomplished as she is! Her readings are dense, but her instruction helps you understand them better and see them via a critical lens. Her expectations are high, but it is to be expected at this point.", + "pos": 0.258, + "neu": 0.683, + "neg": 0.058, + "_id": { + "$oid": "6711d38acd60fca157e59f40" + } + }, + { + "text": "She seems intimidating at firstbut her passion for Ottoman history reflects in every lecture. Dedicates time nd wants ALL her students to excel. Avaliable outside of class. Readings are dense pay attention in class. Her feedback helps with how you write. She openly acknowledges her role as a female professor in academia nd is inspirational. Amazing", + "pos": 0.228, + "neu": 0.71, + "neg": 0.062, + "_id": { + "$oid": "6711d38acd60fca157e59f41" + } + }, + { + "text": "Dr. Can is one of the best professors at CCNY. Her passion for teaching, her expertise, and her encouragement not only sets her apart from most professors at CCNY, but is a refreshing and stimulating experience for her students. Her classes arent difficult, but they do require critical thinking a skill which she aims to develop for her students.", + "pos": 0.189, + "neu": 0.769, + "neg": 0.043, + "_id": { + "$oid": "6711d38acd60fca157e59f42" + } + }, + { + "text": "Truly knows her field. Extremely inspirational. An all around blessing to be around. Hard work gets noticed and she really does care and pay attention. She really is special. Honestly cannot wait until I can take her classes again. I hope she never leaves and becomes the head of her department.", + "pos": 0.332, + "neu": 0.626, + "neg": 0.042, + "_id": { + "$oid": "6711d38acd60fca157e59f43" + } + }, + { + "text": "Taking Prof Can's classes is one of the highest services you can do for yourself as a student! She cares deeply about students and puts in the extra effort to explain the intricacies of history to her students. Her class opened up my mind to the Middle East, honestly it changed my life. Easily the best professor at CCNY. Period. Maybe even all NYC!", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f44" + } + }, + { + "text": "Young, very passionate and intelligent Ottomanist, however, she is over-zealous in her expectations and mediocre as an instructor. The readings assigned are heavily specific and scholarly. While interesting, Prof. Can neglects the \"teaching\" part of her course and expects mastery of topics without providing a base of knowledge for the students.", + "pos": 0.161, + "neu": 0.785, + "neg": 0.053, + "_id": { + "$oid": "6711d38acd60fca157e59f45" + } + }, + { + "text": "High standards, well articulated. You have to write carefully to meet the standard of critical thinking and analysis. Engaging personality. Passionate about the subject and the discipline of historiography. Personable.", + "pos": 0.256, + "neu": 0.681, + "neg": 0.063, + "_id": { + "$oid": "6711d38acd60fca157e59f46" + } + }, + { + "text": "I truly believe that taking Professor Can's courses is the reason I did so well in college and graduate school. She trained me to be a critical thinker, a strong writer, and a hard worker. I am still immensely thankful for the work she put me through, no matter how difficult, because it has made me a better student and professional.", + "pos": 0.208, + "neu": 0.695, + "neg": 0.097, + "_id": { + "$oid": "6711d38acd60fca157e59f47" + } + }, + { + "text": "Prof Can is inspiringly passionate and supportive of her students. You must engage with the reading--she teaches historical connections and sharp reasoning, not rote facts alone, mostly via interdisciplinary texts. She gives extraordinary, constructive feedback. Participate! She is brilliant and a great debater, and encourages discussion.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f48" + } + }, + { + "text": "Professor Can is one of the most amazing professors in the History Department.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d38acd60fca157e59f49" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38bcd60fca157e59f4b" + }, + "professor_name": "Joseph Davis", + "rating": 2.2, + "department": "Education department", + "comments": [ + { + "text": "Everything graded for completion, no tests/quizzes, attendance not mandatory, interesting subject, accommodating professor in office hours, no textbook.\nlectures can get boring, unclear syllabus, and lots of assignments to keep track of.\n\nEasy A if you complete all the work.", + "pos": 0.06, + "neu": 0.686, + "neg": 0.253, + "_id": { + "$oid": "6711d38bcd60fca157e59f4c" + } + }, + { + "text": "Condescending. Doesn't like questions. Belittles his students that don't understand something. Can't tell where you stand in class because he doesn't grade ANYTHING. Doesn't give feedback. Tells us all that we will get a grade when it's time to see our grade for the overall class. So stressful. HOW IS HE AN EDUCATION TEACHER? Shame on City College", + "pos": 0.0, + "neu": 0.853, + "neg": 0.147, + "_id": { + "$oid": "6711d38bcd60fca157e59f4d" + } + }, + { + "text": "Talks too much about irrelevant subjects. Demands respect but is not respectful. Makes an interesting subject dull. Teaches in the education department but does not value the knowledge his graduate-level students bring to his classroom or care about their teaching goals. Has no interest in teaching as a profession and refuses to educate himself.", + "pos": 0.143, + "neu": 0.677, + "neg": 0.181, + "_id": { + "$oid": "6711d38bcd60fca157e59f4e" + } + }, + { + "text": "Davis has a very interesting personality. He is SUPER condescending when giving you feed back on your discussions or papers. It is hard to tell where you stand in this class grade wise. His work isn't clear and expects you to post on blackboard a lot so be familiar with the site. I will NEVER take him again. Actually avoiding him next semester!", + "pos": 0.178, + "neu": 0.743, + "neg": 0.079, + "_id": { + "$oid": "6711d38bcd60fca157e59f4f" + } + }, + { + "text": "I took him for my Western Civilization 2. My first test I couldn't see the board (because I was getting new glasses) there was only me and another girl left and I raised my hand to ask what it said and he became very rude. And he starting saying he already knew how we did on the test (we had 15 mins left)", + "pos": 0.047, + "neu": 0.904, + "neg": 0.049, + "_id": { + "$oid": "6711d38bcd60fca157e59f50" + } + }, + { + "text": "Honestly, he's chock full of information, He just doesn't know how to deliver it in an appropriate manner most times. Furthermore, he has no filter, and comes off rude and condescending even if it isn't his initial intent. He needs to understand some of his students aren't native English speakers as well, and be more diplomatic and comprehensible.", + "pos": 0.079, + "neu": 0.84, + "neg": 0.081, + "_id": { + "$oid": "6711d38bcd60fca157e59f51" + } + }, + { + "text": "Great professor. He is works with his students and wants the best for them.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f52" + } + }, + { + "text": "I never saw in my life such rude person as him... I got a tons of useless materials which are irrelevant with teaching. When I asked some specific questions, he just tried to ignore or avoid, saying that it is not time to discuss that.... Actually this time never came. RUN AWAY!!! DONT WASTE YOUR MONEY AND TIME! HE CANT GET ALONG WITH HIMSELF...", + "pos": 0.039, + "neu": 0.802, + "neg": 0.159, + "_id": { + "$oid": "6711d38bcd60fca157e59f53" + } + }, + { + "text": "If you take professor Davis, prapare to learn. He is one of those professors who wants you to learn. He is also always ready to help and answer your questions. Loved the class, would def take it again", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f54" + } + }, + { + "text": "He is tough, straight forward, fair, and detail-oriented. Many people are afraid of him, but, i think, it is because these people are lazy and do not listen to directions. If you want to submit your paper without giving it a thought, then you will fail in his class. He wants you to work. his class is not an easy class, but i learned a lot.", + "pos": 0.059, + "neu": 0.749, + "neg": 0.193, + "_id": { + "$oid": "6711d38bcd60fca157e59f55" + } + }, + { + "text": "This professor lacks visual creativity and does not know how to deliver the content. I'm so happy I survived his class. He grades you on the writing paper and the final exam. He is very critical when he grades paper. Sadly, none of the readings were useful in the teaching world.", + "pos": 0.215, + "neu": 0.701, + "neg": 0.084, + "_id": { + "$oid": "6711d38bcd60fca157e59f56" + } + }, + { + "text": "Extremely difficult and useless. He is \"obsessed\" with linguistics but can not tell you a single thing or idea linguists agree on. Basically, he is ineffective nad doesn't make a clear connection to the classroom. He gave few assignments that impact your grade and then expects you to know everything on his \"survey\" exam, almost 35% of your grade.", + "pos": 0.049, + "neu": 0.802, + "neg": 0.148, + "_id": { + "$oid": "6711d38bcd60fca157e59f57" + } + }, + { + "text": "While he seems like a nice guy, he does come off pompous at times. I concur w/the others, he lectures on boring material and does really expect us to remember ALL of it. He is a VERY strict grader. I am surprised I passed. Seriously, the guy gives points like it's money. However, you can appreciate his love for his subject. But that's it.", + "pos": 0.161, + "neu": 0.797, + "neg": 0.043, + "_id": { + "$oid": "6711d38bcd60fca157e59f58" + } + }, + { + "text": "Davis does not know how to teach. He lectures and expects students to retain the info. He gives 15-30 pg articles for HW then a quiz the next class w/out discussing the articles. There is no rubric to show what is expected when writing papers. He gets very upset when students ask him to review concepts from previous weeks.", + "pos": 0.0, + "neu": 0.918, + "neg": 0.082, + "_id": { + "$oid": "6711d38bcd60fca157e59f59" + } + }, + { + "text": "Stay away from his class. Or you will downgrade your GPA.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f5a" + } + }, + { + "text": "I recommend, as many others students will also, DO NOT take this professor. You are guaranteed to lower your GPA for a class were his ego trips are the method of his instruction. I am taking a summer course just so I do not have to take this professor for a third time. Yes I have learned my lesson after two courses. Avoid at all costs!", + "pos": 0.076, + "neu": 0.862, + "neg": 0.061, + "_id": { + "$oid": "6711d38bcd60fca157e59f5b" + } + }, + { + "text": "Yes, he is strict and demanding. We had lots of work to do in his class. But he really wanted us to learn, and that's why he pushes students. I learned a lot from all of his three courses. He is really helpful if you have any question, and he is very patient! He is the most intelligent and knowledgeable professor that I have ever met. He is fair.", + "pos": 0.173, + "neu": 0.809, + "neg": 0.018, + "_id": { + "$oid": "6711d38bcd60fca157e59f5c" + } + }, + { + "text": "I learned more in each of his three linguistics/education grad-level classes than I did in my other nine combined. (At one point I did consider dropping out, though! There was a lot of theory.) I went from bored by the subject to curious to interested to almost-fascinated. He's hard, and he's a good guy, but he doesn't coddle, he TEACHES.", + "pos": 0.09, + "neu": 0.866, + "neg": 0.043, + "_id": { + "$oid": "6711d38bcd60fca157e59f5d" + } + }, + { + "text": "Professor needs therapy. He has no classroom skills. He has never taught in public schools yet is teaching us how to be teachers. Like a general with no wars! CCNY should be ashamed of having such an arrogant person teaching.He is a tyrant who will grade you according to your submissiveness. AVOID THIS MAN! Unles you are into kissing buttocks.", + "pos": 0.122, + "neu": 0.695, + "neg": 0.183, + "_id": { + "$oid": "6711d38bcd60fca157e59f5e" + } + }, + { + "text": "C'mon, Guys. He is truly not the anti-christ. I just think he wants things super organized so that he doesn't lose track of things. A bit of an ego but which prof's aren't guilty. I do not feel I've been graded unfairly nor publicly humiliated in his class, and from what people were saying, I was expecting the worst. He's fairer than you think.", + "pos": 0.154, + "neu": 0.771, + "neg": 0.075, + "_id": { + "$oid": "6711d38bcd60fca157e59f5f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38bcd60fca157e59f61" + }, + "professor_name": "Alec Magnet", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "Incredible Professor! He's incredibly passionate and knowledgeable about American literature. I took his 19th Century course. He does his best to get the class engaged, and explains anything unknown very well. There's a lot to read, but they're all interesting pieces. He was the only 9:30 am class I will ever be excited for. Sad it's over!", + "pos": 0.225, + "neu": 0.716, + "neg": 0.059, + "_id": { + "$oid": "6711d38bcd60fca157e59f62" + } + }, + { + "text": "Dont let first impressions fool you. Prof. Magnet is extremely knowledgeable about American literature, incites great in-class discussions, and is a nice, laidback guy. However, he was unable to produce any assignment grades until they were due at the very end of the semester, and many of my peers and I were burned by his unclear grading criteria.", + "pos": 0.125, + "neu": 0.777, + "neg": 0.098, + "_id": { + "$oid": "6711d38bcd60fca157e59f63" + } + }, + { + "text": "he such a good professor and caring. would def recommend him", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f64" + } + }, + { + "text": "It is true that he gives lots of readings and homework, but with his help an A we can easily get.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f65" + } + }, + { + "text": "I can not say enough wonderful things about this professor. I adored this instructor and had so much fun in his class. He encourages participation and creativity. He's funny, well prepared, listens to his students and is a fair grader. I enjoyed his test; they are an open book exam. We had one paper and one creative expression assignment. I chose to do a Gothic poem, and he loved it.", + "pos": 0.338, + "neu": 0.629, + "neg": 0.033, + "_id": { + "$oid": "6711d38bcd60fca157e59f66" + } + }, + { + "text": "He genuinely cares about his students and literature. He lets you express your feelings in a safe environment.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f67" + } + }, + { + "text": "Amazing teacher! Truly loves the subject and is super engaging.", + "pos": 0.773, + "neu": 0.227, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f68" + } + }, + { + "text": "Alec was one of the first professors I took a course with at City College,his personality shines just as bright as his ginger hair! haha. If you take him for FIQWS be prepared to do a heavy amount of reading and discussion of material in class. He gives very good feedback and is very open and chill if you'r ever having difficulty with the readings", + "pos": 0.153, + "neu": 0.814, + "neg": 0.033, + "_id": { + "$oid": "6711d38bcd60fca157e59f69" + } + }, + { + "text": "Professor Alec Magnet is just amazing !!! He makes the course so much interesting and fun !! He gives awesome feedback on papers and is a very easy and fair grader. He is Boss compared to the other professors at CCNY. I am an engineering major and I loved this class !!", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f6a" + } + }, + { + "text": "Mr. Magnet is a wonderful soul who loves what he does. Get ready to read and talk about the texts (it's noticeable to him when you don't read). He really asks questions that make you question a lot of things and is adorable. There's never a bad day with Mr. Magnet. He's wonderful and his classes are awesome. His feedback on papers is very useful.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f6b" + } + }, + { + "text": "Really great teacher from the get-go. He honestly cares about his students. He takes the time give real feedback and meet with his students. When it comes to passing the class and really doing good, MAKE SURE TO READ TEXTS! It's obvious when someone hasn't fully read. He loves comments and opinions! The class is contingent on participation", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f6c" + } + }, + { + "text": "He is a great guy and always there to help you when you need him. Better than most of the professor we have in CCNY. One word that describes him is PASSIONATE .", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f6d" + } + }, + { + "text": "Alec is awesome!!!!! He saves the class from all the pretty boring readings that we had to do. He assigned homework practically every class but gives you time to actually complete the. Definitely take him if you can!", + "pos": 0.208, + "neu": 0.755, + "neg": 0.037, + "_id": { + "$oid": "6711d38bcd60fca157e59f6e" + } + }, + { + "text": "It would've been helpful if I got feedback on my essays so that I could improve, but most of the scores were in after the semester ended. His readings are interesting, he knows and is passionate about his stuff. Listening to him in class really clarifies things that weren't that obvious if you're reading alone.", + "pos": 0.223, + "neu": 0.739, + "neg": 0.038, + "_id": { + "$oid": "6711d38bcd60fca157e59f6f" + } + }, + { + "text": "Personally, I looked forward each day to go to his class. High spirited, always entertaining! I enjoyed his assignments, gives helpful feedback. Definetely not a tough grader, i would definitely retake his class just for the fun of it! RECOMMEND.", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f70" + } + }, + { + "text": "Took his U.S. Lit course. He's really nice, genuinely caring towards students. His comments on assignments were always helpful; he is very engaged with what takes place inside the classroom (the benefits of having a young professor?). He's readily available outside of class, be that office or email inquiry. Really he's a professor you should take.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f71" + } + }, + { + "text": "Very friendly guy: always cheerful and dynamic. Everything is paperless, submit assignments online, which is nice. I wish Rip Van Winkle and Huckleberry Finn made the syllabus though (19 C America Literature). Sometimes he mismanages class-time, spending too much time on one thing and, ultimately, not giving us a complete analysis of the text.", + "pos": 0.232, + "neu": 0.737, + "neg": 0.031, + "_id": { + "$oid": "6711d38bcd60fca157e59f72" + } + }, + { + "text": "He is the best!", + "pos": 0.6, + "neu": 0.4, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f73" + } + }, + { + "text": "He is a cool professor I enjoyed his class. Love his random moments.", + "pos": 0.495, + "neu": 0.505, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f74" + } + }, + { + "text": "Awesome professor!! Very friendly, helpful, funny, etc. TAKE HIM IF POSSIBLE!!", + "pos": 0.682, + "neu": 0.318, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f75" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38bcd60fca157e59f77" + }, + "professor_name": "Jeff Rosen", + "rating": 3.1, + "department": "Psychology department", + "comments": [ + { + "text": "He is so arrogant ! Not a nice person. The topic is so interesting, too bad the text book taught better than him. Is that even possible?", + "pos": 0.164, + "neu": 0.566, + "neg": 0.27, + "_id": { + "$oid": "6711d38bcd60fca157e59f78" + } + }, + { + "text": "The class's content is very interesting, the professor is proficient. However, your grade is based on quizzes (25%), a midterm (25%), and the final (50%). The quizzes were 3 questions each and so one mistake was really harsh on your grade. If you have to take this class, use the textbook heavy and make sure to attend ALL lectures and recitations.", + "pos": 0.078, + "neu": 0.836, + "neg": 0.086, + "_id": { + "$oid": "6711d38bcd60fca157e59f79" + } + }, + { + "text": "This class consists of Lecture and Recitation. Attendance is not mandatory but: 25% quizzes, 25% midterm and 50% final. The quizzes are only 3 questions, so make sure you READ the textbook and go to lecture, if you get one wrong, automatic 66% and those hurt your grade. The wording for the questions are tricky and nothing is dropped, so study hard!", + "pos": 0.046, + "neu": 0.763, + "neg": 0.192, + "_id": { + "$oid": "6711d38bcd60fca157e59f7a" + } + }, + { + "text": "I love the info we were taught in this class, but I really disliked this teacher. His lectures and test questions were very confusing, and he described easy concepts in complex terms. The final is worth 50%, which sucks because you could do well all semester and it could easily be worth nothing. His lectures confused me, but the textbook is great.", + "pos": 0.291, + "neu": 0.593, + "neg": 0.117, + "_id": { + "$oid": "6711d38bcd60fca157e59f7b" + } + }, + { + "text": "1) read the textbook 2)go to lecture 3)go to recitation; three fundamental things that a college/psy student should be capable of doing, and people complain about how difficult this class is when they practically dont read the textbook and dont pay attention in lecture and recitation. MC questions are straightforward if you DO those 3 things!", + "pos": 0.064, + "neu": 0.85, + "neg": 0.086, + "_id": { + "$oid": "6711d38bcd60fca157e59f7c" + } + }, + { + "text": "Yes his class is hard, but if you read the textbook and go to every recitation/lecture, you'll do fine. His exams are very critical and tricky plus the content is pretty boring so if you want an easy class this isnt for u. Would not take again.", + "pos": 0.227, + "neu": 0.614, + "neg": 0.159, + "_id": { + "$oid": "6711d38bcd60fca157e59f7d" + } + }, + { + "text": "This is a tough class. Its grading criteria is 25% midterm 25% recitation quizzes and 50% final. This doesn't help because the recitation quizzes are only 3 questions so if you get 2 wrong you fail. His test are very hard, his wording is the most confusing I've seen in college and the format is all jumbled", + "pos": 0.0, + "neu": 0.782, + "neg": 0.218, + "_id": { + "$oid": "6711d38bcd60fca157e59f7e" + } + }, + { + "text": "such a bad experience, I was the only person to get a 100% on the midterm in my recitation class, yet i got a B+ overall because of his awful grading system. Exams are hard, no clear instructions, basically he does not give an A. Worth mentioning the class is not fun entertaining interesting or worth the effort. TAKE THIS FROM ME.", + "pos": 0.051, + "neu": 0.714, + "neg": 0.235, + "_id": { + "$oid": "6711d38bcd60fca157e59f7f" + } + }, + { + "text": "The exams are difficult and the grading system sucks, 25% quizzes, 25% midterm and 50% final. Professor does not take attendance however his exams are based on what he lectures in class, so go! if you're late 5 min to recitation you will receive a zero on the quiz, there is no curve and nothing dropped.", + "pos": 0.0, + "neu": 0.876, + "neg": 0.124, + "_id": { + "$oid": "6711d38bcd60fca157e59f80" + } + }, + { + "text": "He doesn't post his lectures online so you better go to class. His exams are heavily weighed his lectures but also the textbook. The lectures are even more boring than the textbook. Weekly recitation quizzes, 3 questions. Final is cumulative and worth 50% of final grade. Shows understanding of the material. Always offered to help after lecture.", + "pos": 0.124, + "neu": 0.823, + "neg": 0.053, + "_id": { + "$oid": "6711d38bcd60fca157e59f81" + } + }, + { + "text": "He really knows what he's talking about & is passionate about his lectures. If you attend every lecture and read the text book, there's no way you'd fail this class. Not an easy A but you'll deff learn something.", + "pos": 0.051, + "neu": 0.819, + "neg": 0.13, + "_id": { + "$oid": "6711d38bcd60fca157e59f82" + } + }, + { + "text": "Professor Rossen is a cool old dude. He's very good in teaching and explaining the material. The only problem is how the class grading structure centers you to fail. The final is 50% and almost wiped me out. Brad Thromas is cool but the grading standard are crushing. His class is only recommended for very Studious psychology students Critical Tests", + "pos": 0.109, + "neu": 0.744, + "neg": 0.147, + "_id": { + "$oid": "6711d38bcd60fca157e59f83" + } + }, + { + "text": "Final: 50% (30 questions) Midterm: 25%(15 questions) Quizzes: 25% (3 questions) Must read the textbook . Go to lecture even if you think its not fun.", + "pos": 0.0, + "neu": 0.902, + "neg": 0.098, + "_id": { + "$oid": "6711d38bcd60fca157e59f84" + } + }, + { + "text": "Lectures didn't cover most of chapter. Class participation does not count, nor does attendance reflect anything positive. If you don't show up there's points deducted off your grade. TA and professor are never on same page. Quizzes are worth %100 but only 3 questions on everyone. Midterm and final are way too short.", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f85" + } + }, + { + "text": "TA: 60% of students fail this class Students: How come? TA: um I guess most students don't attend lecture or are not great test takers Midterm: 15 multiple choice/ 3 question quizzes * Must Read the book thoroughly!! *The lectures will not help much!! Final: 50% Attendance: 5 minutes late to recitation ABSENCE 0/33 quiz Note: GOOD LUCK!!", + "pos": 0.104, + "neu": 0.751, + "neg": 0.145, + "_id": { + "$oid": "6711d38bcd60fca157e59f86" + } + }, + { + "text": "It doesn't matter if you go to lecture or not... The only thing that really matters if you pass the quiz that's onces a week.25% of your grade for midterm and final it's 50% , must read chapters you won't know where questions for the quiz come from the lecture or reading . I hate it this class. He's doesn't help", + "pos": 0.021, + "neu": 0.871, + "neg": 0.107, + "_id": { + "$oid": "6711d38bcd60fca157e59f87" + } + }, + { + "text": "Those 50 minutes of lecture were the higlight of my day. He is funny and very clever, he will make sure you understand the lecture. Read the chapters of the book before going to lecture and study each week for the quizzes. Some of the midterm questions are confusing, but it is not his fault, because TAs also can make questions on the midterm.", + "pos": 0.125, + "neu": 0.854, + "neg": 0.021, + "_id": { + "$oid": "6711d38bcd60fca157e59f88" + } + }, + { + "text": "Terrible, terrible, terrible! Not only are his lectures boring with his constant dramatic pausing, but the textbook chapters are REPETITIVE. Also inaccurate syllabus - did not clarify during finals week. Studied two chapters that were not on the final but on syllabus. Thanks to my TA though. She was the only good thing in this course. DONT TAKE HIM", + "pos": 0.108, + "neu": 0.728, + "neg": 0.164, + "_id": { + "$oid": "6711d38bcd60fca157e59f89" + } + }, + { + "text": "Very very unclear about the syllabus & grading. After 3 weeks decided to start giving pop quizzes & never explained their impact on the grade. Also changed the format of the final paper a 2 weeks b4 due date. & decided to stop lecturing halfway thru the semester & have a student summarize readings. If you want clarity & instruction look elsewhere.", + "pos": 0.094, + "neu": 0.836, + "neg": 0.07, + "_id": { + "$oid": "6711d38bcd60fca157e59f8a" + } + }, + { + "text": "Every week you need to take a quiz in recitation and half of your grade is based on those quizzes which is based on the whole chapter but is two three questions. Maybe we were going to have a midterm? and last minute, we did. Final was cumulative- the book and his notes.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d38bcd60fca157e59f8b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38ccd60fca157e59f8d" + }, + "professor_name": "Nicholas Smith", + "rating": 4.9, + "department": "Political Science department", + "comments": [ + { + "text": "Professor Smith was amazing. His lectures were super interesting and engaging. He gave little to no homework, lots of extra credit opportunities, and his exams were easy if you paid attention to the lectures and the readings. If you have a chance to take his class, do take it you will not regret it.", + "pos": 0.355, + "neu": 0.618, + "neg": 0.027, + "_id": { + "$oid": "6711d38ccd60fca157e59f8e" + } + }, + { + "text": "What a fun class. Exams were extremely easy, and professor Smith just wants to see that you're paying attention, and absorbing what he's lecturing. I have a bad attention span, but was very entertained in this class. Highly recommend", + "pos": 0.248, + "neu": 0.706, + "neg": 0.047, + "_id": { + "$oid": "6711d38ccd60fca157e59f8f" + } + }, + { + "text": "There is a lot of material but the course is very entertaining. Professor Smith is one of the best professors I had.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f90" + } + }, + { + "text": "Good professor and very little homework, easy A/A+...", + "pos": 0.491, + "neu": 0.509, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f91" + } + }, + { + "text": "GEM OF CCNY, third semester taking him, I am sad I can't take him next semester. This time no discussion boards, the grade is only based on 3 papers which are 90% of the grade plus participation, 10%. Extra Credit is an event response and makes sure to go because it half grades up. He also gives curves if there is not enough extra credits to offer.", + "pos": 0.066, + "neu": 0.834, + "neg": 0.1, + "_id": { + "$oid": "6711d38ccd60fca157e59f92" + } + }, + { + "text": "Prof Smith Political Systems in Africa course was very informative. The class is pretty simple. There are 10 discussion board posts you'll do and a midterm/final. The readings are dense so beware of that as well as the 2 books you'll read over the semester. I highly recommend him.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f93" + } + }, + { + "text": "A GEM to CCNY. 2nd time taking him. He is very understanding and his lectures are very informative and insightful. He is very sensitive to modern society and lets people avoid topics that are hurtful to them as the topics are discussing on police brutality. 2 Exams with 2 essays each, which are based on lectures and easy to answer. Taking him again", + "pos": 0.041, + "neu": 0.825, + "neg": 0.134, + "_id": { + "$oid": "6711d38ccd60fca157e59f94" + } + }, + { + "text": "Great Professor. Really Human and Kind", + "pos": 0.66, + "neu": 0.34, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f95" + } + }, + { + "text": "Oh his an angel might god bless him. you have to take him he does his work with love and dedication. He really cares about you I was such a trouble maker in this online class I made a few mistakes on his quizzes and one of the paper but he helped in every way he could to improve and get that A. And his also very educated.", + "pos": 0.157, + "neu": 0.796, + "neg": 0.047, + "_id": { + "$oid": "6711d38ccd60fca157e59f96" + } + }, + { + "text": "Professor Rush gives very good lecture and are very on point and clear in his lectures. Clear powerpoint and points that helps in quizzes. Weekly Quizzes and three papers which the Quizzes are all from the powerpoints and papers are just using powerpoint to answer a prompt that is very obvious. Be sure to take his class because he is BEST IN CCNY!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f97" + } + }, + { + "text": "great proof. his lectures are very informing. He sent out the powerpoint for each class and did like the VoiceOver on them and explained the powerpoint. his tests aren't hard. would def take him.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f98" + } + }, + { + "text": "A great professor. Super understanding, his powerpoints are clear and precise. You're graded by weekly blog posts, a midterm, and a final which aren't cumulative. The blogs show that you understand what he's teaching, and are great for re-using in the midterm and final. I wish all my courses could be like this!", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f99" + } + }, + { + "text": "Professor Smith is an excellent professor. I enjoyed his lectures. He provides all his powerpoints online. Simply come to class and pay attention and you'll pass. A blog post a week and a midterm & final (he provides a review sheet for the exams) make up your entire grade. Come on time b/c he will provide extra credit to those who are early.", + "pos": 0.137, + "neu": 0.843, + "neg": 0.02, + "_id": { + "$oid": "6711d38ccd60fca157e59f9a" + } + }, + { + "text": "He's hands down the best professor I've ever had. His lectures are very inviting and inspirational, and really secured my interest in international relations. You have to show up to his class and do the timely blog posts but other than that, it is a very easy A. Enjoy his teaching, because you won't find another professor like him.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f9b" + } + }, + { + "text": "Hes a great professor but dont underestimate the importance of doing blogs on time and having good attendance. Got over 100 on midterm and final but still ended up with a B. He gives extra cred so take advantage.", + "pos": 0.241, + "neu": 0.704, + "neg": 0.055, + "_id": { + "$oid": "6711d38ccd60fca157e59f9c" + } + }, + { + "text": "Amazing professor. Very clear from the first day what he requires from you, as long as you come to class and pay attention you will do great. His lectures are fun and energetic, and he's able to give you unbiased information and lets you generate your own opinion. Take him!", + "pos": 0.275, + "neu": 0.685, + "neg": 0.04, + "_id": { + "$oid": "6711d38ccd60fca157e59f9d" + } + }, + { + "text": "Very reasonable professor. Decent amount of reading but you can probably get by just paying attention in lecture. Doesn't believe in writing long papers. Homeworks are just 200 word response on Blackboard to a question relative to current material every 1-2 weeks. Tests are just a midterm and final, 50 multiple choice and 4-6 sentence short answer.", + "pos": 0.025, + "neu": 0.975, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f9e" + } + }, + { + "text": "Unarguably, the best college professor at the City College. Exams are fairly easy. Grading is crystal clear. Do your blogs, do your readings, participate, study for exams and you will get that much-wanted letter A grade.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59f9f" + } + }, + { + "text": "He is one of the best in the dept., very caring and smart. He knows how to TEACH which many professors struggle with. I wish we had more professors like him at CCNY and CUNY in general. I learned a ton in his class. After taking poli sci classes in the dept. I kind of hated poli sci. but after a class with him I start to like poli sci again.", + "pos": 0.17, + "neu": 0.776, + "neg": 0.054, + "_id": { + "$oid": "6711d38ccd60fca157e59fa0" + } + }, + { + "text": "Prof Smith is among the best in the Political science department. He is clear with his expectations and very understanding to individual circumstances. Intro to global politics was a very informative class and he is among the best professors to teach information such as this. Does a great job of presenting all the perspectives on issues", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59fa1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38ccd60fca157e59fa3" + }, + "professor_name": "Chudi Uwazirike", + "rating": 2.9, + "department": "Sociology department", + "comments": [ + { + "text": "If u are not an English Speaker, u'll not understand anything. He is kind and knows the material but is unorganized and not clear handwrting, he has very important connections (was Nelson Mandela's assesor). U'll have to memorize all African countries, ethnics, etc. If u are not in the field, u will hate this class. A LOT of papers and readings", + "pos": 0.069, + "neu": 0.818, + "neg": 0.112, + "_id": { + "$oid": "6711d38ccd60fca157e59fa4" + } + }, + { + "text": "GOOD PROFESSOR", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59fa5" + } + }, + { + "text": "Boring professor who is difficult to understand (thick accent). Its easy to want to skip class. Subject matter should be engaging, but he somehow makes it uninteresting. Requires several texts for the course, but uses only a few pages from each on the exams. Overall two exams and a final, as well as weekly writing assignments and a research paper.", + "pos": 0.131, + "neu": 0.817, + "neg": 0.052, + "_id": { + "$oid": "6711d38ccd60fca157e59fa6" + } + }, + { + "text": "Mr. Uwazirike is very knowledgeable but that doesn't mean he's a good teacher. He gives enough papers and reading to take up over half your studies, he tends to be full of himself and his erratic, random approach to the material will confuse even the brightest student (the accent doesn't exactly help either). Approach this course with caution.", + "pos": 0.136, + "neu": 0.787, + "neg": 0.076, + "_id": { + "$oid": "6711d38ccd60fca157e59fa7" + } + }, + { + "text": "Such a terrible professor. He is disorganized and always late for class. You don't know what to expect from him, never get your papers back (I don't even think he reads anything). Don't take this class, try to find an alternative. The topic is supposed to be interesting, but this professor makes it not... besides it is hard to understand his accent", + "pos": 0.028, + "neu": 0.891, + "neg": 0.081, + "_id": { + "$oid": "6711d38ccd60fca157e59fa8" + } + }, + { + "text": "He seems like he is mean and a hard grader but if you are trying he will be very lenient. He curves grades. It will take you a couple of weeks to understand what he is saying but he is chill. He does not answer his emails but he is a great help. Beware you will WRITE A LOT in this class but you'll learn a lot as well... Have a good semester.", + "pos": 0.234, + "neu": 0.752, + "neg": 0.014, + "_id": { + "$oid": "6711d38ccd60fca157e59fa9" + } + }, + { + "text": "very fun and interesting. Thumbs up!", + "pos": 0.631, + "neu": 0.369, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59faa" + } + }, + { + "text": "You gotta take Prof. Uwazurike with a grain of salt. His Global Perspectives class is a little intense in that it covers a lot of topics in a pretty short amount of time and sometimes with Uwazurike's accent, even the most dedicated student can get lost. But he's not a BAD professor. And he is crazy smart. I would describe him as an \"experience\" :)", + "pos": 0.22, + "neu": 0.72, + "neg": 0.06, + "_id": { + "$oid": "6711d38ccd60fca157e59fab" + } + }, + { + "text": "He's a very nice professor, he's funny and makes class fun by his questions. The tests are easy if you study the notes from class.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59fac" + } + }, + { + "text": "I hate him...he's a pain in the butt...He gives random assignments any days of the week and expects u 2 have em done by the next class. He confuses the heck outta me...but i have to say, the assignments and his exams r very easy...he's just disorganized and that drove me crazy. u never know wat anything is worth so u're unaware of ur progress.", + "pos": 0.06, + "neu": 0.731, + "neg": 0.208, + "_id": { + "$oid": "6711d38ccd60fca157e59fad" + } + }, + { + "text": "This man is so unorganized, he is always late.he only knows what he is talking about. doesn't explain assignments clearly. Some of his lectures are interesting. His a fair grader when it comes to test. But if you have no choice take his class. his not going to hurt you.", + "pos": 0.127, + "neu": 0.795, + "neg": 0.078, + "_id": { + "$oid": "6711d38ccd60fca157e59fae" + } + }, + { + "text": "late to class and unprepared didn't give a syllabus and gave a lot work i dun recommend to take him", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59faf" + } + }, + { + "text": "Unprofessional and lazy. Didn't have a syllabus until 3rd week of classes which he never followed. Class discussions at the level of New York Post editorials. Never prepares his class. I learned nothing from his \u201clectures.\u201d A lot of random assignments that he never keeps track of. Comes late to class. Avoid if you are serious about your education.", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d38ccd60fca157e59fb0" + } + }, + { + "text": "easiest A I ever got. His exams are so easy; Seriously such a BAD professor that i kind of liked him. I mean he was CRAZY irresponsible. He would come to class like 25 minutes late because he had to find parking. It used to make me laugh like crazy. Sociology is an easy subject and his exams are easy. Just read the book, duh!", + "pos": 0.263, + "neu": 0.575, + "neg": 0.162, + "_id": { + "$oid": "6711d38ccd60fca157e59fb1" + } + }, + { + "text": "Very intelligent professor. Yes his notes are sloppy and he does have an accent but you get used to it. Class discussions are very interesting. Assignments are tedious but he is a flexible grader. A lot of reading from the txtbk too. Exams are easy mc questions with some open response questions aswell. Good class nonetheless.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59fb2" + } + }, + { + "text": "Wonderful and vey knowledgeable to talk to. Highly disorganized! I will take anothr class with him for sure.", + "pos": 0.265, + "neu": 0.631, + "neg": 0.105, + "_id": { + "$oid": "6711d38ccd60fca157e59fb3" + } + }, + { + "text": "I liked him. He has a nice sense of humor and he makes it easy and comfortable to participate in his class. He has an accent, but its not so bad.", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d38ccd60fca157e59fb4" + } + }, + { + "text": "He's charismatic, interesting and knowledgeable. Yes, a bit disorganized. However, what bothers me the most it is to see some students RARELY in class, strategically NOT taking the exams, and requesting make ups. Then they learn what was in the exams, prepare for those questions, take the exams and do better than those who took it first. Unfair.", + "pos": 0.123, + "neu": 0.772, + "neg": 0.105, + "_id": { + "$oid": "6711d38ccd60fca157e59fb5" + } + }, + { + "text": "This class was the worst! We didn't get a syllabus until the semester was half way done, and he didn't even follow it. He's very unorganized and isn't clear on what he expects from students. He comes in 10 minutes lately to every class and begins to fill the blackboard with sloppy notes. His test are very hard. He's a cool guy but avoid this class.", + "pos": 0.023, + "neu": 0.856, + "neg": 0.12, + "_id": { + "$oid": "6711d38ccd60fca157e59fb6" + } + }, + { + "text": "I did not like this class at all. He is very charismatic, but he is also very disorganized as others have said. He gives way too much homework, assumes that you have a strong background in INT studies and gets off topic often.\r \r Don't take this class if you don't have to.", + "pos": 0.076, + "neu": 0.841, + "neg": 0.082, + "_id": { + "$oid": "6711d38ccd60fca157e59fb7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38dcd60fca157e59fb9" + }, + "professor_name": "Brooke Gabrielle Feigon", + "rating": 4.5, + "department": "Mathematics department", + "comments": [ + { + "text": "Took number theory with her a few years back. She's very caring and helpful. Assignments and exams were challenging but fair. Shes awesome, would def take again.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fba" + } + }, + { + "text": "She's good, tough tests but a fair grader, and good curves.", + "pos": 0.515, + "neu": 0.412, + "neg": 0.074, + "_id": { + "$oid": "6711d38dcd60fca157e59fbb" + } + }, + { + "text": "Professor Feigon is amazing, definitely take her (or at least for Calc I). She gives WebWork for homework and 3 exams, the lowest exam gets weighed into your average the least. She is very lenient with grading and gives lots of partial credit on exams. She cares a lot about how you do as long as you talk to her and overall just study the concepts.", + "pos": 0.188, + "neu": 0.778, + "neg": 0.034, + "_id": { + "$oid": "6711d38dcd60fca157e59fbc" + } + }, + { + "text": "Understanding professor and she was generous with exam curves. Calc is a more difficult subject so you have to study it outside of class; it can't be lectures alone. Only complaint was that often the homework assignments were difficult and the site wasn't too helpful if you're stuck. Exams aren't too bad if you prepare enough.", + "pos": 0.117, + "neu": 0.709, + "neg": 0.175, + "_id": { + "$oid": "6711d38dcd60fca157e59fbd" + } + }, + { + "text": "Best teacher ever, no other words. Just study and you'll do good. Her practice tests are just like her exams and she curves. I wish I can take her for every math class.", + "pos": 0.289, + "neu": 0.659, + "neg": 0.052, + "_id": { + "$oid": "6711d38dcd60fca157e59fbe" + } + }, + { + "text": "Best math professor I have ever had in all of my experience at City College. her tests are extremely fair, and she gives practice exams a week before, which is very similar to the exam we actually take. I wish i studied more, but thats on me. She also curves if the class average is low, which is rare in the math dept at ccny!! take her if you can!", + "pos": 0.094, + "neu": 0.871, + "neg": 0.035, + "_id": { + "$oid": "6711d38dcd60fca157e59fbf" + } + }, + { + "text": "Great professor, understands the material very well and is very good at lectures. The class is very organized, the tests are fair and very similar to the practice tests, and the hw is reasonable. A great professor and class.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fc0" + } + }, + { + "text": "Prof. Feigon is always willing to help outside class and grading is very fair.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fc1" + } + }, + { + "text": "Absolutely atrocious, unstable woman. She is extremely dull, boring and lacks a solid understanding of the material. She will bait students to cheat on exams for the purposes of entrapment and then take a sick pleasure in accusing the entire class of cheating! Avoid!", + "pos": 0.085, + "neu": 0.548, + "neg": 0.366, + "_id": { + "$oid": "6711d38dcd60fca157e59fc2" + } + }, + { + "text": "SHE'S THE BEST MATH PROFESSOR AT CCNY. HER ASSIGNMENTS WON'T BE EASY 100 BUT SHE DESIGNED HER CLASS FOR THE PURPOSE OF LEARNING. SHE'S SO UNDERSTANDING AND ORGANIZED WITH WITH HER JOB HERE. SHE GIVES WEEKLY QUIZZES, BUT SHE WILL DROP THE TWO LOWEST AND WILL BE GENEROUS WITH GRADING AND CURVES. FOR ANY STEM MAJORS, SHE'S AN APPROPRIATE OPTION! :))", + "pos": 0.113, + "neu": 0.746, + "neg": 0.14, + "_id": { + "$oid": "6711d38dcd60fca157e59fc3" + } + }, + { + "text": "She is an amazing professor. She really takes into everyone's consideration even if it's online. She is very open to feedback and questions!! There was a survey given before class for our preferences. I would 100 recommend it again!!!", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fc4" + } + }, + { + "text": "Really good professor, cares about your learning and your grade. Exams come mostly from the homework (which I didn't do, and therefore I got a low grade). Do your homework and go to class.", + "pos": 0.163, + "neu": 0.784, + "neg": 0.053, + "_id": { + "$oid": "6711d38dcd60fca157e59fc5" + } + }, + { + "text": "She is amazing! Just take her, trust me - you won't regret it!", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fc6" + } + }, + { + "text": "She only give 2 exam the entire semester plus 3 quiz. She will curve or drop the lowest grade if the class average is low. But she is the best professor I meet in city college because I fail the first exam and one of the quiz but I pass the second exam and the two quiz and got a good grade on the final then she curve my grade and pass me.", + "pos": 0.112, + "neu": 0.776, + "neg": 0.112, + "_id": { + "$oid": "6711d38dcd60fca157e59fc7" + } + }, + { + "text": "Amazing, amazing professor. Probably one of the best you'll take in CCNY. Class might be a little hard to follow but tests are always easier. Presents material clearly, always willing to answer questions and explain step by step.", + "pos": 0.307, + "neu": 0.671, + "neg": 0.022, + "_id": { + "$oid": "6711d38dcd60fca157e59fc8" + } + }, + { + "text": "Feigon is honestly one of the best CCNY math professors. She will clearly explain all concepts during lecture, and you honestly never fall asleep during class. Her presence and personality makes you respect her a lot, because she honestly tries to help students understand all the concepts. Her grading criteria is very clear. Basically, awesome.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fc9" + } + }, + { + "text": "One of the best professors at CCNY; one of the few professors who are capable of teaching. No surprises on exams or quizzes.", + "pos": 0.239, + "neu": 0.703, + "neg": 0.059, + "_id": { + "$oid": "6711d38dcd60fca157e59fca" + } + }, + { + "text": "She is a great teacher. Her tests and quizzes don't have surprises, and she is caring about her students. She will stop the class to make sure that everyone has understood the topic, and if you have any question no matter how little she will answer without a fuss. She is a great teacher and if I could take her again I would.", + "pos": 0.184, + "neu": 0.75, + "neg": 0.066, + "_id": { + "$oid": "6711d38dcd60fca157e59fcb" + } + }, + { + "text": "I would definitely take her again. She explains concepts clearly and always follows them up with examples to make sure that her students know what she's talking about. She's very caring - you can tell she cares about her students and the material She's a tough grader but her tests/quizzes never have any surprises.", + "pos": 0.16, + "neu": 0.785, + "neg": 0.054, + "_id": { + "$oid": "6711d38dcd60fca157e59fcc" + } + }, + { + "text": "She's very hard. But she's good.", + "pos": 0.419, + "neu": 0.435, + "neg": 0.146, + "_id": { + "$oid": "6711d38dcd60fca157e59fcd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38dcd60fca157e59fcf" + }, + "professor_name": "Joann Hamilton", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "One of the worst professor that I have ever had in ccny. She is always late! Extremely laid back on grading our homeworks and papers, we did not get any of our assignment back even till the day of the final, we have no idea how we performed in this class throughout the semester, and just got a final grade with surprise. Do not take her!!", + "pos": 0.029, + "neu": 0.872, + "neg": 0.099, + "_id": { + "$oid": "6711d38dcd60fca157e59fd0" + } + }, + { + "text": "Terrible professor. We didn't get a syllabus until halfway through the semester. Would tell us we has readings/assignments due when she never assigned it. Just speaks on and on in class without teaching anything. The readings aren't interesting and her teaching style is boring. Unfortunate because she is really sweet. But very easy class.", + "pos": 0.104, + "neu": 0.777, + "neg": 0.119, + "_id": { + "$oid": "6711d38dcd60fca157e59fd1" + } + }, + { + "text": "after taking her for two separate classes, its clear that she is in love with the material and an extremely laid back professor. Problem is that she is tooooo laid back. Many times our major assignments were pushed back, we didnt receive a syllabus until after midterms, she loses papers... But she is so sweet, and discussions are great if you care.", + "pos": 0.251, + "neu": 0.704, + "neg": 0.045, + "_id": { + "$oid": "6711d38dcd60fca157e59fd2" + } + }, + { + "text": "You don't need the textbook since all the stories are online. If you feel you must get the textbook however buy the edition that she uses in class. The edition listed on the syllabus does not contain all the stories she wants. She is super nice and amazing. Definitely take a class with her.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fd3" + } + }, + { + "text": "Very nice professor. Literature and discussion was very insightful and helpful. Class was laidback, gives helpful comments on papers and also gives extensions if needed. Very knowledgeable as well, would definitely recommend her to anyone. One of the best professors at CCNY!!", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fd4" + } + }, + { + "text": "I have never had such an unorganized professor in my college experience thus far. She did not even remember what assignments she gave us nor did she ever give back our quizzes. She seems easy but in terms of learning something useful, that is very limited", + "pos": 0.112, + "neu": 0.834, + "neg": 0.054, + "_id": { + "$oid": "6711d38dcd60fca157e59fd5" + } + }, + { + "text": "She has to be the most easiest and the most boring professor at City College. Her class is not challenging at all what so ever. Do not take whum with her if you are a serious student who wishes to learn something in class rather than sit and do absolutely nothing. However if you are looking for an easy A, then this is the class for you.", + "pos": 0.103, + "neu": 0.825, + "neg": 0.072, + "_id": { + "$oid": "6711d38dcd60fca157e59fd6" + } + }, + { + "text": "She is undoubtedly one of the most easiest professors at City College. I personally hated the class even though i love literature. She accepts late assignments and gives easy exams and i felt this course was not challenging at all what so ever. Take it if you are looking for an A minimal work however, if you are expecting an insightful class this i", + "pos": 0.164, + "neu": 0.762, + "neg": 0.074, + "_id": { + "$oid": "6711d38dcd60fca157e59fd7" + } + }, + { + "text": "Great Professor, she makes class enjoyable and explains the material very clearly. Class discussions were a highlight of the semester. Good use of texts and fair grader. Overall one of the best professors I have taken at City. Dr. Hamilton is the best! A++++", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fd8" + } + }, + { + "text": "She's a nice professor and very lenient in general. You can expect her to know her material well, and it's nice to see that she is knowledgeable and encourages discussion. You can learn a lot from her.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fd9" + } + }, + { + "text": "BEST PROFESSOR EVER! Late homeworks accepted. Great class discussions. Very fun! No final exams! Shes awesome! highly recommended", + "pos": 0.621, + "neu": 0.309, + "neg": 0.07, + "_id": { + "$oid": "6711d38dcd60fca157e59fda" + } + }, + { + "text": "Very interesting class. She spends alot of time preparing for the class for discussions. Loves when students participates and knows her material. No finals. Would definitely recommend to a course with her", + "pos": 0.289, + "neu": 0.657, + "neg": 0.054, + "_id": { + "$oid": "6711d38dcd60fca157e59fdb" + } + }, + { + "text": "she always accepted late homework. Never gave out finals. She is the best", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fdc" + } + }, + { + "text": "She is best professor. she always accepted late homework. Never gave out finals", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fdd" + } + }, + { + "text": "She is very lenient. Always gave out breaks for the students. And she never gave out final exames in her life. The best professor I have ever met. She is wonderful", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fde" + } + }, + { + "text": "Prof. Hamilton is wonderful! loves what she studies, loves to teach. She's extremely smart. I think some students may take advantage of her generosity with lateness and extensions, which is very unfortunate. Puts a lot of time into preparation for class, and loves participation. I highly recommend her for those who want to learn.", + "pos": 0.367, + "neu": 0.588, + "neg": 0.044, + "_id": { + "$oid": "6711d38dcd60fca157e59fdf" + } + }, + { + "text": "She is a wonderful teacher. Very interesting class. You need to buy all the books she assigns and actually read them before you come to class. Gave 2 papers. Very interesting topics to choose from. Attendance is mandatory and it's best you not miss one. She's so nice and helpful. Take her if you can.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fe0" + } + }, + { + "text": "She is the best teacher I've had so far...She's very helpful and tries her best to make sure all of her students get good grades. I recommend her to anyone interested in taking her class, it's definitley worth it.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fe1" + } + }, + { + "text": "I HATE English class. She is the BEST English professor I ever had. Extremely helpful and easy going. Very easy grader. I HIGHLY recommend her to anyone taking english. I always hated writing and analyzing but she's very understanding. She saved me from dropping the class!!", + "pos": 0.271, + "neu": 0.639, + "neg": 0.089, + "_id": { + "$oid": "6711d38dcd60fca157e59fe2" + } + }, + { + "text": "Beautiful, spiritual person. Treats you with the atmost respect that you deserve. I recommend her to all students.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d38dcd60fca157e59fe3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38ecd60fca157e59fe5" + }, + "professor_name": "Alexi Margishvili", + "rating": 3.9, + "department": "Mathematics department", + "comments": [ + { + "text": "He's class was a very interesting one lol, students come in and out each class time, barely any participation, usually gives life lessons based on math, and pushes hw deadlines back cuz of procrastinators. Can't get anything below a 90 with decent studying. a lot of people formed group chats and attempted cheating, but this class isnt too hard.", + "pos": 0.087, + "neu": 0.876, + "neg": 0.037, + "_id": { + "$oid": "6711d38ecd60fca157e59fe6" + } + }, + { + "text": "MUST TAKE HE IS THE BEST! No words for you if you don't get an A in this class.", + "pos": 0.214, + "neu": 0.696, + "neg": 0.09, + "_id": { + "$oid": "6711d38ecd60fca157e59fe7" + } + }, + { + "text": "Lecturer,not teacher. Literally just copies textbook pages onto slides. I just went to the library myself and read them. Gives test reviews on blackboards before exams, study them youll pass. Makes his own final. Gives online hw, must do 3x times, way too many assignments for this policy. Youll be loaded with work. Changes due dates constantly.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59fe8" + } + }, + { + "text": "He is awesome! He gives out extra credit if you grade is low.", + "pos": 0.366, + "neu": 0.524, + "neg": 0.11, + "_id": { + "$oid": "6711d38ecd60fca157e59fe9" + } + }, + { + "text": "Definitely the best teacher to take if you care about your GPA. As others have said, he'll let you remake tests which is almost unheard of at this high of a level. However, I don't know if he's a great educator. I had to learn everything online because he rambles and has a super thick accent. Genuinely wants you to pass though so that's good.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59fea" + } + }, + { + "text": "He is \"AWESOME\". he gives lot of chance to improve grade. lot of quizzes to imporve grade. retakes exams. helps students so much . have nice class notes.", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59feb" + } + }, + { + "text": "I got a 91, 85 , 94 and 105 on my Final (He gave me an A+)! This guy is absolutely amazing! If you have a chance to take him then you shouldn't even think of any alternatives at all! It is impossible to fail his class", + "pos": 0.128, + "neu": 0.808, + "neg": 0.064, + "_id": { + "$oid": "6711d38ecd60fca157e59fec" + } + }, + { + "text": "This Prof is a confusing guy. His lectures are really great and he focuses on teaching at the fundamental level, rather than at a mechanical one. He then gives very, very difficult and long exams and then grades them with extreme leniency. It is almost like Roulette when you take his test - almost everyone \"failed\" but you may get a 90+ anyway.", + "pos": 0.063, + "neu": 0.856, + "neg": 0.081, + "_id": { + "$oid": "6711d38ecd60fca157e59fed" + } + }, + { + "text": "Professor Margishvili may be a favorite professor to lot of students because he is easy grader but he is not a fair grader. He gives nice grade to the bad student. So it is unfair to the students who really work hard. He makes lots of mistakes while posting grade. He doesn't change those grades even if he understand his mistakes.", + "pos": 0.096, + "neu": 0.651, + "neg": 0.253, + "_id": { + "$oid": "6711d38ecd60fca157e59fee" + } + }, + { + "text": "He is awesome!!!!!!! He cares about students... The teaches well, and he gives you many chances to do well if you fail a test....I recommend him!", + "pos": 0.427, + "neu": 0.484, + "neg": 0.089, + "_id": { + "$oid": "6711d38ecd60fca157e59fef" + } + }, + { + "text": "He is an amazing professor. There is almost no way for you to fail this class because he gives you so many chances to pass. He gives packets that are outlines for the test and allows you to do test corrections. His final was a group final! Who does that. If you try just a little you will pass this class. MUST TAKE!", + "pos": 0.091, + "neu": 0.833, + "neg": 0.076, + "_id": { + "$oid": "6711d38ecd60fca157e59ff0" + } + }, + { + "text": "I had doubt's about him in the beginning, seeing as this was his first time teaching 391, which is difficult already. But he went above any other professor can do for their students. He gives you LOTS of chances to pass (enough said). Advice: make him know your face by showing up everyday. Simply he's ONE OF THE BEST AND MOST OUTGOING PROFESSORS!!!", + "pos": 0.202, + "neu": 0.775, + "neg": 0.023, + "_id": { + "$oid": "6711d38ecd60fca157e59ff1" + } + }, + { + "text": "It is naturally a difficult class but Alexi will give you A LOT of extra credit. You grade your first test, second is by yourself, and third is take-home. By the final, u should have 50-60 points and only need like a 50 on the final for a B or B+. Go to his office and u can grade ALL your tests ( and change answers which he allows). A MUST TAKE !!!", + "pos": 0.095, + "neu": 0.883, + "neg": 0.022, + "_id": { + "$oid": "6711d38ecd60fca157e59ff2" + } + }, + { + "text": "Best professor ever. He had 3 in class exams and the department final, never collects homework unless counted as extra credit. He's always willing to help any student. Gives review for the exams which ends up being very similar. There is no way you can get below a B range or else something is seriously wrong with you.", + "pos": 0.139, + "neu": 0.759, + "neg": 0.102, + "_id": { + "$oid": "6711d38ecd60fca157e59ff3" + } + }, + { + "text": "It's almost impossible to fail any classes he teaches because he offers so much help. 4 tests, drops the lowest. His own finals (night classes) are KILLERS (dropped my grade from A to B just from the final). It's hard to do poorly in his math classes.", + "pos": 0.052, + "neu": 0.734, + "neg": 0.214, + "_id": { + "$oid": "6711d38ecd60fca157e59ff4" + } + }, + { + "text": "I also had Alexi for 20300. He is by far one of the best professors i have encountered since starting college. His class consist of about 3 to 4 in class exams and 1 final, rarely collect's hw. Gives review for the exams which ends up being very similar, plus offers tons of extra credit. If you do all his work you are guaranteed an A.", + "pos": 0.096, + "neu": 0.904, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59ff5" + } + }, + { + "text": "Alexi is the man to take you out of any math class, the lectures might be boring however, its much better to teach yourself bc tests are straight forward if you study and give time. takes couple of lecture to get use to his accent. It was worth taking this class because you can manage to get a decent grade. Take this guy bc he came from heaven", + "pos": 0.133, + "neu": 0.837, + "neg": 0.031, + "_id": { + "$oid": "6711d38ecd60fca157e59ff6" + } + }, + { + "text": "Study his review sheets very thoroughly. His tests just may look extremely familiar afterwards.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59ff7" + } + }, + { + "text": "Alexi is there ! His exams are a breeze if you study, allows for quiz revisions, and overall awesome. boring most of the time but you'll get somewhere TAKE ALEXI", + "pos": 0.087, + "neu": 0.862, + "neg": 0.051, + "_id": { + "$oid": "6711d38ecd60fca157e59ff8" + } + }, + { + "text": "One of the best Math Professor's out there. Really cares about his students and wants them to really understand. He prepared our class for the finals so well it felt like a walk in the park.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59ff9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38ecd60fca157e59ffb" + }, + "professor_name": "Andreas Killen", + "rating": 4.1, + "department": "History department", + "comments": [ + { + "text": "he has a no phone rule, which is reasonable, but he also has a no bathroom rule. If you go to the bathroom he locks you out, even if its just once. he says \"its a distraction\" but he then causes an even bigger distraction by yelling at grown adults for having to use the bathroom or for checking the time.", + "pos": 0.0, + "neu": 0.836, + "neg": 0.164, + "_id": { + "$oid": "6711d38ecd60fca157e59ffc" + } + }, + { + "text": "Prof. Killen is one of the best history professors in the department. Just make sure you do the readings as the lectures will be directly related to them.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59ffd" + } + }, + { + "text": "He is extremely fair and accommodating in academic and personal matters. He really cares about keeping the students engaged and presenting the information effectively, and stops to answer almost every question. He won't test on what he doesn't cover in class, and his use of videos and different writing forms enriches the class experience.", + "pos": 0.202, + "neu": 0.772, + "neg": 0.026, + "_id": { + "$oid": "6711d38ecd60fca157e59ffe" + } + }, + { + "text": "Professor Killen is awesome!! There is not much work: two exams (which you can easily study for because he tells you the topics), two writing assignments, BB posts, and a take home final. He cares about attendance and participation but he is very understanding, so let him know if you're having any issues.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e59fff" + } + }, + { + "text": "Good professor, you just need to work hard, do the readings and papers, hes chill but you gotta do the work", + "pos": 0.088, + "neu": 0.858, + "neg": 0.054, + "_id": { + "$oid": "6711d38ecd60fca157e5a000" + } + }, + { + "text": "Professor Killen is very knowledgeable. He is extremely kind and there is a lot of reading to be done for this class, but to be fair, there are only about three 3-5 page papers and a final paper. Many discussions. Would take any class he's teaching. He's attractive so if you get easily distracted by things like that, don't take his class.", + "pos": 0.208, + "neu": 0.751, + "neg": 0.042, + "_id": { + "$oid": "6711d38ecd60fca157e5a001" + } + }, + { + "text": "If you have ADHD, do not take his class. If you take this professor, you will need to attend every class on time and never be late. You will need to get weekly assignments done on time. He will only extend if you ask in advance. The coursework is good, but the professor is inflexible to students struggling with deadlines.", + "pos": 0.052, + "neu": 0.891, + "neg": 0.058, + "_id": { + "$oid": "6711d38ecd60fca157e5a002" + } + }, + { + "text": "This professor dramatically reduces grades based on grammar mistakes. He does not input original thoughts and depended largely on secondary sources. He mostly cared about how historians think rather than the factual history and his or others' point of view. I would not take his class again as the instructions were not clear and no rubrics provided", + "pos": 0.074, + "neu": 0.821, + "neg": 0.105, + "_id": { + "$oid": "6711d38ecd60fca157e5a003" + } + }, + { + "text": "he is a nice professor. gives extension when needed. there's readings every week and needs a discussion post posted on blackboard. there's a lot of reading. A LOT. would I take his class again? No. But if you are interested in the subject he is teaching take him. He is very intelligent and knows a lot.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a004" + } + }, + { + "text": "He is an excellent discussion leader, reads posts and engages as many people as possible. Get ready to read is an understatement. He loves to assign books on short notice and expects you to read 200+ pages a week, only to discuss a book for a single day. Assignments are vague, expect a lot of them. Class narrative is very biased and one-sided.", + "pos": 0.164, + "neu": 0.784, + "neg": 0.052, + "_id": { + "$oid": "6711d38ecd60fca157e5a005" + } + }, + { + "text": "I didn't have the easiest time in this class, but still, he was patient, he was nice, he took his time to explain things if you were confused, and he actually knew how to use Zoom well. Easily one of the best professors I have this semester.", + "pos": 0.251, + "neu": 0.674, + "neg": 0.076, + "_id": { + "$oid": "6711d38ecd60fca157e5a006" + } + }, + { + "text": "Prof Killen is an absolute legend in the CCNY history department! His class is very interesting despite being a difficult topic to discuss (Germany during WWII). He is clear on how he grades and he is a very fair grader.I strongly recommend taking his courses!", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a007" + } + }, + { + "text": "A great professor and so knowledgable on German history. It shows in his teaching. Be prepared for a lot of reading, but the reading is helpful for contextualizing what he talks about in class.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a008" + } + }, + { + "text": "He amazingly humble man. I can't wait till he returns from sabbatical next semester. I took his US History Psychiatry and Madness course which is a 400 level course. I loved him and the course. I worked in public mental health policy for years and never in my experience have I ever met a \"layman\" with the depth and breadth of depth of knowledge.", + "pos": 0.057, + "neu": 0.901, + "neg": 0.042, + "_id": { + "$oid": "6711d38ecd60fca157e5a009" + } + }, + { + "text": "Professor Killen is one of the best History professors at City College. Being an MA course, you would expect an excessive and a dense amount of readings, but the readings were engaging and really provided great insight on German history. He would also provide a vast amount of information and comprehension. I would definitely take his class again.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a00a" + } + }, + { + "text": "This was an MA course, so the workload was more than the average undergraduate class. Received a grade on 2 papers, one 5 pages one 15, plus attendance and reading questions. Quick recap lectures are helpful, and discussions are fruitful. I look forward to working with Prof. Killen in the future.", + "pos": 0.053, + "neu": 0.947, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a00b" + } + }, + { + "text": "Killen is amazing ! He killen it in class, makes the course exciting. Essays aren't so bad, and he tells you what you need to know before the test. Lot of reading so prepared!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a00c" + } + }, + { + "text": "Killen engagingly provides background on the reading and then opens it up to the class. Moreover, he allows freedom of expression wo emphasizing or pointing out only what he thinks is right. One of his most valuable qualities is his ability to learn from his students. I had a positive learning & teaching experience in Prof Killen's", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a00d" + } + }, + { + "text": "Killen engagingly provides background on the reading and then opens it up to the class. Moreover, he allows freedom of expression wo emphasizing or pointing out only what he thinks is right. One of his most valuable qualities is his ability to learn from his students. I had a positive learning & teaching experience in Prof Killen's class.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d38ecd60fca157e5a00e" + } + }, + { + "text": "He is a nice professor. His has a lot of readings and takes 3 exams and one final. He will give three papers and he is a harsh grader for the papers. The exams are very easy. Also, he gives extra credits in the exams. Class participation will give you points. Otherwise, he is very nice and smart and is always ready to help.", + "pos": 0.251, + "neu": 0.712, + "neg": 0.037, + "_id": { + "$oid": "6711d38ecd60fca157e5a00f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38fcd60fca157e5a011" + }, + "professor_name": "Chad Kidd", + "rating": 3.7, + "department": "Philosophy department", + "comments": [ + { + "text": "I felt like I was being taken hostage during this class. There was way too much forced reading and so many long lectures to listen to. Quizzes would fly in out of no where and explode onto my desk, and I felt as if I was in the wrong for fighting back and trying to defuse these exams. I wished every day I could be brought home", + "pos": 0.033, + "neu": 0.823, + "neg": 0.143, + "_id": { + "$oid": "6711d38fcd60fca157e5a012" + } + }, + { + "text": "Super cool professor, i took him over the summer for bioethics and it was honestly really interesting!! A lot of reading and quizzes after each reading but they were simple :) Two writing assignments, which he goes over and a final. The work was very manageable over the course of 4 weeks! Cool prof Cool class, definitely take his class :P", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a013" + } + }, + { + "text": "save yourself", + "pos": 0.762, + "neu": 0.238, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a014" + } + }, + { + "text": "soy boy", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a015" + } + }, + { + "text": "Whoever gave Professor Kidd a 1, are those who expect an A+ for just playing around. He's an amazing professor. I took other philosophy professors before non of them are as good, and chill as this guy. He truly cares. You can go up to him for practically anything. I did something stupid on my essay, he was very understanding about it.", + "pos": 0.195, + "neu": 0.759, + "neg": 0.046, + "_id": { + "$oid": "6711d38fcd60fca157e5a016" + } + }, + { + "text": "He is a very intelligent professor who cares about what he teaches. He made me like Philosophy and his class is interesting. Work is manageable. But like any philosophy course requires a lot of reading regardless of the Professors.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a017" + } + }, + { + "text": "His lectures and course material were very clear and easy to learn. I took this class over the summer a total of 4 weeks and the work load was pretty manageable and reasonable. Quizzes were easy to do as long as you ready the text and listen to the lectures. I recommend taking his class if you struggle with philosophy and want to pass. Best prof", + "pos": 0.276, + "neu": 0.695, + "neg": 0.028, + "_id": { + "$oid": "6711d38fcd60fca157e5a018" + } + }, + { + "text": "Very nuanced and high-concept material he just isn't able to explain. Assigns a lot of reading, expects student to understand things he struggles with himself, has trouble answering questions or breaking from script. Easy grader, but requires a lot of leg-work, no need for analysis or interpretation, just read everything and regurgitate lectures.", + "pos": 0.034, + "neu": 0.854, + "neg": 0.112, + "_id": { + "$oid": "6711d38fcd60fca157e5a019" + } + }, + { + "text": "Great Professor! I kind of sucked at things but I can tell that he teaches pretty well. He's a professor you can talk to and isn't snappy or rude. He hears the students out and grades fairly! I would take his class many times over just because the content was interesting as well! Listen to lectures, do papers and you will pass!", + "pos": 0.26, + "neu": 0.712, + "neg": 0.028, + "_id": { + "$oid": "6711d38fcd60fca157e5a01a" + } + }, + { + "text": "A lot of intense readings. You would have to watch his lectures prior to the class and sometimes they were 45min-1hr long which was ridiculous. His quizzes sometimes would be inconsistent which I didn't like. I HATEDDDD his SWAs because they were NOT short. They took me days and days to do but nonetheless he is a good lecturer.", + "pos": 0.079, + "neu": 0.869, + "neg": 0.052, + "_id": { + "$oid": "6711d38fcd60fca157e5a01b" + } + }, + { + "text": "He truly enjoys teaching Philosophy. Be aware of quizzes! 4 questions each, sometimes they tend to be tricky, but do the readings and watch his lectures. This should do it! There are only two short writing assignments, and he grades them as if it was your first Philosophy paper.", + "pos": 0.09, + "neu": 0.885, + "neg": 0.025, + "_id": { + "$oid": "6711d38fcd60fca157e5a01c" + } + }, + { + "text": "Only required us to do one thing which was to turn our zoom cameras on (for safety reasons and is understandable). Other than that everything else in the class was very easy to handle. Do the readings, and do well on the quizzes. They are 4 questions each so try not to get any wrong. Drops the 2 lowest. Quizzes are very important and help youlearn", + "pos": 0.169, + "neu": 0.758, + "neg": 0.073, + "_id": { + "$oid": "6711d38fcd60fca157e5a01d" + } + }, + { + "text": "Amazing professor. He knows his philosophy and you can hear it in his voice. Grading consists mainly of weekly open-book quizzes of 4 Qs (very easy if you do the readings, watch the videos and go to discussion) and 2 papers which arent that bad. He gave us lots of time to do the quizzes and was clear with grading policies. I would give him a 6/5.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a01e" + } + }, + { + "text": "Professor Kidd really loves philosophy & you can tell. He was very accommodating especially because of COVID 19. He doesn't give many assignments; his grades are based on the weekly quizzes & the small writing assessments that aren't too bad if you attend the lecture and read the assigned readings.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a01f" + } + }, + { + "text": "He is good professor. He cares about the student actually learning compare to my other professors this semester. For example, he fives two hours to do four MCs just to give you time to look back and answer. He is the reason that made me interested in phil and do a minor in it. Be ahead of the readings and ask questions because he likes that.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a020" + } + }, + { + "text": "Took Professor Kidds intro class during the summer and had an amazing experience. The reading material was interesting and weekly quizzes werent that bad. You really just have to read and grasp the material. Philosophy is an interesting topic. Professor Kidd is awesome.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a021" + } + }, + { + "text": "This class stresses me out more than chem does. Highly do not recommend", + "pos": 0.0, + "neu": 0.672, + "neg": 0.328, + "_id": { + "$oid": "6711d38fcd60fca157e5a022" + } + }, + { + "text": "Great professor, takes students comments into consideration. He makes discussions interesting. One of the thing I like about this class is you are not required to participate as much. But pay attention in class because he mentions interesting points in class that will come in handy when writing papers and doing the weekly quizzes.", + "pos": 0.161, + "neu": 0.813, + "neg": 0.027, + "_id": { + "$oid": "6711d38fcd60fca157e5a023" + } + }, + { + "text": "this dude really thinks that a short writing assignment should be 4-5 pages long... on a topic that wont get anywhere near 4-5 pages ridiculous HOW IS TJAT SHORT THO SMH", + "pos": 0.0, + "neu": 0.84, + "neg": 0.16, + "_id": { + "$oid": "6711d38fcd60fca157e5a024" + } + }, + { + "text": "Quizzes and papers are open book and based on the lectures so if you pay attention and take notes you will be fine. Questions may be tricky sometimes but if you have any concerns you can speak to him during office hours for help (very useful). Presented super interesting material. Though the lectures may be boring, they are dense and informative.", + "pos": 0.24, + "neu": 0.687, + "neg": 0.072, + "_id": { + "$oid": "6711d38fcd60fca157e5a025" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38fcd60fca157e5a027" + }, + "professor_name": "Angel Estevez", + "rating": 4.8, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Prof Estevez is super easy. He genuinely cares about students understanding Spanish. He goes very slow with his lessons and is easily approachable. He doesn't want to make things harder than necessary. I highly recommend him for all Spanish classes you're required to take. One of the best professors I've had.", + "pos": 0.298, + "neu": 0.683, + "neg": 0.019, + "_id": { + "$oid": "6711d38fcd60fca157e5a028" + } + }, + { + "text": "He is a great professor but he gave us too many papers and homework... You have to read a lot and expect a lot of readings ...", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a029" + } + }, + { + "text": "He's the best Spanish professor I've ever had, especially for college level. He is pretty clear cut with his lectures, he explains lessons thoroughly, and he is also patient. He covered preliminar chapter-5th chapter. There's a quiz at the end of each chpt. 1 midterm 1 final. Would take again for next level!", + "pos": 0.168, + "neu": 0.798, + "neg": 0.034, + "_id": { + "$oid": "6711d38fcd60fca157e5a02a" + } + }, + { + "text": "Prof. Estevez is the best spanish professor. He makes it easy to understand. He cares about students, even the ones who doesn't take the class seriously. He gives review sheet for each quizzes. He give quiz after completing a chapter. The quiz is the review sheets for midterm and finals. Not exactly an easy A for non-spanish speaker but is doable.", + "pos": 0.1, + "neu": 0.854, + "neg": 0.047, + "_id": { + "$oid": "6711d38fcd60fca157e5a02b" + } + }, + { + "text": "Professor Estevez is the best Spanish professor I have ever had. He speaks Spanish clearly and is very encouraging. I have met with him during his office hours and he encourages you to try your best. The class if very hard and he even says there is a lot of homework. But that is the departments fault not his. He does his best to teach the content!", + "pos": 0.214, + "neu": 0.725, + "neg": 0.06, + "_id": { + "$oid": "6711d38fcd60fca157e5a02c" + } + }, + { + "text": "He's a very great teacher I took his class in the fall of 2013 and he was very helpful and understanding and kind. He worked with you if you needed and made sure you understood the material. Absolutely great professor and I am taking him again in the Fall 2015 because he was just that great of a professor. Highly recommend him !!!!", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a02d" + } + }, + { + "text": "reviews for all quizzes and exams. goes over all quizzes and exams. very funny. goes at a slow pace. very understandable towards the needs of students and there issues. TAKE him because honestly and truly speaking he one of the best Spanish professor ccny has to over", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a02e" + } + }, + { + "text": "Take this class. Makes spanish so easy even for a native speaker. Nice guy. Not strict at all. Just study. Do good on the quizes and do the homework. Everything about this class is easy.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a02f" + } + }, + { + "text": "Very nice, I was terrified for learning Spanish but he really made it easy. He walks you through the steps, and makes it a point that the entire class understands.", + "pos": 0.176, + "neu": 0.754, + "neg": 0.07, + "_id": { + "$oid": "6711d38fcd60fca157e5a030" + } + }, + { + "text": "He is the best spanish professor i have ever had in city college. He is extremely patient and understanding. If your non-native and struggle with spanish definitely take him you learn a lot!! He goes at your pace and makes sure all of his students do well. I'm taking him again this semester!!", + "pos": 0.199, + "neu": 0.765, + "neg": 0.037, + "_id": { + "$oid": "6711d38fcd60fca157e5a031" + } + }, + { + "text": "Awesome guy...I should have had an A, and he made it easy to get one, but I didn't do any of the homework and never studied.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a032" + } + }, + { + "text": "A great professor overall. He actually makes the topic of Spanish Translation interesting. He enjoys a good discourse with his students and is very friendly in general. He is a very understanding person and his assignments are reasonable. Do the work and participate and you are guaranteed an A. Cool professor overall and 100% recommended.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a033" + } + }, + { + "text": "Great professor. Not many like him. You have tons of fun, learn a lot and actually retain the info. Not many like him out there!", + "pos": 0.234, + "neu": 0.638, + "neg": 0.128, + "_id": { + "$oid": "6711d38fcd60fca157e5a034" + } + }, + { + "text": "He is a very nice professor. Explains the material to be covered very clearly. he is very PATIENT. He is such an excellent prof and human being. If u want an easy A take him.He is wonderful", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a035" + } + }, + { + "text": "If you struggle with Spanish, take him. He is gentle, speaks very slowly and will answer any question you have. He is also funny and loves his students. And his tests are super easy", + "pos": 0.35, + "neu": 0.601, + "neg": 0.049, + "_id": { + "$oid": "6711d38fcd60fca157e5a036" + } + }, + { + "text": "This was an internet course. There were a lot of discussion boards and about 7 papers Then after each chapter there is a test you must complete on a specific date and time which wasnt that convinient if you have other responsibilities You must also check blackboard daily It was alot of work but it wasnt that hard Just dont be fooled thinking its ea", + "pos": 0.063, + "neu": 0.937, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a037" + } + }, + { + "text": "He is an excellent professor. He knows his stuff and will explain it to you very clearly. He is patient and fun, he's a really nice guy who gives you lots of chances and helpful advice.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a038" + } + }, + { + "text": "THIS CLASS IS KIND OF HARD, BUT HE IS THE BEST, I LOVE HIM. I UNDERSTOOD SO WELL.", + "pos": 0.498, + "neu": 0.458, + "neg": 0.044, + "_id": { + "$oid": "6711d38fcd60fca157e5a039" + } + }, + { + "text": "He's a great! Don't ever miss any of his lectures because you learn alot! He is the best!", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a03a" + } + }, + { + "text": "1 word........CALIENTE !!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a03b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d38fcd60fca157e5a03d" + }, + "professor_name": "Elizabeth Mazzola", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "Prof. Liz is understanding but is a tougher grader. She has office hours and I suggest to use them because she does help out a lot with everything. Super easy to talk to and interesting to listen to.", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a03e" + } + }, + { + "text": "She's very sweet. Her teaching is a bit confusing. She's very strict about attendance and will not excuse them! five absences equal an automatic fail. Class requires a lot of reading. Her homework was a bit confusing and she is a really tough grader. It's not an easy A class but she does teach a lot if you listen. Her class was fun.", + "pos": 0.093, + "neu": 0.772, + "neg": 0.135, + "_id": { + "$oid": "6711d38fcd60fca157e5a03f" + } + }, + { + "text": "Professor Mazzola is super sweet and always ready to hear everyone's perspectives on the readings. She does expect you to do all the readings though, and will frequently call on people during class so make sure to stay on top of them. Really enjoyed her class.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a040" + } + }, + { + "text": "Prof. Mazzola is one of the sweetest Prof., and people in general, that I've ever met! She does give a lot of reading, but she works through it every class so it's never overwhelming. Her class is very calm, and interesting and she's super knowledgable about so much. She's very engaging and understands interpretations of texts diff from her own!", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a041" + } + }, + { + "text": "Don't let her super nice persona trick you she's a really tough grader, doesn't accept revisions and her projects are the only thing I enjoyed the entire the semester. She gave 3 essays and drops the lowest grade and two easy projects. Her class discussions are boring and the reading assignments are even worst. Don't take her class trust me.", + "pos": 0.156, + "neu": 0.623, + "neg": 0.22, + "_id": { + "$oid": "6711d38fcd60fca157e5a042" + } + }, + { + "text": "One of the best teachers. Her lectures were engaging and everyone had a chance to speak. Her grading is tough but fair and really lets you know what your weak points are so you can improve next time. She drops one test and one essay. She cares about her students a lot and wants them to understand the reading. Show up on time and put in effort.", + "pos": 0.21, + "neu": 0.728, + "neg": 0.063, + "_id": { + "$oid": "6711d38fcd60fca157e5a043" + } + }, + { + "text": "I would not take her again. Her class was so boring. She takes some details and twists it to something so off. Syllabus grading is reasonable but shes harsh. repeat wat she says in class. on a positive note she is a sweet woman without a doubt.", + "pos": 0.195, + "neu": 0.707, + "neg": 0.098, + "_id": { + "$oid": "6711d38fcd60fca157e5a044" + } + }, + { + "text": "She's nice, honest and brilliant.", + "pos": 0.832, + "neu": 0.168, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a045" + } + }, + { + "text": "She really works with you. I advise everyone to go to her at least once during her office hours. She will remember your struggle and be more understanding when she is grading. She is tough on papers because she expects your points to be succinct. She drops a lot of grades. Exams are good she grades them less harshly. Very nice teacher.", + "pos": 0.085, + "neu": 0.859, + "neg": 0.056, + "_id": { + "$oid": "6711d38fcd60fca157e5a046" + } + }, + { + "text": "For a 101 class, this class was difficult. The professor is really nice and will answer any questions. class discussions are insightful. The exam is easy if you paid attention to the discussions. But when it comes to grading papers (55% of your grade) she has high expectations. I got A's and B+'s on my papers but my papers looked like a battlefield", + "pos": 0.103, + "neu": 0.824, + "neg": 0.073, + "_id": { + "$oid": "6711d38fcd60fca157e5a047" + } + }, + { + "text": "The sweetest professor you'll ever come across. Really, she is so nice (and pretty). She never insults students, or belittles them, or talks down to them as if they know nothing even though she knows so much. She will also push you to the maximum. All those complaining that she's too tough on grading need to understand the purpose of school.", + "pos": 0.137, + "neu": 0.815, + "neg": 0.048, + "_id": { + "$oid": "6711d38fcd60fca157e5a048" + } + }, + { + "text": "She was very engaged in the class discussion and managed to get many people to participate. It was absolutely necessary to do the reading (and if you're taking a level 300 English class you should want to do this anyway...) tough grader on papers, but what she wants is not beyond what is necessary for an English major to survive in the real world.", + "pos": 0.048, + "neu": 0.933, + "neg": 0.019, + "_id": { + "$oid": "6711d38fcd60fca157e5a049" + } + }, + { + "text": "Angelic voice, intelligent professor. Clear grader. Lectures felt aimless though. She calls on everyone who raises their hand even writing names on the board as a waiting list. Class became a blitz of random comments. At times she seemed tired, in class and out. I saw her incidentally by her office &she ran to hide to avoid questions presumably.", + "pos": 0.128, + "neu": 0.773, + "neg": 0.099, + "_id": { + "$oid": "6711d38fcd60fca157e5a04a" + } + }, + { + "text": "She's so nice - reminded me of those air-hostesses on the planes. She encourages everyone to visit her at office hours (\"that's my job\"). Do note, however; she is super-nice but also super-tough. She grades papers like a monster. But you know what, thats how grading should be. If you get an A in her class, then you know you're something special.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d38fcd60fca157e5a04b" + } + }, + { + "text": "She's passionate about getting you to learn your course objectives intimately. Great personality, witty sense of humor. Lots of class participation. Dedicated, always accessible and shows a genuine interest in your progress. Nothing worth having comes easy, so yes, she will challenge you, but only to the extent in which you give her your very best!", + "pos": 0.342, + "neu": 0.639, + "neg": 0.019, + "_id": { + "$oid": "6711d38fcd60fca157e5a04c" + } + }, + { + "text": "This professor channels her inner Yoda, so if you are bot prepared to give your soul for a great or even good grade then you should take someone else. She is an excellent teacher, but very demanding. Class participation is crucial. Be willing to open up to alternative opinions and you will do well.", + "pos": 0.177, + "neu": 0.777, + "neg": 0.045, + "_id": { + "$oid": "6711d38fcd60fca157e5a04d" + } + }, + { + "text": "She is the sweetest professor you will ever encounter but she is also on of the toughest graders. you have to do the reading or you will fall behind.", + "pos": 0.0, + "neu": 0.951, + "neg": 0.049, + "_id": { + "$oid": "6711d38fcd60fca157e5a04e" + } + }, + { + "text": "This professor is the nicest you'll meet and also the hardest to impress. She really wants your soul and will keep digging till she gets what she wants from you in discussions or papers. Loves lit and knows her material but can be a bit unclear in what she wants in essays. take this professor if your up for a challenge...and giving up your soul.", + "pos": 0.132, + "neu": 0.833, + "neg": 0.035, + "_id": { + "$oid": "6711d38fcd60fca157e5a04f" + } + }, + { + "text": "Undeniably, she is the nicest professor I ever had. Unfortunately, it is not easy to get an A at her class because she is very restricted in papers. Nevertheless, I do learn something from her class. I strongly recommend to those who writes very well to take this professor.", + "pos": 0.17, + "neu": 0.701, + "neg": 0.129, + "_id": { + "$oid": "6711d38fcd60fca157e5a050" + } + }, + { + "text": "knows her material; has fixed ideas about what it all means and does not flex; values individual viewpoint less than she believes she does. BUT -- material was fascinating, and guidance through it was thorough.", + "pos": 0.121, + "neu": 0.838, + "neg": 0.041, + "_id": { + "$oid": "6711d38fcd60fca157e5a051" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d390cd60fca157e5a053" + }, + "professor_name": "Craig Daigle", + "rating": 3.5, + "department": "History department", + "comments": [ + { + "text": "He's not an educator, only speaks to certain students and the course topic does not match course work. All the work has to do with his lifelong research (his books and papers). Cancels class frequently and not much assistance in or outside of class.", + "pos": 0.046, + "neu": 0.913, + "neg": 0.041, + "_id": { + "$oid": "6711d390cd60fca157e5a054" + } + }, + { + "text": "Grades go down like a roller coaster with this professor. Each quiz and exam is made up for \"anti-cheating\". In other words, you have to decode each question. 15 min for 10 questions. Quiz/exams close up if there's any blackboard or connection issue. THIS IS THE BEST WAY TO F YOUR GPA.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a055" + } + }, + { + "text": "I loved Professor Daigle. He made what would usually be really boring material actually interesting. However, too many quizzes.", + "pos": 0.262, + "neu": 0.635, + "neg": 0.103, + "_id": { + "$oid": "6711d390cd60fca157e5a056" + } + }, + { + "text": "HE WAS NEVER AVAILABLE OUTSIDE OF CLASS. Over a course of 3 weeks, he was only available to speak to students ONCE after class. There were over 4 times that a CORRECT answer was marked as incorrect on his quizzes, quizzes that were worth 50% of our grades! He does NOT care about his students succeeding, only rushing through his long ass lectures.", + "pos": 0.072, + "neu": 0.837, + "neg": 0.091, + "_id": { + "$oid": "6711d390cd60fca157e5a057" + } + }, + { + "text": "He is teaching undergraduates and treats them at a graduate level. He does not provide outlines for his quizzes or final which is the only thing the class is being graded on. His quizzes and final are automatically graded, he is too lazy to actually give assignments that would help us bring our grade us. Not sure why he even has positive reviews", + "pos": 0.09, + "neu": 0.846, + "neg": 0.064, + "_id": { + "$oid": "6711d390cd60fca157e5a058" + } + }, + { + "text": "Though this professor is extremely insightful and clearly knowledgable in his field of work, he was not very helpful towards his students. When giving a lecture, he would mute ALL of us and \"RECORDED\" the lectures, but would not post it on Blackboard for us to review. If you missed class or did record, you were basically screwed. Lucky I passed.", + "pos": 0.104, + "neu": 0.772, + "neg": 0.125, + "_id": { + "$oid": "6711d390cd60fca157e5a059" + } + }, + { + "text": "DO NOT EVERRR take this class during the Winter Session. BIGGEST challenge ever. Although the syllabus was clear and straight to the point, the readings are EXTREMELY heavy and the questions do not coincide with the amount of daily readings and lectures there are. LOTS of \"EXCEPT\" questions, so be careful when choosing answers.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a05a" + } + }, + { + "text": "I AM WARNING ALL STUDENTS !! DO NOT TAKE THIS COURSE DURING THE WINTER! EXTREMELY DIFFICULT! If you do not have a study buddy you WILL FAIL! Your grade is based on 50% quizzes and 50% a final exam. When he lectures, he mutes all his students, even though he is not even recording it. After he is done talking, he is rushing to leave.", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d390cd60fca157e5a05b" + } + }, + { + "text": "The best experience I have ever had at CCNY. His classes are always a starting point. He has an excellent handling of his subjects. He encourages participation and discussion. Absolutely recommended", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a05c" + } + }, + { + "text": "One of the most reading intensive classes I've taken, make friends to help study. The lectures are jam packed with info but he is so effective at breaking down the development and consequences of major events. I feel like my brain grew in this class. Prof does a great job handling politically charged conversations and multiple perspectives.", + "pos": 0.256, + "neu": 0.713, + "neg": 0.031, + "_id": { + "$oid": "6711d390cd60fca157e5a05d" + } + }, + { + "text": "DON'T BE FOOLED. I thought he was somewhat chill since his syllabus got to the point and everything seemed easy to get done. But at the end although i did almost everything i still ended with a D -_-. I didn't do two of his homework assignments and did poorly on his midterm and quiz and that is all it took for me to get a D. His midterm was bs too.", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a05e" + } + }, + { + "text": "Prof Daigle was the best of the five history professors I've taken at CCNY so far. He's demanding but if you put in the work you'll learn more than any other class and he will award you accordingly. He's direct but really cares about each student and works with you based on your skills. His course on Cold War and International History was amazing.", + "pos": 0.207, + "neu": 0.708, + "neg": 0.085, + "_id": { + "$oid": "6711d390cd60fca157e5a05f" + } + }, + { + "text": "I have never seen such a tough grader before! Ridiculous! So much of homework and quizzes and exams. You get no review sheets for exams either. Quizzes are badly timed, you definitely need more time. I can't do 15 questions in 10 mins.", + "pos": 0.053, + "neu": 0.751, + "neg": 0.195, + "_id": { + "$oid": "6711d390cd60fca157e5a060" + } + }, + { + "text": "I've taken Prof. Daigle for many classes and every time he's been great. He's a tough grader and will assign lots of readings but he's super knowledgeable on what he teaches and has a lot of great resources to recommend for papers. He also gives great feedback and is super accessible via email.", + "pos": 0.37, + "neu": 0.613, + "neg": 0.017, + "_id": { + "$oid": "6711d390cd60fca157e5a061" + } + }, + { + "text": "Tough professor, tough grader, get ready for A LOT of reading (200 pgs per week). Prof. Daigle is a bit impatient and tends to interrupt the students a lot, but he's super knowledgeable in what he teaches. Taking good notes in class also helps.", + "pos": 0.256, + "neu": 0.641, + "neg": 0.103, + "_id": { + "$oid": "6711d390cd60fca157e5a062" + } + }, + { + "text": "He is really good with orienting you to research resources. If you want to learn how to write a good research paper, take one of his graduate classes. He is excellent.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a063" + } + }, + { + "text": "Professor Daigle is a respected professor at CCNY, and he definitely knows his stuff, but his style just isn't right. He was rarely accessible outside of class, by email or in person, and didn't seem interested in my understanding of the material. MA classes have a disconnect, but I find teachers that are more inclined to engage help students more.", + "pos": 0.159, + "neu": 0.799, + "neg": 0.042, + "_id": { + "$oid": "6711d390cd60fca157e5a064" + } + }, + { + "text": "Knows his stuff; makes sure you know the basics .", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a065" + } + }, + { + "text": "Daigle is clearly knowledgeable about his topic and his class is a valuable one. However, it seems the student experience with him ranges substantially. I've talked to people who have had positive experiences, people who were largely ignored (both during lecture and when handing back written work) and others who thought he was abrasive.", + "pos": 0.152, + "neu": 0.81, + "neg": 0.037, + "_id": { + "$oid": "6711d390cd60fca157e5a066" + } + }, + { + "text": "Great class!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a067" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d390cd60fca157e5a069" + }, + "professor_name": "Bruce Kim", + "rating": 2.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Class takes up manyyy hours so pair it with easy classes. Material not bad as some people say but wish he gave projects/homeworks requiring less time. Grading is clear just follow given report formats and work with peers. Exams/quizzes open book but wish quizzes had more time. Review past exams for question types; answers are often found in slides.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a06a" + } + }, + { + "text": "Kim is not that bad of a professor. The class is very project heavy so make sure to set time aside to do project and reports before deadlines. Avoid handing things late. I would recommend not to take course with other heavy classes in your degree. Open notes and open textbook for quizzes and exams.", + "pos": 0.13, + "neu": 0.834, + "neg": 0.036, + "_id": { + "$oid": "6711d390cd60fca157e5a06b" + } + }, + { + "text": "His exams are open book and he will tell you what to review beforehand. His projects however are rough and it will take over 30+ hours. But if you are able to push through you can be able to pass easily. He is a lenient grader but the downside is he will take a while to grade so just beware. He is a decent prof. doesnt not deserve the hate.", + "pos": 0.125, + "neu": 0.843, + "neg": 0.032, + "_id": { + "$oid": "6711d390cd60fca157e5a06c" + } + }, + { + "text": "He needs to consider the possibility that classes, exams, and homework should be moved to online and take home so that we can have more time to study, prepare for exams, and not be stressed from the commute along with the growing tensions and war!", + "pos": 0.072, + "neu": 0.794, + "neg": 0.133, + "_id": { + "$oid": "6711d390cd60fca157e5a06d" + } + }, + { + "text": "Any positive review that is written about him was either written by him or students trying to troll others into taking this course. This class is designed to be the only class you take over the semester. The sheer amount of work is almost impossible to complete and the professor shows zero consideration for the student's needs and circumstances.", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a06e" + } + }, + { + "text": "He is good for nothing, and it is upsetting to see how many students have had terrible experiences with him as their professor. I believe that this behavior goes against the values of the Electrical Engineering Department and should be dealt with accordingly. B", + "pos": 0.108, + "neu": 0.772, + "neg": 0.12, + "_id": { + "$oid": "6711d390cd60fca157e5a06f" + } + }, + { + "text": "Bruce Kim is a problematic professor. Many students have expressed their dissatisfaction with him, citing his disrespectful attitude, excessive workload and failure to understand his students' efforts in the exams, attendance, projects, quizzes and assignments. Besides, his projects take forever to complete and often go past the deadlines he sets.A", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d390cd60fca157e5a070" + } + }, + { + "text": "THE WORST HE DONT LIKE O BENGALI", + "pos": 0.0, + "neu": 0.446, + "neg": 0.554, + "_id": { + "$oid": "6711d390cd60fca157e5a071" + } + }, + { + "text": "Bruce Kim is a good for nothing!", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a072" + } + }, + { + "text": "Not a bad professor. Grades generously despite no curve. Projects take time but if you start early, they should be no problem. Tests/quizzes are pretty light, as long as you have a basic understanding of the material. Pretty strict attendance policy, but overall he's a chill dude. Make friends in this class and you'll have fun.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a073" + } + }, + { + "text": "Overall, the class was really interesting. The test and quizzes are based off the materials he teaches. He does go off on tangents in class but he's funny and caring. The projects are very time consuming so don't leave them until the last minute! If the professor says the project is 30+ hours believe him.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a074" + } + }, + { + "text": "Pros:\n- Quizzes and exams are always related to the lectures\n- Professor is lenient in grading\n\nCons:\n- Projects can be very time consuming, make sure to set extra time for this class\n- Professor takes forever in grading\n\nOverall, the class is not bad but the projects can be the reason why many people struggle with this class.", + "pos": 0.08, + "neu": 0.874, + "neg": 0.046, + "_id": { + "$oid": "6711d390cd60fca157e5a075" + } + }, + { + "text": "The class overall requires a lot of time, especially when it comes to the projects since the software is very glitchy. Three projects, three quizzes, 3 hw assignments, and a midterm/final. Exams are fair and open notes.", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a076" + } + }, + { + "text": "He is very lenient on grading and gives tons of partial but unforgiving if you make a critical error which are really easy to avoid. His projects are tedious and uses shoddy software with few tutorials but are very good experience for the field. Definitely disorganized and hard to know what exactly he wants but still possible to get an A", + "pos": 0.173, + "neu": 0.651, + "neg": 0.176, + "_id": { + "$oid": "6711d390cd60fca157e5a077" + } + }, + { + "text": "This professor knows that students are taking this class near the end of their degree and he knows that you are busy and have other classes and obligations and yet assigns impossible projects that take enormous chunks of your time. These projects use an obsolete computer program that has almost NO tutorials online.", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d390cd60fca157e5a078" + } + }, + { + "text": "He failed half of my class I got lucky with C- too much work!", + "pos": 0.152, + "neu": 0.652, + "neg": 0.195, + "_id": { + "$oid": "6711d390cd60fca157e5a079" + } + }, + { + "text": "This professor is one of the best one I took in the EE department. I had so much fun taking him. You wont regret!", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a07a" + } + }, + { + "text": "When he said that the project will take 25 hours, what he really means is 150 hours. You will spent 10 hours to design each gate. Then 60 hours to implementing 196 gates, 2500 networks and 16,000 connections on schematics and layout. Then about 50 hours for simulation and troubleshooting. Lastly, 30 hours for a report. This was just project 2.", + "pos": 0.028, + "neu": 0.972, + "neg": 0.0, + "_id": { + "$oid": "6711d390cd60fca157e5a07b" + } + }, + { + "text": "It's mid-November and I haven't received any feedback from any of my work. Many students are having anxiety about this because of his reputation to be a really tough grader. Students need to learn from their mistakes to improve, he is taking this away from us. Also, be careful because he will monopolize your time. The projects are extremely long.", + "pos": 0.068, + "neu": 0.815, + "neg": 0.118, + "_id": { + "$oid": "6711d390cd60fca157e5a07c" + } + }, + { + "text": "I'm currently taking Kim, as a lecturer, he's disorganized and is just boring. He also goes on many tangents. His projects are tough but are really interesting and you learn a lot. As a grader he's very maticulous, strict and takes forever to grade anything", + "pos": 0.081, + "neu": 0.828, + "neg": 0.091, + "_id": { + "$oid": "6711d390cd60fca157e5a07d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d391cd60fca157e5a07f" + }, + "professor_name": "Vincent Boudreau", + "rating": 3.4, + "department": "Political Science department", + "comments": [ + { + "text": "Very interesting guy and he knows his stuff. He genuinely wants you to know what's going on and he makes difficult concepts simple to understand. He records all of his classes and posts them to blackboard,but I still recommend coming to class so you can play off of his ideas and get his feedback.", + "pos": 0.134, + "neu": 0.824, + "neg": 0.041, + "_id": { + "$oid": "6711d391cd60fca157e5a080" + } + }, + { + "text": "Great professor! Intelligent, insightful, and passionate. He makes you WANT to become aware of what is taking place on the global stage. Which is something that the youth fails to do.", + "pos": 0.308, + "neu": 0.625, + "neg": 0.067, + "_id": { + "$oid": "6711d391cd60fca157e5a081" + } + }, + { + "text": "I was never interested in the subject and barely attended lectures so i got the grade i deserved-C. I think this class is not very hard, you just have to attend lectures and read! Thats the key. He really does know his subject and teaches well and i am not blaming him for my bad grade, i deserved it. He is worth taking, just be present in class.", + "pos": 0.111, + "neu": 0.814, + "neg": 0.076, + "_id": { + "$oid": "6711d391cd60fca157e5a082" + } + }, + { + "text": "I took his Comparative Politics (Southeast Asia) class and he made it absolutely worthwhile. Unfortunately, I was unable to go to every class which made it harder to catch up because the readings were more complex than what I could handle at that time. But he has opened my eyes to the works of Said, Anderson, Lijphart and even his own. His influenc", + "pos": 0.029, + "neu": 0.943, + "neg": 0.028, + "_id": { + "$oid": "6711d391cd60fca157e5a083" + } + }, + { + "text": "Poli of Protest. I like Boudreau, but this class was horrible. The readings were mostly sociology and theory not much politics. They were all difficult. he didnt do a good job of explaining them either. Assignments were hard. He should consider doing PP or something just so students get the main point from the readings. Material is boring to.", + "pos": 0.025, + "neu": 0.733, + "neg": 0.242, + "_id": { + "$oid": "6711d391cd60fca157e5a084" + } + }, + { + "text": "HES SO HOT. I like his class alot and i loved it. This semester was probably one of the best in my college career. TAKE HIM!", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a085" + } + }, + { + "text": "Great guy, super hot. He has a way with language that'll bring a girl to her knees. He is very lenient when it comes to attendance because your grades will be a reflection of that. His only downfall, I would say, is that he doesn't prepare students well for exams. A whole lot of reading, not enough direction on what to focus on for exams, but HOT!", + "pos": 0.098, + "neu": 0.882, + "neg": 0.02, + "_id": { + "$oid": "6711d391cd60fca157e5a086" + } + }, + { + "text": "Took World Politics with the man.Good Professor, knows his stuff, but forces you to think and sometimes he goes off topic. (1) 5-7pg paper, (6) 1pg journals, midterm and final. DO the readings and take notes b/c the tests are based on them. Seems like alot of work but its not. just stay on top of it and youll be fine.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a087" + } + }, + { + "text": "Multiple classes with Vince. The man is awesome! Those slagging him are indubitably lazy whiners that wanted an easy grade rather than actually learning something. One of the few individuals who changed the way I thought of the world. I'm so sorry he actually tried to make a few of you learn something rather than simply tossing you an A or a B.", + "pos": 0.103, + "neu": 0.815, + "neg": 0.082, + "_id": { + "$oid": "6711d391cd60fca157e5a088" + } + }, + { + "text": "I thought I was a politics person until I took this class. I was even considering majoring in Political Science, but after taking this class, I knew it wasnt for me. I had to drop the class in October. If you are not into world politics, NEVER take this class. He is nice, but his lectures are boring as HELL. He gives weird assignments. DONT RECOMME", + "pos": 0.046, + "neu": 0.764, + "neg": 0.19, + "_id": { + "$oid": "6711d391cd60fca157e5a089" + } + }, + { + "text": "Self-absorption will gain a new meaning in your dealing with this professor. He is the funniest example of the pseudo-intellectual who likes to elaborate on even the smallest things with the refined language but in reality says nothing about the subject-matter. He should have been a LINGUIST! Political Science requires more wit and intellect.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a08a" + } + }, + { + "text": "He is okay. I mean, I like that he doesn't talk through out the class and ask a lots of question to try to draw people into discussion. He is a good guy and student friendly. 1 Final 25 % 1 10 page paper on anything to do with Asian politics 25% 1 Midterm 25% 1 quiz 10% and 15 attendence and stuff...", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a08b" + } + }, + { + "text": "great prof. expects alot but puts much into class. He is always willing to help students.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a08c" + } + }, + { + "text": "He is one of the worst Prof. I ever had. I could not stand him within the classroom or outside of it. He is very unclear about expectations and plays favorites with those who stroke his overwhelmingly large EGO enough.", + "pos": 0.101, + "neu": 0.734, + "neg": 0.165, + "_id": { + "$oid": "6711d391cd60fca157e5a08d" + } + }, + { + "text": "supernarcisistic!!! yep...that's all what you get from this guy.let's not talk about his grading. if you thought in finding a nurturing scholar, this is the wrong class. The content: pol.sci methods, you can take the same class with prof. Woodward (GC) who made Boudreau's original syllabus and is a better professor. he's only an unsecure copy-cat", + "pos": 0.141, + "neu": 0.81, + "neg": 0.048, + "_id": { + "$oid": "6711d391cd60fca157e5a08e" + } + }, + { + "text": "If you ever need anything (help, advising, mentoring, just about anything) ask Boudreau for it....he's very much a hands on administrator and mentor.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a08f" + } + }, + { + "text": "Intelligent but narcissistic; difficult and narrow point of view... it is his way or out of the way.... takes a concept and makes it even more problematic by not explaining it but making it more complex and deep.. Don't take his class!!", + "pos": 0.041, + "neu": 0.794, + "neg": 0.165, + "_id": { + "$oid": "6711d391cd60fca157e5a090" + } + }, + { + "text": "The last person I'd expect to be narcissistic. Anybody who doesn't do well in his class is plain lazy, but you learn alot and you learn critical skills that you will definitely need in your MA. Tough and fair.", + "pos": 0.137, + "neu": 0.697, + "neg": 0.166, + "_id": { + "$oid": "6711d391cd60fca157e5a091" + } + }, + { + "text": "One of the worst professors at CCNY; a condescending narcissist who lacks the basic teaching skills\u2026horrible lecturer. Avoid at all cost. His is the main reason why I won't even consider earning my MA in International Relations at CCNY.", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d391cd60fca157e5a092" + } + }, + { + "text": "He wants people who agree with his ideas", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a093" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d391cd60fca157e5a095" + }, + "professor_name": "Jaqueline Braveboy-Wagner", + "rating": 2.5, + "department": "Political Science department", + "comments": [ + { + "text": "She is extremely knowledgeable about Foreign Policy and International Relations. If you have not taken International Relations then you might struggle. She also uses just one book which is extremely dense and hard to read at times. The class is fun and she can be funny at times. But she talks extremely low at times making it hard to hear at times.", + "pos": 0.06, + "neu": 0.826, + "neg": 0.113, + "_id": { + "$oid": "6711d391cd60fca157e5a096" + } + }, + { + "text": "She is a tough grader. Her exams consists of in-class lectures. As such, you must make sure you take daily notes of the lecutres and simultaneously read the book and assigned readings. This is NOT an easy A class. If you seeking to goof around and get a good grade, her classes are not for you.", + "pos": 0.085, + "neu": 0.851, + "neg": 0.064, + "_id": { + "$oid": "6711d391cd60fca157e5a097" + } + }, + { + "text": "If you want an A, you're going to have to work to the bone for it. The midterm is very long and it comes from her lectures and readings, so make sure you come to class, take good notes and pay close attention. The textbook is very wordy and dense too. There is a tricky final exam, and a few small assignments. Have fun and get ready to work.", + "pos": 0.162, + "neu": 0.799, + "neg": 0.039, + "_id": { + "$oid": "6711d391cd60fca157e5a098" + } + }, + { + "text": "Avoid at all costs. Her midterm is a series of 10 essays and another short essay. Her lectures are just her reading from the textbook and interjecting with anecdotes. If you don't listen in class it's fine, just do all of the readings. She grades most assignments with a check/check-plus/check-minus, and she's a hard grader. Avoid at all costs.", + "pos": 0.029, + "neu": 0.879, + "neg": 0.093, + "_id": { + "$oid": "6711d391cd60fca157e5a099" + } + }, + { + "text": "Tough grader, very unorganized. If you do the readings, and engage in class, you MIGHT get a good grade. Make sure to speak to her during her office hours regarding class and the text.", + "pos": 0.194, + "neu": 0.767, + "neg": 0.038, + "_id": { + "$oid": "6711d391cd60fca157e5a09a" + } + }, + { + "text": "She is not very bad teacher but she is not organized enough to teach sometimes very hard to understand what she says", + "pos": 0.084, + "neu": 0.831, + "neg": 0.085, + "_id": { + "$oid": "6711d391cd60fca157e5a09b" + } + }, + { + "text": "She is not a bad professor but you will have to work for your grade though. There is an assigned essay at midterm and finals period so make sure you do well on that. Participate frequently as possible and always be present. Also, make sure you read the textbook.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a09c" + } + }, + { + "text": "She's an amazing professor. She gave no tests throughout the course, just a few easy assignments. Overall, the whole class liked her. I would definitely take her again.", + "pos": 0.326, + "neu": 0.615, + "neg": 0.059, + "_id": { + "$oid": "6711d391cd60fca157e5a09d" + } + }, + { + "text": "She's actually a very good teacher. I enjoyed all sessions, as long as you do the readings you should be able to engage in class. She will make sure you do engage so be prepared.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a09e" + } + }, + { + "text": "OMG. Terrible teacher. I hated this class. If you read the intro to the textbook and read a newspaper you'd know more than she teaches. She proves that any idiot can get a doctorate if they stay in school long enough. Avoid her if at all possible. God speed.", + "pos": 0.036, + "neu": 0.747, + "neg": 0.217, + "_id": { + "$oid": "6711d391cd60fca157e5a09f" + } + }, + { + "text": "Class; 'Cont Intl Conflict' many years ago. Text by Seyom Brown. She rarely made it to class on time, if at all. Stated 25 page paper was required then refused to read anything over 7. Student rebellion to Dean. The worst professor I ever had. Do NOT criticize Israel in her class. Not libeling her, I can back assertions w/ transcripts, papers, etc.", + "pos": 0.031, + "neu": 0.825, + "neg": 0.144, + "_id": { + "$oid": "6711d391cd60fca157e5a0a0" + } + }, + { + "text": "Braveboy-Wagner is a great professor with tons of experience working in the political world. She's caring & helpful; Not a very difficult course- just read the book, attend class and do your work!", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a0a1" + } + }, + { + "text": "I really disagree with some of the ratings here, and I think most of my friends would disagree too. I found this professor to be funny, very knowledgeable + has lots of practical experience, she was never late and very helpful. Do the papers well, I certainly recommend her classes.", + "pos": 0.256, + "neu": 0.658, + "neg": 0.086, + "_id": { + "$oid": "6711d391cd60fca157e5a0a2" + } + }, + { + "text": "She is unhelpful, not interested with the students,she make students work all the time, while she just inputs her thoughts. She gives an impression that she is tough, totally unhelpful.", + "pos": 0.058, + "neu": 0.827, + "neg": 0.115, + "_id": { + "$oid": "6711d391cd60fca157e5a0a3" + } + }, + { + "text": "Avoid this class if you can.", + "pos": 0.0, + "neu": 0.694, + "neg": 0.306, + "_id": { + "$oid": "6711d391cd60fca157e5a0a4" + } + }, + { + "text": "You are probably Sci student to be reading this. Anyways, you have to take Braveboy-Wagner whether you like it or not but,RELAX shes a very nice and caring woman, all you have to do is dont miss classes pay attention and do all your papers on TIME. I took her twice and will take her again!", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d391cd60fca157e5a0a5" + } + }, + { + "text": "This Prof. is all about ass-kissing. She is very moody and does not like to give A's on principle. She is not clear about what she expect's from your written assignments. They are just wrong! I would guess that her mood greatly affects your grade. She is an expressive feminist outside of the classroom. So guys, be very careful about what you say.", + "pos": 0.027, + "neu": 0.824, + "neg": 0.149, + "_id": { + "$oid": "6711d391cd60fca157e5a0a6" + } + }, + { + "text": "When in a good mood, Prof. is funny and class is enjoyable; when she's in a bad mood, it's miserable. Was vague about assignments, didn't stick to syllabus, then was annoyed at the class's confusion. HATES late papers and expects a lot without giving much. I did pretty well, but if you value your sanity/dignity, don't take her class.", + "pos": 0.177, + "neu": 0.644, + "neg": 0.179, + "_id": { + "$oid": "6711d391cd60fca157e5a0a7" + } + }, + { + "text": "I will be avoiding this professor in the future. The class had no prerequisites yet she expected everyone to be fully-versed in International Relatons theories. Hard grader. Interesting class, but when it comes to assignments, she is so vague and broad in her expectations that its near impossible to know what she wants.", + "pos": 0.033, + "neu": 0.847, + "neg": 0.12, + "_id": { + "$oid": "6711d391cd60fca157e5a0a8" + } + }, + { + "text": "I wasn't very sure what she wanted from me as a student, she was very vague.", + "pos": 0.0, + "neu": 0.783, + "neg": 0.217, + "_id": { + "$oid": "6711d391cd60fca157e5a0a9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d392cd60fca157e5a0ab" + }, + "professor_name": "Ruth Ellen Proudfoot", + "rating": 3.6, + "department": "Psychology department", + "comments": [ + { + "text": "Proudfoot is wonderful. She enjoys teaching statistics and it's easy to do well in this class if you listen carefully in lecture and do the homework. Take notes on conceptual parts...that's what her short answer questions test...your FULL understanding of the material. She's clear in class but does move quickly, so don't lose focus for a moment.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0ac" + } + }, + { + "text": "theres no textbook, shes gives out her own workbook. her class is all about the test, it dont matter it you participate or if your absent half the time, its all bout the test. Shes grades harshly. If theres an easier professor take it. she wont answer your question, just simply talks for 2 hrs striaght, not the greatest but not the worst either", + "pos": 0.09, + "neu": 0.841, + "neg": 0.069, + "_id": { + "$oid": "6711d392cd60fca157e5a0ad" + } + }, + { + "text": "Awesome teacher! No need to spend $ on a textbook, as her booklet has everything you need to know. Gives you lots of quizzes and you can drop the lowest quiz. The final is worth as much as a quiz, but it is all short answer questions which are much more difficult than the rest of the quiz q's. However, you are can bring index cards to all the tests", + "pos": 0.052, + "neu": 0.832, + "neg": 0.116, + "_id": { + "$oid": "6711d392cd60fca157e5a0ae" + } + }, + { + "text": "Shes's an excellent prof. The material is just too difficult! DONT MISS A SINGLE CLASS and do all her hw, it will all pay off at the end!", + "pos": 0.184, + "neu": 0.702, + "neg": 0.114, + "_id": { + "$oid": "6711d392cd60fca157e5a0af" + } + }, + { + "text": "She is a good Prof., this is just a hard course. The only thing I really didn't like about her was she doesn't like when students ask questions. So lessons go with her speaking for two hours and students just sitting there Wanting to ask questions. Trust me with this class you will have lots of questions. Grades are heavily based on exams.", + "pos": 0.088, + "neu": 0.827, + "neg": 0.084, + "_id": { + "$oid": "6711d392cd60fca157e5a0b0" + } + }, + { + "text": "She is nice but the material is killer. The short answer problems are hard and thats what the final consists of. The actual math is easy. She goes strictly on grades effort doesnt count. There is no text book but her reviews are to quick unless you ask specific questions they arent that helpful.", + "pos": 0.083, + "neu": 0.675, + "neg": 0.243, + "_id": { + "$oid": "6711d392cd60fca157e5a0b1" + } + }, + { + "text": "Proudfoot's booklet has almost everything you'll ever need in it and whatever is missing is more than compensated for in her lectures. She's super clear and lets you use index cards with virtually anything written on them for the quizzes so you really have to be dense to fail. Do the HW, pay attention and the class is very easy!", + "pos": 0.14, + "neu": 0.76, + "neg": 0.1, + "_id": { + "$oid": "6711d392cd60fca157e5a0b2" + } + }, + { + "text": "this is the hardest class for the major. the professor explains well, however, there is no use of a text book, just some notes. it gets very hard at some point when there are no formulas and you have to start guessing things. can't ask her no questions. keep in mine it's 2 hours of math with no break in the middle. take math 150 before this class.", + "pos": 0.054, + "neu": 0.835, + "neg": 0.112, + "_id": { + "$oid": "6711d392cd60fca157e5a0b3" + } + }, + { + "text": "this class is really hard, the workbook she gives out doesn't really help much at all no textbook either. I tried my best in the class and yet everything she explained really didn't help...the final exam was short answer only so there wasn't any computations..if you really want to pass this class then I suggest u take this class with a different pr", + "pos": 0.083, + "neu": 0.827, + "neg": 0.091, + "_id": { + "$oid": "6711d392cd60fca157e5a0b4" + } + }, + { + "text": "Shes an excellent teacher, the best i ever had so far. She will explain you every thing that will be on the test. You are allowed to use index cards so the test are NOT that Hard...only if u did all the work. There is Hw for every class, she wont check the hw, but u have to do it if u wanna understand the material for the test. Proudfoot is awsome!", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0b5" + } + }, + { + "text": "Incredible professor. Very knowledgeable. You have to do the work, daily homework reinforces the previous classes' lecture. You're allowed to bring note cards into tests, but her tests are structured in a way that you need to really understand the material. If you are willing to work, you will do fine. Not an easy class if you are a slacker.", + "pos": 0.035, + "neu": 0.916, + "neg": 0.049, + "_id": { + "$oid": "6711d392cd60fca157e5a0b6" + } + }, + { + "text": "Excellent professor. You must do all of the assignments on time, or else you may become hopelessly lost. She recognizes sincere students with the sole intention to learn...demonstrate that quality, do the work, and you will be successful in her course.", + "pos": 0.197, + "neu": 0.696, + "neg": 0.106, + "_id": { + "$oid": "6711d392cd60fca157e5a0b7" + } + }, + { + "text": "Very good professor, but she is also hard. If your bad at math you out of luck even if you bring a shoe box of index for the test. Dont ask questions because she gets annoyed with nonsense. Come to class every time. Dont let her hear you cell or else she will put you as an absent. She only cares about grades not your effort on the class", + "pos": 0.118, + "neu": 0.726, + "neg": 0.156, + "_id": { + "$oid": "6711d392cd60fca157e5a0b8" + } + }, + { + "text": "the professor makes you believe that the work is easy but it is not!!! Her exams are hard and she will not take the time to help you or answer questions. I recommend avoiding her class!!!`There is no textbook so there is no reference. Stay AWAY!!!", + "pos": 0.147, + "neu": 0.654, + "neg": 0.199, + "_id": { + "$oid": "6711d392cd60fca157e5a0b9" + } + }, + { + "text": "Professor Proudfoot is awesome! She's really good, and if you do all the homework, you'll do fine. She drops your lowest grade and the final counts just as much as any other quiz grade. Really study the \"Choose The Right Test\" sections fo the class. Other than that, you'll do fine in the class. She's really nice and always open to help you.", + "pos": 0.225, + "neu": 0.741, + "neg": 0.034, + "_id": { + "$oid": "6711d392cd60fca157e5a0ba" + } + }, + { + "text": "Great Teacher! Just go to class, on time, every time! She lets you bring in notecards to the quizzes, how can you do poorly?", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0bb" + } + }, + { + "text": "This is NOT such a hard course if you do the work. I put a lot of time in, but it was worth it. She is VERY clear, and also pretty funny, which I didn't expect in statistics. If you really want to learn something, this is the professor to take.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0bc" + } + }, + { + "text": "worst of the worst do not take her she will mess up your gpa this class is 4credits and she will give you short answer question. she seems nice outside but worst inside . if l had to repeat this class I will not take her be awared", + "pos": 0.098, + "neu": 0.695, + "neg": 0.207, + "_id": { + "$oid": "6711d392cd60fca157e5a0bd" + } + }, + { + "text": "She made it seem as though the material was easy, when it wasn't. I would have done better if she had just given math problems instead of short answer questions that just messed with my mind. This class screwed up my GPA, but I still remember key concepts for experimental. If I had to do it over I would've picked Lynch", + "pos": 0.059, + "neu": 0.854, + "neg": 0.086, + "_id": { + "$oid": "6711d392cd60fca157e5a0be" + } + }, + { + "text": "This course was much better than I expected. She is very clear, and keeps things interesting even though the class is very long. You have to go to every class though, and keep doing the homework. That's OK, what you put in you get out.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0bf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d392cd60fca157e5a0c1" + }, + "professor_name": "Carol Steiner", + "rating": 3.1, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Seems like a nice person, but very disorganized professor. No official textbook was given and you can only rely on what she uploads. If you don't go to her lectures, just study whatever she posts online. Doesn't seem like she curves.", + "pos": 0.075, + "neu": 0.738, + "neg": 0.187, + "_id": { + "$oid": "6711d392cd60fca157e5a0c2" + } + }, + { + "text": "Need better professor teaching this course, she does not know how to teach this course.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0c3" + } + }, + { + "text": "Can't stand this professor.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0c4" + } + }, + { + "text": "This class is not an easy course, you do have to study all the materials but professor expect her students to know everything that they don't have any idea or understanding off. Poor teaching structure, that is why exam score are very low. I would like if they had options to take this course with a different professor.", + "pos": 0.049, + "neu": 0.816, + "neg": 0.135, + "_id": { + "$oid": "6711d392cd60fca157e5a0c5" + } + }, + { + "text": "Professor Steiner expects her students to know thing that they actually don't have any clue about. As a result students ends up with very low grades on exam, and the class average turns out below passing grades. She is a great professor, but she jumps from one topic to another without finishing explaining the previous ones. Her exams are very hard", + "pos": 0.04, + "neu": 0.902, + "neg": 0.058, + "_id": { + "$oid": "6711d392cd60fca157e5a0c6" + } + }, + { + "text": "If u are taking her class for polymer science, she will be doing very good for showing u her toys, but for other classes, she is a bit messy, I believe that she is trying to make the class fun by teaching u with a fun tone other than just talking things in the textbook, I dont think she really talks about things in the textbook, but u have to read", + "pos": 0.135, + "neu": 0.825, + "neg": 0.04, + "_id": { + "$oid": "6711d392cd60fca157e5a0c7" + } + }, + { + "text": "She is truly a mess. I am at a loss of words as to how this woman became a professor. She is clueless and does not even know the material. She would give exam questions she could not even answer and change the question 20 times during the exam and at the end still give everyone a 0. I hope you're seeing this ChemE department.", + "pos": 0.079, + "neu": 0.821, + "neg": 0.1, + "_id": { + "$oid": "6711d392cd60fca157e5a0c8" + } + }, + { + "text": "I Love Prof. Steiner! She is the most knowledgeable and caring professors I've ever had! Her lectures are fascinating! This woman knows everything!!!! Literally!!! If you want to know Chemical Engineering processes in depth, take her class. I graduated already but I wouldn't mind taking her classes again!", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0c9" + } + }, + { + "text": "C. Steiner is the most amazing professor/person I have ever met! She cares so much about her students. She possesses in depth knowledge of chemical engineering processes as well as chemistry and physics. I learned more from her than from all the other CHE professors combined. If you really want to learn chemical engineering take her classes.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0ca" + } + }, + { + "text": "She is such a grandmotherly figure, kinda ambiguous and unorganized in class, learn through recitations and videos on your own time, get your piston and cylinder jokes ready people ^^", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0cb" + } + }, + { + "text": "Regardless of what everyone says, I found professor Steiner to be a great professor. She is very helpful in class, and will gladly answer any question you have. She is very intelligent and her lecture's are very interesting, or at least I thought so. One thing I say is to study the book because she is not good at reviewing every single thing tha", + "pos": 0.208, + "neu": 0.76, + "neg": 0.032, + "_id": { + "$oid": "6711d392cd60fca157e5a0cc" + } + }, + { + "text": "Learn how to suck up and you can do well. If you're good at conversations and just let her go off about her kids and her stories from back in the days, you'll get an A. Just don't talk back to her and try to stay interested in what she says. Ignore everything else, really. She picks her exam grades out of a hat, so don't worry about those grades.", + "pos": 0.13, + "neu": 0.802, + "neg": 0.068, + "_id": { + "$oid": "6711d392cd60fca157e5a0cd" + } + }, + { + "text": "be her friend and you would get a good grade.... she is not fair at all///////... =[..", + "pos": 0.276, + "neu": 0.635, + "neg": 0.089, + "_id": { + "$oid": "6711d392cd60fca157e5a0ce" + } + }, + { + "text": "lectures were pointless. very unclear and unhelpful. she is horrible prof i ever have.", + "pos": 0.0, + "neu": 0.674, + "neg": 0.326, + "_id": { + "$oid": "6711d392cd60fca157e5a0cf" + } + }, + { + "text": "she seldom finished the sample problems she did in class. totally not organized professor. hard grader. i felt like i didn't learn in her class although chemistry was my favorite.", + "pos": 0.191, + "neu": 0.732, + "neg": 0.076, + "_id": { + "$oid": "6711d392cd60fca157e5a0d0" + } + }, + { + "text": "Polymer Science", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0d1" + } + }, + { + "text": "Old school professor, assigns a lot of hw but never collects it, go to recitations, recitations were my saviors. Exams are not that difficult but her grading system is, just ensure that you stay in the top 25% of the class and you will be in the A range. If you are a ChE major, it's recommended that you dont take the course with her she skips a lo", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0d2" + } + }, + { + "text": "she made me hate my major!! she is not organized at all!! and she grades bad if you ara n A student expect C from her and it follows.", + "pos": 0.0, + "neu": 0.763, + "neg": 0.237, + "_id": { + "$oid": "6711d392cd60fca157e5a0d3" + } + }, + { + "text": "confused!!", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0d4" + } + }, + { + "text": "she is the worest proffesor. you will never learn any thing. she used the method that her proffesored used when she was in school. that is all she know.she doesn't prepare before class and don't read the book. The funny thing is she doesn't understand the book so she always doesn't solve questions up to the end. she is verrrry bad on grading too.", + "pos": 0.042, + "neu": 0.884, + "neg": 0.074, + "_id": { + "$oid": "6711d392cd60fca157e5a0d5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d392cd60fca157e5a0d7" + }, + "professor_name": "Andras Kisery", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "Prof Kisery really helps to break up poetry to facilitate understanding, teaches you how to analyze a poem, how to unpack a poem. He is flexible, and he also incorporates other forms of media in the class (video, photos of original texts). The discussions were really open. The grading is straighforward, there are regular discussion posts.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0d8" + } + }, + { + "text": "Professor Kisery is amazing and caring. Discussion post and a quiz every week. The class discussions were very helpful to understand the readings better. Try to participate because it helps. Take him for WHUM10100", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0d9" + } + }, + { + "text": "A nice professor - Prof. Kiserys classes are open discussion based on assigned readings, no forced participation. Weekly BB discussion board posts and quizzes on assigned readings as well. Hes a somewhat tough but fair grader, so stay on top of those DB posts/quizzes and it should be an easy A", + "pos": 0.239, + "neu": 0.742, + "neg": 0.019, + "_id": { + "$oid": "6711d392cd60fca157e5a0da" + } + }, + { + "text": "Worst Professor ever, absolute crap", + "pos": 0.0, + "neu": 0.309, + "neg": 0.691, + "_id": { + "$oid": "6711d392cd60fca157e5a0db" + } + }, + { + "text": "He's a great professor. The homeworks may have been a little annoying, but it's a tiny price to pay for how great he is. Participate every now and then or write some really good answers for your homework and he will like you. I thoroughly enjoyed his class and he grades leniently. Please take him for WHUM10100 he's a fantastic guy.", + "pos": 0.34, + "neu": 0.621, + "neg": 0.039, + "_id": { + "$oid": "6711d392cd60fca157e5a0dc" + } + }, + { + "text": "He is amazing! Make sure you actually do your work or you wont pass. He will definitely help you if you dont understand something and he is very caring to all his students. I would definitely take again if I needed to", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0dd" + } + }, + { + "text": "Overall, he's been good online, just a lot of reading and discussion responses on BlackBoard. Other than that, he has been pretty straightforward, although, he can be a tough grader at times.", + "pos": 0.167, + "neu": 0.792, + "neg": 0.041, + "_id": { + "$oid": "6711d392cd60fca157e5a0de" + } + }, + { + "text": "We have to read 6 Shakespeare books, which can be extremely difficult, it was for me. He grades very harshly, but he lets you redo the paper to get a better score on it. There are \"pop quizzes\". Its not given at random it is always after we finish reading the book it is on and you can also retake that. Overall he's a great professor.", + "pos": 0.128, + "neu": 0.847, + "neg": 0.025, + "_id": { + "$oid": "6711d392cd60fca157e5a0df" + } + }, + { + "text": "He is a tough grader and talks a lot. He gives random quizzes. You also have to purchase 6 shakesphere books. Readings are hard af. AVOID HIM by all means!", + "pos": 0.0, + "neu": 0.815, + "neg": 0.185, + "_id": { + "$oid": "6711d392cd60fca157e5a0e0" + } + }, + { + "text": "He is really boring, and can go on for days talking. You will fall asleep. He likes pop quizzes which are hard af. He thinks he's funny when he's not. Do not take him.", + "pos": 0.144, + "neu": 0.756, + "neg": 0.101, + "_id": { + "$oid": "6711d392cd60fca157e5a0e1" + } + }, + { + "text": "Good professor talks a lot and inpatient. He really walked 45 times corner to corner on one class. Just have to read in order to understand what he's talking about.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0e2" + } + }, + { + "text": "One of those professors that gets you interested just by seeing them so engaged in what they're teaching. Super nice, super friendly - kind of quirky but in the best way :) Lots of reading and discussion involved, and he no doubt will do most of the talking, but he makes it interesting nonetheless. He just wants to hear your ideas.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0e3" + } + }, + { + "text": "He is an awesome professor! I would defiantly take another class with him. He has such a passion for Shakespeare and theatrics. He really sparked my interest in theater literature.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0e4" + } + }, + { + "text": "Ok so I guess he was giving the Shakespeare thing a whirl, because the last class I took with him was nothing like it. Read everything! quizzes at the end of each play, memorization midterm and final. One final paper as well of your choice. Come to class, and you wont need the extra credit or make ups that he allows. He is really understanding.", + "pos": 0.164, + "neu": 0.807, + "neg": 0.029, + "_id": { + "$oid": "6711d392cd60fca157e5a0e5" + } + }, + { + "text": "He's the easiest professor in the English department. His syllabi outline what when the readings are due, usually provides a course pack, participation is mandatory & low class participation pop quiz. You can redo assignments & turn them in late. What he wants is for you to read the text and defend your arguments with the text. Not from space.", + "pos": 0.063, + "neu": 0.863, + "neg": 0.074, + "_id": { + "$oid": "6711d392cd60fca157e5a0e6" + } + }, + { + "text": "Intro to Lit Study. Easy prof. Lovely accent. Lax on attendence - expects the book to be read.Reasonable. Expects assignments to be done the way he asks. Also reasonable. Allowed all hw to be turned in the last day of class. Unreasonable and yet AWESOME. Fun guy. Def. take him if you have the chance.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0e7" + } + }, + { + "text": "Super hot, super helpful, very smart. Never could have understood any Shakespeare without him. Learned a lot!!!", + "pos": 0.527, + "neu": 0.473, + "neg": 0.0, + "_id": { + "$oid": "6711d392cd60fca157e5a0e8" + } + }, + { + "text": "Nice guy. Likes to engage students, has surprising things to say about something as stale as Shakespeare. Previous commenter: no, he gave me an A on a paper that criticised what he said in class about a book. I would probably take him again for a different class.", + "pos": 0.181, + "neu": 0.769, + "neg": 0.05, + "_id": { + "$oid": "6711d392cd60fca157e5a0e9" + } + }, + { + "text": "Will give you a lower grade if your opinion does not coincide with his.", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d392cd60fca157e5a0ea" + } + }, + { + "text": "Great Professor. Not super critical on attendance nor is he boring. one thing about school everybody hates is, you don't want to be bored to death and not learn anything. In Kisery's class, you will learn and be involve in the class discussions. he is always around to give make homework or quizzes, and is great at helping you comprehend better.", + "pos": 0.214, + "neu": 0.621, + "neg": 0.165, + "_id": { + "$oid": "6711d392cd60fca157e5a0eb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d393cd60fca157e5a0ed" + }, + "professor_name": "Dorina Cheregi", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "I really appreciate Professor Cheregi. She make sure you understand what she's teaching and she loves questions so don't hesitate to ask her. She's just amazing I would definitely recommend taking her. I would take her again if I had to 100%", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0ee" + } + }, + { + "text": "I took Professor Cheregi this summer and I must say I'm not a fan of math, but taking her class makes me feel so much more confident. I participated a lot, she loves questions so ask away if you are not clear on a problem. She explain things until you get it. She is just the best math professor I have ever have the pleasure of taking a class with.", + "pos": 0.229, + "neu": 0.686, + "neg": 0.085, + "_id": { + "$oid": "6711d393cd60fca157e5a0ef" + } + }, + { + "text": "Great professor. She is very honest, so don't be sensitive or take anything to heart. She's very helpful and its an easy class. Get ready for fractions because she loves fractions.", + "pos": 0.501, + "neu": 0.499, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0f0" + } + }, + { + "text": "She's very thorough in her lectures. Shows us the work and explains it clearly. She's also very patient and kind, I like her a lot.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0f1" + } + }, + { + "text": "Ms. Dorina is a dedicated and gifted teacher. Math with her was very easy. I studied math 20 years ago.\nHer course refreshed my memory, improved my knowledge and helped me to pass the certification exams.\nShe is a very nice person, intelligent who knows how to find an easy way to explain to her students any math problems. Thank you very much!!!!", + "pos": 0.278, + "neu": 0.688, + "neg": 0.034, + "_id": { + "$oid": "6711d393cd60fca157e5a0f2" + } + }, + { + "text": "She is an AMAZING professor. I was out of school for 8 years and with the help of her, it felt like I never even left school. She is super thorough and makes SURE her students understands what she's teaching by going over similar problems repeatedly until EVERYONE understands. She also provides tutoring on her own time. Truly an amazing woman.", + "pos": 0.296, + "neu": 0.67, + "neg": 0.034, + "_id": { + "$oid": "6711d393cd60fca157e5a0f3" + } + }, + { + "text": "AMAZING NURTURING LADY. Extremely sweet and caring. She even provides tutoring. I dislike math GREATLY but she made me love it while I was there. THANK YOU PROFESSOR!!!", + "pos": 0.474, + "neu": 0.485, + "neg": 0.042, + "_id": { + "$oid": "6711d393cd60fca157e5a0f4" + } + }, + { + "text": "shes a good teacher", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0f5" + } + }, + { + "text": "BEST PROF EVER!!", + "pos": 0.705, + "neu": 0.295, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0f6" + } + }, + { + "text": "I am taking her class now and even though i hate math with her i am feeling a bit relaxed with math. I highly would not mind taking her again.", + "pos": 0.133, + "neu": 0.763, + "neg": 0.105, + "_id": { + "$oid": "6711d393cd60fca157e5a0f7" + } + }, + { + "text": "Dorina is super helpful & really cares about her students. She provided tutoring sessions which really helped me out a lot. I also love the way she teaches! I'm not a fan of math, but she made me like it!", + "pos": 0.267, + "neu": 0.702, + "neg": 0.031, + "_id": { + "$oid": "6711d393cd60fca157e5a0f8" + } + }, + { + "text": "She explains things really well, and would rather math sure that everyone understands what we are learning rather then moving on as quick as possible.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0f9" + } + }, + { + "text": "Professor Cheregi is a great teacher. She is caring & loves to answer your questions about math to help you do better. Professor Cheregi always is available before class for tutoring and to help you with anything. After taking this class, I had become a lot better in math and loved every single time I learned something new. Strongly reccomend!", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0fa" + } + }, + { + "text": "Professor Cheregi is the best math teacher I've had... she is clear in her instruction and goes step-by-step in a way that is easy to understand. If you are having challenges, she is willing to schedule times to work with you (especially before midterms and finals) She is very caring and wants the best for us and I would definitely take her again!", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0fb" + } + }, + { + "text": "Very inspiring! She is Very pasionate about teaching math and first time in my life I like math.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0fc" + } + }, + { + "text": "If you think you are not a math person, this professor would change you mind.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0fd" + } + }, + { + "text": "Best math teacher I have seen in my life.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0fe" + } + }, + { + "text": "The best!", + "pos": 0.818, + "neu": 0.182, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a0ff" + } + }, + { + "text": "She is the best, not only as a teacher but also as a person. She is a wonderful women. She will never let any student behind and she is so passionate about math. Thanks to her my math skills are amazing and thanks to her I'm also passionate about math as well. She is so nice that I'm even like to called her \" mom\". I miss her so much.", + "pos": 0.408, + "neu": 0.573, + "neg": 0.018, + "_id": { + "$oid": "6711d393cd60fca157e5a100" + } + }, + { + "text": "she could be very busy at times, but she cares about her students.. i never regret taking her class", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a101" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d393cd60fca157e5a103" + }, + "professor_name": "Aidan ODonnell", + "rating": 2.6, + "department": "Music department", + "comments": [ + { + "text": "He was an alright prof. Class was pretty lightwork and he answers his email if u have any questions. felt like he graded work randomly at times because your grade will not match his feedback.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a104" + } + }, + { + "text": "Prof was chill and overall ez class.3 papers based on listening to music and describing it. 1 midterm where you listen to 11 tracks and identify the artist, song name, and era it's from. 4 quizzes based on the readings from the textbook (just read chapter's summary for that). The final was a timeline js project for an instrument of your choice.", + "pos": 0.039, + "neu": 0.961, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a105" + } + }, + { + "text": "Each class is a lengthy lecture about a topic in the textbook followed by a video. There is a Blackboard discussion post each week as well. I found that his feedback doesn't quite correspond with the grade given.", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a106" + } + }, + { + "text": "He doesn't post grades on Blackboard which sucks. Other than that, the class is a easy pass. Only four essays, a midterm, a final, and about five quizzes (the lowest gets dropped). Write the essays well (two are on performances you have to attend but get to choose), read the chapter for the quizzes, and listen to the music for finals, its an easy A", + "pos": 0.104, + "neu": 0.846, + "neg": 0.05, + "_id": { + "$oid": "6711d393cd60fca157e5a107" + } + }, + { + "text": "Too many papers for an introductory class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a108" + } + }, + { + "text": "Get ready to memorize a lot of terms in this class! Not going to be that easy A elective !", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a109" + } + }, + { + "text": "This class is not good dont take it", + "pos": 0.0, + "neu": 0.744, + "neg": 0.256, + "_id": { + "$oid": "6711d393cd60fca157e5a10a" + } + }, + { + "text": "Not the most understanding professor , and makes you do 3 off campus homeworks. Including going to a bar although I couldnt get in cause Im not 21+", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a10b" + } + }, + { + "text": "Focuses too much on jazz history", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a10c" + } + }, + { + "text": "Talked to 10 different students and not a single a in any paper", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a10d" + } + }, + { + "text": "Quiz Quiz Test POP Quiz Test Paper Test Quiz Test Paper POP Quiz Homework Test Midterm Quiz Test Paper Quiz Quiz Paper Test pop Quiz Final. Above, I have outlined the highlights of this class, in order.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a10e" + } + }, + { + "text": "Professor ODonnell has 0 Interest in making his class entertaining. Stands and talks about a music artist for an hour and 15 minutes", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a10f" + } + }, + { + "text": "More tests that all my other courses combined", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a110" + } + }, + { + "text": "Lots of assignments, some require work off campus and makes you attend bars..", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a111" + } + }, + { + "text": "Took this course as an elective and it was the most difficult elective Ive yet to take.", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d393cd60fca157e5a112" + } + }, + { + "text": "Not a considerate professor, doesnt meet you halfway. Classes consist of long lectures , 5 papers throughout the course and plenty of pop quizzes.", + "pos": 0.0, + "neu": 0.905, + "neg": 0.095, + "_id": { + "$oid": "6711d393cd60fca157e5a113" + } + }, + { + "text": "Where do I start? For the midterm and final you have to memorize 40+ songs and remember the artist, and the instruments in each song. Oh and 4 papers throughout the class, and 5 quizzes! Three pop quizzes as well.", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d393cd60fca157e5a114" + } + }, + { + "text": "Just floods you with boring material and no intentions of making that class entertaining", + "pos": 0.158, + "neu": 0.598, + "neg": 0.245, + "_id": { + "$oid": "6711d393cd60fca157e5a115" + } + }, + { + "text": "This class was beyond boring and not an easy A class. He is always confused as to what he wants, he gives way too many quizzes where you need to memorize too much information, his midterm and final is to identify them which is absurd due to the constant pattern of all the songs being instrumental. He grades harshly . DONT TAKE", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d393cd60fca157e5a116" + } + }, + { + "text": "Always go to class and study for the quizzes and tests. If you are a musician this class should be easy A. I don't think he gives A+. If you don't know anything about music a lot of the course is knowing jazz history, which you go over in class, so no sweat.", + "pos": 0.051, + "neu": 0.898, + "neg": 0.05, + "_id": { + "$oid": "6711d393cd60fca157e5a117" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d394cd60fca157e5a119" + }, + "professor_name": "M.T. Chang", + "rating": 2.8, + "department": "Architecture department", + "comments": [ + { + "text": "I took computer rendering as an online class. He is very clear and gives step by step explanations on how to use Vray to render. He is knowledgeable and informative. Unfortunately some students don't take his class too seriously, but they would actually learn something rather than complain if they did. He will email back if you have a problem.", + "pos": 0.029, + "neu": 0.823, + "neg": 0.147, + "_id": { + "$oid": "6711d394cd60fca157e5a11a" + } + }, + { + "text": "Oh my dear friends, please listen to me. He is very very very out of topic. I do not learn much from him. I would say you learn from youtube and it is much better than take his class. FOR REAL !!!", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a11b" + } + }, + { + "text": "hes crazy about attendance and is ABSOLUTELY HILARIOUS but i didnt learn a darn thing in all three of the classes i took with him. was an easy grade if you showed up but honestly learnt the material from classmates and google....", + "pos": 0.21, + "neu": 0.756, + "neg": 0.034, + "_id": { + "$oid": "6711d394cd60fca157e5a11c" + } + }, + { + "text": "Good professor! Know his stuff. Just don't be absent, otherwise he is an easy grader.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a11d" + } + }, + { + "text": "Really passionate in computer! Know tons of stuffs in computer. An expert in computer rendering. Gave me few tips, and I am rendering in vray which is so difficulty to learn by myself. Any one serious in photorealistic rendering. Take him...", + "pos": 0.08, + "neu": 0.819, + "neg": 0.101, + "_id": { + "$oid": "6711d394cd60fca157e5a11e" + } + }, + { + "text": "Wonderful professor! I took his rendering last fall, and I found an internship job in this summer. My boss is so impressive with my rendering. Thank you Prof. Chang!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a11f" + } + }, + { + "text": "Well! 3DS Max is really difficult to learn (at least to me),but his rendering class focuses on Vray. I am able to produce beautiful rendering, because Prof. Chang. Most of his students don't like his class, because they too lazy to listen. They want to watch a youtube to learn everything.", + "pos": 0.122, + "neu": 0.75, + "neg": 0.128, + "_id": { + "$oid": "6711d394cd60fca157e5a120" + } + }, + { + "text": "DO NOT TAKE THIS PROFESSOR. HE NEVER ANSWERS QUESTIONS AND INSTEAD GOES OFF ON A TANGENT FOR HOURS. SPENDS THE ENTIRE CLASS WITH YOUR SCREEN FROZEN SO YOU ARE UNABLE TO DO WORK. INSULTS AND PICKS ON PEOPLE.YOU HAVE TO LEARN EVERYTHING BY YOURSELF.YOU WILL NEVER BE SURE OF YOUR GRADE EVEN IF YOU THINK YOURE DOING WELL. OVERALL BAD BAD BAD", + "pos": 0.029, + "neu": 0.763, + "neg": 0.208, + "_id": { + "$oid": "6711d394cd60fca157e5a121" + } + }, + { + "text": "Worst prof ever. DO NOT TAKE HIS 3DS MAX CLASS. Teach yourself using tutorials, since he can't teach. Doesn't answer questions, spends half the class period (that we pay for) talking about unrelated things, doesn't let us follow along in the program, total lack of clarity in assignments. Insane attendance policy. Waste of time and money!!", + "pos": 0.044, + "neu": 0.745, + "neg": 0.211, + "_id": { + "$oid": "6711d394cd60fca157e5a122" + } + }, + { + "text": "why", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a123" + } + }, + { + "text": "bad, bad, bad", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d394cd60fca157e5a124" + } + }, + { + "text": "learnt a lot...must to learn AutoCAD to find a job.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a125" + } + }, + { + "text": "great class!!!", + "pos": 0.833, + "neu": 0.167, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a126" + } + }, + { + "text": "YOu have to be prepared for this class, if not, don't take this class. He will fry your little butt. No kidding! Prepare to bring few ear plugs. Good Luck!!!", + "pos": 0.247, + "neu": 0.689, + "neg": 0.064, + "_id": { + "$oid": "6711d394cd60fca157e5a127" + } + }, + { + "text": "Great class! I really learnt a lot from him.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a128" + } + }, + { + "text": "You will have to take initiative and learn the software by yourself, but he's an easy grader. Likes to talk about extranious things.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a129" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d394cd60fca157e5a12a" + } + }, + { + "text": "Goes too fast, no one keeps up with him, youll have to be reading up on online tutorials or book if u have time. Hates latenesses, but is always late himself a minimum of 15min.", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d394cd60fca157e5a12b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d394cd60fca157e5a12c" + } + }, + { + "text": "He is kinda emotional but very knowledgable at computer.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a12d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d394cd60fca157e5a12f" + }, + "professor_name": "Gary Benenson", + "rating": 3.2, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Professor said that he didn't like me. I did test and my material. I ask why he gave me a bad grade and his answer was that he didn't like me. He ask me questions to prove that I was wrong, but could prove me it. Commented on my writing like it was an English course. I would not recommend him at all. He discriminated me for my writing.", + "pos": 0.043, + "neu": 0.825, + "neg": 0.132, + "_id": { + "$oid": "6711d394cd60fca157e5a130" + } + }, + { + "text": "Took this professor and realized he was one of the worst professor I ever took in 2016. Very arrogant and will tell you getting a masters is a waste of time. I ended up getting one while working full time so I would say dont listen to him. He wants things his own way. Its sad because you have to cater to how he want things. Lecture was whatever", + "pos": 0.016, + "neu": 0.812, + "neg": 0.171, + "_id": { + "$oid": "6711d394cd60fca157e5a131" + } + }, + { + "text": "He's decent at teaching. His lectures are informative thanks to his extensive background in industry. He's a very subjective grader. He may criticize you for things you didn't do wrong. Coupled with his very old age, he sometimes doesn't see what is right in front of him when grading papers. My advice, strictly follow a past paper that he likes.", + "pos": 0.123, + "neu": 0.838, + "neg": 0.039, + "_id": { + "$oid": "6711d394cd60fca157e5a132" + } + }, + { + "text": "Terrible professor and even worse attitude. Once you \"challenge\" him (by asking questions) you are immediately the worst person in class because he doesnt know the material or how to answer.. very arrogant. So basically follow his lead, tell him how great he is and you should be ok. Its shocking to see all these positive reviews with such attitude", + "pos": 0.116, + "neu": 0.671, + "neg": 0.213, + "_id": { + "$oid": "6711d394cd60fca157e5a133" + } + }, + { + "text": "He is a very harsh grader as he will read your reports word by word looking at every single detail. The reports are long and time consuming so start them early. You will have to put effort in to pass the class and getting a high grade is not easy. Arrive at class a few minutes early before it starts as he is strict with attendance.", + "pos": 0.0, + "neu": 0.92, + "neg": 0.08, + "_id": { + "$oid": "6711d394cd60fca157e5a134" + } + }, + { + "text": "Toughest grader, and hardest professor at CCNY. But he is the best professor to learn a lot from him.", + "pos": 0.242, + "neu": 0.71, + "neg": 0.048, + "_id": { + "$oid": "6711d394cd60fca157e5a135" + } + }, + { + "text": "I admit, his lectures were very intuitive and engaging compared to other Mechanical Engineering professors. But the way on how he grades is very harsh because he tries very hard to look for mistakes in projects. People who are not fluent in writing reports in proper English should avoid taking him. Take the TA instead to save your sanity.", + "pos": 0.105, + "neu": 0.723, + "neg": 0.172, + "_id": { + "$oid": "6711d394cd60fca157e5a136" + } + }, + { + "text": "Heres the problem with benenson. He will teach you only after you make your mistake and your grade is penalized. He doesnt grade you based on what he has taught you, instead what you know. This is a poor teaching technique which results in your gpa suffering. This guys does not know how to do his job.", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d394cd60fca157e5a137" + } + }, + { + "text": "By the far the best professor I've ever had. He really takes pride in his job and does his best, and it shows. My only criticism is that sometimes he doesn't hear out the students and is convinced he's always right. But he actually teaches, first time I've had a professor do that. Usualy I hve to read the book to learn but he teaches so nah", + "pos": 0.12, + "neu": 0.823, + "neg": 0.057, + "_id": { + "$oid": "6711d394cd60fca157e5a138" + } + }, + { + "text": "If you're reading this, it's likely that you're required to take his class and there's no way out. Remember: - Don't bother asking questions about assignments, he won't give u sound answers, he returns questions back at you. - Projects are often open-ended, go the extra mile to get a good grade. Start early, the reports are long. Good Luck", + "pos": 0.159, + "neu": 0.808, + "neg": 0.032, + "_id": { + "$oid": "6711d394cd60fca157e5a139" + } + }, + { + "text": "One of the best professors I've had, which is rare at CCNY. I wish I had him for other classes. It's not easy learning a topic you weren't interested in, and he does a great job of sparking that interest, showing you why the subject is important. He puts you through A LOT of work, but you actually learn something. He won't waste your time.", + "pos": 0.182, + "neu": 0.773, + "neg": 0.045, + "_id": { + "$oid": "6711d394cd60fca157e5a13a" + } + }, + { + "text": "Wants to teach you that engineering is an open ended problem, and there isn't a guaranteed process to get the \"correct\" solution. To get that idea across, he will \"refuse\" to tell you what to do while telling you what you can't do and keep \"Fisking\" your reports and continuously offering alternatives to whatever you do until you impress him somehow", + "pos": 0.077, + "neu": 0.849, + "neg": 0.073, + "_id": { + "$oid": "6711d394cd60fca157e5a13b" + } + }, + { + "text": "One of the worst professors at CCNY. Extremely biased. Not very helpful at all. No direction with assignments and very discouraging. He is very vague when answering questions. In all, he is awful.", + "pos": 0.0, + "neu": 0.576, + "neg": 0.424, + "_id": { + "$oid": "6711d394cd60fca157e5a13c" + } + }, + { + "text": "I have no idea how this professor has so many positive comments. He is extremely biased. Attacking students in class (verbally of course) and even calls them liars during presentation.from what it seems his ultimate goal is to discourage people from getting an engineering degree and he mentioned that many times personally and in class.", + "pos": 0.058, + "neu": 0.732, + "neg": 0.21, + "_id": { + "$oid": "6711d394cd60fca157e5a13d" + } + }, + { + "text": "Great Professor. Very Helpful. You will work hard during the course, but by the end, you will feel like you've accomplished a lot.", + "pos": 0.379, + "neu": 0.583, + "neg": 0.039, + "_id": { + "$oid": "6711d394cd60fca157e5a13e" + } + }, + { + "text": "Pretty good professor for a CAD class considering he's an electrical engineer. It's a very writing-intensive class and he's a pretty tough grader and does not curve at all.", + "pos": 0.26, + "neu": 0.698, + "neg": 0.042, + "_id": { + "$oid": "6711d394cd60fca157e5a13f" + } + }, + { + "text": "one of the hardest professors in the engr dept, gives alot of work and is extremely difficult to balance out the time to get his work done. His grading is way too strict, and no curve, while the class avg were almost always in the 60's", + "pos": 0.0, + "neu": 0.898, + "neg": 0.102, + "_id": { + "$oid": "6711d394cd60fca157e5a140" + } + }, + { + "text": "prof. benenson is wonderful. you can go him with any thing you want; he will always be welcoming as long as he can help. he is very knowledgable and try to learn as much as you can from him because he knows alot and he is not afraid to teach what he knows. he is bit rough grader but you will get what you deserve, nothing more, not a bit less.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a141" + } + }, + { + "text": "Very helpful professor, explains all materials very clear. This class doesnt have exam, only reports! And this is the downside of his class, you will find hard to get good grade in the reports (he read each single word in the report, so any mistake he will deduct points), and also he doesnt curve the grade!", + "pos": 0.144, + "neu": 0.763, + "neg": 0.093, + "_id": { + "$oid": "6711d394cd60fca157e5a142" + } + }, + { + "text": "Great teacher. You will learn a ton in his class. Gives too much work.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d394cd60fca157e5a143" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d395cd60fca157e5a145" + }, + "professor_name": "Joseph Castora", + "rating": 4.9, + "department": "World Civilizations department", + "comments": [ + { + "text": "One of the best professors I've taken at CCNY. You will learn a lot from this professor.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a146" + } + }, + { + "text": "He is one of the best professors I have taken at CCNY. Not only are the lectures interesting, but he also cares for his students a lot. I do not regret taking this class as I have learned a lot!", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a147" + } + }, + { + "text": "Such a sweet man. Very caring and funny. His lectures are a bit long and done by chalk and talking, but he keeps the class going with a dad joke every now and then. Take good notes, do his papers in 2 days, and skim through the textbook for the quizzes, and it's an easy A.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a148" + } + }, + { + "text": "Hes amazing !! I would recommend to do the draft for the 3 writing assignments will help you get an A. Theres about 4 quizzes which are short and he will give a outline . The final is longer but not completely hard he will give an outline . Attendance is important you dont have to stay for the whole lecture . Love his class and hes so sweet .", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a149" + } + }, + { + "text": "He's a pretty great professor and he gives assignments and quizzes based completely on things you will learn from the class, or his thorough outline, so you don't need to worry about much except coming to class, participating, and skimming through the textbook for the quizzes.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a14a" + } + }, + { + "text": "This guy I never thought I was going to say... but he is the sweetest professor I have met in my life, he really understands. God bless him.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a14b" + } + }, + { + "text": "He is a very nice, caring, helpful prof. There are four quiz( which are easy, just write 3-4 lines about key words and 10-15 line about the topics), 3 papers ( if you want, you can submit draft papers early and get A in the final papers) and the final exam. No stress, just read the books, take notes and get easy A. Overall the class was amazing.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a14c" + } + }, + { + "text": "Good Professor who lectures according to the book. Lectures are a bit boring. A few quizzes from 2-3 chapters, youve the ability to submit first draft papers and have them reviewed before submitting a final draft. Also, the final consisted of every chapter we studied and I wish he broke it down more specifically, so there was a lot of memorization", + "pos": 0.114, + "neu": 0.812, + "neg": 0.074, + "_id": { + "$oid": "6711d395cd60fca157e5a14d" + } + }, + { + "text": "He's amazing! Super sweet. If you hand in first drafts of your essay you should get a 100% He writes a lot of topics on the board while talking more in depth about them. Always following the textbook.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a14e" + } + }, + { + "text": "Really nice and sweet. Makes corny jokes in class. Participation counts (10% of final grade) and he'll remind you of it every class but you'll get no less than 8% as long as you show up to class. Quizzes are the only challenge. Three essays but if you hand in a first draft you're guaranteed an A for your final draft. No homework whatsoever.", + "pos": 0.154, + "neu": 0.77, + "neg": 0.076, + "_id": { + "$oid": "6711d395cd60fca157e5a14f" + } + }, + { + "text": "What a wonderful professor! He is very lenient, respectful towards everyone, and very clear with what he says in class. He is very approachable and makes jokes as well. # essays, a few quizzes, and a couple of exams is all that is required. Also amazing what he does at his age still. He is a gem.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a150" + } + }, + { + "text": "It's not hard to get an A. Joseph is the nicest professor in ccny. Hand in rough drafts so he can correct them and give you a 100. This class does not cause any stress, his quizzes are easy and his papers take 2 days to write. Read the textbook a little. I just had a hard time staying awake in his class but besides that he's the perfect professor.", + "pos": 0.179, + "neu": 0.805, + "neg": 0.015, + "_id": { + "$oid": "6711d395cd60fca157e5a151" + } + }, + { + "text": "Long lectures, but you will be amazed by the way he cares for his students. He's one of the best! Quizzes, papers, and the final are easy just as long you study. Quizzes and final require memorization, and the paper requires reading 3 books, and using facts about each civilization with your own knowledge.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a152" + } + }, + { + "text": "One of my favorite professors at CCNY, he's really cool when it comes to assignments and quizzes. Attendance is required and you would just need to study a little for the quizzes and the final. The 3 papers are short and easy to do. All books are definitely required. Seriously loved how nice he is!", + "pos": 0.268, + "neu": 0.707, + "neg": 0.025, + "_id": { + "$oid": "6711d395cd60fca157e5a153" + } + }, + { + "text": "One of my favorite professors! He's such a chill dude and he makes the funniest Dad jokes. He gives 4 quizzes that are very easy based on chapter vocab words and topics. His papers are easy As if you hand in a first draft. All he does is correct grammar on your papers and if you fix it, easy A His final was also pretty easy. Fantastic class!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a154" + } + }, + { + "text": "Amazing professor! He is very caring and he cracks a few jokes here and there. He is genuinely a great person. His lectures are easy to follow. Gives 4 easy quizzes (just read your notes) and 3 easy papers. The final is easy as well. He does take attendance although you can walk out during the lecture. Would take him again!", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a155" + } + }, + { + "text": "this teacher was awesome!!! im not gonna say it is an easy A class because it isnt but he is a cool teacher and he literally gives you all the info you need. I got a B+ because I was late a lot and absent a couple of times but besides that it was an easy class and the professor is very welcoming.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a156" + } + }, + { + "text": "No words can describe this sweet funny old man! Definitely an easy A. Attendance is important and reading the textbook is required, plus quizzes are very light. 4 quizzes, 3 essays and a final. Make sure you give him your essay a week before its due so he can correct any grammatical errors. I rarely write reviews but I felt indebted to write this", + "pos": 0.161, + "neu": 0.793, + "neg": 0.047, + "_id": { + "$oid": "6711d395cd60fca157e5a157" + } + }, + { + "text": "Easy class. He tells you in advance what will be on the quiz. Gives great feedback on essays. If you hand in a draft you will basically get an A on your final draft. Lectures are boring but he is such an easy grader it is worth it. There are three books you will have to read for the essays.", + "pos": 0.187, + "neu": 0.789, + "neg": 0.024, + "_id": { + "$oid": "6711d395cd60fca157e5a158" + } + }, + { + "text": "I will just say that he is simply the best of all!", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a159" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d395cd60fca157e5a15b" + }, + "professor_name": "Nur Dean", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "Had her at FIT for Statistical Analysis. She is a joy. She makes statistics easy to understand online, and ears are always open for when students start to get confused on the subject. Make study groups for this class. She does give out a lot of exams, and exams are hard, but drops one of them, with the exception of the final.", + "pos": 0.098, + "neu": 0.86, + "neg": 0.043, + "_id": { + "$oid": "6711d395cd60fca157e5a15c" + } + }, + { + "text": "3 class exams and 3 quizzes on mathlab (lowest grades dropped) and Final. She quickly goes over the lectures and gives a lot of questions that are usually on the exam. Mathlab questions not that similar to the Final or class exams, but she gives reviews for exams so study those indepth. Professor Dean is nice overall, she tries to help when asked.", + "pos": 0.105, + "neu": 0.869, + "neg": 0.026, + "_id": { + "$oid": "6711d395cd60fca157e5a15d" + } + }, + { + "text": "She is amazing and very caring. She makes sure students understand the topic and does questions and practices in class. Very understanding and you can go talk to her after class. Very casual and nice. Three midterms and she drops the lowest. They're not so bad and she's a fair grader.", + "pos": 0.312, + "neu": 0.649, + "neg": 0.039, + "_id": { + "$oid": "6711d395cd60fca157e5a15e" + } + }, + { + "text": "I love this professor!!!. She made me like math and I have always hated math. Her lectures are very easy to understand. Do not hesitate to ask questions, trust me, it helps.", + "pos": 0.388, + "neu": 0.524, + "neg": 0.088, + "_id": { + "$oid": "6711d395cd60fca157e5a15f" + } + }, + { + "text": "The best Calc Professor ever. I took her for summer class, and had no hope of passing because its my weak subject but she made sure everyone pass and she give everyone the opportunities to do good. If anyone failed, its their fault.", + "pos": 0.194, + "neu": 0.605, + "neg": 0.201, + "_id": { + "$oid": "6711d395cd60fca157e5a160" + } + }, + { + "text": "I took Calc with her and she made sure people can pass if you do the work. She used Hawkeslearning which I find a lot helpful than Webassign. 3 exams and quizzes are given on the site. She drops the lowest exam and quiz grade. She also post review on the site. You can re-do the review as much as you want. Her final is exactly like her review sheet", + "pos": 0.116, + "neu": 0.85, + "neg": 0.034, + "_id": { + "$oid": "6711d395cd60fca157e5a161" + } + }, + { + "text": "This course its self is very difficult but Professor Dean takes time to help you where ever you're having trouble. She loves when you ask question and is always available during office hours. The material is hard I would recommend looking at the pervious finals and starting early, to get use to the wording. I would take her again. She's amazing", + "pos": 0.218, + "neu": 0.691, + "neg": 0.09, + "_id": { + "$oid": "6711d395cd60fca157e5a162" + } + }, + { + "text": "Professor Dean is absolutely amazing. I just had her for calculus at Baruch college and she is the only reason I was able to pass this class. If you struggle with math she is the professor to take no doubt about it. Awesome person and teacher.", + "pos": 0.189, + "neu": 0.769, + "neg": 0.042, + "_id": { + "$oid": "6711d395cd60fca157e5a163" + } + }, + { + "text": "GREAT PROFESSOR!! takes her time and ensures you understand the concept. great professor. I definitely recommend.", + "pos": 0.551, + "neu": 0.449, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a164" + } + }, + { + "text": "Amazing Professor and she helps you learn concepts easily for math. Best Professor at City for Math.", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a165" + } + }, + { + "text": "Professor Dean is really caring. She would ask for any clarifications questions that we had after every problem we went through. Homework and Quizzes were online so that was good. Exam reviews were very similar to the actual exam. She speeds through the material really fast and she doesn't mind slowing down if you ask.", + "pos": 0.108, + "neu": 0.848, + "neg": 0.044, + "_id": { + "$oid": "6711d395cd60fca157e5a166" + } + }, + { + "text": "I took her for calc and the class is not that difficult as long you do the assignments. She used Hawkeslearning website which I find very helpful. As long you do the assignment and study, there should be no reason to fail. She drops lowest quiz and test grade. Also, she gives a review sheet for final which looks very similar.", + "pos": 0.075, + "neu": 0.806, + "neg": 0.119, + "_id": { + "$oid": "6711d395cd60fca157e5a167" + } + }, + { + "text": "I am a student of Professor Dean's and i have found this Professor to be outstanding. She is always helpful and available to answer any questions I have had. The exams she gives are difficult but fair being from the book. I would definitely recommend taking a class with Professor Dean as she is one of the best Professors I have had so far.", + "pos": 0.239, + "neu": 0.738, + "neg": 0.023, + "_id": { + "$oid": "6711d395cd60fca157e5a168" + } + }, + { + "text": "Professor Dean is a great teacher. I had her for Statistics at FIT. She was simultaneously getting her PHD so at times she was a bit disorganized. However, this did not stop her from answering any questions to the fullest extent, or being the most fair math teacher I have ever had. If you pay attention, you will do well.", + "pos": 0.197, + "neu": 0.752, + "neg": 0.051, + "_id": { + "$oid": "6711d395cd60fca157e5a169" + } + }, + { + "text": "Great teacher! has a little bit of an accent but you can still understand her. she extends the homework if you ask her. very understanding and cares about you. she sometimes tries to crack jokes but theyre not really funny. just make sure you do your homework and ok on your exams.", + "pos": 0.262, + "neu": 0.685, + "neg": 0.052, + "_id": { + "$oid": "6711d395cd60fca157e5a16a" + } + }, + { + "text": "She is EXTREMELY helpful. Extends assignments for the class if you ask her too. Very helpful. She speeds through the lessons to keep it flowing but always asked if everything was clear before moving on to the next part. She occasionally tries to make jokes but they're a bit corny which makes me laugh even more. Really great professor.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a16b" + } + }, + { + "text": "She is really good teacher if u are considering taking her class! Sometimes gives extra credit. Drops the lowest test and quiz grade! A little fast but always there when u need help! No appointment for office hours and helpful!!", + "pos": 0.242, + "neu": 0.668, + "neg": 0.09, + "_id": { + "$oid": "6711d395cd60fca157e5a16c" + } + }, + { + "text": "Professor Nur Dean is AMAZING! I hate math, I don't get it. BUT she makes sure you understand the material, asks after each problem if everything is clear. Would go back to the problem 10 times for you and for everyone. Homework is online because it's math class of course! Pre-cal so it's not a walk in the park. Attend class to do well on exams.", + "pos": 0.153, + "neu": 0.73, + "neg": 0.117, + "_id": { + "$oid": "6711d395cd60fca157e5a16d" + } + }, + { + "text": "She is an amazing teacher. really helps get you and tries her best to improve your grade. Lectures are clear and easy to follow.", + "pos": 0.517, + "neu": 0.483, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a16e" + } + }, + { + "text": "She has accent but her lectures are very clear. Her lectures are fun and very useful. I learned a lot from her. I would take her class again.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a16f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d395cd60fca157e5a171" + }, + "professor_name": "Muhammad Ummy", + "rating": 4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "His test are related to the class and homework, he provides a formula sheet that helps even with proof questions. He knows his stuff and is quick to answer to any field questions not directly related to the class. He asks a lot of questions per class and you are expected to reply, he will learn your name.", + "pos": 0.044, + "neu": 0.956, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a172" + } + }, + { + "text": "He is the best in this course. Even inside an online class, he made sure each and every student is attentive as it was required. Definitely will take him again if I have to. He made us all work hard and in the end rewarded in that way. He curves the grade if he is happy with the class. Not a lot of HW and somewhat comfortable exams.", + "pos": 0.234, + "neu": 0.748, + "neg": 0.017, + "_id": { + "$oid": "6711d395cd60fca157e5a173" + } + }, + { + "text": "The only EE330 professor that does not allow cheat sheets and doesnt lets you know what's in the cheat sheet he gives during the test. Most people get Cs. But a tip for midterms is to literally just memorize everything if and only if you can. There are 200 power point slides for his first midterm so good luck, but avoid if you can.", + "pos": 0.149, + "neu": 0.769, + "neg": 0.081, + "_id": { + "$oid": "6711d395cd60fca157e5a174" + } + }, + { + "text": "i do not understand the people writing the those bad comments about this professor. simply he is the only professor that i enjoyed his class throughout the whole semester in CCNY. just wants you to learn. not a tough grader at all. honestly you will learn something in his class. and you know what IT IS NOT A WASTE OF TIME. MATERIAL IS IMPORTANT.", + "pos": 0.175, + "neu": 0.778, + "neg": 0.047, + "_id": { + "$oid": "6711d395cd60fca157e5a175" + } + }, + { + "text": "Good Professor that cares about students actually learning the material and striving to be good engineers; however, his impatient, stern and ridicule personally overlaps the positive which takes away from the learning and many times made students overly anxious even to answer simple questions Students not studying enough & professor overly critical", + "pos": 0.188, + "neu": 0.668, + "neg": 0.144, + "_id": { + "$oid": "6711d395cd60fca157e5a176" + } + }, + { + "text": "Born to teach", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a177" + } + }, + { + "text": "perfect professor", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a178" + } + }, + { + "text": "The myth that Ummy is the one to take for an easy A in EE330 has been completely debunked. An A is very hard to do given the volume and difficulty of the class materials. I don't know if he wanted to seek revenge at the class (because some clowns pissed him off) or if we were actually a stupid class. This remains to be a gargantuan mystery for me!", + "pos": 0.035, + "neu": 0.778, + "neg": 0.187, + "_id": { + "$oid": "6711d395cd60fca157e5a179" + } + }, + { + "text": "Very Good Professor. Knows his stuff pretty well. Unfortunately he is a VERY harsh grader that will take off points for small things even though he knows how much material we need to know in so little time. Most ppl were failing his class and he didnt seem to care a bit. Stay away unless you plan on doing Electromagnetics as your sub-discipline.", + "pos": 0.11, + "neu": 0.727, + "neg": 0.163, + "_id": { + "$oid": "6711d395cd60fca157e5a17a" + } + }, + { + "text": "Interesting lectures", + "pos": 0.73, + "neu": 0.27, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a17b" + } + }, + { + "text": "do internships rather than take this lame class over summer. lectures are long and boring. To get an A study like forever .takes of points for very minuscule things.", + "pos": 0.073, + "neu": 0.764, + "neg": 0.163, + "_id": { + "$oid": "6711d395cd60fca157e5a17c" + } + }, + { + "text": "Very good.", + "pos": 0.762, + "neu": 0.238, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a17d" + } + }, + { + "text": "avoid this professor if you value your gpa.", + "pos": 0.226, + "neu": 0.566, + "neg": 0.208, + "_id": { + "$oid": "6711d395cd60fca157e5a17e" + } + }, + { + "text": "horrible professor. takes off points for like everything.", + "pos": 0.208, + "neu": 0.5, + "neg": 0.292, + "_id": { + "$oid": "6711d395cd60fca157e5a17f" + } + }, + { + "text": "Great teacher, harsh grader. His tough grading proves to be useful because it prepares students to pay close attention to every step in their work process. I'm glad Prof. Ummy taught EE330 this summer. Even though I didn't get an A, I'm still happy I took him because I learned a lot of stuff that I would've never learned with other instructors.", + "pos": 0.184, + "neu": 0.738, + "neg": 0.078, + "_id": { + "$oid": "6711d395cd60fca157e5a180" + } + }, + { + "text": "Pros- teaches very well, interacts with students during lecture, makes material interesting, gives all materials needed for exams (questions from slides and HW) Cons- very tough grader - takes off points for very miniscule things, gets pissed off easily, calls people out very randomly, doesn't give breaks in between the 3 hour lecture -_-", + "pos": 0.12, + "neu": 0.784, + "neg": 0.096, + "_id": { + "$oid": "6711d395cd60fca157e5a181" + } + }, + { + "text": "Overall he is okay professor, gets angry very easily. Attendance is a must in his class. Its the tough course of all Engineering classes Prof should know this. And should be able to make it a little easy on his students. Does not care about students much. Wont recommend him", + "pos": 0.121, + "neu": 0.72, + "neg": 0.16, + "_id": { + "$oid": "6711d395cd60fca157e5a182" + } + }, + { + "text": "Excellent professor. One of the very few who have the ability to teach. If we have more professors that teach like him, every student would know the fundamentals behind each course. He truly has the gift of teaching. A real gem who should be tenured in Ccny!!", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d395cd60fca157e5a183" + } + }, + { + "text": "EMT has so many hard concepts to wrap our heads around. He helps by giving long HW and class notes. Reading the slides & solutions to problems isn't enough to pass. To do well, write out the problems on paper and understand the concept instead of just memorizing. Pay attention to him- he explains concepts and applications thoroughly! DON'T CRAM!", + "pos": 0.134, + "neu": 0.744, + "neg": 0.121, + "_id": { + "$oid": "6711d395cd60fca157e5a184" + } + }, + { + "text": "Dr. Ummy is a very good teacher. He is energetic and enthusiastic about his EM teachings! He often berates students with a slight hint of condescension but that's just his idiosyncrasy as a professor. He believes that student success is a reflection of his performance as an instructor. Unfortunately, it's rare to find a CCNY with that belief.", + "pos": 0.17, + "neu": 0.784, + "neg": 0.046, + "_id": { + "$oid": "6711d395cd60fca157e5a185" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d396cd60fca157e5a187" + }, + "professor_name": "Bruce Cronin", + "rating": 4.2, + "department": "Law department", + "comments": [ + { + "text": "My only issue with him was that he was very unclear about how he was going to grade the midterm. He told us AFTER he graded it that he wanted it done a certain way. Didn't like that. Otherwise, he's a very nice guy who knows his stuff. He explains everything in very simple terms. Attendance not mandatory but you need the notes to pass the exams.", + "pos": 0.051, + "neu": 0.887, + "neg": 0.062, + "_id": { + "$oid": "6711d396cd60fca157e5a188" + } + }, + { + "text": "His course in International Terrorism opened my eyes and sparked my interest in international affairs. I feel privileged to have gotten to know him and learned so much from him.", + "pos": 0.157, + "neu": 0.72, + "neg": 0.123, + "_id": { + "$oid": "6711d396cd60fca157e5a189" + } + }, + { + "text": "amazing professor. he knows his stuff. has a powerpoint to go along with lectures and you have copy them or take pics cuz he doesn't post them. the class was based on 3 grades. for the midterm you have define terms and he is VERY SPECIFIC abt the terms so be careful. overall great proff.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a18a" + } + }, + { + "text": "Pretty interesting class. He was nice and straightforward with the grading criteria. Only thing is that the class was graded on 3 things so that was pretty stressful. Otherwise, hes a solid choice. Also, he doesnt post his lecture slides so be ready to either take pictures or write fast.", + "pos": 0.263, + "neu": 0.684, + "neg": 0.053, + "_id": { + "$oid": "6711d396cd60fca157e5a18b" + } + }, + { + "text": "Prof Bruce Conin is the amazing prof you ever meet . His Lectures are pretty interesting. He gives the journals to write which helps you to keep up on the readings. He also offers extra credit that can boost your grades. I would love to take class of him. Attend his class and Get A", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a18c" + } + }, + { + "text": "He's honestly one of the best professors in the whole PSC dept. If you are even remotely interested in intl politics, take him. He's knowledgable, answers every question and is an engaging lecturer. You'll learn so much even if you skip some of the readings. If you can do the extra credit, do it. His classes tend to fill quickly so register early.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a18d" + } + }, + { + "text": "I am not a big fan of required in-class presentations. His midterm exam consists of key terms definitions and examples--MAKE SURE TO GIVE EXAMPLES! If you don't give examples, points will be instantly taken off. Final exam (take-home essay) consisted of an accumulation of all classes discussion. As such, do make sure you take notes DAILY!", + "pos": 0.097, + "neu": 0.871, + "neg": 0.032, + "_id": { + "$oid": "6711d396cd60fca157e5a18e" + } + }, + { + "text": "The only thing I don't like about this class is the fact that you have to make a presentation in front of the class. I'd rather write journal entries (which is the same thing he does for his other classes anyway). There is a midterm on vocabulary terms and an easy, but long final exam.", + "pos": 0.035, + "neu": 0.938, + "neg": 0.028, + "_id": { + "$oid": "6711d396cd60fca157e5a18f" + } + }, + { + "text": "Good luck if you are taking any of his classes! He is a very tough grader.", + "pos": 0.295, + "neu": 0.619, + "neg": 0.085, + "_id": { + "$oid": "6711d396cd60fca157e5a190" + } + }, + { + "text": "This class is relatively easy. The midterm exam consists of key terms (vocabulary) and it comes straight from the lectures. You also have to write journal entries which aren't all that bad. We also did a mock trial for Bashar Al-Assad, the President of Syria. The final exam is an essay but it is somewhat tricky though.", + "pos": 0.088, + "neu": 0.857, + "neg": 0.055, + "_id": { + "$oid": "6711d396cd60fca157e5a191" + } + }, + { + "text": "One of my favorite professors in City College. He makes you interested in the material (I took 3 classes with him). I learned so much from him for my future career too. He makes you write reading journals (which you just have to submit, easy with deadlines). As long as you put in work and and at least skim the readings, you'll get an A. Recommended", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a192" + } + }, + { + "text": "the worst teacher I have ever had. cannot care less about his students. he does not add anything to the material. you won't learn anything in his class. he is one of those teachers who are nice, but absolutely useless.", + "pos": 0.041, + "neu": 0.776, + "neg": 0.183, + "_id": { + "$oid": "6711d396cd60fca157e5a193" + } + }, + { + "text": "He is a really good professor. At times he digresses and makes some unrelated and super funny comments! Straight forward. He made a class so much fun! We had a mock trial of Saddam Hussein, final was to analyze a made-up conflict situation between countries. People he's is great!", + "pos": 0.307, + "neu": 0.616, + "neg": 0.077, + "_id": { + "$oid": "6711d396cd60fca157e5a194" + } + }, + { + "text": "Do not take him if you want to get more than B.Lectures are cool but hard to get an A.Nice guy ,good teacher but.... terrible grader.", + "pos": 0.199, + "neu": 0.629, + "neg": 0.172, + "_id": { + "$oid": "6711d396cd60fca157e5a195" + } + }, + { + "text": "Great professors!!! class was interesting and he's funny in a way. He does not take attendance but show up for class cause notes are a MUST for final(take home final). If you dont take notes then you have to read the book which is ALOT. Will take him again in future semester.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a196" + } + }, + { + "text": "I took him on Int. Law. Be prepared to write fast and listen carefully to waht he says. Midterm is really easy. Final tricky. Good professor, funny and experienced. Its worthy.", + "pos": 0.372, + "neu": 0.583, + "neg": 0.045, + "_id": { + "$oid": "6711d396cd60fca157e5a197" + } + }, + { + "text": "doesnt take attendance, is always ready to teach, requires a couple of papers no test so thats good you ll pass just do ur work, which is not much", + "pos": 0.168, + "neu": 0.767, + "neg": 0.065, + "_id": { + "$oid": "6711d396cd60fca157e5a198" + } + }, + { + "text": "The class was relativly easy,Cronin is very personable, makes class entertaining. He lectures only from power point,which I found annoying,and sometimes goes too fast,then gets annoyed when asked to slow down. The writing assignments were uninspired(it was\"writing across the curriculum\")and he gave very few comments on how to improve. OK overall.", + "pos": 0.15, + "neu": 0.806, + "neg": 0.045, + "_id": { + "$oid": "6711d396cd60fca157e5a199" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d396cd60fca157e5a19a" + } + }, + { + "text": "Cronin is not a difficult professor, but sometimes I wish he'd be more challenging. He does not really critique your papers at all. But all in all, a nice guy and a Yankee fan.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a19b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d396cd60fca157e5a19d" + }, + "professor_name": "Prabal De", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "Great Professor, makes grading criteria very clear and the lectures are understandable. If you put in the effort the class will be wonderful.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a19e" + } + }, + { + "text": "Class was asynchronous and had video lectures, so students could refer to them whenever. He also uploaded videos reviewing practice q's which was very helpful. Quizzes and exams are a little hard, but just read the textbook (free) and use the videos. There's also recitation which you kind of are but not really required to attend.", + "pos": 0.107, + "neu": 0.875, + "neg": 0.017, + "_id": { + "$oid": "6711d396cd60fca157e5a19f" + } + }, + { + "text": "This professor makes you feel that the topics are easy but you have to study a lot in order to get the concept. If you are a test taker, then this class suits for you and beware that this professor does not curve his grades.", + "pos": 0.042, + "neu": 0.958, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1a0" + } + }, + { + "text": "He is very strict with his grading and only allows for slight curves only if he feels the class did bad enough. I wouldn't take him again. Talks on for the whole course but I guess people learn from him in the end. If you can take another person with a 3.5 or higher I say you do it. Lecture heavy, demands for attendance, hard to understand as well.", + "pos": 0.037, + "neu": 0.91, + "neg": 0.053, + "_id": { + "$oid": "6711d396cd60fca157e5a1a1" + } + }, + { + "text": "Good professor. There is one midterm that is 40% of your grade. One final that is 50% of your grade and one quiz that is 10% of your grade. The midterm was in my opinion difficult, whereas the final was pretty fair. If you are not a good test taker, I dont recommend this class. However, if you are... study enough and you will be fine.", + "pos": 0.134, + "neu": 0.774, + "neg": 0.092, + "_id": { + "$oid": "6711d396cd60fca157e5a1a2" + } + }, + { + "text": "Lectures weren't noteworthy and you could do fine studying the PowerPoints and slides he posts. Easy A but beware... we were only graded on 3 things, 10% quiz, 40% midterm (there was only one), and 50% final.", + "pos": 0.087, + "neu": 0.913, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1a3" + } + }, + { + "text": "quality professor. excellent at teaching. focus intently in class, and you will do great on exams. textbook is not really necessary, just whatever you need to complete the homework. for the exams: study the online homework and your class notes and youll get As", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1a4" + } + }, + { + "text": "Good professor. His lectures were informative and interesting. Open to discussion during and after class about economics related subjects. Straightforward about grading and exams. If you do all the homework, understand them all, read the lectures, you won't even need the textbook (only for extra clarification). Good class.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1a5" + } + }, + { + "text": "He is a good professor overall! There will be 11 homework, a midterm, and a final. The homework were simple but the exams are hard and you need to study the textbook and his slides. He is willing to help too if you need it. He also have a curve at the end of the semester. But to earn a good grade in his class, you have to work hard for it.", + "pos": 0.121, + "neu": 0.839, + "neg": 0.04, + "_id": { + "$oid": "6711d396cd60fca157e5a1a6" + } + }, + { + "text": "Very chill professor and an amazing lecturer. Gives you practical viewpoints on things learned in class. Has an accent, but doesn't undermine understanding at all. Exams are easy--just read the textbook and study a bit. Do all this and an easy A+.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1a7" + } + }, + { + "text": "Prabal's lectures are long and confusing. Standard lecture hall, with majority of students not showing up. Tests are standard, and based on the reading material and lectures. Seek other options if possible. Not an easy A, as a non-economics major, I found him very difficult to take. Received a C+ in the class.", + "pos": 0.0, + "neu": 0.876, + "neg": 0.124, + "_id": { + "$oid": "6711d396cd60fca157e5a1a8" + } + }, + { + "text": "Great professor, occasional hws, 2 mt's and one cumulative final. Attendance not mandatory. Word of advice, dont waste your time studying from the textbook. His slides are all you need for the tests and they are nice and concise. Just study for the tests and do your hw and you should get an A..", + "pos": 0.153, + "neu": 0.827, + "neg": 0.02, + "_id": { + "$oid": "6711d396cd60fca157e5a1a9" + } + }, + { + "text": "I went to his class regularly late but was paying attention to his lectures. He is a very good hearted professor. 2 midterms and 1 final with occasional homework. Easy A. just read the chapters couple hours before going to the exam and that will do it.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1aa" + } + }, + { + "text": "By far one of the most laid-back classes I have taken. De genuinely cares for his students and as long as you do the work he assigns (and he doesn't assign that much) you will get an A in his class.", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1ab" + } + }, + { + "text": "The best professor ever. Laid back, nice, helpful, funny.", + "pos": 0.718, + "neu": 0.282, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1ac" + } + }, + { + "text": "Extremely laid back professor. His class was enjoyable and straightforward. I will miss this guy, dearly.", + "pos": 0.281, + "neu": 0.64, + "neg": 0.079, + "_id": { + "$oid": "6711d396cd60fca157e5a1ad" + } + }, + { + "text": "Professor De. Is one of the coolest teachers at CCNY. His class was really fun and we got to watch a a lot of movies. We also went on a lot of trips around the city where he treated us to lunch. I will miss his class.", + "pos": 0.072, + "neu": 0.897, + "neg": 0.032, + "_id": { + "$oid": "6711d396cd60fca157e5a1ae" + } + }, + { + "text": "Prof. De=best teacher so far at CCNY, very chill and nice person, needs to be on-time at events and be a bit more organized since it was his 1st semester teaching, no other CHC prof. can match his abilities. will miss this class", + "pos": 0.106, + "neu": 0.815, + "neg": 0.079, + "_id": { + "$oid": "6711d396cd60fca157e5a1af" + } + }, + { + "text": "His class is drop dead boring, BUT his exams and his preparation for the exams are great. He doesnt make the material harder than it needs to be, which makes getting a good grade in his class easier", + "pos": 0.259, + "neu": 0.627, + "neg": 0.115, + "_id": { + "$oid": "6711d396cd60fca157e5a1b0" + } + }, + { + "text": "Extremely helpful professor. His tests are straightforward and if you study, it's a piece of cake.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d396cd60fca157e5a1b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d397cd60fca157e5a1b3" + }, + "professor_name": "Tom Ribitzky", + "rating": 4, + "department": "Humanities department", + "comments": [ + { + "text": "It is nearly impossible to get a good grade on any assignment.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1b4" + } + }, + { + "text": "this class is nightmare, stay away from this class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1b5" + } + }, + { + "text": "stay away from this crazy class", + "pos": 0.0, + "neu": 0.645, + "neg": 0.355, + "_id": { + "$oid": "6711d397cd60fca157e5a1b6" + } + }, + { + "text": "Definitely a good professor and passionate about what he teaches. However, he assigns a heavy number of readings to be prepared for every class, which can be very tedious. Be wary of pop quizzes; Attendance is mandatory; Participation is mandatory", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1b7" + } + }, + { + "text": "Pros: Don't need to buy any text book, he will send you the readings. You'll definitely learn how to write better in his class and think about life/love differently. His lectures are engaging. I got a B. Cons: Absent for more than 2x (1 letter grade lower). Roughly 80-100 pgs to read weekly. He's not nice. Final paper was tough (Start early).", + "pos": 0.114, + "neu": 0.8, + "neg": 0.086, + "_id": { + "$oid": "6711d397cd60fca157e5a1b8" + } + }, + { + "text": "I am an international student. This class was hard for me bc we need to read books from ancient Greek every week. Professor is very strcit with attendance and grammar. I love him bc he is passionate about his job and you actually learn LOT OF stuff from him!!!! He also cares about students. got an A-. take him if you like literature. won't regret.", + "pos": 0.216, + "neu": 0.766, + "neg": 0.018, + "_id": { + "$oid": "6711d397cd60fca157e5a1b9" + } + }, + { + "text": "He is the type of teacher that thinks he is always right. You are expected to read a lot (up to 60 pages per class). I would honestly stay away if you do not like reading. He is also very aggressive in class. He will call you out for anything. If you raise your hand and try to answer a question but get it wrong, he will make you feel dumb.", + "pos": 0.051, + "neu": 0.805, + "neg": 0.144, + "_id": { + "$oid": "6711d397cd60fca157e5a1ba" + } + }, + { + "text": "He's a great professor; young and makes old/boring English a little more entertaining. He's very passionate about English and grammar. Use of bad grammar will definitely get you a low grade. Use the writing center for all papers, it's mandatory if you want to get a good grade. No extra credit but will definitely work with you so that you pass.", + "pos": 0.228, + "neu": 0.676, + "neg": 0.096, + "_id": { + "$oid": "6711d397cd60fca157e5a1bb" + } + }, + { + "text": "If you are lazy, do not take. You will have readings for every class. You have to read them and be early for his class because he gives short quizzes at the beginning of every other class.(Sparknotes before classes if you don't) If you also dedicate the time to do the readings, you will be able to participate which is part of the grade.", + "pos": 0.0, + "neu": 0.962, + "neg": 0.038, + "_id": { + "$oid": "6711d397cd60fca157e5a1bc" + } + }, + { + "text": "Amazing professor. Passionate about what he teaches. Be wary of pop quizzes. Three 2 pg papers and a final paper 6 pgs. Cares alot about attendance and grammar.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1bd" + } + }, + { + "text": "He's my favorite professor... in life. A lot of readings, most provided by him. There are surprise quizzes to make sure you're reading & looking up words. 3-4 essays on readings, and then the final paper 6 pages (cares a lot about grammar). Punctual on attendance. He talks a lot which I personally loved because he had great things to say.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1be" + } + }, + { + "text": "This professor is an obsessed military professor, expect no relationship with him, for a flexible core class and students who arent majoring in english, i suggest you not take him, i am not weak in english but not a scholarly writer, he expect you to write like you are mastering in english.", + "pos": 0.114, + "neu": 0.834, + "neg": 0.052, + "_id": { + "$oid": "6711d397cd60fca157e5a1bf" + } + }, + { + "text": "Hes a military professor. Will make you work for your grade. Here is my advice -never come late. attendance is on the dot, pop quizzes take place a minute after. -read the books. Class discussions are a huge part of the class so if you dont read and participate, you wont get recognized (trust me, get recognized) -he has favorites, become one", + "pos": 0.076, + "neu": 0.883, + "neg": 0.04, + "_id": { + "$oid": "6711d397cd60fca157e5a1c0" + } + }, + { + "text": "I think I fell in love with him. He's so passionate about literature that he just hipnotized me every time. He really knows his stuff. Readings are very long but very interesting. Midterm and final essays could be slightly hard because he wants perfection, but he will give you all the tools to do well in his class. Plenty of pop 5 minute quizzes!", + "pos": 0.226, + "neu": 0.759, + "neg": 0.015, + "_id": { + "$oid": "6711d397cd60fca157e5a1c1" + } + }, + { + "text": "This is hands down the BEST professor I have had. The class requires lots of reading but he doesn't give finals and is a very nice professor. You will come out of the class feeling like you have actually learned something. Hard but fair grader Doesn't give finals but papers Is very respectful PARTICIPATE AND DO YOUR HW!!!", + "pos": 0.279, + "neu": 0.699, + "neg": 0.022, + "_id": { + "$oid": "6711d397cd60fca157e5a1c2" + } + }, + { + "text": "Professor Ribitzky is an amazing professor. But don't expect him to be your friend. He won't coddle you or waste time on your bullsh*t. He expects respect in his class, which includes no phones and paying full attention. But in return you'll get an amazing education. (Also he says he's a harsh grader but he's not too bad!)", + "pos": 0.25, + "neu": 0.621, + "neg": 0.129, + "_id": { + "$oid": "6711d397cd60fca157e5a1c3" + } + }, + { + "text": "Words can't describe this teacher. He is one of the best I've ever had! He expects a lot, and there'll be a lot to read. His lectures are so fascinating and inspiring, and he really helps you understand the readings. There are a few pop quizzes, which are easy if you did the readings, and two fun essays. I never regretted taking his class.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1c4" + } + }, + { + "text": "He is very very smart and interesting. His lectures will keep you interested. He is very into philosophy and human rights! Gives a lot of information and readings but is very nice! Just pay attention in class and do the readings and you'l be fine! He will change the way you see life (In a good way)! For sure take him, i absolutely loved his class!", + "pos": 0.306, + "neu": 0.67, + "neg": 0.023, + "_id": { + "$oid": "6711d397cd60fca157e5a1c5" + } + }, + { + "text": "He is a tough professor and expects a lot, but at the same time he tries to make the class interesting and has students try to see other viewpoints and do close readings instead of just reading what's on the surface. Definitely do the readings or else the pop quizzes will kill you. Actually felt like I was getting an education.", + "pos": 0.14, + "neu": 0.755, + "neg": 0.105, + "_id": { + "$oid": "6711d397cd60fca157e5a1c6" + } + }, + { + "text": "He is a tough grader and expect really good papers. You have to be very clear with your papers.", + "pos": 0.258, + "neu": 0.678, + "neg": 0.064, + "_id": { + "$oid": "6711d397cd60fca157e5a1c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d397cd60fca157e5a1c9" + }, + "professor_name": "Yazhu Liu", + "rating": 1.6, + "department": "Mathematics department", + "comments": [ + { + "text": "A talent for making math incomprehensible and undigestible. Her lectures are disorganized and she chooses complicated ways to \"explain\" information. She won't let students finish their questions before interrupting and repeating the same jumbled information. A waste of lecture time to just go home and teach yourself everything. AVOID at all costs.", + "pos": 0.047, + "neu": 0.784, + "neg": 0.169, + "_id": { + "$oid": "6711d397cd60fca157e5a1ca" + } + }, + { + "text": "Professor Liu is VERY unclear. She would post all class packets online but answer keys are nowhere. She moves quick in class and gets upset when having to clarify. Weekly pop up quizzes were given but the problems were always more difficult than anything ever taught. She claims she coordinates everything based on syllabus-- definitely not true.", + "pos": 0.051, + "neu": 0.726, + "neg": 0.223, + "_id": { + "$oid": "6711d397cd60fca157e5a1cb" + } + }, + { + "text": "She does speak quietly but provides printouts of her lectures before each class, making it easier to follow along. Very pleasant in class and helpful during office hours. The Department standardizes all course exams so it's not fair to blame her specifically for that. Keep up with your homework -- all exam questions are taken directly from them!", + "pos": 0.213, + "neu": 0.747, + "neg": 0.04, + "_id": { + "$oid": "6711d397cd60fca157e5a1cc" + } + }, + { + "text": "Do not take her class she is the absolute worst. She is very knowledgeable on the course material but couldn't teach it", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d397cd60fca157e5a1cd" + } + }, + { + "text": "She is very difficult to understand, does not know how to teach. Also, she does not know how to explain the material. when asked questions she does not answer it or explain it, she leaves you confused. Her class and your grade is solely based on Exams and Activities that you complete in class. she is not flexible and is difficult to understand.", + "pos": 0.0, + "neu": 0.864, + "neg": 0.136, + "_id": { + "$oid": "6711d397cd60fca157e5a1ce" + } + }, + { + "text": "DON'T TAKE HER. Her quizzes are nothing like what she teaches in class. It is very hard to understand her sometimes. All her grades depend on the exam and quizzes", + "pos": 0.0, + "neu": 0.88, + "neg": 0.12, + "_id": { + "$oid": "6711d397cd60fca157e5a1cf" + } + }, + { + "text": "Definitely knows her material, but is not good at teaching it. Extremely monotone, confusing at times, and very inflexible to alternative methods of solving equations. Also interrupts her students excessively. If you can get a different professor for this subject, you should.", + "pos": 0.097, + "neu": 0.729, + "neg": 0.174, + "_id": { + "$oid": "6711d397cd60fca157e5a1d0" + } + }, + { + "text": "Knowledgeable professor but doesn't know how to explain things; goes over the material very quickly, and when students try to participate, they often get interrupted. Likes things done her way; unwilling to use easier methods. Confusing most times. If you have a question, she'll just repeat what she said before. WebAssign is your friend/enemy.", + "pos": 0.118, + "neu": 0.799, + "neg": 0.082, + "_id": { + "$oid": "6711d397cd60fca157e5a1d1" + } + }, + { + "text": "Professor has a heavy accent, you can barely understand what she is saying. I feel that she rushes through her lectures. If you were to look away or get distracted for one second you would be lost in her class almost immediately. When a students ask for help or for her to be more specific, she'll repeat herself and not answer the student directly.", + "pos": 0.039, + "neu": 0.892, + "neg": 0.069, + "_id": { + "$oid": "6711d397cd60fca157e5a1d2" + } + }, + { + "text": "Gives a bunch of homework that is usually much harder than what is gone over during lectures. Hard to understand, for the most part, always reads off her notes instead of explaining the content herself. When students attempt to answer a question, she cuts them off by talking over them. Quizzes and tests are way harder than lecture content reviewed", + "pos": 0.0, + "neu": 0.942, + "neg": 0.058, + "_id": { + "$oid": "6711d397cd60fca157e5a1d3" + } + }, + { + "text": "such a difficult class and sometimes cant understand. you have to be focused 100% or the minute you move your eyes you will be lost. if you need help there is tutoring and her office hours where you can have one on one help", + "pos": 0.154, + "neu": 0.753, + "neg": 0.093, + "_id": { + "$oid": "6711d397cd60fca157e5a1d4" + } + }, + { + "text": "AVOID HER!! She doesn't know how to teach. Very petty and will call you out if your on your phone and hold up the whole class. Has heavy accent and mummers a lot. Don't bother unless you can study on your own and pass.", + "pos": 0.042, + "neu": 0.843, + "neg": 0.115, + "_id": { + "$oid": "6711d397cd60fca157e5a1d5" + } + }, + { + "text": "Doesnt speak English well has a heavy accent. Dont take it you dont wanna fail and you get distracted easy. You old be lost the moment you blink your eyes", + "pos": 0.154, + "neu": 0.671, + "neg": 0.175, + "_id": { + "$oid": "6711d397cd60fca157e5a1d6" + } + }, + { + "text": "Tests and quizzes are very important. Follow along with her lecture worksheets she posts online and with what she writes on the board. For help she is available during her office hours and will make time for you by appointment. Studying and practice is key. You actually got to put in effort unless your a math genius and have all formulas memorized", + "pos": 0.074, + "neu": 0.926, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1d7" + } + }, + { + "text": "Do not take this professor! Out of all my classes this semester, this was by far the worst class Ive ever taken. She knows her stuff but she does not know how to teach and relay it to the students. Tests are nothing like the practice we do in class. Students always has to correct her work in class. Honestly if you ca choose another professor do so!", + "pos": 0.053, + "neu": 0.869, + "neg": 0.078, + "_id": { + "$oid": "6711d397cd60fca157e5a1d8" + } + }, + { + "text": "Just. Dont. Do. It. If you hate math and need to take this math class, please sign up for another professor.", + "pos": 0.092, + "neu": 0.76, + "neg": 0.148, + "_id": { + "$oid": "6711d397cd60fca157e5a1d9" + } + }, + { + "text": "SHES SUCH A BAD PROFESSOR! her teaching is bad, her exams are hard and nothing like the practice she gives us during class. for my class she never really answered questions we had, just went through the steps again. the only kinda good thing she does is make homework extra credit. IT DOESNT EVEN HELP!! TAKE SOMEONE ELSE!", + "pos": 0.073, + "neu": 0.714, + "neg": 0.213, + "_id": { + "$oid": "6711d397cd60fca157e5a1da" + } + }, + { + "text": "OMG, dont do it to yourself, choose another professor.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1db" + } + }, + { + "text": "Process is extremely difficult, I suggest another processor.", + "pos": 0.0, + "neu": 0.715, + "neg": 0.285, + "_id": { + "$oid": "6711d397cd60fca157e5a1dc" + } + }, + { + "text": "Dont take this professor; she doesn't know how to teach. You will not learn anything!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d397cd60fca157e5a1dd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d398cd60fca157e5a1df" + }, + "professor_name": "Darren Staloff", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "Great Professor, caring. But the papers are a lot compared to average professors. Three 14-page essays with 6 ids and 2 essays each. A lot of readings on which the paper is largely based. If you read, you are good on the paper. He only counts 2 of the 3 papers. However, he is retiring so it's sad to see such a kind professor retiring from CCNY.", + "pos": 0.164, + "neu": 0.778, + "neg": 0.057, + "_id": { + "$oid": "6711d398cd60fca157e5a1e0" + } + }, + { + "text": "Prof. Staloff had such an impact on me as a student. His course brought many challenges--i.e., the reading and writing of long papers. Nonetheless, he pushed us to our academic limit which is what made his course so rewarding and memorable. Anyone who has the opportunity to take him will benefit from the experience.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1e1" + } + }, + { + "text": "The single bes professor Ive had so far. Hes funny, enthusiastic, teaches how to write well for his essays, and you can tell he genuinely wants the best for everyone. If I could take him for every class I absolutely would and I just love him so much. If you want a professor thatll make you look forward to class, TAKE HIM!!", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1e2" + } + }, + { + "text": "Extremely fair grader, who wants to see his students succeed. I would take his class if you care about learning and don't mind reading. One of my favorite classes that I've ever taken, period. His passion and extensive learning are both obvious. Can't recommend him enough - his lectures always made me think, and I looked forward to them.", + "pos": 0.214, + "neu": 0.756, + "neg": 0.03, + "_id": { + "$oid": "6711d398cd60fca157e5a1e3" + } + }, + { + "text": "Professor Staloff is honestly one of my favorite teachers in the world. He is a genuine, kind and extremely intelligent man. He teaches with PASSION and he gives excellent feedback. He improved my writing so much and he is also very patient. If you can take him, definitely take his class. You will not regret it and you will learn so much; I promise", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1e4" + } + }, + { + "text": "Honestly, Staloff is without a doubt the best professor or teacher I have ever had. If you have the opportunity to take one of his classes, DO IT. You will learn so much and he will change the way you think about things. He is more than willing to help you with the assignments. If you show interest, you will get so much back from the class.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1e5" + } + }, + { + "text": "This guy is probably the most knowledgable, well-read professor you'll ever meet in your entire life. He'll school you in ANY subject. He brings passion and excitement to the classroom. There is so much to learn from him, and he pushes his students to the limit- and then some. He assigns an obscene amount of readings and papers, but you'll grow", + "pos": 0.064, + "neu": 0.899, + "neg": 0.037, + "_id": { + "$oid": "6711d398cd60fca157e5a1e6" + } + }, + { + "text": "The best. Inspires a mythic level of devotion in his students. Stupendously well read and able to make any topic fascinating. One of those professors who will actually change your life.", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1e7" + } + }, + { + "text": "Fantastic. Knows his stuff, connects concepts and themes, readily available for essay feedback, fair grader, overall a very interesting course from a very interesting professor. Our adjunct even sat in on a lot of his classes because he brought up such interesting points. Will definitely take another class from him.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1e8" + } + }, + { + "text": "He is a very intelligent and passionate about his topic. He knows his stuff very well and makes the class exciting. You have to read alottttt. And do a final 12 pg pape. if you are up to this take this guy.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1e9" + } + }, + { + "text": "long readings and papers, but I didn't regret a single minute spent in his class--Staloff is a fountain of knowledge! He is absolutely irreplaceable!!", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1ea" + } + }, + { + "text": "great professor to have--i really enjoyed him...in fact this is the third time I will have him this semester...ive had him for FIQWS, HIST 3220 and now HIST 3221. If you are up to reading your behind off and writing crazy papers-hes the guy 2 have....I highly recommend him", + "pos": 0.181, + "neu": 0.777, + "neg": 0.041, + "_id": { + "$oid": "6711d398cd60fca157e5a1eb" + } + }, + { + "text": "esay, but you need to prticipate!!!!!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1ec" + } + }, + { + "text": "Demanding, but reasonable. If you want to learn, take his class. If you want an easy class, don't. Lectures almost exlusively, but has a ton of knowledge to share. Assigns a lot of reading, and gives quizzes to make sure people read, but his grading policies are more than fair. I didn't do the work, so I got a bad grade. Still a great class.", + "pos": 0.257, + "neu": 0.669, + "neg": 0.074, + "_id": { + "$oid": "6711d398cd60fca157e5a1ed" + } + }, + { + "text": "I could listen to this professor lecture for hours -- extremely knowledgable and extremely interesting. So long as you don't mind a heavy reading load, I highly recommend him. You will get so much out of his courses if you are willing to put a good amount of work into them. Always willing to help too.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1ee" + } + }, + { + "text": "Pretty much a genius. Very, very bright. Glad I had him. If you want to learn, he is what you are looking for. Makes you read a lot. But it's worth it. Heavy on classic interpretations. Here's the real deal in History. Learn from a true scholar.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1ef" + } + }, + { + "text": "At the start he demands everyone to read and participate, but in the end he does indeed talk the whole time.Once in a while he lets a student gets a word in. He only assigns 3 short papers based on 3 short books. One of the easier professors to take considering how heavy the subject can be, If you can't handle his work load then just quit college.", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1f0" + } + }, + { + "text": "He expects us to do alot of reading, and to participate, but he ends up talking the whole time. Still, he only assigns 3 papers the whole semester, and a take home final. He lets you rewrite the papers too...overall-he's an easy B+", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1f1" + } + }, + { + "text": "He likes clarity yet he fails to provide sufficient guidelines in writing papers. I give him points for being somewhat animated in class. Other than that, not very helpful at all (if you're looking for insightful lessons)", + "pos": 0.125, + "neu": 0.753, + "neg": 0.122, + "_id": { + "$oid": "6711d398cd60fca157e5a1f2" + } + }, + { + "text": "This man like to hear the sound of his own voice too much. He likes to teach the history of \"Great Men\" and doesn't mind leaving out the importance of movements of workers, blacks, and women for change", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1f3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d398cd60fca157e5a1f5" + }, + "professor_name": "Nellie Seng", + "rating": 4.8, + "department": "Music department", + "comments": [ + { + "text": "She's awesome! I love her accent and the way she taught the class throughout the whole semester! She always keeps students engaged and entertained during her lectures! I would def. recommend this prof. to anyone! Just do all your assignments, pay attention to class, & participate! A+!", + "pos": 0.291, + "neu": 0.686, + "neg": 0.023, + "_id": { + "$oid": "6711d398cd60fca157e5a1f6" + } + }, + { + "text": "Great teacher. Interesting class. Easy A.", + "pos": 0.764, + "neu": 0.236, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1f7" + } + }, + { + "text": "She is a funny and good professor. She gives you everything you need to know before an exam and she reviews right before it too. The only bad thing is she assigns too many essay but she only wants no less than 2 pages. Take her if you want an A", + "pos": 0.095, + "neu": 0.816, + "neg": 0.09, + "_id": { + "$oid": "6711d398cd60fca157e5a1f8" + } + }, + { + "text": "just listen to what she says in class and you pass!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1f9" + } + }, + { + "text": "Great professor! You learn a lot from this class. She teaches you what you need to know and leaves the bs behind! She explains the direction of the class very clear and lets you know what is expected. However, spelling counts in this class. She takes off 1/2 of a point for every misspelled answer but just study the words and it would be fine!", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1fa" + } + }, + { + "text": "She's great all around. Take her if you can!!", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1fb" + } + }, + { + "text": "She's got so much energy she'll power you up for the day!", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1fc" + } + }, + { + "text": "The best prof you could have for music, she knows her material and if u show interest in the class and take good notes, you will get a good grade. Her tests are simple because she basically tells u all the answers to them before the test itself. There are essays but they are doable, with enough of an heads up to do them. Best prof I had.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1fd" + } + }, + { + "text": "Best Professor EVERRR!!! She is so talented and very nice. She gives 75% of test answers so you can get 100's when you just do minimal studying. Her ESSAYS can be answered by paraphrasing the TEXTBOOK and you'll get A's. She even bought everyone who went to the final exam review coffee!!!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a1fe" + } + }, + { + "text": "She is great professor. The only problem is she gives a bit too much essays to write.. She Gives at least half of the answers to her quizzes and tests before hand. Great prof", + "pos": 0.259, + "neu": 0.68, + "neg": 0.061, + "_id": { + "$oid": "6711d398cd60fca157e5a1ff" + } + }, + { + "text": "this professor is extremely easy and she always give at least 75% of the answers to quizzes/tests by email. She gives a lot of essays but u can bs and get at least a B in it. She makes the classroom very entertaining and never get bored from listening to her! i recommend her especially to boost up ur GPA", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a200" + } + }, + { + "text": "Very down to earth prof! Only problem is she gives too much writing assignments compared to other music professors. No text book required which good part but get ready for loads of work anyways. Other than that she's very helpful gives partial answers to quiz and trys to make sure the class understands. Her class is easy enough to get a B or higher", + "pos": 0.214, + "neu": 0.741, + "neg": 0.045, + "_id": { + "$oid": "6711d398cd60fca157e5a201" + } + }, + { + "text": "great professor!!!! if you ever get a chance take her. she tells you exactly what's going to be on the exams so they are easy. i really don't think its possible to leave without a good grade since she helps her students so much. just don't be late and if you feel like wasting money buy the book", + "pos": 0.216, + "neu": 0.696, + "neg": 0.088, + "_id": { + "$oid": "6711d398cd60fca157e5a202" + } + }, + { + "text": "Good class, but she gives too many essays!! It gets annoying after a whle. The good thing is its worth a small amount of your grade.", + "pos": 0.255, + "neu": 0.642, + "neg": 0.104, + "_id": { + "$oid": "6711d398cd60fca157e5a203" + } + }, + { + "text": "One of the best professors at ccny. Her assignments aren't too hard, and as long as you read the handouts shes gives you'll ace the tests. Shes reasonable and nice, and is willing to help if you have any problems.", + "pos": 0.226, + "neu": 0.719, + "neg": 0.055, + "_id": { + "$oid": "6711d398cd60fca157e5a204" + } + }, + { + "text": "Very nice and clear prof. Easy A if u memorize the stuff. Dnt need textbook(will nver use it). Make sure u go to class take good notes and dnt miss her review sessions. She gives u freebies to every quiz & test and whatever she goes over is exactly how it's on the test. BTW she is cute wit British accent. Take her class(better then all Mus profs)", + "pos": 0.244, + "neu": 0.737, + "neg": 0.02, + "_id": { + "$oid": "6711d398cd60fca157e5a205" + } + }, + { + "text": "Nellie is the best professor I've had my whole freshman year. I'm so glad I took this class. She isn't strict at all and shes really funny. Midterm was awesome!! quizzes are easy. She reviews like everyday, so its imposible to fail the quizzes. Most are multiple choice. Great class great prof!don't even need to buy the textbook.", + "pos": 0.362, + "neu": 0.595, + "neg": 0.043, + "_id": { + "$oid": "6711d398cd60fca157e5a206" + } + }, + { + "text": "This Professor is extrememly easy! She is very clear in her teaching and she makes music 101 fun! Take her! She gives freebees to questions on the quizzes and exams! There is a lot of work but it's all worth it because she gives us hints to questions on the exams!", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a207" + } + }, + { + "text": "No joke, Nellie is one of the greatest professors I've ever had the pleasure of taking. Her method of teaching was exquisite, slipping you reviews in the first minutes of class, so you know what's on the test (which she gives out a broad amount of what you'll need), and with some minor involvement in class, you'll absorb it. Awesome class!", + "pos": 0.173, + "neu": 0.801, + "neg": 0.027, + "_id": { + "$oid": "6711d398cd60fca157e5a208" + } + }, + { + "text": "Omg. She is one of the best, coolest, nicest, funniest ,and caring professors you will ever dream of taking. When she gives you hint of what will be on d test/quiz, u better take her word for it cuz dats exactly what will be on d test. She helps when asked. I never hated going to her class is always lively. Thank God I took her class. Take her clas", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d398cd60fca157e5a209" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d399cd60fca157e5a20b" + }, + "professor_name": "Angelo Colmenero", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "Easy material. He breaks down the material very well and engages the class. He answers emails pretty fast so that's helpful however he's an extremely harsh grader. I messed up slightly on my code, which was enough to get me a 50% on that assignment. I wish he were not that harsh with grading.", + "pos": 0.272, + "neu": 0.647, + "neg": 0.08, + "_id": { + "$oid": "6711d399cd60fca157e5a20c" + } + }, + { + "text": "He's pretty straightforward with the course and his lectures. Most of the grade comes from the quizzes, while there is one midterm and a final. Studying really helps with the exams and the quizzes are based on lecture material. He also offers study guides and reviews. Attend lecture and recitation, and study and you'll do well in this course.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a20d" + } + }, + { + "text": "Professor Colmenero is an excellent educator. He's caring and very knowledgeable. He pours into each lecture and takes pride in the work he shares. He welcomes all questions and uses great examples to make concepts easy to understand. You HAVE to read and study in order to do well in his class but he breaks down the material well.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a20e" + } + }, + { + "text": "I took a neuropsychology master's program. It is a challenging course, and I took three weeks summer course. But Dr. Colmenero is very helpful and understands students. His exams and quizzes are challenging. But he gives lots of extra credit to students to make up those grades. So I recommend him if you are willing to study and learn to get an A.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a20f" + } + }, + { + "text": "His teaching methods promote you to learn. I enjoyed my experience with him and plan on taking any class I need with him. Offers many different extra credit opportunities. He sets you up for success, it's all up to you how much effort you put in.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a210" + } + }, + { + "text": "Although he is a nice and easygoing professor, his quizzes can be difficult because of the way he words them. You have to memorize and understand the slides to pass the quizzes. ALSO he gives 16 minutes only for 11 questions, 1 of them being extra credit. Personally I don't think its enough time to answer all the questions", + "pos": 0.118, + "neu": 0.844, + "neg": 0.038, + "_id": { + "$oid": "6711d399cd60fca157e5a211" + } + }, + { + "text": "Angelo is a great professor. Really enjoyed his lectures. He tries to make class more personal and use his own experiences to explain concepts. He's funny and a bit awkward in an endearing way. There are 6 quizzes worth 60% and a midterm and final worth 40%. Can be hard to remember all the terminology, but lots of interesting material to learn.", + "pos": 0.19, + "neu": 0.774, + "neg": 0.036, + "_id": { + "$oid": "6711d399cd60fca157e5a212" + } + }, + { + "text": "Angelo is a nice guy but sometimes his lectures can be confusing. He gives examples too much to the point it takes away the idea of the topic. His quizzes are written by himself so it's confusing a bit. Sometimes his questions are wrong but won't correct it or give correct credit on it. Overall, nice guy but pick someone else.", + "pos": 0.123, + "neu": 0.751, + "neg": 0.126, + "_id": { + "$oid": "6711d399cd60fca157e5a213" + } + }, + { + "text": "Angelo is the nicest professor. He seemed new and probably doesn't know how to address a large class, but he did well. He had 6 quizzes and 2 exams, but no papers. The answers can be mostly found in the slides. They may be worded differently but the concepts are the same. He is willing to adjust things based on class feedback.", + "pos": 0.056, + "neu": 0.901, + "neg": 0.043, + "_id": { + "$oid": "6711d399cd60fca157e5a214" + } + }, + { + "text": "There are six quizzes, 10 questions each, worth 60% of your grade. Meaning each incorrect response in a quiz is 1% of your grade. These quizzes are easy, but i'd say in the beginning of the semester, make sure to utilize lecture slides, they are really helpful. Angelo is great, and so are his T.A", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a215" + } + }, + { + "text": "AVOID! Makes up his questions to prevent cheating which is ok. But his quizzes and exams are worded in such a difficult way. Also, uses an online type of site instead of a textbook. I also, did not understand a single thing being thought in this class. For real look for an easy class or professor.", + "pos": 0.077, + "neu": 0.801, + "neg": 0.123, + "_id": { + "$oid": "6711d399cd60fca157e5a216" + } + }, + { + "text": "One of the most caring and knowledgeable professors I've ever had. He explained the key concepts in a way that was easy to understand and remember. No essays (just quizzes and tests) in this class and plenty of easy extra credit opportunities too! Definitely take his class!", + "pos": 0.296, + "neu": 0.667, + "neg": 0.037, + "_id": { + "$oid": "6711d399cd60fca157e5a217" + } + }, + { + "text": "One of the best profs I've had in undergrad! Relates the course to RELEVANT life events & helps you build RELEVANT life skills! Getting a certificate in research design is part of the curriculum; you can put it on your LinkedIn to help you get jobs. Really wants students to succeed and acknowledges their humanity.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a218" + } + }, + { + "text": "Hard to understand, a lot of fumbling with words and falls off topic all the time. I don't need the brain compared to food prep because you once used to work at a restaurant sir. He would not check his quizes before giving it to us so he had to change our scores often because \"wrong\" answers where actually right. Nightmare learning circumstances.", + "pos": 0.036, + "neu": 0.897, + "neg": 0.067, + "_id": { + "$oid": "6711d399cd60fca157e5a219" + } + }, + { + "text": "I am so glad I took Prof. Colmenero this Summer. He really cares about his students and stops to make sure everyone understands his lectures. I loved his approach to teaching which made me want to participate and look forward to class. 2 exams (20pts/e) and 6 quizzes (10pts/e). Trust me, as long as you pay attention and study his slide u will pass!", + "pos": 0.236, + "neu": 0.725, + "neg": 0.039, + "_id": { + "$oid": "6711d399cd60fca157e5a21a" + } + }, + { + "text": "If you get the opportunity, please take one of his classes. Prof. Colmenero is so passionate while he teaches and he makes you think outside the box to really get you interested in the material. His quizzes/exams are very fair and as long as you pay attention in class, you'll not only do well but you'll also gain a wealth of knowledge. Great class!", + "pos": 0.305, + "neu": 0.663, + "neg": 0.032, + "_id": { + "$oid": "6711d399cd60fca157e5a21b" + } + }, + { + "text": "Difficult material, but coolest class I've ever taken and it will inform other classes I take in the vein of neuropsychology. Professor was fantastiche's relaxed and personable, but also very passionate about the subject matter, which was contagious and helped me stay engaged. Only drawback is the textbook site crashes often.", + "pos": 0.22, + "neu": 0.704, + "neg": 0.076, + "_id": { + "$oid": "6711d399cd60fca157e5a21c" + } + }, + { + "text": "Honestly, the professor is really good but the class is really tough. We had 6 quizzes and 2 exams but they were based solely on the lecture. he makes his own exams so theres no point in looking it up on google. sometimes his wording is hard to understand but overall his class is fair. he gives pdf of lecture slides that help for exams and quizzes", + "pos": 0.137, + "neu": 0.773, + "neg": 0.09, + "_id": { + "$oid": "6711d399cd60fca157e5a21d" + } + }, + { + "text": "Professor Colmenero is a cool professor. He's very chill and teaches well. He gives extra credit but his quizzes and tests are tough. He only grades you based on 6 quizzes (60% of your grade) and 2 tests (40% of your grade). He doesnt drop any grade which makes it hard. His slides are useless but the textbook is helpful. Overall, take someone else.", + "pos": 0.148, + "neu": 0.757, + "neg": 0.095, + "_id": { + "$oid": "6711d399cd60fca157e5a21e" + } + }, + { + "text": "Professor Colmenero is the best professor I've taken so far. He actually cares about his student's success and helped us with developing useful future skills. He's great at giving extra credit opportunities and will take the time to answer any questions. He's also patient with explaining concepts to students until they fully understand. All online!", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a21f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d399cd60fca157e5a221" + }, + "professor_name": "Mohammad Nizamuddin", + "rating": 3.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "You just need to show how to you approach the problem in exam. He doesn't care about correct solution.", + "pos": 0.097, + "neu": 0.677, + "neg": 0.225, + "_id": { + "$oid": "6711d399cd60fca157e5a222" + } + }, + { + "text": "Interesting class and very useful for the job market. The textbook is more useful than expected and the hws are pretty long. Exam questions are like the hw but much more complex with steps added but he will give so much partial credit. Was supposed to get a B but got curved up to an A- so he is a very caring and kind grader.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a223" + } + }, + { + "text": "He curves, he gives a lot of partial credit on exams, free points for hw, and he fails no body. Better than the other options", + "pos": 0.177, + "neu": 0.6, + "neg": 0.222, + "_id": { + "$oid": "6711d399cd60fca157e5a224" + } + }, + { + "text": "Professor Nizamuddin is great. The textbook can be a bit much at times - he has a knack for simplifying complex material. Learned a lot taking this course with him.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a225" + } + }, + { + "text": "One of the best Professor in CCNY.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a226" + } + }, + { + "text": "His exams are extremely long and hard to finish in the short time he assigns. The problems are extremely difficult and extensive. Although a high curve is promised, it was not delivered. He gave a very small curve at the end. He does give a decent amount of points, and cares more about your problem solving process; rather than the right answer.", + "pos": 0.108, + "neu": 0.753, + "neg": 0.139, + "_id": { + "$oid": "6711d399cd60fca157e5a227" + } + }, + { + "text": "Heavy accent. Overall average professor. You have to study on your own. His online exams are very confusing because his format of questions due to poor English is so confusing that you won't know how to solve the problem. However he is caring and he is easy grader. Had cumulative average of 80 from all exams, ended up with an A-, which is very fair", + "pos": 0.135, + "neu": 0.731, + "neg": 0.134, + "_id": { + "$oid": "6711d399cd60fca157e5a228" + } + }, + { + "text": "His accent is very hard to understand. If you want to actually learn power do not take him, please. I did not understand anything he said rather had to learn everything on my own. He made online exams really confusing, long, and unrelated to what he teaches. I would not recommend him to anyone.", + "pos": 0.022, + "neu": 0.841, + "neg": 0.137, + "_id": { + "$oid": "6711d399cd60fca157e5a229" + } + }, + { + "text": "Overall very average professor. Doesn't teach the best but gives a lot of partial credit and curves at the end. Did class average on the exams and only answered one question fully on the final and ended up with an A. Would take again and recommend him. As long as you do the textbook examples you will be fine.", + "pos": 0.134, + "neu": 0.833, + "neg": 0.033, + "_id": { + "$oid": "6711d399cd60fca157e5a22a" + } + }, + { + "text": "He isnt bad, he knows his stuff and can explain a concept, he really does show that he cares. His exams are hard but if you improve you could do well in the end. I failed both midterms but did well enough on the final to get a B. I would recommend him because you do learn from him and you can do good in the class if you put in the effort", + "pos": 0.225, + "neu": 0.712, + "neg": 0.063, + "_id": { + "$oid": "6711d399cd60fca157e5a22b" + } + }, + { + "text": "I did not understand one word he said the semester Bc of his accent. Be prepared to read and study on your own. He allows you to bring a formula sheet to exams, he also curves. The best part is he gives a ton of partial credit, only caring about steps and not your final answer. His final covered the examples he went over in class the weeks before.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a22c" + } + }, + { + "text": "Lectures arent too clear and are often messy and hard to follow. However, there are many online resources to utilize. Tests are manageable as long as you put in the work. Clear grading criteria. However, be prepared to learn most of the material on your own as lectures just arent enough.", + "pos": 0.08, + "neu": 0.813, + "neg": 0.108, + "_id": { + "$oid": "6711d399cd60fca157e5a22d" + } + }, + { + "text": "This guy needs to learn how to organize if he knows the meaning because for power you will be better off with the book and homeworks. He is lazy as hell so dont rely on what he will be saying. 2 midterms and a final so do well above average to get a decent grade. He is nice generally, but in class he is a mess you will get it eventually taking him", + "pos": 0.069, + "neu": 0.834, + "neg": 0.097, + "_id": { + "$oid": "6711d399cd60fca157e5a22e" + } + }, + { + "text": "He is greatest teacher ever had and good man.", + "pos": 0.504, + "neu": 0.496, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a22f" + } + }, + { + "text": "Gives good partial points for the exams. Some questions are very hard and take a long time to do. Read the book to re-learn concepts and understand all problems at the back of each chapter. If an A is needed, do well above average to get it. Going to his office hours helps if a concept or two are unclear. Anyways, not a terrible choice in EE dept.", + "pos": 0.131, + "neu": 0.787, + "neg": 0.082, + "_id": { + "$oid": "6711d399cd60fca157e5a230" + } + }, + { + "text": "He knows the topics but his presentation on the board is often sloppy. He helps students in his office hours by clarifying concepts to them. The material is very interesting and is worth any amount of time that students invest in it. Overall, class was moderately difficulty and the professor tries his best to help. On to power 2...", + "pos": 0.254, + "neu": 0.705, + "neg": 0.041, + "_id": { + "$oid": "6711d399cd60fca157e5a231" + } + }, + { + "text": "He's very disorganized. Anything he writes on the blackboard will be a complete mystery to you. He assigns a ton of HW/projects, but doesn't spend a lot of time grading them. Exams are very straightforward and highly resemble the HW and certain examples he covers in class. You'll have to learn the bulk of the material on your own via the textbook.", + "pos": 0.041, + "neu": 0.932, + "neg": 0.027, + "_id": { + "$oid": "6711d399cd60fca157e5a232" + } + }, + { + "text": "Accent's a little hard to understand. Speaks quickly so pay attention: he doesn't like to repeat himself. The concepts will fly over your head if you're not a quick learner or read up. May have to rely on group members in class to teach you the material. He also says HW very fast, so pay attention for that. Nice man but impatient if you are behind.", + "pos": 0.027, + "neu": 0.853, + "neg": 0.12, + "_id": { + "$oid": "6711d399cd60fca157e5a233" + } + }, + { + "text": "very confusing guy. I had a hard time taking his class, even though this class should have been easy. Not very organized.", + "pos": 0.114, + "neu": 0.745, + "neg": 0.141, + "_id": { + "$oid": "6711d399cd60fca157e5a234" + } + }, + { + "text": "As a professor he's really nice and gives a lot of partial credit for each exams; however the problem is that his lectures are not so great like can do the circuit part but the math he skips it because he expects you know it; so your better off with the book and the exams are straight forward so do good on the final and curves as well", + "pos": 0.211, + "neu": 0.716, + "neg": 0.074, + "_id": { + "$oid": "6711d399cd60fca157e5a235" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d399cd60fca157e5a237" + }, + "professor_name": "Lara Netting", + "rating": 4.4, + "department": "Asian Studies department", + "comments": [ + { + "text": "The topic of this class i found boring. The professor is nice but u have to participate. Also there is small group discussion every day end of the class. Also, get ready to read.", + "pos": 0.136, + "neu": 0.82, + "neg": 0.044, + "_id": { + "$oid": "6711d399cd60fca157e5a238" + } + }, + { + "text": "Focuses on EAST Asian units: China, Japan, and some of Korea (that unit was left pretty short due to time), don't expect it to be based on SEAsia but does focus on colonialism/war + modern day issues. An okay white prof. Make sure to not submit things late or else it'll go from x/100 to x/80 from my experience. Liked the writing workshops", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a239" + } + }, + { + "text": "Nice prof, but the max grade you can get is an A, not an A+. Not a huge deal but kind of weird so she gave me a 95 for everything. There are 2 papers, 2 mini presentations, 1 paper proposal, and 1 final paper. No particular grading criteria. If you just take a stance and talk about it, she will give a good grade. Anything late gets max grade of C+.", + "pos": 0.071, + "neu": 0.832, + "neg": 0.096, + "_id": { + "$oid": "6711d399cd60fca157e5a23a" + } + }, + { + "text": "Interesting lectures and just a few assignments", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a23b" + } + }, + { + "text": "She's cool, caring and all that yk. And I was doing so well in her class. At the end of the semester, she assigned us a final paper. Which I neglected and didn't put much effort that brought my entire A grade to B. So be careful on the final paper.", + "pos": 0.17, + "neu": 0.773, + "neg": 0.057, + "_id": { + "$oid": "6711d399cd60fca157e5a23c" + } + }, + { + "text": "She is an angel of a professor. The sweetest professor and easiest class I've taken while still learning about the content. TAKE HER!!", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a23d" + } + }, + { + "text": "I've taken prof. Netting for 3 online classes and I can say she is a great professor who cares about her students. Her classes aren't a lot, there is no quiz/test, usually contains 3 commentaries (2 paragraphs) and a final 5-page essay. Participation matters but so just make sure you say something in the chat so you get full participation points", + "pos": 0.134, + "neu": 0.842, + "neg": 0.024, + "_id": { + "$oid": "6711d399cd60fca157e5a23e" + } + }, + { + "text": "Petty chill and understanding professor. I actually really enjoyed this class.", + "pos": 0.25, + "neu": 0.625, + "neg": 0.125, + "_id": { + "$oid": "6711d399cd60fca157e5a23f" + } + }, + { + "text": "Legit the best. She tries her best to make sure everyone understands whats going on during class. There is a lot of reading but its not that bad since the readings are interesting and there is just one paper which is the final and thats pretty much it. There are also commentaries in total you write like three. But overall, great class.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a240" + } + }, + { + "text": "Very good professor, she knows her stuff. Participation is VERY important in her class. She also makes you type 3 commentary papers on the homework assignments. The HW readings are super long and she expects more analysis of the reading rather than summarizing them. Make sure your assignments are in on time or else you can't get higher than a C+.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a241" + } + }, + { + "text": "She is a good prof with well-explanation. She gave you a lot of readings, one reading for each class, that's the basic. You need to participate in class, other whiles she will call on you. If you can not answer, she will come back to you later. You have to say something. No test at all but just TWO ESSAYS based on the lectures.", + "pos": 0.03, + "neu": 0.946, + "neg": 0.024, + "_id": { + "$oid": "6711d399cd60fca157e5a242" + } + }, + { + "text": "EACH class, you have to write about what you understood and what questions you have. You would expect this to be graded lightly as it is 5% of the grade but no! She will literally give you a 5 out of 10 just for your OWN thoughts about the lecture that day and it is not even based on how much you write or what you write. A \"B\" class at best", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a243" + } + }, + { + "text": "If someone told you that she is an easy A professor, this was only true years ago. She had changed her difficulty and is now a lot harder than she used to be. Students had only two papers to do and got A's easily but now you have to do a lot but very difficult to get an A! So if you are pursuing an easy A class she is not your choice anymore!", + "pos": 0.12, + "neu": 0.816, + "neg": 0.065, + "_id": { + "$oid": "6711d399cd60fca157e5a244" + } + }, + { + "text": "Grading criteria was very unclear. No rubric for final paper and never received any feedback on that paper. Class was only a roundtable discussion and she was more of a facilitator than a teacher. Course materiel was pretty boring (Consumer Culture in Modern East Asia) at least to me.", + "pos": 0.058, + "neu": 0.814, + "neg": 0.128, + "_id": { + "$oid": "6711d399cd60fca157e5a245" + } + }, + { + "text": "A highly competent, unique professor who's able to offer historical, personal, and eye-opening insight into Asia. If you're willing to work for your grade (participation matters), I recommend taking this class.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a246" + } + }, + { + "text": "Made the student's life easier. If you're struggling through the readings, she will explain it for you effortlessly and give you the main points, which will help you towards writing your course papers. She made the class easy. You get to watch animated films and have discussions about them. Semi-easy A class. A very understanding instructor.", + "pos": 0.133, + "neu": 0.823, + "neg": 0.044, + "_id": { + "$oid": "6711d399cd60fca157e5a247" + } + }, + { + "text": "She is a person who lived in the countries that she teaches about, except Korea (probably). She handles awkward silences in class very well, especially when know one knows the answer. She does make you have group discussions about readings, so make sure you do them, because 90% of the class is based on them. They are interesting readings too.", + "pos": 0.118, + "neu": 0.858, + "neg": 0.025, + "_id": { + "$oid": "6711d399cd60fca157e5a248" + } + }, + { + "text": "I believe I wont see such a great professor like her again.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d399cd60fca157e5a249" + } + }, + { + "text": "She is probably one of the best professors I have ever seen at CCNY. She is always ready to help if you have any question. There are 2 papers, each paper is 40% of your grade. No midterm or final for this class.", + "pos": 0.186, + "neu": 0.771, + "neg": 0.043, + "_id": { + "$oid": "6711d399cd60fca157e5a24a" + } + }, + { + "text": "She nice and all but she said it herself in day 1 that if she sees a name on an assignment of a person she knows rather than someone she doesn't she will give the person she know more points. I find this a bit biased, basically to get an A she needs to know u. You can work your but off for the essays but still end up with a B/B+. NOT AN EASY A!!!", + "pos": 0.023, + "neu": 0.886, + "neg": 0.09, + "_id": { + "$oid": "6711d399cd60fca157e5a24b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39acd60fca157e5a24d" + }, + "professor_name": "Chaim Tarshish", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "He is a good professor, though the course can be a bit heavy. As long as you stay on track, take notes, and do well on the quizzes, you'll be fine. If you need help, reach out he responds quickly and is very supportive. He's calm and helpful, and I would recommend him.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a24e" + } + }, + { + "text": "Prof. Tarshish truly cares about his students. He provided many examples of the material he taught to ensure we really understood the concepts. Class consisted of 3 open note quizzes, 3 exams non cumulative, 1 group project/presentation, and 1 literature review paper, with extra credit opportunity through SONA. Pamela is a great TA as well.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a24f" + } + }, + { + "text": "Prof. Tarshish is a great guy. He's very humble and chill and just wants all of his students to do well. All he does is give out a few quizzes, 3 exams, a literature review of a scientific psychology research paper, and a poster for a topic involving cognition . Would definitely recommend him, attendance is taken during lectures and recitation.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a250" + } + }, + { + "text": "1 paper, 1 poster w a partner, 3 exams and some quizzes. Harsh late work policy. Attendance is taken in lectures and recitation. Content id say is avg in terms of difficulty, just a lot of concepts to memorize but not hard to understand. he gives anecdotes to help us understand concepts in lecture. not rude, but not flexible on policies.", + "pos": 0.119, + "neu": 0.799, + "neg": 0.082, + "_id": { + "$oid": "6711d39acd60fca157e5a251" + } + }, + { + "text": "I have zero complaints about Professor Tarshish, every PSY 350 class was a blast and a half with him. Though my only tiny nitpick is that if you're taking his class in the morning/like to sit in the back, it can sometimes get a little hard to hear the professor. I recommend sitting in the middle or in the front to hear him speak better.", + "pos": 0.077, + "neu": 0.869, + "neg": 0.054, + "_id": { + "$oid": "6711d39acd60fca157e5a252" + } + }, + { + "text": "Professor Tarshish is amazing! He is very understanding towards students and makes sure that all questions are answered. Workload is pretty light, and the TAs are great! Take Ava as a TA if you can.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a253" + } + }, + { + "text": "hes a nice prof and the class workload really isn't bad at all. you get some quizzes and tests, and two papers, but those are smth you cover with your ta. i recommend Ava as a ta, she's so sweet.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a254" + } + }, + { + "text": "Professor Tarshish was great. This class was not a heavy workload. There are some quizzes, a few tests, and a couple research papers. As long as you stay on top of everything, this class is not difficult. He is also very passionate about what he is teaching.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a255" + } + }, + { + "text": "Professor Tarshish has been one of my favorite instructions at City College when it comes to Psychology. He is very kind and is always passionate about the material he covers. He is also accessible outside of class, in case of any confusion or assistance. The workload for this class may be time consuming, but it is doable. Take him!", + "pos": 0.108, + "neu": 0.867, + "neg": 0.025, + "_id": { + "$oid": "6711d39acd60fca157e5a256" + } + }, + { + "text": "Professor Tarshish was a very fair professor! There were discussion boards (30%), quizzes (15%) and 3 exams (Exam 1 (15%) & Exam 2 &3 (20%)) that counted towards your final grade. Extra credit also helps boost your grade if you don't do well on an exam. Make sure to attend lectures, read the textbook, and take notes. You will ace all exams!", + "pos": 0.188, + "neu": 0.787, + "neg": 0.025, + "_id": { + "$oid": "6711d39acd60fca157e5a257" + } + }, + { + "text": "This is the second A+ I got from him. His class is absurdly easy. He is very clear and will explain things in different ways until you understand. If you show him respect by treating his course as a college course, you will get an easy A to pad your GPA with. If you somehow manage to fail this course, please reevaluate if college is right for you.", + "pos": 0.177, + "neu": 0.779, + "neg": 0.044, + "_id": { + "$oid": "6711d39acd60fca157e5a258" + } + }, + { + "text": "Prof Tarshish is a very nice guy. Overall this class was easy. There were 3 exams, 4 quizzes and a few discussion boards. All the test material comes from the textbook. He offers SONA extra credit. If you take notes from his slide or from the textbook, you should be okay in this class. Would def recommend this prof", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a259" + } + }, + { + "text": "We had no clear syllabus at the beginning but exams, 4 papers, and a quiz every 2 or 3 chapters. He can be helpful outside of class but TA's are great and there is SONA ec at the end. Just read the textbook and follow along, not too difficult. Would like to take something different with him", + "pos": 0.222, + "neu": 0.755, + "neg": 0.023, + "_id": { + "$oid": "6711d39acd60fca157e5a25a" + } + }, + { + "text": "Honestly, this semester was a little off with the previous reviews. He is disorganized but funny and helpful and the lectures are okay, the syllabus was not straightforward in the beginning and it was just a lot of quizzes and papers but the textbook and TA's are your most valuable resources. Learned a lot from Ava, she was the ultimate goat!", + "pos": 0.229, + "neu": 0.75, + "neg": 0.022, + "_id": { + "$oid": "6711d39acd60fca157e5a25b" + } + }, + { + "text": "If you read before each class, you will have no problem following his lectures. He gave a couple of assignments throughout the semester with clear instructions, quizzes for every two chapters, and three exams. One of the kindest professors I've ever taken. I definitely recommend taking him. Provides extra credit (participation in SONA studies).", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a25c" + } + }, + { + "text": "3 paper and 3 exams that's it. All the questions are from the test bank I suggest buy the test bank and study from there. He is a great professor. I highly recommend him.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a25d" + } + }, + { + "text": "One student complained about having to read the text book!! What and where are we, a 5 year old in kindergarten? We may be minorities but we don't need to be dumb down. YES YOU'RE IN COLLEGE AND YOU HAVE TO READ AND YES YOU HAVE TO TAKE NOTES AND YES YOU HAVE TO STUDY. Dr. Tarshish is a very nice challenging instructor and we are luck to have him.", + "pos": 0.268, + "neu": 0.665, + "neg": 0.068, + "_id": { + "$oid": "6711d39acd60fca157e5a25e" + } + }, + { + "text": "He gives assignments and quizzes weekly , which are a huge part of your grade. His test are difficult. I honestly wouldn't take him again.", + "pos": 0.178, + "neu": 0.738, + "neg": 0.084, + "_id": { + "$oid": "6711d39acd60fca157e5a25f" + } + }, + { + "text": "This class is straightforward if you read the chapters for each lecture. There will be three exams based on the textbook. There will be a few quizzes and assignments throughout the class based on the chapters. Trust me you have to read, I got lucky this semester, bypassing with an A- when I thought I would have gotten a B.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a260" + } + }, + { + "text": "Not bad, too many quizzes for me personally its about 2-3 every chapter and can make or break your grade. Papers and extra credit available hes pretty decent! Quizzes, papers and exams. Exams arent that bad usually 20-30 questions and he reviews. Papers are easy and clear rubric. The textbook and his slides are your best friends.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a261" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39acd60fca157e5a263" + }, + "professor_name": "John Blanton", + "rating": 4.7, + "department": "History department", + "comments": [ + { + "text": "Amazing professor. This was my second class I've taken from him, he truly cares about his students and he tries his best to understand them. I had a really busy middle of the semester and submitted a paper VERY late, he still graded it without deducting any points.\n\nWould take him again, and he has the most incredible and engaging lectures.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a264" + } + }, + { + "text": "that 1 star review is so salty lol they are probably idiots who couldnt pass a simple class. Prof Blanton is the best history professor at ccny, the class is simple, assignments and expectations are clear and he is extremeley helpful and caring. He has other history classes so u shld def take him!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a265" + } + }, + { + "text": "Chill professor, just was extremely technical on papers and allowed two-three students lead his class for the majority with questions that becomes politically partisan and so far left.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a266" + } + }, + { + "text": "Professor Blanton is a delight! His knowledge on early American history is vast and is clear through his methods of teaching the themes of the American Revolution, which were: roles of gender and patriarchy, Indian dispossession, and African-Descended slaves during a time of revolution. We had three papers (all take home) and an exam (very light).", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a267" + } + }, + { + "text": "I took him a year ago and I still remember his lectures. I think it was his resolve in passing on his knowledge and passion for early american history that resonated with me. I came out of this class feeling optimistic and more willing to engage with the current issues the US is confronting. A lot of issues do not originate in the 21st century!", + "pos": 0.169, + "neu": 0.809, + "neg": 0.022, + "_id": { + "$oid": "6711d39acd60fca157e5a268" + } + }, + { + "text": "Professor Blanton is a very great professor in CCNY that gives a very insightful view of slavery, women, and indigenous people during the early US history. His view is very broad and you can learn a lot about the period. some test, 2 papers, 2 test, very flexible on syllabus. The only thing annoying is the weekly modules and discussion.", + "pos": 0.094, + "neu": 0.799, + "neg": 0.107, + "_id": { + "$oid": "6711d39acd60fca157e5a269" + } + }, + { + "text": "Prof. Blanton is a very good professor that you should really take and learn from. His class are reading intensive but those readings are helpful and he has been understanding with the covid situation. you will learn alot of writing skill with in and it helps you in your historian road for the future! But the class is hard and so prepare for that.", + "pos": 0.133, + "neu": 0.844, + "neg": 0.023, + "_id": { + "$oid": "6711d39acd60fca157e5a26a" + } + }, + { + "text": "Professor Blanton is really one of the best teachers I've had. He's really passionate about what hes teaching and would give a really interesting lecture during class. If you have the option you should take him cause you wont regret it. Plus he has been very accommodating with how stressful everything has been lately", + "pos": 0.202, + "neu": 0.748, + "neg": 0.05, + "_id": { + "$oid": "6711d39acd60fca157e5a26b" + } + }, + { + "text": "Prof Blanton is one of the greatest profs at CCNY. His classes are always so engaging, and he really cares about hearing what students have to say. He's really understanding about how busy students' lives can be outside of class, too. Can't recommend him enough!", + "pos": 0.202, + "neu": 0.759, + "neg": 0.039, + "_id": { + "$oid": "6711d39acd60fca157e5a26c" + } + }, + { + "text": "There are 4 papers due different for every student. Hes a great listener and is very lenient with the due dates (dont take advantage of it though). Hes nice and hes also a tough grader. However, he lets you do a rewrite and offers extra credit. Highly recommend", + "pos": 0.249, + "neu": 0.696, + "neg": 0.055, + "_id": { + "$oid": "6711d39acd60fca157e5a26d" + } + }, + { + "text": "He has to be one of my favorite professors. His lectures are not boring. You may doze off for a few minutes, but he knows how to get your attention... almost as if you are traveling back in time. Follow his requirements for assignments and you will be fine. He provides extra credit, is available after hours, and there are quizzes, some announced...", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a26e" + } + }, + { + "text": "Must take if you're a history major. Great, in-depth look at Colonial America. Young, energetic, witty, funny - one of the best professors at CCNY.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a26f" + } + }, + { + "text": "Professor Blanton might be the funniest professor I have ever taken. He is pretty awesome. He will (try to) answer every question students ask him. He gives lots of readings. If you do the readings, you should do well on the four papers he assigns.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a270" + } + }, + { + "text": "I am an engineering student and history has always been my weakness since high school. He teaches the history as a \"story\" instead of mindlessly stating details to memorize. Made me really pay attention to what he was talking about loved it. Occasionally gives out free pizza and chips. Plenty of extra credit assignments. Humorous and humble.", + "pos": 0.179, + "neu": 0.754, + "neg": 0.066, + "_id": { + "$oid": "6711d39acd60fca157e5a271" + } + }, + { + "text": "He is amazing!", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a272" + } + }, + { + "text": "Prof. Blanton is one of the best professors I have ever had. He is clear about his grading criteria, passionate about his work, and cares about the students he teaches. His readings were extensive, but all very interesting. He always made sure everyone was following along, and was available outside of class as well. A must take!", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a273" + } + }, + { + "text": "Prof. Blanton is awesome. He def knows his stuff and his lectures are amazing. There's quite a lot of reading, and you do have to be a good writer, but he is definitely willing to help you. His classes are interesting enough to make you feel like it's worth the work you put in. You will learn a lot.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a274" + } + }, + { + "text": "He is very passionate about what he teaches. He does give a lot of readings and papers, but it is not hard as long as you show up to class. Half of the time I used to go in clapped if you know what I mean, but even so his after class discussions were one of the best conversations I had. Very intelligent and honestly best course i have taken in city", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d39acd60fca157e5a275" + } + }, + { + "text": "Great professor. He really knows his stuff. If you don't like to read or write, don't take his class. He literally breaks everything down & up to you to think for yourself. If you love History take any of his classes. Just wished I wasn't working as much I would had gotten an A and produce better papers. Oh well, fun class will take his other class", + "pos": 0.208, + "neu": 0.765, + "neg": 0.026, + "_id": { + "$oid": "6711d39acd60fca157e5a276" + } + }, + { + "text": "Dr. Blanton is a very passionate and inspirational history guru to say the least. I found every one of his lectures interesting as he teaches the class more as a narrative rather than a running list of events that happened hundreds of years ago. I am sure that this class will leave a lasting impression on me. I highly recommend this class!", + "pos": 0.235, + "neu": 0.749, + "neg": 0.016, + "_id": { + "$oid": "6711d39acd60fca157e5a277" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39bcd60fca157e5a279" + }, + "professor_name": "Joyce Conoly-Simmons", + "rating": 3.5, + "department": "Women's Studies department", + "comments": [ + { + "text": "Sucks sucks sucks. I studied for every single test she failed me. I could of gone to the deep south like university of tennessee and gotten and better grade. I'm taking 8 classes 6 in which I got all A's so good luck.", + "pos": 0.213, + "neu": 0.601, + "neg": 0.186, + "_id": { + "$oid": "6711d39bcd60fca157e5a27a" + } + }, + { + "text": "COME TO CLASS! She has a GREAT lesson plan incorporating videos and guest speakers all the time. Her teaching style is great with stories and questions. She is VERY helpful in trying to see her students successful. She is a very hard grader in writing but it really does teach you to follow instructions. Fair professor.", + "pos": 0.208, + "neu": 0.771, + "neg": 0.021, + "_id": { + "$oid": "6711d39bcd60fca157e5a27b" + } + }, + { + "text": "She is an excellent teacher. If you take her class you will learn so much. She always teaches with enthusiasm. She gives excellent feedback for improvement for assignments you turn in.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a27c" + } + }, + { + "text": "So far she's only given one lecture this semester, otherwise she has someone come in to talk to the class or she shows a film. She's pretty organized and tells you what she expects, but she wants too much work. You'll do 7 or 8 writing assignments for one real lecture. Too much work, I haven't learned a thing!!!", + "pos": 0.049, + "neu": 0.951, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a27d" + } + }, + { + "text": "The class was not so hard. not alot of Women studies, and dont bother buying the book, you never use it in her class. 20 page paper or 15 resource anotated bibliography. she has favorites also, but just make sure to be on her good side and participate.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a27e" + } + }, + { + "text": "This is an easy, but useless class. More of a group discussion than a class. The 20 page paper can be substitued with an annotated bibliography. The powerpoint group presentation is easy, and that's where most of your knowledge will come from (own research). Very judgemental. Favors students that dress business casual (no tee shirts and sneakers!)", + "pos": 0.168, + "neu": 0.777, + "neg": 0.055, + "_id": { + "$oid": "6711d39bcd60fca157e5a27f" + } + }, + { + "text": "do the work and youll get a good grade...nothing too hard...she doesnt use the textbooks at all...she gives a lot of assignments but she tells you exactly what she wants in them...it wasnt that bad...she kinda gets off topic and i expected a lot more going into a women studies class...she focuses more on racial issues which sucks cuz its a ws class", + "pos": 0.029, + "neu": 0.921, + "neg": 0.049, + "_id": { + "$oid": "6711d39bcd60fca157e5a280" + } + }, + { + "text": "Worst professor ever! It's been 2 months since school started and we STILL have yet to learn about women's studies! she just rambles on about things that are interesting to HER... if you took her class, you know what i mean.STAY AWAY (also, WAYY too much work!!!!!)", + "pos": 0.051, + "neu": 0.85, + "neg": 0.099, + "_id": { + "$oid": "6711d39bcd60fca157e5a281" + } + }, + { + "text": "One of the worst professors I have had at City. Doesn't know the subject, which is sad because she gives City professors a bad name. I don't think she should ever teach at City again.", + "pos": 0.0, + "neu": 0.749, + "neg": 0.251, + "_id": { + "$oid": "6711d39bcd60fca157e5a282" + } + }, + { + "text": "She is a good character. However, when she grades papers...forget it..Go to writing center or don't take this class if you hate writing, or grammar is not your forte. Oh no one mentioned it...but she wants a 20 page research paper. ANd Powerpoint dudes!", + "pos": 0.058, + "neu": 0.818, + "neg": 0.124, + "_id": { + "$oid": "6711d39bcd60fca157e5a283" + } + }, + { + "text": "Final doesn't have what she said would be on it but the class was overall good, not much classwork.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a284" + } + }, + { + "text": "This was an overall easy class. We did not do much. Aside from regular papers, the final, and the big paper, it wasn't bad. The professor is nice. When she does do class work it's interesting. I recommend her to those of you who doesn't want a stressful class.", + "pos": 0.276, + "neu": 0.704, + "neg": 0.02, + "_id": { + "$oid": "6711d39bcd60fca157e5a285" + } + }, + { + "text": "I have never had such a horrible time in a class in all my years at City. I found this instructor to have absolutely no teaching skills and no knowledge of the class topic. It was a complete waste of my time.", + "pos": 0.0, + "neu": 0.776, + "neg": 0.224, + "_id": { + "$oid": "6711d39bcd60fca157e5a286" + } + }, + { + "text": "THE WORST EVER", + "pos": 0.0, + "neu": 0.328, + "neg": 0.672, + "_id": { + "$oid": "6711d39bcd60fca157e5a287" + } + }, + { + "text": "This is an easy class. All you have to do is show up and participate in the conversations in class, and do her 4 papers. That's it. Mostly the whole semester is spent talking in class. You do though have to make a large paper,presentation, and the final(which contains certain things that she has not gone over in class)exam.If you want an easy grade", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a288" + } + }, + { + "text": "How can anyone say that she's a great teacher? I mean, if by great professor you mean she doesn't actually teach anything and is mind numbingly easy, then yes, I suppose she is great at what she does. Seriously, if you're looking to actually learn something, (and you have an IQ above 80) look elsewhere.", + "pos": 0.256, + "neu": 0.687, + "neg": 0.057, + "_id": { + "$oid": "6711d39bcd60fca157e5a289" + } + }, + { + "text": "Engaging, enlighting, and amazing!", + "pos": 0.764, + "neu": 0.236, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a28a" + } + }, + { + "text": "SHE IS A GREAT PROFESSOR. TO PASS HER CLASS JUST REMEMBER THE 3 THINGS SHE WANTS. \"1. FIND OUT WHAT SHE WANTS. 2. GIVE HER WHAT SHE WANTS. 3. AND DON'T FORGET ONE AND TWO,\" HER WORDS. I RECOMMEND THIS CLASS FOR BOTH MALE AND FEMALES, ITS HOT.NEVER BORING AND ALWAYS FUN.OH,AND YES THERE IS SOME WORK.", + "pos": 0.199, + "neu": 0.756, + "neg": 0.044, + "_id": { + "$oid": "6711d39bcd60fca157e5a28b" + } + }, + { + "text": "Extremely Enlighting", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a28c" + } + }, + { + "text": "She is very intelligent.Very easy going,just do your work,you can learn so much from her if you are interested in learning and understanding women.her class is not boring she interacts with the class and knows how to have fun.you get the best of both worlds, fun and knowledge,take her please.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a28d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39bcd60fca157e5a28f" + }, + "professor_name": "Maria Laura Castiglioni", + "rating": 4.8, + "department": "Education department", + "comments": [ + { + "text": "Exemplary professor. Might be one of the best professors I ever took in my college career. Clear instructions, understanding, and engaging. She also helped my anxiety with her emails on how to cope with stress.10/10", + "pos": 0.22, + "neu": 0.74, + "neg": 0.041, + "_id": { + "$oid": "6711d39bcd60fca157e5a290" + } + }, + { + "text": "She is amazing. Currently taking her is! Very interested in learning about her students and seems to really care about us as individuals", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a291" + } + }, + { + "text": "She might be the kindest professor I have ever taken. The class I took was a hybrid course. We met once a week, with quizzes on blackboard the other day we would normally meet. Those quizzes weren't graded, but those questions might show up on the final. The final is very important, but manageable.", + "pos": 0.047, + "neu": 0.953, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a292" + } + }, + { + "text": "This is the easiest class I have ever taken. It's a hybrid class, we only met once a week. The days we didn't meet there were quizzes on BB but they weren't graded. Just one exam, the final. Three short and easy papers. Definitely take this as an elective, she is also the nicest professor I have met.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a293" + } + }, + { + "text": "In one sentence :She is the BEST!", + "pos": 0.566, + "neu": 0.434, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a294" + } + }, + { + "text": "Great teacher, most clear and concise instructions you can receive. Excellent person to talk to.", + "pos": 0.471, + "neu": 0.529, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a295" + } + }, + { + "text": "She is the best. You are going to enjoy her stress free with a lot of fun class. I highly recommend Professor Castiglioni.", + "pos": 0.459, + "neu": 0.465, + "neg": 0.077, + "_id": { + "$oid": "6711d39bcd60fca157e5a296" + } + }, + { + "text": "A SUPERB teacher. One to whom I owe more than a debt of gratitude. An accomplished academician - she is funny, engaging, charming, and ever so knowledgeable. You will remember her lessons well after you have finished your course of study. I am forever grateful that our path crossed. Truly a remarkable individual!", + "pos": 0.417, + "neu": 0.547, + "neg": 0.036, + "_id": { + "$oid": "6711d39bcd60fca157e5a297" + } + }, + { + "text": "i love this professor. she is so sweet and really cares about her students. she is a bit boring when teaching but she is very funny. if you love art take this class.", + "pos": 0.376, + "neu": 0.588, + "neg": 0.036, + "_id": { + "$oid": "6711d39bcd60fca157e5a298" + } + }, + { + "text": "Wonderful professor. the class was so easy going. we had a lot of paperwork to hand it but she was very udnerstandable. It was never mandatory to hand in the paperwork on time. she would even accept them through email if you wasn't able to attend class.", + "pos": 0.183, + "neu": 0.732, + "neg": 0.085, + "_id": { + "$oid": "6711d39bcd60fca157e5a299" + } + }, + { + "text": "The best professor I ever had. She is very helpful and always there for you. I extremely recommend taking her class.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a29a" + } + }, + { + "text": "Professor Castiglioni is simply amazing.She teaches in a manner in which you can literally remember what was taught weeks ago,without reviewing your notes.She tries to make the class fun and is very successful in doing so.She hears you out and is extremely understanding.Taking this class most definitely would not be a mistake.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a29b" + } + }, + { + "text": "An outstanding professor, and very understanding person. She has so much energy and joy in her, more than the students. hehe She's one professor you would really want to take her class.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a29c" + } + }, + { + "text": "Awesome professor and great human being! Professor Catiglioni is a gem; she has extensive knowledge and lots of great personal experiences to share. This class was less about remembering information and more about LEARNING. She turned her classroom into a true learning environment by encouraging students to learn from each other.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a29d" + } + }, + { + "text": "I am so happy to read the other peoples reviews of Professor Castiglioni because I absolutely adore this woman! She is an amazing teacher who loves and knows the material very much, but she is also just a great person, who is funny, understanding, and inspiring. My only problem is that I can't take every class with her. She really is wonderful!", + "pos": 0.341, + "neu": 0.617, + "neg": 0.041, + "_id": { + "$oid": "6711d39bcd60fca157e5a29e" + } + }, + { + "text": "One of the rare excellent teachers that you'll find at Cuty, she is truly intellectual and a sweetheart of a woman. I f you want to learn and have fun at the same time, look no further than Professor Castiglioni.", + "pos": 0.348, + "neu": 0.611, + "neg": 0.041, + "_id": { + "$oid": "6711d39bcd60fca157e5a29f" + } + }, + { + "text": "Professor Castiglioni is great! Her class inspired me as a private tutor and a future teacher to think critically about the behavior of children. Her classes have a lot of discussion, many times with topics not immediately related to the class, but those that are important to life! She is a great person and a great teacher!", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a2a0" + } + }, + { + "text": "the best professor that i ever had. if you take her class you will get a good grade. i got an A in her class. she is very helpful.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a2a1" + } + }, + { + "text": "She is the most beautiful soul; to see her smile is know there is a God. I love her.", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a2a2" + } + }, + { + "text": "I love how she's willing to explain anything to each student, even if it means restating herself 100 times. I can see she loves her job, and inspires me to always view the positive sides of becoming a teacher. I like the challege I get through her work.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d39bcd60fca157e5a2a3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39ccd60fca157e5a2a5" + }, + "professor_name": "Bernardo Chiachia M", + "rating": 3.8, + "department": "Anthropology department", + "comments": [ + { + "text": "Easy A, just study and you'll be fine. He is super caring and if you end up failing he will work with you to bring your grades up.", + "pos": 0.31, + "neu": 0.604, + "neg": 0.087, + "_id": { + "$oid": "6711d39ccd60fca157e5a2a6" + } + }, + { + "text": "I would retake his class again because it's so easy and honestly you don't need to be paying attention to do your work. He's very understanding and I totally recommend him to take.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2a7" + } + }, + { + "text": "Very very easy A, did not go to one class, you just need to join the discord and ask for the attendance code that day. Same for the quizzes easy 100 all online. He offer extra credit, do them if you want A+ if not you will get an A. He has questionable political views... but again easy A so take him.", + "pos": 0.18, + "neu": 0.771, + "neg": 0.049, + "_id": { + "$oid": "6711d39ccd60fca157e5a2a8" + } + }, + { + "text": "i dropped the class. wayyyy too much work for an intro to anthro class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2a9" + } + }, + { + "text": "EXTREMELY TOUGH GRADER. you WILL want to drop this course", + "pos": 0.095, + "neu": 0.512, + "neg": 0.392, + "_id": { + "$oid": "6711d39ccd60fca157e5a2aa" + } + }, + { + "text": "lots and lots and lots and lots of papers to do over every single weekend", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2ab" + } + }, + { + "text": "So much homework.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2ac" + } + }, + { + "text": "Our first weekly assignment was an essay. Second weekly assignment was 4 essays. We are only two weeks into the semester and it's probably the toughest course I've ever taken. Do not take this class, we are greatly regretting it. We were mislead by the good reviews. On top of that we don't even get the whole week to submit the weekly assignments.", + "pos": 0.069, + "neu": 0.868, + "neg": 0.063, + "_id": { + "$oid": "6711d39ccd60fca157e5a2ad" + } + }, + { + "text": "I'm sure the professor was wonderful in-person, but as his class is now asynchronous he gives a minimum of 5 days to complete several essays per week. Having his class on top of other classes is super anxiety-inducing and you will not have a moment of free time while taking this course. Only take this class if you're prepared to pipe out papers", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2ae" + } + }, + { + "text": "Professor Chiachia is the best professor ever to walk the planet!!!!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2af" + } + }, + { + "text": "amazing professor, would definitely take him again. he was v kind and understanding, if you needed an extension or missed an assignment, he allows you to make it up. he always tried to make sure the students were engaged with the lecture and encouraged questions/made sure you understood. there were few quizzes and they were online(class was hybrid)", + "pos": 0.274, + "neu": 0.695, + "neg": 0.031, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b0" + } + }, + { + "text": "Amazing professor! I would purposely fail his class just to take it again!", + "pos": 0.232, + "neu": 0.583, + "neg": 0.185, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b1" + } + }, + { + "text": "I absolutely adore this professor and couldn't recommend him enough. He is kind and understanding about any and all issues, and he has engaging lectures and discussions on his content. Best professor I've had at CCNY.", + "pos": 0.296, + "neu": 0.66, + "neg": 0.045, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b2" + } + }, + { + "text": "He is so wonderful and caring! He has great lectures that teach you a lot about anthropology. His lectures are engaging and easygoing. His tests are not hard at all and his assignments are light. I would recommend him for Anthro 101!", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b3" + } + }, + { + "text": "He's a great professor I've taken this semester. He's a very kind and understanding person that'll give the time to help students and revolve around their needs. There will be work and readings given which are fairly simple to complete. Participation is encouraged to have class discussions which become very interesting.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b4" + } + }, + { + "text": "A very good professor, very caring and ensures all his students are doing well in his class. Very knowledgeable and open to have in-class discussions. His participations assignments are fairly easy as long as you read/ watch the material given. Would recommend as an elective course!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b5" + } + }, + { + "text": "He is a really nice professor and gives a lot of easy quizzes he also stated that he wants to make sure that everybody passes his class, so do no hesitate to ask him questions if you have problems. He is funny and easygoing.", + "pos": 0.303, + "neu": 0.648, + "neg": 0.049, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b6" + } + }, + { + "text": "I would definitely take him again, he is so understanding towards his students. Great professor!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b7" + } + }, + { + "text": "He is a caring and good professor indeed", + "pos": 0.504, + "neu": 0.496, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b8" + } + }, + { + "text": "Prof. Bernardo is one of the best professor I had in a while. He cares for his students and hes very understanding if you may have to skip a class for an emergency or important reason. He would offer alternatives that you can take to get back on track with his class. His lectures are very engaging and everyone gets to share their point of view.", + "pos": 0.182, + "neu": 0.784, + "neg": 0.034, + "_id": { + "$oid": "6711d39ccd60fca157e5a2b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39ccd60fca157e5a2bb" + }, + "professor_name": "Ioannis Kostopoulos", + "rating": 4.1, + "department": "Physics department", + "comments": [ + { + "text": "He is hands down the best phys prof. at CCNY. He clearly wants his students to do well and doesn't make it impossible to pass his class. His lectures and review sheets reflect his tests so you know what to expect. If you study and do your labs, you are guaranteed to pass. He's also funny and relatable :) I would take him a million times over!!", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2bc" + } + }, + { + "text": "Chill & nice professor. I just find him unprofessional when it comes to grading and emails. He didn't answer any of my emails and it took him months to post grades. Exams & quizzes are fair and easy. Easy A if you put in minimum work. Definitely recommend taking him.", + "pos": 0.258, + "neu": 0.689, + "neg": 0.053, + "_id": { + "$oid": "6711d39ccd60fca157e5a2bd" + } + }, + { + "text": "Second semester taking Ioannis Kostopoulos and let me just say I feel lucky to have taken physics with him. He is such a giving professor. He cares for his students and relates to us, making learning physics that much more interesting. He does all that he can to make sure his students receive the grades that they deserve. Truly top notch!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2be" + } + }, + { + "text": "He was incredible and is very passionate about physics. He's super responsive to his students and truly cares. I am taking him again this fall for physics 20400 and I'm excited. I trust him as an educator to give us a fair semester and recommend him to everyone I know who has to take this class!", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2bf" + } + }, + { + "text": "when it comes to grading, he is extremely lenient, almost TOO lenient. he teaches by reading off a slideshow, but with the way he sets up his grading policy it's almost impossible to fail. if you think that's a positive or a negative is up to you, but i came out the class with a B+ feeling like i learned nothing.", + "pos": 0.17, + "neu": 0.707, + "neg": 0.123, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c0" + } + }, + { + "text": "One of my favorite professor. Love the guy. His lectures were hilarious and very fun to attend to. You do have to work hard for the exam but if you follow along what he teaches, you will be fine. Lots of extra credit opportunity on the exams too.", + "pos": 0.285, + "neu": 0.694, + "neg": 0.021, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c1" + } + }, + { + "text": "Professor Ioannis is by far the best professor I've across my college career. He's understanding and caring. He has 3 exams including the finals, lab, lots of quizzes and homework. The exams were extremely easy if you know your stuff you'll get an easy 100. homework was due on last day of classes. quizzes were conceptual and online.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c2" + } + }, + { + "text": "One of the nicest science professors I have ever taken in college. If you do your work and listen to his lectures you will be fine. He was very understanding and extended deadlines when we were overwhelmed with work. I would definitely take him again if I can.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c3" + } + }, + { + "text": "He teaches well, and he listens to and understands his students. Physics is a hard subject but he makes it easier and more relaxing for students to understand better. Would take him again!", + "pos": 0.326, + "neu": 0.646, + "neg": 0.028, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c4" + } + }, + { + "text": "Great professor. Listens to concerns. Do the work, study, participate, and he will try to help you. It's Physics, so the subject itself is hard and can seem like it drags sometimes, but the prof. keeps the lectures entertaining which helps keep you engaged. I'm grateful I had him for Physics. Don't hesitate, solid choice.", + "pos": 0.325, + "neu": 0.616, + "neg": 0.059, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c5" + } + }, + { + "text": "I will be taking Physics204 with him just because of how amazing he was this semester. Attend lectures, show up for lab and participate. Stay up to date with all your assignments, he gives in-class quizzes, but they are reasonable! I recommend taking physics203 with him 100000%! He's a very caring professor, he puts his students first! Superb!", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c6" + } + }, + { + "text": "If you can please take him! He is honestly a better option for physics than other people in CCNY! Try your best and study of course but he is also understanding!", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c7" + } + }, + { + "text": "Professor Kostopolous was the most amazing person I have ever had in my college career. Although physics is not an easy subject to teach, he was very understanding. He lectured passionately and knowledgeably. He cared so much for our grades. Cant wait to have him again.", + "pos": 0.188, + "neu": 0.768, + "neg": 0.044, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c8" + } + }, + { + "text": "Professor Kostopoulos is a great professor. He gives us an opportunity to pass the class and curves all the exams. He can be lazy at times but he gets the work done and is very nice. I highly recommend taking him for physics.", + "pos": 0.236, + "neu": 0.73, + "neg": 0.034, + "_id": { + "$oid": "6711d39ccd60fca157e5a2c9" + } + }, + { + "text": "He is a good and easy option for Physics. He does take a long time to upload exam scores but he is a genuinely kind and funny man who wants us to do our best. Postponed exams just so we can have more time to study. If you have the chance to take him definitely take him. He even made exam 2 shorter for us and his final will be all mc. Love Him!!!!!", + "pos": 0.317, + "neu": 0.661, + "neg": 0.022, + "_id": { + "$oid": "6711d39ccd60fca157e5a2ca" + } + }, + { + "text": "Worst professor ever!! He takes forever to do the simplest things. He goes months without uploading test (or quiz) scores, doesn't upload practice problems like he promises, and is often late to class.", + "pos": 0.194, + "neu": 0.707, + "neg": 0.1, + "_id": { + "$oid": "6711d39ccd60fca157e5a2cb" + } + }, + { + "text": "He's a cool professor, but he seems unprofessional. He needs to be constantly reminded to upload scores/practice problems and is often late to class. However, his quizzes are all online as well as their answers. He only has two exams, with curves. The homework he assigns has no deadline as well.", + "pos": 0.111, + "neu": 0.717, + "neg": 0.172, + "_id": { + "$oid": "6711d39ccd60fca157e5a2cc" + } + }, + { + "text": "He's probably one of the worst professors I've taken recently. Completely inaccessible outside the classroom (email, class Discord, etc.) He was also very inconsistent when being asked questions about tests or grading, frequently posted quizzes with questions written incorrectly, has sometimes not shown up to class (no email sent or anything).", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d39ccd60fca157e5a2cd" + } + }, + { + "text": "He is passionate about wanting his students to learn. I feel like he has a lit of stuff going on in his life and can come off as lazy when it comes to teaching, but he knows his stuff. Just do the homework and labs. For exams, the homework helps a lot but also watching videos on topics would be helpful. Overall hes a nice guy and also curves exams", + "pos": 0.183, + "neu": 0.795, + "neg": 0.022, + "_id": { + "$oid": "6711d39ccd60fca157e5a2ce" + } + }, + { + "text": "This professor is extremely lazy and doesn't teach properly. The only good thing is that he curves the exams because the entire class is doing not that great.", + "pos": 0.085, + "neu": 0.736, + "neg": 0.179, + "_id": { + "$oid": "6711d39ccd60fca157e5a2cf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39dcd60fca157e5a2d1" + }, + "professor_name": "Beth Wittig", + "rating": 3.3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "She truly cares about students. When I did bad on a quiz she pulled me aside and wanted to ask me what happened. With that said... this class is so annoying. She does recorded videos you watch at home that can take hours. In the end, it's not a hard class, just time consuming and it will piss you off. Attendance is optional.", + "pos": 0.097, + "neu": 0.771, + "neg": 0.131, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d2" + } + }, + { + "text": "Take my review with the consideration that we are online and in covid. The course is put into online modules, and you use the class time to ask questions/ gain clarification. She cares about her students, don't AT ALL think that the course is easy. Content is easy but a lot of reading, reviewing, and homework to be done. She is just fair.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d3" + } + }, + { + "text": "Be prepared to work and put time for her class. The material is not difficult to follow along from the textbook that she provides, you just have to put time in to read and understand it.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d4" + } + }, + { + "text": "You will have to do the work, but if you keep up with the work and make sure you ask questions, you should be fine.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d5" + } + }, + { + "text": "Dr. Wittig will make you work in her class, but you will learn loads of useful stuff if you actually plan on becoming an engineer. She is quite knowledgeable and a good reference point for your future career.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d6" + } + }, + { + "text": "Smart professor, helpful, answers questions and is available.", + "pos": 0.478, + "neu": 0.522, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d7" + } + }, + { + "text": "Prof. Wittig is one of the nicest professors at CCNY. She is also pretty good at teaching as well. Sometimes it feels like the lectures go on too long, but she explains things well. Her exams look just like the problems in the textbook, partially because she is the author. Final project is pretty simple. Doing well requires effort, but is not hard.", + "pos": 0.279, + "neu": 0.675, + "neg": 0.046, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d8" + } + }, + { + "text": "Tremendous amount of work that will never be 100% correct and she will never appreciate your efforts but manipulate words and convince you that she's actually right and you're efforts are just not good enough.Your efforts for this class will not pay off and you'll be upset with your grade at the end..massive work", + "pos": 0.065, + "neu": 0.802, + "neg": 0.133, + "_id": { + "$oid": "6711d39dcd60fca157e5a2d9" + } + }, + { + "text": "Good professor, very knowledgeable, and possibly the most approachable professor in the CCNY engineering dept. Tough grader tho. Do the work, you'll be fine", + "pos": 0.173, + "neu": 0.772, + "neg": 0.055, + "_id": { + "$oid": "6711d39dcd60fca157e5a2da" + } + }, + { + "text": "Great at explaining course material. She will answer ANY question you may have, which is rare for many professors. She is definitely tough, but also fair. Probably one of the best profs at CCNY.", + "pos": 0.303, + "neu": 0.668, + "neg": 0.029, + "_id": { + "$oid": "6711d39dcd60fca157e5a2db" + } + }, + { + "text": "She is willing to help whenever she is available. A lot of works to do but they are doable. Very smart professor and handles people questions very well.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2dc" + } + }, + { + "text": "Loves what she does, cool personality, will help if you have a problem in class...BUT be FOREWARNED!!! Class is much tougher than it seems A's are not common, B's if you're good & C's/D's are VERY EASY to get!She says one thing & does opposite...no matter how good U R, you will never make her happy! She's fickle...you'll see--good luck!!", + "pos": 0.323, + "neu": 0.606, + "neg": 0.07, + "_id": { + "$oid": "6711d39dcd60fca157e5a2dd" + } + }, + { + "text": "she is not what she pretends to be in front of students.....she goes on and on with her chemistry but least bothered about the basics...she assumes that every student in her class is a genius in chemistry..", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2de" + } + }, + { + "text": "She is a good teacher. Her exams are open book and difficult. However, she is a good adviser.", + "pos": 0.249, + "neu": 0.644, + "neg": 0.107, + "_id": { + "$oid": "6711d39dcd60fca157e5a2df" + } + }, + { + "text": "biggest thorn of City College,no mercy at all on student.she is evil,i dont know how can sleep at night giving \"c\" to graduate students and screwing student.", + "pos": 0.159, + "neu": 0.779, + "neg": 0.062, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e0" + } + }, + { + "text": "she is very tough..student spent the whole semster doing her homework...which is just 10% of the total marks...she is very sweet to students...her smile is fake...she smiles at you to let you know she is going to give you \"c\"..this is the hardcore fact from many students who has taken her class.", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e1" + } + }, + { + "text": "she teaches too much chemistry,lot s of homework...\"c\" is the maximum grade...if you dont vist her office quite often .....", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e2" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e3" + } + }, + { + "text": "A rose amongst the thorns at City College. Loves to teach and it shows. Never too busy for her students, works so hard.Has a bright future.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e4" + } + }, + { + "text": "Fun, easy going but focused too much on Chemistry without going over it. Tough project but fair grader.", + "pos": 0.415, + "neu": 0.516, + "neg": 0.069, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39dcd60fca157e5a2e7" + }, + "professor_name": "Arthur Pedersen", + "rating": 2.4, + "department": "Computer Science department", + "comments": [ + { + "text": "We were assigned a midterm project where we had to choose a topic from the textbook and present to the class. For our final project we had to create an extension of our midterm topic and have something tangible to show. Professor encouraged us to enhance our resumes and always asked about our interests. Very accommodating and easy to reach.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e8" + } + }, + { + "text": "YOU NEED TO BE READY TO READ THE TEXTBOOK bec this man doesn't teach at all. He makes mistakes during lecture as if the concept wasn't confusing enough. None of the youtube videos will be helpful for the exams. He never posts his notes online and he uses google classroom.", + "pos": 0.137, + "neu": 0.819, + "neg": 0.044, + "_id": { + "$oid": "6711d39dcd60fca157e5a2e9" + } + }, + { + "text": "I would never take him again his chicken scratch handwriting is horrible. None of his reviews are even helpful. I studied for his exams but nothing I studied was even helpful. In the middle of class he would randomly talk about resumes like please teach oh wait he doesn't teach at all. It's like a 2 year old learning a concept only adults know.", + "pos": 0.2, + "neu": 0.77, + "neg": 0.03, + "_id": { + "$oid": "6711d39dcd60fca157e5a2ea" + } + }, + { + "text": "He expected us to read 5 chapters within 10 weeks because our prof left mid semesters. The TA graded our section so harshly some people got 20s for their hw. He made the final so hard so he is very ruthless and called the final \"okay\" even tho it was so hard.", + "pos": 0.035, + "neu": 0.897, + "neg": 0.068, + "_id": { + "$oid": "6711d39dcd60fca157e5a2eb" + } + }, + { + "text": "My class got moved to his section after our original prof stopped teaching mid-semester due to health issues. He's honestly a reasonable guy + understood that we were basically half a semester behind. Lectures were a bit confusing, but you can self-teach yourself. All test questions were proofs. HW was SO long, but just collaborate with your peers", + "pos": 0.06, + "neu": 0.892, + "neg": 0.048, + "_id": { + "$oid": "6711d39dcd60fca157e5a2ec" + } + }, + { + "text": "This is THE nightmare professor. He will make u study 13 chapters in a exam,makes the exam 4 questions\nand it'll only be about 2 or 3 chapters of material. He said to us, \"he believes in giving LOTS (30H / week) of HW to students in a short deadline so it forces students to do it, otherwise they'll slack off.\" || 15% HW | 30% Midterm | 55% Final ||", + "pos": 0.033, + "neu": 0.967, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2ed" + } + }, + { + "text": "WAY TOO MANY HWS. 85% of the grades are midterm & final. So much unnecessary work for 15% hw. Makes you code in latex for no reason and so much reading hws in zybook. He is also not helpful at all and can't answer questions properly. U can pass this class ig but my suggestion is that only do hws that u can as it's only 15% and do well on exams.", + "pos": 0.035, + "neu": 0.921, + "neg": 0.044, + "_id": { + "$oid": "6711d39dcd60fca157e5a2ee" + } + }, + { + "text": "Dr. Pedersen's class is not easy but it was really cool that he did things to keep us on toes and think \"outside of the box\" and understand the big picture. Pederson was concerned that we were thinking about career stuff like internships and research jobs and even talked about good v. bad resumes", + "pos": 0.159, + "neu": 0.743, + "neg": 0.098, + "_id": { + "$oid": "6711d39dcd60fca157e5a2ef" + } + }, + { + "text": "He puts a lot of responsibility on students to use common sense about what good work is. I learned so mcuh. Professor gave groups really thorough feedback from many angles. He's pretty direct, but Hes smart and cool.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f0" + } + }, + { + "text": "take Pederson. but be ready for high standards and wake-up call for comp sci grads trying to get hired. Prof tells it like it is and knows his sht.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f1" + } + }, + { + "text": "Pedersen is actually a pretty good prof. The course itself is difficult material but he breaks it down well. I suggest reading the textbook for more clarity on the material. The midterm and final were easier than the hw, so if you do the hw then you will be fine. The hw is done through LaTeX. At first it was time consuming but got accustomed quick.", + "pos": 0.203, + "neu": 0.774, + "neg": 0.023, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f2" + } + }, + { + "text": "Avoid at all cost. This professor does not teach you any thing AT ALL. No one can ever read his hand writing and his has no idea what he is taking about. Homework is so heavy and have no feedback what so ever. You can't learn anything from this horrible person. He is a total trash.", + "pos": 0.048, + "neu": 0.756, + "neg": 0.195, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f3" + } + }, + { + "text": "super smart i would take a class w Pederson in person with a white bord but it can be hard to follow lectures writen with Zooms board tool. He posts notes online so not a big deal. super chill and plays music before class. the haters are mad lazy", + "pos": 0.182, + "neu": 0.616, + "neg": 0.202, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f4" + } + }, + { + "text": "i know prof is challenging but he knos what hes talking about and is respected researcher . hes just actually trying to teach us what real comp scientists do get us ready & some ppl dont get it", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f5" + } + }, + { + "text": "He doesn't care about the class at all. The only good thing about this class is that all his homework is from the textbook so you can easily find the answer and that his test is 5 question multiple choices. If you actually want to learn don't take him.", + "pos": 0.126, + "neu": 0.826, + "neg": 0.048, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f6" + } + }, + { + "text": "He honestly does not care about his students at all. He doesn't care if you understand or not. Really hard to get in touch with him outside of class. If you sent him an email but is not in the format he wants he won't reply to you. His teaching style is complete trash. Don't expect to learn anything. AVOID AT ALL COST.", + "pos": 0.047, + "neu": 0.843, + "neg": 0.109, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f7" + } + }, + { + "text": "You won't have any idea what he is talking and he doesn't even care if you understand him.", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f8" + } + }, + { + "text": "One of the worst professors in CCNY. Lots of homework and paper. Terrible handwriting , learned nothing from his class", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d39dcd60fca157e5a2f9" + } + }, + { + "text": "Incredibly lenient. His teaching was more chalkboard so just gave videos after March. Emphasized taking care during crisis and being respectful, so was not harsh on tests. Is open to input through email b/c new professor here. Overall has a pleasant attitude/caring. He may switch up his teaching in Fall but u cant possibly go wrong picking him.", + "pos": 0.197, + "neu": 0.765, + "neg": 0.038, + "_id": { + "$oid": "6711d39dcd60fca157e5a2fa" + } + }, + { + "text": "He's really smart, perhaps too smart to teach undergrad. The course is hard and math oriented which requires a classroom, so you can't blame him for anything post-covid. He gave us all an opportunity to do well in the course, so he is certainly caring and understanding. Other reviews are too harsh, but his handwriting was bad.", + "pos": 0.19, + "neu": 0.693, + "neg": 0.117, + "_id": { + "$oid": "6711d39dcd60fca157e5a2fb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39ecd60fca157e5a2fd" + }, + "professor_name": "Karin Block", + "rating": 4.6, + "department": "Earth Science department", + "comments": [ + { + "text": "Very fun and sweet teacher gives lectures in a passionate way where you can tell she likes what she teaches very interesting facts about her easy class as long as you stay on track and use the textbooks you should be fine very lenient in tests as well", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a2fe" + } + }, + { + "text": "If you wanna take EAS seminar and she is instructing it, you should definitely take it with her. Other professors require asking a question each seminar, Dr. Block doesn't. She only requires a one page (double spaced!) summary of the seminar (as of Fall 2023). She just skims over them, too, so super easy A. Some seminars were online too", + "pos": 0.159, + "neu": 0.799, + "neg": 0.041, + "_id": { + "$oid": "6711d39ecd60fca157e5a2ff" + } + }, + { + "text": "This class was supposed to be synchronous but it turned into asynchronous. The lecture slides were posted on BB and there were short quizzes every week. Dont need the lectures to answer the questions. There were\"Fact sheets\" that have to be done which she grades really hard for. Lab for this class was kinda hard for the times we met online", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d39ecd60fca157e5a300" + } + }, + { + "text": "Took her as an elective during online classes. We had 2 fact sheet essay type midterms in place of regular exams and weekly quizzes and labs. Following her rubrics and using the lecture materials along with doing your own research is the key to succeed. The class was fair and she is very kind hearted lady. If you have the chance take her class.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a301" + } + }, + { + "text": "Just an amazing professor that really cares about you. Very clear on what she wants from you . Take any class she offers.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a302" + } + }, + { + "text": "Her lectures were heavy and tough, even tho I went to her class every single time, I didn't really get the content. Exams were pretty tricky and specific, glad that she did it in multiple choices. Make sure you get a nice TA for her lab, the lab grade can help you A LOT (40% of the whole grade) she is nice but don't take her as an elective class.", + "pos": 0.15, + "neu": 0.816, + "neg": 0.034, + "_id": { + "$oid": "6711d39ecd60fca157e5a303" + } + }, + { + "text": "Such a sweet and caring professor. Always available to help when you ask for it. Her tests are tricky but everything is from her PowerPoints, don't rely on her study sheet. Only thing that requires work in this class are the labs. People who complain about it being difficult are the ones who don't study", + "pos": 0.095, + "neu": 0.781, + "neg": 0.124, + "_id": { + "$oid": "6711d39ecd60fca157e5a304" + } + }, + { + "text": "Uses power points from which 95% of test questions will come from. Lab portion uses the lab manual so you do need to read a lot. You need to attend lectures even though attendance is not mandatory. She gives a lot of info and you should take clean notes. She was available outside of class, friendly and caring. No extra credit but clear grading. ++", + "pos": 0.132, + "neu": 0.808, + "neg": 0.06, + "_id": { + "$oid": "6711d39ecd60fca157e5a305" + } + }, + { + "text": "Prof Block was a great professor. Im not an EAS major, but I still found her class very interesting. She's extremely smart, fair, and easy on the eyes too!", + "pos": 0.42, + "neu": 0.535, + "neg": 0.045, + "_id": { + "$oid": "6711d39ecd60fca157e5a306" + } + }, + { + "text": "I wouldn't recommend the textbook. Everything was based on the slides. Study the slides, and the tests are similar to the slides. If you get at least an 80% on each exam, then you are guarantee an A in the course. Master the concepts if you enjoy Earth Science. She is hot!", + "pos": 0.097, + "neu": 0.866, + "neg": 0.037, + "_id": { + "$oid": "6711d39ecd60fca157e5a307" + } + }, + { + "text": "Shes amazing and real sweetheart. Really passionate about geology and would appeal to geology majors. The course wasn't really interesting for my major but I enjoyed her energy and her teaching. Exams are MC and Final's based on the past exams. Shes kinda hard to reach through email so go to office hours. If you put in some work it's an easy A", + "pos": 0.244, + "neu": 0.702, + "neg": 0.054, + "_id": { + "$oid": "6711d39ecd60fca157e5a308" + } + }, + { + "text": "Block cares a lot about her students. She provides interesting lectures, study guides, and all of her slides online. Tests are fairly straightforward. She's a wonderful person and really enjoys what she teaches.", + "pos": 0.296, + "neu": 0.638, + "neg": 0.066, + "_id": { + "$oid": "6711d39ecd60fca157e5a309" + } + }, + { + "text": "Whether you are interested in the material or not, she is still an amazing professor. She is very organized and a great lecturer. You can tell she respects her students and is passionate about what she teaches. She provides study guides, lecture slides, and opportunities for extra credit. Lab is a big part of the course as well.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a30a" + } + }, + { + "text": "Make sure you understand the concepts and are able to explain in writing! Great Prof.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a30b" + } + }, + { + "text": "This class was so good I even changed my major!", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a30c" + } + }, + { + "text": "BEST Prof. at CCNY. If you wanna have a significant learning experience take her.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a30d" + } + }, + { + "text": "She's probably the best science professor in CCNY. Gives clear lectures, posts lectures, study guide on blackboard, curves exams & provides extra credit opportunities. For exams, review the PPT slides & answer the study guide questions & you'll be fine. Vocab is very important. Getting in touch with her by email is tough, b/c she has 140 student", + "pos": 0.232, + "neu": 0.746, + "neg": 0.022, + "_id": { + "$oid": "6711d39ecd60fca157e5a30e" + } + }, + { + "text": "Her lectures are well presented and clearly explained. If you don't get the material, raise your hand and she will explain it again, although she will have you try to explain it to her in the process. Tests are straightforward, study the slides, read the textbook for things you don't get.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a30f" + } + }, + { + "text": "Prof. Block certainly makes Earth Science a very interesting subject. Exams are ok, and she expects you to memorize some definitions - so it won't suffice if you study by just reading through slides. Best of all, she gives extra credit for attending a EAS seminar. Would definitely recommend.", + "pos": 0.279, + "neu": 0.674, + "neg": 0.047, + "_id": { + "$oid": "6711d39ecd60fca157e5a310" + } + }, + { + "text": "She is incredibly clear with the lectures and passionate about what she teaches. Her lectures are not boring if you like the subject. You have the whole semester to complete a 10 points extra credit which is not a hard thing to do. I would take her class again. I hope every professor would teach like her.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a311" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39ecd60fca157e5a313" + }, + "professor_name": "Tony RO", + "rating": 2.9, + "department": "Psychology department", + "comments": [ + { + "text": "Great class", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a314" + } + }, + { + "text": "Lectures were dull and moved slowly for a morning class. Rarely open to student inquiries, usual response: \"ask your TA about that.\" MUST keep up with the readings as tests are primarily based off of them. I lost the little respect that I had for him when he did not show up to our 8am final and had the TA's proctor the exam.", + "pos": 0.041, + "neu": 0.885, + "neg": 0.074, + "_id": { + "$oid": "6711d39ecd60fca157e5a315" + } + }, + { + "text": "His lectures are all powerpoint, so you mostly take notes. His lectures don't cover the whole chapter so reading the textbook is a must. Coglabs are also done every week. Theres about 3 exams and 1 paper due at the end of the semester. Attendance is also required and he always answers questions in lecture. Plus, the class is always interesting.", + "pos": 0.043, + "neu": 0.957, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a316" + } + }, + { + "text": "Great lectures, interesting material. He's hot too.", + "pos": 0.576, + "neu": 0.424, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a317" + } + }, + { + "text": "i dont know who was more useless, him or the TA. there were like 2 students interested in his lectures. everyone else seemed to be counting down the mins to leave. also, he has \"no time\" to help, \"no time\" for questions, \"no time\" to pass out an attendence sheet if you forgot your clicker. i think he has no time to be a professor so he should stop.", + "pos": 0.1, + "neu": 0.786, + "neg": 0.114, + "_id": { + "$oid": "6711d39ecd60fca157e5a318" + } + }, + { + "text": "Tony the Tiger's class was more than good, it was GR-R-REAT!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a319" + } + }, + { + "text": "He's a great lecturer and his use of dry humor really compliments the lesson at hand. He's one of the best professors at City College that I've had so far, highly recommended.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a31a" + } + }, + { + "text": "He's a really cool guy and his lectures are interesting. His tests are fairly simple if you just read over and study the material. He may seem careless at times in the lectures, but he's really helpful outside the classroom.", + "pos": 0.171, + "neu": 0.791, + "neg": 0.038, + "_id": { + "$oid": "6711d39ecd60fca157e5a31b" + } + }, + { + "text": "It was a decent class. He's not the best professor out there, but at least he's sexy.", + "pos": 0.211, + "neu": 0.689, + "neg": 0.1, + "_id": { + "$oid": "6711d39ecd60fca157e5a31c" + } + }, + { + "text": "I took him previous semester and more than half of the class W from his course. His tests were tricky and final paper was at least 5 pages. Those who stayed in this class got Cs and Ds. Saying that Ro's class is an easy A is like saying Earth is Mars. I don't believe it, unless he entirely changed his way of teaching and evaluation!!", + "pos": 0.085, + "neu": 0.893, + "neg": 0.023, + "_id": { + "$oid": "6711d39ecd60fca157e5a31d" + } + }, + { + "text": "this class is a joke. idk why ppl gave negative reviews, its an easy A+. just go to every class and pay attention and you will pass. the tests are all practically definitions, just memorize them and your set for the tests, easy As. the final paper is only like 1 page long and you can choose the topic. he grades it really easy too, i got an A on it.", + "pos": 0.165, + "neu": 0.757, + "neg": 0.078, + "_id": { + "$oid": "6711d39ecd60fca157e5a31e" + } + }, + { + "text": "He is awesome. I passed his exams with high grades and he uses funny examples to help us understand.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a31f" + } + }, + { + "text": "His lectures are interesting and interactive. He is also really helpful if you just ask him about the material after class, and has many available office hours. The tests are fairly simple, with most of the content taken straight out of the lecture notes. The paper is fairly easy to write as well. It was an easy A for me.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a320" + } + }, + { + "text": "Tony Ro is the MAN!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a321" + } + }, + { + "text": "If you want to get D take the class with him ,but if you want a good grade take someone else!", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a322" + } + }, + { + "text": "one of THE WORST professors I have ever taken at city college. I studied my ass off and barely passed each one of the exams... each test covers over 4 chapters which is about 100 to 150 pages of textbook notes...be prepared to do lots of reading because the textbook is more informative then his class.. Try to avoid him at all costs!", + "pos": 0.026, + "neu": 0.823, + "neg": 0.151, + "_id": { + "$oid": "6711d39ecd60fca157e5a323" + } + }, + { + "text": "the most careless,difficult teacher ever. almost everyone failed his tests. they are so hard. there is so much to read. the textbook, lab manuel, and the lecture slides.over half the student withdrew from his class.don't take him.didn't deserve to get paid last semester.Bob fire him please.save the world", + "pos": 0.0, + "neu": 0.861, + "neg": 0.139, + "_id": { + "$oid": "6711d39ecd60fca157e5a324" + } + }, + { + "text": "I am sure that there is at City College a Cog Psy professor who really cares about his students..check your options carefully!", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d39ecd60fca157e5a325" + } + }, + { + "text": "This professor doesn't have motivation to teach,all he is doing is reading from his power point slides;will never help students to improve their grade. He told us he will curve but he didn't keep promise. I should have withdrawn from this course;--If you take Cognitive Psy with this professor you will struggle, and will get turned off about psy i", + "pos": 0.03, + "neu": 0.84, + "neg": 0.13, + "_id": { + "$oid": "6711d39ecd60fca157e5a326" + } + }, + { + "text": "wow, one of the hardest class I have taken. This Prof does not help at all because he never did at least a study guide. All he told us was study the power point and read the book.", + "pos": 0.09, + "neu": 0.856, + "neg": 0.054, + "_id": { + "$oid": "6711d39ecd60fca157e5a327" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39fcd60fca157e5a329" + }, + "professor_name": "Lisa Babel", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "Feedback on labs was solely on formatting, not content. Lectures left a bit to be desired. The class is easy enough if you read the PowerPoints and keep up with labs. All documents are uploaded via Microsoft so downloading on a Mac was a pain. I don't think I learned much past what you may learn in other psych classes regarding research.", + "pos": 0.074, + "neu": 0.877, + "neg": 0.049, + "_id": { + "$oid": "6711d39fcd60fca157e5a32a" + } + }, + { + "text": "Wonderful professor, somehow finds the time to respond to every email and give helpful feedback. I took group dynamics in counseling with Prof Babel at CCNY and she did a nice job of making it discussion-based and engaging despite being online. Didn't require video but gently urged participation. Very manageable workload and satisfying course!!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a32b" + } + }, + { + "text": "The bad reviews on Prof Babel are so confusing?? She was by far one of the friendliest professors I taken at CCNY. I took PSY 367 Winter Semester with her and she was very understanding, encouraging, kind, and a fun prof to talk to about anything. And made class entertaining by making conversation w students instead of jumping right into lectures.", + "pos": 0.226, + "neu": 0.697, + "neg": 0.077, + "_id": { + "$oid": "6711d39fcd60fca157e5a32c" + } + }, + { + "text": "I took her for PSY 312 and she was great! She is very understanding and she cares about her student's well-being. There were weekly quizzes and labs and one final exam, but as long as you pay attention during the lectures and take notes, it's an easy A.", + "pos": 0.16, + "neu": 0.81, + "neg": 0.029, + "_id": { + "$oid": "6711d39fcd60fca157e5a32d" + } + }, + { + "text": "I took Lisa in the summer of '22 she is pretty cool, a lot of papers every week at least 2.3 pages of papers were due, but no exams, no quizzes which was my favorite part ! also we had a lot of daily discussions where students participated in, overall fun class not too hard ! Thank you Lisa !!", + "pos": 0.271, + "neu": 0.692, + "neg": 0.037, + "_id": { + "$oid": "6711d39fcd60fca157e5a32e" + } + }, + { + "text": "No exams but weekly assignments, assignments are easy going just long readings. Promotes classroom participation, but makes it feel like a conversation. Amazing professor all around.", + "pos": 0.405, + "neu": 0.553, + "neg": 0.042, + "_id": { + "$oid": "6711d39fcd60fca157e5a32f" + } + }, + { + "text": "Lisa is not an acceptable Professor. She constantly has an attitude which I wouldn't ever care about but she is really rude to her students. She gives a ton of work. There is a quiz every class. There are way better Psy Professors at CCNY. Avoid her!", + "pos": 0.068, + "neu": 0.741, + "neg": 0.191, + "_id": { + "$oid": "6711d39fcd60fca157e5a330" + } + }, + { + "text": "I took Psy of Politics Fall 2020. The class is really easy bc it's all discussion-based so you must participate for points. 1 group project, a final paper, mini assignments, and daily warm-up questions make up your entire grade. Lisa's an extremely nice, easy & fair professor. I highly recommend her. If I could take her a 3rd time, I would.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a331" + } + }, + { + "text": "Ms babel is pretty cool. Lot of papers, a lottt. But you know what, you do them, show effort that you did your best, and you'll ace the course", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a332" + } + }, + { + "text": "Prof. Babel is pretty strict when it comes to making an outline. At first I was annoyed honestly but by the end of the semester everything was so easy that I had done that before. WHen it came to writing the final paper, it was just putting the puzzle pieces together. Does care for her students, makes time outside of her office hours even", + "pos": 0.182, + "neu": 0.794, + "neg": 0.024, + "_id": { + "$oid": "6711d39fcd60fca157e5a333" + } + }, + { + "text": "She is very knowledgeable in her work and portrays that in her teaching. She's a bit quirky but the kind you grow accustomed to easily. She sometimes laughs at her own jokes but I still prefer a teacher who has a sense of humor than one who doesn't. Would absolutely take again though for the grade.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a334" + } + }, + { + "text": "She is the BEST!! She helped me so much. Took her time outside of class to mentor me into becoming a much better writer. I learned how to better outline my papers, organize my analyses, all stuff that I got from her instead of my previous English classes.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a335" + } + }, + { + "text": "Prof. Babel's class boosted my GPA. She gives NO EXAMS and as long as you follow the guidelines for the papers, you will do well. Much writing but highly recommend just for easy A.", + "pos": 0.259, + "neu": 0.694, + "neg": 0.047, + "_id": { + "$oid": "6711d39fcd60fca157e5a336" + } + }, + { + "text": "Lisa needs to take a course on how to relate to her students. She is not kind or understanding very dismissive to her students. She talks down to her class. The class consist of her talking the entire time interrupted by her cat. When students have questions regarding upcoming work she refuses to discuss or answer any questions. Worst Pro at CCNY!", + "pos": 0.0, + "neu": 0.863, + "neg": 0.137, + "_id": { + "$oid": "6711d39fcd60fca157e5a337" + } + }, + { + "text": "I never leave bad reviews but I do not want any other fellow classmates to endure her class. She is the worst Pro I ever had. She is rude, does not care about her students. Very conservative and can not relate to her students. If you have a question or need clarification on work her only answer is look at syllabus. I had to work very hard for an A!", + "pos": 0.036, + "neu": 0.761, + "neg": 0.202, + "_id": { + "$oid": "6711d39fcd60fca157e5a338" + } + }, + { + "text": "Lisa is a great professor in a participation heavy class. Be prepared to participate and read, although as long as you understand the spirit of the topic, you'll do fine. Clear and defined expectations are set, and she will help you along the way if needed. Very easy to get along with and understands the needs and struggles of the students.", + "pos": 0.245, + "neu": 0.721, + "neg": 0.034, + "_id": { + "$oid": "6711d39fcd60fca157e5a339" + } + }, + { + "text": "I love Lisa! Her class is like that of a discussion. Do the reading she provides before class b/c she will be asking a warm-up question for the 1st 5mins of class. You also have to do a group presentation at the very end of the semester, a final paper that's 5-7-pgs and 3 other papers (where you talk abt yourself). Gives extra credit! Take her!", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a33a" + } + }, + { + "text": "Lisa is great! Only con I can think of is that she makes us go to the writing center for the papers. But even that has tuned out to be super helpful. Because of it as well her help in meetings, my writing has gotten much better. Thank you for a great semester and I hope I can your class again", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a33b" + } + }, + { + "text": "Prof. Babel is a great teacher. She makes the lessons super fun and interactive. It is obvious that she knows a great deal and does an excellent job of conveying that to her students. You can be on your laptop but if she sees that its distracting you from taking notes, she will ask for you to put it away. I would definitely take her class again!!", + "pos": 0.205, + "neu": 0.76, + "neg": 0.035, + "_id": { + "$oid": "6711d39fcd60fca157e5a33c" + } + }, + { + "text": "I highly recommend Lisa! Her classes are always super interactive. She goes above and beyond in helping out her students in any way she can. She makes time for us outside of her office hours which I have seen no other teacher do. She is truly passionate about her field and it makes me as well. One of the best teachers I had so far at City College", + "pos": 0.259, + "neu": 0.714, + "neg": 0.026, + "_id": { + "$oid": "6711d39fcd60fca157e5a33d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39fcd60fca157e5a33f" + }, + "professor_name": "Michael Conner", + "rating": 3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Professor Conner is an awesome person with a kindred spirit. As a Professor, he is very positive and upbeat. He knows his stuff, keeps his schedule open, and is willing to help out if you need it. He wants everyone to soak in what they learn and clearly loves being a Professor. I would take a class with him again.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a340" + } + }, + { + "text": "The problem of this class is that you don't understand what are you doing in the class, you do it mechanically, but after you done, you don't understand what you actually did. Not his fault, he is really lenient on grading your reports,as long as you submit it and it makes some sense, you will be good, submit all your reports, and get straight A", + "pos": 0.164, + "neu": 0.811, + "neg": 0.025, + "_id": { + "$oid": "6711d39fcd60fca157e5a341" + } + }, + { + "text": "Overall, a very poor professor. These experiments are not easy and he provides ZERO guidance. Whenever you ask him a question, he is very evasive and it is clear he cares nothing about the students. He's very lenient in grading lab reports, so its not worth spending an extended amount of time working on them. If you can, TAKE ANOTHER PROFESSOR!", + "pos": 0.117, + "neu": 0.774, + "neg": 0.109, + "_id": { + "$oid": "6711d39fcd60fca157e5a342" + } + }, + { + "text": "If you really want to learn to use matlab for engineering purposes, don't take it with Conner. Its easy to get a good grade if you get his previous exams. He'll just read directly from the useless textbook reciting to you higher level of math even if your a freshman (a 100 level class teaching 300 math).", + "pos": 0.117, + "neu": 0.839, + "neg": 0.044, + "_id": { + "$oid": "6711d39fcd60fca157e5a343" + } + }, + { + "text": "This guy totally sucks. He is too lazy to make up new exams, so he recycles his old test, which are exactly the same every semester. Find his old exams and you're good to go. Also, he reiterate everything from the text, literally WORD FOR WORD!!", + "pos": 0.056, + "neu": 0.83, + "neg": 0.114, + "_id": { + "$oid": "6711d39fcd60fca157e5a344" + } + }, + { + "text": "Get his old tests and your set. If you really want to learn MatLab don't take him, he reads literally word for word from the garbage book", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a345" + } + }, + { + "text": "I need his old Engr 103 tests and quizes. where can i find them.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a346" + } + }, + { + "text": "pros:no mandatory attendance, no final, drops lowest grade of 6 open-notes quizzes (do well on the 1st 5 and you can skip classes until the end and last quiz), over 90 is A. cons:not very clear, teaches almost verbatim from the book, **only 5 or six questions per quiz, so get one wrong, you're down 15-20 points (2 wrong is 60)**", + "pos": 0.088, + "neu": 0.755, + "neg": 0.157, + "_id": { + "$oid": "6711d39fcd60fca157e5a347" + } + }, + { + "text": "pros:no mandatory attendance, no final, drops lowest grade of six quizzes (do well on the 1st 5 and you can skip all classes until the end and last quiz),can use notes on quizzes, over 90 is A. cons:not very clear, teaches almost verbatim from the book, **only 5 or six questions per quiz, so get one wrong, you're down 15-20 points (2 wrong is 60)**", + "pos": 0.083, + "neu": 0.768, + "neg": 0.149, + "_id": { + "$oid": "6711d39fcd60fca157e5a348" + } + }, + { + "text": "pros:no mandatory attendance, no final, drops lowest grade of six quizzes (do well on the 1st 5 and you can skip the last one), over 90 is A. cons:not very clear, teaches almost verbatim from the book, **only 5 or six questions per quiz, so get one wrong, you're down 15-20 points (2 wrong is 60)**", + "pos": 0.095, + "neu": 0.736, + "neg": 0.169, + "_id": { + "$oid": "6711d39fcd60fca157e5a349" + } + }, + { + "text": "useless at teaching..easy grade if u know how to browse the internet and find information for test", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d39fcd60fca157e5a34a" + } + }, + { + "text": "fall07.this guy tells everone his about to retire, probably to let eberyone know that hes lazy or that hes going to do the least amount of teaching he can. ez A though, you dont lern squat!", + "pos": 0.064, + "neu": 0.872, + "neg": 0.064, + "_id": { + "$oid": "6711d39fcd60fca157e5a34b" + } + }, + { + "text": "TAKE THIS GUY IF YOU NEED AN A!!! Be ready to read by yourself, and make sure to get the old exams. Else you'll have a disadvantage.", + "pos": 0.175, + "neu": 0.739, + "neg": 0.086, + "_id": { + "$oid": "6711d39fcd60fca157e5a34c" + } + }, + { + "text": "He's not a bad teacher. The problems aren't real hard, just make sure you go to class so you don't miss any material because it's not all out of the book. If you take him make sure you can get the old exams, otherwise you will be at a disadvantage. I know I was. If you have those. it will be an easy class.", + "pos": 0.178, + "neu": 0.748, + "neg": 0.073, + "_id": { + "$oid": "6711d39fcd60fca157e5a34d" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a34e" + } + }, + { + "text": "You can mess up really bad on the 1st test and still get a B in the class. He gives the exact same midterm and final as the year before. you don't really have to attend the class, just get the previous exams. funny but a little bit old.", + "pos": 0.037, + "neu": 0.883, + "neg": 0.08, + "_id": { + "$oid": "6711d39fcd60fca157e5a34f" + } + }, + { + "text": "You can mess up really bad on the 1st test and still get a B in the class. He gives the exact same final as before every year! Study them for a easy B to A", + "pos": 0.068, + "neu": 0.777, + "neg": 0.155, + "_id": { + "$oid": "6711d39fcd60fca157e5a350" + } + }, + { + "text": "He is a little mean but his tests are straightforward with the same problems semester after semester. He follows the book page by page but also give you little extra assignments that show up in the exams..", + "pos": 0.0, + "neu": 0.91, + "neg": 0.09, + "_id": { + "$oid": "6711d39fcd60fca157e5a351" + } + }, + { + "text": "excellent . Take him for an A. Great personality", + "pos": 0.527, + "neu": 0.473, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a352" + } + }, + { + "text": "This guy is mad cool. His class is relaxed all the time, no pressure. We only had 2 tests and a few lab reports and that's it. It was great. It's an easy A unless you have a learning deficiency.", + "pos": 0.279, + "neu": 0.659, + "neg": 0.062, + "_id": { + "$oid": "6711d39fcd60fca157e5a353" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d39fcd60fca157e5a355" + }, + "professor_name": "John Harbeson", + "rating": 1.7, + "department": "Political Science department", + "comments": [ + { + "text": "I took him in my first semester and he absolutely ruined it for me. He knows the subject matter very well but during his lectures he is unclear and jumps from one topic to the other, he never really gets his point across,barely writes notes, but when he does you can hardly understand. His exams are based on whats in the book not what he lectures.", + "pos": 0.04, + "neu": 0.893, + "neg": 0.068, + "_id": { + "$oid": "6711d39fcd60fca157e5a356" + } + }, + { + "text": "I took him in my first semester and he absolutely ruined it for me. He knows the subject matter very well but during his lectures he is unclear and jumps from one topic to the other, he never really gets his point across,barely writes notes, but when he does you can hardly understand. His exams are based on whats in the book not what he lectures.", + "pos": 0.04, + "neu": 0.893, + "neg": 0.068, + "_id": { + "$oid": "6711d39fcd60fca157e5a357" + } + }, + { + "text": "I learned a lot and really he knows his stuff. But I feel like he jumps around from one idea to another or moves fast from topic to topic. Really hard to take notes at his pace plus with his abstract handwriting. Try to be alert as much as possible.I haven't read the textbook that much and it didn't hurt my grade.", + "pos": 0.139, + "neu": 0.831, + "neg": 0.029, + "_id": { + "$oid": "6711d39fcd60fca157e5a358" + } + }, + { + "text": "Terrible", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a359" + } + }, + { + "text": "OK, so he is not the best teacher for an undergrad course - can't make out what he writes, or worse what he says. But he is not as horrible as some of the reviews are saying. Just read the texts, and if you absolutely must ask a question, just don't ask to repeat an explanation he already gave if you don't want to see smoke coming out of his ears.", + "pos": 0.049, + "neu": 0.878, + "neg": 0.073, + "_id": { + "$oid": "6711d39fcd60fca157e5a35a" + } + }, + { + "text": "I love economics and politics so it isn't a surprise I enjoyed this class. But his prof. is very knowledgeable and helpful - even give his home number! If you are interested, come to class, write everything he says, and do some reading. You will do fine. He is organized, and you can see what he expects from students. I had a great time in class.", + "pos": 0.27, + "neu": 0.713, + "neg": 0.017, + "_id": { + "$oid": "6711d39fcd60fca157e5a35b" + } + }, + { + "text": "I liked his class. I thought it was easy and I actually learned something. However, I did have genuine interest in the material and students who are not motivated will not like this prof.", + "pos": 0.206, + "neu": 0.686, + "neg": 0.109, + "_id": { + "$oid": "6711d39fcd60fca157e5a35c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d39fcd60fca157e5a35d" + } + }, + { + "text": "he is terible!!!!!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a35e" + } + }, + { + "text": "I wish I knew about this website before I took this professor. He is simply terrible. He does NOT care about students. No matter how hard you try you won't succeed in his class because he already assigned how many students will get an F, D and C. The political siece department at CCNY has horrible professors, go and learn at other CUNY colleges.", + "pos": 0.036, + "neu": 0.77, + "neg": 0.194, + "_id": { + "$oid": "6711d39fcd60fca157e5a35f" + } + }, + { + "text": "I am a little suprised at all of these negative reviews. Prof. Harbeson is extremely knowledgable in this field and shares this knowledge. True he is a little hard to understand at times, but what professor isn't? The tests are moderately difficult, studying is required and the final is comprehensive. I enjoyed the class and liked the professor.", + "pos": 0.2, + "neu": 0.706, + "neg": 0.094, + "_id": { + "$oid": "6711d39fcd60fca157e5a360" + } + }, + { + "text": "Try to pay attention, his writing is terrible, and he slurs his speach.....do your best to follow along, readings are key to success in his class, and know that definitions and explanations of major events are what you're supposed to know for the tests.", + "pos": 0.151, + "neu": 0.763, + "neg": 0.086, + "_id": { + "$oid": "6711d39fcd60fca157e5a361" + } + }, + { + "text": "He is ABOMINABLE... the worst academic experience you might have.. on top of it he is a **** and only pays attention to the ladies in class... Avoid his class... Hear me ... you will regret!!", + "pos": 0.041, + "neu": 0.736, + "neg": 0.223, + "_id": { + "$oid": "6711d39fcd60fca157e5a362" + } + }, + { + "text": "I don't understand why \"professors\" like him are teaching key classees. He's horrible professor. You cann't understand what's his saying, he's explanations have not connections. He gets mad if someone ask for further explanation, unflexible. He's picky with exams, very difficult to agree his point of view.", + "pos": 0.093, + "neu": 0.74, + "neg": 0.167, + "_id": { + "$oid": "6711d39fcd60fca157e5a363" + } + }, + { + "text": "OMG this man is pure evil dont take this class!!!!", + "pos": 0.0, + "neu": 0.618, + "neg": 0.382, + "_id": { + "$oid": "6711d39fcd60fca157e5a364" + } + }, + { + "text": "Likes to dicate lecture, handwriting is horrible! Lecture is too choppy skips around during lecture and it is easy to figure out what points are connected. Diffcult to understand what he is saying sometime. If this class can be avoided it should be.", + "pos": 0.112, + "neu": 0.766, + "neg": 0.122, + "_id": { + "$oid": "6711d39fcd60fca157e5a365" + } + }, + { + "text": "I cannot believe this man...He can't teach, can't speak, gets angry if you ask questions and acts like he can care less about students. Don't take his because you are not going to learn anything!!", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d39fcd60fca157e5a366" + } + }, + { + "text": "This professor completely ruined my thesis writing experience. I was so excited to work with a prof in my area of interest but he gave me extremely vague guidance and then rudely dejected my project five days before deadline without any prior notice. (cannot relate to students + no grading standard)", + "pos": 0.064, + "neu": 0.691, + "neg": 0.245, + "_id": { + "$oid": "6711d39fcd60fca157e5a367" + } + }, + { + "text": "Oh Lord is this person really a professor? that will be your main question if you take his class. this is actually the first time i hate someone. this person is not there to help or teach. His way of teaching makes you want to drop out of college. not good, not even fair", + "pos": 0.021, + "neu": 0.778, + "neg": 0.201, + "_id": { + "$oid": "6711d39fcd60fca157e5a368" + } + }, + { + "text": "This professor should not be teaching. I think he actually hates his job. he makes an easy subject confusing. Do not take his class!!", + "pos": 0.099, + "neu": 0.717, + "neg": 0.184, + "_id": { + "$oid": "6711d39fcd60fca157e5a369" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a0cd60fca157e5a36b" + }, + "professor_name": "Larry Elcock", + "rating": 3.9, + "department": "Psychology department", + "comments": [ + { + "text": "He gives ALOT of work. A lot As if hes the only class that your taking this semester. He really wants to push you and he wants everyone to learn. He makes you do flash cards, an expensive professional poster & a cube. It's really a lot of work but he does care about the students and really wants everyone to do well.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a36c" + } + }, + { + "text": "He is fun and helpful. Just do all the work and you will be fine. It is a easy A if you follow everything he says.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a36d" + } + }, + { + "text": "He is a great teacher, no doubt about it, but he can be demanding because he expects a lot from his precious students lol. He can be a workload but he is good at what he does and knows a lot. Be mindful that he is a lot of work but he is also understanding and will work with you. He likes to have conversations and expects you to give your imput!", + "pos": 0.235, + "neu": 0.738, + "neg": 0.027, + "_id": { + "$oid": "6711d3a0cd60fca157e5a36e" + } + }, + { + "text": "This guy is a legend in his own mind. Had him for small group processes and dropped out of the class because he's so rude and unhelpful. I had e-mailed him and it took him two weeks to answer and he wrote back in the rudest tone I've ever had from a professor. Like why are they paying him if it's a problem to answer simple a question. smh.", + "pos": 0.032, + "neu": 0.812, + "neg": 0.157, + "_id": { + "$oid": "6711d3a0cd60fca157e5a36f" + } + }, + { + "text": "i now have him for prevention and if there was another prof teachin this i would drop him. He is ridiculous, forces you to participate everyday or lose points, i.e. lower grade. talks about edu reform when he makes the class unnecessary difficult. he is inconsiderate and gives u loads of work to do like u have no other class, 3 assignments a week.", + "pos": 0.033, + "neu": 0.741, + "neg": 0.226, + "_id": { + "$oid": "6711d3a0cd60fca157e5a370" + } + }, + { + "text": "Currently have him for small group processes and the participation aspect of class is a bit annoying. We have to say our name and speak and by doing that it makes participating a hustle. He says he cares and encourages us but hes very condesending and if you dont speak its like hes never seen you in his life, even if you've introduced yourself before! Ive had way better professors in my previous lower caliber school and am not convinced of his greatness.", + "pos": 0.083, + "neu": 0.806, + "neg": 0.111, + "_id": { + "$oid": "6711d3a0cd60fca157e5a371" + } + }, + { + "text": "The best professor I've ever had... hands down. He is very interactive, he will NOT bore you. He is very enthusiastic with a good sense of humor. I'm not the most studious person in the world, but he makes you WANT to learn and do the work. He applies concepts to real life. I can't wait to take a class with him again", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a372" + } + }, + { + "text": "the most helpful understanding professor.", + "pos": 0.436, + "neu": 0.564, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a373" + } + }, + { + "text": "the most loving helpful professor ever.", + "pos": 0.645, + "neu": 0.355, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a374" + } + }, + { + "text": "Amazing professor, by far one of the best professors in CCNY. I wish ALL professors were more like him. He is helpful, approachable, and cares about you. But don't be fooled he is NOT easy. Gives a lot of work but he makes the class amazing so your always paying attention. Highly recommended!", + "pos": 0.338, + "neu": 0.617, + "neg": 0.045, + "_id": { + "$oid": "6711d3a0cd60fca157e5a375" + } + }, + { + "text": "he was a good professor, very friendly, although his project was a bit much and can be time consuming but in the end it was all good", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a376" + } + }, + { + "text": "HE IS VERY HELPFUL, AND CARING! LOVED HIS CLASS, IF YOU DO THE WORK YOU WILL GET A GOOD GRADE!!", + "pos": 0.471, + "neu": 0.529, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a377" + } + }, + { + "text": "Hands down, the best professor I've ever had! I got accepted into the Physician's Assist. Program and Psych of Prevention Science is really valuable. I learned so much in the class and I love how he expects students to work together and excel.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a378" + } + }, + { + "text": "Outstanding professor who cares about his students. He teaching style is non-traditional and I could see how some people wouldn't like it, because he requires that you use multiple intelligences and most of us are use to a lot of direction, with traditional assignments. He actually expects you to remember the stuff and use it!", + "pos": 0.157, + "neu": 0.809, + "neg": 0.033, + "_id": { + "$oid": "6711d3a0cd60fca157e5a379" + } + }, + { + "text": "Disorganized professor who makes inappropriate sexual remarks in the class, gives projects aimed towards kindergarden children, and truly fails to be impartial. Easy class but you'll not learn or grow (despite his motto) in this class!", + "pos": 0.106, + "neu": 0.806, + "neg": 0.088, + "_id": { + "$oid": "6711d3a0cd60fca157e5a37a" + } + }, + { + "text": "The class caters towards grade-school level activities and is highly disorganized. Very easy to get an A but don't expect to be challenged or even learn anything useful! Also, Elcock \"favors\" some students and fails to truly answer your inquiries once you've chased him down.", + "pos": 0.22, + "neu": 0.658, + "neg": 0.122, + "_id": { + "$oid": "6711d3a0cd60fca157e5a37b" + } + }, + { + "text": "high recommended", + "pos": 0.643, + "neu": 0.357, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a37c" + } + }, + { + "text": "I am so grateful to him that I almost don't know how to express how much of an interest he took in my academics and career. I agree that he's the best (knows psych, and loves seeing students progress) prof. at CCNY.", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a37d" + } + }, + { + "text": "He is the best Professor city college has.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a37e" + } + }, + { + "text": "He is amazing.", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a37f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a0cd60fca157e5a381" + }, + "professor_name": "Jose Cobo", + "rating": 4.8, + "department": "Biomedical department", + "comments": [ + { + "text": "Everyone says they respect this professor so much but I don't. He can be very mean and belittling when students ask \"d*mb questions\". I'll never forget the way he made me feel when I asked a question on the first day. I never spoke up again and was shaking in fear when I went to his office hours. He also exposes student's quiz grades.", + "pos": 0.057, + "neu": 0.829, + "neg": 0.114, + "_id": { + "$oid": "6711d3a0cd60fca157e5a382" + } + }, + { + "text": "Well outlined course and he quizzes and gives exams based strictly on what he covers in class and mainly based on homework problems. As long as you do the hw problems (there are a good amount) you should be fine.", + "pos": 0.144, + "neu": 0.742, + "neg": 0.114, + "_id": { + "$oid": "6711d3a0cd60fca157e5a383" + } + }, + { + "text": "Professor Cobo is a great professor. His quiz and test questions are very similar to the ones given in slides and textbook. Make sure to study lectures and do the questions and you should be set. He's also very easy to talk to and is more than willing to accommodate the class.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a384" + } + }, + { + "text": "This course is very lecture heavy and you will move through the material quickly, but the teacher is great. It can be hard to catch up if you fall behind, so be very mindful of that and any test dates. Some people learned best through his slides, others did the homework, and others took diligent notes. Find what works best for you.", + "pos": 0.224, + "neu": 0.755, + "neg": 0.021, + "_id": { + "$oid": "6711d3a0cd60fca157e5a385" + } + }, + { + "text": "Cobo was absolutely amazing at gen chem! Would totally recommend him! He makes it rly clear what you need to know for the test! The class is well outlined and really organized. He 1000000% knows what he's doing. He cares about his students doing well so he will give many beneficial resources for us to succeed and actually learn!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a386" + } + }, + { + "text": "Cobo was honestly the reason I passed Orgo. Not only did he care about his students and whether or not they pass the class, he really wanted us to understand all aspects without strict memorization. You're awesome, Cobo!! Thanks for being a great professor", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a387" + } + }, + { + "text": "Organic chemistry is a tough class regardless of who teaches it. Professor Cobo is one of the few who try their best to make the subject as understable as possible. He cares for the students and is clear as to what you need to know for quizzes and exams. Listen to him talk, annotate the slides, and practice practice practice and you will pass.", + "pos": 0.137, + "neu": 0.842, + "neg": 0.021, + "_id": { + "$oid": "6711d3a0cd60fca157e5a388" + } + }, + { + "text": "If you're gonna take orgo, Cobo is the man! He will make it very clear what you need to know and what you don't. He likes to make sure students know the material and tries to make them succeed. He made orgo fun for me and I give him high praises. If you wanna learn orgo without stress , Cobo is right for you. HE IS AMAZING!! Shoutout to my guy Cobo", + "pos": 0.256, + "neu": 0.718, + "neg": 0.026, + "_id": { + "$oid": "6711d3a0cd60fca157e5a389" + } + }, + { + "text": "Jose is very clear on what he wants you to know for tests and quizzes. As long as you pay attention in lecture and understand his slides, you are set for any of his assessments. He repeats sample questions from the slides and homework and quiz questions on the exams. Jose actually wants his students to understand the concepts.", + "pos": 0.047, + "neu": 0.93, + "neg": 0.023, + "_id": { + "$oid": "6711d3a0cd60fca157e5a38a" + } + }, + { + "text": "Professor Cobo is crystal clear on what he expects from his students. Homework, lectures, and study material are representative of what will appear on all assessments. His intentions are to make sure students like what they're learning. He presents information in a way that is easy to understand and interest piquing. By far my favorite professor.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a38b" + } + }, + { + "text": "Cobo is a very good listener. He wants you to love Organic Chemistry and wants you to pass. His exams are fair as well as the quizzes. Just read his slides and do practice questions and you'll be fine. Cobo also explains concepts really well, and if you do not understand it then he will make sure you do. Highly Recommend. Cobo for Orgo!!!!", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a38c" + } + }, + { + "text": "Professor Cobo is amazing! He makes sure you understand the material and why certain reactions happen. His tests are straightforward and consistent with what is taught in class. He is also funny and relatable. I would take this class again if I could.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a38d" + } + }, + { + "text": "Great teacher, able to explain concepts clearly. Lot of repeated questions from class on exams. Clear what's gonna be on the exams", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a38e" + } + }, + { + "text": "Professor Cobo is one of the best professors I have ever had. He made lectures enjoyable and did not move on to the next concept until he was positive we understood. He made the exam and quizzes fair. He is a great hearted person and I would definitely recommend his course.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a38f" + } + }, + { + "text": "Very helpful teacher who really tries to get you to understand the concepts he is teaching. Lectures are not mandatory, but they are very helpful in this case as his presentations are great and easy to understand. Is always willing to provide feedback and help with any question you have. Exams are also very fair and predictable.", + "pos": 0.307, + "neu": 0.678, + "neg": 0.015, + "_id": { + "$oid": "6711d3a0cd60fca157e5a390" + } + }, + { + "text": "Great professor. Very straightforward in teaching and exams/quizzes. If you listen during lecture and put in the time, you will do very well. He puts incredibly fair material for exams and you should have no problem if you put in the effort. Would definitely recommend.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a391" + } + }, + { + "text": "Cobo is unlike any other professor. Not only does he have a passion for Organic Chemistry, but he wants his students to appreciate it. If you pay attention in class, go through the lecture slides, and complete the problem sets, the quizzes and exams are easy. Cobo made Organic Chemistry fun, so enjoy this professor!", + "pos": 0.272, + "neu": 0.658, + "neg": 0.071, + "_id": { + "$oid": "6711d3a0cd60fca157e5a392" + } + }, + { + "text": "Professor Cobo is great at explaining concepts. Tests are based on exactly what he tells you in class, so make sure you listen. The homework questions are great supplements to the class lectures, and he's really good at explaining them in recitations. He doesn't really focus on mechanisms; know mainly reagents and compounds in the reactions.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a393" + } + }, + { + "text": "Professor Cobo is an amazing lecturer. He explains concepts so well that you don't need to go home and teach yourself what you did in class. His exams are very straight forward and he doesn't try to trick you, which is great. I would definitely recommend taking a class with him. You definitely will not regret it.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a394" + } + }, + { + "text": "Professor Cobo is a great professor to have. He is a no-nonsense guy and tells you exactly what he expects you to know, no tricks. As long as you review what you do in class you will be fine.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d3a0cd60fca157e5a395" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a1cd60fca157e5a397" + }, + "professor_name": "Maritsa Poros", + "rating": 3.8, + "department": "Sociology department", + "comments": [ + { + "text": "There is not a lot of assignments, mostly quizzes, and is the prof not at all a tough grader. She tries to engage with the students in the lecture, but moves on a doesn't not ridicule you on participation, there was also extra credit made available for missing assignments. Overall, not a difficult class and a lot of engaging information provided.", + "pos": 0.152, + "neu": 0.755, + "neg": 0.094, + "_id": { + "$oid": "6711d3a1cd60fca157e5a398" + } + }, + { + "text": "She is a tough grader. She gives long lectures and goes in depth, but it almost seems as if you have to understand things as she does. I take notes while lectures to aid me during assignments and I don't understand what is it that motivates her grading. It is almost impossible to attain the grade you expect.", + "pos": 0.0, + "neu": 0.979, + "neg": 0.021, + "_id": { + "$oid": "6711d3a1cd60fca157e5a399" + } + }, + { + "text": "She's a really good professor, I would definitely take her again, she's so nice and understanding. she goes through the readings every class, participation is not mandatory but if you want extra credit that's the best way to earn it. Her assignments are really easy and she would definitely help you if you need help.", + "pos": 0.414, + "neu": 0.572, + "neg": 0.014, + "_id": { + "$oid": "6711d3a1cd60fca157e5a39a" + } + }, + { + "text": "PROS: smart, tries to help students in any way they can, lenient, good lectures \nCONS: readings can be difficult, slow grader, tough grader \n\nShe's good at what she does. Grading was harsher than I expected.", + "pos": 0.28, + "neu": 0.568, + "neg": 0.152, + "_id": { + "$oid": "6711d3a1cd60fca157e5a39b" + } + }, + { + "text": "The bio majors are mad because they took the sociology half as a joke and got bad grades!!!!!! It is what they deserve haha", + "pos": 0.157, + "neu": 0.605, + "neg": 0.238, + "_id": { + "$oid": "6711d3a1cd60fca157e5a39c" + } + }, + { + "text": "Based upon her previous evaluations of her other classes, she seems pretty well as a professor. However, due to her harsh grading of certain assignments like the discussion board by having a semi hard standard, especially knowing the overload of readings per assignment. As well as taking too long to grade the final that students need for check over", + "pos": 0.171, + "neu": 0.728, + "neg": 0.101, + "_id": { + "$oid": "6711d3a1cd60fca157e5a39d" + } + }, + { + "text": "PROFESSOR LI CAME IN CLUTCH WITH THE CURVE ONLY FOR POROS TO RUIN THE GRADE BRUHHHHHHHHHHHHHHHHH. She's not harsh at all for her discussion boards. For the final, expect the unexpected cause she grades toughhhhhhh. She ruined my A, but yeah, she is sweet, maybe.", + "pos": 0.159, + "neu": 0.75, + "neg": 0.09, + "_id": { + "$oid": "6711d3a1cd60fca157e5a39e" + } + }, + { + "text": "Shes so sweet, I was nervous taking this elective because 80% of the grade comes from two exams. The sociology half with Poros was chill and easy. She made the final exam take home which made it easy to score well. My only complaint is that she did not release final exam scores before uploading grades onto cunyfirst. She is a really chill prof tho!", + "pos": 0.154, + "neu": 0.789, + "neg": 0.057, + "_id": { + "$oid": "6711d3a1cd60fca157e5a39f" + } + }, + { + "text": "Intro to sociology was generally a fine class with Poros. Her class is a majority of her discussing the subject at hand and giving students the chance to engage, usually with interesting questions. Attendance is usually mandatory but there are days when she doesn't take it. MUST READ TO EVEN CONSIDER PASSING. I thought I did good on tests but oops.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a0" + } + }, + { + "text": "Amazing professor! I learned a lot in this class and the professor explains the readings and material well.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a1" + } + }, + { + "text": "She's a nice prof but when focusing on topics (inequality/racism/globalization) she doesn't offer solutions afterwards. If you present scientific evidence against certain sociological ideas she shuts them down. You'll pass if you're her pet, if not she'll give you a hard time. After midterm, you won't know your grades until the semester is over.", + "pos": 0.079, + "neu": 0.863, + "neg": 0.058, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a2" + } + }, + { + "text": "Her class is not hard, but the questions she asks on the midterm and final are based on general knowledge of society and the option are very similar, that makes it hard to pick a correct answer. And since the exams are just multiple choice, there is no partial credit. The exams total up to 70% of the class grade.", + "pos": 0.018, + "neu": 0.871, + "neg": 0.112, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a3" + } + }, + { + "text": "I almost failed this class. If she didn't gave the chance to do an extra credit, I wouldn't have passed. The class is kinda tough since you have to read a lot and the midterm and final were extremely tough. You should definitely take her since the class lectures were interesting and she is understanding if you are having issues with the class.", + "pos": 0.112, + "neu": 0.781, + "neg": 0.108, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a4" + } + }, + { + "text": "She is a really good professor. I took her class and didn't have much problems at all...she is very willing to help students, as all professors should. If you have any questions or concerns she's is someone you can talk to.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a5" + } + }, + { + "text": "Very smart and nice! Very helpful during office hours, clear in class, treats everyone with respect. I wish I could take more classes with her.", + "pos": 0.484, + "neu": 0.516, + "neg": 0.0, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a6" + } + }, + { + "text": "Very knowledgeable professor. Also very helpful she is a sweet heart! Mostly papers and expect A LOT of reading!", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a7" + } + }, + { + "text": "very nice professor, she knows what she is talking about but a tough grader when it comes to paper's and the work required to do.", + "pos": 0.076, + "neu": 0.858, + "neg": 0.065, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a8" + } + }, + { + "text": "She is a very nice professor, but she is very tough on what she wants on papers. If there are little tiny things on the papers that doesn't seem right she makes a very big fuss about it and takes points of for the littliest things. you better be doing draft papers for her to look at before giving in a final draft if you want a good grade.", + "pos": 0.18, + "neu": 0.793, + "neg": 0.028, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3a9" + } + }, + { + "text": "Teach you a whole lot-if your willing, but will crush your soul...if you willing", + "pos": 0.0, + "neu": 0.872, + "neg": 0.128, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3aa" + } + }, + { + "text": "Professor Poros is extremely intelligent and treats her students with the utmost respect. Her classes are challenging but you learn a lot and she makes herself available to anyone who is struggling. Not recommended for lazy/unmotivated students.", + "pos": 0.128, + "neu": 0.743, + "neg": 0.13, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3ab" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a1cd60fca157e5a3ad" + }, + "professor_name": "Prathap Ramamurthy", + "rating": 2.7, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Grading was a joke for this class. The only thing enjoyable about this class was the project it helped me understand how to apply fluid concepts in real life and still I don't know if I did the project right it just helps helps you understand when and where to use the formulas, can't believe CCNY allowed someone to mess up such an important course.", + "pos": 0.164, + "neu": 0.802, + "neg": 0.034, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3ae" + } + }, + { + "text": "Good professor, very clear with what you have to do to succeed. Teaches the more theoretical side of fluids in lecture. Covers some analytical aspects, but it's up to you to practice that in the hwks. Exams are exactly what he says they will be. If you can do all the homework problems and previous exam problems (if he shows them), you're golden.", + "pos": 0.084, + "neu": 0.816, + "neg": 0.1, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3af" + } + }, + { + "text": "This class is just 4-5 labs. Nothing crazy. Prathap just makes you come do the labs and write the report before the due date. Basically, didn't have class most days since there's no point to class besides doing labs. He was alright, doesnt help much unless you need it. The class is just applying what you know about fluids anyway. Passes you.", + "pos": 0.061, + "neu": 0.872, + "neg": 0.067, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b0" + } + }, + { + "text": "He does not teach everything you need to know. He rarely shows how to solve problems, so you have to self-study and practice from the homework. He was nice and said that he'll only give out D's because an F would ruin our financial aid. Very considerate of him. Overall, he's an ok professor.", + "pos": 0.155, + "neu": 0.744, + "neg": 0.101, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b1" + } + }, + { + "text": "The previous professor for this class quit last minute and he was thrown into teaching it. I thought he was alright considering he had to rush and miss some days because he already had plans. Lectures are mostly basic conceptual stuff and showing slides. Do/understand all of the homework on your own and you should be good for quizzes/exams.", + "pos": 0.078, + "neu": 0.896, + "neg": 0.026, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b2" + } + }, + { + "text": "It's hard to believe some of the other reviews on this guy. He was genuinely a nice professor and did everything in his power for students to pass. He told us what equations to use during the final and made quizzes/exams essentially 80% similar to HW questions. As far as teaching, he's definitely mid but as a human, I thought he was solid.", + "pos": 0.086, + "neu": 0.896, + "neg": 0.018, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b3" + } + }, + { + "text": "One of the most disrespectful professors in CCNY. Calls on you on the spot and berates you for giving an unsatisfactory answer. Don't even try to negotiate with him, because whatever he says goes. If you can, avoid him at all cost.", + "pos": 0.054, + "neu": 0.897, + "neg": 0.049, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b4" + } + }, + { + "text": "Never gave instructions, grading criteria, grades, nor feedback for assignments after promising to. Calls projects \"easy\" without ever having touched the software involved. Made students present for each lecture and barely (like once class maybe) taught himself. Terrible experience.", + "pos": 0.17, + "neu": 0.762, + "neg": 0.068, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b5" + } + }, + { + "text": "Quizzes every week based on the homework, two exams, and one final project. Helps a lot to form a study group, and to do HW problems over and over until you understand them completely. Most of the exam problems come from homework. As long as you average on quizzes and exams, you will get a good grade. He does curve a bit", + "pos": 0.08, + "neu": 0.842, + "neg": 0.078, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b6" + } + }, + { + "text": "Not a good teacher for \"Heat Transfer\" as his background is in \"Atmospheric Science\" or something like that, and not purely in Mechanical Engineering. He was sometimes struggling while solving some \"Conduction\" related problems in the class. Poor office hours and almost no help. His thick accent is truly annoying. But he tries being nice to people.", + "pos": 0.136, + "neu": 0.686, + "neg": 0.179, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b7" + } + }, + { + "text": "In general, he's an ok teacher. In general he does 1 or 2 problems per class. In general, his quizzes are very similar to the HW. In general, I wish he did more problems in class so I wouldn't have to rely a lot on outside sources for help with HW. In general, he compensates by being a very liberal grader. In general, he says in general a lot.", + "pos": 0.098, + "neu": 0.828, + "neg": 0.074, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b8" + } + }, + { + "text": "Heard bad things about this professor before taking fluids but he is awesome. Knows the material in detail. Focuses on theory so students can actually learn. Expects you to do the HW, so put time into it because quizzes are based on HW. (Quiz weekly). Knows a lot about weather so he relates fluid mechanics to weather. Always interesting lectures.", + "pos": 0.134, + "neu": 0.833, + "neg": 0.033, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3b9" + } + }, + { + "text": "He gives weekly quizzes that are weighted the same as an exam, two projects that are very easy and still worth a lot of points. Although he is very vague with what he expects from exams if you go to his office hours he will pass you.", + "pos": 0.1, + "neu": 0.866, + "neg": 0.033, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3ba" + } + }, + { + "text": "Very sloppy in beginning, gets better after first exam. too much points for hmwrk (20%), 4 exams, each 20%. DO HOMEWORK i missed some and lost a lot of points. If you read the book you'll get high 90s on exams. Lets you use a sheet of notes on exams. Gives good explanations but rushes lecture, gives sloppy notes with too many mistakes.", + "pos": 0.057, + "neu": 0.848, + "neg": 0.095, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3bb" + } + }, + { + "text": "I took him Fall2015. He is a fair grader, and only way to pass is to redo the hw and practice problems. He tells you exactly what will be on the exams. Failed an exam once, and he boosted my grade! He keeps you well informed of your grade. Let me know what i needed to get a B. However, sometimes it feels like he is rushed with the # of students.", + "pos": 0.119, + "neu": 0.808, + "neg": 0.073, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3bc" + } + }, + { + "text": "It's very hard to find a correlation between the lectures, the homework and tests. So the very best thing to do, is read the chapter before the class. It's the only way to follow the lecture. To do well on tests...I don't know if there is any good way, but he tests the concepts. Very happy with my grade", + "pos": 0.177, + "neu": 0.803, + "neg": 0.02, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3bd" + } + }, + { + "text": "He keeps you updated on your progress grade-wise. Grading is fair (partial credit on exams, homework, etc). Just be sure to do all your homework, read the lecture notes and make yourself a good formula sheet for the exams, and you'll be fine.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3be" + } + }, + { + "text": "Took him Sp 15. He was sloppy at first but became more clear. Students need to study the theories as well as practice the applications of them. 1st test is hardest, then it gets easier. Final was not cumulative. Doing practice problems in textbook helps, Very outgoing and nice guy, if you put in right amount of work, expect to get an A- to a B+", + "pos": 0.251, + "neu": 0.707, + "neg": 0.043, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3bf" + } + }, + { + "text": "On the board and with lecture notes he's a little sloppy, but that's because he focused more on the conceptual material. Do your best to get his notes down and stop him if it's unclear. His clarity comes verbally.", + "pos": 0.245, + "neu": 0.653, + "neg": 0.102, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3c0" + } + }, + { + "text": "I took his class Spring 2015. It was his first semester teaching and his inexperience definitely showed.I got the impression that he has the potential to be one of the best professors in the department, and he definitely improved over the semester. He also doesn't like to fail students. Gave me a C, despite the fact that I 1000% deserved to fail.", + "pos": 0.226, + "neu": 0.701, + "neg": 0.073, + "_id": { + "$oid": "6711d3a1cd60fca157e5a3c1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a2cd60fca157e5a3c3" + }, + "professor_name": "L'Heureux Lewis-McCoy", + "rating": 4.3, + "department": "Sociology department", + "comments": [ + { + "text": "Professor Lewis-McCoy is one of the best professors you will find at CCNY. He is clear about what he expects from you as a student because you are not here to mess around. this is your education and he wants you to realize that. Amazing lectures, Don't be shy - no question is dumb, 1 midterm, 1 blog post, 1 final. Show your greatness, don't say it.", + "pos": 0.181, + "neu": 0.75, + "neg": 0.069, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3c4" + } + }, + { + "text": "Professor had very interesting lectures. But DO NOT take this course if you think it's an EASY A because it is not! You have to work for it. I had to work so much just for a C+... He does NOT care about his students. He gives way too many pop quizzes (do NOT miss a single class!) This class was just too much just for an elective....", + "pos": 0.12, + "neu": 0.835, + "neg": 0.045, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3c5" + } + }, + { + "text": "We weren't graded by much. Only a midterm, the final, a research bibliography, and one group assignment. Read the textbook, and the non-text book readings too. Classes are basically a review of what we read. To pass Midterm/Final, you must read and take your own notes. He's very relaxed, and straightforward. Definitely recommended.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3c6" + } + }, + { + "text": "He is a smart, clear and concise man. But if you are not ready to read don't do his class. He is engaging and does not ask for much with work. I just wish he cared for us more lol but he does wants you to participate so you will understand what's going on in class. He is the best professor I've had so far.", + "pos": 0.286, + "neu": 0.682, + "neg": 0.032, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3c7" + } + }, + { + "text": "A lot of reading every day. He is very uptight and strict. Does not give a speck about you. He knows his stuff, and he is smart, but he is hard af. Run!", + "pos": 0.052, + "neu": 0.841, + "neg": 0.108, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3c8" + } + }, + { + "text": "Very intelligent person as well as a good teacher.", + "pos": 0.58, + "neu": 0.42, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3c9" + } + }, + { + "text": "Extremely clear and concise. However you will need to do the readings and participate ALOT in order to make it in this class. If you do not like to read, you will not enjoy this class.", + "pos": 0.071, + "neu": 0.812, + "neg": 0.117, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3ca" + } + }, + { + "text": "Best professor ever! not an easy A but his class is very interesting and engaging! YOU NEED TO READ THE BOOKS... He picks on people to make sure they read. Overall I would recommend this class because I assure you, you would learn something.", + "pos": 0.34, + "neu": 0.631, + "neg": 0.029, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3cb" + } + }, + { + "text": "WARNING: If you hate reading, DO NOT TAKE THIS CLASS. If you don't mind reading then this class is perfect for you. He requires a lot of critical thinking, outside of the box. Understand what is being said in class, it will help you wit paper. He is NOT EASY. MUST work for yor grade. Involves a lot of participation, he wants to know if you read.", + "pos": 0.081, + "neu": 0.767, + "neg": 0.152, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3cc" + } + }, + { + "text": "His hip-hop class is the best course I have taken in my college career. Sociology of African Americans was great too. Not an easy professor at all, but the class is worth your time. Has A LOT of reading but are also worth it. Take his class if you actually want to think and learn during college. Don't take his courses for an easy A.", + "pos": 0.202, + "neu": 0.775, + "neg": 0.023, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3cd" + } + }, + { + "text": "If you're a shy person, i recommended you not to take his class because he would pick on you. he is a very intelligent professor, he knows exactly what he's teaching. He takes a while to post the grades up.", + "pos": 0.116, + "neu": 0.839, + "neg": 0.045, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3ce" + } + }, + { + "text": "One of the better Prof. at City! I learned so much in this class in part because he embodies all the necessary components to being a great educator, but this class is only a reward to the student if you're willing to put in work. So do your readings ppl. and make sure you hand in your papers on time!", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3cf" + } + }, + { + "text": "my favorite college prof. EVER!", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d0" + } + }, + { + "text": "Dr. Lewis knows a lot, and he encourages his students to want to learn and to \"love their readings.\" He's not a boring professor. If you keep up with the readings and lectures, you'll do fine. It isn't hard, just a lot of information. I've had him twice. I would definitely reccommend him to anyone who wants a great learning experience in college.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d1" + } + }, + { + "text": "Best I've ever had! Love him.", + "pos": 0.685, + "neu": 0.315, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d2" + } + }, + { + "text": "He was a great professor. Do the readings and the class will be easy. But if you choose not to just pay attention to the notes he writes on the board. Thought he was going to be a tough grader but was GREAT. FYI dont let your phone ring in class he will answer it. He is a funny interesting teacher he will teach you ALOT!!!", + "pos": 0.289, + "neu": 0.69, + "neg": 0.021, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d3" + } + }, + { + "text": "Excellent professor!! He really brings excitement to the classroom, and engages his students. He will force you to think and speak even if you don't want to. LOL I would recommend this class to anyone interested in doing actual work and reading.", + "pos": 0.277, + "neu": 0.647, + "neg": 0.076, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d4" + } + }, + { + "text": "He is a great professor and is very knowledgeable. I highly recommend this class or any other course he teaches.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d5" + } + }, + { + "text": "This class was not as difficult as I thought but he really expects alot from his students. He's funny, a great lecturer, clear, and extremely knowledgable. He's always willing to help if you don't understand and is strict on his attendance. BE THERE ON TIME!! and plus you wouldnt want to miss it cuz he looks O so good!", + "pos": 0.329, + "neu": 0.654, + "neg": 0.017, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d6" + } + }, + { + "text": "This Professor brought great energy to City College. He knows his work and you learn at great deal about Sociology from him. He inspired me to attend graduate school! City College is lucky to him as a Professor! His class was the was on task from beginning to end. One thing I loved the most about his class you are never bored! A class you must take", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a2cd60fca157e5a3d9" + }, + "professor_name": "Daniel Lemons", + "rating": 4.2, + "department": "Biology department", + "comments": [ + { + "text": "Lemons is pretty cool. His lectures are interesting, sort of. His tests are pretty tricky. He'll have a question with multiple correct answers, but you have to pick the best one according to him. He's good overall. I should have gotten a B+, but he curved and I got an A. The lab portion really helps.", + "pos": 0.301, + "neu": 0.681, + "neg": 0.018, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3da" + } + }, + { + "text": "A very interesting class with a great professor. Patient, knowledgable, kind, and open to lots of different questions. The class is also usually very engaged. Tests are hard because you really do have to study and understand the material. No silly cramming. I have learned a lot in the class.", + "pos": 0.225, + "neu": 0.734, + "neg": 0.041, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3db" + } + }, + { + "text": "Very organized professor. Keeps all the class meetings super engaging. Does a great job assigning quizzes before and after class to make comprehension of the material simpler. His youtube videos are awesome and makes the learning process great. Hes a really cute man and very passionate", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3dc" + } + }, + { + "text": "Funny guy. Very coherent YouTube videos. He does such a great job explaining the slides. I never read the book, but if I did, I might have done better. He also explains very well during class discussion ,and makes the class engaging. He really loves his job, and we need more professors like him that teach for the passion . Would def recommend", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3dd" + } + }, + { + "text": "This guy is out to get you, when he claims to say \"I'm doing this for your own good\". However, I have learned so much in this class. He designed the class so that you learn and apply engineering skills critically while thinking about the fundamental sciences. He was hard but I definitely learned a lot. Would take him again. His exams are killer!!!", + "pos": 0.075, + "neu": 0.816, + "neg": 0.109, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3de" + } + }, + { + "text": "He seems like a good guy in general. TESTS ARE REALLY HARD and he's a tough grader. Expect to study a lot because he expects for you to be fully prepared before entering class. The class seems more of a recap than actual learning so if you don't study prior you'll be lost. One of the most efforts I've put into a class and yet still barely passed.", + "pos": 0.099, + "neu": 0.81, + "neg": 0.091, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3df" + } + }, + { + "text": "He is a good professor, but you have to read before class and pay attention in class. His lectures are clear and make sure to answer correctly during lecture. If you do well on lab, you will do good on his lecture (take Alicia Sponholz). Sometimes his exam questions are confusing, but if you pay attention the the videos he post on bb you'll do ok", + "pos": 0.22, + "neu": 0.711, + "neg": 0.069, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e0" + } + }, + { + "text": "Prof. Lemons is such a great guy-but such a tough grader. BIO 321 has online lectures on YouTube & class time is for discussion. There were two exams & a non-cumulative final, as well as BB quizzes & iClicker quizzes. Exams were brutal, but you could not be mad at that guy, he always smiled at you & is willing to help. Put in work for his class!", + "pos": 0.199, + "neu": 0.754, + "neg": 0.047, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e1" + } + }, + { + "text": "Lemons was amazing however he showed no mercy. He watched us as we suffered but still kept that nice smile on his face. You can never be mad at this man. I learned a lot more than I ever thought possible, so I can forgive him", + "pos": 0.271, + "neu": 0.667, + "neg": 0.062, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e2" + } + }, + { + "text": "He is such a cute little man!! He was probably the best professor I have taken in the Biology Curriculum. His method of quizzing and lecture videos are pretty good at making sure we understand physiological concepts when going through class discussion, amazing and would take again.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e3" + } + }, + { + "text": "Yes the tests are tricky but you want to learn in his class everyday. He is a great teacher overall; made me love physiology!!", + "pos": 0.43, + "neu": 0.533, + "neg": 0.036, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e4" + } + }, + { + "text": "Every villain is Lemons. The lectures are boring but could be useful. Slides are extremely important. He might show something in class for a quick second and expect you to know it for the test. Take note of clicker questions also, many appear on the test. Do well in lab, it will bring your grade up. He does curve but not massively so work hard.", + "pos": 0.123, + "neu": 0.796, + "neg": 0.081, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e5" + } + }, + { + "text": "He is pretty clear with most conceptual explanations. The exams are a little tough but weight less in the overall course. He gives tricky multiple choice questions on the exams and in class. But his questions make you think a bit more and require you to know more than the superficial definition and concepts. Overall, he is a solid professor.", + "pos": 0.091, + "neu": 0.862, + "neg": 0.047, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e6" + } + }, + { + "text": "Knowledgeable Professor. Very tough test maker. If you don't read his slides and part of the textbook, you most likely wouldn't get the grade you expect. Test are very tough and some questions require complex thinking. Lab quizzes and tutorials are big deals. He's very nice and helpful when you ask for help. Overall, great class.", + "pos": 0.195, + "neu": 0.751, + "neg": 0.054, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e7" + } + }, + { + "text": "Very nice man, tests are kind of tricky, primarily because they are multiple choice read the book and you'll do fine. A lot of reading though.", + "pos": 0.164, + "neu": 0.772, + "neg": 0.064, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e8" + } + }, + { + "text": "Extremely knowledgeable professor. I learned a lot. His class was one of those classes that I WANTED to study to learn the materials. Even though his exams were not easy, I took him for another class (BIO 410) because of his awesomeness.", + "pos": 0.0, + "neu": 0.945, + "neg": 0.055, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3e9" + } + }, + { + "text": "Very nice professor. He will do a lot to help all of his students. He really cares about his students. He asked the entire lecture on feedback for a better benchmarking system. The class is not an easy A, it requires work especially the labs and tutorials. All in all, this is a very good class/professor!", + "pos": 0.228, + "neu": 0.737, + "neg": 0.035, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3ea" + } + }, + { + "text": "Professor Lemons is really nice and will answer questions take advantage of his office hours. He has a lot of material to cover but narrows it down with benchmarks. Review the ppt and READ the textbook. Make sure to get a good TA (take Reem Khalil shes the best TA hands down.) class is a lot of work be prepared.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3eb" + } + }, + { + "text": "Really awesome guy. Will help you to the absolute best of his ability if you ask. Lab is a drag but boosts up your grade. This was also his first time teaching in a decade, so there was some confusion but he did his best to compensate. He tells you to study the benchmarks, but you need to read the textbook. Hard work will def. get you a A or AB.", + "pos": 0.205, + "neu": 0.726, + "neg": 0.069, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3ec" + } + }, + { + "text": "HE IS SO GREAT! He is such a kind individual and an amazing prof for BIO 321. His tests are pretty fair, if you do the benchmarks you should do above average. Willing to answer any question and always makes the class interesting. Always tries to get feedback from the class because he actually cares about the students. Final is not cumulative.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3ed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a2cd60fca157e5a3ef" + }, + "professor_name": "Irina Silber", + "rating": 3.9, + "department": "Social Science department", + "comments": [ + { + "text": "Prof. Silber is really understanding. Asynchronous zoom sessions. not mandatory to show face. Participation is important to get points. BB post every week. Must read but not long. A bit hard on the grading with bb post. Good for non majors too. Learn a lot of new vocab. Use of connections between text and final paper. 5-7 page paper or alternative.", + "pos": 0.081, + "neu": 0.877, + "neg": 0.042, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f0" + } + }, + { + "text": "Professor Silber is highly knowledgeable about her field and it shows with the enthusiasm she teaches with the class. She is an amazing professor. If you stay on top of the readings and do all the assignments on time and you will be fine.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f1" + } + }, + { + "text": "Professor Silber is highly intelligent, opinionated, and inspirational. Each class is packed with thought provoking discussions and information that leave you wanting more. If you take her class, I strongly advise that you keep up with the reading (read ahead if you can) and note the key points she brings up in class. Its a lot, but worth it!", + "pos": 0.133, + "neu": 0.828, + "neg": 0.039, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f2" + } + }, + { + "text": "Silber is the best, so intelligent and passionate and inspirational. Lectures are amazing, just come to class and listen. Do the readings or you'll fall behind and you won't appreciate lecture as much. She's the head of Anthro dept so she really knows her stuff. Lots of reading but very valuable material to learn. Take her!!!", + "pos": 0.256, + "neu": 0.72, + "neg": 0.024, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f3" + } + }, + { + "text": "Dr. Silber is amazing. Great lectures, informative reading material. There's a lot of reading but she's super helpful with everything. She knows her stuff, has extensive first hand experience in her field, is very knowledgeable on what she teaches. Show up to class, read the material if you don't you will fail. Lovely person. Taking her again.", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f4" + } + }, + { + "text": "Wonderful professor! Passionate, understanding, clear, and creates a critical thinking environment.", + "pos": 0.593, + "neu": 0.294, + "neg": 0.113, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f5" + } + }, + { + "text": "First time taking an anthropology class and I was not expecting such an amazing, brilliant professor! She challenges our ingrained beliefs without insulting, clearly emphasizes what's on the test-no trickery, and lectures are always amazing and engaging. Only thing is the amount of reading and I love her picks but not enough time. She's brilliant!!", + "pos": 0.299, + "neu": 0.655, + "neg": 0.046, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f6" + } + }, + { + "text": "She is such a sweetheart! She's very passionate about her work and the field of medical anthropology in general. She inspired me to double major in anthropology. If you take any of her classes, you will learn so much and you will leave a better understanding of medical anthropology. I would definitely recommend her class to other students.", + "pos": 0.273, + "neu": 0.71, + "neg": 0.017, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f7" + } + }, + { + "text": "Hybrid Class. She has clear expectations, helps you understand and work through the material. She has a lot of information to share, she is very smart! I recommend her for the studious.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f8" + } + }, + { + "text": "She's a great professor. The readings that are given are fair and interesting. Most of the time, we discuss the texts that we read but over all, she's a fair grader.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3f9" + } + }, + { + "text": "Great teacher - fair, intelligent and a wonderful person to learn from. However, the one class I had I thought should have been categorized as a 300-level. Texts can be heavy duty, demanding of critical and analytical skills but nonetheless, very rewarding. She will be one of your personal favorites if you have a serious inquiring mind.", + "pos": 0.248, + "neu": 0.687, + "neg": 0.065, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3fa" + } + }, + { + "text": "To much work!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3fb" + } + }, + { + "text": "Tons of reading, but great teacher. About halfway through class (Cross-Cultural Perspectives; ANTH 20104).", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3fc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3fd" + } + }, + { + "text": "This professor has been one of the most understanding and patient individuals I have had. This class was an absolute pleasure in addition to my other classes thus far.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3fe" + } + }, + { + "text": "She was ok. She was nice and open to the students. Her assignments are kinda long and difficult but is very interesting.", + "pos": 0.222, + "neu": 0.717, + "neg": 0.061, + "_id": { + "$oid": "6711d3a2cd60fca157e5a3ff" + } + }, + { + "text": "She was awsome! I found her very accessable and willing to engage in discussion and she kept me interested in the subject matter. I heard she was tough and the class turned out to be one of my hardest but quite satisfying. I have a greater appreciation for the subject matter after Prof. Silber.", + "pos": 0.278, + "neu": 0.703, + "neg": 0.019, + "_id": { + "$oid": "6711d3a2cd60fca157e5a400" + } + }, + { + "text": "This class has very LONG and difficult readings. She is very demanding, tough and moody. I will never forget how difficult and horrible this class was. Although I attended every class during the semester it was very difficult to get motivated to be there.", + "pos": 0.118, + "neu": 0.611, + "neg": 0.271, + "_id": { + "$oid": "6711d3a2cd60fca157e5a401" + } + }, + { + "text": "This was one of the most difficult classes I had to take. She gives a lot of readings for this class, and when you ask her questions about the reading she will give you an additional article to help you find an answer for yourself. She really doesn't try to explain clearly!!", + "pos": 0.104, + "neu": 0.848, + "neg": 0.048, + "_id": { + "$oid": "6711d3a2cd60fca157e5a402" + } + }, + { + "text": "This class was one of the hardest classes I've taken since I've been here. She is a tough professor and I had a hard time following the materials she assigned.", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d3a2cd60fca157e5a403" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a3cd60fca157e5a405" + }, + "professor_name": "H Abdulla", + "rating": 3.6, + "department": "Art department", + "comments": [ + { + "text": "I had Professor Abdulla about 6 years ago. He was one of the best classes I have taken in college and still very memorable. He really notices when students care and he is able to empathize with you as a fellow human without cutting you slack unnecessarily. I learned so much in his class about art, architecture and life. Thank you dear Professor.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a406" + } + }, + { + "text": "Prof. Abdullah's lectures are amazing but the class is tough, if you're someone who isn't good at memorizing and terrible at testes don't take this class! Also He's great, he'll update you about your grade after every midterms (there are 3 midterms and a final). So, if you're doing terrible speak to him. If you have to take this class work hard.", + "pos": 0.103, + "neu": 0.704, + "neg": 0.193, + "_id": { + "$oid": "6711d3a3cd60fca157e5a407" + } + }, + { + "text": "I HATED this class. I went to every single lecture and studied my butt off and I still ended up failing his class. He is a very harsh grader and doesn't give you credit unless it's in his exact words. If you are not good with history or memorization then I recommend you to not take his class. You have to remember A LOT, including dates.", + "pos": 0.032, + "neu": 0.764, + "neg": 0.204, + "_id": { + "$oid": "6711d3a3cd60fca157e5a408" + } + }, + { + "text": "For an Art history class you have to do work. The tests are based on the notes he gives and you have memorize dates. That is his big thing even though its only a small section on the exam. The tests are not cumulative. There is three paper for which he gives you guidelines which are clear. To do well in this class study over his notes and memorize", + "pos": 0.066, + "neu": 0.934, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a409" + } + }, + { + "text": "Absolutely one of the best professors I've ever had. In the beginning, hes going to lay down the law. There is NO chewing gum, NO foodwater, and NO lateness. He may come off as mean, BUT don't let that fool you. This man is the best. He tells you what you need to know, he's SUPER FAIR, and he just wants you to learn. Not an easy A but 100% do-able", + "pos": 0.237, + "neu": 0.667, + "neg": 0.097, + "_id": { + "$oid": "6711d3a3cd60fca157e5a40a" + } + }, + { + "text": "BEST PROF EVER. He's strict but very reasonable and the class is straight to the point. Its always a great day after Abdullah's class!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a40b" + } + }, + { + "text": "He has a very boring teaching style and promotes only memorization of very dry material. Strict rules about eating in class and lateness. He does offer feedback on essays and test difficulty varies. Overall, useless material with a rude prof who spends more time ranting than actually teaching. Save yourself the headache and take another prof.", + "pos": 0.084, + "neu": 0.753, + "neg": 0.163, + "_id": { + "$oid": "6711d3a3cd60fca157e5a40c" + } + }, + { + "text": "do drinking, eating, chewing, ting shows etc in class. if you come 5 mins late, he won't let you in. speaks very fast, it took about a month to understand his english. not clear, not helpful, not approachable. he thinks he the smartest person in the world, and everyone else is dump. make sure you participate to some extra points on the final grade", + "pos": 0.115, + "neu": 0.819, + "neg": 0.066, + "_id": { + "$oid": "6711d3a3cd60fca157e5a40d" + } + }, + { + "text": "He is a very helpful professor. Just go to every class, pay attention, take down notes from what is noted on the syllabus and you will be prepared for the tests. Some assignments are to go to the Metropolitan Museum of Art and write a paper, but it's a breeze if you bring your laptop and write it right then and there.", + "pos": 0.055, + "neu": 0.926, + "neg": 0.019, + "_id": { + "$oid": "6711d3a3cd60fca157e5a40e" + } + }, + { + "text": "Wow, this guy was tough! I fell asleep for 1 minute in his class from being so tired and he kicked me out. He apologized in the next class, so he is an awesome guy! You really need to pay attention to dates and stuff, it's more of a history class then art. He is very smart. Just pay attention and you will do decent.", + "pos": 0.174, + "neu": 0.718, + "neg": 0.108, + "_id": { + "$oid": "6711d3a3cd60fca157e5a40f" + } + }, + { + "text": "Awesome Professor very nice very easy just be prepared always including being on time and with pens and pencils he will teach you alot more than art!", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a410" + } + }, + { + "text": "Easy A. I really recommend him", + "pos": 0.587, + "neu": 0.413, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a411" + } + }, + { + "text": "Best Professor ever. Very easy test. He makes the class very interesting. You dont even have to read your textbook or take notes. He gives you all the notes the first day you come to class. Just make sure you come everyday and listen. He gives a lot of extra points. Easy A", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a412" + } + }, + { + "text": "He is so cynical and messed up. He thinks whatever he think is right and everything else is wrong. He's so conceited and thinks that his intellect is better than anyone else when this is so untrue. He has a thick accent and repeats too much about the subject that he likes like Roman Art and does not cover things that he does not like.", + "pos": 0.141, + "neu": 0.718, + "neg": 0.141, + "_id": { + "$oid": "6711d3a3cd60fca157e5a413" + } + }, + { + "text": "Great professor. He really knows what he is talking about. You will take an interest in art after you take his class.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a414" + } + }, + { + "text": "HE IS VERY DEMANDING AND EXPECTS YOU TO MEMORIZE EVERYTHING. HE DID EXTEND THE DUE DATE FOR THE PAPER WHEN NEEDED. VERY SARCASTIC AND CAN BE RUDE!!!!!", + "pos": 0.051, + "neu": 0.69, + "neg": 0.259, + "_id": { + "$oid": "6711d3a3cd60fca157e5a415" + } + }, + { + "text": "He is a clever professor...has taught it many other countries for over 40 years so he compares other students to Americans and has his expectations and standards high...because obviously in Europe and other countries they study harder than here...he is cool has dark humor but extremely hard...and teaches very fast!...has interesting accent...from I", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a416" + } + }, + { + "text": "he's kind of funny also a security guard at this museum he's extremely clear about what he wants doesnt tolerate lateness doesnt let you stay in class even if your .00005730 sec late but very clear, easy. he tells you the exam and paper is due on this date and then changes it gives you time to study loved him recommend highly read the textbook", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a417" + } + }, + { + "text": "He's a pretty cool guy, very funny actually. he has a very dark humor and is very cynical. he hates everything especially religion, he talks about sex a lot, so if your easily offended then i wouldn't recommend him. if you dont follow his rules you will have a terrible time in this class. he doesn't give too much homework, and his tests are easy.", + "pos": 0.198, + "neu": 0.644, + "neg": 0.158, + "_id": { + "$oid": "6711d3a3cd60fca157e5a418" + } + }, + { + "text": "He was sarcastic most of the time with dry humor. But he will make your day a living hell if you dont play by his rules.He teaches ok but he goes way too fast.", + "pos": 0.099, + "neu": 0.662, + "neg": 0.239, + "_id": { + "$oid": "6711d3a3cd60fca157e5a419" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a3cd60fca157e5a41b" + }, + "professor_name": "Ernesto Garcia", + "rating": 3.8, + "department": "Economics department", + "comments": [ + { + "text": "Professor Carcia is very KNOWLEDGEABLE and CARING professor. Any questions you might have he'll explain it to you and show you how to do it. You'll find how amazing he is at the end of the semester because he's very understandable and gives lots of extra credits. THANK YOU, Prof. Carcia! Please take him. You won't regret it.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a41c" + } + }, + { + "text": "The grade consists of weekly problem sets/quizzes worth 10% of your grade and assignments/ problem sets worth another 10%. This means midterms and finals account for 80% of your grade, the final being 40%. The exams are hard, and the professor will not accommodate or assist failing students. I would pick a different professor.", + "pos": 0.061, + "neu": 0.775, + "neg": 0.163, + "_id": { + "$oid": "6711d3a3cd60fca157e5a41d" + } + }, + { + "text": "The final was nothing like the two midterms, the difficulty was way too hard. AVOID LIKE THE plague. GPA KILLER!!!", + "pos": 0.101, + "neu": 0.438, + "neg": 0.461, + "_id": { + "$oid": "6711d3a3cd60fca157e5a41e" + } + }, + { + "text": "Made constant mistakes on every assignment and exam given, kept changing grades of those assignments even after. No lectures, basically teach yourselves with the provided PowerPoints of 50+ slides, and they were a bit confusing. He curved grades which is the only plus I saw, along with the time you were given to do the problem sets (about a week).", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d3a3cd60fca157e5a41f" + } + }, + { + "text": "Professor Garcia is a cool guy, but that doesn't make him a good teacher. He's very easy to get in touch with as he responds to emails very fast. Unfortunately he would constantly make mistakes on exams and quizzes. And a good amount of his lecture slides were difficult to understand.", + "pos": 0.202, + "neu": 0.65, + "neg": 0.148, + "_id": { + "$oid": "6711d3a3cd60fca157e5a420" + } + }, + { + "text": "Had to beg this professor to upload a lecture and he still refused. He never taught a single thing and expected us to be full on coders by the end of the semester. He doesn't care about his students at all and let us all fail. This was the hardest class I ever took and he seemed unbothered. Do not take this professor unless you want to fail.", + "pos": 0.017, + "neu": 0.828, + "neg": 0.155, + "_id": { + "$oid": "6711d3a3cd60fca157e5a421" + } + }, + { + "text": "Prof. Garcia is an amazing professor. Final grades are based on 3 exams and a final. Attendance is non-mandatory, and notes are online. Go to recitation, take notes and do the weekly problem sets and you should get an A. Curves for each test are huge, up to 10+ points. He's accessible as long as you shot him an email.", + "pos": 0.093, + "neu": 0.866, + "neg": 0.041, + "_id": { + "$oid": "6711d3a3cd60fca157e5a422" + } + }, + { + "text": "Professor Garcia is a great economics professor. Attendance isn't mandatory in his class but your overall grade is only based off of exams. His exams are easy if you pay attention to the lectures, study and do his problem sets. Overall, he makes economics easy to understand. I highly recommend taking him for any economics class if you're able to.", + "pos": 0.19, + "neu": 0.724, + "neg": 0.086, + "_id": { + "$oid": "6711d3a3cd60fca157e5a423" + } + }, + { + "text": "2 exams worth 50% final worth 50%. Problem sets are exactly like the exams. Practice the problem sets and you will be fine!", + "pos": 0.273, + "neu": 0.552, + "neg": 0.175, + "_id": { + "$oid": "6711d3a3cd60fca157e5a424" + } + }, + { + "text": "Professor Garcia is a great professor. I took him for Macroeconomics during the summer. Make sure to do and study the problem sets because they're similar to exams. 50% midterm and 50% final, he also does a huge curve for the final grade. If you have any questions he'll answer it. The summer course is hard though because it's a lot of material.", + "pos": 0.123, + "neu": 0.819, + "neg": 0.058, + "_id": { + "$oid": "6711d3a3cd60fca157e5a425" + } + }, + { + "text": "Lectures are straightforward about the concept. Assigns homework but doesn't mandate you to do. Exams are 80% identical to exam reviews. Attending his class decreases reliance on reading the textbook. In a nutshell, study his notes, do homework, practice exam reviews and you'll be fine.", + "pos": 0.048, + "neu": 0.952, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a426" + } + }, + { + "text": "One of the best professors I've even had! Very knowledgeble and helpful. He will answer all your questions on economics even the ones that are not related to the course. Available outside of class. Gives review questions, very similar to the exam questions, so make sure you practice a lot! 1 midterm and 1 final. Gives links to very helpful videos!", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a427" + } + }, + { + "text": "I took him for Macro during the summer and he was very interesting to listen to. He makes macro super easy and is very approachable if you have questions. He gave2 exams in the summer course and if you get a higher grade on the second than the first he'll replace both with that grade then also give you a huge curve.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a428" + } + }, + { + "text": "I took this class for the PATHWAY requirement in fall 2017. There are two exams: midterm and final. The midterm was okay but the final was extremely difficult. But, he curves massively. He gives out practice problems for the exams. He tries his best to explain but micro eco can be difficult at times. Also, attendance is not required.", + "pos": 0.101, + "neu": 0.753, + "neg": 0.146, + "_id": { + "$oid": "6711d3a3cd60fca157e5a429" + } + }, + { + "text": "Took him for the summer plus it was a hybrid class, so we went only twice a week, 8 days in total including midterm and final. But doing 17 chapters in 6 days was tough but he curves massively. Just study the practice test packets and you'll be fine.", + "pos": 0.043, + "neu": 0.922, + "neg": 0.034, + "_id": { + "$oid": "6711d3a3cd60fca157e5a42a" + } + }, + { + "text": "Wonderful class. Definitely would take again just to stare at him. Approachable and takes his time explaining things.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a42b" + } + }, + { + "text": "Study his problem sets and I promise you will be fine. Two midterms, one final.", + "pos": 0.218, + "neu": 0.638, + "neg": 0.144, + "_id": { + "$oid": "6711d3a3cd60fca157e5a42c" + } + }, + { + "text": "He's very clear. Helps you if you need any help. I took him during the summer and there was only the midterm and final exam. His lecture was great. He posted up everything on BB including the textbook. Just study of what he post on BB from his last exams and you will pass his exams. He also held review sessions to explain things to the class.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a42d" + } + }, + { + "text": "Great bang for your buck! Very knowledgeable and thorough. Joins complex principles with real life example helping you clarifies the concepts.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d3a3cd60fca157e5a42e" + } + }, + { + "text": "Very chill professor. Questions from problem sets are exactly on the tests. Attendance not required at all. Gives you an optional final if you had great grades on the three exams. Easy A+", + "pos": 0.176, + "neu": 0.756, + "neg": 0.068, + "_id": { + "$oid": "6711d3a3cd60fca157e5a42f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a4cd60fca157e5a431" + }, + "professor_name": "Barbara Brooks", + "rating": 3.4, + "department": "History department", + "comments": [ + { + "text": "Knows a lot about the Renaissance period. Always willing to give extra help.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a432" + } + }, + { + "text": "She is goes off topic and is quite boring! If you email her, don't look forward for a response it is almost like she is up to date with technologically... she is a fair grader nothing to hype about", + "pos": 0.111, + "neu": 0.83, + "neg": 0.06, + "_id": { + "$oid": "6711d3a4cd60fca157e5a433" + } + }, + { + "text": "PRO's-Very knowledgeable, lenient grader, seems like a nice person. CONS- COMPLETELY unorganized: Will go off on 20 min unrelated tangents, doesn't respond to emails, sets no clear objectives. Also, she assigns an incredible amount of reading, although I didn't complete most of it and still got an A.", + "pos": 0.138, + "neu": 0.821, + "neg": 0.041, + "_id": { + "$oid": "6711d3a4cd60fca157e5a434" + } + }, + { + "text": "The only thing she can teach is Japan. The class was about Modern Imperialism in several European countries. We learned nothing about them. 2 papers to do, an optional research/2 final papers. One oral presentation. Easy class if you do all your work. Boring.", + "pos": 0.061, + "neu": 0.89, + "neg": 0.049, + "_id": { + "$oid": "6711d3a4cd60fca157e5a435" + } + }, + { + "text": "She's kind of boring but she is a lenient prof. She assigns one group oral presentation based on the topic she gives you, two essays based on two different novels, a midterm, and a final. She's available when you need help, can have an attitude at times but only when you talk in class, or come in late and disturb the class. Other than great prof.", + "pos": 0.152, + "neu": 0.78, + "neg": 0.068, + "_id": { + "$oid": "6711d3a4cd60fca157e5a436" + } + }, + { + "text": "Yes avoid.", + "pos": 0.551, + "neu": 0.0, + "neg": 0.449, + "_id": { + "$oid": "6711d3a4cd60fca157e5a437" + } + }, + { + "text": "avoid", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a438" + } + }, + { + "text": "This class is usually pretty boring, though once in a while an interesting discussion starts. The class involves A LOT of reading and writing, but she isn't a tough grader. She is nice and approachable, and is very willing to help you out.", + "pos": 0.254, + "neu": 0.714, + "neg": 0.032, + "_id": { + "$oid": "6711d3a4cd60fca157e5a439" + } + }, + { + "text": "I highly recommend Prof. Brooks to any student looking to be challenged to think. She deals with some really progressive and expansive concepts that are extremely applicable and enlightening.", + "pos": 0.188, + "neu": 0.77, + "neg": 0.041, + "_id": { + "$oid": "6711d3a4cd60fca157e5a43a" + } + }, + { + "text": "Great professor. Lots of reading, but not outrageous. Lenient grader. She wants you to show her a genuine interest in the subject matter and analytical thinking. Those who can not handle thinking about the material fall asleep in class like the jack a**es they are.", + "pos": 0.256, + "neu": 0.704, + "neg": 0.04, + "_id": { + "$oid": "6711d3a4cd60fca157e5a43b" + } + }, + { + "text": "Very helpful and smart", + "pos": 0.752, + "neu": 0.248, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a43c" + } + }, + { + "text": "Grad Historiography. You read a lot, but some weeks there are articles. The class is all discussion, but Brooks speaks the most. I can't say I understood everything. The readings were difficult. We had to do 8 weekly reading responses to make sure you do the reading. Brooks is very nice, easy to talk to and goes out of her way to be helpful.", + "pos": 0.195, + "neu": 0.763, + "neg": 0.042, + "_id": { + "$oid": "6711d3a4cd60fca157e5a43d" + } + }, + { + "text": "Prof. Brooks is a very knowledgible professor, and liberal thinker. There are three papers you must do which are pretty interesting. I really enjoyed her class and willing to take her classes in the future. She showed films in class as well as some anime. I encourage people who are interested in Japanese culture to check out this class.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a43e" + } + }, + { + "text": "Great professor despite what everyone seems to think!! Class was interesting but tons of reading...papers (3 + final paper) - Wonderful professor, and individual!", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a43f" + } + }, + { + "text": "SHe is the most boring teacher in the world. Youll fall asleep but she is not a hard grader. HEr midterm is easy and her assignments as well. There are 3 papers you have to write. Read 2 books.", + "pos": 0.178, + "neu": 0.782, + "neg": 0.04, + "_id": { + "$oid": "6711d3a4cd60fca157e5a440" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3a4cd60fca157e5a441" + } + }, + { + "text": "She thoroughly cares about the subject and her students. She admits her limitations and takes the class along with her on learning journey. She gives WAY too much reading, but doesn't expect you to complete it all. I recommend her especially if you are interested in the subject matter.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a442" + } + }, + { + "text": "She did not have clear lesson plans and rarely talked about Wciv. she puts all of this stuff that we barely/never covered on the tests. Essays are also too specific and not relevant. Spent a lot of time watching videos too. AVOID!!!", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d3a4cd60fca157e5a443" + } + }, + { + "text": "this professor laughs at her own jokes...and not interesting at all....she is boring..although i pass her class with an A but damn she is boring", + "pos": 0.067, + "neu": 0.672, + "neg": 0.26, + "_id": { + "$oid": "6711d3a4cd60fca157e5a444" + } + }, + { + "text": "One of the most boring classes ever, suppose to be about BC-AD 1400 but all she talks about is Mongolia. Good professor overall if you can stay awake, and believe me, it's hard", + "pos": 0.103, + "neu": 0.805, + "neg": 0.091, + "_id": { + "$oid": "6711d3a4cd60fca157e5a445" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a4cd60fca157e5a447" + }, + "professor_name": "Benjamin Becker", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "the best professor and hes so nice and the work is actually interesting. take him you wont regret it. it also helps that hes fun to look at", + "pos": 0.46, + "neu": 0.54, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a448" + } + }, + { + "text": "Great professor && Extremely hot. He's very fair and able to stay on topic. Recommend", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a449" + } + }, + { + "text": "Yes, he does have a lovely smile but he is a great professor period. Great lectures, knows how to keep you awake. Always available via email. On the final he brought us munchkins. Final was easy as well, multiple choice was simple if you studied it. Essay choices were what he said they would be. He's a fairly easy grader. Participate&do good papers", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a44a" + } + }, + { + "text": "GREAT professor. If he was teaching another course, I would DEFINITELY register but unfortunately he isn't. LOVE this guy. EXTREMELY attractive and cute. Really knows how to teach the material and help a student comprehend the material. Made me enjoy history (something I hated my whole life.) Uses power points so it makes class like a movie.", + "pos": 0.306, + "neu": 0.532, + "neg": 0.162, + "_id": { + "$oid": "6711d3a4cd60fca157e5a44b" + } + }, + { + "text": "Great lectures and you can take many great notes from his class. His quizzes are pretty easy if you study the lecture notes and read the textbook. Very nice guy, knows how to explain things and help you understand history in a broader context. Also bought the class munchkins on the last day. also has a great smile and cute dimples.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a44c" + } + }, + { + "text": "First of all, I might say he's EXTREMELY attractive for a professor. Second, for a professor who's still in he really knows how to teach. His lectures are great and he's a really intellectual guy. Presents things clearly. 3 essays, 5 quizzes and 1 final although it takes him awhile to grade things. But they fairly easy if you pay attention in class", + "pos": 0.182, + "neu": 0.796, + "neg": 0.022, + "_id": { + "$oid": "6711d3a4cd60fca157e5a44d" + } + }, + { + "text": "He's the best professor I've had by far at CCNY. I don't know why people said he was a harsh grader because he grades very fairly. I used to DETEST history but because of him, that has changed. He really knew how to keep the audience's interest. He was very clear and good at explaining things and never went off topic which is a plus. RECOMMEND!", + "pos": 0.238, + "neu": 0.738, + "neg": 0.024, + "_id": { + "$oid": "6711d3a4cd60fca157e5a44e" + } + }, + { + "text": "The professor makes the material very interesting, the course isn't hard either. He's super hot. I dont know why I was always afraid of him but then I realized he's really nice and helpful. I will always remember this professor.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a44f" + } + }, + { + "text": "He's a fair grader and makes everything very clear. Go to class everyday and take a lot of notes. I'm in love with him, he really enjoys teaching.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a450" + } + }, + { + "text": "I have to say that Prof. Ben is very clear and makes the subject interesting. He always help when you ask for it. Class is not easy but isn't hard either. You have to go to class everyday and write down everything he says thats all. All quiz and exam questions comes from his notes. He's very adorable, I loved him.", + "pos": 0.24, + "neu": 0.737, + "neg": 0.023, + "_id": { + "$oid": "6711d3a4cd60fca157e5a451" + } + }, + { + "text": "Very helpful and makes lecture extremely interesting. Tough grader for the two paper but his class is definitely worth taking.", + "pos": 0.378, + "neu": 0.57, + "neg": 0.053, + "_id": { + "$oid": "6711d3a4cd60fca157e5a452" + } + }, + { + "text": "Not a bad thing to say great teacher :)Def recommend him", + "pos": 0.542, + "neu": 0.458, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a453" + } + }, + { + "text": "He makes the class very interesting and he is good at teaching. Very fair and clear about what he wants. wish more profs were like him.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a454" + } + }, + { + "text": "He doesn't give take home exams. The book is not very useful at all, and his class is boring.", + "pos": 0.0, + "neu": 0.775, + "neg": 0.225, + "_id": { + "$oid": "6711d3a4cd60fca157e5a455" + } + }, + { + "text": "Even if you're not interested in taking this class, you'll end up liking it; which was my case. As long as you do the papers on time, participate & show-up, you have an A guaranteed. He's very polite, calm and professional. You're able to take really good notes from him-enough to pass almost the entire class! Highly recommend him! Nice guy too.", + "pos": 0.204, + "neu": 0.765, + "neg": 0.031, + "_id": { + "$oid": "6711d3a4cd60fca157e5a456" + } + }, + { + "text": "I loved this class. I thought it'd be a boring class but Mr. Becker made it interesting. He really knows History. He explains it perfectly WELL and CLEARLY! As long as you do the work on time and participate you got an A. He's very calm & polite. He cares that everyone learns & shows the same respect to everyone. Highly recommend him!", + "pos": 0.397, + "neu": 0.585, + "neg": 0.018, + "_id": { + "$oid": "6711d3a4cd60fca157e5a457" + } + }, + { + "text": "He was a great teacher and like a comment said quite easy on the eyes. His papers were straight to the point and he was available for his students i wouldn't mind taking another history class if he teaches it :)If you participate and do your papers its def an easy A", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a458" + } + }, + { + "text": "i realized I did not even need this. but the fact that he is actually pretty cute made it, not a total loss! LOL", + "pos": 0.453, + "neu": 0.547, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a459" + } + }, + { + "text": "For starters, I had no interest in this class and I still don't but he made it bearable. He uses powerpoint which tends to be interesting. The tests he gives you are all take home so thats a plus. He assigns about 3-4 major papers and grades them liberally. Not a hard class. Just do the work you're assigned and You'll be fine.", + "pos": 0.106, + "neu": 0.868, + "neg": 0.026, + "_id": { + "$oid": "6711d3a4cd60fca157e5a45a" + } + }, + { + "text": "puts history into perspective. extremely helpful. just do the assigned papers and you should be fine!", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d3a4cd60fca157e5a45b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a5cd60fca157e5a45d" + }, + "professor_name": "Lisa Simon", + "rating": 2.1, + "department": "Education department", + "comments": [ + { + "text": "Be ready to read and write. Lots. Be ready to do your written assignments on pure intuition with direction that are not clear. Try to do it right the first time (ha!)-there certainly will not be any time for a re-write. Ms Simon is a tough grader - so don't expect to be showered in A's, but tons of critique!", + "pos": 0.091, + "neu": 0.864, + "neg": 0.045, + "_id": { + "$oid": "6711d3a5cd60fca157e5a45e" + } + }, + { + "text": "Lisa Simon is one of the toughest, slave-driving professors I've studied under in my 13 years of part time college. While I earned a final grade of a C in this class my midterm grade was an A-. How was this possible? I still don't know. Be careful what you wish for: you may have to take a class with Professor Simon!! (I still think she's HOT!!)", + "pos": 0.038, + "neu": 0.906, + "neg": 0.055, + "_id": { + "$oid": "6711d3a5cd60fca157e5a45f" + } + }, + { + "text": "Worst instructor of my entire academic career. She made me hate going to school. Her instructions were so incomprehensible and garbled that I had trouble understanding what was expected of me. She had personal vendettas with cetain students and abused her power. That she got and maintains this position reflects badly on CCNY.", + "pos": 0.0, + "neu": 0.74, + "neg": 0.26, + "_id": { + "$oid": "6711d3a5cd60fca157e5a460" + } + }, + { + "text": "When I read these comments before taking the course, I was pretty scared, but she is not the same person everyone here described her to be. Yes, she gives A LOT of work, but she was very understanding and fair. I liked her a lot as a person!", + "pos": 0.224, + "neu": 0.742, + "neg": 0.034, + "_id": { + "$oid": "6711d3a5cd60fca157e5a461" + } + }, + { + "text": "I found Professor Simon's class very useful. I have learned a lot and have gotten a lot of useful ideas that I have adopted in my own teaching. There is a lot to be learned from her class,although I must agree that the volume of work is just so much. If you have the time on hand,then go for her class by all means.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a462" + } + }, + { + "text": "I don't find her class terribly useful but I don't find her unbearably difficult to get along with like some other students. Of course, it is early yet. But compared to Norton, she is a dream. She is rather touchy feely, which I'm not into. But, still, better than being tore into like Norton does. I still learn more than I did at Pace.", + "pos": 0.191, + "neu": 0.737, + "neg": 0.072, + "_id": { + "$oid": "6711d3a5cd60fca157e5a463" + } + }, + { + "text": "She is a miserable women who gets joy from being mean. I know exactly who & only who wrote those positive reviews HERSELF!!!! I learned absolutely nothing that I was able to use in my own classroom. Of ALL the classes I have taken this by far was the absolute worst!!!", + "pos": 0.136, + "neu": 0.748, + "neg": 0.116, + "_id": { + "$oid": "6711d3a5cd60fca157e5a464" + } + }, + { + "text": "Unreasonabley demanding. Tons of useless work that really do not help to understand anything. I'm a teacher--in order to keep up with her work, I have become a BAD teacher! A very tough grader, doesn't give an inch. I would NEVER take another class with her. Whoever gave a good eval to her is a masochistice glutton for punishment. Avoid her clas", + "pos": 0.038, + "neu": 0.712, + "neg": 0.25, + "_id": { + "$oid": "6711d3a5cd60fca157e5a465" + } + }, + { + "text": "A mean, narcissistic, disorganized woman who doesn't understand anything about education or human interactions.", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d3a5cd60fca157e5a466" + } + }, + { + "text": "A very mean person. Like a robot. don't take her classes!", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a467" + } + }, + { + "text": "This is my 3rd masters and I have never had a professor I have disliked as much. The work is not that hard but she makes us read compilations of articles that have nothing to do with our work. Her instructions are unclear even though she always gives out tons of handouts. I don't know anyone who didn't hate her class. Who wrote those good evals", + "pos": 0.121, + "neu": 0.82, + "neg": 0.059, + "_id": { + "$oid": "6711d3a5cd60fca157e5a468" + } + }, + { + "text": "She is all about herself. Goes out of her way to be mean. Confuses us about our assignments. Thinks she is better than us. We hate being in her class. Anyone who can drop her classes gets out as soon as they can. She makes you hate going to school. Do not take her classes.", + "pos": 0.045, + "neu": 0.773, + "neg": 0.182, + "_id": { + "$oid": "6711d3a5cd60fca157e5a469" + } + }, + { + "text": "excellent teacher", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a46a" + } + }, + { + "text": "instructions are NOT clear at all. HUGE workload. so make sure you have time.", + "pos": 0.299, + "neu": 0.585, + "neg": 0.116, + "_id": { + "$oid": "6711d3a5cd60fca157e5a46b" + } + }, + { + "text": "Professor Simon is knowledgeable and dedicated. She gives a lot of work. Before taking a class with her, make sure you leave yourself a lot of time to do her assignments.", + "pos": 0.154, + "neu": 0.812, + "neg": 0.035, + "_id": { + "$oid": "6711d3a5cd60fca157e5a46c" + } + }, + { + "text": "If you can avoid taking this class, please do, she gave excessive amount of work. I did learn in her class, but it was too much to absorb and her instructions are mostly unclear and too wordy. She would also throw in extra requirements. All of my classmates that I spoke to including myself were completely burned out and totally dissatisfied.", + "pos": 0.025, + "neu": 0.856, + "neg": 0.119, + "_id": { + "$oid": "6711d3a5cd60fca157e5a46d" + } + }, + { + "text": "As a grad course she is very understanding of the fact that we work and have to come to school after. She is an excellent teacher I am learning a lot in her class. She gets us engaged in class doing fun activities. All you have to do is do her work and you'll get a good grade. Very helpful outside of class.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a46e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3a5cd60fca157e5a46f" + } + }, + { + "text": "Hate the class- dislike the professor! This woman is not passionate about teaching she is obsesses with hearing herself speak. I could tell her a few places to stick her ridiculous point syetem.", + "pos": 0.0, + "neu": 0.669, + "neg": 0.331, + "_id": { + "$oid": "6711d3a5cd60fca157e5a470" + } + }, + { + "text": "This chic is crazy. The amount of work she asks of you during student teaching is ridiculous. She is way to intense about hearing herself speak. \"Who cares your sister lives in CHILE!\" Not a good reason to read a novel. This women needs to get over herself.", + "pos": 0.157, + "neu": 0.716, + "neg": 0.128, + "_id": { + "$oid": "6711d3a5cd60fca157e5a471" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a5cd60fca157e5a473" + }, + "professor_name": "Arthur Spears", + "rating": 2.1, + "department": "Anthropology department", + "comments": [ + { + "text": "Mr. Spears is Anal with capital A. Totally insensitive and seems annoyed when questioned. As head of dept he carrys a chip on his shoulders almost looking down at you. A double standard as he guards his personal life yet his tale is not perfect all in the family. Yet he expects you in class he misses many classes guess he uses his leverage well.", + "pos": 0.029, + "neu": 0.817, + "neg": 0.154, + "_id": { + "$oid": "6711d3a5cd60fca157e5a474" + } + }, + { + "text": "Very monotonous. Not organized at all. He doesn't remember what he says in class vs. what he posts on blackboard about grading policies. He's very rude through E-mail.", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d3a5cd60fca157e5a475" + } + }, + { + "text": "Take diligent notes to do well. His quizzestests are straight from the lecturesnotes. The textbook isn't needed. No papers. I'd take him again just for his \"final words\"something he told us that was not really related to the course but was told because he cared for his students. This class will change the way you view the world.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a476" + } + }, + { + "text": "simple. Study long and hard and you get a good grade. You MUST PAY attention! Skip and take short cuts youre asking for a low grade. A couple of quizzes and 2 exams through the semester. Textbook is optional although you might not need it because what he says will be on test. Oh yeah a couple of readings online. 610 I rate him overall MY OPINION.", + "pos": 0.069, + "neu": 0.822, + "neg": 0.109, + "_id": { + "$oid": "6711d3a5cd60fca157e5a477" + } + }, + { + "text": "Taking a 10000 level class should be pretty easy, but taking it with the Director of the Anthropology Dept. was no where near easy. The Blackboard quizzes were worded in a very confusing way as if he wanted to make students have a hard time taking the test. Also, he spends most of the class time talking about things not related to class topic.", + "pos": 0.108, + "neu": 0.794, + "neg": 0.098, + "_id": { + "$oid": "6711d3a5cd60fca157e5a478" + } + }, + { + "text": "Dont take him! Going into his 101 class I had already taken 3 Anth classes at a prior college. His lectures have nothing to do with the quizzes,(which are a HUGE portion of your grade) are on blackboard, 10 min. long and are made to be tricky and worded very poorly. He doesn't answer questions and will be really annoyed if u ask. stay away!", + "pos": 0.043, + "neu": 0.884, + "neg": 0.072, + "_id": { + "$oid": "6711d3a5cd60fca157e5a479" + } + }, + { + "text": "hes pretty lenient. he makes us take quizzes, short answers, tests on Blackboard, pretty clear teaching", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a47a" + } + }, + { + "text": "One of the worst professors at city college. Made the course material extreamly boring. He took no resposibility for his mistakes. He was absent for 2 weeks and still gave us a test with a substitute. Avoid if possible.", + "pos": 0.0, + "neu": 0.719, + "neg": 0.281, + "_id": { + "$oid": "6711d3a5cd60fca157e5a47b" + } + }, + { + "text": "I took this upper level class as an incoming freshman. Great experience. Was my favorite that semester. Quite technical, more than I expected but the discussions were eye-opening. Work wasn't too bad but time consuming. However, they were needed because the exercises really help you for the final. He's hard of hearing which can be amusing sometimes", + "pos": 0.23, + "neu": 0.747, + "neg": 0.023, + "_id": { + "$oid": "6711d3a5cd60fca157e5a47c" + } + }, + { + "text": "He is a very interesting professor and he teaches well. However, he is very strict when it comes to answering questions. He tends to get very annoyed when you repeat a question he believed he answered already. You either listen to him the first time or ask someone else in the class.", + "pos": 0.089, + "neu": 0.86, + "neg": 0.051, + "_id": { + "$oid": "6711d3a5cd60fca157e5a47d" + } + }, + { + "text": "Spears class is very interesting. He is very knowledgeable and he gives great references. But he is a stickler for following his directions to the LETTER. He does curve grades, but you have to turn in everything on time the way he wants. Remember he's ANAL, but I learned so much from him. And I got an A+.(Although,I got 2 zeros on assigments)", + "pos": 0.069, + "neu": 0.931, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a47e" + } + }, + { + "text": "JUST FOLLOW ALL HIS RULES AND DO AXACTLY WHT IS ASKED OF YOU AND U WILL BE JUST FINE.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a47f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3a5cd60fca157e5a480" + } + }, + { + "text": "Trust me guys this guy will fail u for no just reason. He is very horrible, he thinks he is all that just because he's the chairman. If u r taking him don't expect no good grade, u must be very good to even earn a C. Don't take him thats the best move u can make.", + "pos": 0.176, + "neu": 0.692, + "neg": 0.131, + "_id": { + "$oid": "6711d3a5cd60fca157e5a481" + } + }, + { + "text": "Class was interesting and fun he talked about real society and how it really is class is good he teaches good and helps you, his grading is very strict other then that the class is good", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a482" + } + }, + { + "text": "An interesting class with intersting students. I thought we focused too much on terms and not real world issues. Spears has some good ideas, but he is not sensitive to student needs. He made this girl cry in front of the class and his grading system is crazy - D for format error. I heard he curves the grades - we'll see.", + "pos": 0.077, + "neu": 0.773, + "neg": 0.149, + "_id": { + "$oid": "6711d3a5cd60fca157e5a483" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3a5cd60fca157e5a484" + } + }, + { + "text": "He grades very harshly, head of department of Anthropology, he has been absent to class four times this semester for me (Fall, 2005), number of students dropped the class when the time comes, and well, if you want to pass, make sure you get almost every answer right if he picks on you to answer something, trust me he picks on students, literally...", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a485" + } + }, + { + "text": "Worst teacher in city college. Impossible grading. Highest grade was a D and that was coming from a straight A student. Spare yourself the disappointment.", + "pos": 0.061, + "neu": 0.703, + "neg": 0.236, + "_id": { + "$oid": "6711d3a5cd60fca157e5a486" + } + }, + { + "text": "Don't ever take it!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3a5cd60fca157e5a487" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a6cd60fca157e5a489" + }, + "professor_name": "Jack. Janeksela", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "Ms.J had screaming insult matches that she started with students. I've never seen anything like it. I paid a lot of money to be there and It felt like the set of Jerry Springer. Extremely unprofessional environment. You will feel more comfortable and learn more with another professor.", + "pos": 0.102, + "neu": 0.704, + "neg": 0.194, + "_id": { + "$oid": "6711d3a6cd60fca157e5a48a" + } + }, + { + "text": "She is extremely arrogant. It seems like she picks on a couple of students in the class from some unknown reason. I did not enjoy her class because of this.", + "pos": 0.07, + "neu": 0.758, + "neg": 0.172, + "_id": { + "$oid": "6711d3a6cd60fca157e5a48b" + } + }, + { + "text": "If you want to learn, take her. If you want an easy A, don't bother. She teaches a lot of stuff, has SUPER high expectations, expects you to know everything before coming to class, leaves a lot of homework and a lot of class discussions. Good side? If you work had, you'll learn and have a good grade. She's fun and teaches in a very interesting way.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a48c" + } + }, + { + "text": "NOTE: ENGL 110 is now incorporated into FIQWS 10026 (Freshman Writing). Ms. J is the most chill professor I had at CCNY. Great readings, great class discussions, and thought-provoking papers. She made my first semester at CCNY enjoyable. She even baked for us at the end! I have nothing negative to say about this professor. She is the best.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a48d" + } + }, + { + "text": "This course is an open discussion class about bizarre topics(anti-government,drugs and veganism).There is also a meditation session.It is defiantly an unusual class.Miss J teaches absolutely no writing skills.Assignments are not being discussed sufficiently.NOT an Easy A!!If you want to improve your writing skills then i would NOT recommend Miss J.", + "pos": 0.155, + "neu": 0.728, + "neg": 0.117, + "_id": { + "$oid": "6711d3a6cd60fca157e5a48e" + } + }, + { + "text": "She is not that easy. Her class is fun. But it's not an easy A. She is a little cocky and she thinks she's like a big shot or something. However I will not recommend her. And she got some attitude problem as well. And that's what bothered me a lot.", + "pos": 0.123, + "neu": 0.643, + "neg": 0.234, + "_id": { + "$oid": "6711d3a6cd60fca157e5a48f" + } + }, + { + "text": "A little intimidating at first but it turned into a fun class. Not much readings, not much papers, easy grader, class discussion all the time so participation is a must. Do what you are supposed to do and you will be set. Last class project/presentation was 30% but fun. Got an A+ in the class and I'm not THAT good of a writer.", + "pos": 0.119, + "neu": 0.774, + "neg": 0.107, + "_id": { + "$oid": "6711d3a6cd60fca157e5a490" + } + }, + { + "text": "I absolute ly love Miss J she is real, straight forward, hard on you in the sense that she wants you to suceed and fun teacher. she cares about every student in her class. her work is not hard if you do it and do it on time. This will get you an A. About 3 to 4 papers a semester on real interesting stuff. I took her twice and would take her again.", + "pos": 0.227, + "neu": 0.739, + "neg": 0.034, + "_id": { + "$oid": "6711d3a6cd60fca157e5a491" + } + }, + { + "text": "awesome teacher. take her class!", + "pos": 0.523, + "neu": 0.477, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a492" + } + }, + { + "text": "I took her for Writing for Engineers and she was fantastic. The topics of discussion are eye opening and interesting. The class is an easy A, as long as her simple instructions on class sucess is followed such as homework, reading, and such. This class is memorable and great on the transcript because it is in fact... an easy A.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a493" + } + }, + { + "text": "PROFFESOR J WAT CAN I SAY?? SHE IS THE BEST PROFESSOR I HAD IN CCNY SHE IS VERY FLEXIBLE WITH HER STUDENTS THAT IS BECAUSE SHE LOVE THEM AND SHE LOVES HER JOB, SHES ENTERTAINING SHE KOOL SHE LISENS TO ANYTHING YOU HAVE TO SAY ABOUT ANYTHING MS J WILL SEND YOU EMAILS TO UPDATE YOU ON EVRYTHING ALMOST EVRYDAY SO THAT IS WHY I DIDNT EVEN HAAVE TO LOOK", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a494" + } + }, + { + "text": "She is the best professor I have ever had. She lays out her curriculum on the first day and if you follow it, believe me, it's an easy A. She guides you every step of the way and is available for additional help in her office. She loves teaching this class, although it was her first time teaching this semester. You learn unknowingly as its fun.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a495" + } + }, + { + "text": "BEST PROFESSOR YOU CAN EVER TAKE!! She cares about all your assignments and also guides you through making sure you are prepared to do well on all the assignments. I HIGHLY RECOMMEND HER!!.....brief, concise, precise, and straight to the point!! Special tips to do well in her course?it never fails?... :)", + "pos": 0.406, + "neu": 0.559, + "neg": 0.035, + "_id": { + "$oid": "6711d3a6cd60fca157e5a496" + } + }, + { + "text": "She attempts to come off mean simply to compensate for how laid back and easy her course really is. She is actually extremely helpful and tries to teach material thats both relevent to engineering and interesting; in that hippy english teacher kind of way. I found her class a major benefit to my engineering studies and highly recommend her.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a497" + } + }, + { + "text": "I havent had not one teacher(2-3 years in ccny) that cares for her students like she does. I recommend her to everyone, over tally if you have to(like I luckily did).The class itself isn't easy, so don't think its an easy A. She teaches a lot, but never allows it to get boring. Be brief and concise in your papers, and you'll do good!", + "pos": 0.185, + "neu": 0.753, + "neg": 0.063, + "_id": { + "$oid": "6711d3a6cd60fca157e5a498" + } + }, + { + "text": "She is young, and smart, and very beautiful. I have had her for writing for eng.'s. she is The best english teacher at ccny because she explains every concept right down to the last detail. She really cares for her students, and is willing to help if you are in trouble with a topic. when you graduate, she will be one of the few teachers u rememb", + "pos": 0.211, + "neu": 0.755, + "neg": 0.033, + "_id": { + "$oid": "6711d3a6cd60fca157e5a499" + } + }, + { + "text": "Good professor.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a49a" + } + }, + { + "text": "At first she can come across as abbrasive/mean but once you get to know her she becomes more likeable. Alot of small papers but easy grade. Her demeanor is not typical of a professor, could use some work there but do the work on time and go to class for a good grade. She was much better than the Head professor", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a49b" + } + }, + { + "text": "SHE IS VERY HELPFUL. AT THE BEGINNIG OF THE SEMESTER SHE GIVES YOU WORK TO DO AND H.W EVERYDAY BUT, AS DAY PASS SHE BECOME MORE FRIENDLY AND ENTERTAINMENT FOR THE CLASS. SHE IS VERY GOOD PROFESSOR BUT, WILL PISS OFF IF YOU MESS WITH HER. BOTTOM LINE SHE IS THE BEST PROFESSOR IN ENGLISH DEPERTMENT.", + "pos": 0.273, + "neu": 0.638, + "neg": 0.089, + "_id": { + "$oid": "6711d3a6cd60fca157e5a49c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3a6cd60fca157e5a49d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a6cd60fca157e5a49f" + }, + "professor_name": "Douglas Achan", + "rating": 3.1, + "department": "Chemistry department", + "comments": [ + { + "text": "loved this professor. really miss him leaving city college. all good profs leave this place!! he was passionate about science and inspirational.", + "pos": 0.425, + "neu": 0.482, + "neg": 0.093, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a0" + } + }, + { + "text": "He's not that bad. He's a bit of a disorganized professor but he has all the right intentions for his students. He's a really great teacher.", + "pos": 0.246, + "neu": 0.705, + "neg": 0.049, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a1" + } + }, + { + "text": "Prof. Achan is kind of disorganized. He is not very active online to post homework notes or answer questions from student on time. But I know he try to make test easy. It is very similar to the quiz and worksheet. You have to study and practice the similar question over and over again. It is Chemistry,", + "pos": 0.063, + "neu": 0.88, + "neg": 0.057, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a2" + } + }, + { + "text": "I DON'T KNOW WHY HE IS NOT IN CITY COLLEGE NEXT SEMESTER, BUT HE IS REALLY A GOOD CHEMISTRY PROFESSOR COMPARE TO OTHERS. HIS EXAMS IS VERY SIMPLE AND PREPARE YOU FOR THE FINAL.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a3" + } + }, + { + "text": "He is an disorganized professor. He gives homework after you had taken the test. He told us the date of the final 2 days before the exam. His lectures are unclear, so you have to rely on your own and the workshop leader.", + "pos": 0.0, + "neu": 0.907, + "neg": 0.093, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a4" + } + }, + { + "text": "Do yourself a favor and not take him. Guaranteed he'll ruin your grade.", + "pos": 0.154, + "neu": 0.629, + "neg": 0.217, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a5" + } + }, + { + "text": "He does not prepare you for difficult CCNY finals as his in class exams are too easy. He devotes 30 points out of every exam to pointless multiple choice theory questions. Don't take him if you want to actually learn practical, problem solving chemistry. He is very disorganized outside of class and handed exams weeks later. Not good at teaching.", + "pos": 0.129, + "neu": 0.729, + "neg": 0.142, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a6" + } + }, + { + "text": "I do not care he is everything you can ask for. His lectures maybe boring but he makes the exams so easy. If you do the problems in the textbook a guaranteed A. The work you put in is the grade you receive with him. I would def take him again because he really wants everyone to pass", + "pos": 0.077, + "neu": 0.817, + "neg": 0.106, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a7" + } + }, + { + "text": "CONS: You will NOT learn anything from his lectures. Lectures FAST, wont be able to grasp anything. Preaches more than he teaches. Acts as if everyone is a chem major and knows these stuff. HARD + UNFAIR TESTS. Gave homework that was due 2 days before the FINAL. Told us the date and time of the final 2 days prior", + "pos": 0.0, + "neu": 0.907, + "neg": 0.093, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a8" + } + }, + { + "text": "Final was on 5/26, he didn't say anything until 5/24 at 9:58 pm. Entire class had to contact other professors for answers. Stopped assigning online hw half way through the semester, because \"too busy\". Exams have obscure questions, format changed completely on the final. Prepare for the worst, and he will shatter your worst expectations", + "pos": 0.0, + "neu": 0.837, + "neg": 0.163, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4a9" + } + }, + { + "text": "Mr. Achan is amazing. An extremely smart man with such a profound passion for Chemistry. He's a really great professor and very helpful. Please take him if you ever get the chance.", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4aa" + } + }, + { + "text": "You have to rely own your own if u want to do good in this class. It is possible to get an A/A- for this class just gotta do a lot of practice problems and self study a lot.", + "pos": 0.098, + "neu": 0.839, + "neg": 0.063, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4ab" + } + }, + { + "text": "Pros: Nice/helpful during office hrs. Generous with partial credit. Cons: Assigns ch 15-17 of online hw 3 days before the exam on those chapters, great role model for cramming. Teach yourself. Exams are multi choice + word problems. Multi choice have rly obscure questions. Pts get taken off if answer is too thorough/don't match his wording.", + "pos": 0.155, + "neu": 0.804, + "neg": 0.042, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4ac" + } + }, + { + "text": "Here is what you need to know about Achan. If you have no other choice and you have to take him, do so with the expectation of never attending lectures and teaching yourself. You do not need to go to lecture to pass the class but be prepared to read. He grades pretty fairly on tests and gives a lot of partial credit.", + "pos": 0.142, + "neu": 0.835, + "neg": 0.023, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4ad" + } + }, + { + "text": "Achan is very nice and cool. His exams are fair; they cover the material you need to know. However, he's very disorganized both with his lectures and with his grading. You'll need the help of your TA's to pass the class. Do as many practice problems as you can, and expect to self-teach often.", + "pos": 0.167, + "neu": 0.752, + "neg": 0.081, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4ae" + } + }, + { + "text": "Don't expect to learn in this class. You literally have to teach yourself the material or have study groups in order to pass this class. His lectures are mostly useless and hardly anyone attends since he is very disorganized. The notes he has makes both the students and himself confused. He is unhelpful and does not give back grades quickly.", + "pos": 0.0, + "neu": 0.882, + "neg": 0.118, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4af" + } + }, + { + "text": "Being punctual is not his game, he can teach (sorta) not the best but not the worst, he can get off track a lot, he is not organized AT ALL. Recently new teacher that easily loses focus. Use the textbook, online help and group study to pass his tests and the final. Don't expect him to reply back soon, he takes his good time for everything.", + "pos": 0.187, + "neu": 0.751, + "neg": 0.063, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b0" + } + }, + { + "text": "A bit scattered, not great at returning e-mails, top 20% A but his ambivalence towards curve left many of us unclear on our grade...**BUT, take him!, he's a great person, wants everyone to succeed, fair tests, and hes extremely welcoming for office hours. He puts a lot of thought into his slides, study those hard and end of chapter questions.", + "pos": 0.245, + "neu": 0.674, + "neg": 0.081, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b1" + } + }, + { + "text": "Just study slides and watch videos, and you will do well in his class. Biochemistry is a tough course so you have to do LOTS OF INDEPENDENT STUDY OR GROUP STUDY in order to perform well. His exams are super fair compare to other exams from other biochemistry professors. He can be scattered at times but overall he means well and shows empathy.", + "pos": 0.145, + "neu": 0.837, + "neg": 0.018, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b4" + }, + "professor_name": "David Stoler", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "As a person, Stoler is very funny and kind however I found it difficult to have him as a professor. He doesn't do a good job at explaining the work and gets sidetracked very easily. Most classes get filled up with his random inspirational stories(that also didn't make sense). I feel like many in the class were always left confused.", + "pos": 0.206, + "neu": 0.697, + "neg": 0.097, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b5" + } + }, + { + "text": "Always answers questions. if you put in the effort, he will acknowledge ur hard work. Always communicate with him and he will help u out. Flexible with deadlines.", + "pos": 0.148, + "neu": 0.806, + "neg": 0.045, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b6" + } + }, + { + "text": "There's 4 major papers/assignments, with smaller ones sprinkled in obviously. The first 2 are easy. The third one is a research paper, which is a bit harder, but he explains it in depth and answers ALL questions you might have. The last one is a group project, which honestly, is a drag. Would've gave the class a 2 difficulty if not for this project", + "pos": 0.083, + "neu": 0.84, + "neg": 0.076, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b7" + } + }, + { + "text": "One of the best professors I have had in this college.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b8" + } + }, + { + "text": "he is funny i guess but he has this weird thing where he picks on certain kids for no reason? he is also weirdly obsessed w/ using pathos (descriptive intros using physical events to grab attention) in your papers, which is an absolute pain. also made us interview someone for an assignment, and that rly sucked during a pandemic \ufffd\ufffd solid choice tho", + "pos": 0.082, + "neu": 0.684, + "neg": 0.233, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4b9" + } + }, + { + "text": "He's amazing. TAKE HIM. He is the best professor ever. He is so funny and caring. He will help you out if you struggle with something.", + "pos": 0.445, + "neu": 0.497, + "neg": 0.057, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4ba" + } + }, + { + "text": "Unlike my other Professors, Professor Stoler didn't bombard me with assignments. Also, he was generous with extensions if we asked for them. Even though english has nothing to do with my major(Computer Science), I still put in the effort to learn the material.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4bb" + } + }, + { + "text": "He is super great. His goal is to genuinely teach you how to write effectively and how to not dread doing assignments. He does give a few papers, but they're super easy. He teaches you how to do them during class time, so doing them at home is not hard at all. He is definitely super caring, and his feedback is so so helpful. He's super cool & funny", + "pos": 0.479, + "neu": 0.521, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4bc" + } + }, + { + "text": "Professor Stoler was the best professor I had. With him, you will learn to love writing essays. He gives good feedback and his grading system was really good. Make sure you submit papers on time and even if you don't send him an email with a reason and he will let it slide. Honestly, the best and highly recommend if you want to pass the class.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4bd" + } + }, + { + "text": "The best English professor ever. Gives useful feed back. There is no way you can hate his class. Very funny. Never a dull moment. He knows how to teach. Easy grader and lots ok f feedback. You cannot go wrong with this guy. The absolute best.", + "pos": 0.368, + "neu": 0.543, + "neg": 0.089, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4be" + } + }, + { + "text": "I highly recommend taking his class because it's an easy A and you will learn a lot. You can tell his loves his job and teaches you how to write clearly. Moreover, he's very generous with his time. He even gave me feedback on my resume. Just pick a topic you like at the start of class b/c you have to write about all semester.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4bf" + } + }, + { + "text": "This was my first semester of college and I was nervouse because I hate English, I hate essays, and etc. This was the best professor I had so far. Hes nice and caring he teaches well and if your confused dont hesitate to ask. Definitely Recommend Him", + "pos": 0.295, + "neu": 0.558, + "neg": 0.146, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c0" + } + }, + { + "text": "He is a very easy going professor who cares about his students. He always gives students extra credit for their writings and is very cooperative outside of class.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c1" + } + }, + { + "text": "One of the most easygoing teachers you'll receive. He literally shortens every assignment and makes it almost impossible to not earn an A+.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c2" + } + }, + { + "text": "AWESOME PROFESSOR, SUPER EASY CLASS. TAKE HIM", + "pos": 0.732, + "neu": 0.268, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c3" + } + }, + { + "text": "The course consisted of three major assignments. We also wrote some poetry and did some smaller assignments. There were no midterms or finals. He is very understanding, only thing is he doesn't like late assignments or lateness in general. If you have a personal issue and you speak to him about I'm sure he will understand. 100% recommend this class", + "pos": 0.074, + "neu": 0.86, + "neg": 0.066, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c4" + } + }, + { + "text": "Professor Stoler is by far the best professor I have had at CCNY. He's a humorous guy who you'll learn a lot from. It's always an interesting time in class!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c5" + } + }, + { + "text": "Regardless of what the class is, he knows how to make it an interesting experience, just don't be late. Not only is he admirable but he's also an interesting and inspiration person. The absolute sweetest professor I've ever met. He'll teach you how to be passionate about writing. Most importantly, he'll teach you what good writing actually is.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c6" + } + }, + { + "text": "Prof. Stoler is an amazing person and teacher and I recommend him to anyone, regardless of what class he's teaching. He's very caring and receptive to the feedback of his students and does his best to accommodate us. If you show up to class and do the work as expected, it's an easy A/B+ ! Listen to him, everything he says is worthwhile.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d3a6cd60fca157e5a4c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a7cd60fca157e5a4c9" + }, + "professor_name": "Jane Shmidt", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "Dr. Shmidt is amazing! She makes the class and readings interesting. It was a lot of reading for a summer course but she was understanding. Definitely would take her again.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4ca" + } + }, + { + "text": "Dr. Shmidt is a brilliant, compassionate, and thoroughly engaging professora veritable example of what professors should resemble! Her empathic and very passionate lectures lead to my desire to further pursue literature. A boon to the City College of NY community and academia, overall.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4cb" + } + }, + { + "text": "She is very caring towards her students and has a clear grading criteria. She helps you through out your homework and essays and makes the class stress free. You definitely have to read but she makes that fun too. Take her and you wont regret it.", + "pos": 0.302, + "neu": 0.664, + "neg": 0.033, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4cc" + } + }, + { + "text": "She's super nice. Three easy papers. Just make sure you read everything she assigns.", + "pos": 0.543, + "neu": 0.457, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4cd" + } + }, + { + "text": "Professor Shmidt left a good impression for my first semester of college. She is not only the sweetest person I've ever had the pleasure to be taught by, she is very helpful, her class is enjoyable and she makes sure you understand the lecture and readings. She did not disappoint.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4ce" + } + }, + { + "text": "She is an excellent professor who is very kind and very good at teaching the subject, which is clearly something she has much passion for. She's a very fair grader and is very helpful when giving feedback. I would highly recommend her to anyone, and I'd even like to have her again for another class as well if possible. Readings were not very heavy.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4cf" + } + }, + { + "text": "Great Professor! She is a true master of her craft. She respects your opinion and you leave the classroom each day with a true understanding of the readings. It almost seems as an honors course because she is that great at what she does. The work seems a bit difficult, but it really isn't. Once you talk about the readings, it all comes together.", + "pos": 0.181, + "neu": 0.779, + "neg": 0.04, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d0" + } + }, + { + "text": "Okay so I'm not going to lie there's lots of reading involved in this class but almost every read is pretty interesting. Professor Shidmt is young,intellectual and witty! She really knows her stuff. I really enjoyed her lectures and the time went by fast usually. Expect homework due every day you have class, they're all about the readings.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d1" + } + }, + { + "text": "Easily one of the best Professors in City College. She's understanding and will push you if she sees that you're not giving it your all in her class. Helps that she's young and could inject energy into some of the dead boring concepts and readings taught. Take her!", + "pos": 0.189, + "neu": 0.67, + "neg": 0.141, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d2" + } + }, + { + "text": "She is an awesome teacher. Very passionate about her subject and is great at conveying the info. If you do the work and pay attention, you'll do well.", + "pos": 0.364, + "neu": 0.599, + "neg": 0.036, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d3" + } + }, + { + "text": "She is a great choice!", + "pos": 0.523, + "neu": 0.477, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d4" + } + }, + { + "text": "Take another professor if you can...you would just be frustrated in class if you take a course with her.", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d5" + } + }, + { + "text": "I love this professor. she is awesome her teaching actually makes you want to come to class. I never thought i would say that english 331 is an easy class. she is just great and extremely helpful. she knows her stuff and will make sure that you understand before jumping into the next topic. take her and you won't regret.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d6" + } + }, + { + "text": "She is the best professor I ever had. I loved attending her classes. She gave me a lot of confidence to speak up in the class. I really miss her this semester. Read all the assigned readings and come to class. Participate in the class discussions. You will never want to miss a single class.She is an amazing professor.It's a loss if you miss her.", + "pos": 0.209, + "neu": 0.703, + "neg": 0.088, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d7" + } + }, + { + "text": "Very nice woman. Participate, put forth some effort on your papers and you will get an A. She is always willing to help if help is needed.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d8" + } + }, + { + "text": "Great professor, makes the class fun. Just do the readings and you'll be fine.", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4d9" + } + }, + { + "text": "I loved this class very much. Because of this class, I am taking another WHUM this Spring.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4da" + } + }, + { + "text": "Very beautiful, made class worth staying awake for ;-)", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4db" + } + }, + { + "text": "Really enjoyed coming to her class!", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a7cd60fca157e5a4de" + }, + "professor_name": "Michael Hickerson", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "Terrible", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4df" + } + }, + { + "text": "This man is so sweet and such a gem. Exams directly verbatim from slides (memorize them!!) and rest of grade is up to lab. Other than that, Mike is so sweet funny and nice! Take him!", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e0" + } + }, + { + "text": "I love him, 8am lectures and I still went everytime. Genuinely the best professor I have ever had. If you have the chance to take him especially for this course please do it. Exams strictly from the slides which I liked, made it easy to study. 10/10 Professor no complaints", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e1" + } + }, + { + "text": "His exams are extremely hard with terrible wording and there is no resource to prepare you for them. He spoke really fast at lecture so good luck keeping up coz he covers a lot of slides a day", + "pos": 0.148, + "neu": 0.698, + "neg": 0.153, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e2" + } + }, + { + "text": "Memorize the powerpoints inside out and take notes in his class. Exams have a lot of information and requires heavy memorization, but overall he's a very fair professor and easy-going", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e3" + } + }, + { + "text": "awesome class, awesome instructor! Exams are hard but you'll be OK if you know the power points inside and out.", + "pos": 0.351, + "neu": 0.604, + "neg": 0.045, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e4" + } + }, + { + "text": "Passionate and knowledgeable about biology/ecology. His powerpoint/pdf lectures were really good, and his exams are based 100% on the lectures. Take notes during lecture, because some questions will be based on discussions in class. He is super chill, very helpful during office hours even though he is often busy.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e5" + } + }, + { + "text": "He was a huge help in getting me started on a huge project that i've been putting off. The background material was spot on and he is very passionate and excited about his work, sometimes leading to getting distracted during the lectures and discussions. The class was fun and interesting with some insights that will stick.", + "pos": 0.281, + "neu": 0.685, + "neg": 0.034, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e6" + } + }, + { + "text": "very useful class", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e7" + } + }, + { + "text": "This guy was awesome, really solid. Tough exams but you'll be OK if you study the lecture materials.", + "pos": 0.339, + "neu": 0.601, + "neg": 0.06, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e8" + } + }, + { + "text": "He was a little scattered but is great once you get used to him. Study the lecture notes and you will be fine", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4e9" + } + }, + { + "text": "Tough exams, ouch! But h is very understanding and sympathetic towards his students. A really funny guy and great professor.", + "pos": 0.466, + "neu": 0.495, + "neg": 0.039, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4ea" + } + }, + { + "text": "Hilarious guy!, and the class was very interesting and a lot of fun. The exams are really hard, but you'll be OK if you study the lectures.", + "pos": 0.304, + "neu": 0.656, + "neg": 0.04, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4eb" + } + }, + { + "text": "He is a really nice professor. He is very helpful. He has office hours. Exams are not too hard. Mostly from slides and lecture. He curves really good. First exam 68 was a B grade so that was a crazy curve. He really loves what he does and his research is interesting. Always willing to help students outside of class. Overall he is a very good prof.", + "pos": 0.278, + "neu": 0.693, + "neg": 0.029, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4ec" + } + }, + { + "text": "Although his exams are really really hard, his research is cool and he is a great nice guy who wants to help you.", + "pos": 0.373, + "neu": 0.565, + "neg": 0.062, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4ed" + } + }, + { + "text": "I took Bio 228 with him, and I thought it was a good class. His exams were straight forward from his lectures. Never had to touch thebook. His slides had everything on it. If you want to do good in his class study the slides and pay attention to what he points out to be importang from them because that will be on the exam. He curved the first exam", + "pos": 0.119, + "neu": 0.862, + "neg": 0.019, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4ee" + } + }, + { + "text": "He is a new professor so he still does not have everything organize and up to date. So the class is usual a mess when it comes to lectures.", + "pos": 0.0, + "neu": 0.918, + "neg": 0.082, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4ef" + } + }, + { + "text": "Questions were not specific. People say it was an easy class compared to other biology classes but that was not true for his case. I got A's in 207 and 229 and he brought down my science GPa because he have me a B.", + "pos": 0.042, + "neu": 0.895, + "neg": 0.064, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4f0" + } + }, + { + "text": "Just take really good notes in lecture. No need for textbook. He's very sloppy and dirty looking (not to be mean). Exams are just weird, but not hard. One time there was wrong information from a molecular biologist point, but what does he care, he's an ecologist. Didn't curve, when he should've. It's an OKAY class. He needs to improve his skills.", + "pos": 0.196, + "neu": 0.685, + "neg": 0.119, + "_id": { + "$oid": "6711d3a7cd60fca157e5a4f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a8cd60fca157e5a4f3" + }, + "professor_name": "Raquel Bibi", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "This professor is amazing, she cares her class and her students. So much respect for her, I never turn off my cellphone but I always did so in her class. Take her, you have so much to learn from her. Do your readings, take notes and study your notes and you will be fine. I recommend her for experimental.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4f4" + } + }, + { + "text": "Wonderful Professor who is well versed in her subject matter and is also completely passionate about her life's work in the field!!! I would take her again in a heartbeat!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4f5" + } + }, + { + "text": "She is a very eccentric person. She often gets off topic and goes off on a tangent. Don't let this fool you into thinking she is a bad teacher. She is highly educated and is extremely interested in making sure that her students understand the material and prosper. Unlike other instructor that teach because it is their job, she actually cares.", + "pos": 0.117, + "neu": 0.787, + "neg": 0.097, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4f6" + } + }, + { + "text": "Bibi is very friendly and approachable. She tried her best to make the class go by easily, Experimental is just a difficult subject. Anyway, just requires a lot of practice. Don't be alarmed if you have her for a class, consider it a blessing. She gives so many chances to boost your grade.", + "pos": 0.297, + "neu": 0.666, + "neg": 0.037, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4f7" + } + }, + { + "text": "She speaks very quickly but she will take the time during class to make sure you understand the material. She can get distracted at times, but overall very helpful to students and wants to see them do well. Very caring professor.", + "pos": 0.27, + "neu": 0.672, + "neg": 0.058, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4f8" + } + }, + { + "text": "She is a great professor. She makes sure her students understand the topic before moving on. She cares about her students - sometimes too a flaw. Show up to her lectures, do HW, and you will do great. She give many chances to help your grade.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4f9" + } + }, + { + "text": "Awesome!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4fa" + } + }, + { + "text": "Her exams are pretty straight forward. She gives a lot of extra credit in exam and homework. Only thing I didn't like about her is that she is unorganized and talk about unnessery things. She can be really confusing. You will be fine if you read the text book. Book is much clear than her lecture. Be prepare for her class because she gives quiz every day", + "pos": 0.158, + "neu": 0.785, + "neg": 0.056, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4fb" + } + }, + { + "text": "The only reason i wouldnt say shes a horrible professor is because she cares about her students and appreciates initiative. BUT i would not recommend her, and i wish i had another prof. she talks really fast and too much, goes off topic and just really random. You end up teaching yourself take someone else if you can.", + "pos": 0.117, + "neu": 0.808, + "neg": 0.075, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4fc" + } + }, + { + "text": "Good and hot. Her exams are not too hard. She has a very friendly and bubbly personality which is a good thing. I enjoyed coming to all her lectures.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4fd" + } + }, + { + "text": "It is true that she's kind of cute. She makes you work hard. She gives exams, weekly h.w. (which is extremely irritating to do), and quizzes everyday. Her questions on the exams and quizzes are quite tricky. You got to think outside of the box. She is always smiling and happy which is a good thing. Overall a very nice professor.", + "pos": 0.237, + "neu": 0.677, + "neg": 0.086, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4fe" + } + }, + { + "text": "As long as you do the assigned reading and the homework and attend class anyone can do good in her class.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a4ff" + } + }, + { + "text": "shes a good professor. She's very clear about what she expects. Her exams are very straight forward. She grades very fair. I would recommend her.", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a500" + } + }, + { + "text": "Great Professor. She made class interesting and she is funny.I was worried about taking stats and didn't think I would do so well but I actually got an A. The lectures are clear and she is very willing to help students. As long as you read the notes, come to class, and do the homework, you will do good in the class. She also gives extra credit home", + "pos": 0.253, + "neu": 0.728, + "neg": 0.019, + "_id": { + "$oid": "6711d3a8cd60fca157e5a501" + } + }, + { + "text": "Hi, Tabby here, Wow I love this teacher! She is so helpful and caring, you will never feel left out.I left this class wanting more Statistics in my life. I hope she continues to teach this course because it will help them with Experimental.Before the class I was hoping for a B but I got an A.Just take her you'll love her funny jokes about her life", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a502" + } + }, + { + "text": "Great teacher, presents the information clearly, she is will to help any student out no matter their grade, she often goes out of her way to help students. Highly recommend professor, wish she was teaching PSY321 or other classes.", + "pos": 0.352, + "neu": 0.627, + "neg": 0.021, + "_id": { + "$oid": "6711d3a8cd60fca157e5a503" + } + }, + { + "text": "Incredible teacher! Funny, clear, and amazingly helpful. I was afraid of math my whole life until I took Dr. Bibi's class. She makes statistics so fun and interesting, and she show how to apply the stuff to real life. Her tests are hard, but she tells you exactly what's going to be on it. She's also incredibly sexy!", + "pos": 0.238, + "neu": 0.745, + "neg": 0.018, + "_id": { + "$oid": "6711d3a8cd60fca157e5a504" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3a8cd60fca157e5a505" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a8cd60fca157e5a507" + }, + "professor_name": "Lindsay Parme", + "rating": 4.6, + "department": "Anthropology department", + "comments": [ + { + "text": "Parma is great! I took her for urban anthropology and she makes class interesting and engages the class with documentaries. She gives review sheets before the midterm where you can bring a one page cheat sheet to the test. The final was a paper. She was great and I would take her again. Should be an A.", + "pos": 0.193, + "neu": 0.763, + "neg": 0.044, + "_id": { + "$oid": "6711d3a8cd60fca157e5a508" + } + }, + { + "text": "Great professor, gives you review guides for all tests in class. Study them, and you're guaranteed an A in the class. The readings for the class are very interesting, you'll learn some weird things,haha.", + "pos": 0.178, + "neu": 0.779, + "neg": 0.043, + "_id": { + "$oid": "6711d3a8cd60fca157e5a509" + } + }, + { + "text": "Adjunct professor who teaches at Brooklyn College now. She's pretty easy and makes the class enjoyable. There's lots of class discussion and she shows great documentaries. She also posts all the readings on blackboard.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a50a" + } + }, + { + "text": "She's extremely nice , but very monotone and confusing . Anthropology is so interesting, but I wasn't at all motivated to pay attention to her lectures . Easy A", + "pos": 0.258, + "neu": 0.558, + "neg": 0.184, + "_id": { + "$oid": "6711d3a8cd60fca157e5a50b" + } + }, + { + "text": "Professor Parme is AMAZING! She really makes you think and the articles she chooses will make you really want to start up a conversation. Never a dull moment in class, never judged others for their opinions even when they said crazy things that made no sense. Loved this class, would take it 100 times.", + "pos": 0.135, + "neu": 0.745, + "neg": 0.12, + "_id": { + "$oid": "6711d3a8cd60fca157e5a50c" + } + }, + { + "text": "Awesome professor. Lindsay is real down to earth and is passionate about anthropology. She connect modern social problems and teaches us how to use anthropology to study intersectionalty between race, class, gender. Learned so much I never knew about New York by watching the Central Park 5 documentary for her class.", + "pos": 0.129, + "neu": 0.825, + "neg": 0.046, + "_id": { + "$oid": "6711d3a8cd60fca157e5a50d" + } + }, + { + "text": "She is very easy going and the material is explained very well. Review sheets are given for the midterm and final, and the session before the tests are reviews. There are readings for most classes, not overly long and they are interesting. Would recommend anyone to take this class.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a50e" + } + }, + { + "text": "Professor Parme is the sweetest soul! She is so helpful and has a great personality. Her class is fun because she ties it in with real life situations. All slides are on BB, she posts exam reviews and does study review sessions in class too. She only assigns two papers, the midterm and final. Would definitely take this class again with her!!", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a50f" + } + }, + { + "text": "Prof. Parme is a grad student so she's not exceptionally tough on the class, but still maintains clear expectations of her students. She posts her lectures to blackboard and even uploads exam/final review sheets and does in-class review. Expect to do the assigned readings, and pay attention to in-class documentaries as she tests you on them!", + "pos": 0.084, + "neu": 0.889, + "neg": 0.027, + "_id": { + "$oid": "6711d3a8cd60fca157e5a510" + } + }, + { + "text": "Mrs Parme is a really awesome teacher. I highly recommend taking her. Just don't grade grub in class, because she'll make you write an essay about dignity. Otherwise, 10/10, would bust again.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a511" + } + }, + { + "text": "Prof Parme is super laid-back, maybe a little too lax... It's an easy A. She posts all the powerpoints, articles, and test reviews (which are the same as the questions on the tests) on BlackBoard. The articles are really interesting and of real-life situations locally or from around the world.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a512" + } + }, + { + "text": "Incredible, really an awesome and inspiring professor. Very honest grader and really cares.", + "pos": 0.614, + "neu": 0.386, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a513" + } + }, + { + "text": "Lindsay is the best. She makes anthropology really interesting. Wish she taught other classes because I'd take her again.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a514" + } + }, + { + "text": "Professor Parme is amazing. Take her if you get the opportunity. She ties in studies of Anthropology with real life situations. She is an adjunct professor, who is very kind and sweet, with a great personality to boast. She is very understanding, easy tests, and little to no homework or papers. Easy class, passionate about what she teaches!", + "pos": 0.35, + "neu": 0.625, + "neg": 0.025, + "_id": { + "$oid": "6711d3a8cd60fca157e5a515" + } + }, + { + "text": "Lindsay was such an awesome professor. Great class discussion. Reasonable tests and homework. Easy going in the classroom and pretty easy on the eyes also. I would definitely recommend her class.", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a516" + } + }, + { + "text": "Prof Parme is very approachable and helpful. She kept the class interesting - would definitely take classes with her again!", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a517" + } + }, + { + "text": "Very open minded class discussions and the lectures are very interesting. She is very easy going and will help you in any way possible. Make sure to do all the assignments and study the lectures for an easy A.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a518" + } + }, + { + "text": "I took Prof Parme at CSI-I'm now in my 3rd semester and she's still the best professor I had! Her lectures are memorable and eye opening. She has a very easy going personality which I believe makes her a humble professor. It was easy for her to connect with students with open class discussions. Want an amazing learning experience? -She's it!", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d3a8cd60fca157e5a519" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a9cd60fca157e5a51b" + }, + "professor_name": "Ayman Zeidan", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "He is absolutely amazing. I love this guy so much. Just pay attention, follow his protocols of quizzes/exams/hw/projects, and you will be fine. If you are struggling, ask him for help or get tutoring. One of my favorite thing in this class is that for the project, we have to create an Android App and we have to demonstrate how it works.", + "pos": 0.237, + "neu": 0.705, + "neg": 0.058, + "_id": { + "$oid": "6711d3a9cd60fca157e5a51c" + } + }, + { + "text": "He is one of, if not the best CS professor in the entirety of CCNY. His grading is very generous, he's flexible with due dates, his assignments are fair in difficulty, and you actually feel like you learn from the projects he gives. Take him if you can!", + "pos": 0.185, + "neu": 0.717, + "neg": 0.098, + "_id": { + "$oid": "6711d3a9cd60fca157e5a51d" + } + }, + { + "text": "Professor Zeidan is one of the best at CCNY. He teaches patiently and makes sure his students comprehend the topics. If you want to learn Java, I think there is nobody better than professor Zeidan. His lectures and assignments are exciting and push you to go above and beyond. If you see Professor Zeidan for any class take it!", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a51e" + } + }, + { + "text": "His lectures are excellent and you'll learn a lot about computer science. He is really helpful outside of class. Some assignments are challenging but if you're stuck just reach out for help and you'll get through it. He's a very lenient grader too so the challenging assignments won't tank your grade.", + "pos": 0.258, + "neu": 0.701, + "neg": 0.041, + "_id": { + "$oid": "6711d3a9cd60fca157e5a51f" + } + }, + { + "text": "This has to be the best class I have taken by far. It was too good that I made a RMP account haha! But going over his class, he is very lenient with the projects assigned and will give extensions when asked. So dont be afraid to! This is a very easy class as long as you look over his recordings for the class, the final project is very simple too!", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a520" + } + }, + { + "text": "Very good professor, there was only one kid who made too many distractions but besides that this was a good class and I recommend this professor.", + "pos": 0.281, + "neu": 0.673, + "neg": 0.046, + "_id": { + "$oid": "6711d3a9cd60fca157e5a521" + } + }, + { + "text": "You will regret it if you don't take this guy, seriously. Pay attention in his class and you will pass with flying colors, he makes learning java feel and look really easy. Honestly comparing the two CS 221 profs, Zeidan is heaven, auda is hell.", + "pos": 0.168, + "neu": 0.652, + "neg": 0.18, + "_id": { + "$oid": "6711d3a9cd60fca157e5a522" + } + }, + { + "text": "Answers emails promptly with good feedback. If you attend office hours he will help you whenever you get stuck. Records lectures and is very reasonable with accommodations if youre falling behind. Homework heavy, but they can be easily done if you start early (usually 2-3 week deadline), or else youll spend consecutive days pulling all-nighters.", + "pos": 0.116, + "neu": 0.838, + "neg": 0.047, + "_id": { + "$oid": "6711d3a9cd60fca157e5a523" + } + }, + { + "text": "This professor is solid. Teaches the foundation of Java extremely well and is extremely fair. Most of you grade is based on projects with a few exams worth 5%. He will also be partial time to time so don't take advantage of that. Final project is a Java app. This is an excellent project to add to your github or bitbucket.", + "pos": 0.176, + "neu": 0.795, + "neg": 0.029, + "_id": { + "$oid": "6711d3a9cd60fca157e5a524" + } + }, + { + "text": "He really deserves a 10/10. CCNY has very few good CSC professors and he is def one of the best. He is very caring and he always answers any questions you have kindly. His lectures/projects helped me learn java. I am not a great coder but his lectures/notes helped me improve. His final was to make an app which was very enjoyable. AWESOME DUDE!!", + "pos": 0.3, + "neu": 0.674, + "neg": 0.026, + "_id": { + "$oid": "6711d3a9cd60fca157e5a525" + } + }, + { + "text": "his projects is where the meat of your grade is, but obviously it will be hard. dont make the same mistake i did and start late( make sure you start the projects early). the professor is very understanding but wont let you slide everytime.", + "pos": 0.061, + "neu": 0.843, + "neg": 0.097, + "_id": { + "$oid": "6711d3a9cd60fca157e5a526" + } + }, + { + "text": "Prof. Zeidan is a very good teacher. I talked to him about my concerns about grades and stress. He was very understanding and he encouraged me to focus on learning and doing well. His class is very heavy on projects, with 3 in-class exams (5% of final grade each). He gave enough time for his projects but you need to NOT procrastinate.", + "pos": 0.083, + "neu": 0.888, + "neg": 0.029, + "_id": { + "$oid": "6711d3a9cd60fca157e5a527" + } + }, + { + "text": "This class will be easier for students who are already great at coding. Class can get boring since its coding based. Somewhat picky grader and easy to loose points on assignments, but you will learn from your mistakes. No extra credit.", + "pos": 0.124, + "neu": 0.64, + "neg": 0.235, + "_id": { + "$oid": "6711d3a9cd60fca157e5a528" + } + }, + { + "text": "Best CS teacher I have had so far at city - he makes sure to explain topics both verbally and program wise. Sometimes it can get a bit dull but thats the nature of cs classes. Gives doable assignments that really help you learn but you must put aside time to learn the topics / complete the homework and project - especially towards the end of class.", + "pos": 0.139, + "neu": 0.836, + "neg": 0.025, + "_id": { + "$oid": "6711d3a9cd60fca157e5a529" + } + }, + { + "text": "He is very respectful, organized and good at explaining concepts. I would recommend him,the only thing is,the workload of the class isn't evenly distributed over the period of semester; the first half is consisted of very basic simple Java, no need to spend much time to study or do projects, but the last half is extremely difficult to keep up with.", + "pos": 0.087, + "neu": 0.834, + "neg": 0.079, + "_id": { + "$oid": "6711d3a9cd60fca157e5a52a" + } + }, + { + "text": "His notes are pretty valuable and he's very well-versed in Java. I appreciate him", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a52b" + } + }, + { + "text": "He is amazing, class is entirely project based which I believe CS classes should be. There is so much I have learned in this class so far. He is the reason why I was able to pass interviews on OOP and land offers! He is extremely understanding and lectures are amazing", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a52c" + } + }, + { + "text": "He makes understanding Java very easy while I used to struggle with C++ from CS103. He sometimes provides test code and files to test your assignments for the correct output which was very helpful. He also provides hints to assignments and is very responsive with emails. He tells interesting stories from time to time. Take him if you want to learn!", + "pos": 0.189, + "neu": 0.778, + "neg": 0.033, + "_id": { + "$oid": "6711d3a9cd60fca157e5a52d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a9cd60fca157e5a52f" + }, + "professor_name": "Rafal Szczurowski", + "rating": 4.4, + "department": "International Studies department", + "comments": [ + { + "text": "Honestly, every international studies and political science student should take this class because it's easy and you learn a decent bit. He's generous with both grades and deadlines so you have no reason to get at least a B in his class. If you do the reading (or skim) and do the weekly quizzes, you'll be guaranteed a good grade.", + "pos": 0.174, + "neu": 0.791, + "neg": 0.035, + "_id": { + "$oid": "6711d3a9cd60fca157e5a530" + } + }, + { + "text": "Rafal is an amazing professor. He is a down to earth nice guy who is always accessible. If you have interested in the UN, he is someone who you should talk to. Weekly quizzes based on BB postings that are not hard, and his exams are straightforward. you might have to get used to his accent at first. CCNY has a gem in this guy. Highly recommend 5/5", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a531" + } + }, + { + "text": "He is an amzing profesor at CCNY who never gives hard time. You will learn through fun. W/O him a long once a week class would be boring but he made it interesting. Totally recommended", + "pos": 0.231, + "neu": 0.729, + "neg": 0.04, + "_id": { + "$oid": "6711d3a9cd60fca157e5a532" + } + }, + { + "text": "Currently taking Rafal for my Model United Nations course. He is by far one of the BEST professors at City College! I recommend taking his course!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a533" + } + }, + { + "text": "Pr. Szczurowski is very nice, he likes the subject he teaches, and is always in a good mood. His class is very interesting and worse taking it. If you want to work in UN, youd definitely take his class. He has quizzes, which are easy if you read the material. Take his classes!", + "pos": 0.285, + "neu": 0.666, + "neg": 0.05, + "_id": { + "$oid": "6711d3a9cd60fca157e5a534" + } + }, + { + "text": "All readings are on BB. Other than that read for the quizzes and don't miss classes. I recommend Rafal to all. He a great professor. He listens to your concerns if you communicate.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a535" + } + }, + { + "text": "Rafal is a great person and the course is great too. Grade is based on quizzes, attendance, participation and final. Some students get to participate in model UN. To get desired grade you must read each week for the quizzes. He also offers extra credit. So do them. His lectures are good and detailed. He attempts to evoke your curiosity in the UN.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a536" + } + }, + { + "text": "A VERY HUMBLE AND CARING PROFESSOR I HAVE EVER MET! QUIZZES EVERY WEEK NOT BAD IF YOU STUDY! MIDTERM AND FINAL EXAM ARE BASED ON THE COVERED MATERIALS! TAKE HIM YOU WON'T REGRET", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a537" + } + }, + { + "text": "Professor Rafal is awesome!! His lectures are interesting and funny.", + "pos": 0.595, + "neu": 0.405, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a538" + } + }, + { + "text": "Professor Rafal is one of the best professors at CCNY! You will learn a lot from him. Easy quizzes every class,.. Take him!", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a539" + } + }, + { + "text": "I wish all professors were like Rafal! He is great!", + "pos": 0.585, + "neu": 0.415, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a53a" + } + }, + { + "text": "Awesome professor! Knows how to bond with students and helps with whatever you might need.", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a53b" + } + }, + { + "text": "Rafal is a great guy. Just show up to class and participate, you'll pass for sure. No textbook needed. He gives about 3 tests, and during the class he will tell you what exactly will be on the test. 7 multiple choice and 3 open ended which are very easy so long as you show up to class.", + "pos": 0.146, + "neu": 0.821, + "neg": 0.033, + "_id": { + "$oid": "6711d3a9cd60fca157e5a53c" + } + }, + { + "text": "His class is very interesting. His exams are very easy (three exams; 10 items each). The attendance is really not mandatory, but of course, you need to show up or else you're not gonna learn anything because no textbook is needed. He makes sure that everything is clear. Overall, he is a must have professor!", + "pos": 0.168, + "neu": 0.768, + "neg": 0.063, + "_id": { + "$oid": "6711d3a9cd60fca157e5a53d" + } + }, + { + "text": "The course was somewhat challenging but he made it easily understandable. He is very knowledgable and is willing to go the extra mile to make sure we get what the course is about.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a53e" + } + }, + { + "text": "The best class I had this semester! He could get a little carried away in his teachings but he balances it with good humor. Buy the book and take notes, and you would pass with a B+ or better.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a53f" + } + }, + { + "text": "He is so passionate about issues of Int'l affairs & has had experience in the field (he worked with the UN twice!). The whole class appreciated his humor and humility. Study for his tests & you'll do fine. He encourages classroom discussions & debates about current issues. He is one of--if not--the model professor, a student can ever ask for.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a540" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3a9cd60fca157e5a542" + }, + "professor_name": "Zachary Berman", + "rating": 4.1, + "department": "World Civilizations department", + "comments": [ + { + "text": "Professor Berman was my professor at CUNY-SPS and provides you the best opportunity to critically think about historical events which shaped the social, political, economical and cultural landscape of our world; and how these changes continue to mold mankind's future. Definitely a class worth taking and a professor worth considering!!!", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a543" + } + }, + { + "text": "What a great history professor. He didn't teach a class that was based on memorizing a bunch of names and dates. Our class was focused on themes throughout history and we applied them to the periods we studied. Prof B is clear about his expectations, grades fairly, and I had an excellent student experience. Thanks.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a544" + } + }, + { + "text": "This class is easy, but its a lot of work! Discussion Board every week 500wds plus replying to 3 ppl & assignemnt every week 300 wds, Brainstorm 500 wds, outline of paper, final 2000 wds, eportfolio which u copy paste ur work on there. It was a fun class but a lot of work. u must participate every week and submit work on time, no lateness!!", + "pos": 0.1, + "neu": 0.862, + "neg": 0.038, + "_id": { + "$oid": "6711d3a9cd60fca157e5a545" + } + }, + { + "text": "Professor Berman is really nice. He tries to make History interesting and engaging. He also tries to get feedback from the students on groups, work, etc. It is extremely important you hand in work on time no matter how poor it is. You will get more credit if its on time more than quality. A lot of writing! Participate its important too!!", + "pos": 0.253, + "neu": 0.693, + "neg": 0.055, + "_id": { + "$oid": "6711d3a9cd60fca157e5a546" + } + }, + { + "text": "Took this professor at CUNY SPS; I was very disappointed. He needs to take a class on manners, he is very rude. He thinks he's a no it all but far from it. Iwsh there was a way to get my money back.", + "pos": 0.0, + "neu": 0.871, + "neg": 0.129, + "_id": { + "$oid": "6711d3a9cd60fca157e5a547" + } + }, + { + "text": "I really who is writing all these comments, but I think this professor zachary sucks!", + "pos": 0.0, + "neu": 0.798, + "neg": 0.202, + "_id": { + "$oid": "6711d3a9cd60fca157e5a548" + } + }, + { + "text": "He was very clear with his material. Strongly recommed him, his main concern is for everyone to know the world map. Very helpful.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a549" + } + }, + { + "text": "Very easy class! must read readings, because he asks questions about it in class, but no quizes. he will let you know if there is a quiz but very very easy! midterm and final, very easy! just attend class, maybe 3 times can miss class but still go. but easy grade! and easy teacher!", + "pos": 0.279, + "neu": 0.656, + "neg": 0.066, + "_id": { + "$oid": "6711d3a9cd60fca157e5a54a" + } + }, + { + "text": "Berman is full of energy and excitement, it is obvious he loves and knows history. An amazing discussion class. I give him an A.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a54b" + } + }, + { + "text": "He's the best! Theres only 4 hw assignments which only take 5mins of ur time, 5min presentation, a few geographic quizzes (u just draw the continents), and 2 papers. Just do good on the papers and final, and ur set. The class is a breeze and the prof is very lenient. He even lets u hand in the papers late.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a54c" + } + }, + { + "text": "Berman is da man, he's a nice man tells u what he expects, 2 papers 1 presentation and midterm and final and EC. He is lenient in grading the papers and presentation and he gives reviews for the midterm n final which are very helpful. He also likes if u participate. Recommended! i got an A!!", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a54d" + } + }, + { + "text": "Professor Berman is the best...He is clear, knows his stuff...This class is an easy A. He is very fair when grading too...Definitly choose him as a history teacher!!!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a54e" + } + }, + { + "text": "Interesting professor, funny and helpful. His class is not tough. You just need to read your book and discuss it in class.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a54f" + } + }, + { + "text": "at times when i found that some of my fellow stdents have negative ideas about my religion i felt bad.But professor Berman was very carefull and he has was able to clarify other peoples's misunderstanding. And i respect him for this.", + "pos": 0.065, + "neu": 0.798, + "neg": 0.137, + "_id": { + "$oid": "6711d3a9cd60fca157e5a550" + } + }, + { + "text": "i had a great time. he was nice.", + "pos": 0.535, + "neu": 0.465, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a551" + } + }, + { + "text": "He is helpful and his tests are easy, but when he teaches he goes, back and forth a couple of times. It's sometimes hard to understand him. He also gives a presentation assignment.", + "pos": 0.109, + "neu": 0.846, + "neg": 0.045, + "_id": { + "$oid": "6711d3a9cd60fca157e5a552" + } + }, + { + "text": "Prof berman is a good professor. He very helpful, he teaches straight out of the text book. There is only 2 extra credit assignments. He also not that hard about attendance,hes a easy A. I wish the class was longer so that i could get a better understanding of world civil,The class goes very fast.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d3a9cd60fca157e5a553" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3aacd60fca157e5a555" + }, + "professor_name": "Dusan Milanovic", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Amazing professor! He teaches in a way that makes the material easy to understand. He rarely gives out any homework, and there are about 3-4 exams and then the final. He is one of the best math professors I've taken at ccny. He is awesome!", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a556" + } + }, + { + "text": "FANTASTIC! I really atruggle with math, but Dusan is one of a kind. We all know how hard it is to find a good math prof in city, but this man made getting an A so easy!!! I'm in awe. I wish he taught more challenging courses. The man is a genius and his talent is wasted teaching intro courses. Not one bad thing to say. PHENOMENAL", + "pos": 0.328, + "neu": 0.609, + "neg": 0.063, + "_id": { + "$oid": "6711d3aacd60fca157e5a557" + } + }, + { + "text": "Wonderful professor. A little rough around the edges in my opinion in terms of helping on things he seems simple, but if you voice a concern he will definitely address it. Furthermore, teaches marvelously. I took him for granted pre-calculus, after finishing calc 1/2/3, I realize now how great of a professor he was.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a558" + } + }, + { + "text": "a very good professor", + "pos": 0.516, + "neu": 0.484, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a559" + } + }, + { + "text": "4 exams and a final. He drops the lower grade. Lectures are really helpful. Easy class.", + "pos": 0.292, + "neu": 0.605, + "neg": 0.102, + "_id": { + "$oid": "6711d3aacd60fca157e5a55a" + } + }, + { + "text": "Great professor. Taught the material well, he explains things in detail and is willing to help if you go to him. His exams are not too hard if you study and put in the time. He does give quizzes. However, he does tell you what topics you will be quizzed on.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a55b" + } + }, + { + "text": "Really good math professor at CCNY. Gave tips and tricks all throughout the semester. Explained clearly what to expect in the class and next semester for Calc I. Weekly quizzes, 2 tests and frequent homework. Material was taught well, but like any math class if you don't study you won't pass. Overall a good professor who enjoys teaching math!", + "pos": 0.246, + "neu": 0.737, + "neg": 0.018, + "_id": { + "$oid": "6711d3aacd60fca157e5a55c" + } + }, + { + "text": "Love love love love love this professor! I Cannot stress it enough. His classes are super interesting and make you love math and think of things like you normally wouldn't. I would definitely recommend his class to anyone.", + "pos": 0.582, + "neu": 0.384, + "neg": 0.033, + "_id": { + "$oid": "6711d3aacd60fca157e5a55d" + } + }, + { + "text": "AMAZING. He is literally a hidden gen that is the disgusting coal mine that is the mathematics department of the city college of new york. Don't miss classes, do your work, easy A.", + "pos": 0.215, + "neu": 0.703, + "neg": 0.082, + "_id": { + "$oid": "6711d3aacd60fca157e5a55e" + } + }, + { + "text": "AMAZING professor!! His lectures are always so beneficial, he is very funny and inspirational with the way he teaches. Makes math interesting!! He is always up for any challenging question. He gives great feedback and critical advice when needed. Without him passing the class would only be a dream! This guy is awesome!", + "pos": 0.404, + "neu": 0.566, + "neg": 0.03, + "_id": { + "$oid": "6711d3aacd60fca157e5a55f" + } + }, + { + "text": "An amazing professor to say the least. He wants everyone to do well, he is very clear and very fair. Just do what he tells you to do and study the practice problems and this class is an easy A. The grading policy was 100% exams but he still gave extra credit to help us. He is also very thoughtful and helpful, one of the best out there to say least!", + "pos": 0.331, + "neu": 0.649, + "neg": 0.02, + "_id": { + "$oid": "6711d3aacd60fca157e5a560" + } + }, + { + "text": "One of the best professors I had this semester! He didn't care if you showed up late. We had a total of 2 quizzes, 2 exams, and one final exam. Hw assignments were online and he gives you time to do them. He is also very easy-going, will extend hw and provide makeups if you talk to him. He is very clear, you just have to keep up and practice.", + "pos": 0.12, + "neu": 0.846, + "neg": 0.034, + "_id": { + "$oid": "6711d3aacd60fca157e5a561" + } + }, + { + "text": "Extremely good professor. He is not that hard but you will have to study. I would like to take more classes with him in the future", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a562" + } + }, + { + "text": "His a great professor. You do have to study alot. Make sure you practice. His test aren't hard. There is quizzes every other week. You should do practice problems are your own.", + "pos": 0.2, + "neu": 0.729, + "neg": 0.07, + "_id": { + "$oid": "6711d3aacd60fca157e5a563" + } + }, + { + "text": "He is a very mindful professor. He wants us to do good in class, he always very helpful, answer all my emails and made sure to tell me and the class to practice and practice. When I didn't understand something I will ask him to see him at office hours and he always took his time. He tries to make you understand and he explains clearly.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a564" + } + }, + { + "text": "I hate this guy. He doesn't know how to answer emails. He failed me first and I knew I didn't fail his class. I emailed him, got no reply and then the head of the department emailed him. Turns out I didn't get a bad grade on my final and he changed my grade to a B. I would've paid another $800 to take this smh.", + "pos": 0.074, + "neu": 0.774, + "neg": 0.153, + "_id": { + "$oid": "6711d3aacd60fca157e5a565" + } + }, + { + "text": "He gives tons of examples and explains each step clearly. He'll give an example for each possible situation you will encounter in the textbook and homework. He gives a fair amount of hw but it isn't overwhelming. Grades tests fairly and gives partial credit.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a566" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3aacd60fca157e5a568" + }, + "professor_name": "Chana Etengoff", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "Dr. Etengoff is incredibly knowledgeable and gives so much background information to the topics she teaches. It was amazing to listen to her! Coursework is pretty dense; but manageable. She is fair and encouraging. Definitely would like to study with her again.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a569" + } + }, + { + "text": "I found this class extremely difficult, however with a few discussions, I begun understanding what she was looking for and started doing much better by the midterm! Must attend class & do assignments to do well! She even gave us an option to skip/drop the lowest grade of one of the assignments =]", + "pos": 0.133, + "neu": 0.78, + "neg": 0.088, + "_id": { + "$oid": "6711d3aacd60fca157e5a56a" + } + }, + { + "text": "One of the few professors at CCNY that actually ENJOYS teaching the material. She's extremely straight forward with what she expects in the assignments. If you don't understand something she's willing to meet after class. Definitely wish I could take one of her classes again!", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a56b" + } + }, + { + "text": "I've never met someone so conceited before! Spends the entire class telling stories about her family. Has the worst paper grading policies I've ever seen. This is the first time I've gotten less than a 97 on a paper and it's because she bases more of the grade on whether she likes your word choices rather than content. I didn't learn anything.", + "pos": 0.042, + "neu": 0.893, + "neg": 0.065, + "_id": { + "$oid": "6711d3aacd60fca157e5a56c" + } + }, + { + "text": "I DONT rate for professors. But she is so awsome that I have to. She made lectures fun and crystal clear, you dont even need the book if you attend her classes.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a56d" + } + }, + { + "text": "i miss her! so sad she isn't teaching here anymore :(", + "pos": 0.0, + "neu": 0.494, + "neg": 0.506, + "_id": { + "$oid": "6711d3aacd60fca157e5a56e" + } + }, + { + "text": "Connie is one of the BEST profs at city college! She def puts all her effort into making her lectures fun and easy! Her way of teaching is awesome..her assignments are extremely easy. Alittle bit of effort and your on your way to an A! HIGHLY RECOMMEND TO TAKE HER! She makes learning so much fun! and def knows how to keep a 9 am class awake!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a56f" + } + }, + { + "text": "cool, very clear, deserves one of those peppers", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a570" + } + }, + { + "text": "3 Multiple choice exam. 35 questions each but u have to answer 33. she calls on students sometimes to answer for class participation grade. and 2 papers.. not so bad. just take it to the writing center b4 u hand it in. you will be good to go.. easy A psy class.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a571" + } + }, + { + "text": "Great teacher, has a good attitude and manages to keep the class interesting even at 9 AM. Her tests are based off of powerpt presentations and class notes. Great teacher, would take her for a class again.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a572" + } + }, + { + "text": "I love her! I'm not particularly interested in developmental psych..... At all but she managed to make it interesting. I would definitely recommend taking this class with her or any class with her for that matter. She knows what's she's talking about and always has a funny story to tell you.", + "pos": 0.285, + "neu": 0.688, + "neg": 0.027, + "_id": { + "$oid": "6711d3aacd60fca157e5a573" + } + }, + { + "text": "she is wonderful!! her class was interesting and her tests were fair. all her assignments were short. she made this class enjoyable, i would definitely recommend her to anyone!", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a574" + } + }, + { + "text": "Great grad student teaching the course at a level in which she tries to capture all academic levels. Her assignments are interesting and fun. Students relate to her well as she gives examples of her own life. Amazing person who looks for the best interest of her students. I absolutely enjoyed her class.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a575" + } + }, + { + "text": "Infancy and Childhood -- Prof. Etengoff is probably the best professor I have ever had in my 3 years so far at City College. I enjoy her lectures and her teaching style is crystal clear and easy to follow. Her tests are fair and I absolutely enjoy her class and would totally recommend taking any course with her.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a576" + } + }, + { + "text": "She was very dedicated, organized, and clear in her expectations as well as how she taught the material itself. It's very easy to get an A (as long as you actually do the work/assignments and do really well on her exams). The class wasnt bad at all.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a577" + } + }, + { + "text": "very organizedd!11 attendance!!!!!!! and u get wat u deserve", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a578" + } + }, + { + "text": "Very organized and dedicated. She is a grad student but don't hold that against her! She is full of knowledge and unlike other teachers, she actually explains WHY she wants you to do a specific task. Read her power point slides and skim the textbook, write 2 papers of your choice and you'll get an A!", + "pos": 0.047, + "neu": 0.953, + "neg": 0.0, + "_id": { + "$oid": "6711d3aacd60fca157e5a579" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3abcd60fca157e5a57b" + }, + "professor_name": "Renata K Miller", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "So not worth it, seems great at first but will definitely not pass you even if you have medical reasons. Boring class. Not worth the headache. Ridiculous 10 page paper about drama nonsense", + "pos": 0.135, + "neu": 0.574, + "neg": 0.292, + "_id": { + "$oid": "6711d3abcd60fca157e5a57c" + } + }, + { + "text": "Prof Miller is one of those professors who you can wholeheartedly rely on. She knows what she wants and tells you exactly what you need to do in order to get an A. Her passion is obvious in her teaching and youll come out of her class inspired and tons smarter. Its challenging but worth it. Take her!", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a57d" + } + }, + { + "text": "She's good . Threatens her students with pop quizzes, we're not in high school Renata. A lot to read, she's good just lecture is a drag.", + "pos": 0.18, + "neu": 0.681, + "neg": 0.139, + "_id": { + "$oid": "6711d3abcd60fca157e5a57e" + } + }, + { + "text": "Professor Miller is very passionate & she deeply invested in what she does. I took her for Victorian & I wold take her again for whatever course she teaches. She is the chair but don't be intimidated; if you do her readings and show up, you will get through the class. She prepares a prompt for every exam and essay, so no surprises. LOVED HER!", + "pos": 0.093, + "neu": 0.795, + "neg": 0.112, + "_id": { + "$oid": "6711d3abcd60fca157e5a57f" + } + }, + { + "text": "When I say 'lecture heavy' what I really mean is she just sat there reading her own past papers from when she was an undergrad at Princeton, and she did so in such a smug, self/congratulatory fashion. Thats not teaching, it's showing off. But see the thing is, to show off, you actually have to be a good writer. She isn't. Total bore.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a580" + } + }, + { + "text": "She is brilliant. Victorian literature is not an easy class, but she values independent work and ideas. Do not graduate without taking her class.", + "pos": 0.208, + "neu": 0.733, + "neg": 0.059, + "_id": { + "$oid": "6711d3abcd60fca157e5a581" + } + }, + { + "text": "Being that this is a Victorian Lit class, expects loads of reading and essay revision and writing. I was not at all interested in this topic despite my love for English. She made me fall in love with the boring novels. Come to class, with reading don and you wont look like an idiot. Come with the little homework she does assign, ask questions :)", + "pos": 0.092, + "neu": 0.739, + "neg": 0.17, + "_id": { + "$oid": "6711d3abcd60fca157e5a582" + } + }, + { + "text": "I have taken several classes with her; she is brilliant and also very adaptable to her students' needs.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a583" + } + }, + { + "text": "Learned a lot in grad course b/c I did all the readings and was encouraged to share thoughts and questions in long group discussions which were productive & kept focused by the prof. I agree that she doesn't give a lot in lecture, by way of sec. sources & is slow with feedback but I like having responsibility for my own learning & independance", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a584" + } + }, + { + "text": "People who say this professor has no direction lack understanding. I believe each class helped define the overall theme of the semester and class discussions made for intellectual stimulation minus ego-tripping. I don't what she's like as a thesis adviser, but her feedback this semester was well appreciated and more than expeditious.", + "pos": 0.179, + "neu": 0.768, + "neg": 0.053, + "_id": { + "$oid": "6711d3abcd60fca157e5a585" + } + }, + { + "text": "Might be great for undergrads, but Grad students beware. No direction to class discussion and she really never jumps into the discussion herself. I've heard that she is useless as a thesis advisor. Looks at drafts months after they are sent and then barely comments. Nice overall, but she should stick to teaching undergrads.", + "pos": 0.094, + "neu": 0.802, + "neg": 0.104, + "_id": { + "$oid": "6711d3abcd60fca157e5a586" + } + }, + { + "text": "This prof. is okay, but not phenomenal. Funny, I never thought Miller was someone \"with an almost unimaginable breadth of knowledge of Victorian Lit.\" as said below. She never lectured at all. She just assigned texts and had us discuss them for 2 hours. I expected to be \"taught\" in the class, not to teach myself. It's a challenge.", + "pos": 0.047, + "neu": 0.903, + "neg": 0.05, + "_id": { + "$oid": "6711d3abcd60fca157e5a587" + } + }, + { + "text": "Do not miss an opportunity to take a class with this professor! She is engaging, enthusiastic and one of those rare individuals who is genuinely pleasant to be around. Even better, she is extremely intelligent with an almost unimaginable breadth of knowledge of Victorian Lit. Prepare for lots of reading, but it's well worth it!", + "pos": 0.248, + "neu": 0.725, + "neg": 0.026, + "_id": { + "$oid": "6711d3abcd60fca157e5a588" + } + }, + { + "text": "One of those rare teachers who possesses both supreme intellect and sincere intelligence. Her classes are interesting, engaging, challenging and she conducts the lesson with Dignity, grace and enthusiasm. Future student, it is with Envy I look to you, for you will one day have what I no longer do.", + "pos": 0.394, + "neu": 0.544, + "neg": 0.062, + "_id": { + "$oid": "6711d3abcd60fca157e5a589" + } + }, + { + "text": "A teacher who is dedicated to the subject and to her students. An amazing breadth of knowledge, yet humble, friendly and approachable. Take her class, you will love it.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a58a" + } + }, + { + "text": "A teacher who is dedicated to the subject and to her students. An amazing breadth of knowledge, yet humble, friendly and approachable. Take her class, you will love it.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a58b" + } + }, + { + "text": "This professor is very organized, intelligent, dynamic, helpful, and she can make the classes very fun and easy to understand. She's also a very fair grader who is willing to work with students and give them the opportunity to do their best. Highly recommended!", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a58c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3abcd60fca157e5a58e" + }, + "professor_name": "Brian Brennan", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Really chill professor!! He gives a reasonable amount of papers and projects to do throughout the semester (4 to 5). Does a lot of these projects in groups and lets us do 5 discussion posts responses for the entire semester. If you want an easy A, do yourself a favor and take this class!", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a58f" + } + }, + { + "text": "Brian was a really cool professor to have. My writing skills in the science field have improved due to his lectures and he was a super easy grader if you know the basics of writing a paper.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a590" + } + }, + { + "text": "Professor Brennan is an amazing English instructor. He is very straightforward with his lectures, and he clarifies any assignment for students. He also has a great sense of humor. For this class, there are readings for each week, along with discussion boards, papers and lab reports. They can be very time consuming, but they are doable. Take him!", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a591" + } + }, + { + "text": "The class was mostly revolved around discussion about readings assigned online. The readings are usually very long but doable. Professor Brennan assigns a lot of papers, which can be overwhelming but can be combatted with effective planning. Overall, the Professor is overall understanding, but its easy to lose interest in the class.", + "pos": 0.189, + "neu": 0.755, + "neg": 0.056, + "_id": { + "$oid": "6711d3abcd60fca157e5a592" + } + }, + { + "text": "He is the best. Lectures and classwork are easy, flexible with deadlines. Attendance is mandatory.", + "pos": 0.484, + "neu": 0.516, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a593" + } + }, + { + "text": "He's a chill professor. You are graded on a couple of essays and you have do discussions throughout the semester. Easy A as long as you do the work on time. Let's you know what he wants in the paper. Def recommend him.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a594" + } + }, + { + "text": "There are a total of 6 assignments, one being a group project. HE IS THE GOAT! His class is an easy A. Visit the writing center for grammar, and follow what he asks for. If you bring him a pass from the writing center, it is extra credit. He does not ask for much, so do the little he asks for.", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a595" + } + }, + { + "text": "He is a very chill professor in terms of grading but his assignments are annoying he gives a lot of science article readings and textbook readings, a research paper, an interview you have to do on a science professional and turn that into a paper then a group science project that will turn into a lab report..", + "pos": 0.0, + "neu": 0.94, + "neg": 0.06, + "_id": { + "$oid": "6711d3abcd60fca157e5a596" + } + }, + { + "text": "Brian Is a super chill professor. I took him for my composition class for FIQWIS. He was so relaxed. Just show up, participate and upload your portfolio, you will be fine. If you go to his office hours he gives good feedback on essays. Highly recommend", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a597" + } + }, + { + "text": "Attendance is a MUST. Gives 20 page reading per night and quiz that takes up 40% of your grade. The final is extremely confusing and things that werent taught in class. Tried, and only got a B-. Avoid if you want to maintain a high gpa", + "pos": 0.027, + "neu": 0.883, + "neg": 0.09, + "_id": { + "$oid": "6711d3abcd60fca157e5a598" + } + }, + { + "text": "best teacher ever!!!! take him", + "pos": 0.573, + "neu": 0.427, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a599" + } + }, + { + "text": "He's one of the easiest professors! He understands students have other classes to worry about, so he makes it easy for everyone to get As! 10/10 would take him again. Attendance is mandatory though and if you show up all the time and hand in work you'll def get an A. Easy A!!", + "pos": 0.222, + "neu": 0.732, + "neg": 0.045, + "_id": { + "$oid": "6711d3abcd60fca157e5a59a" + } + }, + { + "text": "One of the best professors I've ever seen. He gives feedback that is very helpful. I would definitely take him again!", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a59b" + } + }, + { + "text": "Brian is so amazing, id take him a million times if i could. He gives you everything you need to get an A, theres no reason to get below that. Hes very lenient and very respectful. love him!", + "pos": 0.303, + "neu": 0.653, + "neg": 0.044, + "_id": { + "$oid": "6711d3abcd60fca157e5a59c" + } + }, + { + "text": "Brian is a great professor! He cares about his students! He is an easy grader. It's impossible to fail his class! Just be respectful", + "pos": 0.381, + "neu": 0.522, + "neg": 0.096, + "_id": { + "$oid": "6711d3abcd60fca157e5a59d" + } + }, + { + "text": "Professor Brian, or how he prefers to be called 'Brian' is an amazing professor. He's super easy and lenient, he understands we have other classes equally important to deal with so he extends his deadlines. He takes his time grading papers and when he gives back his feedback, you will understand and see why. No reason you shouldn't get an A", + "pos": 0.225, + "neu": 0.745, + "neg": 0.03, + "_id": { + "$oid": "6711d3abcd60fca157e5a59e" + } + }, + { + "text": "Brian is one of the best professors at CCNY! His Writing for Sciences class was honestly a breeze. His grading is clear and his feedback is extremely helpful. We were given 2 major papers, 5 abstracts and a final group project. Keep up with the work and you'll do well in his class. Take him and you won't regret it.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d3abcd60fca157e5a59f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3accd60fca157e5a5a1" + }, + "professor_name": "Marshall Berman", + "rating": 2.8, + "department": "Political Science department", + "comments": [ + { + "text": "this is the second semester ive taken berman and ive come to really love him. he's a noted thinker, as indicated below--christopher hitchens has written glowing reviews of his books, for christ's sake--and he has a casual, easy way of speech i find moving. the ideas are deep; the presentation is simple. \"scholarly without jargon,\" as hitchens said", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5a2" + } + }, + { + "text": "mb wrote the introduction to the penguin edition of the communist manifesto: he's a noted thinker who could have taught anywhere but chose ccny because he wanted to be near the working class he so passionately supports. he distills the essential principles of various movements and thinkers and presents them in clear, relatable terms. fair and kind.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5a3" + } + }, + { + "text": "Berman is a wonderfully genius man. While he has a tendency to get sleepy and long winded, his knowledge is a great resource, and he is very approachable. City college has a gem in Berman. Any students of politics or sociology should do themselves the favor of taking one of his classes.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5a4" + } + }, + { + "text": "Horrible! not only his appeareance, but his supposedly inteligence has deteriorated as his years passed by. He has to consider retirement.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d3accd60fca157e5a5a5" + } + }, + { + "text": "His class is boring. The pace is really slow and we didn't have a real syllabus. He rarely takes attendance. There's a lot of reading for this course. Overall, a boring class, but if you want to learn everything about Marx, Nietzsche, etc., then take him. Overall, interesting. ALWAYS helpful and there. World renowned scholar. Ph.D from HARVARD!", + "pos": 0.138, + "neu": 0.812, + "neg": 0.051, + "_id": { + "$oid": "6711d3accd60fca157e5a5a6" + } + }, + { + "text": "He is ok when he is not trying to make a joke. He has no sense of humor, the only problem he isn't aware of that. Not a fair and envy grader, once you done better than him, he'll make sure that you'll never get an A. One more thing, make sure even if you have decided to take his class, that he is didn't brake anything. In my class he was 50% on th", + "pos": 0.162, + "neu": 0.737, + "neg": 0.102, + "_id": { + "$oid": "6711d3accd60fca157e5a5a7" + } + }, + { + "text": "\"One has to \"leave philosophy aside\" one has to leap out of it and devote oneself like an ordinary man to the study of actuality, ... Philosophy and the study of the actual world have the same relation to one another as masturbation and sexual love.\" (Karl Marx and Friedrich Engels, The German Ideology)", + "pos": 0.151, + "neu": 0.829, + "neg": 0.02, + "_id": { + "$oid": "6711d3accd60fca157e5a5a8" + } + }, + { + "text": "As for the middle class wanker two comments below at least there are people who are out there trying to fight for a better world and use marxism as a guide to action. You however obviously think that your richer and smarter than you are, with an interest in preserving the status quo. Marx called this\"Mixed Consciousness\"Look it up! PS Berman snores", + "pos": 0.169, + "neu": 0.75, + "neg": 0.082, + "_id": { + "$oid": "6711d3accd60fca157e5a5a9" + } + }, + { + "text": "Fundamentally marshall berman is a philosopher. This in it of itself is not a bad thing. But, Marxism is actually a framework that helps us to understand the world in order to be able to affect change on it. Berman however prefers to engage in intellectual masturbation not even letting us figure out what we think about what marx had to say.WACK!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5aa" + } + }, + { + "text": "Berman has an amazing scope of knowledge. He avoids the stale leninist phraseology and mechanical \"scientific\" pretensions which, unfortunately, I think at least one person below seems think is marxism. If you are interested in Marx, take this class. If you are interested in religion, join one of the trotskyist groups in front of the CCNY library.", + "pos": 0.171, + "neu": 0.767, + "neg": 0.062, + "_id": { + "$oid": "6711d3accd60fca157e5a5ab" + } + }, + { + "text": "Berman the smartest pro ccny has. If you can take his class you should. He will change your ideas about life. If you ignorant this is not the class for you.", + "pos": 0.114, + "neu": 0.826, + "neg": 0.06, + "_id": { + "$oid": "6711d3accd60fca157e5a5ac" + } + }, + { + "text": "Okay, whatever you do, do not, i repeat, do not take this class or any class with Berman. He is a joke! This is not a professor!!! He handwrites his hand outs and does NOT care about the student. This class should had been called Bermanism NOT marxism because he takes Marxism and spit on it and take a crap on it. DO NOT TAKE HIM!!!! I WARNED YOU!", + "pos": 0.092, + "neu": 0.792, + "neg": 0.116, + "_id": { + "$oid": "6711d3accd60fca157e5a5ad" + } + }, + { + "text": "Not sure what he was talking about most of the time, not sure what he wanted from me, but he's very fair on grading your papers (which need to be organized, unlike his lectures).", + "pos": 0.091, + "neu": 0.83, + "neg": 0.079, + "_id": { + "$oid": "6711d3accd60fca157e5a5ae" + } + }, + { + "text": "Amazing just to hear him talk about politics. Don't expect books to be spoonfed to you. Berman is the real deal, and will challenge every assumption you've ever had about what politics is.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5af" + } + }, + { + "text": "You can sleep through his clas - I think he did sometimes. Boring reading, but you don't have to do it. Hard grading, and he is very argumentative. He is a slob!!! I really hated his class!", + "pos": 0.0, + "neu": 0.697, + "neg": 0.303, + "_id": { + "$oid": "6711d3accd60fca157e5a5b0" + } + }, + { + "text": "If you want to sleep through a class this is a good bet. No tests just reading but you have to particpate or else you will end up with a C. Trust me!!", + "pos": 0.21, + "neu": 0.749, + "neg": 0.041, + "_id": { + "$oid": "6711d3accd60fca157e5a5b1" + } + }, + { + "text": "Interesting, insightful and always willing to learn from students. The best professor ever!", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3accd60fca157e5a5b4" + }, + "professor_name": "Hiuyan Lau", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Lau is great! she explains everything very well and she makes sure the students understands. Her class does not have too much work compared to many other psychology classes. There's quizzes every other week, 3 presentations, and a 15 page paper. No midterm, no final.", + "pos": 0.203, + "neu": 0.757, + "neg": 0.041, + "_id": { + "$oid": "6711d3accd60fca157e5a5b5" + } + }, + { + "text": "Fantastic professor! Engaging, clear, and more than fair with grading. This was my final class before graduation, and it was a true pleasure!", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5b6" + } + }, + { + "text": "Great teacher,do your reading,participate in class and go to class.Start your final early,don't wait on your group.Do this and a A is is yours.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5b7" + } + }, + { + "text": "She's really sweet and can be funny at times. I have above an A+ in her class so far and finals are 5 days away. I absolutely do not think she gives a ton of work. She gives many opportunities to do well. The research paper I had to do was 8-10 pages long and we worked in groups for the methods section. Of course you have to study but she's good!", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5b8" + } + }, + { + "text": "Dr. Lau is a fantastic professor. Her class is not easy however. You must be willing to do the reading, study, and participate. You have to come up with an original topic for research which is integral to passing the course. She gives you a lot of opportunities to prove yourself and she's an asset to the psychology staff at City.", + "pos": 0.158, + "neu": 0.807, + "neg": 0.035, + "_id": { + "$oid": "6711d3accd60fca157e5a5b9" + } + }, + { + "text": "Great teacher. Dr. Huiyan is the one to take of course you must be willing to do thee work as with any class", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5ba" + } + }, + { + "text": "Not an easy course. Very demanding professor. Study and memorize...lot of work. people drop so think first!", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d3accd60fca157e5a5bb" + } + }, + { + "text": "She teaches really well. She straight forward and tell you have to do in order to do well.there are a lot of opportunities to get an A. The class was interesting and fun. Highly recommend her for this class.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5bc" + } + }, + { + "text": "Tooooo much material to study. if you are not willing to work hard..then take another one. Not an easy A course.", + "pos": 0.0, + "neu": 0.893, + "neg": 0.107, + "_id": { + "$oid": "6711d3accd60fca157e5a5bd" + } + }, + { + "text": "NICE PROFESSOR,BUT VERY DEMANDING: LOT OF READING, WITH THIS CLASS YOU SHOULD NOT TAKE MANY CLASSES, LOT OF READING, QUIZZES EVERY WEEK, THREE EXAMS, PRESENTATION, A BIG RESEARCH PAPER, YOU NEED TO COME UP WITH A PHENOMENON THAT WAS NEVER WRITTEN BEFORE ON YOUR PAPER..ATTENDANCE OR ZEROS ON QUIZZES.LOT OF WORK.. DEFINITELY NOT AN EASY A.", + "pos": 0.089, + "neu": 0.837, + "neg": 0.074, + "_id": { + "$oid": "6711d3accd60fca157e5a5be" + } + }, + { + "text": "gives lots of quizzes and extra credit assignments which, actually, helps to boost your grade. Fair, very helpful, will meet with you if you don't understand the topic", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5bf" + } + }, + { + "text": "She's a very good teacher. I took the summer course and she gave us quizzes everyday(she considered it attendence). Her lectures are easy to understand and she doesn't mind stopping to explain things to you. Textbook use is minimal due to the fact that her quizzes and exams are based solely on her lectures. The presentation was easy as well.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5c0" + } + }, + { + "text": "I took this class winter session - 4 hours, 4 days a week for 3 weeks. She is very knowledgable and you end up writing PAGES of interesting notes. I hardly showed up on time, never read, missed half the quizzes and still got a B+. Written midterm, final, quizzes, and class presentaion of a psych study - a lot of work", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5c1" + } + }, + { + "text": "She was very knowledgeable and clear. She made the class very interesting and is a fair teacher and grader.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5c2" + } + }, + { + "text": "She is everything you could want in a professor. She knows her subject extremely well. She is clear with an impressive vocabulary, organized, helpful, has a great attitude, and is fair.", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5c3" + } + }, + { + "text": "She's a great prof.! She know's her material and is very helpfull. Her exams are fairly easy. I got a 29/30 on the midterm and a A+ for my final grade. If you study and pay attention during class you'll be fine.", + "pos": 0.187, + "neu": 0.784, + "neg": 0.029, + "_id": { + "$oid": "6711d3accd60fca157e5a5c4" + } + }, + { + "text": "she is a nice professor, her claa is esay going, but give final question too much, sher is sweet and helpful professor. I think she will be able become a professional professor in the future.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d3accd60fca157e5a5c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3adcd60fca157e5a5c7" + }, + "professor_name": "Rishanna Blake", + "rating": 4.2, + "department": "Speech department", + "comments": [ + { + "text": "This is a very easy class as long as you do the work. The work is not that hard and she gives you the grade you deserves.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5c8" + } + }, + { + "text": "The stuff we learned is pretty common sense, but it's funny how much we take it for granted. I enjoyed this class and I think those students who want to improve their speaking skills will. In the end I not only learned a lot from Prof. Blake, but I also enjoyed my time spent in the class too!", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5c9" + } + }, + { + "text": "shes fun, lenient and energetic, a little obnoxious at points but knows exactly how to teach and what to teach you. got an A-", + "pos": 0.205, + "neu": 0.727, + "neg": 0.067, + "_id": { + "$oid": "6711d3adcd60fca157e5a5ca" + } + }, + { + "text": "Interesting class, you really bond with your classmates. Blakes' fun, energetic,and unconventional. She is also bi-polar,has constant mood swings,can act unprofessional at times, and she suffers from chronic lateness. The class itself is simple as long as you do her work, just try not to piss her off. [There are no test, just speeches]", + "pos": 0.127, + "neu": 0.74, + "neg": 0.133, + "_id": { + "$oid": "6711d3adcd60fca157e5a5cb" + } + }, + { + "text": "great prof, very energetic. just do all the speeches and u will be fine.", + "pos": 0.453, + "neu": 0.547, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5cc" + } + }, + { + "text": "She's very energetic and passionate for a speech professor. Out of all the assignments, she's really serious about the outlines for your speeches. Her grades are fair, there are no tests and there's no final. The one thing I didn't like was her strict policy for attendance and tardiness because she was late to class more than the students.", + "pos": 0.132, + "neu": 0.751, + "neg": 0.117, + "_id": { + "$oid": "6711d3adcd60fca157e5a5cd" + } + }, + { + "text": "Professor Blake is extraordinary at what she does. She is able to engage the class, and teach the lesson plan in a way that is fun and interesting for everyone.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5ce" + } + }, + { + "text": "excellent class. extraordinary teacher with a wonderful personality. enthusiatic about subject. she is a fair grader as long as you do all your speeches and assignments. she just knows how to make you feel comfortable. GREAT", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5cf" + } + }, + { + "text": "she is the BEST she is very organized, very good in grading no one will be dissapointed with the grade they will walk out with, she has mayb the best sense of humor ,she makes us so comfortable you can feel free to talk about anything with confident her class was so much fun we laughed and joked we learn alotttt but in a fun way shes best at dat LO", + "pos": 0.352, + "neu": 0.63, + "neg": 0.017, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d0" + } + }, + { + "text": "Professor Blake, is really helpful, and a fair teacher. Her class is very easy to pass, just do all of her assignments, homework, and present your speech. Whatever you do, do not miss your speech presentation, she does not do make up assignments. There are no midterms, and finals =)", + "pos": 0.223, + "neu": 0.74, + "neg": 0.037, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d1" + } + }, + { + "text": "She is weird. She acts like her class is so important but its not. She goes off on tangents and doesn't appreciate hard work. She penalizes for everything.", + "pos": 0.152, + "neu": 0.716, + "neg": 0.132, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d2" + } + }, + { + "text": "She's a really friendly and nice person who knows a lot about public speaking. Sometimes she comes into class and makes her class lesson as she goes along, 4 speeches that you have to deliver during the semester. But the most important thing is that by the end of her class u really come out knowing all there is 2 kno about public speaking.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d3" + } + }, + { + "text": "SHE ID FUN AND VERY CREATIVE SHE IS THE BEST. WHILE YOU ATTEND HER CLASS SHE IS GOOD WITH EVERYTHING ELSE", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d4" + } + }, + { + "text": "Very energetic. She makes you feel really comfortable right away. She is a bit disorganized though. She also tends to be strict on attendence and HATES tardiness. If you forget to hand something in forget it, she won't even look at it. She does not accept late work nomatter what. If your going to miss a class that's fine, just let her know.", + "pos": 0.151, + "neu": 0.678, + "neg": 0.172, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d5" + } + }, + { + "text": "VERY FUN TEACHER! HELPFUL! LOVE HER!!! GIVES GOOD TIPS ON SPEECH! EVERY SPEECH IS MANDATORY AND SO IS ATTENDENCE!!! VERY EASY CLASS AND EASY GRADE!!! BEST TEACHER AND SHE'S YOUNG AND UNDERSTANDABLE! LOVE HER!", + "pos": 0.551, + "neu": 0.449, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d6" + } + }, + { + "text": "Shes great!!", + "pos": 0.824, + "neu": 0.176, + "neg": 0.0, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d7" + } + }, + { + "text": "VERY EASY CLASS, ALL YOU HAVE TO DO IS PARTICIPATE, IS MOSTLY JUST TALK, YOU HAVE TO DO PRESENTATION IN FRONT OF CLASS(4) BUT THEIR EASY, DO ALL 4 AND YOU WILL GET A HIGH GRADE. PROFFESOR DOES MUST OF THE TALKING EVEN THOUGH SHE SAYS SHE WILL STOP TAKING.", + "pos": 0.133, + "neu": 0.801, + "neg": 0.066, + "_id": { + "$oid": "6711d3adcd60fca157e5a5d8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3adcd60fca157e5a5da" + }, + "professor_name": "Michel Goshn", + "rating": 2.3, + "department": "Engineering department", + "comments": [ + { + "text": "Awful experience, just don't waste your time by taking his course. He is not willing to pass anyone if they don't repeat his class at least once or twice.", + "pos": 0.072, + "neu": 0.835, + "neg": 0.093, + "_id": { + "$oid": "6711d3adcd60fca157e5a5db" + } + }, + { + "text": "i took his class in 1991 and passed because i knew Statics from Brooklyn Tech HS. this guy is all theory and his lectures do not prepare you for the tests. has a bad temper and is another guy who seems to get off bullyinh impressionable students. i can't believe CCNY still employs this guy", + "pos": 0.02, + "neu": 0.874, + "neg": 0.106, + "_id": { + "$oid": "6711d3adcd60fca157e5a5dc" + } + }, + { + "text": "Best teacher, worst grader.", + "pos": 0.408, + "neu": 0.194, + "neg": 0.398, + "_id": { + "$oid": "6711d3adcd60fca157e5a5dd" + } + }, + { + "text": "He does not grade fairly. So, if you made a calculation error and he did not understand your writing you receive no credits for that problem. He is very arrogant. For example, he may insult you by treating you like an uneducated person.", + "pos": 0.046, + "neu": 0.688, + "neg": 0.266, + "_id": { + "$oid": "6711d3adcd60fca157e5a5de" + } + }, + { + "text": "This guy is a great teacher. Explains things really well, Do his homework.. infact do every problem in the back of the book. HIS EXAMS ARE HARD because HE DOESNT GIVE PARTIAL CREDIT.. If you make careless mistakes you will do poorly on his exams and have to withdraw like i did. Practice practice and practice some more so you dont make errors.", + "pos": 0.142, + "neu": 0.696, + "neg": 0.162, + "_id": { + "$oid": "6711d3adcd60fca157e5a5df" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e0" + } + }, + { + "text": "Last sem 6 people who still wanted to civil engineering switched to manhattan college because of this monster and the rest who couldnt afford it switched to another major. he makes u feel stupid if u ask a question. If you dont mind staying in that school forever or taking his class 3 or 4 times then stick with it otherwise be out!", + "pos": 0.0, + "neu": 0.944, + "neg": 0.056, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e1" + } + }, + { + "text": "He is a completely unfair grader. Completely out of touch with real life. Have absolutely no respect to anyone else's time. Make's CE department of CCNY the worst engineering direction you could take in this school.", + "pos": 0.03, + "neu": 0.734, + "neg": 0.237, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e2" + } + }, + { + "text": "Explains material but he is a very very very unfriendly grader. It's almost as though he wants you to fail or repeat the course. Like it's his money.", + "pos": 0.087, + "neu": 0.667, + "neg": 0.247, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e3" + } + }, + { + "text": "One of the worst professors I ever known. He teaches theory and no practical problems. Take this class immediately after Statics to have a fighting chance. Be warned he has an accent and butchers the English language. A waste of class time always runs late but punishes you for the same.", + "pos": 0.052, + "neu": 0.721, + "neg": 0.226, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e4" + } + }, + { + "text": "In all honesty he explains the materials very well, sometimes a little fast. He is always down to help you out if you go to his office. Harsh on the grading. YOu may know what your doing but if the answer does not match then its wrong. The material is very important but doesnt need to come across that difficult. JR", + "pos": 0.116, + "neu": 0.754, + "neg": 0.131, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e5" + } + }, + { + "text": "You can not trust this beast.He is about 50 years old and he is a lonely mother ****er.He has never had any kids and he does not know wht love means.I think they transplanted a peave of concrete next to his heart.Mr Gosn Its time for you to leave and let someone with a P.E. degree to teach this class.You are not an engineer.Stop lieing to the class", + "pos": 0.0, + "neu": 0.868, + "neg": 0.132, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e6" + } + }, + { + "text": "Takes examples from book and expanding them is not teaching. Read the book si the same. Ask him a question and he ask you 5 questions back. He makes the class very hard so students think that he knows a lot. He has NO IDEA what is construction. He is trying very hard to fail the student. Another GOVERNMENT EMPLOYEE. He takes revenge on students.", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e7" + } + }, + { + "text": "Prof Ghosn is one of the best teachers I have ever had. He explains the material so well that you feel obliged to do well and not let him down. The reason many people have trouble is because Prof. Ghosn encourages his students to solve problems by understanding them, not by just blindly following a method. I will gladly take another class with him.", + "pos": 0.208, + "neu": 0.722, + "neg": 0.07, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e8" + } + }, + { + "text": "Prof Goshn thinks his job is to weed out people who are not cut out to be engineers. If you blink once in this class you WILL get a D, blink twice, F. He can teach but his exams are hard and he grades even harder, choose the easiest problems first on his exams. Good luck. (ps I blinked once)", + "pos": 0.18, + "neu": 0.749, + "neg": 0.071, + "_id": { + "$oid": "6711d3adcd60fca157e5a5e9" + } + }, + { + "text": "damn this professor sucks, I've seen people taking his class 3 times and get a C on it and the bad thing about it is that he's the only one teaching this class :-S please if city college cant fire him please put a least one more professor teaching the same class", + "pos": 0.071, + "neu": 0.754, + "neg": 0.175, + "_id": { + "$oid": "6711d3adcd60fca157e5a5ea" + } + }, + { + "text": "The most horrible.he needs to leave!!", + "pos": 0.0, + "neu": 0.737, + "neg": 0.263, + "_id": { + "$oid": "6711d3adcd60fca157e5a5eb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3aecd60fca157e5a5ed" + }, + "professor_name": "Joshua Barber", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I took joshua's class before covid. And still one of my fav professor till this day. something about the way he presented the information has stuck with me ever since. I would love to take another course with him if I got the chance.", + "pos": 0.18, + "neu": 0.781, + "neg": 0.039, + "_id": { + "$oid": "6711d3aecd60fca157e5a5ee" + } + }, + { + "text": "Barber is the prof you want to take if you want to get some of your understandings of lit material off the ground. If you're into esotericism, or just want to move beyond rudimentary content, this is where you want to be. He will challenge your thoughts and make you think about things you've never considered.", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5ef" + } + }, + { + "text": "Amazing!! Professor Barber has a love for literature and it's evident in each class. I must say he's very helpful in analyzing a text. After this class I observe more when reading a text. Great class!! He makes the reading so interesting.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f0" + } + }, + { + "text": "THIS is an English student's professor. It is as if he is taking the class just as much as you are, which at first may seem odd, but it is because he is really sitting with the text with you. Even though he has read the works plenty of times, he still seems to be captivated by the words on the page. Please participate and you will enjoy this class!", + "pos": 0.139, + "neu": 0.84, + "neg": 0.021, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f1" + } + }, + { + "text": "He's so nice. Just took him this semester and it was easy while also challenging. 3 papers to write, his class did get boring and silent and that's only because no one would participate. But overall great professor who's caring and willing to help", + "pos": 0.324, + "neu": 0.62, + "neg": 0.056, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f2" + } + }, + { + "text": "By far the best professor I've ever had at CCNY. Take him if you need the credits or just want to learn, its well worth it. Very easy work as along as you read the texts and just think, few quizes but they are very simple usual 2 questions, a MC and a short response that is very very easy. Best professor, he makes you think about things differently", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f3" + } + }, + { + "text": "Professor Barber is a really nice and respected professor. He makes it possible for everyone to feel confident in their writing and will make sure you understand the readings. He makes WHUM 102 very interesting with his small jokes and is an approachable professor. Attendance is required if you want to pass the class.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f4" + } + }, + { + "text": "Prof. Barber is great professor. he is very chill and respects your ideas. I highly recommend taking his whum course because the readings he picks are very interesting and easy to understand. he will go over it in class and also doesn't assign heavy work. make sure you're not late to class and it'll be a great semester.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f5" + } + }, + { + "text": "Class consisted of readings based on the course packet, and a book that we read towards the end of the semester. They were all really simple and interesting. We often got into some abstract conversations because of it. He assigns 3-4 papers and a few short (1pg) homework assignments. Overall it's an easy A, and he's a great guy, super chill.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f6" + } + }, + { + "text": "Barber is by fa my favorite professor EVER. When I first saw him I didn't think he'd be the professor because he's young. But he's truly a gem. He digs deep into the readings, leading to some pretty intriguing conversations. He also urges you to be confident in your writing. I really enjoyed this class. He's hilarious, workload is light. Easy A!", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f7" + } + }, + { + "text": "the greatest professor ive ever had. very nice guy and very good at getting everyone in on the discussion while also making great points about the texts and book. always really interesting and exciting classes every day. great guy take his classes the best guy", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f8" + } + }, + { + "text": "Without any kind of exaggeration I can say Professor Barber has to be one of the sweetest human beings on Earth let alone City College. Super introspective with the questions he asks, supportive and responsive of all opinions, makes an effort to converse with and make students feel as comfortable possible. One of the greatest Ive ever had!", + "pos": 0.233, + "neu": 0.739, + "neg": 0.028, + "_id": { + "$oid": "6711d3aecd60fca157e5a5f9" + } + }, + { + "text": "easy class, fair grade, 3 short papers. Great professor.", + "pos": 0.608, + "neu": 0.392, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5fa" + } + }, + { + "text": "One of the best professors I have ever had. He really cares about his students and wants everyone to do well. Only a few papers but he's a fair grader and some pop quizzes before class but there super easy if you did the HW. Super easy going and a very chill. would 10/10 recommend.", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5fb" + } + }, + { + "text": "If I could take another class with professor Barber I definitely would! He is amazing & the lectures were amazing . There were occasional pop quizzes, but he would hint the class before that we'd be having one. Only 2 papers and a lot of interesting readings", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5fc" + } + }, + { + "text": "One of the best professors I have ever had!! He's a very chill teacher and also very funny. He doesn't give a lot of homework and when he does its not a lot all at once. He is a very respectful and motivational teacher I highly recommend!! Your allowed to miss (pretty sure) 4 classes. No tests just some occasional pop quizzes on readings & 2 paper", + "pos": 0.243, + "neu": 0.711, + "neg": 0.046, + "_id": { + "$oid": "6711d3aecd60fca157e5a5fd" + } + }, + { + "text": "Professor Barber is great!! He's extremely well spoken and down to earth, and really makes it a priority to connect with his students. He always starts his classes with casual conversations, engaging with students and really listening to them. He's almost always in his office when he says he will be. If you can take him, do it! He's amazing.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a5fe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3aecd60fca157e5a600" + }, + "professor_name": "Timothy Ellmore", + "rating": 3.4, + "department": "Psychology department", + "comments": [ + { + "text": "Such a kind guy and understanding but his lectures are really boring. He gives weekly hws and quizzes but they all have hard questions that are difficult to find using the textbook and lecture slides. It's as if he constructs them to make sure you don't answer them all correctly. Not to mention the quizzes and hws are always out of 1.81815 ??", + "pos": 0.072, + "neu": 0.808, + "neg": 0.12, + "_id": { + "$oid": "6711d3aecd60fca157e5a601" + } + }, + { + "text": "Hes a good dude, really knowledgeable about his topic, but I was just so bored when sitting in his lectures. Besides that, his two exams and weekly quizzes are all really good reflections of one another which is great, and the questions are very textbook dense, so i'd recommend reading that more than the slides. He doesnt curve or allow makeups.", + "pos": 0.204, + "neu": 0.722, + "neg": 0.074, + "_id": { + "$oid": "6711d3aecd60fca157e5a602" + } + }, + { + "text": "I truly enjoyed taking him. Reading the textbook before class and reviewing the PowerPoint slides is helpful before taking the weekly quizzes. Every question that is on the exam or on a weekly quiz is brought up in class there are NO curve balls. He gives review sheets for the midterm and final. TAKE HIM!! Hes so sweet and caring.", + "pos": 0.229, + "neu": 0.731, + "neg": 0.04, + "_id": { + "$oid": "6711d3aecd60fca157e5a603" + } + }, + { + "text": "Such a smart and easy-going guy. His quizzes and exams are very textbook AND lecture heavy so get ready to read and pay attention. 100 question final is killer but very fair. He never gives any questions on things he hasn't taught. Just put in the work and you'll be fine!!", + "pos": 0.169, + "neu": 0.766, + "neg": 0.066, + "_id": { + "$oid": "6711d3aecd60fca157e5a604" + } + }, + { + "text": "Professor Ellmores class was super fun and informative!", + "pos": 0.555, + "neu": 0.445, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a605" + } + }, + { + "text": "I have never hated a psychology class, until I took his class. Its truly horrible, he doesn't care if you or your whole class is failing. Basically, do yourself a favor and never take this class. Midterm/Final is truly the worst part!", + "pos": 0.199, + "neu": 0.57, + "neg": 0.232, + "_id": { + "$oid": "6711d3aecd60fca157e5a606" + } + }, + { + "text": "This is not an easy A class. It requires you to keep up with the weekly readings because you have weekly quizzes that are not easy. However, if you keep up with the readings and attend class especially during recitation you will do good. The grading is based on weekly quizzes, midterm, finale ( multiple choice questions) and a 4 page paper.", + "pos": 0.043, + "neu": 0.884, + "neg": 0.072, + "_id": { + "$oid": "6711d3aecd60fca157e5a607" + } + }, + { + "text": "You can see from his lectures and his explanation of the material, and outside discussion how much of a smart man Professor Ellmore is. If you're interested in Psychology, he is able to roll everything into his one Cognitive class. Paper is relatively easy. Tests are a killer however, especially the 100 question final. Take him when you're ready.", + "pos": 0.156, + "neu": 0.781, + "neg": 0.062, + "_id": { + "$oid": "6711d3aecd60fca157e5a608" + } + }, + { + "text": "DO NOT TAKE THIS CLASS IF YOU'RE A FRESHMAN. He's a niceguy, and he's pretty chill. BUT, he assigns a new chapter each week but only covers a portion of that chapter in his lectures. So you MUST read the chapters to pass. Grading policy SUCKS!! Beware of weekly quizzes, tough midterm, SUPER TOUGH research paper, and 100 question final exam.", + "pos": 0.115, + "neu": 0.756, + "neg": 0.129, + "_id": { + "$oid": "6711d3aecd60fca157e5a609" + } + }, + { + "text": "A very interesting course. Although study materials are difficult, his cheerful mood creates a relaxed learning environment. Make sure you are interested in the course topic/materials. Then, you will get a great guidance!", + "pos": 0.435, + "neu": 0.514, + "neg": 0.051, + "_id": { + "$oid": "6711d3aecd60fca157e5a60a" + } + }, + { + "text": "Exams are tricky and each are worth 20% except the final which is 25% (100 questions - cumulative). You'll have a 4-6 page paper on a cog lab (have to buy a code) worth 10%. Lectures are extremely boring, and there is a quiz every class and recitation. He has this monotone voice that drags on all class. and one of the TA's was good for nothing..", + "pos": 0.091, + "neu": 0.829, + "neg": 0.08, + "_id": { + "$oid": "6711d3aecd60fca157e5a60b" + } + }, + { + "text": "This class is not easy at all and the professor didn't make it any better. There's a lot of material that must be read and the final test is cumulative. The 3 exams are tricky as well and his lectures are boring. Professor doesn't really have sympathy for any student. Just straight forward. Most people fail his class, so stay away.", + "pos": 0.095, + "neu": 0.733, + "neg": 0.172, + "_id": { + "$oid": "6711d3aecd60fca157e5a60c" + } + }, + { + "text": "This course is challenging and you must work hard for your grade. Overall, he is not a bad professor and he is very clear of what he wants from you. The tests are tricky but if you study enough you will get a good grade. I throughly enjoyed cognitive psychology and I am glad I did not drop out of this course like some people did.", + "pos": 0.282, + "neu": 0.688, + "neg": 0.031, + "_id": { + "$oid": "6711d3aecd60fca157e5a60d" + } + }, + { + "text": "Prepare to be highly frustrated throughout the semester. Each test are 20% each and the final 25% not including the paper you have to write. Lectures are extremely boring and his test are filled with tricky questions. Getting an A is close to impossible. He is hated by most students and he's earned it.", + "pos": 0.0, + "neu": 0.805, + "neg": 0.195, + "_id": { + "$oid": "6711d3aecd60fca157e5a60e" + } + }, + { + "text": "Nice professor but exams are painfully tricky. Reading the textbook, attending lecture and making flashcards will only earn you a C+", + "pos": 0.072, + "neu": 0.682, + "neg": 0.246, + "_id": { + "$oid": "6711d3aecd60fca157e5a60f" + } + }, + { + "text": "He is a fair professor, not too difficult and not very easy. Every thing is posted on blackboard, but coming to class is a must. The content can become complex but his lectures are pretty clear and well explained.", + "pos": 0.28, + "neu": 0.682, + "neg": 0.037, + "_id": { + "$oid": "6711d3aecd60fca157e5a610" + } + }, + { + "text": "He can teach, even though 50 minutes is not enough to cover everything for Cog Psych. His grading policy is annoying up. Everyone has a negative correlation and he refuses to curve, so essentially a lot of people will receive C+, even when working so hard for his class. He gives lots of work and his exams are tricky.", + "pos": 0.0, + "neu": 0.848, + "neg": 0.152, + "_id": { + "$oid": "6711d3aecd60fca157e5a611" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3aecd60fca157e5a613" + }, + "professor_name": "Xing Su", + "rating": 3, + "department": "Engineering department", + "comments": [ + { + "text": "Didn't understand any of her lectures. Her English is by far the worst I've ever heard. Learned very little and got a zero on the final exam. Somehow I still got a B+.", + "pos": 0.0, + "neu": 0.886, + "neg": 0.114, + "_id": { + "$oid": "6711d3aecd60fca157e5a614" + } + }, + { + "text": "I didn't know python at all and never understood what she was saying. I literally have no idea how I got an A+ in the class. Make sure to have you code working for the final project because that's your entire grade.", + "pos": 0.052, + "neu": 0.899, + "neg": 0.049, + "_id": { + "$oid": "6711d3aecd60fca157e5a615" + } + }, + { + "text": "She is by far one of the worst teachers I've ever had the displeasure of having.", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d3aecd60fca157e5a616" + } + }, + { + "text": "At the end she was really nice but it was kind of hell to have to go to her class. It's really annoying when she can't explain something but you will just have to manage by bombarding her with questions. A lot of people struggle with python but you can still manage to get a decent grade. This class is only 1 credit too so", + "pos": 0.069, + "neu": 0.757, + "neg": 0.174, + "_id": { + "$oid": "6711d3aecd60fca157e5a617" + } + }, + { + "text": "This class is a 1 credit class. So it shouldn't be too much work. Compared to other ENGR101 professors shes pretty good. I would recommend her. But dont be late for her class. She takes tardiness very seriously.", + "pos": 0.176, + "neu": 0.766, + "neg": 0.058, + "_id": { + "$oid": "6711d3aecd60fca157e5a618" + } + }, + { + "text": "Honestly an easy A-", + "pos": 0.747, + "neu": 0.253, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a619" + } + }, + { + "text": "Very knowledgeable in her field of study. Try hard in her class and put in some effort and she'll give you an A.", + "pos": 0.0, + "neu": 0.94, + "neg": 0.06, + "_id": { + "$oid": "6711d3aecd60fca157e5a61a" + } + }, + { + "text": "Very good teacher. Compared to other Engr 101 professors. She is a blessing.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a61b" + } + }, + { + "text": "She is very nice and understanding. Convince her to not give the class the final and you should be good. Although I didn't learn much of coding, she doesn't expect you to be a master coder by the end of the semester.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a61c" + } + }, + { + "text": "She was an okay to less than a decent teacher. I felt like she was just there because she had to there. She had no interest in teaching the class. She even made a mistake on my transcript, giving me a B- and a bunch of other kids in my group a A-. I talked to her about it, she fixed. DO.. NOT.. TAKE.. HER!", + "pos": 0.099, + "neu": 0.834, + "neg": 0.068, + "_id": { + "$oid": "6711d3aecd60fca157e5a61d" + } + }, + { + "text": "Very Nice and Very Fair", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a61e" + } + }, + { + "text": "I got an A- in the class. All the sophomores I spoke to said this class is suppose to be an easy A. Well there wrong. She is a nice professor, but can't teach the material properly. She is a grad student and its her first time teaching so don't expect to be learn C++ right away.", + "pos": 0.089, + "neu": 0.877, + "neg": 0.034, + "_id": { + "$oid": "6711d3aecd60fca157e5a61f" + } + }, + { + "text": "Nobody knows whats going on, everyone is lost. She seems smart, but not good at teaching. I guess she does not have much experience. Very confusing, and not organized at all.", + "pos": 0.051, + "neu": 0.742, + "neg": 0.207, + "_id": { + "$oid": "6711d3aecd60fca157e5a620" + } + }, + { + "text": "I dont understand her grading policy. She is very nice but not when it comes to grading. My friend told me we all will get 100s, but we all ended up getting 88s-90s.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a621" + } + }, + { + "text": "I am a computer engineering major and I really wanted to learn how to master coding. She answers all the questions I had. But, most of the students all we did was just copy her coding notes from the board. Also, all I really learned is printing and assigning.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3aecd60fca157e5a622" + } + }, + { + "text": "She is very nice and understanding. She knows that coding is not easy to learn. If you cant understand something she'll try to explain it by the best of her ability. Don't know why she gave kids 89s when we had no assignments. Overall, good professors.", + "pos": 0.219, + "neu": 0.701, + "neg": 0.081, + "_id": { + "$oid": "6711d3aecd60fca157e5a623" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3afcd60fca157e5a625" + }, + "professor_name": "Steven Urkowitz", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Ye whole world of drama and dramatists and playwrights and theater-goers lend me your eyes. Adhere to the one dictum expounded by Prof. Urkowitz and your interest and appreciation of drama will soar: \"Drama is the art of significant juxtaposition.\" Take heed and be amazed. I need say no more. (An Tinceir Idir-Naisiunta - International tinker.)", + "pos": 0.175, + "neu": 0.791, + "neg": 0.034, + "_id": { + "$oid": "6711d3afcd60fca157e5a626" + } + }, + { + "text": "The coolest professor I've ever had! I'll never forget his stories about his childhood in the Bronx. This class always put a smile on my face. The readings we covered were mostly interesting. The play he produced was also fun. He retired after this semester and will be missed.", + "pos": 0.221, + "neu": 0.741, + "neg": 0.038, + "_id": { + "$oid": "6711d3afcd60fca157e5a627" + } + }, + { + "text": "Amazing prof, really an outstanding and down-to-earth guy. His classes are hilarous and interesting to say the least, and the course workload is definetly manageable. Just do the reading and come to his class and you'll do great. I really miss his class, good times. Btw, I give him a hot rating b/c he was pissed that not one person rated him hot.lo", + "pos": 0.223, + "neu": 0.701, + "neg": 0.076, + "_id": { + "$oid": "6711d3afcd60fca157e5a628" + } + }, + { + "text": "Prof Urkowitz really goes out of his way to do the best job that he can, and yet is a human being in the process. He is a stellar professor.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a629" + } + }, + { + "text": "Incredible professor. You won't learn just the facts about a book, you'll learn about life and look at things in a new perspective. He's so funny and so real, you will definitely enjoy his class.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a62a" + } + }, + { + "text": "HE IS THE BEST!I remember once I was so upset and I enetered his class almost crying but I came out laughing.He is FUNNY! He cares and respects his students and u learn alot from his real life stories of his childhood etc.But teaches u the stuff required for class as well... in a fun fun way.", + "pos": 0.312, + "neu": 0.635, + "neg": 0.053, + "_id": { + "$oid": "6711d3afcd60fca157e5a62b" + } + }, + { + "text": "Excellent professor", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a62c" + } + }, + { + "text": "Great Teacher, very helpful, just a great guy who understands what itys like to be a student.", + "pos": 0.515, + "neu": 0.485, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a62d" + } + }, + { + "text": "The best teacher I have ever had. He has it all. He is very motivating and funny. I thought this class was going to be boring and a lot of work. Its a lot of reading but he clarifies everything and his quizzes are give aways. A definte A if you go to class and do the papers they are easy though", + "pos": 0.185, + "neu": 0.791, + "neg": 0.023, + "_id": { + "$oid": "6711d3afcd60fca157e5a62e" + } + }, + { + "text": "One of the best professor I have ever had at City College.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a62f" + } + }, + { + "text": "kick ass", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d3afcd60fca157e5a630" + } + }, + { + "text": "This class i definitely enjoyed a lot. I had a great experience learning with Prof. Urk. He's cool.", + "pos": 0.47, + "neu": 0.53, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a631" + } + }, + { + "text": "He made the class fun and went out of his way to make the students enjoy learning. We acted, sang and had fun in the class- while learning.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a632" + } + }, + { + "text": "This guy is a really great teacher. He really enjoys his job, and his performance in the classroom reflects that. Some people take him for granted, but that is there own loss. In his class you have the opportunity to learn a great deal and get an easy A, the class was well worth it with him!", + "pos": 0.329, + "neu": 0.632, + "neg": 0.039, + "_id": { + "$oid": "6711d3afcd60fca157e5a633" + } + }, + { + "text": "great teacher. really easy...1 big reflection paper where almost everybody gets an A on..easy quizzes...and easy final", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a634" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3afcd60fca157e5a635" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3afcd60fca157e5a637" + }, + "professor_name": "Ria Banerjee", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "One of the first professors I had while I was at CCNY. Her insight was vital in my development as an academic writer, its been 13 years since I had her as a professor and all I can remember is her level of care and her GORGEOUS eyes! They would put me in a daze every time, she was definitely my WCW more time than I can count. Perfection...", + "pos": 0.206, + "neu": 0.773, + "neg": 0.021, + "_id": { + "$oid": "6711d3afcd60fca157e5a638" + } + }, + { + "text": "The material of her course can be strenuous at first, but if you ask for assistance, she does take time out of her day to help you. Warning: she is a tough cookie. If you whine, she will dismiss you. However, if you take the class seriously enough to be an actual adult and do what needs to be done, she will be on equal ground with you. Love her!", + "pos": 0.112, + "neu": 0.764, + "neg": 0.125, + "_id": { + "$oid": "6711d3afcd60fca157e5a639" + } + }, + { + "text": "Great professor! She is super cool and super nice. Harsh grader. She expects a lot from her students. You do 6 screening journals, a mid term, no final, 2 short papers and one 8-10 pg paper. Do them all and you will pass. I recommend everyone to take her class!", + "pos": 0.299, + "neu": 0.625, + "neg": 0.076, + "_id": { + "$oid": "6711d3afcd60fca157e5a63a" + } + }, + { + "text": "I took her Film History I course while she was teaching at Marymount Manhattan College. She has a clear passion for the subject and it made class and discussion enjoyable. Also, her off-beat jokes weren't for everyone but I thought they were hilarious. Awesome professor. Highly recommend.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a63b" + } + }, + { + "text": "Ria is an amazing professor! She's a smart woman who demands her work & knows how to get it. She is quite a character, & she's very attractive so that's a bonus. We would spend 1.5 hours watching a film then the rest of the class analyzing it, & discussing it along with the reading from the previous night. Do her work, participate, and write well!!", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a63c" + } + }, + { + "text": "She knows her stuff but she tries hard to be cool...She curses a lot like that would make her seem young or idk...Not clear what she wants on her papers and since she is passionate about the subject, she expects you to be the same....really hard grader and sometimes really annoying...", + "pos": 0.177, + "neu": 0.709, + "neg": 0.113, + "_id": { + "$oid": "6711d3afcd60fca157e5a63d" + } + }, + { + "text": "Highly intelligent professor who know what shes talking about. Almost too good in English lol. She has high expectation in your writing. Not an easy grader.", + "pos": 0.263, + "neu": 0.664, + "neg": 0.073, + "_id": { + "$oid": "6711d3afcd60fca157e5a63e" + } + }, + { + "text": "Very intelligent and delightful. She has her way with words and makes english class to look forward to. Requires a lot of reading and papers but if you do all the work with effort then you should be fine. She's very friendly and down to earth, will go out of her way to help students.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a63f" + } + }, + { + "text": "Loved her!! Very helpful. Way too energetic for having a class so early in the morning. Think she's hopped on coffee. Makes you really think! Workload is very heavy so if you're taking classes that require lots of reading...i wouldn't go for her. Papers are ridiculously long. Very friendly. Goes out of her way to help you understand the material.", + "pos": 0.231, + "neu": 0.736, + "neg": 0.033, + "_id": { + "$oid": "6711d3afcd60fca157e5a640" + } + }, + { + "text": "Really friendly and interesting. The only drawback is that her papers are pretty long, compared to previous professors. No textbook, only books you could easily get from a store or the library. Other course materials were online, such as excerpts.", + "pos": 0.245, + "neu": 0.711, + "neg": 0.045, + "_id": { + "$oid": "6711d3afcd60fca157e5a641" + } + }, + { + "text": "I gotta say she is a extemely philosophical, intelligen,t and very hot. If i was a few years older I would date her.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a642" + } + }, + { + "text": "She is awesome! The class isn't hard and if you do your work it will be fine. She is extremely helpful. I would love to take another class with her.", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a643" + } + }, + { + "text": "its alot of reading and writting. she can become a pain in the ass and her voice becomes very irry and annoying as the semester passes. she is not funny at all. she sound cool and tries to act cool but she is not cool at all. at the end of the semester she finaly tells you that she was acting cool and that she is not cool!!ouch", + "pos": 0.081, + "neu": 0.776, + "neg": 0.144, + "_id": { + "$oid": "6711d3afcd60fca157e5a644" + } + }, + { + "text": "She's cute and likable and very enthusiastic. She gives out way too many essays and she's not an easy grader. She gives out very roundabout and long answers for all questions but she is willing to help in most cases. Overall she's a good teacher.", + "pos": 0.218, + "neu": 0.75, + "neg": 0.032, + "_id": { + "$oid": "6711d3afcd60fca157e5a645" + } + }, + { + "text": "Very friendly teacher, always in a happy mood. Very helpful all the time. Participate in her class. Enjoyable class", + "pos": 0.468, + "neu": 0.532, + "neg": 0.0, + "_id": { + "$oid": "6711d3afcd60fca157e5a646" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3afcd60fca157e5a647" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b0cd60fca157e5a649" + }, + "professor_name": "Katherine Chen", + "rating": 4.1, + "department": "Sociology department", + "comments": [ + { + "text": "this professor is a hard grader, dont take this class. Her as a person, she is not so bad tries to help, but her grading rubric is hard and specific and assigns big assignments that counts for a klot of your grade", + "pos": 0.092, + "neu": 0.846, + "neg": 0.062, + "_id": { + "$oid": "6711d3b0cd60fca157e5a64a" + } + }, + { + "text": "Professor Chen is a wonderful sociology professor! Her insights and experiences were well received by the class, and she's very understanding of students' progress in the class!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a64b" + } + }, + { + "text": "First off, this class requires so much reading about really specific topics related to her research. But Professor Chen is such an amazing professor. She goes out of her way to make sure her students are comfortable. During the pandemic, she is my most lenient professor and gave me several extensions when I was struggling.", + "pos": 0.226, + "neu": 0.721, + "neg": 0.053, + "_id": { + "$oid": "6711d3b0cd60fca157e5a64c" + } + }, + { + "text": "She teaches about organizations and what different theorists have to say about them. Make no mistake - this is a sociology class with little emphasis on NYC. She gives 20 page readings for every class and once a week you have class discussions on the reading. Although you can get away with not reading. The readings are cool if you bother to read it", + "pos": 0.064, + "neu": 0.901, + "neg": 0.035, + "_id": { + "$oid": "6711d3b0cd60fca157e5a64d" + } + }, + { + "text": "Professor Chen is one of the best professor in the sociology department. She trully cares about her students, gives excellent detailed feedback, and knowledgeable. She always has time after class to help students and goes out of her way to make the lectures clear and specific. We conducted our own research and a survey in this class.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a64e" + } + }, + { + "text": "She makes you work for a good grade, but totally worth it. I learned so much this semester. She gives insightful feedback and is caring. Take her class if you genuinely want to/ready to learn and read cool excerpts, otherwise you might find the course load heavy.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a64f" + } + }, + { + "text": "She is a great professor, very lenient with grading if you just do a good job on your work. Shes also very understanding and kind. She just gives A LOT of reading and work. There was a lot of stuff to do for her for a FIQWS class, and the course itself was boring. If I had known this class would be so much work, I wouldn't have taken it.", + "pos": 0.162, + "neu": 0.809, + "neg": 0.029, + "_id": { + "$oid": "6711d3b0cd60fca157e5a650" + } + }, + { + "text": "My favorite sociology professor! Her readings are very challenging and assigns HW for every class. Her HW is usually a short write up based on the readings. She does not have exams. Shes quirky and has an interesting humor. I recommend taking her, be warned that her readings are challenging . She is also very lenient and understanding.", + "pos": 0.24, + "neu": 0.729, + "neg": 0.031, + "_id": { + "$oid": "6711d3b0cd60fca157e5a651" + } + }, + { + "text": "She is an excellent professor who genuinely cares about her students. She is very understanding and nice. She gives good feedback on all assignments, homework included. This course was a 4 credit course and so she gave alot of work... We had to go out and actually conduct field research. Only take the course if you are truly interested in sociology", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a652" + } + }, + { + "text": "Professor Chen made the class engaging by relating organizational sociology to the interest of the students. The class was a lot of work, but if you pull your own weight there shouldn't be any issues with your grade. The course is truly interesting, however, if you are not into sociology it's better to take another section for this course.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a653" + } + }, + { + "text": "She was amazing professor. Very nice and approachable. Very well versed in the literature. If you dread sociology take her she will make your college life easier.", + "pos": 0.326, + "neu": 0.593, + "neg": 0.081, + "_id": { + "$oid": "6711d3b0cd60fca157e5a654" + } + }, + { + "text": "Chen is a knowledgable professor who has high expectations for students. You will need to read quite a bit & write a lot. Essays need to be highly detailed (points get deducted if you miss information). She gives out ppt slides as lecture notes. The slides are very useful for papers. You will need to work for your grade but I feel it is worth it.", + "pos": 0.065, + "neu": 0.916, + "neg": 0.019, + "_id": { + "$oid": "6711d3b0cd60fca157e5a655" + } + }, + { + "text": "She assigns a lot of assignments and doesn't realize the work she takes 90% of our time to do. The class lessons are boring and she talks way too much. She does offer take home midterm and final but is a harsh grader. If I could go back, I would register for a different class and avoid her. Once you register, say goodbye to your social life.", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d3b0cd60fca157e5a656" + } + }, + { + "text": "I have never had a professor who overworks their students like she does. She bombards you with so much homework and unnecessary papers, which are not only difficult to do but consume all your time. She has nothing else to do but dedicate all her time to this class, which isn?t a requirement for SOC majors. Too much work for only 3 credits.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a657" + } + }, + { + "text": "This class was very time consuming. She is a highly knowledgable woman and might be one of the best in the field, however she is not an engaging professor. The take home exams assigned must be answered VERY specifically. Overall, you'll learn a lot but your GPA will suffer.", + "pos": 0.047, + "neu": 0.838, + "neg": 0.114, + "_id": { + "$oid": "6711d3b0cd60fca157e5a658" + } + }, + { + "text": "Had her my freshman year, she is great. Very serious, but knows a lot. She is always available during her office hours and open to discuss anything with the students. Extremely helpful! Took sociology with her, the course itself has lots of readings, but once you start reading it seems interesting. Should take her, she is very nice.", + "pos": 0.213, + "neu": 0.768, + "neg": 0.019, + "_id": { + "$oid": "6711d3b0cd60fca157e5a659" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b0cd60fca157e5a65b" + }, + "professor_name": "Youngsik Song", + "rating": 4.1, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "A great Professor. He cares for his students and is willing to make accommodations. One thing I'll always remember that he told me was, \"Just do your best.\" He does have a curve, but that shouldn't be an excuse to practice and study the already tough questions that will be done in class and on the exams. DO the H.W and whatever practice he gives.", + "pos": 0.102, + "neu": 0.854, + "neg": 0.044, + "_id": { + "$oid": "6711d3b0cd60fca157e5a65c" + } + }, + { + "text": "Amazing professor", + "pos": 0.792, + "neu": 0.208, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a65d" + } + }, + { + "text": "He is the GOAT. Probably one of the BEST EE teachers I have had. He is great at teacher and the exams are from his HW and class examples. He gives partial credits and does curve at the end. I got around avg in 3/4 exams and decent on the final and I got a B+. He is amazing, tho sometimes he will keep you past the class time.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a65e" + } + }, + { + "text": "He is one of the best Professor in GSOE.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a65f" + } + }, + { + "text": "Great professor!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a660" + } + }, + { + "text": "Professor Song is the most caring professor I have ever seen at CCNY. He is like the father of the electrical engineering department. When you need help or ask any questions, he is happy to help. I cannot emphasize how he is why I am still here.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a661" + } + }, + { + "text": "Hard class hard exams, amazing professor. Seriously from the bottom of my heart youll regret not taking him, hes super understanding. Grants extensions, curves superrrrr hard. Nice guy.", + "pos": 0.383, + "neu": 0.416, + "neg": 0.201, + "_id": { + "$oid": "6711d3b0cd60fca157e5a662" + } + }, + { + "text": "Professor Song is one of the few gems at CCNY, he's very caring and give extensions on homework, projects, and exams if the class really needs them. He gives great lectures and knows the material in electronics by heart. I did below average on the first 2 exams but good on the 3rd and felt okay on the final and got a B+. Great curve, great prof.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a663" + } + }, + { + "text": "Some professors at City College have to sit down at one of his lectures and take notes about his teaching style. He knows the materials by heart, he is patience and his test are extremely fair, he wont surprise you with something that he hasnt teach before like most of the other professors. Cannot wait to take electronics 2 with him.", + "pos": 0.1, + "neu": 0.842, + "neg": 0.058, + "_id": { + "$oid": "6711d3b0cd60fca157e5a664" + } + }, + { + "text": "He's a great professor, at least he is better than many at CCNY. Repeat the HW a couple of times, practice old material and read the book, the class itself is not easy. Take it seriously and you'll get a decent grade. Again is't not an easy class so put the time on it. Overall he helps students to do well. Just do your part.", + "pos": 0.154, + "neu": 0.761, + "neg": 0.085, + "_id": { + "$oid": "6711d3b0cd60fca157e5a665" + } + }, + { + "text": "Took him for both 241 and 342. He does tend to write quickly, so if you look away for 30 seconds, he might erase what you were about to copy. Uploads notes onto Blackboard. He may or may not collect homework, but do it anyway. Make sure to not only read the notes, but the book as well. Know how equations are derived. He made a 6:30 class enjoyable!", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a666" + } + }, + { + "text": "One of the tougher professors but if you actually listen in the class, you will learn. His class is all about effort. You put your best foot forward and he will work with you!", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a667" + } + }, + { + "text": "Nice guy but behind his smile meets more than the eye so dont take him easy the final was tough for most which cost me a grade that i didnt expect to get and no absolute curve", + "pos": 0.115, + "neu": 0.714, + "neg": 0.171, + "_id": { + "$oid": "6711d3b0cd60fca157e5a668" + } + }, + { + "text": "cool professor, just doesn't know how to do math. Has a horrible grading criteria as well.", + "pos": 0.211, + "neu": 0.622, + "neg": 0.167, + "_id": { + "$oid": "6711d3b0cd60fca157e5a669" + } + }, + { + "text": "He's alright. But I wished he was more serious with grading.", + "pos": 0.121, + "neu": 0.726, + "neg": 0.153, + "_id": { + "$oid": "6711d3b0cd60fca157e5a66a" + } + }, + { + "text": "By far one the best prof in the department good professor by far, excellent in city college and city college of technology.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a66b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b0cd60fca157e5a66d" + }, + "professor_name": "David Kiefer", + "rating": 2.2, + "department": "Astronomy department", + "comments": [ + { + "text": "Literally one of the worst professors I have had in a long time. It's an online class but he forgets how to use a computer. He only sends emails to the CUNY email address so beware. He is not accommodating but seems to expect his students to accommodate him. His lectures were long and lacked sustenance. Overall I would not recommend!!!", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d3b0cd60fca157e5a66e" + } + }, + { + "text": "His has terrible attitude, gets really angry if someone asks the same questions twice. Has the worst attitude Ive seen in a Professor. Would not recommend, materials are boring and he doesnt make them interesting either. You are on your own, his office hours are not flexible either. Dont care about students grade.", + "pos": 0.0, + "neu": 0.674, + "neg": 0.326, + "_id": { + "$oid": "6711d3b0cd60fca157e5a66f" + } + }, + { + "text": "Here is the secret tip: for exams, study questions from the textbook (he barely mentions it). IT 100% WILL BE ON THE TEST! There is a free copy of the textbook in the library. Also, go to class regularly (you will get huge bonus points later) and do the extra credit. This way you can get an easy A, even without much studying.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a670" + } + }, + { + "text": "There are 2 regular exams worth 30% and one final worth 40%. Attendance adds extra credit to your final score. Allows one sheet of notes for each exam, but even then is difficult. His exams are really all over the place. Not everything can be found in the lecture slides, you have to go through the textbook which sucks. Avoid this mans if possible!!", + "pos": 0.065, + "neu": 0.799, + "neg": 0.136, + "_id": { + "$oid": "6711d3b0cd60fca157e5a671" + } + }, + { + "text": "At first he seems like a cute passionate old man who just LOVES Astronomy, he's even in a club which he can't stop talking about. What sucks is that he gets very angry when students ask \"stupid\" questions. Makes me not even want to participate... He also has a lot of mistakes in his lectures. Why be a teacher if you don't like to answer questions.", + "pos": 0.178, + "neu": 0.643, + "neg": 0.179, + "_id": { + "$oid": "6711d3b0cd60fca157e5a672" + } + }, + { + "text": "Professor Kiefer is a good astronomy professor. Well his tests are hard and seems to expect us to know a lot, but he means well. Got a B in his class but I had to earn it. At least he gives extra credit", + "pos": 0.196, + "neu": 0.779, + "neg": 0.025, + "_id": { + "$oid": "6711d3b0cd60fca157e5a673" + } + }, + { + "text": "You dont have to come to class if you dont want to. He has a lot of mistakes in his lectures. Not very clear. 3 multiple choice tests and you can bring a cheat sheet. Powerpoints are very long, but he posts them on blackboard.", + "pos": 0.0, + "neu": 0.862, + "neg": 0.138, + "_id": { + "$oid": "6711d3b0cd60fca157e5a674" + } + }, + { + "text": "This professor should not teach intro to astronomy. Probably the worse professor I have experienced. He is not clear about the lectures even when asked for better clarification. At the end of the day, I am just grateful I passed the class. Would not recommend him at all.", + "pos": 0.105, + "neu": 0.764, + "neg": 0.131, + "_id": { + "$oid": "6711d3b0cd60fca157e5a675" + } + }, + { + "text": "Professor gives cheat spreadsheets you can use on test. However, still hard tests. I heard that students failed. I personally thought that lectures could be a lot more interesting than what he offers. Dont recommend.", + "pos": 0.07, + "neu": 0.701, + "neg": 0.229, + "_id": { + "$oid": "6711d3b0cd60fca157e5a676" + } + }, + { + "text": "Professor is passionate. 3 exams. Multipule questions. Gets angry sometimes when students ask questions. Long lectures. Not very interesting. Wouldnt recommend.", + "pos": 0.119, + "neu": 0.595, + "neg": 0.285, + "_id": { + "$oid": "6711d3b0cd60fca157e5a677" + } + }, + { + "text": "I tried very hard and barley passed Professor is passionate but gets tangents when students ask questions. Not so helpful.", + "pos": 0.09, + "neu": 0.695, + "neg": 0.215, + "_id": { + "$oid": "6711d3b0cd60fca157e5a678" + } + }, + { + "text": "Professor Kiefer might come off as cold and snappy sometimes, but he's a passionate professor who demands your effort and really does want you to learn. Attendance was semi-optional, the more absent you were the less you curve you got on your final grade. It'll basically make you or break you. Don't bother with the textbook, or get the old edition.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d3b0cd60fca157e5a679" + } + }, + { + "text": "three tests, that is it. they are confusing, even tho he allows one page cheat sheets most of the students are failing.", + "pos": 0.0, + "neu": 0.699, + "neg": 0.301, + "_id": { + "$oid": "6711d3b0cd60fca157e5a67a" + } + }, + { + "text": "This professor is passionate for astronomy yes, but severely lacks pulling college students interest. He gives many of opportunities for extra credit. But his class is boring, long, and uninteresting. Tests are confusing. I suggest taking another course.", + "pos": 0.274, + "neu": 0.554, + "neg": 0.172, + "_id": { + "$oid": "6711d3b0cd60fca157e5a67b" + } + }, + { + "text": "Nothing that was in lecture was covered on the test. Went off into tangents. No curve what's so ever. Super passionate about astronomy but definitely acted like everyone in the class wasn't just taking it for credits.", + "pos": 0.315, + "neu": 0.652, + "neg": 0.034, + "_id": { + "$oid": "6711d3b0cd60fca157e5a67c" + } + }, + { + "text": "Took him this summer. A great professor. You will learn a lot in his class. Can be tough, but he means well.", + "pos": 0.204, + "neu": 0.747, + "neg": 0.049, + "_id": { + "$oid": "6711d3b0cd60fca157e5a67d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b1cd60fca157e5a67f" + }, + "professor_name": "Shani Greenstein", + "rating": 5, + "department": "Foreign Languages Literature department", + "comments": [ + { + "text": "3rd class with Shani and she's amazing! One essay per film, but she's an easy grader. As long as you pay attention to the films you'll get a good grade. She's very understanding, if anything happens just communicate and shell work with you. 10/10 for any class she teaches.", + "pos": 0.182, + "neu": 0.79, + "neg": 0.028, + "_id": { + "$oid": "6711d3b1cd60fca157e5a680" + } + }, + { + "text": "As long as you put in effort you will get an A. She goes out of her way to meet with students multiple times a week for group study sessions and individual. Lots of extra credit. Quizes every week but she shows the quiz an hour before class in her study sessions. Extra credit for attending study group. 100/10. Shes a sweetheart", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a681" + } + }, + { + "text": "Shani is amazing! She makes learning a new language fun and easy. She is constantly giving out extra credit. She has study session 3x a week for EC and if you cant make it she'll meet with you at a time that works best with your schedule. Textbook is $5 and she provides it. If you show her that you're trying you will get an A in her class.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a682" + } + }, + { + "text": "Shani is a wonderful teacher. She takes a lot of the stress out of learning a new language and is generous with extra credit. I had a leg up when taking this course as I had prior knowledge of Hebrew, but seeing her so involved with the success of the other students was encouraging! Homework heavy and quizzes every week, but it's manageable.", + "pos": 0.216, + "neu": 0.759, + "neg": 0.025, + "_id": { + "$oid": "6711d3b1cd60fca157e5a683" + } + }, + { + "text": "Shani is a very great professor, her film class was great that her pick are usually interesting. Each day we come up with questions for the readings to ask, which are relevant to the film topic and deepens the understanding. a mid term and final which are just asking about your opinions on the films and how the plot could do better.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a684" + } + }, + { + "text": "Shani is a great professor, who cares about the students alot. Her lectures starts of with questions for the readings which typically are short, except a book. She really wants to give everyone an A, but she also does midterms and finals which is kinda difficult, but she will accept the answer as long as it make sense and you have participated.", + "pos": 0.116, + "neu": 0.844, + "neg": 0.041, + "_id": { + "$oid": "6711d3b1cd60fca157e5a685" + } + }, + { + "text": "Shani's film class is the easiest and lightest class ever. After every film, you write a 1000 word paper giving your reaction to the film. There is also a midterm and final. Shani is extremely nice and caring. She works with students when needed. If you have the opportunity to take this class, please do.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a686" + } + }, + { + "text": "A wonderful professor and the class was so enjoyable! Film analysis due after each film which were super simple plus a midterm and final.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a687" + } + }, + { + "text": "Shani is amazing! Taking her class is a must. She is funny and very understanding. She made me want to minor in Jewish Studies. There are plenty of opportunities for extra credit. In JWST31124, We watched films and discussed and wrote one page about it every week. The films were extremely interseting, TAKE HER!", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a688" + } + }, + { + "text": "I learned so much while taking this class. I had never watched a film in any language other than english before this class so it was really cool to see how much I learned about a culture and its people just by watching films. The class is really enjoyable. Shani was very helpful and understanding and made this class fun!", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a689" + } + }, + { + "text": "Shani is amazing! She is very sweet and wants her students to succeed in all classes she teaches. She gives very good feedback and is available outside of the classroom at all times. Take her classes, you wont regret it. You will learn a lot in a very friendly environment.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a68a" + } + }, + { + "text": "She is an amazing human being. Super young and understands what it means to be a student. She will do anything to help her student not only pass, but also get good grades. This is a tough class because of the language, but she makes it fun and you will learn if you do your homework. She gives a lot of extra-credit.", + "pos": 0.206, + "neu": 0.77, + "neg": 0.024, + "_id": { + "$oid": "6711d3b1cd60fca157e5a68b" + } + }, + { + "text": "If you're apprehensive about taking Hebrew with Prof. Greenstein, there is no need to worry at all. She's concise, straightforward, kind, very helpful and considerate of any circumstances students may be in. Expect to work and learn a lot in a short amount of time. Her teaching method allows for easy learning. I learned so much and I'm so grateful!", + "pos": 0.223, + "neu": 0.708, + "neg": 0.068, + "_id": { + "$oid": "6711d3b1cd60fca157e5a68c" + } + }, + { + "text": "I was really apprehensive about taking Hebrew but after the first class, I was no longer worried! The class was very informative and my grasp of the Hebrew language has increased dramatically! I learned so much more then I expected and I truly feel like I know Hebrew. I can now read write and speak Hebrew! The teacher is really sweet and helpful", + "pos": 0.268, + "neu": 0.697, + "neg": 0.035, + "_id": { + "$oid": "6711d3b1cd60fca157e5a68d" + } + }, + { + "text": "Phenomenal instructor. If you are wary of learning Hebrew because you think it is going to be \"too hard,\" think again. Shani encourages students to challenge themselves, and is supportive every step of the way. Tutoring helped me so much, and everyone is very supportive. You will cover a lot of material- and have fun doing it!", + "pos": 0.192, + "neu": 0.786, + "neg": 0.022, + "_id": { + "$oid": "6711d3b1cd60fca157e5a68e" + } + }, + { + "text": "Good class. The teacher is really nice. I learned a lot. It was a lot of work but it was worth it", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a68f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b1cd60fca157e5a691" + }, + "professor_name": "Michelle Valladares", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Shes a very kind and understanding professor which is rare- you wont feel nervous or stressed in her class. She cant be a bit confused herself in terms of what she assigns but the course was very interesting and she taught us a lot about Native American culture and life through interesting readings. Overall, shes sweet, good class as well.", + "pos": 0.286, + "neu": 0.67, + "neg": 0.044, + "_id": { + "$oid": "6711d3b1cd60fca157e5a692" + } + }, + { + "text": "I think Professor Valladares is a caring and knowledgeable professor. I did feel a little bit confused as to what she wanted from me as the student, and felt that she picked favorites. However I will say she's a interesting Professor and gives great books to read for assignments. She graded very few assignments along the way.", + "pos": 0.192, + "neu": 0.778, + "neg": 0.03, + "_id": { + "$oid": "6711d3b1cd60fca157e5a693" + } + }, + { + "text": "Professor Valladares has an infectious love of poetry. She taught me us how working within parameters of rhyme, rhythm and meter can help one to become more focused. Each week, she gave us a different structure to work with. Even if you write fiction or nonfiction, this class will help you become a better writer.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a694" + } + }, + { + "text": "Horrible and bias. She is an example of woman who believes her students are her captives for her political agenda.", + "pos": 0.0, + "neu": 0.786, + "neg": 0.214, + "_id": { + "$oid": "6711d3b1cd60fca157e5a695" + } + }, + { + "text": "Great teacher! Knows a lot and very inspiring. I recommend her!", + "pos": 0.569, + "neu": 0.431, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a696" + } + }, + { + "text": "Great professor!! Very inspiring!! She will work with you and help you on areas you need it.", + "pos": 0.441, + "neu": 0.559, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a697" + } + }, + { + "text": "very cool and understanding", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a698" + } + }, + { + "text": "She emphasizes writing well in her class. The vast majority of your grade are your essays. She is an easy grader.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a699" + } + }, + { + "text": "Valladares is a great professor that teaches with passion and clarity. She helps the class to understand and interpret poetry and she encourages participation. Very good Prof....", + "pos": 0.468, + "neu": 0.532, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a69a" + } + }, + { + "text": "This class was interesting and great for anyone who likes poetry. she is very understanding and helpful and i think it is because she is organized and clear", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a69b" + } + }, + { + "text": "Shes such a sweetie, and shes very creative with coming up with ideas for her students stories. My only issues is not writting about death, love and hate...but oh well", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a69c" + } + }, + { + "text": "She's a great professor as well as English adviser...The background information she brings in on the stories is interesting and helpful...very interested in helping students write better...I highly recommend any class she teaches.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d3b1cd60fca157e5a69d" + } + }, + { + "text": "Ms. Valladares is a great teacher. She is very helpful and understanding. She selects very good stories for the class (and I dont like to read much)The class only gets boring when the students dont participate. Overall it was a great class.", + "pos": 0.264, + "neu": 0.656, + "neg": 0.08, + "_id": { + "$oid": "6711d3b1cd60fca157e5a69e" + } + }, + { + "text": "Very encouraging and helpful; challenging but casual. Always constructive with comments, great to talk to outside of class (and I'm shy!. Her personality, ideas on reading/writing, make English COME ALIVE. It is not so much about structure, but finding your own role in English.", + "pos": 0.317, + "neu": 0.64, + "neg": 0.043, + "_id": { + "$oid": "6711d3b1cd60fca157e5a69f" + } + }, + { + "text": "Sensentive towards students efforts and works. Encourages you with your strenghts and tries to strenghens your weak areas. Makes you challenge your writing skills to become a better writer as well as reader.", + "pos": 0.229, + "neu": 0.698, + "neg": 0.072, + "_id": { + "$oid": "6711d3b1cd60fca157e5a6a0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a2" + }, + "professor_name": "Arthur Spielman", + "rating": 2.4, + "department": "Psychology department", + "comments": [ + { + "text": "Great Professor with lost of experience and knowledge.", + "pos": 0.331, + "neu": 0.484, + "neg": 0.185, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a3" + } + }, + { + "text": "He looks nice, but seems to be fake. His class was rather confusing than difficult. He is a therapist not a teacher.", + "pos": 0.064, + "neu": 0.607, + "neg": 0.329, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a4" + } + }, + { + "text": "This is the most disorganized class. None of the TAs are on the same page so they all have different rules & are not fair. Plus the professor so rambles so you don't learn much. This is the worst class I've taken at CCUNY", + "pos": 0.0, + "neu": 0.827, + "neg": 0.173, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a5" + } + }, + { + "text": "WORST PROFESSOR EVER. He is SO highly disorganized. Each TA has different rules for their classes & are unfair. All the quizzes are purely on the text. You will get NO help & will have to learn tedious material on your own.if you get forest as a TA, RUN. DO NOT TAKE THIS COURSE. I cry after every quiz :|", + "pos": 0.0, + "neu": 0.727, + "neg": 0.273, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a6" + } + }, + { + "text": "This man.. you can tell he's a sweetheart. But as a professor, just no.. no no no. Disorganization at it's finest. No structure in the class. One of those people youd feel bad for saying something mean about cause hes just so nice. Tests are ridiculous idk where he got the questions from cause it def wasnt from lectures!", + "pos": 0.133, + "neu": 0.697, + "neg": 0.17, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a7" + } + }, + { + "text": "Horrible teacher. Has no organization. Very knowledgeable just can't teacher it in an organized manner. 2 tests, 1st is so hard, the avg grade was in the low 30's but he curve, 2nd was easier but still hard. Does not tell you what will be on the exam. I would never take a class with him. I got a B+ but you have to study hard to get a good grade.", + "pos": 0.094, + "neu": 0.782, + "neg": 0.125, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a8" + } + }, + { + "text": "Worst teacher. No organization. Notes are all over the place and is off topic alot. His reviews for the test are a joke. I would avoid him. Hes a really nice guy just has no organization/structure when it comes to teaching. I would never take him again.", + "pos": 0.093, + "neu": 0.719, + "neg": 0.188, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6a9" + } + }, + { + "text": "Nice guy horrible teacher. His notes are horrible and is all over the place. He has no organization and no structure. He rambles on during class then rushes at the end and jams all the information in at once. Only have two exams and if you mess up on one your screwed. His reviews for the test suck as well. I would avoided him. Nice guy bad Teacher", + "pos": 0.086, + "neu": 0.625, + "neg": 0.289, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6aa" + } + }, + { + "text": "Prof. Spielman is a character! He's very much into his specialty - insomnia, but his class is very interesting and he has some funny stories. No papers are given, but his exams are a hot mess! Make sure you study everything b/c he does NOT hand out a study guide - he just wants you to ask him questions about what you didn't quite catch. A hot mess!", + "pos": 0.126, + "neu": 0.714, + "neg": 0.159, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6ab" + } + }, + { + "text": "This is not about interpreting dreams. This class is really about sleep disorders and Prof. Speilman really knows his stuff. This class is not difficult. Take notes and use them to study. Many in class are not very bright and there is a curve. Take advantage of learning from this expert in the field of sleep disorders!", + "pos": 0.066, + "neu": 0.851, + "neg": 0.083, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6ac" + } + }, + { + "text": "Useless. The class was called Psychotherapy and he constantly spoke as if he was teaching a sleep/dream course. Off-topic 99% of the time. He tested the material of the class but didn't teach it. Very unorganized. He's nice and knows his stuff but is lost on where/how to teach it. Two tests. Easy to pass if you're a psych major.", + "pos": 0.115, + "neu": 0.814, + "neg": 0.07, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6ad" + } + }, + { + "text": "Not very structured, class name had nothing at all to do with it. I hated every second of it and so did everyone else! If this class has to be taken, I would suggest you demand another teacher who is not going to talk and connect everything about sleep. It is science of behavior not sleep class.", + "pos": 0.0, + "neu": 0.902, + "neg": 0.098, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6ae" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6af" + } + }, + { + "text": "Insomnia class is easy - no tests just a presentation and a final paper. He's very nice, but disorganized. No need to buy textbook, he uses articles only.", + "pos": 0.116, + "neu": 0.665, + "neg": 0.22, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b0" + } + }, + { + "text": "I LOVED HIM, HE IS COMPASSIONATE AND VERY CARING. HE SOMETIMES GOES OFF THE SUBJECT AND YOU ARE FORCED TO LISTEN ABOUT HIS PATIENTS BUT AS A FUTURE PSYCHOLOGIST I FIND IT USEFUL.", + "pos": 0.262, + "neu": 0.689, + "neg": 0.049, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b3" + }, + "professor_name": "Kaliappa Ravindran", + "rating": 3, + "department": "Computer Science department", + "comments": [ + { + "text": "He is amazing and his lectures teach us about the real world of Computer Engineers. He lives in New Jersey. He gave take home exams and projects. I had him for Senior Design I and II and both of them I got B+'s. He is amazing. I really liked the way he interacts with students. Sometimes, he is also funny. Wonderful guy.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b4" + } + }, + { + "text": "I am surprised to get this grade but it is ok. Class is disorganized and professor does not hold office hours. I wrote much code for the project and actually really put a lot of hard work in thinking everything thru. I hope he gave it a read before deciding on a grade, but either way- distributed systems are a very important topic.", + "pos": 0.113, + "neu": 0.825, + "neg": 0.063, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b5" + } + }, + { + "text": "I took this Prof in his Saturday section that's once a week for 2.5hrs. He lectures for 2.5 hrs straight with no break. After 30-40 minutes you start to lose focus and can't keep up. Prof has 3-4 slides he uses for a presentation. They're not helpful as they'll stuffed with information and Prof likes to draw everywhere and it's hard to look back.", + "pos": 0.066, + "neu": 0.813, + "neg": 0.121, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b6" + } + }, + { + "text": "This professor is knowledgeable in computer networking. His lectures are a little dry, but there is a lot of information.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b7" + } + }, + { + "text": "Kaliappa's an OK professor at best. I feel like he could be good if he's more organized. He rarely responds to emails, didn't give us a clear syllabus and his writing skills is a mess. Expect to study from the textbook and critical thinking questions in his quizzes and test. His test and q's are definitely a lot diff from txtbk q's. Good luck", + "pos": 0.288, + "neu": 0.654, + "neg": 0.058, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b8" + } + }, + { + "text": "One of the worst professor ever i met.", + "pos": 0.0, + "neu": 0.631, + "neg": 0.369, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6b9" + } + }, + { + "text": "High Performance Network(Fall,14)-no course outline;No text book;No clue about project until the end of week 8;Midterm,final,report,paper all in last 3 weeks;Not punctual;No feedback on any exam/assignments;No review papers;Confusion with deadlines and time;Neither the professor nor the student knew what the end goal was.\"WORST\" course ever.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6ba" + } + }, + { + "text": "I am taking this guy now and so far I see that he doesn't really use the textbook at all. That is quite frustrating for me because his thick foreign accent paired with his sloppy handwritting make it hard to follow in class. But I have to say he is a VERY nice person - friendly and always smiles:) Also he repeats himself a lot which is helpful.", + "pos": 0.21, + "neu": 0.75, + "neg": 0.04, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6bb" + } + }, + { + "text": "He is a great professor, not to mention a great man in general. He teaches his materials with some excellent analogies that get through to you easily. You can pass with minimal effort.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6bc" + } + }, + { + "text": "Horrible...Professor is extremly nice..but what he teaches and then gives on the exams are completely different..horrible..", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6bd" + } + }, + { + "text": "Obviously a hard subject. He's very repetitive. Forget about taking notes b/c you can read his handwriting. You must know your prereq and study the text. He gave 1 quiz and 2 tests and several hw. Tests are not trivial. Overall, he's a nice prof and will try his best to help you. He made very interesting example to illustrate concepts.", + "pos": 0.19, + "neu": 0.73, + "neg": 0.081, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6be" + } + }, + { + "text": "I took operating system and networking with him. I have got b+. He is a fair professor. I won't say he is easy. I think if you follow his notes and use book as a reference you will do okay.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6bf" + } + }, + { + "text": "This guy is a nice professor. The only thing I didnt like about him was that he writes too sloppy on the board. Other than that, he is cool. I recommend taking this course with him, he is a good grader by the way.", + "pos": 0.203, + "neu": 0.756, + "neg": 0.041, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c0" + } + }, + { + "text": "This is a good Teacher.\r His exams are open book \r and it knows what he is\r talking about. He also try\r to make sure that his maassage\r get across.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c1" + } + }, + { + "text": "He's an ok prof that doesn't follow the book. If you're interesteing any operating system, you should read the book, and take the test.", + "pos": 0.087, + "neu": 0.913, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c4" + }, + "professor_name": "Jacob Russell", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "Definitely my favorite professor at BSU so far. Likes to form connections with students and have conversations between questions. Class is super laid back, one day of the week you will work on ALEKS and the other is group activities on Desmos. Homework is just your ALEKS time (5 hrs/week) and topic goal, and then one Desmos activity. cumulative", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c5" + } + }, + { + "text": "was an amazing teacher, he taught me math 133 but it wasn't an option. I loved Jacob and he was super funny and he was always there to help me. if I needed help he would be there to help me, emailed me took time after class Jacob helped me get my A", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c6" + } + }, + { + "text": "Professor Russell was one of the absolute best professors I've had. Math, for me, has been painful to say the least. Except in his class. I enjoyed his classes and became genuinely interested in his lectures. Math is clearly his passion, but if it's not yours don't worry he explains things really well & he's very organized on BB with test prep.", + "pos": 0.188, + "neu": 0.749, + "neg": 0.063, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c7" + } + }, + { + "text": "HORRIBLE !!!!!!! teaches well but super fast but does not care about his students at all.", + "pos": 0.309, + "neu": 0.459, + "neg": 0.232, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c8" + } + }, + { + "text": "One of the best Math professors at ccny; passionate about math and simplifies complex concepts nice and simple. Provides extra credit. Very helpful to go to his office hours if you're unsure about a topic. Very chill and friendly, and actually cares about the students; knows everyone's name by mid semester.", + "pos": 0.334, + "neu": 0.637, + "neg": 0.03, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6c9" + } + }, + { + "text": "He's awesome, take him. He's so passionate about math & makes sure that you understand the material before moving on. There's usually a quiz at the end of class (4-5 q's) on the material in the previous lecture. He tells you about them beforehand & even puts up practice questions on blackboard if you need extra help. There's also hw on webassign.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6ca" + } + }, + { + "text": "Lots of homework, great professor, replies to e-mails quickly, always there to help, make sure to do your homework and ask questions, great choice for Calculus!", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6cb" + } + }, + { + "text": "A very caring professor who knows how to teach. Always makes sure you understand before moving on. Lots of homework on Webassign and his own but also lots of extra credit opportunities. 3 exams of which I am not a huge fan because the questions/format is not what is seen on the final (but gives you a chance to fix your exam and boost your grade).", + "pos": 0.21, + "neu": 0.728, + "neg": 0.061, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6cc" + } + }, + { + "text": "One of the best professors I have ever experienced. He really knows how to teach the concepts of calc 1 and focuses on it moreso than just solving problems --which is amazing it makes you understand it more. He is really chill and is willing to help outside of class. His belief of teaching is clearcut and allows students to get some credit. Amazing", + "pos": 0.246, + "neu": 0.72, + "neg": 0.034, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6cd" + } + }, + { + "text": "Honestly one of the chillest professors. I think he's a grad student. Exams are easy because he gives review sheets that are similar and he really knows how to teach. A few extra credits, sometimes gives exam rewrites for extra credit. 3 in-class exams-drops one. Lots of homework, both written and webassign. If you have the chance, take him!!!", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6ce" + } + }, + { + "text": "he is very nice and caring he gives homework every class but its really good to review the materials and good source to study, gives a review sheet before every exam the questions are really useful he is available if you want extra help recommend him highly", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6cf" + } + }, + { + "text": "Honestly one of the best professors for math. Lectures are awesome, he really tries to the connect with the students if they're willing. However, you have to be willing to put in the effort if you want a nice grade. Do not slack off mid semester or you will be screwed. Overall professor is really chill and nice.", + "pos": 0.254, + "neu": 0.702, + "neg": 0.044, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6d0" + } + }, + { + "text": "Sometimes unclear within explanations although a great teacher. Grading is unusual. He cares and knows his math but still has room to improve...", + "pos": 0.291, + "neu": 0.657, + "neg": 0.052, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6d1" + } + }, + { + "text": "By far the best professor for math. His lectures are amazing and he really cares for his students. He is caring and really chill, but it does not mean you will pass the class without putting in a lot of work. If you are having trouble, I suggest you email him or ask questions. His explanations are very detailed.", + "pos": 0.138, + "neu": 0.808, + "neg": 0.053, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6d2" + } + }, + { + "text": "Teaches at a fast pace and will try to make time for questions, but can refuse to answer questions until the lesson ends. Had office hours but is difficult to visit closer to a test. Makes hard tests and grades harshly. He will not answer specific questions about the exam, so be ready. Taking his class was the worst experience in math. Period.", + "pos": 0.049, + "neu": 0.774, + "neg": 0.177, + "_id": { + "$oid": "6711d3b2cd60fca157e5a6d3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b3cd60fca157e5a6d5" + }, + "professor_name": "Constantine Jones", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "I was worried about taking the class because there's 2 different classes you can take for the credit. But I am so so glad that I did! Constantine changed my view on writing, inspired me to Continue writing and is just truly a gem in life. I wish there was more professors like them. If it's an option to take their class I would.", + "pos": 0.284, + "neu": 0.696, + "neg": 0.02, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6d6" + } + }, + { + "text": "Take any course he teaches. Constantine cares. They cares about their students success as well their students well being. You won't regret taking their class.", + "pos": 0.461, + "neu": 0.539, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6d7" + } + }, + { + "text": "Professor Jones is a warm and kind individual who cares about their students. The class is veeeeery easy and you're encouraged to participate everyday.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6d8" + } + }, + { + "text": "Professor Jones is one of the best professors Ive had. They are so caring, respectful, and considerate. They understood that we are going through difficult times and made sure to not bombard us with work. Wish I could take their class again.", + "pos": 0.342, + "neu": 0.614, + "neg": 0.044, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6d9" + } + }, + { + "text": "I was actually supposed to have a different professor for this class but they weren't able to facilitate it for personal reasons. Professor Constantine stepped in with such grace and transparency that I knew I was going to like this class from the very beginning. They are understanding, funny, and genuinely care about our success 15/10.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6da" + } + }, + { + "text": "Constantine is constant. He's always there with a smile. He's always accessible. He's always willing to work with you. His classes are always interesting. I would volunteer to come to this class on a day off. He makes working fun. I worked hard for this class but i enjoyed every minute. Can't wait to take his class again. Definitely recommend!", + "pos": 0.242, + "neu": 0.741, + "neg": 0.017, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6db" + } + }, + { + "text": "Great Professor I like his class, he is cool and respect everyone. Just 3 papers to write, I would take his another courses. I hope evey semester in his class.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6dc" + } + }, + { + "text": "Three papers and everyone should attend at least 1 time for the workshop, 2mins short presentation. Very nice Professor, interesting class, like his class very much.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6dd" + } + }, + { + "text": "Constantine Jones is truly an amazing professor. He's very caring and thoughtful to his students. He's very reasonable, so if you have any trouble always feel free to talk to him. He gives about 3-5 papers. No pop quiz. Just make sure to do your reading and participate. (but he doesn't force you to participate). I would def take him again. AMAZING.", + "pos": 0.248, + "neu": 0.706, + "neg": 0.046, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6de" + } + }, + { + "text": "Constantine made me realize my dream of becoming a college professor - that's how good he is. The way he genuinely cares for his students is something many CCNY teachers could learn from. He is inspiring, cool and so thoughtful. He gives thorough feed backs and is super understanding and definitely fun. Take his class, you'll love it!", + "pos": 0.386, + "neu": 0.599, + "neg": 0.015, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6df" + } + }, + { + "text": "I wanna be like Constantine when I grow up. And this is in no way implying that youre old. Hes one of the most encouraging professors Ive ever had. And his course reading choices were fabulous.", + "pos": 0.219, + "neu": 0.731, + "neg": 0.05, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e0" + } + }, + { + "text": "Definitely one of the best professors CCNY has. Hes caring and gives good feedback, makes you workshop your papers and give feedback to your peers. Id take his class again if I could!", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e1" + } + }, + { + "text": "Very clear on what he expects throughout the semester and on each paper, gives feedback on first drafts therefore you're set for the final draft. Always ask for additional deedback from him. Super nice, caring and understanding, do all the work, participate and you'll get an A. Great professor, that actually cares about his students.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e2" + } + }, + { + "text": "One the best professors at CCNY, definitely worth it. Gives great feedback and helps you.", + "pos": 0.608, + "neu": 0.392, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e3" + } + }, + { + "text": "He is truly a great instructor! You should take his class", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e6" + }, + "professor_name": "Yasmine Ouchikh", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "You neeeed to attend lecture but if you attend and take notes all of the answers will come from your notes. Very lenient with deadlines and assignments are easy. She's very nice and cares about her studtns", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e7" + } + }, + { + "text": "Just so confusing and very childish. Terrible class and very boring. Has quizzes, forums, reflections and exams. Would never recommend anyone to take and she should just stop teaching", + "pos": 0.0, + "neu": 0.606, + "neg": 0.394, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e8" + } + }, + { + "text": "Professor Yasmine is a very engaging teacher, and her spirit in the class allows for a fun learning experience. She holds many quizzes which are great ways to boost up your grade and some are given as a extra credit. Her tests are everything that her lectures entail, and she is always there if any questions need to be addressed.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6e9" + } + }, + { + "text": "Even though the course has quizzes, she drops the lowest two. She is extremely helpful during class, office hours and even though e-mail. VERY clear and interesting lectures. If I was majoring is psych I would definitely take more of her classes.", + "pos": 0.248, + "neu": 0.703, + "neg": 0.049, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6ea" + } + }, + { + "text": "Its a boring class but it is VERY easy to receive an A. Quizzes once a week that are 10 questions each. It sounds a lot but the questions are common sense. DO NOT buy the textbook because she posts everything on BB. She grades participation every class so as long as you comment or ask one time every class, you are good. Take the class to up GPA", + "pos": 0.12, + "neu": 0.858, + "neg": 0.021, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6eb" + } + }, + { + "text": "This professor is exceptionally nice. Her work isnt hard and if you show up to class and pay attention you are sure to get an easy A in her class. Be sure to participate though. This professor gives shy students the ability to email her a question or comment and still counts that towards their participation which is what I usually do.", + "pos": 0.198, + "neu": 0.754, + "neg": 0.047, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6ec" + } + }, + { + "text": "Very nice, crystal clear lectures and goes at a reasonable pace. Always available for help. Couldn't have asked for a better TA.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6ed" + } + }, + { + "text": "Yasmine always responded back to emails, and she was willing to clarify herself whenever there would be confusions. I emailed parts of my Fun Papers to her and asked her if they made sense, and she never failed to help. She is very fun and energetic in class, and she is passionate. One of the best TA's!", + "pos": 0.28, + "neu": 0.664, + "neg": 0.056, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6ee" + } + }, + { + "text": "Good teacher, very helpful and friendly.", + "pos": 0.759, + "neu": 0.241, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6ef" + } + }, + { + "text": "She answers question whether you ask during class or even by email. Her slides are posted on Blackboard so if you miss something during class, it will be on Blackboard. Gives quizzes the next class when the topic is completed. But overall I really enjoyed going to her class and I'm planning to go again for a different psy course.", + "pos": 0.076, + "neu": 0.902, + "neg": 0.022, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6f0" + } + }, + { + "text": "She gives a lot of quizzes and homework, but If you pay attention and stay on top of work you'll be fine. She's always available if you need help with anything.", + "pos": 0.218, + "neu": 0.739, + "neg": 0.044, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6f1" + } + }, + { + "text": "If you have the chance to take it with someone else, DO IT. She is not clear, repeatedly confuses herself, which made a lot of students suffer in understanding material, and gives way too many quizzes that can weigh your grade down, if you obviously are not understanding in the class. Its 4 credits, each session is 2 hrs long. Terrible professor.", + "pos": 0.091, + "neu": 0.786, + "neg": 0.123, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6f2" + } + }, + { + "text": "Good Person, not a good professor. Not clear, always goes back and corrects herself.", + "pos": 0.157, + "neu": 0.595, + "neg": 0.248, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6f3" + } + }, + { + "text": "Yasmine is very kind. The exams are a bit difficult, but if you study you should be okay. You only have to write one paper of your choice, so you have the chance to expand on a topic that you have an interest in. Her lecturers are clear, engaging and spark active discussion.", + "pos": 0.372, + "neu": 0.603, + "neg": 0.025, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6f4" + } + }, + { + "text": "Yasmine is extremely nice, she is always there to help. But she does give a lot of homework! If you keep up with that and participate you'll surely pass. The exams are fairly easy if you study and you only need to write 1 research paper, of your choice... so it's kind of interesting. She is the best.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d3b3cd60fca157e5a6f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b4cd60fca157e5a6f7" + }, + "professor_name": "Michel Dematteis", + "rating": 4.1, + "department": "Philosophy department", + "comments": [ + { + "text": "Professor DeMatteis was always sincere. Good teacher ... grades very fairly, if not leniently. Though classes were not particularly entertaining, they were not completely boring.", + "pos": 0.248, + "neu": 0.669, + "neg": 0.084, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6f8" + } + }, + { + "text": "Ugh. She's a terrible lecturer, she asks for students opinions and then gets angry if the opinion they give isn't what she wanted it to be, she has no idea how to structure a class, control the room, or respond constructively to questions or comments, and I get the impression she hasn't updated her syllabus in about 25 years.", + "pos": 0.028, + "neu": 0.802, + "neg": 0.169, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6f9" + } + }, + { + "text": "I hated this teacher. She was disorganized, bad at lecturing, and sometimes overtly offensive. Used the R-word in class. At one point used 'you must be a woman to get pregnant' as an example, and when several students pointed out that trans* people exist, she got defensive and said 'this isn't a gender studies class!' She should be fired.", + "pos": 0.016, + "neu": 0.748, + "neg": 0.237, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6fa" + } + }, + { + "text": "She's definitely a sweet lady. And even though I took a 3 hour long class of her's on Saturday, it didn't feel like torture. Not an east A though, you have to have the right mindset to understand certain things in the class.", + "pos": 0.214, + "neu": 0.744, + "neg": 0.041, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6fb" + } + }, + { + "text": "Just finished a semester with her and she was great. She is clear, helpful and understanding. Even with my problems and absences throughout the semester, she was understanding and fair. Uses e-mail for outside of class questions or concerns (a PLUS). Must do readings (which are not too MUCH to handle) so the course is not easy but not hard.", + "pos": 0.142, + "neu": 0.804, + "neg": 0.054, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6fc" + } + }, + { + "text": "She is the best in CCNY. If you really want to lear philosophy take it with the only professor that have passion for it. I encourage every student to take philosophy with Dematteis. She mad me love philosophy. The CCNY department should never let go a talented person likego away. Dematteis thank you for such a wonderful semester.(by E.M)", + "pos": 0.327, + "neu": 0.633, + "neg": 0.041, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6fd" + } + }, + { + "text": "Best teacher ever!!!!!", + "pos": 0.729, + "neu": 0.271, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6fe" + } + }, + { + "text": "The best professor in city college...highly recommend for everyone.", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a6ff" + } + }, + { + "text": "One of the best professors ever. She will go out of her way to help you out. Her classes are very interesting. I had her as a TA but I wish she was my Lecture professor. The readings can be a bit tough, but if you have to take Philosophy 30000, make sure u take it with her. She is organized and explains things well to you without getting angry/anno", + "pos": 0.194, + "neu": 0.784, + "neg": 0.022, + "_id": { + "$oid": "6711d3b4cd60fca157e5a700" + } + }, + { + "text": "She is a really nice and explains thing clearly. There are 10 papers (1 page each) due and they are pretty easy because its based on her lectures. The final is easier than her papers because it is very straight forward.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a701" + } + }, + { + "text": "I learned a lot in this class. Most of the readings were interesting. She's very clear and helpful (though a tad too opionated). The final wasn't difficult and the 10 papers were mostly easy.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a702" + } + }, + { + "text": "This professor is easy to pass, only need to write 10 papers over the course at 1 page each, and she let's you make up anything you missed, she's great for a professor that's working on her PHD, and does well on teaching the class, I highly reconmend her. A++++", + "pos": 0.159, + "neu": 0.803, + "neg": 0.038, + "_id": { + "$oid": "6711d3b4cd60fca157e5a703" + } + }, + { + "text": "This T.A. should be teaching the whole class. The actual teacher thinks he is a \"philosoper king\" (read Plato's Republic) when he's really just a teacher at CCNY. Dematteis is a breath of fresh air and you're extremely lucky to get her as your T.A.", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a704" + } + }, + { + "text": "Best prof.ever..This a class da by itself is meant to b boring lol however she's so enthusiatic and entertaining that her class becomes one's favorite.I tell u shes great.Good grader,available when needed.Only have to write 10 short papers (1 page each) and da will count as 70% ur grade final=30% PLUS 2 extra credit&she let u make up miss assigment", + "pos": 0.147, + "neu": 0.796, + "neg": 0.056, + "_id": { + "$oid": "6711d3b4cd60fca157e5a705" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b4cd60fca157e5a707" + }, + "professor_name": "Hasan Pekoz", + "rating": 4.3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He teaches well but his exams are extremely difficult. His grading is very harsh, you can fully know a topic but if you are a bad test taker this can heavily affect you. He also gets extremely frustrated when the class isn't participating.", + "pos": 0.027, + "neu": 0.663, + "neg": 0.31, + "_id": { + "$oid": "6711d3b4cd60fca157e5a708" + } + }, + { + "text": "class average for the first exam is 30.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a709" + } + }, + { + "text": "He is the best professor in the department! Exams are fair, and very related to the course. No surprises. You do need to practice though. It is a tough class, but he does his best to explain the material very well.", + "pos": 0.263, + "neu": 0.686, + "neg": 0.051, + "_id": { + "$oid": "6711d3b4cd60fca157e5a70a" + } + }, + { + "text": "Very good professor. Exams are fair, honestly if you think the exams are hard you didn't study enough. The course is difficult and the professor makes it easier. Fair grader a lot of things account for the grade so you have to really try to mess up", + "pos": 0.229, + "neu": 0.658, + "neg": 0.112, + "_id": { + "$oid": "6711d3b4cd60fca157e5a70b" + } + }, + { + "text": "Can explain concepts very well but grading is harsh and final exam is VERY heavily weighted. Homework is only good for practice. His exams are based off of the lectures and questions that are not in the textbook, so be ready. Unfortunately, still better than the other professor.", + "pos": 0.209, + "neu": 0.673, + "neg": 0.118, + "_id": { + "$oid": "6711d3b4cd60fca157e5a70c" + } + }, + { + "text": "He is the best at City College. Very good lecturer, and it is nice to have someone from the engineering community to teach. He is funny and also good looking:)", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a70d" + } + }, + { + "text": "Pekoz is great at explaining new concepts but always tries to end class early and cannot be contacted outside class time. However, he's still a good professor and is worth taking, especially in comparison to who else is available for deformables. Easy on the eyes too", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a70e" + } + }, + { + "text": "Pekoz is great at explaining new concepts and goes through problems carefully so everyone can understand. His tests are fair as well if you pay attention in class and read the textbook. The only downside is that he often ends class early when that time could be spent on learning the material and doesn't keep office hours.", + "pos": 0.151, + "neu": 0.756, + "neg": 0.092, + "_id": { + "$oid": "6711d3b4cd60fca157e5a70f" + } + }, + { + "text": "a great professor in comparison to the awful Professor Goshen. His exams are very textbook intensive and may have small surprises, but he helps you during the exam. You have to put in a lot of work to pass, but he will pass all, if not, most of the class. You don't have to attend his lectures to pass, but it will help.", + "pos": 0.154, + "neu": 0.817, + "neg": 0.028, + "_id": { + "$oid": "6711d3b4cd60fca157e5a710" + } + }, + { + "text": "Explains the material really well. His tests are very straight forward and doesn't throw anything strange at you! Reading the textbook and paying attention in class is key! Just skimming through the book and doing only practice problems won't help! And try doing problems from other books too. His homeworks and project are real easy.", + "pos": 0.152, + "neu": 0.732, + "neg": 0.117, + "_id": { + "$oid": "6711d3b4cd60fca157e5a711" + } + }, + { + "text": "Very straightforward. Explains things with real-life examples, and can be very entertaining. Reasonable partial credit on exams, and he does curve, but don't slack off, because he does fail a few people and CE 332 can be a bit challenging. Overall, a very enjoyable experience and I wish he taught other CE classes.", + "pos": 0.209, + "neu": 0.719, + "neg": 0.073, + "_id": { + "$oid": "6711d3b4cd60fca157e5a712" + } + }, + { + "text": "He is an adjunct, and he is really good at what he is doing for us. He explains class material with really life examples, and makes sure that you understand the material, even during the class. He is a really good teacher.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d3b4cd60fca157e5a713" + } + }, + { + "text": "He explains the concepts realy well in my opinion. His exams are not really super-straight forward, but no suprises in the exams either.. He is helpful, and very approachable..", + "pos": 0.154, + "neu": 0.764, + "neg": 0.082, + "_id": { + "$oid": "6711d3b4cd60fca157e5a714" + } + }, + { + "text": "He is a straightforward professor who does not throw anything strange at you. Everything he goes over appears on the exams, which are not as difficult as people in my class say they are. Take notes instead of relying on the ppt lectures and read the book (Seriously. Read it.). Put your best effort in the class and you should be fine.", + "pos": 0.142, + "neu": 0.833, + "neg": 0.025, + "_id": { + "$oid": "6711d3b4cd60fca157e5a715" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b5cd60fca157e5a717" + }, + "professor_name": "Brendan Costello", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Professor Costello is one of the best! It's obvious he has a passion not only for teaching but for literature and writing & is somewhat of a Renaissance Man. Informative, teach-savvy, communicative & encouraging. Very aware of current events and not living in a bubble, as some professors seem to be, which is a comfort in these times. Take him!", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a718" + } + }, + { + "text": "Amazing professor with an awesome sense of humor. Course consisted of 3 main assignment with maybe 2 or 3 mini assignments. Mostly workshops, so lots of reading and critiquing. He was enjoyable to have as a professor and I would take a class with him again if given the chance.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a719" + } + }, + { + "text": "He's easy to talk to. I love that students opinions are valued. But do the reading. I got so much from the selections of reading he gave us because it opened a new door for my own writing. He's easy to talk to after class and always willing to help if you need. I would take another class of his.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a71a" + } + }, + { + "text": "He is one of the best professors at City College. He's very helpful to students who want to learn and who are really interest in his class. If you want to develop your craft, and maybe your grammar, take him! You will not be disappointed.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a71b" + } + }, + { + "text": "Get ready to have your writing critiqued by your fellow peers (only happens twice though). Although it was out of my comfort zone, it really helped! Interesting readings. He gives great feedback to all you assignments and in detailed! 3 big writing assignments (beginning, midterm, and final). And the other assignments are easy feedbacks.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a71c" + } + }, + { + "text": "I have never had a more involved professor (coach.) Of course the course reader has things he likes. No one wants to teach what they dislike. To be a good writer means to be a critical reader. Read the material. His assignments are straight forward and simple. Good feedback.", + "pos": 0.176, + "neu": 0.705, + "neg": 0.119, + "_id": { + "$oid": "6711d3b5cd60fca157e5a71d" + } + }, + { + "text": "\"Coach\" Costello was great. I don't understand the people who really disliked him but he is helpful, open via e-mail for questions about any and everything. Yes, he's a little wild but he made class, reading and writing interesting. He gives 5 assignments, and you workshop twice (midterm and final). Your grades depend on these workshops.", + "pos": 0.201, + "neu": 0.769, + "neg": 0.03, + "_id": { + "$oid": "6711d3b5cd60fca157e5a71e" + } + }, + { + "text": "He's such a cool instructor; really smart & gives out pretty interesting course material. Extremely helpful in the revision process of assignments. I feel like I've improved so much as a writer from this course. Also, that comment about him complaining about his health condition was extremely rude and completely false. He has a great sense of humor", + "pos": 0.334, + "neu": 0.601, + "neg": 0.065, + "_id": { + "$oid": "6711d3b5cd60fca157e5a71f" + } + }, + { + "text": "This class could be boring at times, but if your just intrested in getting your work done this wont matter. He handed out about 5 assignments which were very clear on how to write them and all you had to do was be creative. I didnt see no difficulty in this class as long as you had an imagination and knew grammer. I would recomend him.", + "pos": 0.104, + "neu": 0.829, + "neg": 0.067, + "_id": { + "$oid": "6711d3b5cd60fca157e5a720" + } + }, + { + "text": "This class should be called Critical Reading. You have to read tons of stories, no workshops. He takes the fun out of creative writing and we only read what he likes. Do yourself a favor and take someonelse. Creative Writing is my concentration! But his class is the worse.", + "pos": 0.173, + "neu": 0.701, + "neg": 0.127, + "_id": { + "$oid": "6711d3b5cd60fca157e5a721" + } + }, + { + "text": "Some of the assignments are creative but the course is longwinded with boring jokes and complaints about his health and being in a wheelchair. On the first day he admitted he has verbal spasms, often rude to students and lots of profanity. Grading depends on his mood not base on content of your work. If you're a good writer don't waste your time.", + "pos": 0.165, + "neu": 0.702, + "neg": 0.134, + "_id": { + "$oid": "6711d3b5cd60fca157e5a722" + } + }, + { + "text": "Cool professor so long as you do the work which is actually pretty fun to do. Plenty of reading and he supplies most if it so you don't have to worry about spending a whole lot on books. Overall, take him,he rocks. Pretty funny too.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a723" + } + }, + { + "text": "He is a very helpful teacher. You dont have to worry about the grade at all, as long as you the work and follow the intructions.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a724" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b5cd60fca157e5a725" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b5cd60fca157e5a727" + }, + "professor_name": "Yiannis Floropoulos", + "rating": 3.8, + "department": "Political Science department", + "comments": [ + { + "text": "Had him as an adjunct professor two semesters ago. His lectures are really interesting, and he makes you want to investigate more when teaching poli sci.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a728" + } + }, + { + "text": "His lectures can get boring if you didn't sleep well. Hes funny tho and he always say things that make you question our government which is a good thing. Taking American Political Science means no textbook- he puts all the readings up on Blackboard. The quizzes are all take home except the final but he gives a review beforehand. TA's helped me too", + "pos": 0.059, + "neu": 0.871, + "neg": 0.07, + "_id": { + "$oid": "6711d3b5cd60fca157e5a729" + } + }, + { + "text": "He's awesome and funny and overall pretty cool. Make sure you do the readings and watch the documentaries and stuff because it matters. Try to get a good TA. Get stuff done and you'll pass no problem.", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a72a" + } + }, + { + "text": "He's a tough grader, more specifically so tough that he will confuse your own knowledge with plagiarism. If you do one thing wrong he has no sympathy and he will give you a failing grade despite. He rambles a whole lot, teaches rather quickly and goes off topic frequently.", + "pos": 0.0, + "neu": 0.751, + "neg": 0.249, + "_id": { + "$oid": "6711d3b5cd60fca157e5a72b" + } + }, + { + "text": "This class requires 4 take-home quizzes, which are questions based on readings. The first and second quizzes are ten pages each. The third quiz ends up with 16 pages, and the fourth quiz requires five pages. There is one in-class midterm and final. He is a responsible professor. However, he always wants us to do more work with boring readings.", + "pos": 0.037, + "neu": 0.923, + "neg": 0.041, + "_id": { + "$oid": "6711d3b5cd60fca157e5a72c" + } + }, + { + "text": "Amazing lectures, really funny, and very helpful with class materials during office house. He also is chill with helping you if you have other questions from other classes or for work/internships. If you read and follow directions he will help you be a more informed citizen, political scientist while getting a good grade. No reading bad grade", + "pos": 0.288, + "neu": 0.681, + "neg": 0.031, + "_id": { + "$oid": "6711d3b5cd60fca157e5a72d" + } + }, + { + "text": "This professor knows this field very well and engages with the students. He helped me on my paper for example and it is common to see a few students hanging out and talking during office hours. Its a group effort which I love. Everyone wants him teaching full time. Tough grader he will make you work for it.", + "pos": 0.138, + "neu": 0.839, + "neg": 0.023, + "_id": { + "$oid": "6711d3b5cd60fca157e5a72e" + } + }, + { + "text": "This class changed my life as I view the relationship that I have with the government was not the one I was thought to believe. Professor F gives so much information, empirical data, and backed-up case studies its remarkable. He is funny, very talented, and really cares about your development as a person and student.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a72f" + } + }, + { + "text": "Not an easy A but he is very smart and you will gain a lot from his lectures and experience. Must take (whatever he teaches) especially if you are majoring in political science.", + "pos": 0.213, + "neu": 0.745, + "neg": 0.042, + "_id": { + "$oid": "6711d3b5cd60fca157e5a730" + } + }, + { + "text": "Professor Floropoulos is one of the best at CCNY. His expectations are clear. He wants his students to learn and be ready for their careers, which only a few professors focus upon. He uses current day political events which make the class very interesting. He is very encouraging and in simple words, he's awesome. Would definitely take again.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a731" + } + }, + { + "text": "Prof F is the man. If you hate on him its because he doesn't take BS and calls people out. He is understanding, there for you, will break things down and gets real in class. All legit stuff too no propaganda for anyone. I'm trying to reach out to the Department to get him hired, take his class regardless.", + "pos": 0.045, + "neu": 0.895, + "neg": 0.059, + "_id": { + "$oid": "6711d3b5cd60fca157e5a732" + } + }, + { + "text": "Syllabus was accurate, new additions due to world events (Contemporary Comparative Class). Don't listen to comments below, one person got an F because they cheated on the Final exam and they were caught lol. Take class with him, he got me an internship at the UN like a boss. Really amazing lectures and links things up to contemporary examples.", + "pos": 0.139, + "neu": 0.812, + "neg": 0.049, + "_id": { + "$oid": "6711d3b5cd60fca157e5a733" + } + }, + { + "text": "Yiannis Floropolos does not follow the syllabus. Rambles a lot during lectures, no clarity what so ever. Lectures do not cover most of the materials on testassignments.", + "pos": 0.0, + "neu": 0.92, + "neg": 0.08, + "_id": { + "$oid": "6711d3b5cd60fca157e5a734" + } + }, + { + "text": "Yiannis Floropoulos is never prepared in his courses. Ramble throughout his lectures, and never is clear on anything he is teaching.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d3b5cd60fca157e5a735" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b5cd60fca157e5a737" + }, + "professor_name": "Jerrilyn Dodds", + "rating": 4.2, + "department": "Architecture department", + "comments": [ + { + "text": "Great professor- I can definitely say I learned a extensive amount in a short period of time. She is very understanding but expects a certain level of work and commitment. Overall very qualified, great credentials, kind person.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a738" + } + }, + { + "text": "I absolutely loved being taught by Jerri. Her class is demanding, but she is very caring and will absolutely push you to do your best. She's funny and makes the subject more accesible and interesting.", + "pos": 0.407, + "neu": 0.564, + "neg": 0.028, + "_id": { + "$oid": "6711d3b5cd60fca157e5a739" + } + }, + { + "text": "she dummy proofs everything for you.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a73a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b5cd60fca157e5a73b" + } + }, + { + "text": "Doesn't stop ranting about architecture, but then who should", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a73c" + } + }, + { + "text": "I think she is sexier than Vanessa Keith......I mean intellectually not appearances.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a73d" + } + }, + { + "text": "This lady knows her spam people! Somewhat too rara cheerleader, but overall an excellent prof with awesome creds.", + "pos": 0.439, + "neu": 0.499, + "neg": 0.062, + "_id": { + "$oid": "6711d3b5cd60fca157e5a73e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b5cd60fca157e5a73f" + } + }, + { + "text": "good proffesor gets the lesson across pretty interesting sometimes weirdly over enthusiastic and always touches her hair lol funny stuff but overall a good teacher", + "pos": 0.458, + "neu": 0.496, + "neg": 0.047, + "_id": { + "$oid": "6711d3b5cd60fca157e5a740" + } + }, + { + "text": "Her teaching manner is clear, animated and effective. Her style not only grabs your interest, but also drives you to look at architecture with new eyes.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a741" + } + }, + { + "text": "She is one of the best History of ARCH teachers in all ARCH depart. I mean, the lady is very orderly, her slides are always directly to the subject. I loved that class. But you have to do your part, so take notes..lots of notes, because he tests are essay style with lots of buildings to date.", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a742" + } + }, + { + "text": "great lecturer but she expects alot. be ready", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d3b5cd60fca157e5a743" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b5cd60fca157e5a744" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b5cd60fca157e5a745" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b6cd60fca157e5a747" + }, + "professor_name": "Anna Indych", + "rating": 3.3, + "department": "Art History department", + "comments": [ + { + "text": "she treats the class as if its a core class. she's a bit moody. She's kinda a hard grader. She doesn't allow students to go to the bathroom or leave the room unless its an emergency. She treats the class and students as if it were a high school class. She more fit as a high school teacher than a college class.", + "pos": 0.041, + "neu": 0.825, + "neg": 0.134, + "_id": { + "$oid": "6711d3b6cd60fca157e5a748" + } + }, + { + "text": "Her quiz is more like actual exam, which she will give around four or five in a semester. She will call it a quiz but we student call it test. It include two essays and three or four identifications of art work, and few short answer. She will give two paper in a semester where you will have to go to museum. Don't take her if you taking as elective.", + "pos": 0.027, + "neu": 0.973, + "neg": 0.0, + "_id": { + "$oid": "6711d3b6cd60fca157e5a749" + } + }, + { + "text": "Professor Indych is a great professor. She gives a format for her quizzes/tests beforehand so you know exactly what she'll ask. Pay attention and take notes. There are lots of quizzes, 2 papers, a midterm & final. Lowest quiz is dropped. Follow instructions for the papers. Participation is easy. There is no homework. If you need help, just ask her.", + "pos": 0.139, + "neu": 0.773, + "neg": 0.089, + "_id": { + "$oid": "6711d3b6cd60fca157e5a74a" + } + }, + { + "text": "She is passionate in what she teaches. She gives good feedback on quizzes, exams and papers. She is helpful and can be quite boring at times but then draws your attention back. She changed my view in art and I only took her class as an elective. Not easy A but worth taking her!", + "pos": 0.128, + "neu": 0.791, + "neg": 0.081, + "_id": { + "$oid": "6711d3b6cd60fca157e5a74b" + } + }, + { + "text": "Wonderfully informative and clearly she is inspired by the art she draws attention to. If you're an art history major, take her class. If you're not...your loss.", + "pos": 0.279, + "neu": 0.655, + "neg": 0.066, + "_id": { + "$oid": "6711d3b6cd60fca157e5a74c" + } + }, + { + "text": "WORST PROFESSOR IN CCNY. SHE IS BAD.SHE IS MEAN. SHE IS SCARY.", + "pos": 0.0, + "neu": 0.578, + "neg": 0.422, + "_id": { + "$oid": "6711d3b6cd60fca157e5a74d" + } + }, + { + "text": "APART FROM THE SUBJECT MATTER BEING WONDERFUL, PROF. INDYCH WAS VERY THOROUGH IN HER APPROACH. ASSTS WERE SPECIFIC, EXPLAINED THOROUGHLY, & FUN AFTER ALL. ALSO THE SLIDESHOWS & HANDOUTS MADE THE CLASS EASY TO FOLLOW. I REALLY ENJOYED THIS CLASS, PROF INDYCH'S ENTHUSIASM FOR LATIN AMERICAN ART, & THE INSPIRATION & ADMIRATION OF NEW ART & ARTISTS.", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d3b6cd60fca157e5a74e" + } + }, + { + "text": "Her class was easy, subject matter was fully talked through. Quizzes and tests were easy. As long as you had an intelligent opinion with a reason, your grade was good. Lots of memorizing. Dont be too intimidated by her bossiness and her control problems. stick with the class. easy A and interesting.", + "pos": 0.313, + "neu": 0.647, + "neg": 0.041, + "_id": { + "$oid": "6711d3b6cd60fca157e5a74f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b6cd60fca157e5a750" + } + }, + { + "text": "She is need of a good ego stroking. Had a nervous breakdown in our class. Knows her stuff, but insists that you need to do well in her class in order to be sucessful in Life. Don't waste your time or money, take another art history class...unless you like to kiss ass", + "pos": 0.221, + "neu": 0.683, + "neg": 0.096, + "_id": { + "$oid": "6711d3b6cd60fca157e5a751" + } + }, + { + "text": "I think she is a great professor. She is there to teach if you are interested. She cant baby step anyone. she is very informed in art and carries it up high...if that is being stuck up themn i would be too in her position.very interesting if you are into art..which i do, why else take art classes...", + "pos": 0.145, + "neu": 0.824, + "neg": 0.031, + "_id": { + "$oid": "6711d3b6cd60fca157e5a752" + } + }, + { + "text": "She is okay her class is based on memory and taking notes i have fallen asleep a few times but she makes sure you stay up by embarrassing you but she is pretty okay and you must take notes because her notes are on exams she is very clear so i recommand her ! good luck", + "pos": 0.306, + "neu": 0.625, + "neg": 0.069, + "_id": { + "$oid": "6711d3b6cd60fca157e5a753" + } + }, + { + "text": "Not a good teacher. Class is horrible, if you stay awake you deserve an A. Wont get it though. She teaches so boring and is full of herself cause she got her PHD in art. Who cares? Treats class like a bunch of preschool students. Grades very harsh. She'll give an A+ paper a C.", + "pos": 0.083, + "neu": 0.736, + "neg": 0.182, + "_id": { + "$oid": "6711d3b6cd60fca157e5a754" + } + }, + { + "text": "She is tough but fair, she insists you pay attention in class. If you can't drop out and get a job, it's college.", + "pos": 0.191, + "neu": 0.703, + "neg": 0.105, + "_id": { + "$oid": "6711d3b6cd60fca157e5a755" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b6cd60fca157e5a757" + }, + "professor_name": "David Harris", + "rating": 3.7, + "department": "Media Arts department", + "comments": [ + { + "text": "Harris is a great professor if you give him a chance. He expects you to read and participate in class, but all tests are based on the lectures so take good notes. You will know your stuff if you work to memorize the materials.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d3b6cd60fca157e5a758" + } + }, + { + "text": "i liked professor harris. however, a lot of things on the final test were not in the textbook, but from his lectures, so make sure to take lots of notes. there are class debates which you should get to like bc there are many of them. learned a lot from him and would take again.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d3b6cd60fca157e5a759" + } + }, + { + "text": "I enjoyed Professor Harris in previous classes, but for AdManage it's as if he just doesn't give AF. He doesn't lecture on course/test material at all. He tests on things he has never mentioned in class. There was only one question from the book on our midterm and one question based on class lecture. The rest...? I hope he cares more in Ad planning", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d3b6cd60fca157e5a75a" + } + }, + { + "text": "Harris is a real gem, the only professor who's made me consider a career in advertising. He's big on group work and participation. No class is ever boring with him as he always makes jokes but keeps his lectures informational. The textbook is a must with him, all test questions come directly from it. Not a tough grader, if you do it his way ;)", + "pos": 0.079, + "neu": 0.874, + "neg": 0.047, + "_id": { + "$oid": "6711d3b6cd60fca157e5a75b" + } + }, + { + "text": "Harris made me love advertising. He is an amazing professor and you will learn something. I never saw myself wanting to work in advertising until I had him. You do have to read so keep up on it. But you will love this class. One downfall you can't pick your groups.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d3b6cd60fca157e5a75c" + } + }, + { + "text": "Professor Harris is an advertising genius. If your serious about the path of Advertising, take him. No midterm or tests, the whole class is spent working on the final. Coursework is decent, and fairly easy grader. Harris is hilarious and enjoyed his lectures in his class. He's always available outside of class, and is always glad to help you.", + "pos": 0.208, + "neu": 0.742, + "neg": 0.05, + "_id": { + "$oid": "6711d3b6cd60fca157e5a75d" + } + }, + { + "text": "Professor Harris is great, I'm not usually a slacker in class and turn in everything I can, but even when those accidents happen like forgetting an assignment's deadline or missing a class Professor Harris was very flexible in helping me make up the grade. He's also very helpful and is willing to meet outside of class. Do everything, and get an A.", + "pos": 0.208, + "neu": 0.717, + "neg": 0.075, + "_id": { + "$oid": "6711d3b6cd60fca157e5a75e" + } + }, + { + "text": "Have to participate more and it doesn't matter how well you do on your project or other assignments. You have to get A's in order to get a A for the whole entire grade. Also he wants you to remember everything in the book which is not reasonable. But it's w.e", + "pos": 0.0, + "neu": 0.952, + "neg": 0.048, + "_id": { + "$oid": "6711d3b6cd60fca157e5a75f" + } + }, + { + "text": "After reading the reviews, I was very skeptic upon having Prof. Harris. Now mid-semester, I actually do not mind his teaching ways at all. His lessons are pretty straight forward. Although he randomly calls on you, a simple \"I don't know\" will suffice. Papers may be graded harshly, but honestly. Overall, he gets the class done.", + "pos": 0.123, + "neu": 0.85, + "neg": 0.026, + "_id": { + "$oid": "6711d3b6cd60fca157e5a760" + } + }, + { + "text": "His teaching methods are annoying to me. His class is totally based on memorization. If you don't give the answers exactly how he wants them worded, then he'll consider it wrong. If you're good at memorizing, you're fine. Make sure you read the text; he likes to randomly call on ppl. Otherwise, his class is easy, it's just a drag.", + "pos": 0.175, + "neu": 0.718, + "neg": 0.106, + "_id": { + "$oid": "6711d3b6cd60fca157e5a761" + } + }, + { + "text": "Really good professor. A bit strict but not overwhelmingly.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d3b6cd60fca157e5a762" + } + }, + { + "text": "This is my 2nd semester in a row having Harris. He is the most annoying and infuriating person I have ever had to deal with in my entire life. When I first came into his class I wanted to be in advertising, let's just say I have no desire to do anything related to ad now. His tests are unfair, and he loves lists and memorization. spare yourselves.", + "pos": 0.047, + "neu": 0.8, + "neg": 0.153, + "_id": { + "$oid": "6711d3b6cd60fca157e5a763" + } + }, + { + "text": "Profesor Harris goes strictly by the book. But if you take good notes you won't need it. Strict on grading 2 papers (no option on extra credit) A midterm and a final! The percentage break down is on the syllabus so there won't be an surprises at the end of the semester!", + "pos": 0.133, + "neu": 0.833, + "neg": 0.034, + "_id": { + "$oid": "6711d3b6cd60fca157e5a764" + } + }, + { + "text": "Save yourself....the worst professor ever!!! He teaches Advertising and can not step out side the box...everything according to the book, if you have a bit of sense and passion he is the last person you want to teach you.", + "pos": 0.176, + "neu": 0.737, + "neg": 0.086, + "_id": { + "$oid": "6711d3b6cd60fca157e5a765" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b7cd60fca157e5a767" + }, + "professor_name": "Jonathan Pieslak", + "rating": 4.3, + "department": "Music department", + "comments": [ + { + "text": "He is one of the best professors at CCNY! He is so caring and always responds to our messages quickly!", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a768" + } + }, + { + "text": "This is my second time grading him as I took him previously for MUS231. MSUS232 is much harder although we have fewer assignments to complete. This would've been better for an in person class.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a769" + } + }, + { + "text": "I didn't perform well in this course because at times the assignment structure was confusing, the midterm and final both were frustrating, and the professor didn't provide helpful feedback. This course needs tons of improvement if it's going to teach students about Harmony.", + "pos": 0.11, + "neu": 0.716, + "neg": 0.173, + "_id": { + "$oid": "6711d3b7cd60fca157e5a76a" + } + }, + { + "text": "Very difficult class due to the fact it's not online/in person lectures, none of the assignments were easy to complete it's was too complex for an intro Harmony class, and the slack isn't a helpful resource to seek out support. I wouldn't recommend taking this course unless you get a tutor beforehand.", + "pos": 0.135, + "neu": 0.748, + "neg": 0.118, + "_id": { + "$oid": "6711d3b7cd60fca157e5a76b" + } + }, + { + "text": "The music department has changed so much since Covid. This means that many music classes are now asynchronous. This includes all classes with Prof. Pieslak. For Harmony 1, we were suppose to watch videos from the dropbox and complete a total of 8 assignments + 2 exams. Pieslak was very good at reading and also reviewing this type of content though.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a76c" + } + }, + { + "text": "The best class for anyone interested in songwriting/pop composition. We analyze the theory and production behind hit songs across all genres and every two weeks have to compose an original song. Super fun class but you'll definitely be up all night before each deadline. Totally worth it!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a76d" + } + }, + { + "text": "Pieslak is the best professor I've ever had, hands-down. He cares like crazy about his students, making sure they understand the material & do well in the class. Very willing to work with people when they don't understand something or have trouble completing an assignment. Take his Pop Comp class if you can. Hard work, but worth it. Great person.", + "pos": 0.243, + "neu": 0.692, + "neg": 0.066, + "_id": { + "$oid": "6711d3b7cd60fca157e5a76e" + } + }, + { + "text": "His teaching style is very good. He makes it clear. And when someone doesn't understand something, he always explains it more. He makes jokes for silly mistakes people make, but that makes the class fun.", + "pos": 0.264, + "neu": 0.694, + "neg": 0.042, + "_id": { + "$oid": "6711d3b7cd60fca157e5a76f" + } + }, + { + "text": "I took Professor Pieslak's class called Advanced Counterpoint. This professor is very experienced in his field and has a lot of personality. He seems to understand the concept that rather than overwhelming a student, presenting complex ideas as if they are simple leads to great things. Put a lot of effort into your exercises for maximum benefit.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a770" + } + }, + { + "text": "Great Teacher, prepared lessons everytime, fair amount of assignments..I learned many many things", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a771" + } + }, + { + "text": "TAKE A CLASS WITH HIM IF YOU CAN. Very informative extremely helpful, one of the best Prof's I have ever had.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a772" + } + }, + { + "text": "Very patient, helpful and well informed. Awesome teacher.", + "pos": 0.65, + "neu": 0.35, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a773" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3b7cd60fca157e5a774" + } + }, + { + "text": "Extremely good lecturer and availability after class. really knows his stuff!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a775" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b7cd60fca157e5a777" + }, + "professor_name": "Justine Matias", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She is amazing at her job her assignments are very easy and she is very very lenient with grading. Her feedback is very helpful as well. I would take her again if I could. The class I took is 2100 but it didn't let me change it.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a778" + } + }, + { + "text": "I LOVEEEE MS MATIAS like she's probably the best professor i have had so far. She gives great feedback and is very caring. She gives extended deadlines for assignments and is super sweet. I had her for FIQWS Pulp Fiction!! 20/10 fr! Def take her classes. Her work is very easy also just make sure you do them.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a779" + } + }, + { + "text": "TAKE THIS PROFESSOR!!!!\n\nI had a fantastic experience with Professor Matias's class. The class was well-organized, making it easy to follow, and Professor Matias was always available outside class for additional support. Responds to emails as well! \n\n( I took her class as a FIQWS )", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a77a" + } + }, + { + "text": "She was an amazing professor. I was actually a part of her FIQWS 10108 class, Individual & Society, for the Fall '23 semester, but it doesn't have that class as an option. She's very understanding and willing to work with you and gives ample time for assignments. She allows you to make up work for full credit and is an amazing professor overall.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a77b" + } + }, + { + "text": "SHE IS THE BEST PROFESSOR YOU COULD EVER HAVE. Every time I pick a course or a professor I hope they're like her. She is very understanding and knows that life happens. We do lots of discussion posts and a couple of assignments. NO MIDTERMS AND NO FINALS. Gives you an extension if you ask for one beforehand. Helps you whenever you ask. AMAZING", + "pos": 0.217, + "neu": 0.71, + "neg": 0.073, + "_id": { + "$oid": "6711d3b7cd60fca157e5a77c" + } + }, + { + "text": "I had Professor Matias at Pace University. She's one of the sweetest professors, she's super caring and nice, and if you submit work late, usually she's super lenient with that. I love her and her course is pretty easy if you keep up with the work. If you miss an assignment there will be a lot of work for you to make up.", + "pos": 0.32, + "neu": 0.66, + "neg": 0.02, + "_id": { + "$oid": "6711d3b7cd60fca157e5a77d" + } + }, + { + "text": "She's one of the best English teachers/professors I have ever had. If you need any deadlines because something came up, she will always give you more time.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a77e" + } + }, + { + "text": "Absoltuely loved Professor Matias. Very nice, caring, gives extensions if needed, not a harsh grader, and overall probably the best English teacher I have ever had.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a77f" + } + }, + { + "text": "Great professor! Very clear about assignments. Very lenient with grading. She's really caring and sweet and wants her students to do well. The assignments can get a bit too much but she gave extensions.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a780" + } + }, + { + "text": "Grades really easily and is flexible about due dates.", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a781" + } + }, + { + "text": "I would for sure take this professor again. You just have to make sure you do all your assignments and you'll pass with a good grade. She's really understandable and gives good feedback.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a782" + } + }, + { + "text": "Professor Matias is amazing. Chose her class not knowing what to expect, and was blown away. Professor Matias is so descriptive. Her lectures are always clear, and easy to understand, and does a great job of answering questions while flawlessly teaching. She's super caring and makes everyone feel comfortable in class. So grateful I took her class.", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a783" + } + }, + { + "text": "I don't know if anyone else teaches Freshman Comp here, but, like yoooo... This professor is the nicest prof I took this semester. You don't have to try hard to get an A, but if you put in the work, you're gonna learn a lot of things that will be handy, not just in your writing, but in your daily life.", + "pos": 0.112, + "neu": 0.864, + "neg": 0.024, + "_id": { + "$oid": "6711d3b7cd60fca157e5a784" + } + }, + { + "text": "this is really a learning and good class to take. informative class", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a785" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b7cd60fca157e5a787" + }, + "professor_name": "John Floropoulos", + "rating": 4.8, + "department": "Political Science department", + "comments": [ + { + "text": "There are TA's in this class, so your grade is really shaped by how strict they want to be. He was engaging and his class was simply structured. Take-home quizzes (w/ exception to the final) and a one or two short answer pieces assigned by the TA. Also, all he does is lectures w/ no powerpoint. There's no textbook but there is a lot to read.", + "pos": 0.042, + "neu": 0.911, + "neg": 0.047, + "_id": { + "$oid": "6711d3b7cd60fca157e5a788" + } + }, + { + "text": "This is an intense class and requires you to put in real work, like sitting down and reading 40 pages for hours in order to really grasp the material. He hilarious and talented, but he is just as intense as the course material & that may be extremely challenging for some. Open book, take home tests, except for the final. Overall awesome course.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a789" + } + }, + { + "text": "Professor Floropoulos is amazing. He makes all of the content easy to understand. If you really want to learn about politics, then he's the right guy. I'd retake him. BUT: THIS IS NOT AN EASY CLASS. There are TONS of readings. The exams are based on these readings. To pass, you MUST study AND show up. It's a lot of work, but it's 100% worth it.", + "pos": 0.11, + "neu": 0.837, + "neg": 0.054, + "_id": { + "$oid": "6711d3b7cd60fca157e5a78a" + } + }, + { + "text": "Prof F is absolutely brilliant. I took him for 3 classes and he is the best professor I've had at City in my 4 years. His classes are challenging but you will learn so much if you apply yourself. He's very engaging and he will further your interest in any subject matter. His lectures are great and he gives great feedback. Take him at lease once!", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a78b" + } + }, + { + "text": "Amazing professor but extremely hard. He really does make you work for your grade. If you put in the work, he will notice. I dreaded going to the class but I learned so much. Would definitely take him again", + "pos": 0.131, + "neu": 0.723, + "neg": 0.146, + "_id": { + "$oid": "6711d3b7cd60fca157e5a78c" + } + }, + { + "text": "Great professor who's very educated on the subject matter but also cares about your education. You will NEED to read. He is knowledgeable but very accessible. I took him for three classes so far and it seriously helped me better understand what is going on with the Political Science field and profession. Must take!", + "pos": 0.187, + "neu": 0.78, + "neg": 0.033, + "_id": { + "$oid": "6711d3b7cd60fca157e5a78d" + } + }, + { + "text": "Makes you work for it but considering the content and the level of professionalism do it. Take his class whatever he is teaching he is such a nice, honest, and thought provoking person. Brilliant", + "pos": 0.293, + "neu": 0.659, + "neg": 0.048, + "_id": { + "$oid": "6711d3b7cd60fca157e5a78e" + } + }, + { + "text": "A very rare type of professor who is a combination of a genius and exceptional professional in the arts of lecturing, advising, and feedback (especially on research paper). He also apparently runs a global company and talks with governments and stuff but never really talks about it. I mean how cool is that on top of being such a good professor", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a78f" + } + }, + { + "text": "Professor F is a brilliant person and a very inspiration professor. It behooves me as to by someone of this talent is not a full-time professor. He will challenge you but be on your reading and its fine.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d3b7cd60fca157e5a790" + } + }, + { + "text": "Great professor!! Would love to take his class again... I enjoyed his class very much. Not an easier grader though, makes you work for that A!!", + "pos": 0.344, + "neu": 0.593, + "neg": 0.063, + "_id": { + "$oid": "6711d3b7cd60fca157e5a791" + } + }, + { + "text": "No question about Professor Floropoulos he is brilliant and one of the best professors at CCNY. He knows what's up and will throw out authors, and journal articles and quantitative data on the fly and have you look it up while he gives a lecture. This guy is boss take him. He is a fair grader and you will thank yourself afterwords.", + "pos": 0.178, + "neu": 0.792, + "neg": 0.031, + "_id": { + "$oid": "6711d3b7cd60fca157e5a792" + } + }, + { + "text": "Absolutely Brilliant. He is top 5 profs I've ever taken! I am so happy I took this class with him. I'm double majoring in Political Science now. Just make sure you don't lie or BS him and just be honest and work hard. He actually cares.", + "pos": 0.326, + "neu": 0.651, + "neg": 0.023, + "_id": { + "$oid": "6711d3b7cd60fca157e5a793" + } + }, + { + "text": "Professor Floropoulos is a professor you need to take. His standards are legit. If you want to be a political scientist he is one of the top 3 professors in the department. This was his first semester here and our class had a broken projector they messed up his ID it was a mess,but he crushed it. You will work for your A.", + "pos": 0.045, + "neu": 0.836, + "neg": 0.12, + "_id": { + "$oid": "6711d3b7cd60fca157e5a794" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b8cd60fca157e5a796" + }, + "professor_name": "Mary Ruth Strzewzewski", + "rating": 4.9, + "department": "Languages department", + "comments": [ + { + "text": "She is a great teacher, caring, loves the material and conveys that to her students, very smart, entertaining, everything you could ask for. If you do the work you will do well.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a797" + } + }, + { + "text": "Professor Strzeszewski is a real asset to City. She is hard, but nothing out of left field, no suprises here. Friendly, direct and very helpful. Highly recommended.", + "pos": 0.346, + "neu": 0.549, + "neg": 0.105, + "_id": { + "$oid": "6711d3b8cd60fca157e5a798" + } + }, + { + "text": "Very thorough. Class was sometimes a little campy (as in cheesy), but the methods were effective. Sra. Strzeszeski was missed dearly in SPAN 122. She is demanding, but completely fair.", + "pos": 0.272, + "neu": 0.604, + "neg": 0.124, + "_id": { + "$oid": "6711d3b8cd60fca157e5a799" + } + }, + { + "text": "highly recommend if you are willing to be in class, be there on time and atually do all the work assigned... she does speak a lot in spanish but eventually you will catch on.", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a79a" + } + }, + { + "text": "She does a great job making the material interesting. She ties together concepts that never occurred to me, but when she explains them, they make total sense. Very impressive!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a79b" + } + }, + { + "text": "Well, organized and entertaining. You will never be bored in this class. She gets everyone involved in the lesson which makes you memorize spanish alot easier. Her exams and quizzes are exactly like the activities you do in class. I would definitely take her again. GREAT PROFESSOR !!", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a79c" + } + }, + { + "text": "Great professor! Extremly organized (+). Does exactly what is written on her syllabus. Has a creative way of teaching, not boring at all. BUT attendance and punctuation is a must....she has a late list. If you participate, and study for her exams youll do well. Once again great teacher.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a79d" + } + }, + { + "text": "This professor was excellent. She is passionate about teaching and cares if you learn. I highly reccomend her. Even if you have no experience with spanish, after her class you will want to be bilingual", + "pos": 0.261, + "neu": 0.688, + "neg": 0.05, + "_id": { + "$oid": "6711d3b8cd60fca157e5a79e" + } + }, + { + "text": "She is a great proffesor. Smart, organized and very understanding.", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a79f" + } + }, + { + "text": "Yet another fantastic professor. Very excited to teach (a plus especially at 8 am, when we had class!) I would love to take another class with her. She is very professional, involved and organized. Amazing!!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a0" + } + }, + { + "text": "Another great professor who lives and breathe Spanish. Very organized and creative with the lessons.", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a1" + } + }, + { + "text": "Highly recommended. Great classes and a great person.", + "pos": 0.679, + "neu": 0.321, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a2" + } + }, + { + "text": "I hate this class but Professor Strzewzewski made the topic intresting and easy to learn.", + "pos": 0.201, + "neu": 0.677, + "neg": 0.122, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a5" + }, + "professor_name": "Adib Birkland", + "rating": 4.2, + "department": "Economics department", + "comments": [ + { + "text": "A great professor who took me from \"kinda want to see what Economics is about\" to \"WOW this is interesting\". Birkland is very open and helpful in his office hours- GO! He gives lots of easy quizzes, but no tests- not even a final exam! Get a good group, your grade counts on them as much as your own efforts. Mostly keeps class light & funny.", + "pos": 0.255, + "neu": 0.71, + "neg": 0.035, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a6" + } + }, + { + "text": "He is a really good professor.He has 10 quizzes and a group presentation.Just work really hard on your group work and you should get an A.I was averaging a 6/10 on the exams and I got an A in the class.", + "pos": 0.073, + "neu": 0.889, + "neg": 0.039, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a7" + } + }, + { + "text": "Very clear with what he taught but his quizzes are veerryy tricky.", + "pos": 0.141, + "neu": 0.722, + "neg": 0.137, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a8" + } + }, + { + "text": "It seems like all the great professors have bad reviews and all the worst profs have great reviews. He is seriously one of the BEST profs ive ever had. His lectures are crystal clear. He is well spoken, energetic, very articulate and a wonderful person. his class is very useful if u want to learn. Also to improve ur writing and speaking skills.", + "pos": 0.371, + "neu": 0.529, + "neg": 0.1, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7a9" + } + }, + { + "text": "His quizzes are quite tricky. But he is a very friendly and young guy who means well. At first I did not like the course, but I realized the importance of this course as the semester rolled on. Don't get frustrated if your quiz grades are a bit low. I would recommend taking this professor if your serious and interested.", + "pos": 0.266, + "neu": 0.63, + "neg": 0.104, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7aa" + } + }, + { + "text": "Careful when taking him. He seems cool and nice, but his grading on his assignments and quizzes will surprise you. It is true that he isn't very clear when teaching. I doubt the class truly understands what he lectures. His homework assignments are also irritating to do. I did pretty well in the course but got nothing out of it.", + "pos": 0.27, + "neu": 0.602, + "neg": 0.127, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7ab" + } + }, + { + "text": "His quizzes are quite hard and tricky. His quizzes are so specific while the textbook is so general. You can truly understand the chapters in the textbook and still do poorly on the quizzes. His lectures are not clear. It appears he lacks exp. in teaching. He can't teach and deliver the material to students.", + "pos": 0.049, + "neu": 0.855, + "neg": 0.096, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7ac" + } + }, + { + "text": "He's not as easy as everyone says. His quizzes are tricky and hard. The textbook is too general and basic which won't help you for the quizzes. His lectures makes no sense, will only confuse you. He also doesn't seem to care about his students. I will not take any future courses with this prof.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7ad" + } + }, + { + "text": "One of the best professors I have ever encountered. Very helpful and insightful into his explanations. Expects not to much from students and does whatever he can to help. You have really easy quizes and some assignments that he grades in a great way. He's also a great motivator. You can do extra credit work if you want, but it's not necessary.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7ae" + } + }, + { + "text": "well this guy is very smart, approachable, and good to have discussions with in class. His class layout however was not the best. We had 10 quizzes, one 5 grou0p presentation and a 20 minute final presentation that comes with a 20 page paper. I thought it was a lot more work then the course really requires. But overall pretty good professor", + "pos": 0.19, + "neu": 0.78, + "neg": 0.03, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7af" + } + }, + { + "text": "Professor of a rare caliber. Very down to earth and concise in his explanations. Birkland makes it HIS GOAL to get students to understand, participation have never been so fun and insightful. By all means take him!", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7b0" + } + }, + { + "text": "Birkland is one of the best for the Economics department; he is clear, understanding, and the outline of the class is real simple. Just expect to have quizzes of 10 multiple choice questions for each chapter he covers, but if you read its easy. Do all his assignments and you should get a good grade", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7b1" + } + }, + { + "text": "This man is wonderful. He is a great resource to have for academic and professional endeavours. He knows what he's doing as a professor and he is there for his students. You will benefit from an class he teaches, as long as you're serious and optimistic. He has a great sense of humor too. It's too bad that not every professor is just like him.", + "pos": 0.264, + "neu": 0.678, + "neg": 0.058, + "_id": { + "$oid": "6711d3b8cd60fca157e5a7b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b9cd60fca157e5a7b4" + }, + "professor_name": "Joseph Berechman", + "rating": 1.6, + "department": "Economics department", + "comments": [ + { + "text": "50% Midterm, and 50% Final. That is your final grade. Very bad professor, hard to understand because of accent. Disorganized and is not really interested in teaching. The midterm average was about 20%. His TA was also really bad. He reported 35 kids for allegedly cheating.", + "pos": 0.0, + "neu": 0.695, + "neg": 0.305, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7b5" + } + }, + { + "text": "Spent 2 hr lectures showing what he knows. Unorganized, and does not teach in order. It was like solving a puzzle piece, and praying it worked out in your favor. Graded on midterm, final, attendance. Difficult to understand, and very strict. Will roast you half of the lecture if you're late. 90% dropped the class right after midterms. Do not take!!", + "pos": 0.154, + "neu": 0.809, + "neg": 0.036, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7b6" + } + }, + { + "text": "DON'T take him. Honestly stay away and you will save both money and your time. Does not teach anything and expects you to know everything. His exams questions are just you guessing and answering and hoping you got it right.", + "pos": 0.132, + "neu": 0.814, + "neg": 0.055, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7b7" + } + }, + { + "text": "I can't call him a teacher, because he does not teach he spends the lecture time showing you what he knows. The exam is unpredictable - do not listen to him regarding what he is going to give in the exam because is untrue, either he forgets or he is tricky. Good luck to you if you decide to take it, better not.", + "pos": 0.127, + "neu": 0.85, + "neg": 0.023, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7b8" + } + }, + { + "text": "1 exam , i final paper. he is very brief in class, you are expected to know material before class. If you are weak or dislike calculus , then run away. its a repeat of all micro calculus & applied 2public finance. you are better off jut using his textbook, notes. dont be late, work on paper a lot! that may be your only salvation.", + "pos": 0.041, + "neu": 0.877, + "neg": 0.082, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7b9" + } + }, + { + "text": "Waste of student's money and time.", + "pos": 0.0, + "neu": 0.641, + "neg": 0.359, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7ba" + } + }, + { + "text": "I just had a midterm today and it had NOTHING to do with whatever we studied in class. Out of 50 people about 40 are dropping the class after this midterm. Prof. Berechman doesn't care and neither does the entire Eco Dept. City College should investigate the whole department because it's a shame! Prof. Berechman is one of the worst professor EVER!!", + "pos": 0.0, + "neu": 0.846, + "neg": 0.154, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7bb" + } + }, + { + "text": "Horrible. Gave me complete run-around b/c he and his TA too lazy to add my email address to class roster to ensure I get homework assignments? Says if you're late you have to stay outside 10 min before coming into class-- thus missing more class-- what is this, kindergarten? This man should NOT be teaching.", + "pos": 0.042, + "neu": 0.82, + "neg": 0.138, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7bc" + } + }, + { + "text": "This professor diverts a lot from the syllabus. He never manages to finish it on time. He doesnt use the text book much. Be prepared to take a lot of notes while doing any of his courses. He also tests based on his own notes. Be prepared to study his footnotes and his examples.", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7bd" + } + }, + { + "text": "If you want to have a professor who could care less about his students, then by all means, take his course. He doesn't teach many relevant theories in his class. He even throws in a little statistical analysis. Who does that?!", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7be" + } + }, + { + "text": "Wow.. this Professor uses a lot of mathematical tools to demonstrate the ideas.. be prepared for this.. get your calculus books out!", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7bf" + } + }, + { + "text": "he is destroying the already screwed up economics department at ccny", + "pos": 0.0, + "neu": 0.57, + "neg": 0.43, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c0" + } + }, + { + "text": "Stay away if you can", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c3" + }, + "professor_name": "Shirmin Aziz", + "rating": 1.4, + "department": "Mathematics department", + "comments": [ + { + "text": "She's the absolute worst professor I've ever had. I am someone who has always been pretty good at math until I took this class. She ruined my whole GPA along with the rest of the class by failing all of us except for 4 passes (mostly D's). She has absolutely no idea how to teach it's so obvious she's a newbie. Take another math class instead", + "pos": 0.077, + "neu": 0.759, + "neg": 0.164, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c4" + } + }, + { + "text": "I regret taking her class. I would rather take ANY other professor instead of her. She ruined EVERYTHING just because of this class, I emailed her constantly and she did absolutely nothing to help me. AVOID her at any costs, EVEN BETTER go to another math class while taking hers to learn lol, trust me you'll be better prepared. SHE CANNOT TEACH!!!!", + "pos": 0.196, + "neu": 0.662, + "neg": 0.142, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c5" + } + }, + { + "text": "She is an adjunct. Teaches straight from textbook. Be prepared to review/read prior to class. Do not expect math to be easy in such a rigorous college. Put in work for the stem classes as these are double.", + "pos": 0.157, + "neu": 0.794, + "neg": 0.049, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c6" + } + }, + { + "text": "the class is hard enough. but the departments final is the real killer. the department thinks you're just as smart as them with their super brolic final. the final is so hard and rigged that its unfair. drives me insane that I wasted all this time just to prepare for a final that was gonna fail me regardless. the class results speaks for itself.", + "pos": 0.096, + "neu": 0.582, + "neg": 0.322, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c7" + } + }, + { + "text": "Dont take her class if you want to mess up your GPA. I got a D for her class now I cant move on to the next math class unless I RETAKE this class all over again.... she isnt a good professor at all, worst one so far. She doesnt know how to teach nor does she came to class on time. Do yourself a favor and avoid her", + "pos": 0.051, + "neu": 0.806, + "neg": 0.143, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c8" + } + }, + { + "text": "This was the worst Professor Ive ever had in my life. She doesnt know how to teach! She comes late to class (including the day of the midterm) and she changes her grading criteria whenever she wants. She isnt consistent nor is she a good professor. The whole class got Ds and Fs. AVIOD HER", + "pos": 0.048, + "neu": 0.879, + "neg": 0.073, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7c9" + } + }, + { + "text": "you gotta be really good at math to even get a C in this class. Its super hard. I spent hours and hours practicing to get an F. The system of grading for math in this school and proffesor makes Me go crazy. I wasted time and money taking this class.", + "pos": 0.118, + "neu": 0.765, + "neg": 0.116, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7ca" + } + }, + { + "text": "One of the worst professors in city college. She doesn't know how to teach, she copies the textbook onto her notebook and literally teaches off of that. She cannot solve a simple problem without looking at her book. The class ALWAYS points our her mistakes. It seems as if shes a student learning the material for the first trying to teach it. AVIOD", + "pos": 0.0, + "neu": 0.844, + "neg": 0.156, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7cb" + } + }, + { + "text": "She is the absolute worst. She doesnt know math. Always making mistakes on the board. Shes unprofessional to the point where a kid can teach better than her. Does not stick to the syllabus. First I give no exams then out of nowhere she gives a midterm and its 20%. When the whole class failed it , she made it 30%. Do yourself a favor and avoid.", + "pos": 0.068, + "neu": 0.718, + "neg": 0.214, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7cc" + } + }, + { + "text": "Please dont take this class of you have other options! Id rather a 9pm class over hers. She is very unclear and doesnt know what shes doing. The class is always pointing out her mistakes. She literally cant solve a simple math question without liking into her book.", + "pos": 0.042, + "neu": 0.793, + "neg": 0.165, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7cd" + } + }, + { + "text": "The class is pretty tough and has a lot of material to be covered within such a short amount of time. so she really has to rush the lessons sometimes. You gotta study a good amount and read the book. Quizzes are frequent and kind of hard sometimes, but she tries her absolute hardest to help her students understand, succeed and think for themselves.", + "pos": 0.164, + "neu": 0.8, + "neg": 0.036, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7ce" + } + }, + { + "text": "WORST TEACHER EVER! take this class if you want to fail", + "pos": 0.073, + "neu": 0.446, + "neg": 0.481, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7cf" + } + }, + { + "text": "This professor is one of the worst professors in city. She doesn't know how to teach AT ALL. She literally copied the textbook into her notebook and teaches based off that. She cannot solve any problems without looking directly at her textbook. DON'T TAKE HER CLASS!! you will fail. She is a tough grader, she grades HEAVY on quizzes.", + "pos": 0.033, + "neu": 0.8, + "neg": 0.167, + "_id": { + "$oid": "6711d3b9cd60fca157e5a7d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bacd60fca157e5a7d2" + }, + "professor_name": "Rajan Menon", + "rating": 4.2, + "department": "Political Science department", + "comments": [ + { + "text": "Professor Menon is fantastic, He truly cares about his students even during the pandemic. There is a lot of readings but he makes the class time enjoyable when we discuss. Would def take again!", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7d3" + } + }, + { + "text": "Do not miss an opportunity to learn from this wonderful prof. Prof Menon cares so much for his students and wants to help them better their writing and analytical skills. He is really a one of a kind professor and person and if you are a political science student you owe it to yourself to take him. Conversing with him in his office hours is great", + "pos": 0.266, + "neu": 0.705, + "neg": 0.028, + "_id": { + "$oid": "6711d3bacd60fca157e5a7d4" + } + }, + { + "text": "Humanitarian intervention is an amazing course and Professor Menon is the perfect person to teach it. He is an excellent professor and great at keeping class lively, while showing such a profound knowledge of so many different topics. You must have clear and concise writing skills, this matters a lot to him. He is a great person to converse with.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7d5" + } + }, + { + "text": "Prof. Menon is hands down the crown jewel of the political science department. You will have to READ A LOT, but if you are unwilling to do it then poli sci is probably the wrong major for you. The man has very high expectations as he should but is always willing to work with students. There is a strong emphasis on clarity and caliber of writing.", + "pos": 0.128, + "neu": 0.817, + "neg": 0.055, + "_id": { + "$oid": "6711d3bacd60fca157e5a7d6" + } + }, + { + "text": "Very knowledgeable and passionate, a true intellectual. Tons of reading, very tough grader, makes you work for it/demands your best. If you want to learn and are willing to struggle a bit, you'll learn so much from him. In all fairness I took him for an honors course, which was likely more difficult than most of his courses. (course code unknown)", + "pos": 0.24, + "neu": 0.671, + "neg": 0.089, + "_id": { + "$oid": "6711d3bacd60fca157e5a7d7" + } + }, + { + "text": "Professor Menon is my favorite professor that I've ever had. While challenging, he is a marvelous person to have dialogue with and he really encourages diverse channels of thought and discussion. 10/10 I've taken two classes with him, and if I didn't attend a different CUNY, he'd be my thesis advisor for sure.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7d8" + } + }, + { + "text": "I honestly respect this professor, he is very intelligent and understanding. Very helpful and caring. Professor Menon, you are the best.", + "pos": 0.573, + "neu": 0.427, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7d9" + } + }, + { + "text": "HE'S UNPREDICTABLE", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7da" + } + }, + { + "text": "Very intelligent, clear and helpful. Fascinating lectures. However, there is a huge amount of reading and writing. If you're comfortable with reading poli sciphilosophy articles and writing about them, you owe it to yourself to take this class. Otherwise it might be a struggle", + "pos": 0.315, + "neu": 0.645, + "neg": 0.04, + "_id": { + "$oid": "6711d3bacd60fca157e5a7db" + } + }, + { + "text": "He is a great professor, but such a HARD grader! He is very helpful, you learn a lot from him! Need to make sure you ace the essays in order to get an A! You need to make sure your grammar and structure is clear because he is very keen on those things!", + "pos": 0.3, + "neu": 0.661, + "neg": 0.039, + "_id": { + "$oid": "6711d3bacd60fca157e5a7dc" + } + }, + { + "text": "Tough and challenging. But extremely intelligent, great to listen to. You learn a lot from him.", + "pos": 0.471, + "neu": 0.479, + "neg": 0.05, + "_id": { + "$oid": "6711d3bacd60fca157e5a7dd" + } + }, + { + "text": "loved this professor. He challenges you to do your best. Yes, you have to read the newspaper for this class but it's something that you should be doing anyway. 3 exams, he provides study sheets for what one should study but unlike other prof's won't tell u the exact q's on exam. He's extremely accessible outside the classroom and offer help.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7de" + } + }, + { + "text": "To state that this professor is difficult is an understatement. You will be required to read ABSOLUTELY everything he assigns which consist of one textbook, one book, every NYtimes articles, current events, and class lectures. His humor is artificial and at times annoying and/or intimidating. He sounds intellectual but you will learn a lot.", + "pos": 0.064, + "neu": 0.841, + "neg": 0.095, + "_id": { + "$oid": "6711d3bacd60fca157e5a7df" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bacd60fca157e5a7e1" + }, + "professor_name": "Bao Vuong", + "rating": 3.7, + "department": "Biology department", + "comments": [ + { + "text": "This one of my favorite classes at CCNY. Dr. Vuong moves pretty quickly but always checks to make sure everyone understands the material. His quizzes and exams are quite hard, they are focused more on problem solving and experiments than on rote memorization. Dr. Vuong is a great professor and I learned so much in this class", + "pos": 0.263, + "neu": 0.657, + "neg": 0.081, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e2" + } + }, + { + "text": "Focus on the course material he presents in class. The quizzes and tests are experimental-based, so know methodology in and out. Great lecturer, offers a lot of detail and insight and ties a lot of Virology into health policy and modern research. Ask questions or else you might get lost easily. Great prof.", + "pos": 0.171, + "neu": 0.792, + "neg": 0.037, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e3" + } + }, + { + "text": "Dr. Vuong is a great professor. Virology was a hard class with difficult material, but Dr. Vuong made sure everyone understood the material before moving on. Exams and quizzes were difficult but doable. Overall, the course was really interesting and I learned a lot so the effort put in was worth it.", + "pos": 0.188, + "neu": 0.714, + "neg": 0.098, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e4" + } + }, + { + "text": "Nice and articulate. Knows when students dont follow and will repeat material differently. This class is not for the lazy. You need to be present for every lecture bc he takes attendance, but youll miss important material. You cannot get behind on the reading and there is hw and a quiz every week. Go to tutoring. Waleed Khalid is the best TA.", + "pos": 0.163, + "neu": 0.81, + "neg": 0.027, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e5" + } + }, + { + "text": "Energetic, always available, helpful, and very knowledgable in his field. Bio 483 is a difficult class, and he expects a lot, so make sure you're not afraid to ask him questions even on the smallest things. While the lab reports are hard he's a fair grader, and the quizzes are always based on what we do. Focus on knowing things conceptually.", + "pos": 0.152, + "neu": 0.792, + "neg": 0.056, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e6" + } + }, + { + "text": "Vuong is a very good prof, students believe that bc it's an intro genetics class it should be an easy course --it's not! He will ensure that you know the material so it is imperative you read the textbook and understand so you can apply the concepts to different types of questions. Midterm grade will mostly tell you how you did in the course.", + "pos": 0.092, + "neu": 0.877, + "neg": 0.031, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e7" + } + }, + { + "text": "Great professor; focuses on concepts of genetics rather than blind memorization. He tries to tie his lectures into real-life application. You have to focus and work to understand concepts in his class; even as an intro course genetics isn't easy. Very helpful during office hours. Take him and you'll really learn.", + "pos": 0.07, + "neu": 0.8, + "neg": 0.13, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e8" + } + }, + { + "text": "Great professor. This is a hard class at CCNY across the board and Vuong is no exception. However, his exam was fair, though some quizzes were tricky especially in a time crunch. I wish he taught the whole semester!", + "pos": 0.197, + "neu": 0.693, + "neg": 0.109, + "_id": { + "$oid": "6711d3bacd60fca157e5a7e9" + } + }, + { + "text": "Try to master the concepts instead of just skimming through everything. This class was way too difficult as an intro level genetics class, also keep your schedule light if you are taking this course.", + "pos": 0.0, + "neu": 0.93, + "neg": 0.07, + "_id": { + "$oid": "6711d3bacd60fca157e5a7ea" + } + }, + { + "text": "Voung's lectures are too long and boring. It's very difficult to understand concepts from his lecture. Quizzes and exams are way to difficult for an introductory genetics course. CCNY should not allow him to teach..", + "pos": 0.0, + "neu": 0.77, + "neg": 0.23, + "_id": { + "$oid": "6711d3bacd60fca157e5a7eb" + } + }, + { + "text": "His lectures are very long and detailed (not to mention boring) so make sure you record his lectures. His quizzes can be tricky and throw you off. He's very detailed and writes questions to throw you off to make sure you understand the concept and not just memorize. Study his problem sets, they're not easy so make sure you practice similar problems", + "pos": 0.129, + "neu": 0.742, + "neg": 0.129, + "_id": { + "$oid": "6711d3bacd60fca157e5a7ec" + } + }, + { + "text": "Really solid CCNY professor. Really clear lecturer who was helpful during office hours. He made lecture interesting and tied in relevant topics from the news. We only had one exam from him - it was long and tough, but fair. Overall, good professor and I would take him again.", + "pos": 0.244, + "neu": 0.734, + "neg": 0.022, + "_id": { + "$oid": "6711d3bacd60fca157e5a7ed" + } + }, + { + "text": "In the beginning he seems very nice prof. with a good sense of humor. However, throughout the semester you will discover how rude, arrogant, and unfair he is. It's true, he tries to help his students and he is good at explaining new topics, but he is so dependent on papers and how you write them. I don't think he has his own thoughts. Worst prof.", + "pos": 0.142, + "neu": 0.708, + "neg": 0.149, + "_id": { + "$oid": "6711d3bacd60fca157e5a7ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bacd60fca157e5a7f0" + }, + "professor_name": "Joshua Wilner", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Awesome, dedicated Prof. He's retiring, but surely has great recs for interested students. Very thorough essay grading/feedback. Totally reasonable workload - weekly readings & responses + 4 papers for the term. Takes students seriously!", + "pos": 0.373, + "neu": 0.584, + "neg": 0.043, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f1" + } + }, + { + "text": "One of the most all around educated men I've ever met. Not just an expert in all the subjects he teaches, but seemingly an expert in almost everything. His teaching expertise ranges from poetry (mostly what he teaches) to philosophy and theory of all kinds. I wish he taught more b/c may be the best prof in the dept, but he rarely teaches.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f2" + } + }, + { + "text": "He is a very nice teacher. There is alot of writing though. I recommend this class for anyone who likes reading and writing. We read poetry, Shakespeare, and Death and the King's Horseman.", + "pos": 0.203, + "neu": 0.702, + "neg": 0.094, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f3" + } + }, + { + "text": "Knowledgeable and dedicated. I love how he graded our papers. hes not one of those lazy bums who skims essays and then put a checkmark on the top. He reads carefully and fills them with with insightful comments. He grades correctly. Not everyone gets A because there are different levels of accomplishment. Other professors need to learn from Wilner.", + "pos": 0.157, + "neu": 0.806, + "neg": 0.037, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f4" + } + }, + { + "text": "Joshua is one the best professors at CCNY. Note that, he teaches PhD course for graduates level. He has an enourmous amount of knowledge about Psychoanalysis. He explains the material clearly and connects the texts with real life situation to make your assignment easier. He is an awesome professor. He helps you with anything. Highly recommended.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f5" + } + }, + { + "text": "Awesome professor. Makes what he wants very clear. Guides you through processes for making your writing better. Very interesting and inspired me to take more interest in writing.", + "pos": 0.472, + "neu": 0.528, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f6" + } + }, + { + "text": "This professor was extremely helpful. This class is not extremely easy, but it is very interesting. I learned alot and was glad to have had him as my professor.", + "pos": 0.272, + "neu": 0.678, + "neg": 0.049, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f7" + } + }, + { + "text": "Teaches Intro to Lit Study. He does teach with a TA, but the two make an awesome team! The two both grade your papers and give useful feedback. Interesting pieces to analyze, it feels like a fun book club and less like a class. Recommend for english majors!", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f8" + } + }, + { + "text": "As much as I like the way this professor teaches, I would not recommend taking him for ENGL 31132. He lectures with a teaching assistant who bases your papers ENTIRELY ON GRAMMAR, not how you analyze ideas. Not to mention, Wilner barely teaches the class and its the T.A. doing the teaching.", + "pos": 0.046, + "neu": 0.916, + "neg": 0.039, + "_id": { + "$oid": "6711d3bacd60fca157e5a7f9" + } + }, + { + "text": "great teacher, taught me alot and goes out of his way for his students. even tho i got a B- in his class he is one of the best teachers i every had. he made the class feel like a family. plus he is a good person to know", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7fa" + } + }, + { + "text": "Very interesting Material, take FIQWS psychoanalysis, EASY A, and makes you really think, as far as the professor goes, really helpful, he knows his stuff, and is really friendly too.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7fb" + } + }, + { + "text": "great teacher, he is really their for his students", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7fc" + } + }, + { + "text": "Totally awesome professor. He'll make you work your butt off and it's totally worth it.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d3bacd60fca157e5a7fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bbcd60fca157e5a7ff" + }, + "professor_name": "Claire McKnight", + "rating": 3.3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "The course was boring to me. Professor is really helpful but her lectures don't seem like lectures. She \"talks\" about the materials. It's easy to miss important information while she talks.", + "pos": 0.206, + "neu": 0.636, + "neg": 0.158, + "_id": { + "$oid": "6711d3bbcd60fca157e5a800" + } + }, + { + "text": "umm easy grader. takes off major points for late stuff. Do your stuff on time. She is nice and helpful. She is very understanding of situations. Passing this class should be a no brainier. You really have to try hard to Get an F in her class. YES YOU HEARD RIGHT its harder to fail this class then it is to pass it.", + "pos": 0.159, + "neu": 0.746, + "neg": 0.095, + "_id": { + "$oid": "6711d3bbcd60fca157e5a801" + } + }, + { + "text": "Easy to understand. She is helpful in class and during her office hours. Unlike other professors, you can find her in the office almost all the time.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a802" + } + }, + { + "text": "she is the great teacher. In her class, you will learn very practically. Since I got city college,I have only two best professor. she is one of them. You will have chance to learn a lot and her class is fun because of group project. She is really strict and very fair to give grade. TRUST ME!! she is really really great professor!", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a803" + } + }, + { + "text": "she is the most disgusting professor in city college never helps you and will always discourage you by giving low grades dont take her, I Swear to God that i wrote the truth.", + "pos": 0.155, + "neu": 0.571, + "neg": 0.274, + "_id": { + "$oid": "6711d3bbcd60fca157e5a804" + } + }, + { + "text": "she is really the worst teacher alive, she is very old and not at all interested to educate the students. if u take this class u have definately wasted your time.", + "pos": 0.066, + "neu": 0.685, + "neg": 0.249, + "_id": { + "$oid": "6711d3bbcd60fca157e5a805" + } + }, + { + "text": "There are only 2 things good about this professor: she is clear and organized. In order to pass her quizzes you have to be awake for 2 hrs straight, which is impossible. Her AutoCAD hws, which are easy but tedious, take 6 hrs minimum. I had no clue what is going on and the only ppl who do are those who worked in construction before. Didn't like it.", + "pos": 0.096, + "neu": 0.831, + "neg": 0.073, + "_id": { + "$oid": "6711d3bbcd60fca157e5a806" + } + }, + { + "text": "Great professor, this class is an easy A . If you hate female professors then you won't like her which is the reason some fail her class. Grow up she is a good American teacher.", + "pos": 0.205, + "neu": 0.602, + "neg": 0.193, + "_id": { + "$oid": "6711d3bbcd60fca157e5a807" + } + }, + { + "text": "Long lectures, but everything important goes on the board. good grading. show up and do the work and you'll get a good grade", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a808" + } + }, + { + "text": "Good professor. The HW and tests are straight forward and all tests including the final are open book. She is a patient teacher and will take time in class to explain things - even with AUTOCAD. The tests are not easy - you should study - but they are far from hard.", + "pos": 0.062, + "neu": 0.877, + "neg": 0.06, + "_id": { + "$oid": "6711d3bbcd60fca157e5a809" + } + }, + { + "text": "There is a lot of material about construction to be learned for novices to construction but she is very approachable and helpful during office hours. If you are new to AutoCAD, you should reserve large chunks of time for doing AutoCAD HW assignments in the CE computer lab unless you have a copy of it at home. It can be very time-consuming.", + "pos": 0.063, + "neu": 0.937, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a80a" + } + }, + { + "text": "This professor belongs to pre-history. She grades you very hard if you know more than her. She has no idea what is real construction. She only knows things on the paper and never been to the field. In the beging of the class she will give you a questioneer, just say that you don't know anything.", + "pos": 0.0, + "neu": 0.933, + "neg": 0.067, + "_id": { + "$oid": "6711d3bbcd60fca157e5a80b" + } + }, + { + "text": "Very picky professor. Favors students she likes. Gives different grades on papers exactly the same, and gives bad grades if she dislikes you.", + "pos": 0.167, + "neu": 0.628, + "neg": 0.205, + "_id": { + "$oid": "6711d3bbcd60fca157e5a80c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bbcd60fca157e5a80e" + }, + "professor_name": "Colleen English", + "rating": 3.6, + "department": "English department", + "comments": [ + { + "text": "This professor is alright. She gives grades base on papers and attendance. She doesn't give out exam, but she gives lots of reading as well.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a80f" + } + }, + { + "text": "She is a very nice professor and if you don't know something she helps you understand it if you ask her for help.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a810" + } + }, + { + "text": "I think that her only problem is that class participation tends to waver and she doesn't take enough steps to correct this. Other than that, she is friendly, an easy grader, and the class material is a breeze. I would recommend her if you want an good grade for your GPA without having to study to kill your self with work.", + "pos": 0.173, + "neu": 0.728, + "neg": 0.1, + "_id": { + "$oid": "6711d3bbcd60fca157e5a811" + } + }, + { + "text": "totally cool. lots of class discussion so you don't have to work in groups a lot. lots of reading, but not too many papers.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a812" + } + }, + { + "text": "Had her for my freshman seminar class for french history. she is a nice professor and helps you a lot with your papers. She is just SO boringggg.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a813" + } + }, + { + "text": "I thought she was ridiculously easily. I did all my papers the night before within an hour and got an A, barely did any of the readings.", + "pos": 0.081, + "neu": 0.839, + "neg": 0.081, + "_id": { + "$oid": "6711d3bbcd60fca157e5a814" + } + }, + { + "text": "She is a good teacher but expects a lot from her students. Her quizzes are easy but her papers require a lot thinking and she grades them harshly. Overall an interesting class.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a815" + } + }, + { + "text": "WORST TEACHERR EVER", + "pos": 0.0, + "neu": 0.328, + "neg": 0.672, + "_id": { + "$oid": "6711d3bbcd60fca157e5a816" + } + }, + { + "text": "I had her fall semester and I thought she was great. Spoke to her several times after class and she was really helpful (and normal, not weird). Also, if you can't write a coherent sentence on this website then it's pretty clear that you got a bad grade in the class and you're bitter. Maybe try taking your CAPS LOCK off and learning english.", + "pos": 0.202, + "neu": 0.717, + "neg": 0.081, + "_id": { + "$oid": "6711d3bbcd60fca157e5a817" + } + }, + { + "text": "WORST TEACHER ever if u want to FAIL den take her MEAN,WEIRD,IF YOUR PAPERS TOO GOOD THEN SHE THINKS YOU PLAGERIZE WORST PROFESOR EVER", + "pos": 0.13, + "neu": 0.502, + "neg": 0.367, + "_id": { + "$oid": "6711d3bbcd60fca157e5a818" + } + }, + { + "text": "Professor English was a really great teacher. I learned so much in her class! I didn't think she was unorganized at all. In fact, I thought she was extremely well prepared. She was also really good about checking her emails.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a819" + } + }, + { + "text": "the worst teacher of the year VERY HARD ON GRADING wen u deserve an A shee probsably give u an B- seems nervousevery unorganized IF U WANT A F THEN YOU MAY JOIN HER CLASS", + "pos": 0.115, + "neu": 0.717, + "neg": 0.168, + "_id": { + "$oid": "6711d3bbcd60fca157e5a81a" + } + }, + { + "text": "I love this professor so much. She is good grader and exelent teacher", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d3bbcd60fca157e5a81b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bccd60fca157e5a81d" + }, + "professor_name": "Alex Andia", + "rating": 4.2, + "department": "Chemistry department", + "comments": [ + { + "text": "Such an amazing progessor", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a81e" + } + }, + { + "text": "Professor Andia is a great professor, curves a lot. His lectures are interesting but didn't help me a lot for exams. The second language book is your best friend and you can read the main book and MUST do practice problems at the end of each chapter. And attend recitation. He gives practice exams but the actual exams were harder than the practice.", + "pos": 0.186, + "neu": 0.731, + "neg": 0.083, + "_id": { + "$oid": "6711d3bccd60fca157e5a81f" + } + }, + { + "text": "Prof Andia has great lectures, but only reads off slides so it tends to get boring. We were graded by 3 exams with only 7 questions each. Every exam had an average of around 50 so the curves for OUR exams were: 9, 15, 10. He doesn't offer extra credit or does enough review sessions. So if you choice between him or Salame, I would recommend Salame.", + "pos": 0.078, + "neu": 0.845, + "neg": 0.077, + "_id": { + "$oid": "6711d3bccd60fca157e5a820" + } + }, + { + "text": "Professor Andia is really cool guy, he teaches very well. Let me tell you one thing that don't ever try to cheat in his class. He has zero tolerance of cheating. Whoever cheat in his course, he caught immediately and inform the academic integrity office, careful guys. And his grading policy only contains 3 exams and give huge curves on each exams.", + "pos": 0.179, + "neu": 0.695, + "neg": 0.126, + "_id": { + "$oid": "6711d3bccd60fca157e5a821" + } + }, + { + "text": "Organic Chem is not an easy subject. You will not pass if you slack off. However, despite all that, Professor Andia understood that and ensured students got the material. He may move a bit fast, but lectures should always be available for viewing later. I recommend the Orgo as a Second Language book. It will work wonders for this class.", + "pos": 0.052, + "neu": 0.921, + "neg": 0.027, + "_id": { + "$oid": "6711d3bccd60fca157e5a822" + } + }, + { + "text": "Took him online and honestly, I feel he's better than Professor Salame. Orog is a tough class by itself but Andia made everything about manageable and easier to understand. Exams are exams you still need to study but he gives his previous exams and will go over one in class. If you have Shahrukh or Rex then you good, make sure to put in the work.", + "pos": 0.191, + "neu": 0.793, + "neg": 0.017, + "_id": { + "$oid": "6711d3bccd60fca157e5a823" + } + }, + { + "text": "He is definitely one of the best professors youll have, especially for a tough subject like organic chemistry. Hes extremely kind towards everyone and takes the time to ensure everyone can do their best. Definitely watch the lectures if you cant attend the class! He explains the material well and sees potential in every student. Hes amazing.", + "pos": 0.371, + "neu": 0.606, + "neg": 0.023, + "_id": { + "$oid": "6711d3bccd60fca157e5a824" + } + }, + { + "text": "AMAZING! really cares about students understanding of the material. he is literally accessible anytime and will do anything to help u. HANDS DOWN BEST ORGO PROF IN CITY! MUST TAKE", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a825" + } + }, + { + "text": "no.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a826" + } + }, + { + "text": "A great Professor, Make sure don't fall behind on material and understand mechanisms very well.", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a827" + } + }, + { + "text": "the best professor ever", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a828" + } + }, + { + "text": "Took him last semester. It was his first time teaching but he tried his best to pick up the slack after the chaos that was switching between professors. Gave a lot of practice exams. If you completed the exams and were proactively asking questions the class was manageable. Always available outside of class and willing to break down the material.", + "pos": 0.084, + "neu": 0.842, + "neg": 0.073, + "_id": { + "$oid": "6711d3bccd60fca157e5a829" + } + }, + { + "text": "I took him last semester, it was his first time teaching after grad school. He goes really fast and skips a lot of steps during mechanisms(assumes we know them), you can either listen to him or take notes. I recommend recording his lectures so you can catch up with the lectures and teach yourself. Definitely PRACTICE A LOT, and KNOW THE MATERIALS!!", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a82a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bccd60fca157e5a82c" + }, + "professor_name": "Anne Bartoc", + "rating": 4.7, + "department": "Design department", + "comments": [ + { + "text": "As my 1st time in digital art (InDesign) I was very nervous, but she really encouraged me. She helps students realize their right to take help from professors, staff, & college resources. She was assertive, fair, & cared about her students & pushed them to improve. She was understanding of circumstances & easy to ask for help. highly recommend her.", + "pos": 0.384, + "neu": 0.596, + "neg": 0.02, + "_id": { + "$oid": "6711d3bccd60fca157e5a82d" + } + }, + { + "text": "This class was my first opportunity to work on a multi-week comprehensive branding project. Great experience with opportunities for feedback. Helped me grow as a designer. Felt like a real-world assignment because there's a long-term project w/ many components. Years later I still have physical prototypes I made & still love showing them to people!", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a82e" + } + }, + { + "text": "Professor Anne is one of the greatest professors i have ever had. she is incredibly caring and inspiring and the feedback she gives is truly amazing. She focus a lot on trying to make you have the best work for your portfolio. Highly recommended for anyone considering taking her class. I would take her for every subject if i could.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a82f" + } + }, + { + "text": "There is a total of three projects (exhibition design mockups + brochure, movie poster series, pet brand mockups+ website). You should always ask for clarification of assignments... but overall, she is a 9/10 professor. If you need help, she is always available and loves helping out. Just do the work.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a830" + } + }, + { + "text": "Professor Bartoc will make you a better graphic designer. She is tough but fair and always available to help, even outside of class hours. She is an example of a professor that works for her students above all else. She is knowledgeable, intelligent and caring. If you actually want to see big improvements in your design skills, take her class.", + "pos": 0.284, + "neu": 0.699, + "neg": 0.017, + "_id": { + "$oid": "6711d3bccd60fca157e5a831" + } + }, + { + "text": "This class will help you begin building a strong portfolio if you haven't already. During my semester, we designed book covers, ad posters, pamphlets, packaging, and a website among other assignments. Professor Bartoc will help you visualize your vision and voice with great feedback and instruction. In Design heavy!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a832" + } + }, + { + "text": "I've taken 2 classes with Prof. Bartoc and I can say she's one of the best professors in the art department. She's actually cares about her students and isn't overly harsh with her feedback, but still keeps it real. The workload wasn't too bad either and I had a lot of fun experimenting with typography and learning new ways to improve my designs!", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a833" + } + }, + { + "text": "I'm baffled by the 1.0 rating here. Attendance is vital! Providing real life benefits such as learning time management and structure, and improving social skills. Sure Adobe InDesign is mandatory! It's the computer canvas for designers. I took 2 classes with Bartoc. She genuinely cares about her students, and excels in conceptual and visual design.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a834" + } + }, + { + "text": "To be honest at first two classes, I was almost drop out of the class. Thank goodness I DID NOT!!! It ended up I want to take her class again. I walked out of her class with real strong portfolio, not just visually strong pieces but the concept was really strong too. If you want to be a great designer, take her class!!!!", + "pos": 0.284, + "neu": 0.674, + "neg": 0.041, + "_id": { + "$oid": "6711d3bccd60fca157e5a835" + } + }, + { + "text": "Professor Bartoc's class helped my design skills improve! The projects are unique and fun. Her feedback is extremely helpful and she cares deeply about each student's progress. She is almost always available outside of class and is extremely understanding and supportive. Definitely take one of her classes if you want great portfolio pieces!", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a836" + } + }, + { + "text": "Allows you to work on projects week by week at your own pace, and does not grade until the very end of the semester, and even then gives 1-on-1 feedback to make sure your work is portfolio ready. Super understanding and will always reply to emails. Respect her and she respects back. Always gives great feedback, you learn a lot in this class.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a837" + } + }, + { + "text": "She is very strict about everything; be it attendance or homework. 'Adobe InDesign' is mandatory for this class. Her feedbacks are helpful but she does not show students the InDesign techniques to better the assignment; this means one should already know how to use InDesign. She will put you on spot. She seeks respect than any other professors.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a838" + } + }, + { + "text": "Prof's classes helped my design improve a lot through her feedback, imbued my major choice with a deeper meaning, and fostered a sense of collaboration & positive ambition with her teaching. She is a very warm, friendly, and caring person, but if it's obvious you're not doing the work, or not respecting class time, she will call you out.", + "pos": 0.153, + "neu": 0.795, + "neg": 0.052, + "_id": { + "$oid": "6711d3bccd60fca157e5a839" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bccd60fca157e5a83b" + }, + "professor_name": "Marta Gutman", + "rating": 3.6, + "department": "Architecture department", + "comments": [ + { + "text": "Martas genius. Give her a plan of any building and she'll instantly point to the women and slave chambers. Def a skill we'll need as architects. Very inspirational. A powerful pedagogical moment was when she confronted our white cis male dean in front of the whole class after he failed to fix her projector and said \"This is why we need a new dean\"", + "pos": 0.093, + "neu": 0.836, + "neg": 0.071, + "_id": { + "$oid": "6711d3bccd60fca157e5a83c" + } + }, + { + "text": "I'm not sure how else to put it, other than she is one of the best teachers I have ever had: she is passionate about architecture, she is passionate about history, she is passionate about social responsibility, but above all, she is passionate about pedagogy and teaching. This equates to a brilliant human being, and a brilliant academic. Take her!", + "pos": 0.314, + "neu": 0.667, + "neg": 0.019, + "_id": { + "$oid": "6711d3bccd60fca157e5a83d" + } + }, + { + "text": "Professor Gutman is a professional. Her knowledge of the material is thorough and her enthusiasm is infectious. I couldn't recommend her any more as a history professor, she is simply amazing.", + "pos": 0.182, + "neu": 0.761, + "neg": 0.057, + "_id": { + "$oid": "6711d3bccd60fca157e5a83e" + } + }, + { + "text": "She gets so nervous that she stutters, making it hard to understand the lecture but class is very easy if you just go over in seminar.", + "pos": 0.139, + "neu": 0.713, + "neg": 0.148, + "_id": { + "$oid": "6711d3bccd60fca157e5a83f" + } + }, + { + "text": "Very mean spirited", + "pos": 0.563, + "neu": 0.437, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a840" + } + }, + { + "text": "She is so good. take her!! leture slides are posted on blackboard but her lectures offer more in depth info. so GO to CLass! Has a review before midterm and final thats helpful. TAs are extremly helpful! three hw assignments and three inclass essays(about hw topic). its a fun class and she offers help to those who ask", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a841" + } + }, + { + "text": "She is a brilliant academic - her notes clearly prove it. She is also a very nice lady and seems to genuinly want to help you.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d3bccd60fca157e5a842" + } + }, + { + "text": "i think the reviews that refer to her nervousness were written during her first semester teaching. she is more confident now. she is very knowledgeable and a genuinely nice person. she no longer takes attendance and posts her notes online. her notes are perfect and if you study them you will definitely get an a.", + "pos": 0.192, + "neu": 0.741, + "neg": 0.067, + "_id": { + "$oid": "6711d3bccd60fca157e5a843" + } + }, + { + "text": "Gets nervous, if you havent sleept youll find it too easy to fall asleep in her class. The good thing is her online notes - this will save you.", + "pos": 0.249, + "neu": 0.693, + "neg": 0.058, + "_id": { + "$oid": "6711d3bccd60fca157e5a844" + } + }, + { + "text": "Because she is so nervous she does not properly relay the info. She hops from one thought to another without providing any clear link.She does know what she is talking about, but good luck trying to understand. Fortunately she posts all her notes online.... but good luck trying to make sense of those too!!!", + "pos": 0.244, + "neu": 0.705, + "neg": 0.051, + "_id": { + "$oid": "6711d3bccd60fca157e5a845" + } + }, + { + "text": "She gets a bad rap because she's a nervous lecturer, but I find that she is actually very knowledgeable, capable and helpful - and she really cares about what she's teaching. I suppose that the one thing that she lacks is a more general breakdown of the material before she jumps into details, it would help put what we're learning into context.", + "pos": 0.206, + "neu": 0.744, + "neg": 0.05, + "_id": { + "$oid": "6711d3bccd60fca157e5a846" + } + }, + { + "text": "not a cool teacher. very unclear and monotone. hard to stay awake in front of her. she is very boring. thank goodness she posts her notes online otherwise every student was bound to fail.", + "pos": 0.135, + "neu": 0.603, + "neg": 0.262, + "_id": { + "$oid": "6711d3bccd60fca157e5a847" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bdcd60fca157e5a849" + }, + "professor_name": "Islam Hoxha", + "rating": 2.6, + "department": "Physics department", + "comments": [ + { + "text": "Mostly recommend if have strong physics background. Online lectures and exams. A much better lecturer than those found in earlier level physics classes @ CCNY. Hes fair, unwavering in his ideals; you have to work for your grade. But he'll notice you if you always participate and keep your camera on. Has deep respect for physics. Tricky final exam.", + "pos": 0.195, + "neu": 0.777, + "neg": 0.028, + "_id": { + "$oid": "6711d3bdcd60fca157e5a84a" + } + }, + { + "text": "Took his class 7 years ago at CCNY. Great professor and more importantly a nice human being. He will help you if you ask for it. Thanks to him I was able to pass this class and graduate in time to begin medical school. Professor Hoxha you don't know how much you helped me! Stay safe and stay kind.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a84b" + } + }, + { + "text": "Stay away", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a84c" + } + }, + { + "text": "The class was taken as the lab component for Phys 1433. Professor would model the lab and then students will do reports. Can be very condescending, short, and just plain rude. Knows his stuff. If he explains or mentions something, becomes upset if you ask later on about it. Would take him again just because I know what I'm dealing with lol", + "pos": 0.042, + "neu": 0.875, + "neg": 0.083, + "_id": { + "$oid": "6711d3bdcd60fca157e5a84d" + } + }, + { + "text": "Do not take Professor Hoxha if you dont have a good basis in physics. His exams are extremely difficult and he is very rude. He can be very insensitive. He ended up curving the grades at the end, but he made an already stressful online semester harder and more stressful than it had to be.", + "pos": 0.0, + "neu": 0.746, + "neg": 0.254, + "_id": { + "$oid": "6711d3bdcd60fca157e5a84e" + } + }, + { + "text": "Worse professor I have ever taken at CCNY. Test were unnecessarily hard, refused to curve and complained and blame the students for the bad results. I've done practically all the textbook questions, pulled multiple all nighters, and recorded lectures and still barely passed my final. Ultimately don't waste your time this professor, not worth it.", + "pos": 0.035, + "neu": 0.709, + "neg": 0.256, + "_id": { + "$oid": "6711d3bdcd60fca157e5a84f" + } + }, + { + "text": "Hoxha is the most awful and difficult prof. I have taken. He does not care about students and constantly complains when asked to explain any concept. His exams are absolute nightmares! Do not take him unless you already know physics. He refuse to curve exam grades even though the entire class failed them. Only completed half of the class material.", + "pos": 0.0, + "neu": 0.76, + "neg": 0.24, + "_id": { + "$oid": "6711d3bdcd60fca157e5a850" + } + }, + { + "text": "This is one of the hardest professor's I ever had. As an Online Prof. he is one of the worst. He is incorrigible, his penmanship is garbage and his exams are a nightmare. I don't know where these positive responses come from but they are not reflective of the Prof. I have the dismay of taking. Avoid at all cost or give up your summer entirely.", + "pos": 0.031, + "neu": 0.845, + "neg": 0.123, + "_id": { + "$oid": "6711d3bdcd60fca157e5a851" + } + }, + { + "text": "One of the sweetest professors, genuinely cares about his students and their understanding of the subject. willing to go over topics and provide example questions to clarify any confusions. his test resemble his homework questions, treat it like a college class and you should be fine! :)", + "pos": 0.237, + "neu": 0.73, + "neg": 0.034, + "_id": { + "$oid": "6711d3bdcd60fca157e5a852" + } + }, + { + "text": "DO NOT TAKE, unless your already have a strong base for physics 1. Good teacher but exams are brutal. He does not curve although class average is between 30-50. Very hard to see the professor besides the class.", + "pos": 0.09, + "neu": 0.743, + "neg": 0.168, + "_id": { + "$oid": "6711d3bdcd60fca157e5a853" + } + }, + { + "text": "I honestly hated taking Physics 2 with him. I gave up on pre med because of him. His exams are too difficult, in which the class averages ranged from 30-50 in which he did not even curve. I spoke to him about my grade and he basically told me to get lost because my exam grades were too low (they were about about average btw). Avoid if possible!!!!!", + "pos": 0.038, + "neu": 0.78, + "neg": 0.182, + "_id": { + "$oid": "6711d3bdcd60fca157e5a854" + } + }, + { + "text": "Amazing Professor. He teaches summer Physics and I would work my schedule just to be able to take his class. Extremely patient, clear, and is out there to help us students, unlike many other Physics professors at CCNY unfortunately. Fair exams, gives reviews, helpful lectures. I'm so lucky to have taken this professor during the summer!", + "pos": 0.263, + "neu": 0.702, + "neg": 0.034, + "_id": { + "$oid": "6711d3bdcd60fca157e5a855" + } + }, + { + "text": "Professor Hoxha, is an amazing professor! Discusses everything and is completely fair. Would recommend him to anyone.", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a856" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bdcd60fca157e5a858" + }, + "professor_name": "Geraldine Erman", + "rating": 2.4, + "department": "Art department", + "comments": [ + { + "text": "One of the rudest professors Ive ever had the misfortune of meeting. She can be helpful when she wants to be but is very rude to students . She said exceptional work is worth earning an A and asked me if really thought my work was exceptional. I was floored by that. Never I have I ever been criticized like that by teacher. Very unprofessional.", + "pos": 0.098, + "neu": 0.718, + "neg": 0.184, + "_id": { + "$oid": "6711d3bdcd60fca157e5a859" + } + }, + { + "text": "can be helpful at times but overall is too critical of students' artwork up to the point where it's just plain rude and mean.", + "pos": 0.064, + "neu": 0.704, + "neg": 0.233, + "_id": { + "$oid": "6711d3bdcd60fca157e5a85a" + } + }, + { + "text": "She gives you all the information you need. If you don't understand something she would gladly help you. She wants you to grow from what you know of 3D art and expand that knowledge. Show up to class on time! Follow the safety guidelines, schedule time for your projects and you'll do great.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a85b" + } + }, + { + "text": "Not very organized or knowledgeable, it was often difficult to get work done just because she had tech problems. Also sometimes rude to students in general.", + "pos": 0.0, + "neu": 0.737, + "neg": 0.263, + "_id": { + "$oid": "6711d3bdcd60fca157e5a85c" + } + }, + { + "text": "doesn't exactly teach you", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a85d" + } + }, + { + "text": "She's a good professor. I haven't had many for Art so I can't say much, but I did enjoy her class. She's a kind professor and very understanding. Attendance is a must, but if you miss you should go to open hours. Some of the projects can be very labor intensive if you want a good grade.", + "pos": 0.234, + "neu": 0.739, + "neg": 0.028, + "_id": { + "$oid": "6711d3bdcd60fca157e5a85e" + } + }, + { + "text": "Very disappointed with this prof. The class was a mess nobody was on the same page. NEEDS CLEAR WRITTEN PROMPTS of projects as well as grading rubrics. Assigned 4 projects and would receive grade 34 weeks after projects were handed in. She decided to take a random class trip before our final instead of using valuable time to work on our projects.", + "pos": 0.119, + "neu": 0.798, + "neg": 0.083, + "_id": { + "$oid": "6711d3bdcd60fca157e5a85f" + } + }, + { + "text": "(3D Design) This teacher started teaching at Pace university and I would say do not take her. She is unclear about assignments, sets expectations on students WAY TO HIGH, and doesn't actually teach you how to do anything. I'm sure she is a great artist but she is a terrible teacher. She doesn't even know much about the subject she is teaching so you tend to feel like the class would better be tough like a monkey. Harsh? No you'll understand if you take her.", + "pos": 0.141, + "neu": 0.727, + "neg": 0.131, + "_id": { + "$oid": "6711d3bdcd60fca157e5a860" + } + }, + { + "text": "She's not too bad, can be funny, if you ask for help with the machines/equipment she will definitely help, do not be late! we pretty much started immediately with a life size project and i have never taken a sculpture class before but it isn't bad", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a861" + } + }, + { + "text": "Does not explain anything and expects a lot. Dislikes students whose native language is not English. Although I wasn't one of them, I observed that and thought it would only be fair to let people know. Do not, do not and DO NOT take her... Take Perlman instead!", + "pos": 0.045, + "neu": 0.897, + "neg": 0.058, + "_id": { + "$oid": "6711d3bdcd60fca157e5a862" + } + }, + { + "text": "She very nice and could be funny sometimes. She really does help you out when you struggle.Just try not to come late to class.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a863" + } + }, + { + "text": "Doesn't explain anything. Incredibly frustrating. (3D design)", + "pos": 0.0, + "neu": 0.653, + "neg": 0.347, + "_id": { + "$oid": "6711d3bdcd60fca157e5a864" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bdcd60fca157e5a866" + }, + "professor_name": "Flavio Cabrera-Mora", + "rating": 4.7, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "he explains excellent and helps u to understand perfect. His midterm is hard.also do good in the quizzes that he gives it will help u. he curves(even tho he lies abt it). He gives lots of partial credit so dont worry abt calc error. take him if u want to master circuits.but i nd most pple fall asleep in his class. lol he speaks in monotone.", + "pos": 0.292, + "neu": 0.643, + "neg": 0.064, + "_id": { + "$oid": "6711d3bdcd60fca157e5a867" + } + }, + { + "text": "Dont listen to people who say he is hard, he's not. Understand the examples he gives, and you'll do good on the quizzes and exams. He's a great guy, knows his stuff, his examples are very clear and you learn well from him. And he actually does curve, although he doesnt tell you. I should have gotten a B+ based on his grading, I got an A.", + "pos": 0.159, + "neu": 0.822, + "neg": 0.019, + "_id": { + "$oid": "6711d3bdcd60fca157e5a868" + } + }, + { + "text": "Very hard exams but if you study you will master circuits. He claims he does not curve but to compensate for this he gives partial credit on exams. In the end, however he does curve a little. Do really well on the midterm. The most difficult part of this class is the little mistakes you can make on the exams. one mistake and the answer is wrong.", + "pos": 0.075, + "neu": 0.739, + "neg": 0.186, + "_id": { + "$oid": "6711d3bdcd60fca157e5a869" + } + }, + { + "text": "Best professor in CCNY. Clear notes, clear explanations, a lot of examples in class. You WILL learn from him. Gives easy quizzes. Do the HW and A LOT of problems on your own because tests are not easy. Tests problems are often tricky and not in the book. He doesnt curve and follows CCNY grading policy 95+ = A. I got an A+. Maybe the only one.", + "pos": 0.181, + "neu": 0.735, + "neg": 0.084, + "_id": { + "$oid": "6711d3bdcd60fca157e5a86a" + } + }, + { + "text": "explains well, doesn't collect HW. tests aren't complicated, but have an extra twist compared with the problems done in class. Gives lots of partial credit.", + "pos": 0.162, + "neu": 0.721, + "neg": 0.116, + "_id": { + "$oid": "6711d3bdcd60fca157e5a86b" + } + }, + { + "text": "explains clearly, doesn't collect HW. tests are not complicated, but always have a tricky twist compared to the problems done in class. says he doesn't curve, but I I did better than I thought I deserved. I recommend him especially if you're going on to EE 205, which is a continuation of ENGR 204. I heard Roytman is easy, but you don't learn much.", + "pos": 0.168, + "neu": 0.761, + "neg": 0.071, + "_id": { + "$oid": "6711d3bdcd60fca157e5a86c" + } + }, + { + "text": "Very good at explaining but his exams are very hard and tricky.If you want an easy grade,don't take him.I heard roytman is easy.", + "pos": 0.359, + "neu": 0.575, + "neg": 0.065, + "_id": { + "$oid": "6711d3bdcd60fca157e5a86d" + } + }, + { + "text": "Professor Cabrera is without any doubt the best professor I've ever had! He is smart, professional and easygoing. He knows so much about Electrical Engineering! A student can ask him anything and he'll respond in a concise and easy-to-understand manner. However, he requires from the students to do the readings and to attend the class well prepared.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a86e" + } + }, + { + "text": "Follow the syllabus and the professor and there is no problem. He explains well, does examples, helps out in class and after class.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a86f" + } + }, + { + "text": "Very Good Professor, highly recommended. You learn SO MUCH in his class.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d3bdcd60fca157e5a870" + } + }, + { + "text": "Great Teacher. Be aware, his exams are HARD. But he gives a lot of partial credits. He one of those teachers that care more about doing PROCESS and STEPS rather than you \"getting the right answer.\"", + "pos": 0.231, + "neu": 0.733, + "neg": 0.036, + "_id": { + "$oid": "6711d3bdcd60fca157e5a871" + } + }, + { + "text": "Very good Professor. Does plenty of Examples to help you in the test. Explains really well, although he can be boring at times. His test are not hard, their just long. The key is to practice A LOT and you will ace this class.", + "pos": 0.188, + "neu": 0.766, + "neg": 0.045, + "_id": { + "$oid": "6711d3bdcd60fca157e5a872" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3becd60fca157e5a874" + }, + "professor_name": "Sarah Staszak", + "rating": 4.5, + "department": "Political Science department", + "comments": [ + { + "text": "I had the honors section a year ago with her specifically. She is overall a great teacher, very friendly and helpful. She is not an easy grader but will grade you fairly.I highly recommend her!", + "pos": 0.297, + "neu": 0.664, + "neg": 0.039, + "_id": { + "$oid": "6711d3becd60fca157e5a875" + } + }, + { + "text": "she is very nice and friendly.she uses the textbook and blackboard a lot. she gives two essay,midterm and final. attendance is a must especially in the small group sections.", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a876" + } + }, + { + "text": "Great!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a877" + } + }, + { + "text": "Awesome! She is very clear and the material is interesting.", + "pos": 0.588, + "neu": 0.412, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a878" + } + }, + { + "text": "Best political science professor, she's very clear with her lectures. Whats in the lectures is whats basically on the test so take notes. She's very helpful and doesn't overload you with work so you understand the material. She interprets all that is needed from the textbook. One of the best professors in CCNY.Knows her stuff, loved her!", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a879" + } + }, + { + "text": "I had her for honors, so our group had some one on one time with her. She can be funny, sometimes, but she is really helpful and willing to listen. Her lectures may not always be interesting but she is clear. 1paper, 1 midterm, 1 final. The honors course had an extra paper, but it was pretty easy. I would definitely recommend her!", + "pos": 0.359, + "neu": 0.608, + "neg": 0.033, + "_id": { + "$oid": "6711d3becd60fca157e5a87a" + } + }, + { + "text": "Amazing teacher, profoundly clear and interesting, quirky. she is always available if you need help. Attendance in the lecture class was not taken but its obvious when you take the exam that you were never in class. She gives lots to read and goes over every single thing.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a87b" + } + }, + { + "text": "really nice & pretty, 1 midterm, final & paper. exams r bit long. nice lady clear lectures. easy A", + "pos": 0.515, + "neu": 0.485, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a87c" + } + }, + { + "text": "She gives a lot of readings, which arent so important for the class itself, but they will matter when it comes time for the test. 1 paper, midterm and final.", + "pos": 0.038, + "neu": 0.913, + "neg": 0.049, + "_id": { + "$oid": "6711d3becd60fca157e5a87d" + } + }, + { + "text": "She is very nice and friendly but she gives too many reading besides the textbook, which makes it hard to keep up. She gives 1 paper, midterm, and final.", + "pos": 0.134, + "neu": 0.816, + "neg": 0.05, + "_id": { + "$oid": "6711d3becd60fca157e5a87e" + } + }, + { + "text": "Interesting material, clear lectures", + "pos": 0.726, + "neu": 0.274, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a87f" + } + }, + { + "text": "She is very nice to look at", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a880" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3becd60fca157e5a882" + }, + "professor_name": "Jonathan Udelson", + "rating": 3.6, + "department": "English department", + "comments": [ + { + "text": "BUs 301 with him was tedious and annoying at times, but the class itself was not difficult. The only bad things I can claim are that his assignments to the assignments were incredibly vague. Even when asking for clarification, his answers still left me lost for clues. Never let us go early once. He does however let you revise all of your papers.", + "pos": 0.037, + "neu": 0.803, + "neg": 0.16, + "_id": { + "$oid": "6711d3becd60fca157e5a883" + } + }, + { + "text": "Great professor! Took him for writing for sciences and he really knows his stuff. his assignments can get a bit annoying because there are so many of them and it's a lot to keep up with, but it's manageable if you're willing to put in the effort. overall a pretty good professor who grades fairly. very particular about grammar though.", + "pos": 0.16, + "neu": 0.813, + "neg": 0.027, + "_id": { + "$oid": "6711d3becd60fca157e5a884" + } + }, + { + "text": "Fantastic teacher. A lot of short writing, but it's helpful becaue he goes through and makes sure eveyone understands the mistakes and how to avoid them. There were a few readings, but they are really interesting and led to great discussions. Overall, super interesting class and easy grading. Missing a few assignments can only drop you to an A-.", + "pos": 0.339, + "neu": 0.531, + "neg": 0.13, + "_id": { + "$oid": "6711d3becd60fca157e5a885" + } + }, + { + "text": "Very harsh grader but you will learn many things throughout the semester. Arrogant at times. OK professor", + "pos": 0.16, + "neu": 0.576, + "neg": 0.263, + "_id": { + "$oid": "6711d3becd60fca157e5a886" + } + }, + { + "text": "HE IS A GREAT PROFESSOR & KNOWS HIS STUFF - THE WORK LOAD IS HEAVY BUT ITS WORTH IT, YOU ALWAYS LEARN FROM YOUR MISTAKES AND IMPROVE ON YOUR WRITING DAILY. AND HE IS EXTREMELY HELPFUL DURING HIS CLASS", + "pos": 0.315, + "neu": 0.607, + "neg": 0.078, + "_id": { + "$oid": "6711d3becd60fca157e5a887" + } + }, + { + "text": "He's okay", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d3becd60fca157e5a888" + } + }, + { + "text": "Not an easy grader. but this is a good thing because you actually learn from your mistakes and make an effort to improve. He is not a bad prof. just try to give in papers that you put a great deal of effort in.", + "pos": 0.285, + "neu": 0.633, + "neg": 0.082, + "_id": { + "$oid": "6711d3becd60fca157e5a889" + } + }, + { + "text": "He is intelligent. I would not describe him as \"arrogant\", but rather confident in what he is knowledgeable of. I often heard people complain that he likes to use big vocabulary words to make himself sound smarter. I do not think this is the case. Students should be challenged, given any field of studies.", + "pos": 0.206, + "neu": 0.692, + "neg": 0.102, + "_id": { + "$oid": "6711d3becd60fca157e5a88a" + } + }, + { + "text": "Doesn't value opinions that contradict his own", + "pos": 0.0, + "neu": 0.536, + "neg": 0.464, + "_id": { + "$oid": "6711d3becd60fca157e5a88b" + } + }, + { + "text": "I didnt like him. He's very arrogant and self-centered. Thinks he's very smart. but he wasnt qualified to teach a writing for the sciences class...class wasnt enjoyable at all..stupid assignments and he wondered why people didnt want to participate..a little much for a 3 credit class....", + "pos": 0.101, + "neu": 0.746, + "neg": 0.154, + "_id": { + "$oid": "6711d3becd60fca157e5a88c" + } + }, + { + "text": "A very inexperienced instructor. Should not have been teaching a core class due to his lack of experience. Smart guy, but spends too much time trying to show off how smart he is. Doesn't have much tolerance for opinions that don't match up to his own. I would not recommend him for an upper level English class.", + "pos": 0.084, + "neu": 0.812, + "neg": 0.104, + "_id": { + "$oid": "6711d3becd60fca157e5a88d" + } + }, + { + "text": "Really helpful if you don't get it. He makes the boring stuff kinda interesting.", + "pos": 0.293, + "neu": 0.585, + "neg": 0.122, + "_id": { + "$oid": "6711d3becd60fca157e5a88e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bfcd60fca157e5a890" + }, + "professor_name": "Maria Vint", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Show up,participate, show that you care for the class and put in effort and she won't just give you an A she'll help you find a job. Professor Vint is the best professor in John Jay. helped me find a job and wrote me a recommendation letter for the NYPD loved her.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d3bfcd60fca157e5a891" + } + }, + { + "text": "Prof. Vint was great. Her work was easy to understand. She was very clear about her instructions and what she wanted. If you felt like you didn't do good on a paper, she would let you resubmit it until you were happy with your grade. I really enjoyed having her as a professor and I definitely recommend you take her, no matter what class it is.", + "pos": 0.295, + "neu": 0.664, + "neg": 0.041, + "_id": { + "$oid": "6711d3bfcd60fca157e5a892" + } + }, + { + "text": "Professor Vint really cares about her students. Her grading criteria is very straight forward. Shes a tough grader, but she lets you re-submit the work for a higher grader. My writing definitely got better in this class. Just submit everything on time and follow the instructions. Shes gonna explain everything you need to know.", + "pos": 0.182, + "neu": 0.798, + "neg": 0.02, + "_id": { + "$oid": "6711d3bfcd60fca157e5a893" + } + }, + { + "text": "If she happens to teach a class you need for your degree, take her asap. As long as you genuinely try and work hard, you will get an A. Regardless of your level in composition, your writing will be improved after this class. She did have one or two bad days, but she is human, like all of us.", + "pos": 0.083, + "neu": 0.863, + "neg": 0.054, + "_id": { + "$oid": "6711d3bfcd60fca157e5a894" + } + }, + { + "text": "She is the best. I suck at writing papers but she makes sure to give you feedback and gives you a chance to rewrite your paper to get a better grade. Her class was an easy A.", + "pos": 0.323, + "neu": 0.637, + "neg": 0.04, + "_id": { + "$oid": "6711d3bfcd60fca157e5a895" + } + }, + { + "text": "Maria is probably the best professor I've ever had! She loves her job and makes all of her students feel important. No textbook required, no exams or quizzes. The papers she assigns are very fair as long as you put in the work. She's hilarious and extremely kind and lively. She definitely knew how to brighten up an 8 am class. Please take her!!", + "pos": 0.352, + "neu": 0.598, + "neg": 0.051, + "_id": { + "$oid": "6711d3bfcd60fca157e5a896" + } + }, + { + "text": "She's a good teacher but lets her outside problems influence her, as in if she's having a bad day she will show you attitude. Lots of homework as in for online classes. is you don't participate she'll call you out on it. And if you eat jello she'll get grossed out.", + "pos": 0.033, + "neu": 0.799, + "neg": 0.168, + "_id": { + "$oid": "6711d3bfcd60fca157e5a897" + } + }, + { + "text": "Amazing, amazing, amazing. I will be honest and admit that I am not a smart girl. However Professor Vint never made me feel that way. She is so kind and helpful with all work given. She is responsible and respectful. Def. recommend. No textbook needed, no heavy homework, no test or exam. Just an amazing course and time well spent.", + "pos": 0.416, + "neu": 0.486, + "neg": 0.098, + "_id": { + "$oid": "6711d3bfcd60fca157e5a898" + } + }, + { + "text": "Maria is a very kind and understandable professor. She's well organized and has everything well planned out. If you have the option to take care, please do; you will not regret it!", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d3bfcd60fca157e5a899" + } + }, + { + "text": "She is such an easy going professor, she doesn't require any books. She does get annoyed when you don't hand in work on time or are not up to speed but she allows you to make up any of the work as long as you hand it in on time. Overall she really pushes you to become a better writer.", + "pos": 0.147, + "neu": 0.8, + "neg": 0.053, + "_id": { + "$oid": "6711d3bfcd60fca157e5a89a" + } + }, + { + "text": "She is a TA for this course, she is the most reasonable and easy going TA I've ever taken. Definitely recommend her.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d3bfcd60fca157e5a89b" + } + }, + { + "text": "One of the best professors. Very helpful and she cares for her students' progress throughout the semester. Very good and positive experience.", + "pos": 0.557, + "neu": 0.443, + "neg": 0.0, + "_id": { + "$oid": "6711d3bfcd60fca157e5a89c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bfcd60fca157e5a89e" + }, + "professor_name": "John Nobleman", + "rating": 2.7, + "department": "Chemistry department", + "comments": [ + { + "text": "This subject is very difficult, but this guy makes it easy for you to pass. You have to study outside of class regularly. He does some problems in class which is nice. Exams were not hard if you practiced. Also gave EC to students who showed up to class and curved. People who complained about him didn't put in the work! He's great!", + "pos": 0.19, + "neu": 0.698, + "neg": 0.112, + "_id": { + "$oid": "6711d3bfcd60fca157e5a89f" + } + }, + { + "text": "Other professors within the sciences at this school are not as attentive and enthusiastic as Prof. Nobleman. He not only gave very fair exams, but did practice problems in class and walked around to see how everyone was doing. YOU DON'T GET THIS IN TYPICAL LECTURE CLASSES. If you do practice problems and show up to lecture, you have no worries!", + "pos": 0.098, + "neu": 0.797, + "neg": 0.105, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a0" + } + }, + { + "text": "Everyone stopped showing up to class because he doesn't teach a thing yet he expects you to know everything, even the stuff he didn't talk about. His tests were 100% of your grade. Don't take him. Just don't.", + "pos": 0.0, + "neu": 0.951, + "neg": 0.049, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a1" + } + }, + { + "text": "I was inspired by Prof. The orgo 1, requires to study and solving problems, which needs to do. I love his lectures. He solved and show beside PPT a lot of problems. Fantastic professor.", + "pos": 0.324, + "neu": 0.564, + "neg": 0.113, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a2" + } + }, + { + "text": "I love the Organic Chemistry because of this professor. I was working hard and got my grader. Any Professor only is showing the way to study, however, we are in the High Education Institution, which requires to study and became professional. Prof. JN always was in his office and I met him several times. Great man and carrying about clear grading.", + "pos": 0.157, + "neu": 0.823, + "neg": 0.02, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a3" + } + }, + { + "text": "Alot of people are saying he didn't curve. But in his defense, he did actually curve the 2nd, 3rd and final exam. He isn't the best professor but not the worst either. If you do take him you'll have to study alot on your own and make the \"organic chemistry as a second language\" textbook your bible", + "pos": 0.096, + "neu": 0.834, + "neg": 0.07, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a4" + } + }, + { + "text": "Honestly this course is pretty tough over the summer, but the professor did try his best, so I will give him credit for that. If you can make the time to study yourself then his exams are very easy and they have a lot of multiple choice questions. Accent makes him a bit difficult to understand though.", + "pos": 0.244, + "neu": 0.694, + "neg": 0.062, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a5" + } + }, + { + "text": "Lazy professor. Includes things on test that he didn't go over class which is ridiculous for a subject as difficult as Orgo where you need someone to explain to you how things are done. Nice guy honestly, but he shouldn't be teaching at all. Take anyone but him. literally anyone. Also no curve even tho majority of class is failing.", + "pos": 0.056, + "neu": 0.764, + "neg": 0.18, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a6" + } + }, + { + "text": "I don't usually write reviews but for this man, I really just had to. This professor is HORRIBLE. He seems like he cares, like he's doing his best to help you succeed but in reality, he's just getting by. He flies through the lectures and lectures for 2.5 hours non-stop with a 5 minute break. His fav line for not curving: \"this isn't hs anymore\".", + "pos": 0.309, + "neu": 0.626, + "neg": 0.064, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a7" + } + }, + { + "text": "To all those reading this take this as a warning. DO NOT TAKE THIS PROFESSOR. He is the worst Organic Chem teacher. His test are highly unfair, adds chapters that he never covered in class on exams, he skips over the important stuff, does not answer questions, rushes thought class, and doesnt curve. Find someone else if you want a good grade/GPA", + "pos": 0.083, + "neu": 0.779, + "neg": 0.138, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a8" + } + }, + { + "text": "he seems like a nice guy, but he is not a good professor. he lectures for the whole 2.5hrs and is generally in his lectures, as he skips whole sections. his exams often include question that he did not teach in class. he refuses to give a curve even though the majority of the class is failing because \"this isn't high school anymore.\"", + "pos": 0.052, + "neu": 0.84, + "neg": 0.108, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8a9" + } + }, + { + "text": "He is one of the worse. yall thought Boson was hard? HA! this dude will make your life miserable. Honestly just wait into Salame teach again or take any other teacher. He puts stuff we never cover in class into the exam and when we say is not fair he says \"this is not HS anymore,\" we are aware of that. He's just plain unfair. He doesn't even curve!", + "pos": 0.038, + "neu": 0.794, + "neg": 0.168, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3bfcd60fca157e5a8ac" + }, + "professor_name": "Belinda Lett", + "rating": 2.2, + "department": "Political Science department", + "comments": [ + { + "text": "By far THE worst instructor i have ever had. I was actually excited about taking this class but her arrogant behavior quickly made me second guess my decision. Her lectures focused on the same topic for majority of the semester. Although I understood everything, including the readings, I still some how scored poorly on papers. VERY Poor grader!!!", + "pos": 0.071, + "neu": 0.741, + "neg": 0.188, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8ad" + } + }, + { + "text": "Her grading is unfair. I don't find her very helpful with her comments on essays. She just likes to pin point the smallest little mistakes. Her lectures are repetitive as well as the ridiculous amount of reading.", + "pos": 0.167, + "neu": 0.628, + "neg": 0.205, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8ae" + } + }, + { + "text": "I highly advise anyone looking to take a class with Lett to look elsewhere. Her lectures are confusing, she talks in circles, and she asks extremely vague questions. Then, she gets frustrated and calls you out when you don't answer them correctly. She loves to put her students on the spot. She also assigns a ridiculous amount of reading.", + "pos": 0.055, + "neu": 0.804, + "neg": 0.141, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8af" + } + }, + { + "text": "Do not take her because you need to read a lot of books! She is a tough grader. If you are ready to get B or lower, go ahead.", + "pos": 0.077, + "neu": 0.8, + "neg": 0.123, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b0" + } + }, + { + "text": "You won't get any help from her. Her lectures are really dull, we have to read a lot of books. Whenever she grades papers, she would want us to \"explain your argument and connect it to said writer\" and when we do that it was silly. Don't take her. She conveys her wants clearly but she's not good at all. She doesn't follow the syllabus. AVOID HER.", + "pos": 0.054, + "neu": 0.782, + "neg": 0.164, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b1" + } + }, + { + "text": "She is very tough and the reading is mandatory. She is big on details. She seems very scary and all but if you need help she is available outside of class and willing to help. I learned a lot from her class. She makes you work hard, and she is very knowledgeable. If you aren't easily intimidated, I would recommend her.", + "pos": 0.196, + "neu": 0.699, + "neg": 0.105, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b2" + } + }, + { + "text": "Unless you have a ton of free time and this is practically your only class, avoid her at all costs. She assigns absurd amounts of readings and assignments no consideration of workloads from other classes or jobs. A very strict grader. You can't wing her tests based on class notes. Her tests are almost solely based on the reading material she gives.", + "pos": 0.049, + "neu": 0.885, + "neg": 0.066, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b3" + } + }, + { + "text": "She is very awful to work with. She gives a ton of readings and expects a a specific answer. She enjoys terrorizing her students and is a tough grader, take another class or choose a different professor.", + "pos": 0.073, + "neu": 0.732, + "neg": 0.195, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b4" + } + }, + { + "text": "If you are ready to handle many readings and almost interrogating class situations, i salute you. She is a very tough grader and very ignorant. She can be funny sometimes but most of the time you are scared that she is gonna call you out. READ READ READ. She doesnt follow the syllabus AT ALL.", + "pos": 0.061, + "neu": 0.824, + "neg": 0.114, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b5" + } + }, + { + "text": "She is a very hard grader, her class has no structure at all, she is going to give you a ton of readings and plus she has a bad attitude towards students...The good thing is that you actually learn something out of her class...I don't recommend her neither avoid her...if you do read and write good papers you might end up with a good grade..up to u", + "pos": 0.134, + "neu": 0.746, + "neg": 0.12, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b6" + } + }, + { + "text": "I thought of dropping class the first week but dec'd to stick through. BIG MISTAKE. Horrendous teacher/arrogant attitude,this is a class I would get A in w/ any other professor. Literally half the class dropped or withdrew, and 95% of the rest are considering it. AVOID.", + "pos": 0.0, + "neu": 0.764, + "neg": 0.236, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b7" + } + }, + { + "text": "She gave this law class with x-tra reading mtrlis.Okay discussions, expect no written reviews for tests. Her teaching in class was debatable. Not easy to follow if you are trying to finish her sentences. Criticism can be ok but at times sounds like a decree. Ask about her ways. I opted out since I could not follow her and for the sake of my GPA.", + "pos": 0.085, + "neu": 0.84, + "neg": 0.075, + "_id": { + "$oid": "6711d3bfcd60fca157e5a8b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c0cd60fca157e5a8ba" + }, + "professor_name": "Ira Spaulding", + "rating": 2.5, + "department": "Music department", + "comments": [ + { + "text": "Ira is dedicated and doesn't care about your feelings but if you want to learn and be more disciplined you have to show him you care about his class. He does interrupt people and will tell you that you are wrong but I just tried to keep up and studied once a week and got my grade.", + "pos": 0.114, + "neu": 0.752, + "neg": 0.134, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8bb" + } + }, + { + "text": "Doesn't deserve such a low rating -- maybe those people didn't care about the class or to participate. Show up, do what he says, and do hw if he gives any. He makes the class fun and goes over some music theory and vocal technique too. He is a professional and wants to help students learn. No complaints; great professor, great class.", + "pos": 0.164, + "neu": 0.73, + "neg": 0.106, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8bc" + } + }, + { + "text": "He doesnt care about your feelings, always make fun of your mistakes. Awful", + "pos": 0.162, + "neu": 0.441, + "neg": 0.398, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8bd" + } + }, + { + "text": "The atmosphere of his class is awful . He is not caring at all. I dont think I will take his class again.", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8be" + } + }, + { + "text": "I dropped his class, no regrets.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8bf" + } + }, + { + "text": "Please dont take his class if you can", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c0" + } + }, + { + "text": "The worst professor. He runs his class room like a high school. He is also very rude to students and is extremely lazy when it comes to teaching, yet he expects his students to be alert in his class.I would never recommend this professor to anyone. Please stay away and save your GPA. Also he is extremely stubborn and will argue with you", + "pos": 0.126, + "neu": 0.655, + "neg": 0.219, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c1" + } + }, + { + "text": "Very humorous, stickler for being on time but also caring.", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c2" + } + }, + { + "text": "Just finished this semester with him. Had a really tough time to go through. He doesnt not know how to respect students(yells at students) , having too much attitude . Never teach you how to sing, only points out the problem, and expects you to know immediately. I would not recommend him to anyone.", + "pos": 0.052, + "neu": 0.837, + "neg": 0.111, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c3" + } + }, + { + "text": "Easy lecture, terrible professor.", + "pos": 0.362, + "neu": 0.25, + "neg": 0.388, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c4" + } + }, + { + "text": "Good at what he does but can have a bit of an attitude. I know he wants the best for his students but there is a difference in tough teaching and being condescending and mean at times. If you want a good teacher, he's it but you better have thick skin if you get on his bad side.", + "pos": 0.227, + "neu": 0.685, + "neg": 0.087, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c5" + } + }, + { + "text": "I had him for vocal ensemble. He's very funny and easy! Just Sing and practice and you are good to go!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c8" + }, + "professor_name": "Lee Weintraub", + "rating": 4.2, + "department": "Architecture department", + "comments": [ + { + "text": "Big issue in 2009 about his improper behavior with female students which is rumored to have been going on for years. I believe he was asked to take a sabbatical but he declined. So he's still there. Hopefully he's changed his behavior.", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8c9" + } + }, + { + "text": "Extremely helpful. Has the ability to inspire creativity. Will help you anytime anywhere.", + "pos": 0.643, + "neu": 0.357, + "neg": 0.0, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8ca" + } + }, + { + "text": "Lee is absolutely amazing. He's a bit of a pistol and will probably make you crazy at one point or another, but he loves his students and wants them to succeed. Also, he really pushes you express yourself as YOU... very important!", + "pos": 0.277, + "neu": 0.691, + "neg": 0.032, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8cb" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8cc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8cd" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8ce" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8cf" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8d0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8d1" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8d2" + } + }, + { + "text": "very interesting cool person nice class trips", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8d3" + } + }, + { + "text": "Admits to cheating his way through college... what are you going to learn from someone like that...?", + "pos": 0.211, + "neu": 0.628, + "neg": 0.161, + "_id": { + "$oid": "6711d3c0cd60fca157e5a8d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c1cd60fca157e5a8d6" + }, + "professor_name": "Lynn Dion", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "She is an amazing professor, her instructions are clear and she is willing to help her students. Take her class, you won't regret it!!", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8d7" + } + }, + { + "text": "Although she's an easy grader when it comes to papers, her lectures tend to be pretty boring. Most of the time she would end up going on tangents, & often had me questioning how it was relevant to the class. If you can get past a boring hour and a half lecture, she's a good professor and offers a lot of good feedback and paper rewrites", + "pos": 0.155, + "neu": 0.767, + "neg": 0.078, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8d8" + } + }, + { + "text": "Very Nice Prof. Help me a lot! All you need is go to her and ask for help.", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8d9" + } + }, + { + "text": "A really nice lady. She'll give you the most helpful feedback on your papers. She is really sweet and helpful, though she does tend to ramble sometimes. I recommend her 100%", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8da" + } + }, + { + "text": "For Summer Course: She is an interesting lady. You'll be learning psychology as well if you take her for humanities. Attendance is important. She emails. 1 term paper, 2 exams, daily reactions (min. 1 paragraph long - Not difficult.) No textbooks. :o)", + "pos": 0.216, + "neu": 0.732, + "neg": 0.052, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8db" + } + }, + { + "text": "Lyn is a fantastic professor. Her instructions are clear, spends enough time on a subject so students can understand. She is fun.Don't mess up, she doesn't deserve bad students.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8dc" + } + }, + { + "text": "BEST PROFESSOR EVR!! i love this lady.. she is very helpful.. always there wen u need her, whether its in school or through email. She is serious abt attendance but her work is relle easy if u pay attention. Only 2 major papers u have 2 write. and tht too she helps u through it step by step. u have many chances to rewrite it till u get it right.", + "pos": 0.191, + "neu": 0.775, + "neg": 0.034, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8dd" + } + }, + { + "text": "Lynn is down to earth and really helpful. She always responds to e-mails quickly. If you show her that you want to learn, she'll go out of her way to help you. Even though her office hours are on Fridays, when barely anyone is in college, there are other ways to contact her. Oh yeah, and DON'T BE LATE if you decide to take her class! :)", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8de" + } + }, + { + "text": "Good info. She gave lot of chances to get the work right. This is a good class if you do the work and hand in on time. She does not like if you come late.", + "pos": 0.252, + "neu": 0.699, + "neg": 0.049, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8df" + } + }, + { + "text": "Nice human being and gud teacher ...", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e0" + } + }, + { + "text": "Mrs Dion is the best professor soo far. she is soo helpful and kind. always willing to help. wants her students to learn. always available when you need her. lectures are very helpful and not boring like other eng classes. i totally recommend her . shes the best prof . Do the work, grade shouldn't be a problem. i lov her..", + "pos": 0.34, + "neu": 0.633, + "neg": 0.026, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e1" + } + }, + { + "text": "Worst instructor, not straight forward. All she does is talk on & on about what she is going to do, but never does it. The only work included writing a lab report & lit. review. She's a hard grader, except on her lucky fav. students. She hates students that come in 1 min. late, & can't stand students that sneeze in the middle of her sentences.", + "pos": 0.116, + "neu": 0.763, + "neg": 0.121, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e4" + }, + "professor_name": "Yixiong Chen", + "rating": 3.1, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Chen is very nice but sometime it seemed like he was struggling while teaching the material. He doesn't really explain what is going on in class so you are on your own. The course it very fast paced so buckle up and math. I don't know how this class is only 2 credit.", + "pos": 0.139, + "neu": 0.801, + "neg": 0.059, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e5" + } + }, + { + "text": "Not good for an online teacher. Best to find someone else. Speach is inaudible and does not want to help students. Horrible in statistics.", + "pos": 0.129, + "neu": 0.583, + "neg": 0.288, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e6" + } + }, + { + "text": "He gives a lot of extra credits by asking you to write anticipation and feedback about the exams. The exams are not hard as long as you follow the lecture and do the assigned homework. Your exam grade can only be replaced by the latter and higher one.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e7" + } + }, + { + "text": "This man is ridiculously horrible as a person and also a teacher. Just horrible human being. Speaking with very heavy accent, and this man is very small minded, too. If possible, do not every take him. He is not even good at math but only good at using heavy accent to tell you something irrelevant. If you don't listen, he will show attitude. Avoid!", + "pos": 0.053, + "neu": 0.796, + "neg": 0.151, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e8" + } + }, + { + "text": "Get ready to study everything on your own! Can barely teach and hardly accessible outside class except for office hours. Barely responsive to the emails. The only good thing for this class is that he gives +10 pts extra credit3 pts online assignment + 7 pts short papers before and after each exam worth of the total grade which boosts your grade!", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8e9" + } + }, + { + "text": "Be ready to self teach because he doesn't do a good job teaching at all. Your grade is basically made up of the exams you will be taking.", + "pos": 0.081, + "neu": 0.841, + "neg": 0.078, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8ea" + } + }, + { + "text": "3 Exam grades but he drops the lowest one. Homework is extra credit but don't dismiss it. His review sheets are everything you need to focus to ace the class and the departmental final. He rushes through the material but will answer emails when you are lost. Fair grader but the material in unit 1 and 2 of the course should not be taken lightly.", + "pos": 0.086, + "neu": 0.828, + "neg": 0.086, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8eb" + } + }, + { + "text": "You'll definitely feel lost during the semester; he will also cover a lot of material in a short time span, and you'll HAVE to supplement it with videos. What makes this professor an absolute gem is the review sessions before and after the exams. Make the most out of those sessions and PRACTICE the questions he gives out - do that and you'll be set", + "pos": 0.04, + "neu": 0.926, + "neg": 0.034, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8ec" + } + }, + { + "text": "You are your own professor study the materials before the semester begins.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8ed" + } + }, + { + "text": "3 exams count toward 60 percent of your grade. Final counts 40 percent. He gives good partial credits on the exam as long as you understand the concept. Finish and understand the practice problems he hands out in class and you will be fine for the exam. All the exams are fair. Math 392 is not an easy course, so get ready to study hard.", + "pos": 0.162, + "neu": 0.752, + "neg": 0.086, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8ee" + } + }, + { + "text": "I took Linear Algebra with him, He started off the semester very difficult. I felt like I can never pass this class but as you keep working and don't give up, you might end up getting a good grade. Math is hard in general and this course is no joke. You really have to work hard for this class HOWEVER, HE IS THE BEST PROFESSOR.", + "pos": 0.16, + "neu": 0.744, + "neg": 0.095, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8ef" + } + }, + { + "text": "Gives really fair exams and gives lots of extra credit. Theres a lot of homework on webwork, however, he doesnt care too much if you got it all right. As long as you try and ask him questions. Homework is only to help you further understand the material. You dont have to finish all of it as long as you did majority of the hw, hell give you cred", + "pos": 0.1, + "neu": 0.809, + "neg": 0.091, + "_id": { + "$oid": "6711d3c1cd60fca157e5a8f0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f2" + }, + "professor_name": "Joel Koplik", + "rating": 3.3, + "department": "Physics department", + "comments": [ + { + "text": "Definitely one of the toughest classes and professors I've ever had, by far. Homeworks are tough but doable, exams are easily the most difficult you'll get, but those are meant to particularly test your knowledge of the concepts more than anything else. Practice as much you can from whatever resources you have, the class is tough regardless of prof", + "pos": 0.075, + "neu": 0.806, + "neg": 0.119, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f3" + } + }, + { + "text": "Exam average was like in the 30s and 20s. He makes up his questions and his hw problems dont prepare us for the exams. Also he has awful handwriting for his lecture notes and hw solutions. Unfortunately he's the only one teaching Phys 451. I recommend going into the class with a decent background on thermo and some probability.", + "pos": 0.099, + "neu": 0.782, + "neg": 0.119, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f4" + } + }, + { + "text": "This teacher is helpful, but his exam level is hardest in my academic experience.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f5" + } + }, + { + "text": "This professor is decent. If you are the physics major or minor who takes the class with this professor, you must study harder for the exams and quizzes and do your homework in order to get high average on the exam and to pass his class. You must memorize the equations from physics class notes and textbook.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f6" + } + }, + { + "text": "The class average for the first test was a 15 and 2nd one was a 30. While Prof. Koplik, he only really looks at the board, and therefore the board is learning everything, not the students. The class is in general already very hard, so Koplik definitely didn't help make it easier.", + "pos": 0.1, + "neu": 0.831, + "neg": 0.068, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f7" + } + }, + { + "text": "Professor Koplik has no business teaching a class. If you spend an hour and fifteen minutes staring into the board, writing equations and occasionally mumbling to yourself \"then we integrate, and divide. Afterwards we add this equation to our earlier equation and we can then get the formula we want\" you aren't actually teaching anything.", + "pos": 0.023, + "neu": 0.938, + "neg": 0.039, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f8" + } + }, + { + "text": "He mostly spoke into the board and wrote illegibly through the lectures. He had a very dismissive attitude towards the students, which was confirmed when he told us during evaluations \"say what you want I have tenure.\" He has since been removed from teaching dynamics, but be wary if you have him. His course is impossible to learn from.", + "pos": 0.045, + "neu": 0.955, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8f9" + } + }, + { + "text": "took the molecular dynamics simulation with him. though it was a hard course he did a nice job. no midterm and no final only weekly HWs. YOU HAVE TO DO THE HWS if you want to learn MD. I enjoyed every session of the class and learned a lot. he is really experienced in this field.", + "pos": 0.148, + "neu": 0.762, + "neg": 0.09, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8fa" + } + }, + { + "text": "Prof. Koplik is very fair, Quantum Mechanics is just a hard subject there is only so much he can do. The average for midterm 1 was 38 and for midterm 2 it was 14. He helped us as much as possible by making the final very straight forward. To pass his class and do well, try your hardest to work out the homework problems.", + "pos": 0.098, + "neu": 0.843, + "neg": 0.059, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8fb" + } + }, + { + "text": "Koplik is very THOROUGH. You MUST study HARD and do ALL homeworks to pass. The midterm average was a 38. You need to understand Quantum Mechanics inside out. Otherwise F!!", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8fc" + } + }, + { + "text": "IMPOSSIBLE (but fair) EXAMS (midterm average was a 22) His lectures are very clear and concise, and extremely fast. Need to do the HW and read before hand (something I didn't do until after the midterm). He covers far more material than most professors. A comprable course at MIT covered only 1/2 the material we did. midterm+final+10HWs= final grade", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8fd" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c2cd60fca157e5a8fe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c2cd60fca157e5a900" + }, + "professor_name": "Brenna Crowe", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Very sweet and understanding professor, this was my very first year at CCNY and she made my first semester a lot of fun with the different assignments in class. would 100% retake any of her classes if it was available.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a901" + } + }, + { + "text": "N/A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a902" + } + }, + { + "text": "Ms. Crowe is an excellent professor, offering great feedback and understanding to all her students. She also responds fast to her emails. Class time is provided to perfect projects before deadlines, so make sure you attend regularly and ask questions if necessary.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a903" + } + }, + { + "text": "Very sweet professor. Does give good feedback also, not hard to get good grade. Lots of options to get extra credit. Very understandable with assignments. Gives extra time for work also if needed. Take her if ya need good grade. Also the lecturers are not heavy.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a904" + } + }, + { + "text": "Professor is very empathic of your situation outside the class. She's quite energetic. However, she doesn't know how to get students to participate more during class which in my opinion is important as it sometimes gets boring and she ends up in her answering her own questions. Do hmk on time dont try to take advantage of her kindess youll be fine.", + "pos": 0.129, + "neu": 0.837, + "neg": 0.034, + "_id": { + "$oid": "6711d3c2cd60fca157e5a905" + } + }, + { + "text": "Professor Crowe is incredibly understanding of your circumstances and constantly gives extensions for work. She's very respectful and has a lot of energy when she teaches. The homework discussions are very easy and the readings are interesting.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a906" + } + }, + { + "text": "My first semester of CCNY was amazing because of her. She is the sweetest professor ever! We got a lot of homework extensions. If you give a little effort, I promise you will get A+ easily. If possible, I will take her class over and over again.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a907" + } + }, + { + "text": "She really cares about her students and always has good energy when teaching, which makes her class more intriguing. The readings we have to analyze in discussion posts are relevant to each graded assignment and the feedback she provides is very clear. Attendance also matters.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a908" + } + }, + { + "text": "Definitely one of the best professors at CCNY. She genuinely cares about the students and what she's teaching. She's the nicest and absolutely fun. Her class was excellent. It was so informative and productive. 10/10 would recommend. Take her class. Y'all won't regret it.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a909" + } + }, + { + "text": "She's an amazing professor. Very understanding and gives great texts for the class to read and analyze. W teacher fr fr fr fr fr fr fr fr fr fr fr fr fr fr", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a90a" + } + }, + { + "text": "Most genuine professor as she has genuine care and interest in anything you have to say. Came in early to a class once and had a great conversation about working and being in college. Definitely would take this course again.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a90b" + } + }, + { + "text": "the most amazing professor I probably will ever take. she was so dedicated to her work and so amazing in pushing each of us to do the best that we could. as long as you do the work you will pass. There are a bunch of chances for extra credit, and there are four major essay. But take her because she is so nice and such a caring person.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a90c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c2cd60fca157e5a90e" + }, + "professor_name": "William Gault", + "rating": 3.8, + "department": "Biology department", + "comments": [ + { + "text": "I had Dr Gault for bio 101 lab. I felt he graded pretty strict when it came to the lab reports and presentations", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a90f" + } + }, + { + "text": "Had him for bio 101 lab....an exceptional experience! Clear grading, constructive feedback, and quick email responses. He added points for clarity. Strong support students. Engaged and attentive to you, making the learning experience excellent! You take!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a910" + } + }, + { + "text": "Avoid him. I had him for bio 101 lab and his grading criteria for lab report wasn't clear and he took off so much points that he added some points and he barely replied emails even though he's always on computer.", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d3c2cd60fca157e5a911" + } + }, + { + "text": "the tests are worth a big part of your grade and they're very difficult if you don't pay close attention during lecture. professor gault is nice and understanding but it can be a little hard to reach him outside of class. the labs aren't too easy either and TA chanchal wasn't all that great. she was upset w/ us often and answered emails very late", + "pos": 0.059, + "neu": 0.739, + "neg": 0.201, + "_id": { + "$oid": "6711d3c2cd60fca157e5a912" + } + }, + { + "text": "Prof. Gault is one of the best at CCNY! The class is hard so you have to work for your grade but he explained the topics clearly. He doesn't drop any exams but the lowest one is worth 7% which helps a lot! He also gave us extra credit assignments to add some points to the exam's grades, and there are 3 online quizzes based on readings.", + "pos": 0.206, + "neu": 0.737, + "neg": 0.057, + "_id": { + "$oid": "6711d3c2cd60fca157e5a913" + } + }, + { + "text": "Prof. Gault is one of the best professors I have had in CCNY. He also teaches at City Tech. He was the best TA, very helpful and kind. He tells you exactly what he is looking for in the lab reports and gives a study-guide for the lab exams, he grades very fairly. I also took him for a summer BIO elective, if you learn the slides you will do great!", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d3c2cd60fca157e5a914" + } + }, + { + "text": "I took Bio380/Eukaryotic Genetics in the summer. Friends who took Prof. Gault's Bio375/Dev. Bio. class recommended him. He is def a good choice. Super interesting and he is up to date with all the new topics, CRISPR, genomics, and discussion were good. He was supportive and flexible when I had conflict with one of my exams. Recommended!", + "pos": 0.323, + "neu": 0.646, + "neg": 0.032, + "_id": { + "$oid": "6711d3c2cd60fca157e5a915" + } + }, + { + "text": "Good prof with bad room accommodations. Classroom was a difficult space but he managed to pull it off. Interesting topic, Dev Bio, taught in a friendly environment, makes the class recommended. Lots of reading for an A, but prof provides some notes which helps. He is very supportive of students, even writing me a med school letter. Check it out.", + "pos": 0.25, + "neu": 0.697, + "neg": 0.054, + "_id": { + "$oid": "6711d3c2cd60fca157e5a916" + } + }, + { + "text": "The best lab prof at city college hands down. He really wants students to do well. On lab reports he explicitly states what he wants in each section, and if you do that he gives you full credit. Nothing tricky on his exams, just know how you did the lab and why each step was performed, which may be tough but is fair. Highly recommend.", + "pos": 0.189, + "neu": 0.794, + "neg": 0.017, + "_id": { + "$oid": "6711d3c2cd60fca157e5a917" + } + }, + { + "text": "A lot of reading a tough exams. Get ready to study on your own", + "pos": 0.156, + "neu": 0.75, + "neg": 0.094, + "_id": { + "$oid": "6711d3c2cd60fca157e5a918" + } + }, + { + "text": "Gault tries to teach but bio 1 is really hard. Gault expects you to remember every concept from chapter 1-20 (before midterm) and chapter 21-50 for the final. You need a strong AP BIO/CHEM background and read all the chapters from the textbook to pass this class. Youll need to give it all you got. I strongly recommend taking chem 2 before hand.", + "pos": 0.196, + "neu": 0.777, + "neg": 0.027, + "_id": { + "$oid": "6711d3c2cd60fca157e5a919" + } + }, + { + "text": "Professor Gault is one of the most caring and respectful professor I have ever came across. His tries his best to give good feedback and help out his students as much as he can. I wished that he was the lecture professor because he is way better. P.S. he is weirdly funny lol. If you see him take him you wont regret it.", + "pos": 0.332, + "neu": 0.641, + "neg": 0.027, + "_id": { + "$oid": "6711d3c2cd60fca157e5a91a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c3cd60fca157e5a91c" + }, + "professor_name": "Rakhshanda Iftikhar", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Shes a very amazing and kind teacher and if you want an easy A, shes your choice! Gives a lot of extra credit and is lenient on papers.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a91d" + } + }, + { + "text": "great professor. I love how she exhibit passion in her teaching, I was going to drop this class on the 2nd Saturday as it was so material heavy, but observing how she cares and repeats the material with different examples making the topic easier to grasp. it attracted me to this coursework very strongly.", + "pos": 0.313, + "neu": 0.665, + "neg": 0.022, + "_id": { + "$oid": "6711d3c3cd60fca157e5a91e" + } + }, + { + "text": "Before I took this class, I had a negative feeling that I would like it. Now, is the best class I've taken so far. The teacher is always available to explain something more than one time. This course is very good for those who major in Biology, due to the biology context. Be ready to take a quiz at the beginning of every class. Best teacher.", + "pos": 0.224, + "neu": 0.73, + "neg": 0.046, + "_id": { + "$oid": "6711d3c3cd60fca157e5a91f" + } + }, + { + "text": "Great class to start off for my psychology major. A lot of biology. Lectures are hella detailed. Take notes, pay attention and you'll be fine. She wants all her students to do well and it shows when she's grading essays and around the time for tests. Every class there's a mini quiz (5 questions) based on last class. It more so helps than hurts tho.", + "pos": 0.155, + "neu": 0.782, + "neg": 0.063, + "_id": { + "$oid": "6711d3c3cd60fca157e5a920" + } + }, + { + "text": "Very kind professor, however, she takes her time to grade things. Lectures long for a Saturday class but easy to understand. Every class there is a quiz. She also gave a lot of extra credit plus helped on exams by checking the first page only to see what you have wrong and corrected it. For the final, she even bought pizza for the class.", + "pos": 0.13, + "neu": 0.814, + "neg": 0.056, + "_id": { + "$oid": "6711d3c3cd60fca157e5a921" + } + }, + { + "text": "Because of her i hate psychology. And end up dropping the course. she wont let you take pictures because that way your life is easier. Plus she will not let you use your laptop. Quiz every class plus 5 min late and u r in trouble. But awesome for bio major because perfect for biology introduction.", + "pos": 0.191, + "neu": 0.748, + "neg": 0.062, + "_id": { + "$oid": "6711d3c3cd60fca157e5a922" + } + }, + { + "text": "i had taken this class in fall 16. i thought I am going to fail miserably, but my instructor worked with me really hard to give me motivation and re-lectured few things to make them more clear. I wish all my instructors were like her.", + "pos": 0.242, + "neu": 0.65, + "neg": 0.108, + "_id": { + "$oid": "6711d3c3cd60fca157e5a923" + } + }, + { + "text": "I took this young girl for my workshop. she was a workshop leader for Dr. Boczko. Amazing job, she had passion to teach, and i was failingexam, after her help i got really good scores. God Bless Her.", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a924" + } + }, + { + "text": "I took this professor last semester, she is good but the material itself is alot. One thing i liked was that different experience by both the lecturer and the students brough in to enhance the topics, which made the course more fun and understandable. But she is very strict with those who plagarize.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a925" + } + }, + { + "text": "Very helpful! She's always willing to help students succeed. Awesome professor!", + "pos": 0.661, + "neu": 0.339, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a926" + } + }, + { + "text": "Quiz every class,it reinforces concepts,very helpful, and give every chance to pass the course if u are sincerely involved in study", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a927" + } + }, + { + "text": "You do have to work hard for the class, but she helps you a lot if you are falling behind, and gives opertunities to get your grades up", + "pos": 0.108, + "neu": 0.794, + "neg": 0.098, + "_id": { + "$oid": "6711d3c3cd60fca157e5a928" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c3cd60fca157e5a92a" + }, + "professor_name": "Belinda Smith", + "rating": 1.8, + "department": "Advisor department", + "comments": [ + { + "text": "She makes herself seem more busy than she should be as an advisor. Not reliable and also she trys to insult your intelligence by saying slick things and then smirking or smiling. Nonetheless I wouldnt recommend her as an advisor bc shes only going to advise you to quit. If your dream is to be a doctor, youll do whatever it takes to become one.", + "pos": 0.11, + "neu": 0.816, + "neg": 0.074, + "_id": { + "$oid": "6711d3c3cd60fca157e5a92b" + } + }, + { + "text": "I was told I dont have the grades for med school. But Im in med school now. Remember students, anyone can be a Pre-Med Advisor, even a gym teacher (no offense to them). She isnt a doctor or on the med school admissions board. Dont let her discourage you!", + "pos": 0.062, + "neu": 0.89, + "neg": 0.047, + "_id": { + "$oid": "6711d3c3cd60fca157e5a92c" + } + }, + { + "text": "Tells me that I cannot get into medical school.I am academically disadvantaged and I am part of the SEEK program and the student with disabilities at CCNY. I became a stronger individual. When someone tells you that \"you cannot make it\". Do not listen to them, prove them wrong. Cause I did and I am in NYU medical School, full ride and tuition free.", + "pos": 0.082, + "neu": 0.837, + "neg": 0.081, + "_id": { + "$oid": "6711d3c3cd60fca157e5a92d" + } + }, + { + "text": "She tried to convince me to not apply to med school, either MD or DO, because \"I did not have what it takes\". Thank god I never listened to her. After transferring and getting encouragement from my parents, Ffwd 4 years Later, I'll be graduating med school in 1 year. If someone Says u can't do something- don't listen. Work harder and do it.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a92e" + } + }, + { + "text": "She seems to leave much earlier than the office's scheduled 5pm on a regular basis, NEVER replies to her emails, and always give students the vibe that she is too busy to help out (sometimes I don't understand how busy she can be when most attorneys, drs, and profs don't even seem as busy as her despite heavier workloads)she gives inconsistent info", + "pos": 0.042, + "neu": 0.939, + "neg": 0.019, + "_id": { + "$oid": "6711d3c3cd60fca157e5a92f" + } + }, + { + "text": "I visit her office that mandatory premed advising each semester. She would say that my scigpa is XX. I get more A's in science classes and return the subsequent semester, and she still says that my scigpa is XX, which is a bit confusing. She always smile and tells me that I am doing great, but I feel like they are false cushion for comfort.", + "pos": 0.165, + "neu": 0.815, + "neg": 0.02, + "_id": { + "$oid": "6711d3c3cd60fca157e5a930" + } + }, + { + "text": "This woman is extremely unpleasant and unhelpful. She acts with such entitlement as if she decides who gets into med school. She claims to want to help but does not. A truly insincere person who takes delight in dashing hopes rather than uplift them. There is a line between realistic and just outright mean and judgmental and she is the latter.", + "pos": 0.202, + "neu": 0.726, + "neg": 0.071, + "_id": { + "$oid": "6711d3c3cd60fca157e5a931" + } + }, + { + "text": "Why is she still hired? VERY unhelpful and almost lazy. City College and all premeds would do so much better if the school paid more attention to student complaints and hired a new advisor. Ideally someone who doesn't seem to hate their job and students that come to her for help.", + "pos": 0.19, + "neu": 0.731, + "neg": 0.08, + "_id": { + "$oid": "6711d3c3cd60fca157e5a932" + } + }, + { + "text": "This woman exemplifies pettiness and insincerity and unhelpfulness, and incompetence. This is coming from a current med student. She only helps \"certain\" students. It should never take 3 months to write a letter when everything else was ready. You NEVER take a vacation in July-August during early peak application season. Should be fired.", + "pos": 0.113, + "neu": 0.74, + "neg": 0.146, + "_id": { + "$oid": "6711d3c3cd60fca157e5a933" + } + }, + { + "text": "Give in order to receive. Attend the events and become familiar with Pre med office staff. If she doesnt know who you are and has never seen you in the office dont expect her to drop what she is doing for you. As a student you must learn to network with professors and advisors. She may not be super warm but she is professional, what matters most.", + "pos": 0.017, + "neu": 0.912, + "neg": 0.072, + "_id": { + "$oid": "6711d3c3cd60fca157e5a934" + } + }, + { + "text": "She is the type of person who helps those who seem to have potential or show that they are driven and proactive. She is honest. Some of my friends think she is not an encouraging person. I think otherwise. She is just earnest and interacts well with students who portray a sense of maturity. I am a graduating senior and she is one of the best adviso", + "pos": 0.257, + "neu": 0.709, + "neg": 0.033, + "_id": { + "$oid": "6711d3c3cd60fca157e5a935" + } + }, + { + "text": "She is an irresponsible advisor, only nice to certain people. She is always \"smiling\" and says she's busy, but my friends and I hardly see her getting her work done. It's one delay/postponement after another.", + "pos": 0.231, + "neu": 0.722, + "neg": 0.047, + "_id": { + "$oid": "6711d3c3cd60fca157e5a936" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c3cd60fca157e5a938" + }, + "professor_name": "Mark-Allan Donaldson", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Very chill class with lots of room for growth and success!", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a939" + } + }, + { + "text": "A one-of-a-kind professor never failed to make the class laugh. I had to withdrawal because I did not stay on top of the readings so it affected me during the final paper. If you stay on top of the readings or somewhat understand them, you'll do fine. He accepts late work and is very understanding.", + "pos": 0.209, + "neu": 0.737, + "neg": 0.054, + "_id": { + "$oid": "6711d3c3cd60fca157e5a93a" + } + }, + { + "text": "What a great human being Professor Donaldson is. He made me actually care about the Odyssey and that says a lot. I genuinely looked forward to this class week after week and could not recommend him as a professor enough. It was a PRIVILEGE. He also likes cats so +5 points", + "pos": 0.217, + "neu": 0.749, + "neg": 0.034, + "_id": { + "$oid": "6711d3c3cd60fca157e5a93b" + } + }, + { + "text": "Great sense of humor and in-class discussions. Plenty of opportunity for extra credit at the end of the semester and he gives great feedback on assignments.", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a93c" + } + }, + { + "text": "Hilarious and great at teaching the material. Quiz every class on the reading but easy enough if you've done them. Assignment prompts are super clear and also gives great feedback. Plenty of chances for extra credit.", + "pos": 0.502, + "neu": 0.498, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a93d" + } + }, + { + "text": "Professor Donaldson is a hilarious lecturer who knows his stuff. Classes are always a good time, with plenty of opportunities for participation. There is a short quiz at the beginning of each class on the assigned reading, but it's easy enough if you're on top of the readings. He also gives plenty of chances for extra credit.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a93e" + } + }, + { + "text": "Awesome professor. U do have tests, papers, weekly quizzes meaning the class is criteria heavy and at times could feel overwhelming but he is extremely lenient. If u just try on every assignment, u will get good enough grade to at least get B+ or better easily. Much accessible outside of class and not harsh about due dates either. He's great.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a93f" + } + }, + { + "text": "He is a very lenient professor. Only one book had to be purchased. However, the work is typically a lot. Weekly readings, quizzes and writings. One presentation, and presentation write up. If things were better planned out in regards to due dates I wouldve been happy. Just expect to do a lot of reading and writing.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a940" + } + }, + { + "text": "Amazing professor. Grading online was clear and he was very nice and lenient. He understood our circumstances with online school and I love that. Lots of reading though. I have never read so much before in my life. Do the readings and do well on the quizzes/short writing assignments and you'll be fine. He's absolutely fantastic.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a941" + } + }, + { + "text": "I had Professor Donaldson for WHUM 101 this semester and I honestly looked forward to going to his class. He's funny, brilliant and tries to help you anyway he can to make sure you do well. Actually read the books and you'll be fine. 10/10 recommend!", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a942" + } + }, + { + "text": "No text book but there are few books you can easily purchase for cheap. I really enjoyed how he made everyone feel comfortable to share their thoughts on the subject without any judgment. He gives you a chance to revise all your papers which is so helpful. He's very nice and has a sense of humor.", + "pos": 0.377, + "neu": 0.602, + "neg": 0.02, + "_id": { + "$oid": "6711d3c3cd60fca157e5a943" + } + }, + { + "text": "I took professor Donaldson's very first class ever, and knowing that, I thought he did a great job. I loved World Hum 101. He was full of tidbits of interesting information that were both relevant to the subject matter and fun to know. Donaldson is very passionate, knowledgeable, thoughtful, approachable, and gives insightful feedback.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d3c3cd60fca157e5a944" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c4cd60fca157e5a946" + }, + "professor_name": "Timothy Dalton", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "I would say he's a good professor, if you show up and put in the effort then you'll do well. One issue I had was that the instruction were very unclear and many students had trouble understanding including me and also he would change his mind and say different thing about each major assignment and not stay true to what he wrote on the syllabus.", + "pos": 0.069, + "neu": 0.83, + "neg": 0.101, + "_id": { + "$oid": "6711d3c4cd60fca157e5a947" + } + }, + { + "text": "I had this professor for English comp. He is very passive aggressive.He puts students on display constantly,if you have anxiety do not take his class. He will put you on the spot and embarrass you.He also has no social skills, he makes every single little interaction awkward when it doesn't have to be.I wouldn't take a class directed by him again.", + "pos": 0.032, + "neu": 0.855, + "neg": 0.113, + "_id": { + "$oid": "6711d3c4cd60fca157e5a948" + } + }, + { + "text": "He expects you to know a lot in english. If you have social anxiety, do not take his class because he will pick on you. He is not that bad but I wouldn't take his class. He gives lots of homework.", + "pos": 0.046, + "neu": 0.923, + "neg": 0.032, + "_id": { + "$oid": "6711d3c4cd60fca157e5a949" + } + }, + { + "text": "Very nice guy and passionate about what he does. But if your an introvert or have social anxiety this class isn't for you. Your going to have to conduct interviews inside and outside of school and do observations. Sometimes class can be slightly confusing about the direction we are going on the idea of what is happening.", + "pos": 0.069, + "neu": 0.866, + "neg": 0.065, + "_id": { + "$oid": "6711d3c4cd60fca157e5a94a" + } + }, + { + "text": "Had him for ENG 2200 at Wentworth as a fill-in professor by complete luck. He's passionate, understanding and above all else caring. He puts his students above all rigid rubrics or assignments, he will not overwhelm you and he will allow for extra time if you need it.\n\nIf you got to take an English course that he's teaching, it's a no brainer.", + "pos": 0.179, + "neu": 0.77, + "neg": 0.051, + "_id": { + "$oid": "6711d3c4cd60fca157e5a94b" + } + }, + { + "text": "This was one of the few professors with such big hearts, there is work to do and lots of participation but he is understanding. Talk to him he will give you the necessary extensions. He is great!!!", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a94c" + } + }, + { + "text": "Professor Dalton is definitely a change of scenery when it comes to teachers in college. In many ways, he makes you feel as though he really cares. Allows you to revise your essays for a higher grade. However his class has many components to it, a lot of work, but not hard. He can be very confusing as to he has many different parts to an assignment", + "pos": 0.076, + "neu": 0.884, + "neg": 0.039, + "_id": { + "$oid": "6711d3c4cd60fca157e5a94d" + } + }, + { + "text": "syllabus says not to be absent, honestly if youre doing well he wont say anything. A LOT of readings,He has a dry sense of humor, attempts to make class enjoyable. If you dont understand hes does one on one work to clarify, also offers rewrites if you dont like your grade. The workload is heavy but not complex, do what you have to and pass.", + "pos": 0.103, + "neu": 0.875, + "neg": 0.023, + "_id": { + "$oid": "6711d3c4cd60fca157e5a94e" + } + }, + { + "text": "He is a very fair and kind professor works with you on your assignments and gives a fair amount of work and allows rewrites for higher grades easily irritated if you don't show effort in your work so do all his assignments with effort and he will help you with the rest", + "pos": 0.218, + "neu": 0.734, + "neg": 0.048, + "_id": { + "$oid": "6711d3c4cd60fca157e5a94f" + } + }, + { + "text": "At times he was confusing on what he wanted to be done on assignments, however, he was very nice and graded very fairly and gave a reasonable amount of assignments. I would recommend his class.", + "pos": 0.142, + "neu": 0.81, + "neg": 0.048, + "_id": { + "$oid": "6711d3c4cd60fca157e5a950" + } + }, + { + "text": "He was great for me! Always allowed me to revise my essays! We had to spend some time on hw but have to prepare for future writing classes & put max effort to get the max out! In the long run, what he does is better because he did not say to write a research essay in 2 days! He gave us small assignments that saved time for the final research paper!", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a951" + } + }, + { + "text": "First of all, He is very confusing! Almost every student does not understand him! And ridiculously high amounts of hw assigned. I know it is college and college is a lot of work, but not like this! I can't spend 10 hours on his he when I have an exam for another class! Too much work!", + "pos": 0.0, + "neu": 0.881, + "neg": 0.119, + "_id": { + "$oid": "6711d3c4cd60fca157e5a952" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c4cd60fca157e5a954" + }, + "professor_name": "Adele Gilhooly", + "rating": 4.4, + "department": "Education department", + "comments": [ + { + "text": "She is the best professor in city college!!! I just l0ve her. I learned alot about teaching children how to read. If you are an education major, you should definitely take her. You will benefit. Trust me. She is simply the best. She knows the material inside and out. Very knowledgable professor!", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a955" + } + }, + { + "text": "she is A VERY GOOD PROFESSOR, SHE EXPLAINS VERY WELL. YOU KNOW WHAT TO DO. I LOVE HER. SHE IS GREAT.", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a956" + } + }, + { + "text": "she is a nice professor, very reasonable. No due date for homework, but the case study and final papers takes week to work on it. I took two classes taught by her. ^_^", + "pos": 0.055, + "neu": 0.895, + "neg": 0.05, + "_id": { + "$oid": "6711d3c4cd60fca157e5a957" + } + }, + { + "text": "The work was easy, but her class management lacked stability. It might be due to the amount of classes she taught this semester. She was very helpful and informative.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a958" + } + }, + { + "text": "She is a nice professor and easy one. You just have to do few paper.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a959" + } + }, + { + "text": "You just need to read the chapters and write responses to readings. That is it!!! She is flexible about the due dates of assignments so that you will feel relaxed. Also she is a nice person.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a95a" + } + }, + { + "text": "She is a very good professor just as long as you get your work in on time. Sometimes she comes off the wrong way, but I think that's just the human quality in her. Hopefully when I become a teacher/professor I will not show that quality", + "pos": 0.111, + "neu": 0.848, + "neg": 0.04, + "_id": { + "$oid": "6711d3c4cd60fca157e5a95b" + } + }, + { + "text": "I do not feel like I learned enough in this class to teach reading. I feel like all I have is a vague blueprint. Read alouds wer fun, the plan for teaching reading was the most lenghty and difficult paper I have ever done in my life. I do admit she was nice and tried to help the class.", + "pos": 0.186, + "neu": 0.725, + "neg": 0.089, + "_id": { + "$oid": "6711d3c4cd60fca157e5a95c" + } + }, + { + "text": "She is very nice.NIce personality. comprehensible and understaning. in her class you either learn or learn in a fun way. Tha amount of work is just like someone explained. Not so complitaed. But do you readins and journals responnses. Good Luck and Have FUN! :) you would love to be in her class.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d3c4cd60fca157e5a95d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c4cd60fca157e5a95e" + } + }, + { + "text": "she's really good. easy class. no tests. just fieldwork, a read aloud, case study, plan for teaching reading. but its ez and worth it if ur gonna b a teacher.", + "pos": 0.269, + "neu": 0.687, + "neg": 0.044, + "_id": { + "$oid": "6711d3c4cd60fca157e5a95f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c5cd60fca157e5a961" + }, + "professor_name": "David Eastzer", + "rating": 3.1, + "department": "Biology department", + "comments": [ + { + "text": "This professor just talk, talk and talk and more talking, It is a very boring class, he doesn't let class early and that didn't stop students from leaving early. His exam didn't make sense and many fail. He is really confusing and I sleep for most of his class. When you ask hims a question, instead of getting a answer, you get more confused.", + "pos": 0.026, + "neu": 0.822, + "neg": 0.152, + "_id": { + "$oid": "6711d3c5cd60fca157e5a962" + } + }, + { + "text": "Professor Eastzer is very knowledgeable and passionate about this topic. Does not like to be interrupted unless he is asking for feedback. He does not keep the class engaged.", + "pos": 0.178, + "neu": 0.701, + "neg": 0.121, + "_id": { + "$oid": "6711d3c5cd60fca157e5a963" + } + }, + { + "text": "Great teacher, can ramble at times but very easygoing. If you miss a class, you can get lost. Fair.", + "pos": 0.32, + "neu": 0.505, + "neg": 0.175, + "_id": { + "$oid": "6711d3c5cd60fca157e5a964" + } + }, + { + "text": "Professor Eastzer is very easy going, makes it effortless to come to him with concerns and is passionate about Science. On the flip side he fails to engage his students and is very repetitive and sometimes confusing. Overall I think he is okay and I would probably take him again.", + "pos": 0.179, + "neu": 0.706, + "neg": 0.115, + "_id": { + "$oid": "6711d3c5cd60fca157e5a965" + } + }, + { + "text": "Active participation is necessary to comprehend all information. A lot of writing assignments were given, but not overwhelmed. Tests were fair. I would have liked to been able to follow the syllabus more closely, but there's so much information it's difficult to do. Overall, enjoyed the class and his casual teaching style. No stress = learn more", + "pos": 0.253, + "neu": 0.684, + "neg": 0.062, + "_id": { + "$oid": "6711d3c5cd60fca157e5a966" + } + }, + { + "text": "He is a fair grader and all the exam question are given in advance. so all you need to do is study them and you will do fine.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a967" + } + }, + { + "text": "Hey if I pass his class anybody could. Do your work and enjoy.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a968" + } + }, + { + "text": "Usually a good professor but completely disorganized this time around!", + "pos": 0.145, + "neu": 0.593, + "neg": 0.262, + "_id": { + "$oid": "6711d3c5cd60fca157e5a969" + } + }, + { + "text": "He's not bad. Fair teacher.", + "pos": 0.365, + "neu": 0.384, + "neg": 0.251, + "_id": { + "$oid": "6711d3c5cd60fca157e5a96a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c5cd60fca157e5a96b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c5cd60fca157e5a96c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c5cd60fca157e5a96e" + }, + "professor_name": "Marcos Wasem", + "rating": 4.6, + "department": "Spanish department", + "comments": [ + { + "text": "I took Contemporary Spanish Poetry at the Spanish MA program in CCNY. He really knows what he's talking about. He provided lots of information and theory, and put all the course materials online. He's sort of a geek, and used his tech abilities to approach recent trends in poetry. Highly recommended, much better than others in the same program.", + "pos": 0.113, + "neu": 0.855, + "neg": 0.033, + "_id": { + "$oid": "6711d3c5cd60fca157e5a96f" + } + }, + { + "text": "It's hard enough to learn a language that is not your native one but Mr Wasem makes Spanish fun, enjoyable and with his approach you will learn a lot! Homework and quizzes are fair and he will work with you! I took him for Spanish 2,3,4 and he awesome!!!", + "pos": 0.286, + "neu": 0.695, + "neg": 0.019, + "_id": { + "$oid": "6711d3c5cd60fca157e5a970" + } + }, + { + "text": "I'm still taking his course for spanish 225 but I have a general idea of how he's like. Gives really short quizzes and does interesting but appropriate analogies. I say he's probably one of the best professors I've taken for foreign language!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a971" + } + }, + { + "text": "Excellent professor. His Generaci\u00f3n del '27 class was probably the best class I've taken at City College.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a972" + } + }, + { + "text": "Professor Wasem is a great teacher. Attendance and participation are priorities in his class. Too many latenesses and unexcused absences leads to him dropping you in front of the entire class. He takes his time reviewing so everyone will learn. He's also entertaining. You will learn a lot. And he's available during his office hours. Never absent.", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a973" + } + }, + { + "text": "I took the Contemporary Spanish Poetry course with this professor, and he was AWESOME. He makes you work, but you really enjoy it because he presents the topic in a very funny an interesting way. One midterm and one final exam, with four reports on the texts and bibliography recommended.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a974" + } + }, + { + "text": "Excellent professor", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a975" + } + }, + { + "text": "One of the best language professors you can have, very very patient. If you don't understand something he will go over it until you learn it. Fun class, he tries to not make his class look serious or hard. Only a couple of easy homeworks, about 5 quizzes with very little questions, midterm and final.", + "pos": 0.165, + "neu": 0.792, + "neg": 0.043, + "_id": { + "$oid": "6711d3c5cd60fca157e5a976" + } + }, + { + "text": "Easy and tris hard to make his lessons interesting. Didn't like when he puts things in the exams, which we had never learned in the class.", + "pos": 0.18, + "neu": 0.707, + "neg": 0.113, + "_id": { + "$oid": "6711d3c5cd60fca157e5a977" + } + }, + { + "text": "I highly recommend this teacher. He is nice and is willing to help you during office hours. Perfect for those students that are bad in spanish and want to pass.", + "pos": 0.326, + "neu": 0.588, + "neg": 0.086, + "_id": { + "$oid": "6711d3c5cd60fca157e5a978" + } + }, + { + "text": "Prof Wasem is a good prof and tries to make the class understand the work. His quizzes are pretty easy and the hw is pretty fair and relates to the classwork.", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a979" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c5cd60fca157e5a97b" + }, + "professor_name": "Ina Litera", + "rating": 4.7, + "department": "Music department", + "comments": [ + { + "text": "Great personality, great teacher. I took her for Instrument Ensemble and she always had great feedback to helps us grow as musicians. It's also cool that she had guest coaches like a professor from NYU and another musician.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a97c" + } + }, + { + "text": "Professor Litera is very nice and helpful. She talks extremely fast, but she explains is over again. I enjoyed taking music because of her. This class is easy I got a A+ in the class", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a97d" + } + }, + { + "text": "One of the best at City, helpful prof with a nice personality and good attitude. For some people, since this is an intro course, they may think the workload is too much; 4 papers, 4 test(drops lowest score)+1 final exam & 2 mandatory concert viewing. There's some extra credit work also so if you can handle that, there should be no problem passing", + "pos": 0.247, + "neu": 0.719, + "neg": 0.034, + "_id": { + "$oid": "6711d3c5cd60fca157e5a97e" + } + }, + { + "text": "SHE IS INCREDIBLE ! best prof in city college. great personality, caring , helpful,u name it ! just follow her, good grade will follow u", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a97f" + } + }, + { + "text": "What a wonderful dedicated professor. She's extremely talented and adores music. She gives plenty of extra credit, help, and extra notes along with review sheets. The class was also engaging because she plays videos and samples of music so we can hear what we're learning. I enjoyed her class so much and have developed a love for classical music.", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a980" + } + }, + { + "text": "She is wonderful Professor, caring and she gives a lot of opportunities to get extra credit. This class is easy and interesting i recommend everyone to take it", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a981" + } + }, + { + "text": "Professor Litera is the best professor that I've had so far. She assigns four papers, but she gives you ample time to do them, and she isn't a harsh grader. The key to passing her class is to really put your heart into the assignments, she wants to hear your voice. She gives great lectures, so take great notes and you won't need the text book!", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a982" + } + }, + { + "text": "She is good. She can also teach. But u might want to make your notes with the textbook on your own to do well in her tests. because her lecture is very strange if u dont read before the class. u might want to get ur hand ready for 4 papers. but if u could do it all. a B+ and above is certified.", + "pos": 0.202, + "neu": 0.763, + "neg": 0.035, + "_id": { + "$oid": "6711d3c5cd60fca157e5a983" + } + }, + { + "text": "So nice and helpful. She does everything she can to keep students interested in the topic and to help struggling students excel.", + "pos": 0.436, + "neu": 0.48, + "neg": 0.084, + "_id": { + "$oid": "6711d3c5cd60fca157e5a984" + } + }, + { + "text": "she truly is amazing, very understanding, and for the most part tries to make class interesting.", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a985" + } + }, + { + "text": "She is a great Professor she tries to help you understand the best she can and she is reasonable. When she knows most of the class is doing poorly she does the best she can to help them pass.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d3c5cd60fca157e5a986" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c6cd60fca157e5a988" + }, + "professor_name": "David Plick", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "He'll throw alot of 10 page papers at you, time consuming but trust me easy A class.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a989" + } + }, + { + "text": "GIVES A LOT OF WORK SO GET READY TO WRITE A BUNCH OF LENGTHY PAPERS. Other than that he's a really chill dude who clearly puts effort into his lectures and does what he can to make the class an interesting and positive experience for everyone. Genuinely cares; overall, Plick is a great professor! Just be ready to do work and you'll be 100% fine!", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a98a" + } + }, + { + "text": "Awesome teacher, would love to take again as he gives constructive and positive feedback with regards to papers, assignments and projects. Only three quizzes given in the beginning followed by two papers and a group project to end the semester.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a98b" + } + }, + { + "text": "Gives valuable feedback which is crucial and he is very modest and humble to students in terms of solving any problems. Great personality.", + "pos": 0.307, + "neu": 0.607, + "neg": 0.086, + "_id": { + "$oid": "6711d3c6cd60fca157e5a98c" + } + }, + { + "text": "He gives good feedback about the paper. Really helpful.", + "pos": 0.461, + "neu": 0.539, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a98d" + } + }, + { + "text": "Kind professor with excellent feedback. Allows rewrites to help boost grades.", + "pos": 0.641, + "neu": 0.359, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a98e" + } + }, + { + "text": "Just an amazing teacher. Loves to joke around and engage the class. Possibly one of the realist and coolest people I know, not just from professors. Really cares about students, gives great feedback, is there for you if you need something. Extremely fair deadlines but the work is actually thought provoking and makes you write to the best of you can", + "pos": 0.273, + "neu": 0.698, + "neg": 0.03, + "_id": { + "$oid": "6711d3c6cd60fca157e5a98f" + } + }, + { + "text": "He's a funny guy. Likes to engage the students. Gives great feedback on essays", + "pos": 0.55, + "neu": 0.45, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a990" + } + }, + { + "text": "Great professor! Gives great directions for every assignments! Has a great sense of humor and is very nice! He's a must take!", + "pos": 0.523, + "neu": 0.477, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a991" + } + }, + { + "text": "Great teacher. So much charisma and great sense of humor. Lots of discussions in class and he really gets to know you. Fair amount of work, just do it right and as he tells you. Great teacher overall.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a992" + } + }, + { + "text": "He's a very good professor although he hasn't been teaching for long. His class is fairly easy if u know how to write essay with clarity, organization, good thesis, ideas, good structure then you should be good. He's also very helpful if u go for help during office hours. he is also funny and of a good humor. He is the best.", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a993" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c6cd60fca157e5a995" + }, + "professor_name": "Susanna Schaller", + "rating": 3.3, + "department": "Liberal Studies department", + "comments": [ + { + "text": "The best professor I have had at City College. Yes, a lot of work, but if you dive in and do the reading and assignments you really learn a lot. She is easy to engage with and learn from, and this course (and her others, I've taken a few) is worth while. I always feel satisfied when I finish the readings or an assignment.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a996" + } + }, + { + "text": "She is very academic so expect to have to read at a graduate level. It was a lot of writing based on a lot of reading. But the topics were interesting and her feedback on the writing is at the level of an English professor. If you're willing to step up to the plate and read/write, it is an interesting and manageable class.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a997" + } + }, + { + "text": "Yes, you will have to do lots of reading, PowerPoint presentations and lots of research but you will come out of her class with knowledge of the subject in question! Shes always available for students. Fair grader and participation is a plus. I took 2 of her Urban Policy classes. Best professor at CWE.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a998" + } + }, + { + "text": "The graduate classes taught by the professor are challenging and but overall noteworthy. Basically, keep up with your readings and you won't fall behind. Do the work and she will grade accordingly. Don't take her class if you are a lazy student that tends to procrastinate. Do take her class if you like to learn and participate in class discussions", + "pos": 0.07, + "neu": 0.88, + "neg": 0.05, + "_id": { + "$oid": "6711d3c6cd60fca157e5a999" + } + }, + { + "text": "Teaches at a graduate level although it was an undergraduate course (non-profit mngmt). Course should have been taught very simply to get an idea of the non-profit world - instead class was put in groups to create our own non-profit organization from soup to nuts. Excessive amounts of work and writing. Very helpful but not quite as effective.", + "pos": 0.057, + "neu": 0.859, + "neg": 0.084, + "_id": { + "$oid": "6711d3c6cd60fca157e5a99a" + } + }, + { + "text": "Excellent professor who layers carefully structured readings with informative and enriching in-class discussions.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a99b" + } + }, + { + "text": "Very difficult for Sociology One. Gives 6 papers and weekly readings that are more than 60 pages long. On top of that gives assignments and visit to museum and have to write on those as well. The readings consume you along with the papers for a level one course. I would not recommend this teacher", + "pos": 0.065, + "neu": 0.853, + "neg": 0.082, + "_id": { + "$oid": "6711d3c6cd60fca157e5a99c" + } + }, + { + "text": "I like Dr. Schaller a lot and she has inspired me to pursue more studies in Urban Planning. While her assignments are writing intensive and not always easy, she will take as much time with you as needed to explain. She uses case studies and often challenges her students in a new way. Some may not appreciate that but I liked the challenge.", + "pos": 0.146, + "neu": 0.806, + "neg": 0.048, + "_id": { + "$oid": "6711d3c6cd60fca157e5a99d" + } + }, + { + "text": "Dr. Schaller is inconsistent and confused a group of adult graduate students who had high hopes for her. Susanna Schaller is not helpfull and profoundly undergrades her students.", + "pos": 0.09, + "neu": 0.836, + "neg": 0.074, + "_id": { + "$oid": "6711d3c6cd60fca157e5a99e" + } + }, + { + "text": "Very nice professor. If you are looking for a class to play in this is not it. Professor Schaller pushes you to do your work. Once you leave her class you can say I got my moneys worth. She's always available to help with whatever issue you're having.", + "pos": 0.186, + "neu": 0.792, + "neg": 0.022, + "_id": { + "$oid": "6711d3c6cd60fca157e5a99f" + } + }, + { + "text": "RUN. Nice demeanor, however she is new to teaching. Requires odd-ball assignments no one has ever done or heard of. Does not really know what she is doing at times. WRITING INTENSIVE!! Group project/PowerPoint, textbook reading, 20+ pg *purchased* case studies, and Memos all expected all to be worked on at the same time.", + "pos": 0.059, + "neu": 0.903, + "neg": 0.038, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a2" + }, + "professor_name": "Corey D'Augustine", + "rating": 3.8, + "department": "Honors department", + "comments": [ + { + "text": "This course is really fun and taught me a lot about the arts in NYC. Be sure to participate in class discussions and put effort into the essay and you'll be fine.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a3" + } + }, + { + "text": "Corey definitely knows his art and art history and is willing to share it with you. Do the blog posts before the due date. The exhibition critique is no joke, he will grade you harshly on it. Start Reading War & War before the due date, you will not be able to read it in a single night. Enjoyable Experience, Would Recommend 810 if you do the work", + "pos": 0.127, + "neu": 0.753, + "neg": 0.12, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a4" + } + }, + { + "text": "Incredibly knowledgeable about art history. His expectations are very high & clear but his assignments aren't. Do ALL your blog posts ON TIME. If you want feedback on if you're doing in the classon the posts, ask him because he doesn't tell you how you're doing in the class. It's a tough class but you learn so much!", + "pos": 0.061, + "neu": 0.91, + "neg": 0.029, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a5" + } + }, + { + "text": "The class itself was very interesting and exciting, but the assignments were confusing. He did not fully explain prompts or guidelines, but still graded very harshly.", + "pos": 0.143, + "neu": 0.778, + "neg": 0.079, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a6" + } + }, + { + "text": "Corey is an incredible professor. The trips throughout the city are so fun and eye opening. You learn more out on the streets than you ever would in the classroom. Take his assignments seriously and dedicate time to the one paper and final presentation he assigns. He's a bit harsh in terms of grading, but it's only because he expects quality.", + "pos": 0.041, + "neu": 0.907, + "neg": 0.052, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a7" + } + }, + { + "text": "Awesome professor! Really funny and laid back. The excursions taught us more than sitting in a classroom could. There is one major paper and a final presentation which he vaguely talks about, but if you actually try you should be fine.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a8" + } + }, + { + "text": "He's an amazing. He knows what he's doing and the excursions made the semester for me. There's not alot of work for this class as well. However, be warned if you're taking his class as a first semester freshman. He grades harshly and his expectations for assignments are vague. Do not hand in assignments you've BSed!", + "pos": 0.093, + "neu": 0.805, + "neg": 0.101, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9a9" + } + }, + { + "text": "He is a very nice, clear, entertaining, and laid back professor, but he IS a hard grader. Make sure you're checking your grammar and input A LOT of what YOU got out of the exhibition/work rather than summarizing things. And make sure you participate and know what you're talking about.", + "pos": 0.208, + "neu": 0.764, + "neg": 0.028, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9aa" + } + }, + { + "text": "He grades pretty hard on writing (and he didn't really tell us how he was going to grade assignments). It's a fun class just don't plan to have any classes after so you can stay longer when you meet at a museum. I enjoyed it!", + "pos": 0.192, + "neu": 0.781, + "neg": 0.027, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9ab" + } + }, + { + "text": "Prof D'Augustine was a pretty chill. Very casual in the way he talks with his students and creates a relaxed atmosphere. Don't let that fool you though; he's not all fun and games. He'll evaluates your work seriously. He may not ask a lot from you for the class but when he does, he expects it to be top notch.", + "pos": 0.169, + "neu": 0.783, + "neg": 0.048, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9ac" + } + }, + { + "text": "Very nice and helpful, do your best to interact in class too.", + "pos": 0.535, + "neu": 0.465, + "neg": 0.0, + "_id": { + "$oid": "6711d3c6cd60fca157e5a9ad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c7cd60fca157e5a9af" + }, + "professor_name": "David Linker", + "rating": 4.3, + "department": "Education department", + "comments": [ + { + "text": "This turned into a quasi number theory class rather than a problem solving class. Dr. Linker is an elitist who thrives on thinking he's better than other people and enjoys communicatng that fallacy. Overall I found him to be a rude man with little to offer in tems of teahig techniques.", + "pos": 0.163, + "neu": 0.743, + "neg": 0.094, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b0" + } + }, + { + "text": "Professor Linker really cares about teaching. He shows us a lot of great things to bring back to the classroom. I have used so much of his material in my classes. His class is always interesting and fun. Best teacher I have ever had anywhere. I want to be like him in my classes. Making it fun and keeping all students interested.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b1" + } + }, + { + "text": "Possibly one of the best education professors at City College. Very supportive of the use of technology in classrooms and always brings something interesting to the table. Classes are always exciting and full of dense discussions about technology, math, and education in general and everyday, I learned something new. Highly recommended professor.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b2" + } + }, + { + "text": "His class is easy, but he gives too much work. Quality is what is important. Not Quantity. It seems that he does not understand this. He also makes us do his work in general. I had much better quality courses at City College. This class is a freebee.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b3" + } + }, + { + "text": "KINDERGARTEN STUFF! His techniques are nothing special. Why are so many City College students impressed with him? His material would NEVER cut it at a top-tier college, which explains why he was only an adjunct at City College. EASY GRADER, which is why students love him and shower him with praises. Profs like him cheapens a college diploma.", + "pos": 0.262, + "neu": 0.706, + "neg": 0.031, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b4" + } + }, + { + "text": "Linker is very interesting and an all around great teacher. One thing..don't be late or miss class, and he will keep you every second of class! You don't have the option of spacing out in class either.. he makes sure everyone is involved.", + "pos": 0.193, + "neu": 0.776, + "neg": 0.032, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b5" + } + }, + { + "text": "Lot of work, but makes you love and think about mathematics. Great help for the classroom. My high school students love trying the problems. Best teacher I ever had, but don't be absent or late.", + "pos": 0.45, + "neu": 0.49, + "neg": 0.06, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b6" + } + }, + { + "text": "best teacher i had at ccny. linker is a genius. i wish i had taken more classes with him!!!", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b7" + } + }, + { + "text": "Great teacher, smart and caring, but you do a lot of useful work.", + "pos": 0.535, + "neu": 0.465, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b8" + } + }, + { + "text": "Educated, concerned, thorough, and enthusiastic. Great teacher who will work with you.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9b9" + } + }, + { + "text": "This guy is a genius! Every class is intersting", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9ba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c7cd60fca157e5a9bc" + }, + "professor_name": "Hana Kogan", + "rating": 2.3, + "department": "Mathematics department", + "comments": [ + { + "text": "Had her for introduction to probability theory, she knows her stuff and herself is an active researcher. She has an open door policy. Her exams are similar to reviews. Learn the concepts from the reviews you'll be fine. She is very patient and caring.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9bd" + } + }, + { + "text": "Had her for Calc I at NYU. She was not helpful at all. You cannot understand her during lectures, and often refuses to answer questions while she is teaching. What should be an easy class turned out to be very hard.", + "pos": 0.065, + "neu": 0.846, + "neg": 0.09, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9be" + } + }, + { + "text": "I guess you guys never heard what is called \"unfair\". To you, if the professor like you, is fair; otherwise, unfair. I don't think I am liked by the professor initially, but she is good to me and everyone who wants to attend the discussion of the class. I have some other professors' 203 class, she is the most excellent one.", + "pos": 0.201, + "neu": 0.742, + "neg": 0.056, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9bf" + } + }, + { + "text": "She is the most excellent female professor I have had! She cares about students and is very very smart. She teaches very very clearly and was willing to teach again if someone had a question. She is kind and patient. I am a foreigner who just stayed in this English environment for several months, but I totally understood what she said!", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c0" + } + }, + { + "text": "Too much homework from textbook. But she designed her exams from Dept. finals. She doen't know how to teach the lecture and matlab. She always throw out some topics in last 5 minutes of lecture time. The lecture note is messy and hard to follow. The concept and demonstration are NOT clear. Also her voice is.............Don't take her class.", + "pos": 0.025, + "neu": 0.856, + "neg": 0.119, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c1" + } + }, + { + "text": "I never have felt more unmotivated to even keep going in a class before. She made my love for mathematics turn into hate and frustration. I aced cal 1 and 2 with an A so I know my derivatives and integrals. I have never felt so stupid and useless in her class. She tells us not to take notes because every example is different. Never take her ever!", + "pos": 0.05, + "neu": 0.743, + "neg": 0.206, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c2" + } + }, + { + "text": "she is far the worst math professor in City College, Compared to Ocken or Paolillo she is worst at everything, her grading policy sucks, it got so bad that now the Math Department is keeping eyes on her, no fairness in her exams, she doesn't prepare the students for them, no office hours, she even laugh's at us when we ask questions...seriously", + "pos": 0.0, + "neu": 0.741, + "neg": 0.259, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c3" + } + }, + { + "text": "Horrible professor. Uses differential equations and linear algebra examples to support her teaching in calc 3. DO NOT TAKE HER. Is very unfair, even by other professor's standards.", + "pos": 0.078, + "neu": 0.723, + "neg": 0.199, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c4" + } + }, + { + "text": "She does not care about the students learning ability. She expects everyone to understand, and if they don't, tuff.", + "pos": 0.105, + "neu": 0.775, + "neg": 0.12, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c5" + } + }, + { + "text": "She is really one of the worst math teachers ever. You will have to use the textbook if you hope to learn and then you go to clash and she uses something totally different from the textbook and confuses you.", + "pos": 0.063, + "neu": 0.799, + "neg": 0.138, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c6" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c7cd60fca157e5a9c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c8cd60fca157e5a9c9" + }, + "professor_name": "Paul West", + "rating": 3.3, + "department": "Physics department", + "comments": [ + { + "text": "He is a great professor. I took him in laguardia community college. Will absolutely recommend him to people. He is stern and humorous but thats the kind of professor you need. Assigns alot of homework, doesn't collect but please do'em because Statics needs alot of practice. He entitles his students as \"Badass\" who performs brilliantly in class.", + "pos": 0.217, + "neu": 0.747, + "neg": 0.036, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9ca" + } + }, + { + "text": "I feel that I need to clarify some things. Prof. West does not teach in the Physics dept rather the ME dept nor has he ever taught ME356 (only 246,330, & one elec.) He is a very good professor and expects his students to retain the information he stresses in his class notes. Follow the class notes and you will ace his exams. He is VERY helpful!", + "pos": 0.098, + "neu": 0.861, + "neg": 0.04, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9cb" + } + }, + { + "text": "The class itself was not that hard. He explains very clearly and he gives out lots of example problems. He really knows his stuff.", + "pos": 0.153, + "neu": 0.75, + "neg": 0.096, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9cc" + } + }, + { + "text": "Quite possibly the greatest waste of time for anybody. We had ridiculously stupid presentations throughout the semester and he essentially condensed the two exams into the last two weeks. Very disorganized and he just essentially wrote notes on the board for the entire semester. To this day, I don't know on what and how I was graded. AVOID!!!", + "pos": 0.063, + "neu": 0.729, + "neg": 0.209, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9cd" + } + }, + { + "text": "good professor. really tries to make students learn material", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9ce" + } + }, + { + "text": "His grading was very unfair. It seemed like he randomly picked a grade. Ruined my perfect GPA. The class was based on group projects and he gave different grades to the group members even though we did the same exact thing. Don't take him if you have a choice.", + "pos": 0.107, + "neu": 0.78, + "neg": 0.113, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9cf" + } + }, + { + "text": "GREAT PROFESSOR...PEOPLE COMPLAINED BUT THAT'S BECAUSE THEY DON'T WANT TO PUT WORK ON THEIR END. GIVES LOTS OF NOTES BUT THEY USUALLY SHOW UP IN EXAMS. IF U UNDERSTAND CONCEPT FROM BOOK U WILL DO GOOD ON EXAMS. I WASN'T THE BEST IN THE CLASS BUT IT HAD NOTHING TO DO WITH HIS TEACHING SKILLS. WHOEVER COMPLAINS JUST NEEDED SOMEONE TO BLAME", + "pos": 0.085, + "neu": 0.727, + "neg": 0.188, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d0" + } + }, + { + "text": "HE IS HORRRIBLE, he doesnt know anything and absolutely unclear. you wont learn nothing and end up with a very bad grade, thats how a bad grader he is. he spends all the time writng on the board and you should copy the stuff which are not even helpful, those are just a review of the chapters. VERY VERY VERY BAD GRADER, dont take him for high levels", + "pos": 0.0, + "neu": 0.768, + "neg": 0.232, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d1" + } + }, + { + "text": "he's the best professor in the eng. department...take with him he is really good!!!", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d2" + } + }, + { + "text": "he is ok.. the class is fun !!", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d3" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d6" + }, + "professor_name": "Michel Orsi", + "rating": 5, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Prof. Orsi was very passionate of what he taught in the class. It was his first time teaching CHE341, and yet he did considerably well. What I particularly liked about him is how he gave students the chance to improve their grades. The class itself was challenging, so students are expected to study. Read the slides and learn to derive equations!!!!", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d7" + } + }, + { + "text": "I learned so much in the class. professor Orsi is a very kind and caring professor. He would like to take time to make sure you understand the material fundamentally. He will try different ways to make you think and be able to digest the materials and concepts. Gradient, curl, divergence, I was once so afraid of those terms. Deeply appreciate!!!", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d8" + } + }, + { + "text": "I learned so much in the class. professor Orsi is a very kind and caring professor. He would like to take time to make sure you understand the material fundamentally. He will try different ways to make you think and be able to digest the materials and concepts. Gradient, curl, divergence, I was once so afraid of those terms. Thank you!", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9d9" + } + }, + { + "text": "A good professor, who cares about his students and is good at explaining the material", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9da" + } + }, + { + "text": "Amazing professor who really cares about the students. He wants you to understand the material and do well.", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9db" + } + }, + { + "text": "Professor Orsi is great at teaching and cares about his students. I really recommend taking his class!", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9dc" + } + }, + { + "text": "Professor Orsi is a remarkable Professor.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9dd" + } + }, + { + "text": "Very encouraging professor who wants you to truly understand the material. If you don't, he will happily put in as much time as needed to get you there. He is great at explaining concepts in different ways if one way doesn't make sense to you. Lectures were interesting and the course had a great flow. Clear expectations and respectful environment.", + "pos": 0.296, + "neu": 0.667, + "neg": 0.037, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9de" + } + }, + { + "text": "Tough class, but a great teacher and very nice.", + "pos": 0.575, + "neu": 0.352, + "neg": 0.073, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9df" + } + }, + { + "text": "Great professor who truly wants to see his students truly grasp the material, rather than superficially understand it. His lectures are amazing, as he is able to clearly explain topics. Other than that, he's organized, accessible outside of class, and you can tell he cares/puts a lot of effort into seeing his students succeed.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e0" + } + }, + { + "text": "Lectures were interesting and it was clear that he put a lot of effort into the class; everything was very organized which I loved, and he's very caring. He's a good professor: organized, responsive, patient and able to clearly explain topics.", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e3" + }, + "professor_name": "Bruce Habegger", + "rating": 4.9, + "department": "Art History department", + "comments": [ + { + "text": "Bruce was Photography embodied, back then was 35mm B+W 400TriX film, 50mm lenses and pinhole cameras-he was the pinhole master!, he was also teaching at the Educational Alliance-took a summer course there. He knew how to inspire and how to challenge us to produce better images, everything I know about Photography I owe it to him, Thank you Bruce!", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e4" + } + }, + { + "text": "One of my top inspirational art teachers ever, Bruce was \u00fcber cool and he made you look at things in a creative way, he insisted we all use the 50mm standard lens-made you really think. Even many years passed since but I still use the knowledge he passed to me, thank you Bruce!", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e5" + } + }, + { + "text": "Very inspiring teacher, will take the effort to help sincerely every student in the class. Great photographer himself, his class made me love photography. I liked very much all his classes.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e6" + } + }, + { + "text": "prof. Bruce Habegger was my photography teacher in the 80's.. learnt so many things from him. he's still one my top fav art teachers!!!!", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e7" + } + }, + { + "text": "I had him for several classes and graduated many years ago. Excellent teacher and photographer. A great person to boot, reminds me of Ansel Adams.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e8" + } + }, + { + "text": "Great professor! Helps out whenever he can. Must take his course if possible.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9e9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9ea" + } + }, + { + "text": "awesome prof and always around to help in and out of class", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9eb" + } + }, + { + "text": "He is the best in that departmetn. He is vey good at explaining things, and also cares if you understand and want you to do good. He is a great photographer himsel. If you get a chance to take him, don't miss it...", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9ec" + } + }, + { + "text": "He is the one....Great Photographer and professor!! that is enought to say about him!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9ed" + } + }, + { + "text": "Habegger rocks! He's a photographer and appears to love his job. Makes a great chili.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d3c8cd60fca157e5a9ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f0" + }, + "professor_name": "Cecilia Salvi", + "rating": 4.9, + "department": "Anthropology department", + "comments": [ + { + "text": "She's very passionate about her subject and really wants a class culture that's more like a conversation than a lecture, which I respect because the material in INTL is more fluid. By far the most flexible professor I've taken-- literally she decides with the class on a final project and even what material the class covers. Great, fun professor.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f1" + } + }, + { + "text": "Just take her.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f2" + } + }, + { + "text": "She is happy to get questions about lectures. She is one of the best professors in CCNY. Few times she gets late to class because of traffic, but after getting settled she wants to start right away. Do readings and videos before class starts. If you forget to or did not do any, she could tell, and she wouldn't judge you or pester you.", + "pos": 0.072, + "neu": 0.893, + "neg": 0.034, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f3" + } + }, + { + "text": "Amazing Professor! If you have the chance to take her international studies class take it! Her lectures are so insightful, light readings or podcasts to listen to for hw. It's important to have discussion to avoid akward boring classes. Emphasizes that participation looks very different ex. engagement/ eye contact is one.", + "pos": 0.188, + "neu": 0.738, + "neg": 0.074, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f4" + } + }, + { + "text": "Shes madly chill. She has a fun attitude and always engages with students. The best part was that if she was late or something like that, she brought snacks.", + "pos": 0.31, + "neu": 0.62, + "neg": 0.07, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f5" + } + }, + { + "text": "Wonderful professor, this was one of the few classes where I left knowing the professor loves doing what they do. She is very involved in her class and honestly one of the kindest professors I've had. Highly recommend taking her course as it isn't work-heavy but you learn a whole lot.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f6" + } + }, + { + "text": "Great professor, funny, and very understanding. In her class, things you learn apply to real life (which doesn't happen often). Participate, and you will pass! The final paper is to check for understanding. The final isn't hard as long as you pay attention. I recommend!", + "pos": 0.216, + "neu": 0.758, + "neg": 0.027, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f7" + } + }, + { + "text": "She is a one of a kind professor. Take any class that she teaches. She is so caring, understanding, and funny. Take her class you won't regret it!", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f8" + } + }, + { + "text": "Whatever course she teaches, taker her class!!! Trust me. You won't regret it! Prof. Salvi is very kind, understanding, easy to work with, amazing human being, passionate about what she teaches and the list can go on. I have taken her twice and I have gotten A+'s! Just take her class!!", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9f9" + } + }, + { + "text": "Professor Salvi is a extremely passionate professor and she cared deeply for her class and students. While there is a fair amount of out of class readers, they are often podcasts from other anthropologists on serious international issues. She took great interest into all of us and had a wonderful sense of humor. Well worth the semester", + "pos": 0.347, + "neu": 0.635, + "neg": 0.018, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9fa" + } + }, + { + "text": "She is the most caring and passionate professor I have ever met. She is so passionate about human rights and the people of Latin America. But be prepared because the readings are really heavy. The good thing is that she doesn't assign essays to make up for it. She was flexible and supportive when we converted to online because of the pandemic.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9fb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c9cd60fca157e5a9fd" + }, + "professor_name": "Ivan Retamoso", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "I was taking calculus 1 during the winter. His lectures were really clear and easy to understand. Even, he always gave us a second change to submit our assignments and homework. Focusing his lectures carefully was easy enough for me to achieved an A.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9fe" + } + }, + { + "text": "Amazing professor. So caring, always considers everything you tell him. He knows math so good, very professional. But what's most important, he is friendly, he is not cruel or bad in any way. He gave me the opportunity to submit maple assignments second time and gave me A. Deffinetly would take him again because I learned a lot from him.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5a9ff" + } + }, + { + "text": "Best math professor at BMCC.\nVery smart, yet able to express complex material in a very clear way.\nHas a personal website with extra resources, like lecture videos and notes.\nFree text book \nHe is always available and happy to help.\nTook him 2 semesters in a row\nCannot recommend enough.", + "pos": 0.331, + "neu": 0.638, + "neg": 0.031, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa00" + } + }, + { + "text": "Professor Retamoso makes math easy. If you are someone who doesn't have a \"math brain\", this is your teacher. Forget about complicated explanations, he makes math simple and easy to understand. I took PreCalc and I couldn't be any happier about having professor Retamoso. Highly recommended.", + "pos": 0.147, + "neu": 0.765, + "neg": 0.087, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa01" + } + }, + { + "text": "This guy walks in late almost everyday..He has a thick spanish accent.Doesnt teach very well.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa02" + } + }, + { + "text": "UNFAIR EXAMS contain random questions; He doesn't mind failing all students on each exam; Wrong answers across chalkboard are frequent with wrong explanations; Well prep'd students should take Math Dept exams instead 4 consistency adhering to textbook & HW; Weekly quizzes were done in jr high school, not normally in BA/BS program between midterms;", + "pos": 0.075, + "neu": 0.768, + "neg": 0.157, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa03" + } + }, + { + "text": "He's a cool and hot looking dude!!!!!Awesome professor and you can learn from his class. Every TUESDAY you have a quiz and have to hand in homework even if it is a Thursday schedule. We loved him. XoXo Bello, Corniel, and Hernandez.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa04" + } + }, + { + "text": "This professor besides from being hot is a great helper, do your homework and you will do good in class. Easy grader I got 70s and 90 in final and still got an A in class.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa05" + } + }, + { + "text": "MAHT, IS NO THAT EASY, BUT HE TRIES TO EXPLAIN IT VERY WELL, IN FACT HE EXPLAINS IN DIFFERENT WAYS, BY DOING THIS STUDENTS CAN PICK WHICH ONE THEY UNDERSTAND BETTER.", + "pos": 0.186, + "neu": 0.725, + "neg": 0.089, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa06" + } + }, + { + "text": "He is a very good professor, he explains a lot, and help the students.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa07" + } + }, + { + "text": "A really good teacher - clear, interested in the subject, wants the students to learn", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa08" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3c9cd60fca157e5aa0a" + }, + "professor_name": "Michael Raphael", + "rating": 2.7, + "department": "Sociology department", + "comments": [ + { + "text": "I was wondering myself why I chose this class because the amount of homework & readings was exhausting. But he is actually an understanding professor who is very flexible with the homework & grading. I liked the challenge this class gave me. You just have to give him a proper chance and give it a try. Time management is also important", + "pos": 0.182, + "neu": 0.793, + "neg": 0.025, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa0b" + } + }, + { + "text": "I hated class at first and asked why I went. But after just listening to him, you can tell he knows what he's talking about. Much of the lecture may leave you perplexed, and it may appear that he is veering off topic, yet he somehow connects everything.The class was rigorous, yet I emerged a stronger student capable of analyzing difficult material.", + "pos": 0.091, + "neu": 0.738, + "neg": 0.171, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa0c" + } + }, + { + "text": "This class was very difficult with lots of work. You can try your hardest yet would still get a low grade on the assignment. There are moments when you couldn't understand him but he tries his best to give us a lesson with his own style of teaching. If you want a class with no lectures, lots of work, and random jokes this is the class for you.", + "pos": 0.125, + "neu": 0.795, + "neg": 0.08, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa0d" + } + }, + { + "text": "super knowledgeable and leinent with the deadlines. Readings are constant and intense. Class is focused on abstraction- super important. ABSTRACTION, ABSTRACTION, ABSTRACTION. He loves it, you will learn to love it. His grading is intense but he gives opportunities for a re-do on almost everything. \nGo for the class if you wanna push yourself.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa0e" + } + }, + { + "text": "I disagree with a post that says he is socially awkward. This in introduction to sociology, and he is an expert in sociology. I think it is easy to come off as awkward when he is trying to interact with the class as a whole, but half of us stay silent when he asks a question. I think he is rather brave! Try it yourself then judge.", + "pos": 0.093, + "neu": 0.847, + "neg": 0.06, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa0f" + } + }, + { + "text": "As an IEP student, this instructor is a complete nightmare. He refuses to clarify on certain topics and when I'm having trouble and asking him to repeat a sentence he either ignores it or go off on a completely unrelated rant for much of class time. \nI've been in this class for about 3 weeks and i feel like i'm yet to learn anything in this class.", + "pos": 0.079, + "neu": 0.82, + "neg": 0.101, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa10" + } + }, + { + "text": "I really wanted to give him a chance but he is horrible. His instructions and directions are weird in both lectures and homework. In lectures, he jumps to topics unrelated to each other and expects you to know what is material and what is unrelated. For the homework, he expects so much with so few directions and gives random grades too. AVOID HIM!", + "pos": 0.021, + "neu": 0.825, + "neg": 0.154, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa11" + } + }, + { + "text": "Thank you for punishing us beyond our limits to become better students and soon to be better professionals!", + "pos": 0.328, + "neu": 0.535, + "neg": 0.137, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa12" + } + }, + { + "text": "You can do your best in class, however, he will give you a low grade. A lot of homework which take all your time. This class is like taking 4 or 5 classes. I recommend that if you don't need to take this class don't take it, or take it with another professor.", + "pos": 0.153, + "neu": 0.813, + "neg": 0.035, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa13" + } + }, + { + "text": "He's terrible. This is an intro class however, the amount of work he asks for is insane. He gives low grades which is not a reflection of the amount of work that you put into the assignment. AVOID HIM AT ALL COSTS. Currently still taking this class.", + "pos": 0.0, + "neu": 0.799, + "neg": 0.201, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa14" + } + }, + { + "text": "Read your textbook. You could write everything he asks for and more and he would still give you a low grade. The lectures are a lot to deal with. Avoid this class.", + "pos": 0.0, + "neu": 0.875, + "neg": 0.125, + "_id": { + "$oid": "6711d3c9cd60fca157e5aa15" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cacd60fca157e5aa17" + }, + "professor_name": "David Luciano", + "rating": 3.8, + "department": "Sociology department", + "comments": [ + { + "text": "Dr. Luciano is a brilliant professor and loves to work with his students. If you follow APA style you will do well in his class. He is very motivational and enjoys meeting with his students online to make sure that they understand the material. I would take him again and I enjoy his grading style. Thanks Dr. Luciano for your passion for teaching!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa18" + } + }, + { + "text": "This guy is a brilliant teacher in Research Methods, Immigration studies, Human Behavior and any course he teaches. I have had Dr. Luciano now for two courses and have learned a lot from him. He provides good feedback, is very knowledgeable, and is a passionate professor.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa19" + } + }, + { + "text": "Exceptional inspirational speaker and lecturer. Gives wonderful lectures, not dull, exceptional feedback to help students with personal professional development", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa1a" + } + }, + { + "text": "Very knowledgeable and approachable. Gives ample opportunity for questions and discussion outside of class. I learned a lot. It is a Summer course, so limited amount of time for writing paper. I will definitely take him again in the future. Great professor and tells funny anecdotes. Open discussions in class, everyone has a chance to get an A.", + "pos": 0.21, + "neu": 0.754, + "neg": 0.036, + "_id": { + "$oid": "6711d3cacd60fca157e5aa1b" + } + }, + { + "text": "Loves to talk about himself. He believes he is the best at everything. He will talk the entire class about his accomplishments... But he is knowledgeable, but too self observed for me.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa1c" + } + }, + { + "text": "be on his good side, this is 70 percent of the battle, praise him, then make sure you are ok with apa style although this is minimal if he is cool with you, I did everything perfect but was on his bad side, when grading me he found any and every excuse to not give me an A, this man is unethical, wolf in sheep clothes, disgusting.", + "pos": 0.153, + "neu": 0.662, + "neg": 0.185, + "_id": { + "$oid": "6711d3cacd60fca157e5aa1d" + } + }, + { + "text": "If you just pay attention and google what APA really is you'll do amazing in his class! and a very nice person so easy to get through class =), have fun!", + "pos": 0.338, + "neu": 0.628, + "neg": 0.034, + "_id": { + "$oid": "6711d3cacd60fca157e5aa1e" + } + }, + { + "text": "Took 24500 for Winter 2012 session. Prof. Luciano expects you to participate and definitely know APA style!!!!!!!! Be ready for the stories and the lecture if you disagree with him. Do a good presentation and final paper. I got an A with a little hard work.", + "pos": 0.172, + "neu": 0.76, + "neg": 0.069, + "_id": { + "$oid": "6711d3cacd60fca157e5aa1f" + } + }, + { + "text": "He is very anal maybe because he's been teaching for a while. I went to him for help with my paper each time and he seemed to be in a rush and he ok'd ideas I presented but then critiqued and edited them out of the drafts. He is not as helpful as he makes himself out to be. Try to take this course at another CUNY if he's teaching it.", + "pos": 0.025, + "neu": 0.934, + "neg": 0.041, + "_id": { + "$oid": "6711d3cacd60fca157e5aa20" + } + }, + { + "text": "I've taken Professor Luciano twice. I took him for Soc 244-Principles of Social Work and Soc 245 - Social Welfare. He is definitely not a tough cookie! He's super cool. A bit cocky though because he's always talking about himself, but cool. Just be sure to do a great research paper and presentation... and please please KNOW APA STYLE! That's all =)", + "pos": 0.361, + "neu": 0.624, + "neg": 0.015, + "_id": { + "$oid": "6711d3cacd60fca157e5aa21" + } + }, + { + "text": "Prof.Luciano is one tough cookie (probs b/c he was working on his dissertation). Go to class & if you HAVE to miss one text him/email him. Also, put work into your research papers, and make the topics interesting. Above all, FOLLOW APA STYLE! If you're unclear, GO TALK TO HIM. He doesn't hand out A's but doesn't set up students for failure either.", + "pos": 0.027, + "neu": 0.821, + "neg": 0.153, + "_id": { + "$oid": "6711d3cacd60fca157e5aa22" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cacd60fca157e5aa24" + }, + "professor_name": "Mary Robb", + "rating": 4.4, + "department": "Music department", + "comments": [ + { + "text": "I had her asynchronously so all I had to do was watch her videos, which I didn't complete, but overall it was easy enough and the videos were super helpful for writing the essays.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa25" + } + }, + { + "text": "The most caring, helpful, and understanding professor at ccny. I took her in fall 2021. Her and professor Kristine Slentz will always help you if you need it. Papers are very doable.Participate in the class so that it doesn't get boring lol. At the end of the semester we presented what we learned and did in the class and was graded as extra credit.", + "pos": 0.187, + "neu": 0.782, + "neg": 0.031, + "_id": { + "$oid": "6711d3cacd60fca157e5aa26" + } + }, + { + "text": "I took her along with Professor Slentz. It's like a combined class and I got an A on my own effort. Don't let others to convince you they'll explain and help you with everything you need! I needed help with my assignments and when I wanted to go their office hours, they just denied. She also took off points because I didn't put periods on the U.S.", + "pos": 0.136, + "neu": 0.826, + "neg": 0.039, + "_id": { + "$oid": "6711d3cacd60fca157e5aa27" + } + }, + { + "text": "She is so sweet and patient, such good vibes. She also very helpful and organized with how and when to get the assignment done.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa28" + } + }, + { + "text": "Dr. Robb is an amazing professor. I had her for Creative Expressions along with Professor Kristine Slentz but on different days. They both give great feedback and are very respectful. The papers arent hard. Participation is good in this class so that you can engage in conversations. I would take this class again!!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa29" + } + }, + { + "text": "Dr. Robb is truly passionate about teaching, although the format was online, she would always start and end the class off with a smile. She gives great feedback on your work and can assist with whatever troubles you have regarding the coursework. It is important to balance the work out as to not feel overwhelmed, but it's a great class.", + "pos": 0.22, + "neu": 0.737, + "neg": 0.044, + "_id": { + "$oid": "6711d3cacd60fca157e5aa2a" + } + }, + { + "text": "Very sweet professor. I always wanted to play piano and I thought she did a great job explaining how to do certain things. It is a shame we couldn't fully learn what we were supposed to due to the pandemic, but nonetheless I still learned a lot from her.", + "pos": 0.147, + "neu": 0.815, + "neg": 0.038, + "_id": { + "$oid": "6711d3cacd60fca157e5aa2b" + } + }, + { + "text": "Dr. Robb emanates such a smiley, positive and energetic vibe. She's very kind so don't be afraid to ask her for advice or questions! Be warned, her topic class is almost 3 hours and can make you fall asleep. She and Meg-Wise are very lenient with the assignment due dates, so just ask beforehand. Also, don't forget to participate in class!", + "pos": 0.238, + "neu": 0.733, + "neg": 0.029, + "_id": { + "$oid": "6711d3cacd60fca157e5aa2c" + } + }, + { + "text": "I took this course with her my freshman year and it was a real taste of college writing. There was plenty of work and research to be done. She was always available if we had questions or concerns. She made writing fun as she encouraged the class to unravel their creativity. Overall, great professor.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d3cacd60fca157e5aa2d" + } + }, + { + "text": "She's Scottish so she has a nice accent. She makes you step out of your comfort zone but it was the most interactive class I have taken (American Musical Theatre) and I had her once a week. We watched films and she gives us lots of insight that can be used in the essay. She could've failed me but didn't. Truly the nicest but don't take advantage!", + "pos": 0.047, + "neu": 0.782, + "neg": 0.172, + "_id": { + "$oid": "6711d3cacd60fca157e5aa2e" + } + }, + { + "text": "It is possible to get a good grade but you will have to work for it. All material on tests and quizzes are from lectures so missing class isn't an option. Midterm, final, 7 quizzes, 3 papers and concerts to attend outside of class hours take up a lot of time. This is not an easy A elective class, take a different one or another professor.", + "pos": 0.027, + "neu": 0.877, + "neg": 0.096, + "_id": { + "$oid": "6711d3cacd60fca157e5aa2f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cbcd60fca157e5aa31" + }, + "professor_name": "Alfredo Martinez", + "rating": 2.9, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "The basic lab class that can probably be done very quickly if you come early on time. Not too hard material but the labs get progressively harder in the middle of the semester but get easier again for the digital labs. No knowledge of 371 needed but the lab manual gives you all the information needed. Very fair grader and curves the final.", + "pos": 0.118, + "neu": 0.842, + "neg": 0.04, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa32" + } + }, + { + "text": "very scary", + "pos": 0.0, + "neu": 0.223, + "neg": 0.777, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa33" + } + }, + { + "text": "Not a bad choice for 425 but he will make u work for it adding extra sides for flow charts and wants to see u truly understand the code u wrote. Felt bad after the final but i think he curved nicely. Only 5 lab reports and a final, no pop quizzes were ever given.", + "pos": 0.143, + "neu": 0.744, + "neg": 0.112, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa34" + } + }, + { + "text": "I had to drop this class, because of the daily quizzes. It gets to the point when a one-credit class becomes pointless and a priority than any of your classes. I wish I have taken other professors besides him. In-person he is tougher, and when he transitioned online it was a nightmare. Try to take anyone, besides this TA.", + "pos": 0.07, + "neu": 0.896, + "neg": 0.034, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa35" + } + }, + { + "text": "Professor Martinez means well but by no means can teach the class properly. I had to consult professor Hoxha for everything and professor Martinez got mad at me for going to him even though he cant explain properly.", + "pos": 0.036, + "neu": 0.802, + "neg": 0.163, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa36" + } + }, + { + "text": "Good class to learn about Microcontrollers. I was one of the few CpE majors in the class so things were much easier for me to grasp then the EE majors. The labs take some thinking, make sure to read the textbook and materials he gives. The quizzes aren't that bad, just understand the code for your lab and you should pass the quizzes just fine!", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa37" + } + }, + { + "text": "The course itself is not that easy and he does give quizzes strictly based on the code for each assignment. Overall, he is a great professor. He is willing to help you when you need it and he is very lenient with grading lab reports. Just know your codes from top to bottom and you will do well on the quizzes. If you want to learn, take him!", + "pos": 0.188, + "neu": 0.781, + "neg": 0.031, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa38" + } + }, + { + "text": "There are reports from previous semesters and he knows this. He makes sure you know the material through quizzes. He actually helps students complete the experiments without providing full code.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa39" + } + }, + { + "text": "this guy needs to see a doctor because he lacks in helping out other student and ask him he will get agitated out of nowhere", + "pos": 0.078, + "neu": 0.816, + "neg": 0.106, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa3a" + } + }, + { + "text": "Final is easy. Be careful what questions you ask him. Lab reports should be detailed and do not exclude any data you found in your experiments and make sure you know what you are doing.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa3b" + } + }, + { + "text": "He is Sobel's TA, so that should tell you alot. Has ZERO communication skills and does not know how to deal with or treat other human beings. Often times was angry at students for asking questions and refused to answer them. The lab manual is poorly written and confusing. Take the other professor.", + "pos": 0.046, + "neu": 0.829, + "neg": 0.125, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa3c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cbcd60fca157e5aa3e" + }, + "professor_name": "Denise McLurkin", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "She's very cheerful and jolly but also one heck of a tough grader. You will definitely leave the class with tons of improvement and having learned a lot though. If you're organized, detail-oriented, and on top of things, you should be okay.", + "pos": 0.312, + "neu": 0.632, + "neg": 0.057, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa3f" + } + }, + { + "text": "SHE IS BY FAR ONE OF THE GREATEST EDUCATORS I HAVE MET! HER VOICE IS APPEALING, YOU WILL DEF. NOT FALL ASLEEP IN HER CLASS. SHE IS ALSO VERY FUN AS A PROFESSOR. HER ASSIGNMENTS ARE NOT EASY AT ALL AND SHE'S A STRICT GRADER. NONETHELESS SHE'S TOUGH TO MAKE US BETTER STUDENTS. SHE GIVES LOTS OF CHANCES TO REDO ASSIGNMENTS AND IS CLEAR ON EXPECTATIONS", + "pos": 0.197, + "neu": 0.754, + "neg": 0.05, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa40" + } + }, + { + "text": "She has this cheerful and upbeat personality, and a compassionate heart. Although, she set her strict standards on her assignments, yet, she still gives students another chance to better the student?s grades.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa41" + } + }, + { + "text": "LOVE HER! SHES THE BEST AND MAKES LEARNING ENGAGING... BEST EDUCATION TEACHER I HAVE HAD IN CITY COLLEGE. SHE IS AWESOME.", + "pos": 0.548, + "neu": 0.452, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa42" + } + }, + { + "text": "She's just the best.. she makes you want to go to class.Her assignments are not hard but quite time consuming. She gives you and opportunity to redo your work if its satisfactory. Take her you would not regret it", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa43" + } + }, + { + "text": "She is fantastic!! Very intelligent, funny, sweet, and caring. She doesn't give you to much work but the assignments that she does give, are very helpful and important. I wish all professors were like her!", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa44" + } + }, + { + "text": "Greatest Prof in the Literacy Program! So sad she is going :(", + "pos": 0.206, + "neu": 0.442, + "neg": 0.352, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa45" + } + }, + { + "text": "Prof. McLurkin is a wonderful human being. She cares about her students and about the progress they make. I learn alot in her class and feel very prepared to teach literacy thanks to her! I really wish we would have more professors like her in The School of Education.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa46" + } + }, + { + "text": "best professor I've had in my four years in city college. She knows what she's teaching, has a phd and yet treats her students with great respect. She teaches the real thing. you'll be well prepared when you leave her class.", + "pos": 0.298, + "neu": 0.678, + "neg": 0.023, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa47" + } + }, + { + "text": "this professor is the sweetest person i have ever met in my life. she is always upbeat, nice, understanding, all the compliments in the world couldnt descrive how great she is! i absolutely love her attitude. her class is not difficult. she is dedicated to what she does and teaches u the real importance of literacy. she truely cares about each stud", + "pos": 0.267, + "neu": 0.691, + "neg": 0.042, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa48" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cbcd60fca157e5aa4a" + }, + "professor_name": "Edgardo Molina", + "rating": 4.3, + "department": "Computer Science department", + "comments": [ + { + "text": "Professor Molina's lectures are very clear. However the projects were really hard and were not related much with class materials. The To-Dos are helpful to prepare for exams. Syntax are not very important to worry about as long as the code makes sense. Professor Molina curves his exam. He is available to help during office hours and through email.", + "pos": 0.123, + "neu": 0.779, + "neg": 0.098, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa4b" + } + }, + { + "text": "if you never coded before, you need to be self-motivated. To-do assignments are very helpful, a lot of exam questions will be based off of it, you need to work through them to learn how to think when coding. He isn't picky about syntax on exams. very good professor, knowledgable. He uses skeiths materials,but he paces the class better. Take Him!!!", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa4c" + } + }, + { + "text": "The class is hard by itself, but Molina presents material in a clear manner. Be prepared to spend a lot of time working on code. This is not a class in which you're given a 'recipe' to apply. Grading is fare, and he curves.", + "pos": 0.12, + "neu": 0.855, + "neg": 0.025, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa4d" + } + }, + { + "text": "Overall not bad. I could tell he had trouble getting some concepts across, and that he had some trouble teaching the material. Using cpp reference and textbook was helpful in those cases. Although it may not appear so, he does care about his students, and is willing to help, even outside office hours. I think he will improve as a prof. with time.", + "pos": 0.191, + "neu": 0.738, + "neg": 0.071, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa4e" + } + }, + { + "text": "By no means an easy A. If you take time to do the hw & understand it, you will set yourself up to do well. Professor Molina answers all of your questions & is available during office hours. Very reasonable with deadlines/quizzes, posts lecture notes/ lab activities online for review. He tells you what to do to succeed in his class. ~Down to earth~", + "pos": 0.116, + "neu": 0.852, + "neg": 0.031, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa4f" + } + }, + { + "text": "one of the best professors for computer science. he is very help full. Just do his hw. you might have read a little toward the end of semester. i will highly recommenced this professor.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa50" + } + }, + { + "text": "This guy is really hard, but helps a lot to do the home works. If u can just do the home works that means u can get an A. If u wanna learn python must take him....", + "pos": 0.095, + "neu": 0.872, + "neg": 0.034, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa51" + } + }, + { + "text": "Always available for help through email or office hours. He's not an easy professor but he MAKES you learn your stuff and if you try hard enough, you will get a good grade.", + "pos": 0.15, + "neu": 0.763, + "neg": 0.087, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa52" + } + }, + { + "text": "dam this is mad workkkkkkkkkk but yo its aint easy for nothing but i earned my A", + "pos": 0.0, + "neu": 0.742, + "neg": 0.258, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa53" + } + }, + { + "text": "\"Hard\" refers to the COURSE itself, not Molina. CSC, even introductory, is extremely difficult. I woulds suggest coming into the class knowing how to program already (PYTHON). His teaching skills need sharpening, but I think this guy is really trying to make it as a professor. He deserves his spot as a teacher and I think he genuinely cares.", + "pos": 0.063, + "neu": 0.888, + "neg": 0.049, + "_id": { + "$oid": "6711d3cbcd60fca157e5aa54" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cccd60fca157e5aa56" + }, + "professor_name": "Susan Semel", + "rating": 1.8, + "department": "History department", + "comments": [ + { + "text": "Professor Semel is outstanding professional. She knows her stuff, and she is practically a walking encyclopedia in the field of education. She is a fair grader and expects you to be prepared. Do not listen to the dummies here. She is excellent.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d3cccd60fca157e5aa57" + } + }, + { + "text": "Professor Semel encourages you to be active in your understanding of this class material. She teaches with relevant examples and interesting discussions. Although a tough grader, she's there to help and motivate you to think critically towards topics. Be prepared to work for your grade. READ, PARTICIPATE, and take advantage of her office hours.", + "pos": 0.269, + "neu": 0.708, + "neg": 0.023, + "_id": { + "$oid": "6711d3cccd60fca157e5aa58" + } + }, + { + "text": "Condescending and full of herself. I agree with everyone else's comment in that she loves to name drop and thinks she's too good for CCNY. I think she just has a complex about not working at an Ivy League and puts her students down to make herself feel better.", + "pos": 0.207, + "neu": 0.757, + "neg": 0.036, + "_id": { + "$oid": "6711d3cccd60fca157e5aa59" + } + }, + { + "text": "Never have I encountered such rudeness in one person. In order for her to help you, she first has to scream at you for about an hour. After she feels she has power over you, then she unwillingly complies. My only regret at City was meeting her. However, to get that degree you had to encounter the Witch, which I call Semel.", + "pos": 0.038, + "neu": 0.812, + "neg": 0.15, + "_id": { + "$oid": "6711d3cccd60fca157e5aa5a" + } + }, + { + "text": "She knows her stuff and is respected in the field but Semel has a hard time dealing with people and can be very cranky.", + "pos": 0.08, + "neu": 0.858, + "neg": 0.062, + "_id": { + "$oid": "6711d3cccd60fca157e5aa5b" + } + }, + { + "text": "When dealing with her, you have to ask,\"What's her problem?\" As head of social studies education, she doesn't know very much about how and what teachers actually teach. As an academic advisor, she's snappish and impatient. And as a minor functionary of CCNY, she's not helpful, and seems to regard students as a burden on her precious time.", + "pos": 0.055, + "neu": 0.793, + "neg": 0.152, + "_id": { + "$oid": "6711d3cccd60fca157e5aa5c" + } + }, + { + "text": "Considering her position she is not very helpful. I wonder if she ever read the job description", + "pos": 0.0, + "neu": 0.863, + "neg": 0.137, + "_id": { + "$oid": "6711d3cccd60fca157e5aa5d" + } + }, + { + "text": "She is intellectually arrogant about what who knows. I left a long message on her voice mail and she acted like Hulk Hogan. She got her personality in a car crash.", + "pos": 0.13, + "neu": 0.714, + "neg": 0.156, + "_id": { + "$oid": "6711d3cccd60fca157e5aa5e" + } + }, + { + "text": "Pedantic...thinks she should be teaching at Columbia or Harvard. Shameless name dropper. Not very useful.", + "pos": 0.0, + "neu": 0.721, + "neg": 0.279, + "_id": { + "$oid": "6711d3cccd60fca157e5aa5f" + } + }, + { + "text": "crazy", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d3cccd60fca157e5aa60" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cccd60fca157e5aa62" + }, + "professor_name": "Elizabeth Weybright", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "Nice professor. Clearly explains what is expected of the student. Class discussions are a free-fall (which I kinda like) and her excitement for the books is contagious. Class is easy, as long as you keep up with the readings. You'll need them for those pop quizzes :)", + "pos": 0.284, + "neu": 0.676, + "neg": 0.041, + "_id": { + "$oid": "6711d3cccd60fca157e5aa63" + } + }, + { + "text": "She is amazing!!! She helps everyone out and looks at her students as normal humans who can have some trouble in life. She always gives specific feedback. Her class is generally easy as long as you do the readings she gives. The class is all about Jane Austen and this young professor is so passionate that it will make you love her. Take her 100%", + "pos": 0.233, + "neu": 0.733, + "neg": 0.034, + "_id": { + "$oid": "6711d3cccd60fca157e5aa64" + } + }, + { + "text": "She is an amazing woman who's passion for Jane Austen is contagious and inspiring. There is a lot of reading involved, be ready to answer her questions. She sometimes has quizzes, and every other week we have to post reading journal blogs. I f you can write as you read then you'll be perfectly fine if you don't good luck!", + "pos": 0.24, + "neu": 0.665, + "neg": 0.095, + "_id": { + "$oid": "6711d3cccd60fca157e5aa65" + } + }, + { + "text": "She is genuinely a nice person and her enthusiasm for Austen's novels is contagious. If you like to read and think critically, take her!", + "pos": 0.275, + "neu": 0.647, + "neg": 0.078, + "_id": { + "$oid": "6711d3cccd60fca157e5aa66" + } + }, + { + "text": "I am a stronger reader and writer because of Professor Weybright. I loved her Jane Austen class, and her feedback on my written work was so valuable. She clearly puts a lot of thought into class assignments and discussion. Her expectations are high, but if you work hard, you will become a stronger reader/writer! TAKE HER!", + "pos": 0.198, + "neu": 0.777, + "neg": 0.025, + "_id": { + "$oid": "6711d3cccd60fca157e5aa67" + } + }, + { + "text": "Professor Weybright is both challenging and inspiring. I loved her Jane Austen course! Austen's work is so much more complex than I had ever imagined. Professor Weybright gives thought-provoking blog prompts and offers really helpful feedback. I feel like I have become a better reader and writer. Highly recommend.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d3cccd60fca157e5aa68" + } + }, + { + "text": "As a freshman, this course was tough. She expects you to read a lot, does not explain instructions clearly and she is harsh with grades. Lots of quizzes. She will penalize you for little things. To be honest, I found her class very boring. She loved to talk about Jane Austen and expects participation, but the same people participate. Don't take her", + "pos": 0.07, + "neu": 0.831, + "neg": 0.098, + "_id": { + "$oid": "6711d3cccd60fca157e5aa69" + } + }, + { + "text": "She's a very nice person and always there to help but only if you ask her. She's very descriptive and passionate about the type of information she talks about in class, which isn't a bad thing. Expect pop quizzes, which are fairly easy and expect to be graded harshly. She does allow rewrites. Only take the class if you enjoy Jane Austen Works.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d3cccd60fca157e5aa6a" + } + }, + { + "text": "Most kids slept in class, I dont recommend other people take this class unless you like Pride and Prejudice, Emma, and Longbourn or its the only class that fits into your schedule. Its not fun. Shes a harsh grader, but she she is willing to help if you ask or read the novels.", + "pos": 0.116, + "neu": 0.76, + "neg": 0.124, + "_id": { + "$oid": "6711d3cccd60fca157e5aa6b" + } + }, + { + "text": "She is a great professor. She is very passionate about literature and is more than willing to help a student out or discuss literature outside of class. She is a bit of a harsh grader so watch out, but she does offer rewrites.", + "pos": 0.141, + "neu": 0.818, + "neg": 0.041, + "_id": { + "$oid": "6711d3cccd60fca157e5aa6c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cdcd60fca157e5aa6e" + }, + "professor_name": "Sadiqa Quadri", + "rating": 2.6, + "department": "Biomedical Engineering department", + "comments": [ + { + "text": "by far one of the worst professor i have studied with in my life. the class is hard and she makes it 10* harder . she is the only one teaching the class, so there is no chance of choosing another. all i can say is good like to bmes, you are about to witness one of the nightmares in you ccny career", + "pos": 0.094, + "neu": 0.804, + "neg": 0.102, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa6f" + } + }, + { + "text": "I would give this professor a 0 if possible, one of the worst in CCNY. All her lectures were a mess, there were no clear grading criteria. Don't expect to learn.", + "pos": 0.0, + "neu": 0.761, + "neg": 0.239, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa70" + } + }, + { + "text": "This professor is lazy and is one of the worst professors at CCNY. Do not expect to learn anything from this professor. This class was a waste of time because of the professor. The comments from December 12, 2019 are written the same and are similar to how the professor writes. Pretty sure she wrote those comments to make herself look better.", + "pos": 0.114, + "neu": 0.759, + "neg": 0.127, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa71" + } + }, + { + "text": "This professor reads from lecture slides and goes over few materials given that it is once a week and expects student to learn on their own. Doing quizzes are essential to the grade and for being able to do well in exams.", + "pos": 0.049, + "neu": 0.951, + "neg": 0.0, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa72" + } + }, + { + "text": "Dr. Quadra is very knowledgable in all biology levels. She leads her research at Columbia and teaches at CCNY . She is very organized and enthusiastic about teaching. She is funny and is down to the earth. She also cares about her students and is available outside of class to help. Take her without any regret and you will enjoy leaning bio.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa73" + } + }, + { + "text": "Prof. Quadri is a decent professor. Alot of the material is provided to you through blackboard, including some lecture video, making material accessible. Her grading criteria is clear. If you really care about learning the material, its all there for you.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa74" + } + }, + { + "text": "This Professor is very knowledgable in biology. She teaches at Colombia and City College, but she still manages to be very organized and enthusiastic while teaching. She is super funny and is down to earth. She also cares for the students and is available outside of class too. GIVE HER RESPECT AND SHE WILL RESPECT YOU TOO!", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa75" + } + }, + { + "text": "This professor says incoherent sentences during class and expects the students to understand. The tests are very specific so you cant learn general topics. She comes late to class and then keeps the entire class late. She does not actually grade anything you do and all of the work is basically a waste of time. Avoid -one of the worst at CCNY", + "pos": 0.018, + "neu": 0.849, + "neg": 0.133, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa76" + } + }, + { + "text": "Yo my people whats with the hate, if you just need to pass this is ezpz. If you want that A though you gotta put some extra time and \"ingenuity\". Also, read the book before class, her slides are designed to refresh the information in there. Don't hate the player hate the game. Git gud PD: If you rely on her slides alone be ready to take the L tho", + "pos": 0.127, + "neu": 0.76, + "neg": 0.113, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa77" + } + }, + { + "text": "She doesn't speak clearly, speeds through her slides, you literally have to teach yourself the entire curriculum. She gives pop quizzes using a clicker and give you less than a minute per question usually. Avoid if you can, if you have to take her get ready to work hard outside of class.", + "pos": 0.044, + "neu": 0.852, + "neg": 0.104, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa78" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cdcd60fca157e5aa7a" + }, + "professor_name": "Ajaz Sana", + "rating": 1.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Please don't take him as he will most likely give you something quite bad. I don't respect him as a lecturer nor as a person. For a professor like this, lets just say don't judge a book by its good cover.", + "pos": 0.154, + "neu": 0.719, + "neg": 0.127, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa7b" + } + }, + { + "text": "How confusing can a simple conceptual questions get... This professor is explaining in circles and its hard to understand him when you ask him to clarify... Heavy accent and avoid if possible... I escaped with a B-........", + "pos": 0.0, + "neu": 0.861, + "neg": 0.139, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa7c" + } + }, + { + "text": "He's a professor that can put you to sleep really fast. Bring a pillow and maybe load your phone with games because his class is pretty low quality in content. Close your eyes or he will do that favor for you. I recommend you take 104 than this class. Worst D I ever gotten", + "pos": 0.132, + "neu": 0.77, + "neg": 0.097, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa7d" + } + }, + { + "text": "This professor is hard to catch outside of class and he is very hard to understand nor is he a great person to talk to. I received a B luckily from his class but I worked all day and night for it but I really felt like the exam was unfair and he wasn't so understanding. Luckily I won't have to take him again", + "pos": 0.11, + "neu": 0.751, + "neg": 0.139, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa7e" + } + }, + { + "text": "This Professor isn't very helpful as he just tries to glide through without guidance. I attended nearly every lecture and went through the review but what he expects is just quite unreasonable.", + "pos": 0.0, + "neu": 0.946, + "neg": 0.054, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa7f" + } + }, + { + "text": "He is very picky, I am sure he could've given some students As as I have been calculating my grade but he doesn't grade quite fairly as I had hoped. First exam is okay.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa80" + } + }, + { + "text": "Great attitude and great man but lecture is very heavy and grading policy not easy. I do not recommend this class if you don't enjoy mathematics to some degree.", + "pos": 0.133, + "neu": 0.626, + "neg": 0.241, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa81" + } + }, + { + "text": "I dislike his lecture but can be nice person", + "pos": 0.296, + "neu": 0.56, + "neg": 0.144, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa82" + } + }, + { + "text": "probably the best teacher in the world. remember guys tho he doesn't like taking RISKS :).", + "pos": 0.303, + "neu": 0.6, + "neg": 0.097, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa83" + } + }, + { + "text": "He is very good teacher.Know his material and explain very good.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa84" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cdcd60fca157e5aa86" + }, + "professor_name": "Iris Perach", + "rating": 2.5, + "department": "Psychology department", + "comments": [ + { + "text": "Would not recommend her, shes so disorgazined because shes still in Graduate school. It seems like shes confuses herself when she lectures. Does not explain well at all!! I dont know how she is will there.", + "pos": 0.061, + "neu": 0.775, + "neg": 0.165, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa87" + } + }, + { + "text": "I would not recommend this professor. She picks favorites, shes lazy and does not know how to explain the material even though i learned alot but that was my own studying and effort put into the class. Even though i did well in the class, i consider her one of the worst professors, perhaps she needs to finish grad school before she teaches again!", + "pos": 0.063, + "neu": 0.81, + "neg": 0.127, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa88" + } + }, + { + "text": "This professor is the worst!!. Do not take it, she will make you hate psychology for life. We started with 35 students and at the end it was 9 students left. There is an 8 page midterm, its hard. She is not helpful She has an attitude problem. She will say your doing good half the semester and then at the very end she will say your failing.", + "pos": 0.035, + "neu": 0.744, + "neg": 0.221, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa89" + } + }, + { + "text": "Though I did well in this class I would not recommend this professor. She is obviously more interested in getting through Grad School than teaching Undergrads. Unresponsive to e-mails, leaves right after class and explains things in a very vague, distant way, only to become upset when most of the class doesn't perform. Avoid, even you A-students!", + "pos": 0.112, + "neu": 0.789, + "neg": 0.099, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa8a" + } + }, + { + "text": "This professor is very good. Those who do not want to work hard find the class difficult, but I learned a lot, and I would reccomend the class.", + "pos": 0.07, + "neu": 0.796, + "neg": 0.135, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa8b" + } + }, + { + "text": "She cares about her students? Who wrote that? She should not teach. She is the worst professor I ever had. Disorganized, lazy, mean and everything the worst.", + "pos": 0.078, + "neu": 0.575, + "neg": 0.347, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa8c" + } + }, + { + "text": "WARNING: KEEP AWAY!! where to start. She is very disorganized. I agre with the other comments here she definetly has mod swings. One day she does not take attendance the other if you are late 5 minutes you are absent!She cancelled 5 classes one of them because it was her birthday!She is just a nigtmare!!!", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa8d" + } + }, + { + "text": "She is tough, but you learn a lot. She cares a lot about her students and will go the extra mile to help them do well. She knows the material very well. I recommend her warmly.", + "pos": 0.404, + "neu": 0.572, + "neg": 0.025, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa8e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa8f" + } + }, + { + "text": "This grad student teacher is a nightmare. Stay out! Completely unreliable with moodswings you can't keep up with. One time you're doing great and the next you suck. Started out the semester with full class and in the end only 10 students left. Says a lot about her.", + "pos": 0.082, + "neu": 0.863, + "neg": 0.054, + "_id": { + "$oid": "6711d3cdcd60fca157e5aa90" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cecd60fca157e5aa92" + }, + "professor_name": "Mohamad Ali-Ahmad", + "rating": 3.9, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Taught my summer class. Went very fast, and covered everything. He is an awesome professor, but is strict when it comes to grading. His tests are doable, but tricky. KNOW YOUR GEOMETRY. You either get a problem right, or wrong. No partial credit. No curves. Beware!", + "pos": 0.043, + "neu": 0.652, + "neg": 0.305, + "_id": { + "$oid": "6711d3cecd60fca157e5aa93" + } + }, + { + "text": "He goes very fast, and you have to learn every single thing he teaches to pass with a good grade. Do and understand all the examples and hw, and you'll do well, although its not as easy as it sounds. He is a genius, will answer any problem on the spot. Hes actually a good guy who wants you to pass, if you understand the work. Tricky tests", + "pos": 0.103, + "neu": 0.809, + "neg": 0.088, + "_id": { + "$oid": "6711d3cecd60fca157e5aa94" + } + }, + { + "text": "This class is extremely hard!!!Took him Fall 2010, got a B. Look, with this guy you have to study EVERYDAY throughout the semester. If you want the easy way out go to Jin!! which in fact makes you yellow! And you should drop civil engineering...", + "pos": 0.109, + "neu": 0.849, + "neg": 0.042, + "_id": { + "$oid": "6711d3cecd60fca157e5aa95" + } + }, + { + "text": "Had him for 231 and 332 in past semesters and learned alot with him despite how challenging the classes were. When he goes through examples he stresses the important parts of the problem, explains WHY you do a certain step in the problem solving, and when this type of problem would be practical. Wish he taught every structural related class in CE.", + "pos": 0.121, + "neu": 0.711, + "neg": 0.168, + "_id": { + "$oid": "6711d3cecd60fca157e5aa96" + } + }, + { + "text": "Professor Ali Ahmad is a Structural Engineering genius! He gives extremely hard, but fair considering the standard of the class, exams that are designed to clue you in to real world structural engineering design. In this way, his exams are there to help you for your future as a structural engineer. You really need to work 24/7 to pass this class...", + "pos": 0.108, + "neu": 0.872, + "neg": 0.02, + "_id": { + "$oid": "6711d3cecd60fca157e5aa97" + } + }, + { + "text": "He is a good guy, but his test are not fair at all. The reason i say this is because he will give you a not too hard of a problem but that always has a trick to it. The point im trying to make is that if the problems on the exams would be take home problems (NOT EXAM) for practice you would learn a lot but during the exam you just dont have thetime", + "pos": 0.039, + "neu": 0.795, + "neg": 0.166, + "_id": { + "$oid": "6711d3cecd60fca157e5aa98" + } + }, + { + "text": "Class will be BLIZTING by till DROP date. You MUST understand the basics of to apply it correctly for his SUPER difficult , but fair test.The subject is hard and he does not give out grade for free. There is no getting by quietly. ~11/40 ppl passed my section. He knows the subject well and can answer most questions.", + "pos": 0.179, + "neu": 0.709, + "neg": 0.112, + "_id": { + "$oid": "6711d3cecd60fca157e5aa99" + } + }, + { + "text": "His class is sooooo hard. His exams are not look like the questions on the textbook and homework. He makes his own exams. you have to understand the material well enough n study a lot to pass the class. also, u will spend all the time to copy the notes during the lecture n you wont hv much time to think about what is he talking about.", + "pos": 0.03, + "neu": 0.919, + "neg": 0.05, + "_id": { + "$oid": "6711d3cecd60fca157e5aa9a" + } + }, + { + "text": "Good Teacher. Explains material and does sample problems. Tests are on the hard side. Curves a little. You have to work hard to pass. He's fair, but does not give you a free lunch.", + "pos": 0.2, + "neu": 0.695, + "neg": 0.105, + "_id": { + "$oid": "6711d3cecd60fca157e5aa9b" + } + }, + { + "text": "\"he tries to help you...but you have to help urself...\" ok professor. thick accent, hard grader, no curve what you get is what you get, he wants you to pass but on your own not with his help. Paaounds...", + "pos": 0.12, + "neu": 0.75, + "neg": 0.129, + "_id": { + "$oid": "6711d3cecd60fca157e5aa9c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cecd60fca157e5aa9e" + }, + "professor_name": "Douglas Holloway", + "rating": 1.6, + "department": "Communication department", + "comments": [ + { + "text": "WARNING HE IS A HANDFUL. This course should be a 4 credit course based on the load of work he has given out to his students. His final project is worth 60% of our grade but yet he give us limit time, we can say less than a week to complete this project along with his intensive homework assignments and essays that is only worth 20% of our grade.", + "pos": 0.077, + "neu": 0.894, + "neg": 0.028, + "_id": { + "$oid": "6711d3cecd60fca157e5aa9f" + } + }, + { + "text": "A lot of people pump up how difficult he is. He wasnt TOO bad. Yes, he is vague. Yes, he is lecture heavy. But he is fair with regular homework grades as long as you're consistent. The Final is where he changes how he grades and gets into the nitty gritty. If you do all the homeworks (which he assigns once a week) leading up to the final youll pass", + "pos": 0.089, + "neu": 0.85, + "neg": 0.061, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa0" + } + }, + { + "text": "First of all if you're thinking to take him DO NOT. If you aren't required DO NOT. He legit sits in class with long lectures & is so vague when it comes to explaining assignments. Not only that, but he is persistent on asking you to have your camera on during the ENTIRE class. Then for the final project he gives a VAGUE outline now my grade is bad.", + "pos": 0.0, + "neu": 0.881, + "neg": 0.119, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa1" + } + }, + { + "text": "I wish he wasn't the only professor that teaches this course because I would've chosen another professor over him any day. This man is extremely vague when he assigns homework and will deduct points for something that he was looking for but did not explicitly say. Also, his feedback is less than helpful and will leave you extremely confused.", + "pos": 0.079, + "neu": 0.829, + "neg": 0.093, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa2" + } + }, + { + "text": "He is THE WORST professor I've ever had. He is so rude and lecture-heavy. He will reprimand you for not being on time or having your camera on for the full 2.5hrs of class time. He assigns homework every class and the final project was about 30 pages of work. When students would talk or make input he would act and look so uninterested.", + "pos": 0.0, + "neu": 0.877, + "neg": 0.123, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa3" + } + }, + { + "text": "He has lots of knowledge in the industry and has had an outstanding career. He is always willing to share his experience and mentor every student. His assignments cover exactly what you need to learn. As long as you give detailed answers in your HW you'll get an A. No midterm or final exam. He really cares about CCNY students.", + "pos": 0.14, + "neu": 0.827, + "neg": 0.032, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa4" + } + }, + { + "text": "i've never left a review on RMP but god this guy was really the worst. demands cameras turned on for zoom. only professor for the course. no clear guidelines for the final project which was most of our grade. little to no feedback on assignments. but he IS a pretty easy grader, that's the only positive.", + "pos": 0.207, + "neu": 0.645, + "neg": 0.148, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa5" + } + }, + { + "text": "This was solely the worst professor I've ever had at CCNY and would be the reason I transferred if needed to be taken again or I'd even consider dropping my major. Do what you want with that information. P.S. also basically made students go out in public for the first assignment during the prime time of COVID-19", + "pos": 0.022, + "neu": 0.911, + "neg": 0.068, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa6" + } + }, + { + "text": "Made it optional but expected students to go into the city during COVID for a project. Mandatory to have cam on for 2.5 hours, calls you out if it's off. Horrible at instructions. Gives irrelevant examples about luxury goods. Wastes 1 hr of class for each student to present homework. Final paper is 60% of grade. Can be very rude. Boring lectures.", + "pos": 0.02, + "neu": 0.805, + "neg": 0.174, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa7" + } + }, + { + "text": "Extremely rude and disrespectful to students. For online learning he dictates how you sit and react over zoom.", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d3cecd60fca157e5aaa8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cfcd60fca157e5aaaa" + }, + "professor_name": "Gregory Oswald", + "rating": 4.2, + "department": "Media Arts department", + "comments": [ + { + "text": "Loved his class, to say the least, he's the best professor at City College.", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aaab" + } + }, + { + "text": "Professor Oswald is very accommodating and kind from the very first day. It is clear that he is passionate about media and the aspects that surround it in the digital world. Classes are mainly him lecturing, so it can get a bit low energy. The class works through media history well, and I know I am better off as I move towards my future career.", + "pos": 0.218, + "neu": 0.755, + "neg": 0.027, + "_id": { + "$oid": "6711d3cfcd60fca157e5aaac" + } + }, + { + "text": "His weekly writing assignments are simple & straightforward, & guidelines for the research papers were also easy to follow, tho he is a very tough grader & wants you to get as specific as possible. Midterm & final are a bit lengthy, so it's best to not procrastinate. Class discussions are interesting if you participate. I recommend him!", + "pos": 0.19, + "neu": 0.783, + "neg": 0.026, + "_id": { + "$oid": "6711d3cfcd60fca157e5aaad" + } + }, + { + "text": "A very good professor who knows a lot about this topic. He has long lectures but they're bearable. He doesn't grade that hard, make sure you follow directions and stay on top of the homework he assigns. Long midterm and final but he gives you a week to do it, and doesn't have hard deadlines, so you always have time.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aaae" + } + }, + { + "text": "Hard for an introductory class. Not an easy A. Hard grader, highest grade you'll get is B+. Don't take him worst professor at CCNY, unclear weekly homework, midterm, 2 research papers, and final, the second research paper is due a week before the final is due. His lectures are long and boring. He took down class recordings for open notes tests.", + "pos": 0.049, + "neu": 0.811, + "neg": 0.14, + "_id": { + "$oid": "6711d3cfcd60fca157e5aaaf" + } + }, + { + "text": "Professor Oswald is an amazing professor, very knowledgeable about the media studies field. A great professor and person. His lectures can be long, but he is very clear and concise about what he is teaching. The midterm and final are conceptual and his writing assignments are pretty easy. He offers good feedback.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab0" + } + }, + { + "text": "Loved this guy, he tends to have very long and boring lectures but once students engage and participate its really fun and interesting. Hes very lax when it comes to deadlines, but I find him to be quite a tough grader. But overall worth it.", + "pos": 0.285, + "neu": 0.648, + "neg": 0.067, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab1" + } + }, + { + "text": "Great professor! He is a captivating lecturer with a great sense of humour. Classes involve discussions and there is only one assignment per week. He offers a very interesting introduction to media studies that is eye-opening about the world of social media. Definitely recommend any class of Prof. Oswald.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab2" + } + }, + { + "text": "His lectures tend to be boring, but they will certainly get better if you interact. Pretty nice guy too, the intro to media class is not a bad time.", + "pos": 0.432, + "neu": 0.53, + "neg": 0.038, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab3" + } + }, + { + "text": "Friendly professor, gives good feedback. Get ready to read and write papers every week plus research papers. Lot of writing but you'll learn about mass media as a producer and consumer. Class discussions take place on every class which helps understand the material better. He tryes his best to make class interesting besides the long lectures", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cfcd60fca157e5aab6" + }, + "professor_name": "Sonja Killebrew", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Best professor", + "pos": 0.808, + "neu": 0.192, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab7" + } + }, + { + "text": "very good professor i recommend if taking english 125 very easy class amazing professor", + "pos": 0.564, + "neu": 0.436, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab8" + } + }, + { + "text": "Take any class by Professor Killebrew! She's so nice and her class isn't much besides some easy discussion board posts and 2-3 essays. I recommend this class 100%!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aab9" + } + }, + { + "text": "I love Prof Killebrew. she's definitely a gem. this is a writing class so be prepared to write papers. the papers are pretty easy tho so don't be worried. there's one presentation and a portfolio project at the end. Prof Killebrew is super nice and very understanding. She was one of the few classes i felt at ease when attending. for sure an easy A.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aaba" + } + }, + { + "text": "She is a very good professor and is understanding. Not too much homework and no Tests/Exams. she is overall a kind professor and her class is not that hard. All you have to do is pay attention and do the work.", + "pos": 0.166, + "neu": 0.758, + "neg": 0.076, + "_id": { + "$oid": "6711d3cfcd60fca157e5aabb" + } + }, + { + "text": "TAKE HER! She is truly a gem at CCNY. She truly cares about her students and their well-being. She gives a weekly discussion board that are simple, and she gives a few papers. Super understanding and sweet. Shes easy to talk to and responds to her email quickly. TAKE HER you will not regret it.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aabc" + } + }, + { + "text": "Professor Killebrew is an amazing professor and she is very understanding. This class is very interesting and she gives feedbacks about how to improve your essay. A lot of discussion board and try to do all of them to get a good grade", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aabd" + } + }, + { + "text": "Prof. Killebrew is a good professor, she encourages us to ask questions and she is readily available to help during office hours. Classes are virtual this semester for the pandemic so classes are asynchronous, all you need to do is complete assignments and do them well, it should get you an A. Would recommend this class for incoming freshmen.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aabe" + } + }, + { + "text": "Super sweet! Didnt give many assignments and when she did they were on blackboard and pretty easy: just show up and participate because she likes to ask the class to share a lot", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aabf" + } + }, + { + "text": "Ms.k is a great professor she didn't give a lot of assignments. We had to write 8 discussions on blackboard throughout the whole semester. We also had to write 2 essays and, with each essay a rhetorical situation. We also had to write a superhero short story and with it a rhetorical situation.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3cfcd60fca157e5aac2" + }, + "professor_name": "Yolonde Van Putten", + "rating": 2.6, + "department": "Speech department", + "comments": [ + { + "text": "Attendance matters, lateness will be weighed in your final grade. Participation matters, so actively engage while other students are presenting their speech and be prepared on the day of your speech. Come dressed, on time and ready! Blackboard is a bit disorganized so if you have troubles with it, communicate with her and she will understand.", + "pos": 0.191, + "neu": 0.73, + "neg": 0.079, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac3" + } + }, + { + "text": "Engaging class, fun activities and atmosphere, not a harsh or intimidating teacher, will definitely improve your speech abilities\nGrades pretty roughly, a little disorganized, kind of long and complicated speeches, stressful", + "pos": 0.394, + "neu": 0.437, + "neg": 0.169, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac4" + } + }, + { + "text": "She gives too many papers, forgets so many things and grades critically, and does not give enough time to do homework or project. Unnecessary lectures that do not require based on the course pressure the students too much. Does not know how to use blackboard really well and her tests are nonsense.", + "pos": 0.043, + "neu": 0.87, + "neg": 0.087, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac5" + } + }, + { + "text": "I don't recommend this professor. She makes this class so difficult. Although it's a speech class there is many quizzes and other assignments. She is a very harsh grader, and doesn't show sympathy. She is not the best with technology and never responds to emails, so she is never available.Will makes you unnecessary nervous for speeches.", + "pos": 0.0, + "neu": 0.756, + "neg": 0.244, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac6" + } + }, + { + "text": "She is terribly disorganized. You frequently deliver the same speeches. She will call you at least once during class, so you had better be prepared to participate. suggest bringing a different person.", + "pos": 0.13, + "neu": 0.72, + "neg": 0.149, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac7" + } + }, + { + "text": "She doesn't make herself available outside of class and doesn't accept responsibility for her mistakes. disorganized. In SPCH11100, only she gives midterm and final exams. Gives out too many assignments, but lacks the time to review them and outright forgets to discuss them. She must be reminded of her assignments by the students.", + "pos": 0.0, + "neu": 0.91, + "neg": 0.09, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac8" + } + }, + { + "text": "She is unavailable after class and doesn't accept responsibility for his errors. She is Extremely unorganized. You keep making the same speeches.", + "pos": 0.0, + "neu": 0.814, + "neg": 0.186, + "_id": { + "$oid": "6711d3cfcd60fca157e5aac9" + } + }, + { + "text": "differently an interesting teacher she is intimidating but understanding. as long as you get your work in on time you should be fine and if you have a valid excuse she will take it in late. better be ready to participate because she will call you at least once a class.", + "pos": 0.212, + "neu": 0.756, + "neg": 0.033, + "_id": { + "$oid": "6711d3cfcd60fca157e5aaca" + } + }, + { + "text": "shes a very tough grader and doesnt put the grades up right away. shes very confusing and doesnt remember what she says half the time. its a miracle if she answers your email so feel free to feel special if she does. her speech assignments arent terrible but be sure you take into account EVERYTHING she says. she can be intimidating", + "pos": 0.158, + "neu": 0.745, + "neg": 0.096, + "_id": { + "$oid": "6711d3cfcd60fca157e5aacb" + } + }, + { + "text": "The professor is really hard. She isn't accessible outside of class and does not take accountability when she makes a mistake. Somehow, it is always the students' fault. She's HEAVILY disorganized. You also don't go over course material; you're just giving speech after speech. I highly recommend taking someone else.", + "pos": 0.089, + "neu": 0.756, + "neg": 0.155, + "_id": { + "$oid": "6711d3cfcd60fca157e5aacc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d0cd60fca157e5aace" + }, + "professor_name": "Hector Velarde", + "rating": 4.1, + "department": "Spanish department", + "comments": [ + { + "text": "Gives a lot of assignments but does not grade them. You will not learn much from his lectures and he is usually hard to reach. Only positive is that he is lenient on due dates but thats only because he doesnt grade them.", + "pos": 0.176, + "neu": 0.791, + "neg": 0.032, + "_id": { + "$oid": "6711d3d0cd60fca157e5aacf" + } + }, + { + "text": "Do not take this professor if you really want to learn. Class was very chaotic, unorganized, waste of time. It is difficult to learn because the class was all over the place, but he does want people to pass.", + "pos": 0.064, + "neu": 0.795, + "neg": 0.141, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad0" + } + }, + { + "text": "Super easy class! Just participate and do his work, you're bound to get an easy A. He's super nice. Recommend to take him for mandatory foreign language courses.", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad1" + } + }, + { + "text": "Easy going professor. He never gives back your grades or post on Bb. Might seem like an easy A but must keep track of your grade by urself. If not you will get something different from what you think u will get. If u really want to learn spanish not a good choice. Everything mostly take home but make sure to ask what u get!! Be on top of ur grades.", + "pos": 0.165, + "neu": 0.796, + "neg": 0.039, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad2" + } + }, + { + "text": "Very caring and understanding professor reviews multiple times one main topics. make sure you don't miss too many classes that's the only thing that will fail you other than that great professor would definitely reccomend.", + "pos": 0.302, + "neu": 0.623, + "neg": 0.075, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad3" + } + }, + { + "text": "Just be in the class, that's all matters. he is sweetest, very understandable. Everyone should be fine in his class, even if you don't know anything about spanish. He doesn't fail anyone guranteed", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad4" + } + }, + { + "text": "He's so great!! Very helpful. He gives quizzes, midterm and a final exam. But honestly if you pay attention you should be fine.", + "pos": 0.373, + "neu": 0.576, + "neg": 0.051, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad5" + } + }, + { + "text": "EASY A, IF YOU CAN TAKE HIM. DON'T HAVE TO DO MUCH EXCEPT, ATTEND CLASS AND HIS TESTS ARE NEXT TO EASY. Teaches very well. Would definitely take him for following Spanish courses if given the chance.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad6" + } + }, + { + "text": "He's so great!! Very helpful. He gives quizzes, midterm and a final exam. But honestly if you pay attention you should be fine. Love him!! Wish he was teaching all the spanish classes", + "pos": 0.439, + "neu": 0.529, + "neg": 0.033, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad7" + } + }, + { + "text": "He is a funny and helpful professor. He has a great teaching style. He loves participation and is available to help you if you don't understand. Most of the hw is online but he takes you to the lab one day a week to complete them. His class was very interactive and fun even at 8 a.m. He gives great study guides and you won't regret taking his class", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aad8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d0cd60fca157e5aada" + }, + "professor_name": "Reza Khanbilvardi", + "rating": 3.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "i took his class in 1993 and got an A because i used the Schaum's outline series. We had no textbook and although he was a decent man, his lectures were all theory with no practical examples. He awrded me credit for the answers i got on tests although he would put \"?\" because he mustve known i used Schaums. CCNY can hire better than this guy", + "pos": 0.075, + "neu": 0.864, + "neg": 0.06, + "_id": { + "$oid": "6711d3d0cd60fca157e5aadb" + } + }, + { + "text": "Reza is a great professor. Great lectures and explanation of when comes to dealing with answering questions. What sucked was that the lectures were only 50 minutes and students were forced to learn the basics from him and study the advance concepts on their own. His exams are hard as hell and don't knock on his door for anything, he obliterated me.", + "pos": 0.105, + "neu": 0.702, + "neg": 0.193, + "_id": { + "$oid": "6711d3d0cd60fca157e5aadc" + } + }, + { + "text": "You will learn in this class but your GPA will not learn. He is a great teacher but his exams are 10x more complex than what he teaches. Do not skip class, you will miss out on a lot. He should balance out his exams and follow the textbook level which is a step higher than what he teaches. Overall neutral, take at your own discretion and risk.", + "pos": 0.075, + "neu": 0.864, + "neg": 0.061, + "_id": { + "$oid": "6711d3d0cd60fca157e5aadd" + } + }, + { + "text": "He is a very smart man when it comes to Fluid Mechanics and hydraulics. He wants students to think about his lectures and makes sure everyone is participating, so dont sleep lol. Exams look hard but prepare hard since he is somewhat stingy. Project was also given and is hard too if you lack the fundamentals. He also gives motivational speeches.", + "pos": 0.053, + "neu": 0.771, + "neg": 0.176, + "_id": { + "$oid": "6711d3d0cd60fca157e5aade" + } + }, + { + "text": "Straight up the best professor in the Civil Engineering department, if you understand the basics of physics you will do great in his class. Sum of the Energy 1 Sum of Energy 2 + Head loss", + "pos": 0.308, + "neu": 0.642, + "neg": 0.049, + "_id": { + "$oid": "6711d3d0cd60fca157e5aadf" + } + }, + { + "text": "This is one of the most knowledgeable professors in the whole Civil engineering department. He actually knows what he is talking about and makes difficult concepts to be very easy to grasp. Fair exams and fair grader. He expects you to think and not to memorize formulas. Take him if you want to learn, if you want an easy grade, take someone else.", + "pos": 0.185, + "neu": 0.78, + "neg": 0.035, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae0" + } + }, + { + "text": "Tuff, but curves and won't fail you if your trying", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae1" + } + }, + { + "text": "This man taught me everthing fekete didn't. TAKE HIM!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae2" + } + }, + { + "text": "Prof is an excellent teacher and you will learn a lot, however your GPA will not learn. Clear lectures, but he kills you in the exams, which are 70 % , 2 midterms and 1 final. Its one of those things that you have to sacrifice, either you learn a lot and sacrifice your GPA with him, or you don't learn as much and get a good grade with someone else", + "pos": 0.078, + "neu": 0.842, + "neg": 0.08, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae3" + } + }, + { + "text": "If you want to learn Hydraulics and Hydrology take Prof. Khanbilvardi. Lectures are clear and informative, even talks about things in the real world. Exams aren't a walk in the park though, start on the final project as soon as you get it.", + "pos": 0.087, + "neu": 0.913, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d0cd60fca157e5aae6" + }, + "professor_name": "Peter Brown", + "rating": 3.7, + "department": "World Humanities department", + "comments": [ + { + "text": "if you are a good writer, then you should do well in the class. he is VERY big on participation, so even if youre not a good writer, if you participate a lot then he will boost your grade. if he doesnt agree with your POV on a book, he will tend to devalue what you're saying so that's the only con. overall nice prof & i def recommend!", + "pos": 0.167, + "neu": 0.777, + "neg": 0.057, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae7" + } + }, + { + "text": "He obviously loves literature and enjoys discussing it, but his method of communicating ideas were at times overly arrogant and discouraging for students who were unsure of the reading material. He made it difficult for some students to vocalize new ideas on old text, and gave no essay direction. However, he provided insightful interpretations.", + "pos": 0.066, + "neu": 0.689, + "neg": 0.245, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae8" + } + }, + { + "text": "Reading the books and annotating key lines as well as being able to quickly synopsize chapters is critical.Participation is a must but do not be wordy.He loves Literature and expects students to at least grasp themes and basic facts of the stories. He loves Group Discussions (5-6X in course). 1 3 person Presentation.3-4 Quiz. 3 Papers.", + "pos": 0.104, + "neu": 0.833, + "neg": 0.063, + "_id": { + "$oid": "6711d3d0cd60fca157e5aae9" + } + }, + { + "text": "Alright professor, didn't seem like he cared much for class but easy A. Can be a bit arrogant at times but write your papers and participate in class and you'll do fine. Reading is a must!", + "pos": 0.214, + "neu": 0.658, + "neg": 0.128, + "_id": { + "$oid": "6711d3d0cd60fca157e5aaea" + } + }, + { + "text": "He is fine. Did not show up to the Final. Would have preferred if he himself cared about the class and SHOWED UP ON TIME! Essays are without any direct instructions, and quizzes are not difficult if you keep up with the reading. Pretty easy professor. Just participate and write half decent essays for an easy A.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aaeb" + } + }, + { + "text": "Pretty good professor. Likes to have alot of discussions. very easy course, you just have to read the books (most of which you probably have read in high school)", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aaec" + } + }, + { + "text": "If you do not pass his class, then you are a brute. Read the book and you shouldn't have a problem. He's also very nice and likes to help people.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d3d0cd60fca157e5aaed" + } + }, + { + "text": "Pretty easy, his papers aren't too hard. Definitely big on participation and he's very interested in discussing the literature.", + "pos": 0.39, + "neu": 0.525, + "neg": 0.085, + "_id": { + "$oid": "6711d3d0cd60fca157e5aaee" + } + }, + { + "text": "Pretty good teacher, he likes to discuss the literature. He gives simple essays and quizzes only if you don't read. He's pretty relaxed. If you participate in class, read the books, and write your papers you will pass.", + "pos": 0.254, + "neu": 0.691, + "neg": 0.055, + "_id": { + "$oid": "6711d3d0cd60fca157e5aaef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf1" + }, + "professor_name": "Stephen Ruszczyk", + "rating": 4.2, + "department": "Sociology department", + "comments": [ + { + "text": "He is an AMAZING professor, it's a shame CCNY lost him. I took EVERY class he taught, and he really opened my eyes up to why I love Latin American studies and how the culture grew in the U.S. He is amazing.", + "pos": 0.228, + "neu": 0.674, + "neg": 0.098, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf2" + } + }, + { + "text": "Quizzes on reading. Good powerpoints. He tries to get to know the students and connect. I liked the semester project a lot, I volunteered with an animal shelter, that was better than I thought it would be. Overall the class was better than I thought going in.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf3" + } + }, + { + "text": "He's very \"meh\". Nothing in particular stands out as incredible or awful except that while he has a semester project, he also offers extra credit. So it really is a toss-up. He's an adjunct, so I can only speak for Montclair State University. But I will say that he's incredibly average. Tests and quizzes are easy-ish though so there's that I guess.", + "pos": 0.028, + "neu": 0.918, + "neg": 0.053, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf4" + } + }, + { + "text": "This class was interesting and I learned way more than I thought. Fun classroom discussions. Weekly responses, midterm, paper, final, presentation. I actually liked the responses, it made the exams easy to study for. Don't need to buy books. Takes off for absences.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf5" + } + }, + { + "text": "I would NOT recommend this professor. Class is easy but there is a lot of work and a whole lot of reading. He is a tough and unfair grader. Also participation and attendance matters big time with him. Beware. The lectures are extremely long and tedious. You will have hw (reading responses) every week & 1 Midterm, Essay, Final Exam and presentation.", + "pos": 0.046, + "neu": 0.844, + "neg": 0.11, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf6" + } + }, + { + "text": "Have taken this professor twice, is very helpful. The weekly reading responses are tedious but help us stay on track. He likes to get to know each student individually and is a fair grader. Is always willing to help with class and even matters outside of it. Hates when people are texting. Likes to relate current events to the class. Def recommend.", + "pos": 0.296, + "neu": 0.656, + "neg": 0.048, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf7" + } + }, + { + "text": "He incorporated different areas in order to fully study the topic of Hispanics in the US.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf8" + } + }, + { + "text": "Very nice person, professional and he its very knowlageble and passionate about what he teaches. Lots of long readings and be ready to summarize. He provides most of the readings.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaf9" + } + }, + { + "text": "Weekly summaries (only need to do 10 weekly summaries-there are 14 weeks of the semester so you can take breaks\")One term paper about two books and a movie related to the class themes (similar to a compare and contrast paper) and a presentation about it . One midterm. One final (not cumulative). Good insightful lectures. Very interactive class.", + "pos": 0.0, + "neu": 0.959, + "neg": 0.041, + "_id": { + "$oid": "6711d3d1cd60fca157e5aafa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d1cd60fca157e5aafc" + }, + "professor_name": "Elise Buchman", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Professor Buchman is the best when it comes to making sure you understand what is going on in class. She's so helpful and so nice about it too. If you need anything to be clarified or just a little bit of help, email her or talk to her after class. I recommend taking her classes.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5aafd" + } + }, + { + "text": "shes a great person.", + "pos": 0.577, + "neu": 0.423, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5aafe" + } + }, + { + "text": "She is understanding, and clear in her explanations. Interesting because she gives you random facts, but a pleasure to be around. Certaintly a great class and easy professor for all potential engineers.", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5aaff" + } + }, + { + "text": "Excellent Professor, Helpful and very understanding. EASY CLASS.", + "pos": 0.676, + "neu": 0.324, + "neg": 0.0, + "_id": { + "$oid": "6711d3d1cd60fca157e5ab00" + } + }, + { + "text": "This professor may be one of the easiest but she is also understanding and very helpful. She's not one of your normal teachers but if you have her I'm sure you would enjoy her class especially after you have just had a boring one.", + "pos": 0.241, + "neu": 0.706, + "neg": 0.053, + "_id": { + "$oid": "6711d3d1cd60fca157e5ab01" + } + }, + { + "text": "easy professor. take her especially when you have really hard courses", + "pos": 0.213, + "neu": 0.662, + "neg": 0.125, + "_id": { + "$oid": "6711d3d1cd60fca157e5ab02" + } + }, + { + "text": "easy professor. take her especially when you have really hard courses", + "pos": 0.213, + "neu": 0.662, + "neg": 0.125, + "_id": { + "$oid": "6711d3d1cd60fca157e5ab03" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3d1cd60fca157e5ab04" + } + }, + { + "text": "She is so understanding, you could be late on assignments, she doesn't care. But you have to hand them in. No final Paper, just essays every week. She gives you the topic and you have to read nd maintain a journal on the readings. You hand it in at the end of the semester. It's an easy A.", + "pos": 0.178, + "neu": 0.756, + "neg": 0.066, + "_id": { + "$oid": "6711d3d1cd60fca157e5ab05" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d2cd60fca157e5ab07" + }, + "professor_name": "Adrienne Petty", + "rating": 4, + "department": "History department", + "comments": [ + { + "text": "Dr. Petty is a laudable instructor and thus far my favorite professor at the City College. She assigns quite a bit to read and one must compose several papers; however, her flexibility and openness to students proves wondrous, esp. for Civil War enthusiasts like myself. She truly cares about them, and has a most lovely personality. A delight!", + "pos": 0.338, + "neu": 0.591, + "neg": 0.072, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab08" + } + }, + { + "text": "awesome professor. I recommend students to take her. A lot of readings, but she cares about her students. 3-4 papers a semester", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab09" + } + }, + { + "text": "Prof Petty is awesome", + "pos": 0.519, + "neu": 0.253, + "neg": 0.228, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab0a" + } + }, + { + "text": "She is a good teacher but goes all around the place to get to one point. But extra credit is easy to get", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab0b" + } + }, + { + "text": "boring lectures and she''s really confused AVOID AT ALL COST", + "pos": 0.0, + "neu": 0.463, + "neg": 0.537, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab0c" + } + }, + { + "text": "Excellent Professor!", + "pos": 0.8, + "neu": 0.2, + "neg": 0.0, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab0d" + } + }, + { + "text": "She's great because she cares and it shows. Gives feedback and encourages students, who take advantage of her flexibility a little too much. Class discussions and material are really interesting. The workload is worth the learning you get out of it. I definitely recommend her courses.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab0e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab0f" + } + }, + { + "text": "alot of readings and her class is pretty boring.", + "pos": 0.256, + "neu": 0.56, + "neg": 0.184, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab10" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d2cd60fca157e5ab12" + }, + "professor_name": "Sogol Jafarzadeh", + "rating": 4.3, + "department": "Environment department", + "comments": [ + { + "text": "Loads of work but an amazing professor. I went in expecting the worst out of this class but she has your back and works with you to make sure you get the best grade possible. If you're willing to put in the effort and time, DO take her!", + "pos": 0.223, + "neu": 0.689, + "neg": 0.088, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab13" + } + }, + { + "text": "Honestly she is one of the best professors that I have had at CCNY!!! She genuinely has her students best interest. She does her best to make sure you understand the material. She is willing to work with you (so long as you don't take advantage, of course). Highly recommend her!!", + "pos": 0.357, + "neu": 0.618, + "neg": 0.025, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab14" + } + }, + { + "text": "good teachercan get an attitude sometimes though if you do something she doesnt like. other than that shes great teacher", + "pos": 0.268, + "neu": 0.651, + "neg": 0.081, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab15" + } + }, + { + "text": "She is an amazing professor! Although psych stats is pretty tough with all the concepts to remember, she explains everything very clear. she gives extra credit to prepare us for the exams and it helps alot! definitely recommend her", + "pos": 0.391, + "neu": 0.581, + "neg": 0.028, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab16" + } + }, + { + "text": "Best Professor!! she explain material well and make sure everyone in the class do well", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab17" + } + }, + { + "text": "Amazing professor. She knows what she's talking about and she always gives her students chances to do well. She does give a lot of work but always goes over it to make sure everyone understands. I absolutely love her and I would take another class if she taught any.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab18" + } + }, + { + "text": "She is a very kind professor, and is willing to help you out at anytime. She will also give you more time to submit your work as long as you speak to her. On the other hand, the class itself is pretty boring, we just only read the writing analytically book that I wasted my money on. Overall she is extremely nice but cannot teach at all.", + "pos": 0.141, + "neu": 0.809, + "neg": 0.051, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab19" + } + }, + { + "text": "I took SCI 104 with her and I really enjoyed her class. She is really kind and helpful and really cares about the students. Her exams are not really easy and you need to study well to get a good grade.", + "pos": 0.337, + "neu": 0.615, + "neg": 0.047, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab1a" + } + }, + { + "text": "SHE IS A REALLY..\"NEW\" TEACHER. SHE RARELY HAS ANY IDEA WHAT SHES TEACHING AND WHEN SHE DOES, SHE DOESNT EXPLAIN WELL. SHE SEEMS LIKE SHE DOES BUT THEN SHE GIVES HW LIKE THERES NO TOMORROW. SHE CALLS YOU OUT IN CLASS SO MAKE SURE YOU DO GOOD ON HER ONLINE COURSE. ALL IN ALL, NOT GOOD!!!", + "pos": 0.189, + "neu": 0.706, + "neg": 0.105, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab1b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d2cd60fca157e5ab1d" + }, + "professor_name": "Martin Fels", + "rating": 1.7, + "department": "Mathematics department", + "comments": [ + { + "text": "In reality he is not a bad professor.He wites alot on the board, and provides step by step procedures. You can ace his quizzes an exams because they are sually straight from the homework material. What really determines your grade is the final. I went from a A in the class to a C because of the final :(", + "pos": 0.075, + "neu": 0.88, + "neg": 0.046, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab1e" + } + }, + { + "text": "Please do yourself a favor! Do not take him unless your math skills are of IV league school because that's what you'll need to pass his exams. He is a good guy but a terrible teacher. He will give you a ton of proofs on how math came to be in its existence and not the material that you'll be tested on. Don't take him especially if you're a C avg.", + "pos": 0.075, + "neu": 0.871, + "neg": 0.054, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab1f" + } + }, + { + "text": "DO NOT TAKE HIM!!! The only thing that got me through this class was teaching myself and PatrickJMT. He's not a bad guy, but is terrible at teaching. His exams are really hard, and he only gives you 50 minutes, which is never enough time. His final was impossible, and no one finished. All around, a horrible experience. I was \"lucky\" to get a B!", + "pos": 0.071, + "neu": 0.742, + "neg": 0.187, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab20" + } + }, + { + "text": "DONT TAKE THIS GUY! Unless you are willing to teach yourself the material; DONT TAKE HIM! \"He never has time to answer Q's during the lesson\" to clarify any confusion! He doesn't give partial credit on test Q's makes Math SUPER DIFFICULT when it should be simpler ways to teach & learn it! Simply PATHETIC!", + "pos": 0.068, + "neu": 0.737, + "neg": 0.195, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab21" + } + }, + { + "text": "Very good professor, he explains everything step by step\u00e2?\u00a6gives quizzes every week for your grade to keep up and also a easy grader. I received a A in his class.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab22" + } + }, + { + "text": "I took a class similar to 190 in another school got an A but got no credit because it wasn't the same. Took Fels...got a D now my flawless GPA is down significantly. Terrible professor, Speeds through everything, DROP IF YOU HAVE HIM. DO NOT TAKE HIM.", + "pos": 0.077, + "neu": 0.74, + "neg": 0.184, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab23" + } + }, + { + "text": "PLEASE do not ever ever ever take him. He might know math, but has no damn idea how to teach. Accent is understandable after a few weeks, but overall he is terrible.", + "pos": 0.129, + "neu": 0.762, + "neg": 0.109, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab24" + } + }, + { + "text": "Horrible.... seriously as bad as it gets when it comes to professors", + "pos": 0.0, + "neu": 0.508, + "neg": 0.492, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab25" + } + }, + { + "text": "he is a horrible teacher! he is a great mathematician but a horrible teacher. he also does not care. not helpful. dont take him", + "pos": 0.145, + "neu": 0.547, + "neg": 0.309, + "_id": { + "$oid": "6711d3d2cd60fca157e5ab26" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d3cd60fca157e5ab28" + }, + "professor_name": "Darren Bradley", + "rating": 3.2, + "department": "Philosophy department", + "comments": [ + { + "text": "He is a good professor but he made the class very boring. all he does is talk for 3 hours straight. The philosophical arguments he makes are hard to understand also. His grading is tough which i never understood why, this is just philosophy and everyone analizes things differently but whatever. find a better prof.", + "pos": 0.123, + "neu": 0.722, + "neg": 0.155, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab29" + } + }, + { + "text": "Epic professor. Student1\"I want to go to grad school, not sure if I can handle it; what do you think?\". Bradley\"I don't care.\" Student2\"oh no! I may have used the wrong defintion on my paper!\" Bradley:\"lets hope that worked out for you.\" Examday\"just hand in your exams, and we will never see each other again\". Legendary.", + "pos": 0.113, + "neu": 0.761, + "neg": 0.126, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab2a" + } + }, + { + "text": "He is a good teacher but he is a hard grader. His accent is amazing and hot. I got a bad grade but he is a hard grader!!! please find out how you will do before the drop date", + "pos": 0.189, + "neu": 0.597, + "neg": 0.214, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab2b" + } + }, + { + "text": "This guy teaches AS IF, he does not care about: (1)philosophy (2)teaching (3)students", + "pos": 0.0, + "neu": 0.82, + "neg": 0.18, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab2c" + } + }, + { + "text": "since it's a philosophy class, it will be confusing. but, he tries his best to explain it as simple as possible. the midterm and final are easy. 17 multiple choice questions. he is a pretty good professor overall. take him if you can!", + "pos": 0.314, + "neu": 0.66, + "neg": 0.025, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab2d" + } + }, + { + "text": "This prof. tries his best to make this dry confusing course but ultimately fails. The first 2 months of the course were alright. But the last 2 months were extremely boring. He grades papers leniently if you follow his directions. Participate in class. If you are thinking taking this class as an elective then reconsider for something more engaging.", + "pos": 0.123, + "neu": 0.755, + "neg": 0.122, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab2e" + } + }, + { + "text": "He treaches the rational animal for philosophy. Avoid this clown at ALL costs. The first comment was extremely accurate. I drank redbulls before coming to his class and I STILL fell asleep. He's not funny at all. He's a strict **** about papers and his vibe is lame.", + "pos": 0.0, + "neu": 0.859, + "neg": 0.141, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab2f" + } + }, + { + "text": "dont listen to that comment. i really enjoyed this class. im not big on philosophy but this professor made it interesting and funny. he was sarcastic at times which helped us relax when things were getting difficult. im usually a b avg student and i got an a in the class. i would soo recommend him to anyone!!", + "pos": 0.234, + "neu": 0.688, + "neg": 0.078, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab30" + } + }, + { + "text": "Boring class!", + "pos": 0.0, + "neu": 0.278, + "neg": 0.722, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d3cd60fca157e5ab33" + }, + "professor_name": "Michelle Greenspoon", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "Absolutely great prof, always an interesting and engaging class.", + "pos": 0.613, + "neu": 0.387, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab34" + } + }, + { + "text": "I am not surprised she is only a Masters student.", + "pos": 0.0, + "neu": 0.844, + "neg": 0.156, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab35" + } + }, + { + "text": "Okay Prof", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab36" + } + }, + { + "text": "SHE IS AMAZING!!! ENOUGH SAID! SHE MAY COME OFF AS INDIFFERENT BUT SHE IS HONESTLY REALLY COOL AND A LOT OF FUN! I LOVED TAKING HER CLASS. SHE GAVE ME AN A+", + "pos": 0.431, + "neu": 0.54, + "neg": 0.029, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab37" + } + }, + { + "text": "TOTALLY LOVE HER!!! SHE REMINDS ME OF PINK (SINGER)!! SHE IS SO COOL AND AWESOME, SHE GIVES YOU EVERYTHING ON A SILVER PLATE JUST USE IT!!! SHE LOVES TO USE EXAMPLES FROM HER JOB AND THEY HELP A LOT!! SHE GETS A LIL SIDE TRACKED BUT ITS GREAT B/C THE CLASS IS ENTERTAINING!! SHE LOVES MUSIC & GLEE LOL!!!", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab38" + } + }, + { + "text": "She is awesome!! You do need to go to class but it is NEVER boring! She makes the lecture fun and in the end you will learn", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab39" + } + }, + { + "text": "overall she is a great instructor. she actually works in the field and uses the examples from everyday life. very relaxed and knowledgable, passionate about her lectures. a bit off, but in a good way. she gives homework( 3, 1pg), paper (5pgs based on your choice of a movie or tv show), mid-term and final. her lectures cover the material. take her!!", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab3a" + } + }, + { + "text": "one of the best professor i have had in city...she is so chill and down to earth and to my surprise made the class so much fun to learn..she goes by the book and her exams r straight from the book..", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab3b" + } + }, + { + "text": "I though I was lucky to have her as my TA. I thought she was smart, keen, and relatively cool.I though Michelle had it together. As time passed, I realized she was just bitter and mean (and a bit \"off\"). Take her at your own risk; if she flips on you (as bipolar/borderline people usually do), you cannot say you had not been warned!", + "pos": 0.138, + "neu": 0.794, + "neg": 0.067, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab3c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d3cd60fca157e5ab3e" + }, + "professor_name": "Richard Porterfield", + "rating": 4, + "department": "Music department", + "comments": [ + { + "text": "Professor Porterfield is very knowledgeable and makes the class sessions engaging.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab3f" + } + }, + { + "text": "Frankly, he is a good guy, funny and kind. I like him a lot. But his class is not easy, especially for those whose first language is not English. He gave a lot of vocalbulary words, three exams, three papers, and one presentation. NONE OF THEM ARE EASY!!!", + "pos": 0.233, + "neu": 0.714, + "neg": 0.053, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab40" + } + }, + { + "text": "A requirement for Music majors, Music 101 is a horribly flawed class (not Porterfield's fault). Don't take it as an elective. That said, Porterfield does a good job: textbook readings, 3 exams, 3 papers, 1 project. He's very friendly and funny, though he seems to love the sound of his own voice. Do NOT plagiarize, he is very strict about this!!!", + "pos": 0.218, + "neu": 0.698, + "neg": 0.084, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab41" + } + }, + { + "text": "Great teacher, very excited about what he does. He tells you exactly what you need to know for the tests. Don't think that you can plagiarize and get away with it.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab42" + } + }, + { + "text": "Easy, certainly. Fairly good at explaining things, reasonable curriculum. His tests give points for (partially or wholly) correct answers but subtract nothing for omissions or incorrect answers, so just write as much as possible for them and you should do fine.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab43" + } + }, + { + "text": "Professor Porterfield is very passionate about music and has great teaching style. He's very clear in explaining the material and the papers aren't hard. He's kind of funny and always seems happy, overall good professor.", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab44" + } + }, + { + "text": "he's soo funny!! You don't have to read a lot for this class, just some basic notes that he gave. Easy papers, just write down what you feel about the piece he plays and stuff. You can do nothing and get a B!", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab45" + } + }, + { + "text": "I HATED this teacher.. Just plain horrible. Talks to f***in much and does not interest the class. A person who is just a little bit too happy. Lectures started earlier than the time and ended very late. DO NOT TAKE HIM ... I HATED HIM", + "pos": 0.058, + "neu": 0.675, + "neg": 0.267, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab46" + } + }, + { + "text": "3 papers 3 exams and a final. All easy.I got all A's and A+'s.Just make sure u are very specific musically in da papers & exams.He gives many voc. words 2 learn in da beg. & they r da ones u should use always. He loves participation and never tells u u r wrong.Very funny, kinda weird, but very a very good teacher; very passionate bout da subject!!!", + "pos": 0.208, + "neu": 0.777, + "neg": 0.015, + "_id": { + "$oid": "6711d3d3cd60fca157e5ab47" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d4cd60fca157e5ab49" + }, + "professor_name": "Minhua Huang", + "rating": 1.6, + "department": "Computer Science department", + "comments": [ + { + "text": "For Cuny York College,she's a horrible professor. You can barely understand what she's saying with her Chinese Accent. She helps when she wants to help. Like,She'll purposely ignore you whenever you ask for help. If you have no experience in Computer programming, then you're on your own. She gives out alot of homework and projects. Don't take her", + "pos": 0.117, + "neu": 0.762, + "neg": 0.12, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab4a" + } + }, + { + "text": "Attitude PROBLEM! Depressing and rude screeming in chinese, bring a chinise translator, if she dose not enjoy being a instructor and the stress that comes with it. Ruins your want to be in her class. Wish i never took her.", + "pos": 0.075, + "neu": 0.596, + "neg": 0.329, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab4b" + } + }, + { + "text": "Avoid if possible. otherwise have a great hand writing otherwise, you are penalized. gives points off just because you dont follow whats in her head", + "pos": 0.232, + "neu": 0.698, + "neg": 0.07, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab4c" + } + }, + { + "text": "Took her in the summer. Gave too much work. Ppl were behind 2 to 3 labs and she still post new ones up. Took C++ before and barely can give up since half the time the directions are unclear. Had to ask her a lot of question before I understand exactly wat she wants. Asked questions on test that doesnt apply in the real world. ACCENT PROBLEM!!!!", + "pos": 0.0, + "neu": 0.908, + "neg": 0.092, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab4d" + } + }, + { + "text": "She's very nice and always available via email/office. Posts notes online. Curves. Follows the textbook completely. Gives review sheet prior to exam. Collects hw. Has a very heavy accent so it is hard to follow her sometimes.", + "pos": 0.078, + "neu": 0.88, + "neg": 0.042, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab4e" + } + }, + { + "text": "its not a good idea taking her, you really wont understand what she is saying. she will read off the board and it will sound like she is speaking another language. unless you are a student who reads the book constantly you wont do well, there are better options pursue them.", + "pos": 0.095, + "neu": 0.83, + "neg": 0.075, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab4f" + } + }, + { + "text": "Nice teacher... If u do the hw yourself thn u r good to go... She has accent problems so sometimes it is hard to get it what is she saaying. Otherwise good teacher..:", + "pos": 0.211, + "neu": 0.688, + "neg": 0.101, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab50" + } + }, + { + "text": "if you are a computer science major don't take her, you wont learn anything at all. if you have experience in C++ then you wont struggle as much as the rest of the class but you will definetely struggle...", + "pos": 0.036, + "neu": 0.893, + "neg": 0.071, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab51" + } + }, + { + "text": "She seems nice. But she is hard to hear because of her accent. Even her test instructions are not clear because it has grammatic errors such as \"great than\" instead of \"greater than\". Be prepared to teach yourself with the book because you will get lost if you listen to her. At least she curves, Thank God!!! :)", + "pos": 0.286, + "neu": 0.584, + "neg": 0.13, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab52" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d4cd60fca157e5ab54" + }, + "professor_name": "Joseph Libertatore", + "rating": 4.6, + "department": "Economics department", + "comments": [ + { + "text": "Solid professor. He is sort of monotonous but overall a great guy who would sometimes let us leave early and cancel class. Lots of wileyplus hw but easy exams. Gives a semester long project but is not difficult at all to do. Even tells you what questions will be on the exam and gave an online final. Lots of extra credit opportunities! Easy B+/A", + "pos": 0.293, + "neu": 0.661, + "neg": 0.046, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab55" + } + }, + { + "text": "hes very laidback. exams are super easy. all homeworks are online and answers are accessible. one final paper but its pretty light. take him if you want easy A/B.", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab56" + } + }, + { + "text": "Kind of monotonous. Lots of WileyPlus HW, have to do big paper at end, but super, SUPER easy tests.", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab57" + } + }, + { + "text": "He's really laid back and very funny. He makes sure students understand the material and takes the time to clarify any confusion students might have. He cares about his students and their understanding of the material. No tricks on the exams. The lectures are long and get boring sometimes though.", + "pos": 0.169, + "neu": 0.754, + "neg": 0.077, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab58" + } + }, + { + "text": "his voice is pretty monotone, but he is a pretty good professor. Class was pretty funny because we fooled around a lot, and the tests were pretty easy. Laid back professor. Most of the learning is done from the homeworks which kind of take a while and the online text book, but the professor is pretty helpful and doesn't want to screw anyone over.", + "pos": 0.388, + "neu": 0.561, + "neg": 0.051, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab59" + } + }, + { + "text": "Pretty cool professor. he doesnt like slackers though, so dont bs. just do the homeworks and you'll be fine.", + "pos": 0.299, + "neu": 0.615, + "neg": 0.086, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab5a" + } + }, + { + "text": "Ahhh liberatore, well basically he is an easy grader, gives 3 exams each 25% anh homework that's due every Wednesday. Now he makes the class dreadful! He is very monotonous and does not feel comfortable teaching. Most of the time u can tell he is not sure wit he is doing. Knows the material very well but can't really communicate it. I got a B+", + "pos": 0.074, + "neu": 0.846, + "neg": 0.08, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab5b" + } + }, + { + "text": "OK", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab5c" + } + }, + { + "text": "it's ok", + "pos": 0.688, + "neu": 0.312, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab5d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d4cd60fca157e5ab5f" + }, + "professor_name": "Nidhi Gandhi", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "Really annoying/pointless class. You should only take her for the credits, and if her class being online. Gets really political when it is absolutely unnecessary. Some help with resumes which is appreciated, especially for small details. Group project was an absolute waste of time, glad to have contributed nothing and got an A.", + "pos": 0.188, + "neu": 0.767, + "neg": 0.045, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab60" + } + }, + { + "text": "This Professor was horrible. DO NOT TAKE! Super moody constantly patronizes the class gets very political, and is a waste of time. Constantly screams at the class for following her instructions, gets upset very fast. If you are willing the class is an easy A, just know you will stay up last minute to do the work when she tell about it last minute.", + "pos": 0.065, + "neu": 0.745, + "neg": 0.19, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab61" + } + }, + { + "text": "Take her for the class. The class is overall mundane but the Prof is alright in my opinion. Expect to be responsible for your work as always, however you do have the opportunity to make up some assignments if you did poorly. Overall just take her and get the course over with.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab62" + } + }, + { + "text": "She was very caring and provided us with great feedback on assignments. For a winter class, the workload was pretty intense, but she wants you to try your best and is understanding of any circumstances. Coherent with assignment criteria and is accessible through email. Attendance is required. Easy A+.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab63" + } + }, + { + "text": "Provides good feedback, grades for completion, can get extensions, no tests\nSuper moody, heavy workload", + "pos": 0.133, + "neu": 0.506, + "neg": 0.361, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab64" + } + }, + { + "text": "Professor Gandhi's grading policy is chef's kiss. As long as you get the work done, you will succeed. There are four major projects. Although she gives homework weekly, it's broken down into simpler assignments. This class was enlightening and I would retake it any day!", + "pos": 0.179, + "neu": 0.764, + "neg": 0.058, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab65" + } + }, + { + "text": "Best!!! Only one word is enough for me to describe how awesome she was.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab66" + } + }, + { + "text": "This professor is amazing because she gets along so well with the students. She always wants you to ask questions if you have them, and don't be afraid to tell her if you're stuck on an assignment or are confused about it, because she can extend it. The curriculum's work load is something you should be prepared for! She also grades late sometimes.", + "pos": 0.145, + "neu": 0.795, + "neg": 0.06, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab67" + } + }, + { + "text": "This course required lots of homework before every class period but the work load is manageable. The professor was very understandable towards her students and would explain the assignment due for next class during class period. She also encouraged participation and asking questions in class.", + "pos": 0.069, + "neu": 0.931, + "neg": 0.0, + "_id": { + "$oid": "6711d3d4cd60fca157e5ab68" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d5cd60fca157e5ab6a" + }, + "professor_name": "Becca Albee", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "I had Becca for photo portfolio and I honestly wish the class had never ended. Shes a true gem because she fully invests herself in who her students are, what their goals are for their career outside of the classroom, and for their photo work. Her assignments are very clear & her feedback has made me a much better photographer. Thank you Becca!", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab6b" + } + }, + { + "text": "Becca is a great professor. She is one of the head of the art department. Her Photo and Visual Perceptions class is interesting. You follow a photography book about different photography themes. Then you try to photograph in those themes. This helps you explore/challenge you in your photography in a different way I didnt expect. Easy A.", + "pos": 0.15, + "neu": 0.813, + "neg": 0.037, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab6c" + } + }, + { + "text": "The class is more about creative than technical photography, although you learn the basics. You'll have something to photograph every week. Prepare for a lot of constructive criticism and turn in your projects on time, punctuality is half your grade. An easy quiz in the middle of the semester. Expect field trips to photo galleries and MoMA.", + "pos": 0.097, + "neu": 0.857, + "neg": 0.046, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab6d" + } + }, + { + "text": "Professor Albee is the best! She is honest, helpful, caring, and nice! Even though she might be critical on your work, she only does it so you can improve for next time. Just complete all your assignments (with some effort), go to all her classes, and participate and you should do fine!", + "pos": 0.323, + "neu": 0.643, + "neg": 0.034, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab6e" + } + }, + { + "text": "I have had Becca for a few classes and she is hands down one of the best professors in the art department. She takes a genuine interest in her students and their work, so she will call you out if you're not doing what you're supposed to. Do the assignments, show up, and put in effort and you're set.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab6f" + } + }, + { + "text": "I think Becca is a great teacher. She knows what she's talking about, she works in the industry, and if you do what you're supposed to do you will do well. Put a good amount of effort in and you will be fine. If you slack off you will be called out in front of the whole class. I highly recommend her.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab70" + } + }, + { + "text": "I liked her class. I thought she made a lot of sense and was available to her students: IF they were willing to do the work!", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab71" + } + }, + { + "text": "Although she is hot her class was not. she was way to strict and motherly controling. she is anal about mostly everything in her class annd leaves no room for error. i hope her work is perfect. she needs to lighten upn", + "pos": 0.133, + "neu": 0.768, + "neg": 0.099, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab72" + } + }, + { + "text": "She's OK. Very anal about lateness. She covers up her strictness with soft talk and giggles. She gives 0's if you miss an assignment but gives you the opportunity to make them up. She doesn't show enthusiasm for her student's work. I get the impression that Bruce Habegger (sp?)is great so try to get into his class. She used to be a rocker too!", + "pos": 0.177, + "neu": 0.765, + "neg": 0.058, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab73" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d5cd60fca157e5ab75" + }, + "professor_name": "Aaron Finbloom", + "rating": 4.4, + "department": "Philosophy department", + "comments": [ + { + "text": "(Phil 308) The class is interesting and its direction depends on the students participating, like one big conversation. You do have a few writing assignments that are like short responses and then one big essay at the end.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab76" + } + }, + { + "text": "PHL150 at U of Portland:\nThe course was overall interesting with a new topic every week, assigned readings in a free google drive, and weekly journal entries that make up a bulk of your grade. There's a 2000 word final essay, and shorter/more creative written midterm. Participation is also a chunk of your grade, and it makes the class more fun.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab77" + } + }, + { + "text": "When it comes to this class, Finbloom is very welcoming to his students by having open discussions on the weekly readings we would have. He does require cameras on and breakout rooms happen too. And while he does give weekly readings that are homework, this would probably keep your grade good if you do badly in your midterm and final.", + "pos": 0.092, + "neu": 0.861, + "neg": 0.047, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab78" + } + }, + { + "text": "way too many readings, this is probably the worst elective you would consider taking. but professor finbloom made it pretty easy to understand the readings and his lectures weren't boring. make sure you do those timed weekly quizzes because thats worth about 45% of your grade", + "pos": 0.223, + "neu": 0.69, + "neg": 0.086, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab79" + } + }, + { + "text": "One of my favorite classes. Was very enjoyable, makes you think, and easy to participate in. A lot of breakout rooms and participation! Requires camera to be on and it's worth it. Pay attention, take notes, and you'll get an A!", + "pos": 0.236, + "neu": 0.735, + "neg": 0.029, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab7a" + } + }, + { + "text": "Professor Finbloom is very understanding and I really enjoyed his class. The class discussions were very interesting. Quizzes everything week, a midterm and a final paper. Try to participate because it will help a lot. Take him if you can.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab7b" + } + }, + { + "text": "Professor Finbloom gives weekly quizzes, so make sure to watch the lecture videos by Professor Marnioff. Professor Finbloom likes to see his students participate during lectures. Professor Finbloom's final paper topics require a lot of knowledge on the specific readings getting used.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab7c" + } + }, + { + "text": "Prof Finbloom is a good prof. He's really passionate about philosophy. He's strict on participating so participate even if you're wrong. Only assignments we had were quizzes every week, midterm & final essay. Only thing I didn't like was that we had to turn our cameras on even tho professors aren't allowed to force us to.", + "pos": 0.103, + "neu": 0.815, + "neg": 0.082, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab7d" + } + }, + { + "text": "Prof Finbloom is very much passionate about philosophy. His classes are intriguing and he manages to really get your brain juices going. Easy A class is you pay attention, read, and take the quizzes.", + "pos": 0.169, + "neu": 0.795, + "neg": 0.036, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab7e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d5cd60fca157e5ab80" + }, + "professor_name": "Austin Williams", + "rating": 4.7, + "department": "Communication department", + "comments": [ + { + "text": "Professor Williams is understanding, down to earth, and relatable. He is experienced and knowledgeable in his field. My favorite thing about this class was being able to write an essay on my favorite rapper. Simply do your best and discuss ways to improve your work.The course is manageable. Overall, I recommend taking this class!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab81" + } + }, + { + "text": "This English teacher uses media-based assignments to make learning fun and engaging. Instead of just using textbooks, this teacher includes movies, TV shows, music, and social media in our lessons. This helps us see how English applies to our everyday lives.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab82" + } + }, + { + "text": "Professor Williams has very little consistency with grading, you'll get a 100 on a paper and a 65 on an exam, he never provided us with feedback of our work. He also made us preorder his book...Waste of money we looked at it twice in the whole semester, he just wanted to make a buck off his students", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab83" + } + }, + { + "text": "This is a creative-styled writing class. He will meet everyone where they are at. Just do the work to the best of your ability and communicate how it can be better. There's no tests/quizzes. The class is engaging. He's an honest professor and the class is not hard. I recommend this class. God bless you professor Williams, Jesus loves you.", + "pos": 0.319, + "neu": 0.626, + "neg": 0.055, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab84" + } + }, + { + "text": "Excellent Professor that lays down the grading rubrics, agendas and written assignments in a clear and concise manner. Most lectures feel more conversational rather then a barrage of powerpoints; the inclass discussions are informative and enlightening. The textbook readings are spare yet enjoyable, the assigments spark creativity and passion!", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab85" + } + }, + { + "text": "Professor Williams works with the class not as a class but instead a group of individuals that each have their own lives. He is accepting, laid back but also tries to put 100% of himself when he teaches. He uses humor to keep his instruction captivating and knowledgeable. He is truly a great person to listen too and understandable.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab86" + } + }, + { + "text": "He was an awesome professor.He constantly related the work to our everyday lives & media which encouraged people to participate in a natural way.He is an easy grader and he always offered help no matter what. His lectures were roughly an hour or so long but every class was very informal and fun. If you want to have fun in his class, go take him!!", + "pos": 0.271, + "neu": 0.716, + "neg": 0.013, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab87" + } + }, + { + "text": "Professor Williams is an amazing professor, no cap. He truly does know the material he's teaching but he's also learning as he goes. He's a fairly new professor, that doesn't hinder his performance at all. I truly learned a lot from him and he made my transition from high school to college so much smoother.", + "pos": 0.135, + "neu": 0.839, + "neg": 0.026, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab88" + } + }, + { + "text": "I had Professor Williams for Branded Feature Writing and Editorial Content. He is super helpful and brings in his past work to help you see how the assignments actually apply to what you will do in the industry. Class was very conversational without the pressure of feeling forced to participate.", + "pos": 0.214, + "neu": 0.736, + "neg": 0.05, + "_id": { + "$oid": "6711d3d5cd60fca157e5ab89" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d6cd60fca157e5ab8b" + }, + "professor_name": "Kayle Nochomovitz", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "She was really nice, helpful and had a lot of patience. There was 3 papers including the final and a few smaller assignments. The only thing that bothered me is sometimes she's a little too laid back to the point that we don't really understand what she wants us to do, so it got a bit confusing.", + "pos": 0.097, + "neu": 0.836, + "neg": 0.066, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab8c" + } + }, + { + "text": "Prof.N was a very good professor. Every time I reached out to her for feedback whether it was through email or after class she would provide very insightful feedback to help me with my paper, especially with the final paper. Its sad that the creative writing class she was going to teach in the spring of 2024 was giving to a different professor.", + "pos": 0.173, + "neu": 0.784, + "neg": 0.043, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab8d" + } + }, + { + "text": "This professor is a saint! She is so caring and sweet and will definitely give you the help you need if you reach out to her. She does 3 main papers for the semester and has one final research paper. She can take some time to respond by email but does give a lot of helpful feedback in person and will help you if you are struggling on your papers!!!", + "pos": 0.214, + "neu": 0.742, + "neg": 0.044, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab8e" + } + }, + { + "text": "Her class is simple in terms of only having 3 major papers; she gives good feedback and lots of time on the papers. Yet her class is really boring; a lot of it is sitting and working independently or with a partner, there is a lot of writing and homework, and attendance is mandatory.", + "pos": 0.073, + "neu": 0.882, + "neg": 0.045, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab8f" + } + }, + { + "text": "SHE |S AMAZING! I WOULD TAKE HER OVER AND OVER AGAIN! SHE IS ONE OF THE BEST AND CARING PROF. AT CCNY!", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab90" + } + }, + { + "text": "Professor N was such a great help during class. Would encourage us to contact her if we ever need any help, gives great feedback and is very kind", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab91" + } + }, + { + "text": "Professor N Is a real gem. She is super understanding and gives you amazing feedback to correct your work and get a higher grade. My class was asynchronous but we could still have office hours with her and correspond via email. I would highly recommend taking her class", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab92" + } + }, + { + "text": "Professor N. has to be one of the best professors in CCNY. I currently am taking her class for the fall 2020 semester. Shes understanding and gives weekly modules. She gives clear information on any assignment she posts. She responds through email very quickly. I would recommend taking a class with her. Great professor!", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab93" + } + }, + { + "text": "Kayle is a great professor... really kind, understanding, and very helpful! The term consists of 4 papers which she clearly tells you what she expects and makes the assignments so much easier. This is a stress free class and a good freshman writing course. No reason as to why not to take her.", + "pos": 0.321, + "neu": 0.61, + "neg": 0.069, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab94" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d6cd60fca157e5ab96" + }, + "professor_name": "Caitlin Berndt", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "Professor Berdnt is very encouraging and caring. I learned a lot of drawing techniques in her class and saw improvement by the end of the semester. While there is a lot of work, I think it is worth it to take her class as long as you are willing to put in the effort.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab97" + } + }, + { + "text": "There's a lot of work, but the professor is very nice and caring. She encourages the students to do better. I would love to take her class again in the future.", + "pos": 0.462, + "neu": 0.538, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab98" + } + }, + { + "text": "Very understanding and caring with useful feedback and engaging lectures. She felt very down to earth and always wanted to connect with students while also keeping the session on task. Her assignments/instructions were clearly outlined and easy to follow. Definitely recommend her for beginner artists especially", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab99" + } + }, + { + "text": "She is demanding from the first week of class, but she gives a lot of space for your own creativity to be expressed. Important to have assignments ready when they are due, but she gives you chance to revise and resubmit them. she is very kind, and helpful, just be diligent and responsible, and you will pass her class with a good grade.", + "pos": 0.33, + "neu": 0.653, + "neg": 0.018, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab9a" + } + }, + { + "text": "Prof. Berndt is a good art teacher but she was a little too hard for an intro level drawing class. We had to do so many drawings and portraits, most of them with charcoal. She expects a lot and wants you to work for it, we had homework every week. She really wants students to do better and gives a good grade eventually, but not an easy A class.", + "pos": 0.124, + "neu": 0.821, + "neg": 0.055, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab9b" + } + }, + { + "text": "Prof. Berndt is very nice and caring but don't let that fool you. She makes you work for it and wants to see you progress in her class. She will push you to try harder but not intentionally. She wants to see the best out of her students. Her assignments are time consuming and she can be a little overwhelming. I wouldn't take her again.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab9c" + } + }, + { + "text": "I took her class for watercolor, not expecting much since I didn't really care a lot for the medium. She made me really enjoy watercolor despite it's challenges and pushed me to do better while actually making you want to do better yourself as well. She's the best professor I've had and I've had a lot over more than the average 4-year college exp.", + "pos": 0.22, + "neu": 0.728, + "neg": 0.053, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab9d" + } + }, + { + "text": "I've taken two of Prof. Berndt's classes and I'd absolutely take another. She's passionate about what she teaches, cares about her students and is understanding. You need to participate in critiques and be present to pass. You won't do well if you don't put in your best effort. Her class might seem simple enough, but she makes you work hard for As.", + "pos": 0.102, + "neu": 0.853, + "neg": 0.045, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab9e" + } + }, + { + "text": "When people talk about that one great teacher they had in college, theyre talking about teachers like Caitlin. Down to earth, compassionate and passionate about her students work. Took two of her classes and hope to do another one in the future", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d3d6cd60fca157e5ab9f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d7cd60fca157e5aba1" + }, + "professor_name": "Brent Maximin", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "An amazing professor! He's very funny so his lectures are always entertaining and thoughtful. He doesn't give a final exam but the course work we have is also very manageable, of course you do have to put in effort. He also gives extra credit assignments.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba2" + } + }, + { + "text": "I took Dr. M's Cultural psych class and he made the material relatable making it easier to understand. The class consisted of 3 exams which he provides study guides for, 5 DB, 1 reaction paper that's pretty short and easy, 10 in class activities also super easy, and TONS of extra credit opportunities you had to be in class for so attendance matters", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba3" + } + }, + { + "text": "A great professor overall. if you have a chance, take him!!", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba4" + } + }, + { + "text": "Class was easy. Coursework was all online including take home quizzes. No exams or papers. Just discussion board.\n\nPretty funny and respectful. Very well accommodating to students situations.", + "pos": 0.373, + "neu": 0.57, + "neg": 0.057, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba5" + } + }, + { + "text": "He is honestly one of the best professors, easy to follow lectures, no midterms, no final exams, only weekly quizzes and few class discussions, and plenty of extra credit opportunities. Interested in psychology or not, I bet you'll like his lectures!", + "pos": 0.399, + "neu": 0.563, + "neg": 0.039, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba6" + } + }, + { + "text": "Dr. Maximin is a superb + caring professor! His assignments include weekly comments/questions from students for the week's readings, a presentation, drafts of components of a final research proposal to be submitted at the end of the semester, + more, but he's flexible w/ dates. Very accommodating w/ disabled students. Very kind + funny. Take him!", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba7" + } + }, + { + "text": "Dr. Maximin is a superb + caring professor! His assignments include weekly comments + questions from students for the week's readings, a presentation, drafts of components of a final research proposal to be submitted at the end of the semester, + more, but he's flexible w/ dates. Very accommodating w/ disabled students. Very kind + funny. Take him!", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba8" + } + }, + { + "text": "Professor Maximin takes pride in doing his best so students can understand the content. He made this class enjoyable and relatable which every student would want from their professor. Prof Maximin is understanding but don't don't miss class. He also stook with the syllabus which was great and had a clear grading criteria.", + "pos": 0.238, + "neu": 0.738, + "neg": 0.024, + "_id": { + "$oid": "6711d3d7cd60fca157e5aba9" + } + }, + { + "text": "Great professor! he made the class sooooo interesting. textbook is needed but its online so its free. quizzes weekly but they're so easy and short. few class activities and discussion posts but nothing crazy. attendance is mandatory but he doesn't always take it. NO FINAL! 100% recommend him and this class", + "pos": 0.321, + "neu": 0.622, + "neg": 0.056, + "_id": { + "$oid": "6711d3d7cd60fca157e5abaa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d7cd60fca157e5abac" + }, + "professor_name": "Samah Saeed", + "rating": 2.9, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "This class was not my forte. I wasn't the brightest when it came to assembly code and it is connected to hardware. Felt like she zooms through the lectures but if you got to class you should understand it. Quizzes are like hw and try to get her previous exams bc they help a lot. Overall she is a great prof, she curved the final letter grade.", + "pos": 0.181, + "neu": 0.792, + "neg": 0.027, + "_id": { + "$oid": "6711d3d7cd60fca157e5abad" + } + }, + { + "text": "Make sure to do the homeworks in time since it is 20% some of them might be hard, go to her office hours to secure the 20% (she grade them at the end of semester). There are reviews before the exams, and they will be on the exams. Understand the review can get you at least 70(with cheat sheet). She curves. materials are easy with coding experience.", + "pos": 0.103, + "neu": 0.838, + "neg": 0.059, + "_id": { + "$oid": "6711d3d7cd60fca157e5abae" + } + }, + { + "text": "Ok this professor is ideal for 344, she has at times been quick, but its on you to go over the material and if you have any confusion, clear it up by either asking the question in class or go to office hours pop quiz is straight from slides examples, and look for review sessions, they are vital for midterm and final. Also very nice with partial!!", + "pos": 0.202, + "neu": 0.763, + "neg": 0.036, + "_id": { + "$oid": "6711d3d7cd60fca157e5abaf" + } + }, + { + "text": "The content of this class is pretty easy, but she goes through the material very quick and gives quizzes on a weekly basis. The exams are very tough and nothing like the examples from the textbook. She gives a lot of homework, doesn't provide extensions, and yet grades them at the very end of the semester. Would not recommend, take someone else.", + "pos": 0.059, + "neu": 0.831, + "neg": 0.11, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb0" + } + }, + { + "text": "NEVER TAKE IT EVER UNLESS YOU HAVE NO CHOICE! WEEKLY QUIZZES NO CURVE AND NO HELP!!! EVERYONE FAILS THE TEST", + "pos": 0.0, + "neu": 0.601, + "neg": 0.399, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb1" + } + }, + { + "text": "SO HARD!!!! NO CURVE!!!", + "pos": 0.0, + "neu": 0.273, + "neg": 0.727, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb2" + } + }, + { + "text": "Very insightful and difficult teacher. She knows the material very well and is always ready to explain things in class and during office hours. But she has no method, Never grade assigments, late documents uploads for class. always rushing with the slides, giving hard project and homework. *Avoid this course*", + "pos": 0.112, + "neu": 0.733, + "neg": 0.155, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb3" + } + }, + { + "text": "Very insightful professor. She knows the material very well and is always willing to explain things in class and in office hours.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb4" + } + }, + { + "text": "Quizzes every week, takes attendance everyday, gives super hard homework and tests designed to fail half the class! I got so lucky to pass with a D", + "pos": 0.219, + "neu": 0.644, + "neg": 0.137, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d7cd60fca157e5abb7" + }, + "professor_name": "Isabel Estrada", + "rating": 3.2, + "department": "Spanish department", + "comments": [ + { + "text": "She is caring and goes above and beyond for her students. She gives clear feedback and allows you to do revisions. She makes you feel comfortable to make mistakes especially if you are not a native speaker. Take this professor if you want to learn Spanish, she is also very resourceful in terms of scholarship and fellowship opportunities.", + "pos": 0.193, + "neu": 0.77, + "neg": 0.037, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb8" + } + }, + { + "text": "I wouldn't recommend selecting this professor. She is a nice person but her class can be quite tough especially if you don't have good reading comprehension. Her essays are quite difficult since the prompts aren't too specific.", + "pos": 0.043, + "neu": 0.72, + "neg": 0.237, + "_id": { + "$oid": "6711d3d7cd60fca157e5abb9" + } + }, + { + "text": "She uses many methods to help her students understand the material. She's kind and helpful though the workload may be heavy it is manageable. Just study the work in class for quizzes and tests because sometimes the same activities we did in class showed up on the tests. She made learning spanish enjoyable.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5abba" + } + }, + { + "text": "She's pretentious, gives an unreasonable amount of work, and it doesn't seem like she wants anyone to pass her class. I would steer clear of this teacher, she made me consider dropping out of college.", + "pos": 0.069, + "neu": 0.875, + "neg": 0.056, + "_id": { + "$oid": "6711d3d7cd60fca157e5abbb" + } + }, + { + "text": "Although there is a lot of work required for this class and you must read the textbook to pass, Estrada is a really great professor if you give her a chance and try. Was always willing to answer any questions and was available out of class. STUDY for the exams because they will be more difficult then you would expect.", + "pos": 0.097, + "neu": 0.861, + "neg": 0.042, + "_id": { + "$oid": "6711d3d7cd60fca157e5abbc" + } + }, + { + "text": "She is a really good Spanish teacher. Study and do your work.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d3d7cd60fca157e5abbd" + } + }, + { + "text": "DO NOT TAKE THIS PROFESSOR, she was terrible lots of online hw, quizes are very difficult, midterm was ridiculous, final was awful, she can not teach period. Do yourself a favor and pick another teacher.", + "pos": 0.061, + "neu": 0.68, + "neg": 0.258, + "_id": { + "$oid": "6711d3d7cd60fca157e5abbe" + } + }, + { + "text": "She is an awesome professor but if you want to get an A you have to work hard and with dedication", + "pos": 0.169, + "neu": 0.763, + "neg": 0.068, + "_id": { + "$oid": "6711d3d7cd60fca157e5abbf" + } + }, + { + "text": "She is the WORST professor ever. She was not able to answer students' questions and you could see in her face that she did not know what to say. She expected us to understand what she wasn't even able to explain. You can get straight As during the whole semester but if you don't get a good grade on the final exam she will mess up your final grade", + "pos": 0.019, + "neu": 0.858, + "neg": 0.122, + "_id": { + "$oid": "6711d3d7cd60fca157e5abc0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d8cd60fca157e5abc2" + }, + "professor_name": "Jeffrey Miller", + "rating": 4.3, + "department": "Biology department", + "comments": [ + { + "text": "Good professor. Straight to the point and very helpful. As long as you read and study daily you should be fine. He is also very organized.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abc3" + } + }, + { + "text": "No homework, curves exam grades, but test is not easy. Got an A+, but would've failed if didn't read textbook. MUST read the textbook. THE most helpful, hard-working prof: I got sick & really behind and he spent hours helping me. Answers emails and schedules extra review session before each exam.", + "pos": 0.106, + "neu": 0.687, + "neg": 0.208, + "_id": { + "$oid": "6711d3d8cd60fca157e5abc4" + } + }, + { + "text": "Best bio prof in CCNY. he doesnt make life hard. study the textbook and take a fair exam. he is not easy if you dont study because apparently there are people who do get bad grades in his class. hes very straight up with exams.", + "pos": 0.182, + "neu": 0.71, + "neg": 0.108, + "_id": { + "$oid": "6711d3d8cd60fca157e5abc5" + } + }, + { + "text": "He is a very good professor. his exams are straight up. if you study the book you will do very well. he is also very helpful when you ask for help. A+ is possible if you work for it.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abc6" + } + }, + { + "text": "I don't know why people are hating on him. He's a fair grader and he's very helpful actually. Always answers emails and has great office hours. Tests are fair, and he's very interactive with students. He should be the department chair at City. He made me more interested in Bio than I was originally. Great professor, great asset to City. A+", + "pos": 0.315, + "neu": 0.644, + "neg": 0.041, + "_id": { + "$oid": "6711d3d8cd60fca157e5abc7" + } + }, + { + "text": "Yes he reads off his slides, but he's very helpful if you go and ask him for help. He's nice and he cares about his students. I don't regret taking his class.", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abc8" + } + }, + { + "text": "There is no point in him teaching. He has no interest in teaching and he reads off powerpoints verbatim. He does not go out of his way for his students and IS NOT helpful. His class is an easy A only if you read the textbook.", + "pos": 0.056, + "neu": 0.809, + "neg": 0.135, + "_id": { + "$oid": "6711d3d8cd60fca157e5abc9" + } + }, + { + "text": "easy A if you excel the textbook, his lectures aren't that helpful...exams are quite easy..:)", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d8cd60fca157e5abcc" + }, + "professor_name": "Sarah Lucie", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "So easy, no need to bring a notebook. She's so passionate about theatre that she tries to see the theatre in everyone which makes her lenient when grading papers. We have quizzes, that are about long plays/articles and 2 group projects. The only thing that sucks is that we have to watch 3 CCNY plays", + "pos": 0.178, + "neu": 0.747, + "neg": 0.076, + "_id": { + "$oid": "6711d3d8cd60fca157e5abcd" + } + }, + { + "text": "she is the cutest and sweetest prof I have ever seen, very caring and ready to help you. quizzes are very easy and exams too. she will tell you before the midterm what you will be given in the exam.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abce" + } + }, + { + "text": "She is the sweetest professor you will ever have. She is an easy A if you attend class and do the readings before class. Quizzes are easy if you read, two group projects and just two essays and a final essay based on a broadway show. She is always there to help and willing to work with you. Amazing professor!", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abcf" + } + }, + { + "text": "Not hard to get an A. Just participate once in a while by reading the assignment the night before. Read the play she assigns before each quiz (she gives around 11 and drops the lowest grade). Don't worry the quizzes are only 10 questions and are fairly simple. The quizzes just check if you read or not. She is extremely caring! She's ready to help!", + "pos": 0.205, + "neu": 0.761, + "neg": 0.034, + "_id": { + "$oid": "6711d3d8cd60fca157e5abd0" + } + }, + { + "text": "Highly recommend her she is AMAZING. She is easy to talk to and accessible outside of class. She does give a good amount of hw, quizzes, and readings but they are enjoyable. Take her she is really nice, caring, and her papers are a pleasure to wite as well as the plays.", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abd1" + } + }, + { + "text": "Great professor. Assigns readings that can be sometimes tedious but are overall easy. Learned a lot from her, take her.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abd2" + } + }, + { + "text": "Professor Lucie is so awesome! She is intelligent and will teach you so much about Theater! You get to go watch the school plays and read about some interesting contributors to acting. Classes are fun and interactive. You do some group work but the group assignments are really cool!!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abd3" + } + }, + { + "text": "She is so awesome, sweet, funny and an amazing professor overall. She helped me learn a lot about the history of theatre and it's developement. I would definitely recommend her 3 3", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d3d8cd60fca157e5abd4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d9cd60fca157e5abd6" + }, + "professor_name": "Sefu \u2014", + "rating": 4.8, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "This man is goated. Sexy as well", + "pos": 0.524, + "neu": 0.476, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abd7" + } + }, + { + "text": "This class is so free yo", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abd8" + } + }, + { + "text": "W !!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abd9" + } + }, + { + "text": "Sefu Carried!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abda" + } + }, + { + "text": "Best professor in the world, carried the whole class with the notes and the homeworks!!!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abdb" + } + }, + { + "text": "notes carried the entire class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abdc" + } + }, + { + "text": "Be ready to take notes. But other than that, the tests are basically the notes. One of the better 208 professors at CCNY.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abdd" + } + }, + { + "text": "Amazing professor. Great notes! Sefu carried!", + "pos": 0.68, + "neu": 0.32, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abde" + } + }, + { + "text": "W", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abdf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d9cd60fca157e5abe1" + }, + "professor_name": "Oxana Alvarez", + "rating": 3.7, + "department": "Spanish department", + "comments": [ + { + "text": "Really helpful and caring", + "pos": 0.766, + "neu": 0.234, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe2" + } + }, + { + "text": "Professor Oxana is so sweet. Her class was SUPER easy, if you are ever confused she makes it a priority to help you understand the content. class is taught in Spanish, but she speaks very slowly & would speak in English if she is going to say something difficult. Homework every week, easy but tedious, shes very lenient on due date and extra credit!", + "pos": 0.247, + "neu": 0.691, + "neg": 0.062, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe3" + } + }, + { + "text": "First seems tough, but she gets easy. Gives extra credit and group work, and many chances to get an A. Awesome professor.", + "pos": 0.453, + "neu": 0.51, + "neg": 0.037, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe4" + } + }, + { + "text": "Took Professor Alverez for my last semester of Spanish, based on her RateMyProfessor ratings. She is amazing, funny, and easy grader. Not an easy A, she'll make you work, but the workload is not unbearable. I would recommend her if you can take her, most of the homework were easy online exercises. Fair grader, and you'll learn somewhat decently.", + "pos": 0.233, + "neu": 0.742, + "neg": 0.024, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe5" + } + }, + { + "text": "She's a great professor and she helped me become a stronger writer. I can see where some students concerns are if they are not a native spanish speaker. However, you cannot learn a language if you do not immerse yourself in the language. She is always welcome to questions. If you are afraid to ask in class, she is super helpful during office hours!", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe6" + } + }, + { + "text": "Prof. Alvarez makes Spanish very difficult. She spoken in Spanish 95% of the time and a lot of the class was confused. Homeworks are long. Participation is a part of your grade. Written assignments at the end of each chapter in the textbook. No study sheet for exams. And exams are very difficult. You must put in a lot of time for this class. AVOID.", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe7" + } + }, + { + "text": "She looked like she was new to teaching. If I learned something new in this class is because I looked up online. Everytime we had a question she couldn't answer it without looking at the dictionary or emailing the authors of the textbook.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe8" + } + }, + { + "text": "Prof Alvarez is one of the best Spanish profs I've had at a CUNY college and was dedicated to her students. However, she came across as being very new to the teaching profession. She taught straight from the textbook (reading from it in class) and was often as lost as the students when questions arose. Nevertheless, I've had much worse.", + "pos": 0.131, + "neu": 0.791, + "neg": 0.078, + "_id": { + "$oid": "6711d3d9cd60fca157e5abe9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3d9cd60fca157e5abeb" + }, + "professor_name": "Paola Bellosta", + "rating": 3.7, + "department": "Biology department", + "comments": [ + { + "text": "She was clear and helpful. too bad she is not teaching this semester", + "pos": 0.286, + "neu": 0.529, + "neg": 0.185, + "_id": { + "$oid": "6711d3d9cd60fca157e5abec" + } + }, + { + "text": "she was the worst biology professor i ever had. she pronounced almost all the words wrong. she skipped so much stuff and chapters saying oh don't worry about it. the only reason i did good in the class was because of the ap biology i took in high school. i really feel bad for the people who had trouble with the material because she didn't help at a", + "pos": 0.065, + "neu": 0.742, + "neg": 0.194, + "_id": { + "$oid": "6711d3d9cd60fca157e5abed" + } + }, + { + "text": "Taught this class for the first time this semester. Students were all really lost at first, but she is very open to feedback, and the coursework/exams got more reasonable after the first part. Very sweet, and courseload is not bad at all. MUST use the text to study for exams.", + "pos": 0.144, + "neu": 0.824, + "neg": 0.032, + "_id": { + "$oid": "6711d3d9cd60fca157e5abee" + } + }, + { + "text": "Taught this class for the first time this semester. Students were all really lost at first, but she is very open to feedback, and the coursework/exams got more reasonable after the first part. Very sweet, and courseload is not bad at all. MUST use the text to study for exams.", + "pos": 0.144, + "neu": 0.824, + "neg": 0.032, + "_id": { + "$oid": "6711d3d9cd60fca157e5abef" + } + }, + { + "text": "your the best", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abf0" + } + }, + { + "text": "Very smart, but sometimes is too difficult to follow. She answers your questions clearly and she knows her topic well. I definitely recommend her!", + "pos": 0.418, + "neu": 0.493, + "neg": 0.089, + "_id": { + "$oid": "6711d3d9cd60fca157e5abf1" + } + }, + { + "text": "Super", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3d9cd60fca157e5abf2" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3d9cd60fca157e5abf3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dacd60fca157e5abf5" + }, + "professor_name": "Angie Balsamo", + "rating": 4.5, + "department": "Speech department", + "comments": [ + { + "text": "She is an excellent teacher. She makes everything very clear. She makes class entertaining. And most of all, she makes sure you are very comfortable when giving your speeches. I really hope you get her for a speech teacher!", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5abf6" + } + }, + { + "text": "She is a good Professor. She can be strict at times, but its for your best in doing well in the class.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5abf7" + } + }, + { + "text": "She's a great teacher. Whatever she goes over in class will be on the quiz,which makes it easy to get a good grade. She makes class intresting and at the end of the class you will have overcomed your fear of public speaking.", + "pos": 0.19, + "neu": 0.749, + "neg": 0.061, + "_id": { + "$oid": "6711d3dacd60fca157e5abf8" + } + }, + { + "text": "she is nice qood prof but qoes a bit 2 hard on the grading", + "pos": 0.123, + "neu": 0.774, + "neg": 0.103, + "_id": { + "$oid": "6711d3dacd60fca157e5abf9" + } + }, + { + "text": "SHE'S GREAT. She's amazing, if your afraid of giving a speech shes the teacher for you. she helps make it easier and helps you how to act infront of an audience, how to talk and stand. She makes class very fun, just by how she is. if you fail her class theres a problem there. i enjoyed going to her class as will you.", + "pos": 0.301, + "neu": 0.627, + "neg": 0.072, + "_id": { + "$oid": "6711d3dacd60fca157e5abfa" + } + }, + { + "text": "Angie is a really great instructor to have for speech. She brings her personal skills and applies them to the speech making process (as you'll see with voice day). She's pretty fair on grading and flexible in some circumstances.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5abfb" + } + }, + { + "text": "Mrs. Angie is a good teacher. She requires you to work hard to get a decent grade. If you compare her to other speech instructors, I'ould say she's preety tough. Expect to take quizzes along with the 4 speeched you have to take during the semester.", + "pos": 0.059, + "neu": 0.881, + "neg": 0.059, + "_id": { + "$oid": "6711d3dacd60fca157e5abfc" + } + }, + { + "text": "There is a bit of reading but its a small book. She does a few classes that are active which was fun. The speeches are not hard you just have to do your part. Great class!! Really enjoyed it.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5abfd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dacd60fca157e5abff" + }, + "professor_name": "Antoine Rideau", + "rating": 4.6, + "department": "French department", + "comments": [ + { + "text": "Nice and funny guy who's always willing to help you out, good at what he does and making learning French easier for everyone.", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac00" + } + }, + { + "text": "Amazing Proffesor with a very friendly personality. He is also a graduate student and really communicates with the students. He is from UK and France and can speak Spanish as well. I would recommend him to anyone. He helps one to learn.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac01" + } + }, + { + "text": "Awesome professor. So cool + fun. Really knows his stuff, and is very understanding. Absolutely a must. Take him!", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac02" + } + }, + { + "text": "Super nice, good teacher, and very attractive - all of which directly increased my attendance. As a result, my French significantly improved.", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac03" + } + }, + { + "text": "Really cool guy. Compelling personality. Definitely hot and nice to look at. He used to look at me and compliment my clothes, lol. He's a pretty sharp dresser, too. Class was good and he made learning French language, culture and literature fun and interesting.", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac04" + } + }, + { + "text": "Very knowledgeable in french literature and culture. A kind and understanding professor who wants you to learn. It helps getting through the gritty grammar when he makes things humorous.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac05" + } + }, + { + "text": "Class is always fun...he is easy to get along with...highly recommend him...", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac06" + } + }, + { + "text": "He is the best....very cool and funny...take him....", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac07" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dacd60fca157e5ac09" + }, + "professor_name": "Andrea Fernandez", + "rating": 5, + "department": "Spanish department", + "comments": [ + { + "text": "I've taken several courses on Spanish culture with La Fernandez and every time I make new connections. Be warned, though. SPA451 with her is THE capstone, containing history, literature, civil law, art, and architecture all with discipline-specific vocabulary. You'll memorize a lot though but it's worth it.", + "pos": 0.048, + "neu": 0.92, + "neg": 0.032, + "_id": { + "$oid": "6711d3dacd60fca157e5ac0a" + } + }, + { + "text": "Professor Fernandez makes the material really easy to understand and also gives good feedback on your papers. She is very smart too. YOU WILL NOT REGRET TAKING HER CLASS!!!!", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac0b" + } + }, + { + "text": "Unas de las mejores entre los maestros que he tenido en City College. La profesora Fern\u00e1ndez siempre est\u00e1 dispuesta a ayudar. Me encanta su sentido del humor. Es muy inteligente.", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac0c" + } + }, + { + "text": "Systematic and organized. Really helped me write better papers.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac0d" + } + }, + { + "text": "shes a lovely professor, well prepared.. she knows what she is doing and knows her material. I highly recommend you taking any of her class.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac0e" + } + }, + { + "text": "Smart, amazing,easy going, outstanding and outshining professor. I mean what more can you ask for a professor?... The class requires a lot of memorization but she makes the material easy to understand. I don't know what the department is waiting for making her a full-time professor? Professor Fernandez deserve that and more...... SHE ROCKS!", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac0f" + } + }, + { + "text": "First, she's amazing, unlike any other professor you've ever had in a good way. Makes jokes, breaks it down barney style, ma cool but still professional. I would say she's a lenient grader and gives extra credit so there's no reason for you to fail this class. Plus she's cute ;]", + "pos": 0.284, + "neu": 0.599, + "neg": 0.116, + "_id": { + "$oid": "6711d3dacd60fca157e5ac10" + } + }, + { + "text": "It is lot of work at first but she builds on previous material throughout the semester. You will know so much about universal literature, not just Latin America! 5 quizes, 3 MLA essays and a final exam. Love the PwPs. If she's this smart in her 20s, imagine when she's 40. Es un amor.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d3dacd60fca157e5ac11" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dbcd60fca157e5ac13" + }, + "professor_name": "Joshua Cohen", + "rating": 3.5, + "department": "Art department", + "comments": [ + { + "text": "Cohen is a solid professor and makes the topic interesting but is a harsh grader. Your grades are based heavily on your two exams and the final paper. He does not like latecomers and you can't miss class. Do not take him if you expect an easy A to fulfill your gen ed credit.", + "pos": 0.233, + "neu": 0.672, + "neg": 0.095, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac14" + } + }, + { + "text": "Took him for a graduate course. Is a difficult grader but fair. Accessible during office hours. Participation is definitely a must.", + "pos": 0.248, + "neu": 0.686, + "neg": 0.067, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac15" + } + }, + { + "text": "Professor Cohen is not an easy A but his lectures are awesome. I actually like the textbook a lot as well. He just wants you to participate and show up on time and pay attention. He cares about his students and treats everyone fairly. I really like him, he's a tough grader but seems to want everyone to succeed, overall positive experience!", + "pos": 0.35, + "neu": 0.591, + "neg": 0.059, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac16" + } + }, + { + "text": "This should be a grad level class, with pre-reqs. Super guy; I liked him. Made bound course reader for each of us, so no book to buy. Talks very rapidly and goes on confusing tangents at times. Don't take him if English isn't your first language. Fascinating class, just too big in scope. I'd take him for Intro to African Art or Harlem Renaissance.", + "pos": 0.138, + "neu": 0.798, + "neg": 0.064, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac17" + } + }, + { + "text": "Really enjoyed this class. Professor Cohen is cool, helpful and interesting to listen to. He states very clearly what's expected from you. If you pay attention in class, you won't have a problem passing midterm and final. The research paper was a bit tricky. This is NOT an easy \"A\" class but you will learn a lot. Also,DO NOT BE LATE to this class!", + "pos": 0.164, + "neu": 0.777, + "neg": 0.059, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac18" + } + }, + { + "text": "He is a very tough grader and his class is very hard. Only take him if you write and read very well otherwise you will be very disappointed of your grade. I really mean it. He will not bother giving you an F. There is alot in this course to cover so don't slack off. I absolutely don't recommend him to students whose native language is not english.", + "pos": 0.058, + "neu": 0.795, + "neg": 0.147, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac19" + } + }, + { + "text": "I absolutely don't recommend him at all for any class. He will punch the biggest nail in your GPA. Avoid at all costs!", + "pos": 0.0, + "neu": 0.811, + "neg": 0.189, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac1a" + } + }, + { + "text": "Professor Cohen is one of the best art history professor! extremely knowledgable and explain everything specifically. If you want to learn something seriously take his class. If you just want an easy art history class for credit then don't. A lot of readings are expected,not easy readings.2 papers whole semester related to the readings.", + "pos": 0.241, + "neu": 0.732, + "neg": 0.026, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac1b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dbcd60fca157e5ac1d" + }, + "professor_name": "Maria Plochocki", + "rating": 2.3, + "department": "English department", + "comments": [ + { + "text": "She works with the students, will give you feedback for your drafts which will help to do the final papers. Her lectures helps doing the papers. Would recommend to participate, it helps moving the class along with her lecture.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac1e" + } + }, + { + "text": "She has a squeaky voice and it's really annoying. She says, mhm, and yep a lot. She gives so many papers and it's annoying. She speaks using way too of higher vocabs and it's hard to understand her sometimes. The only good thing about her is, she'll give back your paper with good feedbacks and you can resubmit them for better grades.", + "pos": 0.149, + "neu": 0.753, + "neg": 0.097, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac1f" + } + }, + { + "text": "VERY tough grader. Getting an A is not impossible, but requires so much work. Don't take her if all you're looking for is a grade. Four major assignments. Many opportunities for resubmissions and such, but even then it's a lot of work. A lot of time in class is spent working on your own papers though which is nice.", + "pos": 0.115, + "neu": 0.858, + "neg": 0.027, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac20" + } + }, + { + "text": "She is a very compassionate human being", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac21" + } + }, + { + "text": "She took forever to grade papers so I never knew what grade I had. She is disorganized and knows it (she misplaced one of my assignments!) She seemed like a very sweet but lectures were boring and time seemed to drag on. It was a lot of work that didn't seem helpful to my major OR to my writing in general. Got my first C ever in her class.", + "pos": 0.051, + "neu": 0.817, + "neg": 0.132, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac22" + } + }, + { + "text": "Should of listened to the other reviews. Professor is all over the place, not clear on when things are due or what she wants you to do. Very harsh grader. In my entire college career I have never received anything less than an A- on a paper but I have received B-'s on simple assignments. I thought other reviews were exaggerating. DO NOT TAKE!", + "pos": 0.0, + "neu": 0.91, + "neg": 0.09, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac23" + } + }, + { + "text": "Isn't clear with expectations or deadlines, late with handing assignments back, overall bad experience.", + "pos": 0.0, + "neu": 0.679, + "neg": 0.321, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac24" + } + }, + { + "text": "The expectations are very high from someone that doesn't provide clear feedback. Also isn't a very engaging professor and can't keep the class captivated because it's so boring. Expect long awkward moments of silence. Do not take a course with this professor.", + "pos": 0.053, + "neu": 0.761, + "neg": 0.186, + "_id": { + "$oid": "6711d3dbcd60fca157e5ac25" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dccd60fca157e5ac27" + }, + "professor_name": "Michael Salwen", + "rating": 3.2, + "department": "Mathematics department", + "comments": [ + { + "text": "Took 2 classes with Salwen and enjoyed both. He expects you to read the textbook and bring questions back to class, which is perfectly reasonable at the graduate level. Made himself extremely available for questions, via office hours and email. He might slightly favor students that actually put forth effort and work hard to understand the material.", + "pos": 0.154, + "neu": 0.824, + "neg": 0.022, + "_id": { + "$oid": "6711d3dccd60fca157e5ac28" + } + }, + { + "text": "I had Dr. Salwen for many years, in many subjects. One of the best professors out there. Those who complain want an easy way out. You people should grab a book and go to literature class, because clearly math is not for you. But even if it isn't Dr. Salwen will try his best to teach you IF, IF you want to learn.", + "pos": 0.204, + "neu": 0.772, + "neg": 0.024, + "_id": { + "$oid": "6711d3dccd60fca157e5ac29" + } + }, + { + "text": "Aims to fail NYCTF. Stay away. He should be bought up on charges for his seemly deliberate attempts to harm the academic careers of many students within the Mathematics Education program.", + "pos": 0.0, + "neu": 0.755, + "neg": 0.245, + "_id": { + "$oid": "6711d3dccd60fca157e5ac2a" + } + }, + { + "text": "Horrible professor and thinks too much of himself.", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d3dccd60fca157e5ac2b" + } + }, + { + "text": "I found Prof. Salwen to be different from most of the professors I have had. He is very math oriented and I was able to learn some math in his class. He was open to questions. He was serious about teaching math and getting us ahead. He seems to have very solid ideas abotu math. I thought he was great. I recommend him for any math class! seriously.", + "pos": 0.117, + "neu": 0.842, + "neg": 0.04, + "_id": { + "$oid": "6711d3dccd60fca157e5ac2c" + } + }, + { + "text": "he's definitely \"mathy\", which might make it hard for some to keep up, but he's extremely approachable. class time is dedicated to addressing student questions regarding assigned reading and h.w. problems, so if you try to get by without doing the work, expect to fail. all tests were open book (again, not helpful if you never look at it -- duh).", + "pos": 0.08, + "neu": 0.75, + "neg": 0.17, + "_id": { + "$oid": "6711d3dccd60fca157e5ac2d" + } + }, + { + "text": "i am just warning anyone who takes this guy's class. i had him in HS for Math B and Pre-Calculus. In Math B, he was teaching us about Gates (a concept from Electrical Engineering, which is my Major @ CCNY). I Highly Recommend you not take this guy's class because its so confusing. This was my experience from HS...Bard HS Early College.", + "pos": 0.042, + "neu": 0.885, + "neg": 0.073, + "_id": { + "$oid": "6711d3dccd60fca157e5ac2e" + } + }, + { + "text": "Nice Guy but BOR-RING. Impossible to understand, grading system is bizarre.", + "pos": 0.137, + "neu": 0.65, + "neg": 0.213, + "_id": { + "$oid": "6711d3dccd60fca157e5ac2f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dccd60fca157e5ac31" + }, + "professor_name": "Norman Perlmutter", + "rating": 2.2, + "department": "Mathematics department", + "comments": [ + { + "text": "This is a great professor to take if you actually want to learn Calculus. He tries to give you a real understanding of the concepts rather than just memorizing procedures. Unfortunately most students taking Calc 1 at CCNY are not academically mature and blame the professor for not letting them squeak by. If you work hard you will get an A.", + "pos": 0.078, + "neu": 0.798, + "neg": 0.124, + "_id": { + "$oid": "6711d3dccd60fca157e5ac32" + } + }, + { + "text": "Excellent teacher for those who are interested in math as a discipline, not just a series of problems. Not the right one if you just want an easy pass. Deeper teacher for the aggressive student.", + "pos": 0.241, + "neu": 0.661, + "neg": 0.098, + "_id": { + "$oid": "6711d3dccd60fca157e5ac33" + } + }, + { + "text": "if you ask him a question he looks at you like an idiot...does not know how to teach, you might as well just read the text book and learn on your own", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac34" + } + }, + { + "text": "This class was not extremely hard but its true the majority of the people dropped this class. He does give you a chance to make up some quizzes so it's not that bad, but if you want to get an A+ either change classes or eat breathe and sleep the text.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac35" + } + }, + { + "text": "If your planning to pass in his class make sure u sleep and eat with the textbook. if you cant do ALL the problems in the textbook then dont expect to get above a 60. Dont take his class, you wont learn from him.", + "pos": 0.049, + "neu": 0.894, + "neg": 0.057, + "_id": { + "$oid": "6711d3dccd60fca157e5ac36" + } + }, + { + "text": "We started the class with 30-35 students. During the end of the semester only 15 kids stayed, and everyone else dropped the class. Out of those 15 kids only few passed the course, and they passed with C's and C+'s. Now you do the mat.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac37" + } + }, + { + "text": "It's not hard for me to understand math concepts, but with this teacher it was impossible! I felt like I was in a Phd level calc class :( . I ended up dropping his calss because I found it impossible to understand and pass. I don't recommend taking this professor, unless you are ready for a challenging stressful semester.", + "pos": 0.131, + "neu": 0.714, + "neg": 0.155, + "_id": { + "$oid": "6711d3dccd60fca157e5ac38" + } + }, + { + "text": "If u end up with him transfer out as soon as u can. His tests are incapable of possibly passing 60s for someone who's taken calculus 1 for this first time and they're about twice as long as the final itself. He rarely teaches. Only plus side is the final will look like heaven after u go thru his class so u might get a high grade which is 40%", + "pos": 0.077, + "neu": 0.889, + "neg": 0.034, + "_id": { + "$oid": "6711d3dccd60fca157e5ac39" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dccd60fca157e5ac3b" + }, + "professor_name": "Herb Boyd", + "rating": 4.8, + "department": "African-American Studies department", + "comments": [ + { + "text": "Amazing professor. Very inspirational. He likes to take his classes outside of the classroom. Just participate once in a while and do the work he wants you to do (probably a summary of a movie or an opinion piece) and you WILL get an A.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac3c" + } + }, + { + "text": "Herb Boyd... take him if you ever get the chance. I haven't even finished the semester and I'm here grading him. He's amazing. Very knowledgeable and a true inspiration. Has you read newspapers and wants you to do these short \"journals\" on them. One \"big\" paper which he gives you the entire semester to write. Other than that, easy GPA boost.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac3d" + } + }, + { + "text": "He is Amazing.", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac3e" + } + }, + { + "text": "If you ever get a chance to take any of his classes you will be in for a treat. Prof. Boyd is absoulutely AWESOME adn will teach you what you need to know in the area of BLST. Leaving his class fully aware and excited! you have to honestly put in effort if you get lower than a B, as he is so lenient with grading.", + "pos": 0.23, + "neu": 0.743, + "neg": 0.028, + "_id": { + "$oid": "6711d3dccd60fca157e5ac3f" + } + }, + { + "text": "one of the best in ccny like others said he does have papers in every meeting but only met saturdays. you do not have to be punctual with papers he will give you time until the end of the semester and the 10 pg paper is not that hard once your info is put together", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac40" + } + }, + { + "text": "Very interesting professor. I learned a lot in his class this summer. I would take him again if I had the opportunity. Very punctual, clear & really cares about the students. I strongly recommend if you are a Black Studies major.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac41" + } + }, + { + "text": "Easy to fllow syllabus adn you don't have to stick to deadlines on papers. Just keep up with the readings and class participation goes a long way. Will respond to emails quickly and give any info needed. Also great prof to know, wrote over 15 books and still a journalist too.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac42" + } + }, + { + "text": "He is ok. But You will need to write alot of papers. the last one is 10 pages and the others consist of mini two page paper: every meeting.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3dccd60fca157e5ac43" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ddcd60fca157e5ac45" + }, + "professor_name": "Vincent Pauchard", + "rating": 1.8, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Easiest A in the BME curriculum. Made me want to put my head in a plastic bag, making sure to eliminate air supply, and evaluate the boundaries! Overall rating: 5/7 would take daddy Pauchard again. Easy A+, sympathetic, and really made the material understandable! When people talk about the greats; they think Ghandi or Mandela. I think: Pauchard.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac46" + } + }, + { + "text": "RUN! DO NOT TAKE! AVOID! HORRIBLE! HORRIBLE!", + "pos": 0.441, + "neu": 0.298, + "neg": 0.261, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac47" + } + }, + { + "text": "He is the reason che passing criteria was changed to d from c. If the whole class repeats graduation would be pushed back by a year with 500 che students cramped in a tiny lawn.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac48" + } + }, + { + "text": "Make sure you understand everything he taught from last lecture, and he expects you to know everything he taught from pass lecture, and the homework questions are unclear.", + "pos": 0.076, + "neu": 0.858, + "neg": 0.066, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac49" + } + }, + { + "text": "Make sure you read the book. You don't have to go to the lectures, because he is very confusing. Not much homework. Exams are short and will make you think (don't expect something like the hw). I think he is fair grading. He will take your best exam and also curve it. He is though, but you have to do you part too!(Be nice to him!) Good luck!", + "pos": 0.225, + "neu": 0.736, + "neg": 0.039, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac4a" + } + }, + { + "text": "You don't really need to go to the lecture because it's pointless. His exams are difficult and he expects the students to understand everything. Talk to him a lot and ask question, and make him remember your name, it helps.", + "pos": 0.06, + "neu": 0.882, + "neg": 0.058, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac4b" + } + }, + { + "text": "He is not a great professor and doesn't really care if his student's understand the material. The course material is not that hard once you grasp it, but he makes it harder than it is. This class has recitation sessions (outside of class time) which helped way more than the lectures. I used the internet (google, youtube), and textbook to learn.", + "pos": 0.018, + "neu": 0.917, + "neg": 0.064, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac4c" + } + }, + { + "text": "worse professor ever taken", + "pos": 0.0, + "neu": 0.492, + "neg": 0.508, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ddcd60fca157e5ac4f" + }, + "professor_name": "Yan Zhao", + "rating": 4.9, + "department": "Finance department", + "comments": [ + { + "text": "14 discussion boards (1 per week), midterm, final, and group project. just do all the work & you should pass. replies pretty fast to emails which is a plus.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac50" + } + }, + { + "text": "Weekly discussion boards which are super easy, midterm and final. There is a group project due by the end of the semester, which is eh. She pre-records and uploads the materials and lectures (on YouTube). Doesnt really respond to emails. I recommend her tho.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac51" + } + }, + { + "text": "Super nice professor and easy going. 14 discussions throughout the semester. Midterm & Final. Group project is a drag, but just do it ahead of time and you'll be fine.", + "pos": 0.243, + "neu": 0.715, + "neg": 0.041, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac52" + } + }, + { + "text": "Professor Zhao's class has a midterm and a final exam that are very easy to pass and you just have a group project to do at the end of the semester. All of her lectures are pre-recorded on YouTube and she gives problem sets for you to do every chapter. If you want to boost up your GPA take her class, it's very easy to pass just put in the work.", + "pos": 0.131, + "neu": 0.835, + "neg": 0.034, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac53" + } + }, + { + "text": "Weekly assignment on discussion board, two exam, and a group project. Group project may be little drag, but exam and discussion board assignment is easy. Take her if you want relaxed class.", + "pos": 0.247, + "neu": 0.72, + "neg": 0.034, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac54" + } + }, + { + "text": "Great professor, she is quick to respond to any questions you may have. There are two exams, a group project, and weekly discussion board posts. She provides material for the class which is very helpful.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac55" + } + }, + { + "text": "She is a really caring person and tries to help out students. Put some effort every week and you should be able to do well in her class.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac56" + } + }, + { + "text": "She was the best! One midterm and one final and one group project which is easy. Definitely Recommended.", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d3ddcd60fca157e5ac57" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3decd60fca157e5ac59" + }, + "professor_name": "Teofilo Reis", + "rating": 4.9, + "department": "Philosophy department", + "comments": [ + { + "text": "Professor Reis is a great professor who cares about his students. There's definitely a lot of reading for this course but the professor makes it understandable during his lecture. There are weekly quizzes and three papers that are very much doable. Participation is important part of your grade. Take this professor if you want an easy A!", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac5a" + } + }, + { + "text": "He was the best professor I ever took. Nice person too. The lectures are insightful and every day you will learn something new. The readings I will say are difficult to read but he explains the reading in the most helpful way. Even though it was online he is very attentive and helps you personally if you don't understand.", + "pos": 0.182, + "neu": 0.792, + "neg": 0.026, + "_id": { + "$oid": "6711d3decd60fca157e5ac5b" + } + }, + { + "text": "One of the best professors I have taken at CCNY. At first I was hesitating to take Philosophy because it doesn't interest me at all. But I learned a lot after taking his class. 2 essays, easy weekly quizzes, and a group project. Lots of opportunities for extra credit as well. The class was really worth it. I highly recommend taking his class.", + "pos": 0.266, + "neu": 0.69, + "neg": 0.044, + "_id": { + "$oid": "6711d3decd60fca157e5ac5c" + } + }, + { + "text": "This guy is an elite. He puts his students first before himself", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac5d" + } + }, + { + "text": "He is awesome. The discussion boards were easy, he loves when students participate in class, he describes the classroom as a safe space. There was only one paper for the entire class, and random easy quizzes. If you have a problem understanding a reading, he'll do his best to help you.", + "pos": 0.339, + "neu": 0.622, + "neg": 0.039, + "_id": { + "$oid": "6711d3decd60fca157e5ac5e" + } + }, + { + "text": "Professor Reis was one of the best professors I've had this year. He is a very lenient grader and in general just a very laid back and cool Professor. You have to do weekly papers every week and quizzes sometimes (all of which are super easy). He gives plenty of opportunities for makeup work too. Just do your work, and you'll get an easy A.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac5f" + } + }, + { + "text": "Professor Reis is a gem. He cares for his students alot. He makes philosophy much more interesting. He assigned weekly readings with weekly reflections. He loves open discussions about the readings and he describes his class as a safe space.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac60" + } + }, + { + "text": "You have to read two articles a week and have a discussion in class about the article. Graded by a 5 page paper and the rough draft for it, weekly reflections on the articles (300 words), random easy quizzes (5 true or false questions), & extra credit. Never does attendance. No exams. Overall easygoing class.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3decd60fca157e5ac63" + }, + "professor_name": "Ali Hocek", + "rating": 2.8, + "department": "Architecture department", + "comments": [ + { + "text": "Unorthodox in multiple senses. Be prepared to get off tangent very frequently. Extremely harsh critiques. Difficult to read and understand. Best of luck!", + "pos": 0.279, + "neu": 0.536, + "neg": 0.185, + "_id": { + "$oid": "6711d3decd60fca157e5ac64" + } + }, + { + "text": "He loved to tell us that our work is C level or D level even if we are trying our hardest. I had a really bad experience with him that led me to have to write a report against him. He loves to tell his students that we aren't architects, therefore we don't know anything we are talking about. Don't take him if you don't have thick skin!", + "pos": 0.103, + "neu": 0.848, + "neg": 0.049, + "_id": { + "$oid": "6711d3decd60fca157e5ac65" + } + }, + { + "text": "Ali can be crude and rude. He can push the wrong buttons. I would not recommend him if you don't have thick skin. He has a weird way of trying to explain or criticize to prove his point but he does have a following.", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d3decd60fca157e5ac66" + } + }, + { + "text": "I wasn't his biggest fan when I had him as a professor, but I learned a lot from him. He treats you like an adult. I learned the importance of diagrams, and the beauty in the process to forming a great design. He can be harsh and a bit of an ass at times but I feel that you will definitely learn a lot from him, you just need thick skin.", + "pos": 0.222, + "neu": 0.67, + "neg": 0.107, + "_id": { + "$oid": "6711d3decd60fca157e5ac67" + } + }, + { + "text": "unable to follow simple lines of thought", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac68" + } + }, + { + "text": "Best professor ever! He is amazing and if you dont take him..you are missing out on a great opportunity.", + "pos": 0.484, + "neu": 0.446, + "neg": 0.07, + "_id": { + "$oid": "6711d3decd60fca157e5ac69" + } + }, + { + "text": "Working constantlly at your project....thats the secret. He wants creativity and clarity in your project. He is not too demanding whe it comes about perfect drawings or modells....except in the finals.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac6a" + } + }, + { + "text": "A very balanced professor, treats you like an adult...", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac6b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3decd60fca157e5ac6d" + }, + "professor_name": "Kiera Bono", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "I had her back in the Spring 2021 Semester. She is amazing. For assignments, we had to do blog posts. She always gave extensions to students for blog posts or schedule a different date for presentation of projects for students than the date she assigns to students. Her papers were wonderful. I worked on Shakespeare's Hamlet for the papers.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac6e" + } + }, + { + "text": "Take her! Sweet. Caring. Lenient grader. Will give you chances to resubmit assignments if you mess up to improve grade. Understanding. There is weekly hw (easy essay 3-5 paragraphs). Weekly readings (Plays and other theater related documents). A partner presentation (research project). A group presentation. 2 papers (1 final and 1 like a midterm).", + "pos": 0.303, + "neu": 0.66, + "neg": 0.037, + "_id": { + "$oid": "6711d3decd60fca157e5ac6f" + } + }, + { + "text": "Very easy class. Do the readings and homework and you will be fine. She is very understanding and kind. No textbook, she shares a google drive and you can print them readings.I really like her!", + "pos": 0.309, + "neu": 0.642, + "neg": 0.049, + "_id": { + "$oid": "6711d3decd60fca157e5ac70" + } + }, + { + "text": "I am taking her class rn. She is an amazing lecturer and overall a great human being. Just read and do the assignments you are good to go. Easy A! I am very happy that I took her and didn't drop the class last moment.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac71" + } + }, + { + "text": "Professor Bono is an amazing lecturer & overall a beautiful human. I took this class as an elective but ended up really enjoying myself. Her grading rubrics were clear and the material was not difficult to grasp if you put in a little effort. The reading is a little heavy but the assignments are super easy. Recommended for an easy A!", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac72" + } + }, + { + "text": "Professor Bono is a real gem. She is very understanding and cares for her students. She gives 3 reflection papers, 2 group projects, and a final paper. She offers extensions and extra credit. I definitely recommend her.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac73" + } + }, + { + "text": "very easy. just read and participate in the class.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d3decd60fca157e5ac74" + } + }, + { + "text": "Professor Bono gives out good energy in her class. She is very understanding and caring. She will do the most if you ask her. She is very relaxing and all she expects from her class is participation (which isn't mandatory). She is worth your time!", + "pos": 0.26, + "neu": 0.717, + "neg": 0.022, + "_id": { + "$oid": "6711d3decd60fca157e5ac75" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dfcd60fca157e5ac77" + }, + "professor_name": "Alfredo Cano", + "rating": 1.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "This is probably the worst prof I have taken for LAB. He takes this one-credit class way to seriously. He does have his favorites. He makes you write a lot of stuff for each LAB. He doesn't really help when you ask for it, instead, he says to look at your LAB outline. I would suggest taking the other prof for this lab.", + "pos": 0.04, + "neu": 0.842, + "neg": 0.118, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac78" + } + }, + { + "text": "Not a good choice for EE's but maybe for CPE's, if you took 344 before this class then you'll have an easier time but if you havent then its best to stick with the other lab professor. Unfortunately, he demands a lot for lab reports for just a 1 credit class, should've guided us through some assembly code for some of the difficult labs.", + "pos": 0.091, + "neu": 0.746, + "neg": 0.162, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac79" + } + }, + { + "text": "I honestly thought the labs itself weren't that bad, its his demeanor that's a problem. He expects you to \"learn\" but doesn't want to point you in the right direction when you ask him questions. Then he wants lab reports that answers all the questions in the lab and then asks you why you didn't ask him questions when you submit them incomplete.", + "pos": 0.059, + "neu": 0.892, + "neg": 0.048, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac7a" + } + }, + { + "text": "He is a lab professor but with some issues. Gets agitated really quickly if you ask questions. Has his way of teaching which is old school, wants you to work really hard for a 1 credit class that isn't that useful but somewhat knowledgeable. Please have time set out for this class because the lab reports/lab itself are a pain only for his class tho", + "pos": 0.076, + "neu": 0.751, + "neg": 0.173, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac7b" + } + }, + { + "text": "Besides the pop quizzes, the final is the worse. I am just lost in words. Lab reports are graded very harshly. Please make sure you send .asm and. hex files separately and not on the lab report. He takes a lot of points if you merge your lab report with the assembly code.", + "pos": 0.082, + "neu": 0.827, + "neg": 0.091, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac7c" + } + }, + { + "text": "Professor Martinez means well but by no means can teach the class properly. I had to consult professor Hoxha for everything and professor Martinez got mad at me for going to him even though he cant explain properly.", + "pos": 0.036, + "neu": 0.802, + "neg": 0.163, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac7d" + } + }, + { + "text": "He will belittle you a lot, so get used to it. It is impossible to do the experiments on your own, as you never really learn how to code. Textbook is awful. It's only a 1Cr course and I promise it'll be your most stressful class because he just places SO much unnecessary pressure on you. He tries to compensate as he really just wants you to learn.", + "pos": 0.03, + "neu": 0.809, + "neg": 0.162, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac7e" + } + }, + { + "text": "Not easy, but also not hard. You have to understand the codes from top to bottom so that you can ace the quizzes. He understands that the course is hard and is willing to help you finish your code. If you show interest in this subject, he will engage in serious and intersting discussions. I would recommend taking him because you learn in his class.", + "pos": 0.224, + "neu": 0.715, + "neg": 0.061, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac7f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dfcd60fca157e5ac81" + }, + "professor_name": "Jeannette Sucre", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Sucre is a very kind professor and passionate about what she teaches. You have to read a book then write a paper on it and do a short class presentation on a case. Her lectures can sometimes be a bit unclear and I wish she would post grades on Blackboard. But the class is straightforward and you can see that she really is trying her best!", + "pos": 0.164, + "neu": 0.816, + "neg": 0.02, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac82" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac83" + } + }, + { + "text": "She's good, her lectures are just a little boring sometimes, but is very passionate about child counseling. There were only three 3-4 page papers, and 1 group presentation on a case study. No quizzes or exams. Just show up to class, participate, do the work, and you'll get an A. She is lenient with grading.", + "pos": 0.151, + "neu": 0.782, + "neg": 0.067, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac84" + } + }, + { + "text": "She's not a bad professor. She's really caring about her students, but a little disorganized. She doesn't really teach in her lectures so you have to rely on the book, but she will be there after hours to help you understand the concepts. This class is a easy A.", + "pos": 0.2, + "neu": 0.76, + "neg": 0.041, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac85" + } + }, + { + "text": "Attendance is mandatory, but you won't learn anything. The textbook will teach you more than the professor (97% material from the textbook and 3% from the professor). She doesn't really answer questions on material and if she does you'll be left with more questions than answers and eventually go off-topic. It's an easy A if you read the textbook.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac86" + } + }, + { + "text": "I though she was a great teacher. At times, she was a little neurotic but was always very helpful. In her class, if you do all the work, come in on time and pass her tests, you should be fine.", + "pos": 0.191, + "neu": 0.775, + "neg": 0.033, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac87" + } + }, + { + "text": "This prof can be a little unclear and unorganized. She is also strict about attendance and lateness. However, to get an A all you have to do is read the book. Tests are straightforward, multiple choice questions and there is one paper.", + "pos": 0.0, + "neu": 0.96, + "neg": 0.04, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac88" + } + }, + { + "text": "i Totally disagree with the previous comment, i had her for theories of personality it was very straight forward class you just gotta study powerpoint and read book, it also helps to visit the student center website of the book to use practice quizzes. theories dont change so just read and ul be fine.", + "pos": 0.111, + "neu": 0.841, + "neg": 0.049, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac89" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3dfcd60fca157e5ac8b" + }, + "professor_name": "Savvas Xanthos", + "rating": 3.6, + "department": "Engineering department", + "comments": [ + { + "text": "This guy sucks, He is too full of himself. I took him back in 05 for heat transfer and CAD. I got good grads, but i don't think he is a good guy are a good prof.", + "pos": 0.217, + "neu": 0.743, + "neg": 0.039, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac8c" + } + }, + { + "text": "HE IS GOOD PROFESSOR ,GOOD HOLD ON THE CAD SOFTWARES,VERY STRICT WITH ASSIGNMENTS,BUT SOMETIMES GIVE F GRADE", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac8d" + } + }, + { + "text": "Fair grader. Focuses too much on ridiculously long theories and formulas and not on actual problem solving. The gives test only on problem solving but he does not care about test results so your fine. Nice guy but way too busy.", + "pos": 0.256, + "neu": 0.611, + "neg": 0.133, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac8e" + } + }, + { + "text": "he is a great prof.", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac8f" + } + }, + { + "text": "a great professor! have him for heat transfer last semester and he is great. demanding yet with reasonable work load. very eager to answer any questions. one of the best teacher in ME department.", + "pos": 0.334, + "neu": 0.625, + "neg": 0.041, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac90" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac91" + } + }, + { + "text": "Very good at reading note from power point slides prepared for his class. Just read. You can learn nothing from him. Studying by yourselves will be good choice. Your grade may vary depending on his mood. The worst Prof. I've ever met.", + "pos": 0.16, + "neu": 0.759, + "neg": 0.082, + "_id": { + "$oid": "6711d3dfcd60fca157e5ac92" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e0cd60fca157e5ac94" + }, + "professor_name": "Hema Mulchand", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "Great class. She is really relaxed and not intimidating (which I find annoying among English teachers). She encouraged class discussion and although I don't usually enjoy that it was a lot of fun in her class.", + "pos": 0.315, + "neu": 0.579, + "neg": 0.106, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac95" + } + }, + { + "text": "This was a great class!! A great place to analyze the world. Highly recommend, if you like to read you will enjoy the material!", + "pos": 0.48, + "neu": 0.52, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac96" + } + }, + { + "text": "Great professor. Take care students. Just follow her instruction and you will get a good grade. I enjoyed having the writing w/ her.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac97" + } + }, + { + "text": "Ms Mulchand is an excellent educator. The workload is manageable. She is very diverse, her choice of readings are extremely interesting. She works well with her students. She loves teaching and she is very good at it!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac98" + } + }, + { + "text": "she is not a good grader.", + "pos": 0.0, + "neu": 0.675, + "neg": 0.325, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac99" + } + }, + { + "text": "Very hot, smart, and good looking professor. If you don't get it with her, you won't get it with anybody else.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac9a" + } + }, + { + "text": "A nice, not to mention very hot, graduate student! Her classes were interesting and she teaches the subject in a way that's easy to grasp and helps improve. Would def recommend to anyone.", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac9b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e0cd60fca157e5ac9d" + }, + "professor_name": "S Foster", + "rating": 3.9, + "department": "Media Arts department", + "comments": [ + { + "text": "Worst professor possible. If you don't agree with his opinions, you will not do well in his class.", + "pos": 0.0, + "neu": 0.651, + "neg": 0.349, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac9e" + } + }, + { + "text": "Really knowledgeable. However, his assignments can be hard and it takes a lot to make him happy with your work. I recommend him if you're not taking other heavy classes.", + "pos": 0.179, + "neu": 0.78, + "neg": 0.04, + "_id": { + "$oid": "6711d3e0cd60fca157e5ac9f" + } + }, + { + "text": "In his class you have to be willing to do the work in order to get a good grade. He's a harsh critic but a very helpful one. He assigns extra credit to help his students do well in the class.", + "pos": 0.295, + "neu": 0.639, + "neg": 0.066, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca0" + } + }, + { + "text": "If you are looking for an easy \"A\" without doing any work than do not take this class, because you will write A LOT. However, if you are willing to put the effort in improving your writing as well as learning with the most compassionate instructor in City College than take this course immediately. He is the greatest, and is always available to help", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca1" + } + }, + { + "text": "Prof Foster is a stickler, but incredibly helpful and has high expectations for his students. Be prepared not only to write, but to write well and critically. He shows a wide range of interesting films and allows for students to get extra credit. Five papers, one midterm, and one final paper 8-10pgs. I would def recommend him.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca2" + } + }, + { + "text": "Prof. Foster is great but you have to be ready to work hard in this class. He explains material thoroughly and is very willing to help if you don't understand something but also expects high performance from his students. He is not an easy grader but you will be receiving helpful feedback all the time. Take his class if you really want to learn!", + "pos": 0.202, + "neu": 0.737, + "neg": 0.061, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca3" + } + }, + { + "text": "this guy is tough but you'll love him. his exams sometimes have very ambiguous questions (i almost failed open book quizzes) but he is very willing to explain things n gets very technical with writing papers, but this helps you to improve your skills.. mla handbook definitely needed...", + "pos": 0.267, + "neu": 0.652, + "neg": 0.082, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e0cd60fca157e5aca6" + }, + "professor_name": "Kelly Aronowitz", + "rating": 4.4, + "department": "Humanities department", + "comments": [ + { + "text": "Kelly was amazing! She is tough and intimidating at first, but she is extremely engaging, quirky and fun. She teaches in an unusual informal way that makes it easy for her students to participate in class! She is tough on attendance and grammar and she expects participation from everyone, but she is a great professor overall!", + "pos": 0.282, + "neu": 0.651, + "neg": 0.067, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca7" + } + }, + { + "text": "This professor has a unique way of teaching, which makes the class very interesting and enjoyable. You must get to class on time, but thats the way it should be, because coming to class late indicates disrespect. She is funny and really does her best to incorporate everybody in class discussions. Be punctual and hard working and the class is easy.", + "pos": 0.233, + "neu": 0.699, + "neg": 0.069, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca8" + } + }, + { + "text": "she was a tough teacher but i enjoyed coming to class everyday because she is hilarious and creative and smart and does a lot of cool activities! Be prepared to think outside the box because she gives a lot of credit for that. grammar is super important, so revise, revise, revise. a lot of readings so read bc she picks on random people! good luck", + "pos": 0.425, + "neu": 0.562, + "neg": 0.013, + "_id": { + "$oid": "6711d3e0cd60fca157e5aca9" + } + }, + { + "text": "A lot of readings. If you are a minute late, you're marked absent. One test, and one final paper. The rest were readings. The readings are intense so make sure you reserve some time just to focus on them. Very kind, funny, helpful,and understanding professor. Just do the work, and you will be fine.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d3e0cd60fca157e5acaa" + } + }, + { + "text": "Don't take her unless you have a lot of time on your hands. Too much homework and readings; she really has no consideration for students having work from other classes. If you are even a minute late you are marked absent and nothing you say in class will count. NO EXCUSES. She is however helpful and clear.", + "pos": 0.085, + "neu": 0.831, + "neg": 0.085, + "_id": { + "$oid": "6711d3e0cd60fca157e5acab" + } + }, + { + "text": "She is nice but she requires a lot of attention. Must go to class everyday and email her if you missed class. She gives homework everyday. And she marks you absent if you are late by even 5 mins...", + "pos": 0.046, + "neu": 0.887, + "neg": 0.067, + "_id": { + "$oid": "6711d3e0cd60fca157e5acac" + } + }, + { + "text": "she was a sick girl, you canot go to rest room during the class. OMG. No free time, you must 100% focus on her materials , too much homeworks and reading. BUT she is a nice teacher, she has her own method to teach her students,", + "pos": 0.073, + "neu": 0.848, + "neg": 0.079, + "_id": { + "$oid": "6711d3e0cd60fca157e5acad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e1cd60fca157e5acaf" + }, + "professor_name": "Purba Debnath", + "rating": 3.9, + "department": "Music department", + "comments": [ + { + "text": "Super super super sweet teacher! Love her. I am hoping I can take some more classes with her even though I am not a music major. Easy grader, but her class is not a breeze. 2 concert report, 3 quizzes, one midterm, one final. She lays out the expectations for you and really really tries for her students to get the material. Would recommend her :)", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb0" + } + }, + { + "text": "I really think that Purba is the best instructor I have had in City College. Very thoughtful. Interesting lectures. Always there for you. Makes you work. There are two finals, 3 quizes, and tqo papers but I enjoyed most of it. It is really not hard to get an A. If you show up and participate you should be able to do very well.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb1" + } + }, + { + "text": "Her class was amazing, the previous ratings don't do her justice, I'm a very lazy person and I got a B+ in her class so, I know she was an amazing professor, i dont like music at all either, i didn't even have the txtbk for most of the class(you definitively need to rent the txtbk) but take her because she is great", + "pos": 0.144, + "neu": 0.783, + "neg": 0.073, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb2" + } + }, + { + "text": "Debnath is ok. She's really sweet and really tries to teach well. A lot of note taking. I got an A without really studying my textbook so you can get away with just a few glances. Her paper's are really abstract if youre into that.", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb3" + } + }, + { + "text": "very hard to understand her, had to ask questions more than once to understand what she said. lots of textbook use and you need to go to class to get a good grade. she's understanding if you have any issues and very helpful if you do bad on quizzes", + "pos": 0.107, + "neu": 0.801, + "neg": 0.092, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb4" + } + }, + { + "text": "she is nice", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb5" + } + }, + { + "text": "This Professor is a fair grader. Gave us a lot of opportunity to get a high grade. There were 2 concert reports, 4 quizzes, midterm, and a final. There was also one assignment from the beginning of the semester. To do well attend all the lectures!! Overall Grade: B", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e1cd60fca157e5acb8" + }, + "professor_name": "Maxim Smyrnyi", + "rating": 3.4, + "department": "Philosophy department", + "comments": [ + { + "text": "Patient, fair, a cool guy. Esp. helpful at office hours. During class, he gets sidetracked by students who haven't done the reading but always have wise-cracked things to say-that is, they think they're wise, but really they talk like they're on crack, popular among CUNY philosophy undergrads. He's a bit too nice/indulgent to dumb arrogant pricks.", + "pos": 0.223, + "neu": 0.628, + "neg": 0.148, + "_id": { + "$oid": "6711d3e1cd60fca157e5acb9" + } + }, + { + "text": "Because of anonymity, I do not know who the 7/31/08 rater actually is, but any one in the class might guess. This student was the cause for taking the class off the subject almost on a daily basis. This student argued with the professor and fellow students on about every topic. This prof tried very hard to support her and the class. He is great!", + "pos": 0.13, + "neu": 0.801, + "neg": 0.069, + "_id": { + "$oid": "6711d3e1cd60fca157e5acba" + } + }, + { + "text": "it was interesting. he also knows a lot about science, physics and whatnot. he is nice, learned our names, calls us mister this and missis that, sometimes it was really funny.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d3e1cd60fca157e5acbb" + } + }, + { + "text": "This is the worst class I've taken any my college career. The class has no structure and he jumps around all the time while attempting to explain a theory.Its difficult enough trying to understand what he's saying. He refused to give a real syllabus for the class detailing percentages and how students are graded. My advice:take another professor", + "pos": 0.0, + "neu": 0.831, + "neg": 0.169, + "_id": { + "$oid": "6711d3e1cd60fca157e5acbc" + } + }, + { + "text": "it was my most interesting class. sometimes he was lost because many kids would not read anything or miss a lot of classes, but he was really always trying to explain things and would encourage us to ask all kinds of questions.", + "pos": 0.136, + "neu": 0.802, + "neg": 0.062, + "_id": { + "$oid": "6711d3e1cd60fca157e5acbd" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3e1cd60fca157e5acbe" + } + }, + { + "text": "This class was the worst class I have ever taken. He had no idea what he was doing. Although the grade was an easy A i would have rather not suffered through the class.", + "pos": 0.132, + "neu": 0.717, + "neg": 0.151, + "_id": { + "$oid": "6711d3e1cd60fca157e5acbf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e2cd60fca157e5acc1" + }, + "professor_name": "Mohammad Junaid", + "rating": 3.1, + "department": "Anthropology department", + "comments": [ + { + "text": "Took him for anth101 during the fall semester. The exams are easy and projects are very simple. The quizzes are basically spoon feed to you. i was supposed to get a B in the class but got an A. He is a bit boring but pretty easy class", + "pos": 0.177, + "neu": 0.771, + "neg": 0.052, + "_id": { + "$oid": "6711d3e2cd60fca157e5acc2" + } + }, + { + "text": "I was really excited to take this class but he's very boring and would put me to sleep most of the time. The readings are super long but he would summarize them during class. The only tests we took was the midterm and final which he never has practice on.", + "pos": 0.125, + "neu": 0.816, + "neg": 0.059, + "_id": { + "$oid": "6711d3e2cd60fca157e5acc3" + } + }, + { + "text": "This professor is a balance of both good and bad. He gives quizzes every week but he basically gives you the answers. The bad part is that his test are hard to study for. He says to just pay attention in class and you'll be fine. His test seem easy to answer, its just that you must know every single thing we learned in his lectures", + "pos": 0.104, + "neu": 0.764, + "neg": 0.132, + "_id": { + "$oid": "6711d3e2cd60fca157e5acc4" + } + }, + { + "text": "The voice he has in his class puts me to sleep, there's a quiz every week for attendance, and no review sheets for his tests", + "pos": 0.0, + "neu": 0.916, + "neg": 0.084, + "_id": { + "$oid": "6711d3e2cd60fca157e5acc5" + } + }, + { + "text": "New Prof. on the block! Still deciding how tough he wants his course to be and how to act. He is very liberal with his exams and might give extra credit if you really need it. For his exams make sure to at least look over the readings, and definitely read your class notes -- keep in mind that what he says is more important than the Powerpoint!", + "pos": 0.134, + "neu": 0.809, + "neg": 0.057, + "_id": { + "$oid": "6711d3e2cd60fca157e5acc6" + } + }, + { + "text": "Can tell that he is new. A lot to read off the textbook plus a few pdf readings. The only complaint that I have is that he doesn't really explain a lot about the tests he gives us. There are no review sheets, nothing to prepare for what's on it. Also everything is straightforward. It seems like he just repeats what's on the book...", + "pos": 0.037, + "neu": 0.898, + "neg": 0.065, + "_id": { + "$oid": "6711d3e2cd60fca157e5acc7" + } + }, + { + "text": "He gives a lot to read for the week but the midterms and finals are solely based on the text.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5acc8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e2cd60fca157e5acca" + }, + "professor_name": "Olivia Wood", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Really great professor! She has an activist spirit and encourages the class to share their opinions on what is happening at CUNY. There are 3 main projects for this class. Her grading criteria is based on labor work, just do them on time and you'll be fine because it's easy to fall behind. Even though there's a lot of writing, it's worth it.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5accb" + } + }, + { + "text": "Is very in touch with queer history + likes giving us a lot to work on, so don't expect this class to be a cakewalk, but for those who want to actually learn and do the work - it's worth it :) Had 2 big projects for both midterm and final, but deadlines r very lenient - submit things on time because it will be easy to fall behind + so much pdfs", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5accc" + } + }, + { + "text": "ENGL 210000 - Easy A, very sweet, minimal assignments, easy grader", + "pos": 0.532, + "neu": 0.468, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5accd" + } + }, + { + "text": "Prof. Wood was amazing. Her lectures were interesting. we had a lot of projects, they made me get out of my comfort zone and use creativity to do them. we had lots of interesting discussions. She's very understanding. It's not an easy A. but your work will be rewarded and acknowledged. Would def recommend her.", + "pos": 0.261, + "neu": 0.713, + "neg": 0.026, + "_id": { + "$oid": "6711d3e2cd60fca157e5acce" + } + }, + { + "text": "Awesome teacher, most deadlines are pretty flexible, assignments are not hard and you have a lot of time to complete them", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5accf" + } + }, + { + "text": "Olivia was an amazing professor, understanding and was really flexible with due dates. Attendance was mandatory but she would definitely understand when you had to be absent you just had to write her an email. Some of the homeworks wee long but not that long but they were really easy. In this class you got to be yourself and write in your own style", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd0" + } + }, + { + "text": "Professor Wood is amazing! The class is set up such that you come out with a ton of useful information about academic and creative writing. She is accessible outside of class and is extremely flexible with due dates. One of the most caring and considerate professors. Assignments don't go overboard and may prove to be fun for some.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e2cd60fca157e5acd3" + }, + "professor_name": "Elizabeth Wright", + "rating": 4.1, + "department": "Chemistry department", + "comments": [ + { + "text": "chem104 not 103 but not an option\nduring lecture sometimes its easy to lose focus but the tests are straight from the lecture slides and recitation worksheets. some test questions would be exact problems that were on the slides. \nclass is easy to pass just do your work on time (dont let aleks pile up), show up, and study the slides.", + "pos": 0.137, + "neu": 0.766, + "neg": 0.097, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd4" + } + }, + { + "text": "Amazing professor. I had to work my butt off during the summer, but it was a well deserved grade.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd5" + } + }, + { + "text": "Every class, she does a quiz, but they're on the material she just taught and she'll show all the work short of giving you the answer. She gives us practice tests!!! The program she uses (for tests and HW), Aleks, really came in clutch in helping me learn the material :) If you just put in the work into the homework and recitation, you'll do fine.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd6" + } + }, + { + "text": "I don't understand why the other reviews are giver her so much crap. Prof is energetic, smart, and willing to help you. She drops 1 exam out of 3. She is so lenient(gives you credit just for putting formulas). She does read off of her slides sometimes, but her slides are like the holy grail for her exams and are well put together.. 10/10 recommend", + "pos": 0.241, + "neu": 0.733, + "neg": 0.025, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd7" + } + }, + { + "text": "Useless professor, reads off the slides. And has so many issues.", + "pos": 0.0, + "neu": 0.781, + "neg": 0.219, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd8" + } + }, + { + "text": "This professor should be FIRED. VERY RUDE. Yells at disabled students and freaks out all the time. I stopped going the first month of class because I received nothing from it. Thank god for my TA. He helped a lot. She's all over the place and just reads of the slides. She needs to be inspected by the department. Chem was easy teaching myself.", + "pos": 0.065, + "neu": 0.745, + "neg": 0.19, + "_id": { + "$oid": "6711d3e2cd60fca157e5acd9" + } + }, + { + "text": "She is awesome!", + "pos": 0.687, + "neu": 0.313, + "neg": 0.0, + "_id": { + "$oid": "6711d3e2cd60fca157e5acda" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e3cd60fca157e5acdc" + }, + "professor_name": "Jennifer Chou", + "rating": 1.9, + "department": "Biology department", + "comments": [ + { + "text": "She was not the best , but she did try. The only issue as our TA is that she would make mistakes and would not realize until like a week later or even a month. She has an issue with identifying mistakes. For this reason I would say it is best to avoid her. She is a harsh grader but getting 100 is easy just study.", + "pos": 0.113, + "neu": 0.677, + "neg": 0.21, + "_id": { + "$oid": "6711d3e3cd60fca157e5acdd" + } + }, + { + "text": "She threw a rat at me because I could not answer her question! I have rabies now", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3e3cd60fca157e5acde" + } + }, + { + "text": "She literally taught us stuff wrong so I got it wrong on exams which made my grade suffer", + "pos": 0.0, + "neu": 0.607, + "neg": 0.393, + "_id": { + "$oid": "6711d3e3cd60fca157e5acdf" + } + }, + { + "text": "A nightmare, I epermit over the summer and got an A!!! Avoid her she is homophobic and rude", + "pos": 0.0, + "neu": 0.725, + "neg": 0.275, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace0" + } + }, + { + "text": "Many microaggresions came from her, extremely harsh grader and cannot teach! Avoid", + "pos": 0.123, + "neu": 0.65, + "neg": 0.227, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace1" + } + }, + { + "text": "She is very nice and genuinely wants you to succeed. She stresses the important details and concepts needs for the weekly quiz.", + "pos": 0.278, + "neu": 0.619, + "neg": 0.103, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace2" + } + }, + { + "text": "I stopped showing up due to the fact that I respect my time and so should you.", + "pos": 0.155, + "neu": 0.75, + "neg": 0.095, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e3cd60fca157e5ace5" + }, + "professor_name": "Chirag Raval", + "rating": 3.3, + "department": "Biology department", + "comments": [ + { + "text": "Amazing professor who really cares about his students.", + "pos": 0.542, + "neu": 0.458, + "neg": 0.0, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace6" + } + }, + { + "text": "Doesnt give clear guidelines. Seems like he plans lectures the moment he starts class. Keeps adding new assignments throughout the course w/o notice. He says many things are optional but its hard to understand what is what bc his explanations are so unclear. Every class im left struggling bc i dont know what is being counted for grade", + "pos": 0.027, + "neu": 0.815, + "neg": 0.159, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace7" + } + }, + { + "text": "This professor wants to be engaging and develop novel teaching methods. This doesn't work for people who just want a traditional class setup and clear grading criteria. The textbook has great resources though, and you can learn that way if you're willing to put in the work.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace8" + } + }, + { + "text": "You gotta work to get an A. It's a lot of work tbh but if you can discipline yourself and put in the effort required, It's an easy A. The professor is pretty lenient and willing to work with you if you are flexible.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d3e3cd60fca157e5ace9" + } + }, + { + "text": "His methods are very unorthodox so students used to the traditional way of doing things will be confused for a while but will get used to it soon.", + "pos": 0.0, + "neu": 0.942, + "neg": 0.058, + "_id": { + "$oid": "6711d3e3cd60fca157e5acea" + } + }, + { + "text": "Most confusing Prof in my life.", + "pos": 0.0, + "neu": 0.695, + "neg": 0.305, + "_id": { + "$oid": "6711d3e3cd60fca157e5aceb" + } + }, + { + "text": "Amazing lab instructor! Very willing to help you understand the concepts. Wants everybody to succeed and goes out of his way to make sure everyone has the opportunity to do very well.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d3e3cd60fca157e5acec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e3cd60fca157e5acee" + }, + "professor_name": "Michele Sweeting-De Caro", + "rating": 3.6, + "department": "Liberal Studies department", + "comments": [ + { + "text": "I did not enjoy her class. Very disorganized and instructions/direction never clear. Syllabus does not align with classes. Presentations/Slides are entry level and most of class time is students asking for clarity on assignments.", + "pos": 0.067, + "neu": 0.75, + "neg": 0.183, + "_id": { + "$oid": "6711d3e3cd60fca157e5acef" + } + }, + { + "text": "I had Prof. Sweeting in John Jay. Be sure to read pdfs. and readings she puts out. Participation matters. She will call out on you and you have to be ready to discuss the subject. There is a final research paper, however, she is extremely helpful with you. She will help and guide you with your paper! She is very motivational, funny and sweet!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d3e3cd60fca157e5acf0" + } + }, + { + "text": "She is a great professor and very inspirational. Her lectures are fun and very creative. I would recommend her all the way. She does wants everyone to participate so if you are shy you probably get over it in the class. Her class is an easy A", + "pos": 0.318, + "neu": 0.649, + "neg": 0.032, + "_id": { + "$oid": "6711d3e3cd60fca157e5acf1" + } + }, + { + "text": "I almost DROP THIS CLASS 2 MONTHS IN and was willing to retake this course in the Summer. You learn the material but the processor itself is what made me dread going to that class. Also if you are a 1 minute late, she notes it.", + "pos": 0.0, + "neu": 0.884, + "neg": 0.116, + "_id": { + "$oid": "6711d3e3cd60fca157e5acf2" + } + }, + { + "text": "A couple of short page papers and a 10-page final. No textbook, barely any readings. The class is very engaging and interesting. Lets you write about topics that interest you and are meaningful so the class never gets boring. Shes really nice and often tells funny stories in between her lessons. Loved this class, wish I could take her again.", + "pos": 0.328, + "neu": 0.643, + "neg": 0.028, + "_id": { + "$oid": "6711d3e3cd60fca157e5acf3" + } + }, + { + "text": "Overall she's a good professor and gives great feedback", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d3e3cd60fca157e5acf4" + } + }, + { + "text": "At times she acts childish especially once on Blackboard. A college professor shouldn't act like a child when a student asks a simple question for clarification. She is a pretty okay professor.", + "pos": 0.136, + "neu": 0.748, + "neg": 0.115, + "_id": { + "$oid": "6711d3e3cd60fca157e5acf5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e4cd60fca157e5acf7" + }, + "professor_name": "Michael Benavidez", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "CCNY is lucky to have Michael Benavidez. He is one of those kinds of people who try his best to make it easy for his students when there is any misunderstanding. Benavidez is accessible outside the class, usually through technology. He, also it is a kind and nice person. Michael, you are one of the best, and out there can not be two of you.", + "pos": 0.25, + "neu": 0.715, + "neg": 0.035, + "_id": { + "$oid": "6711d3e4cd60fca157e5acf8" + } + }, + { + "text": "Best TA at City College. In lab, he always makes you feel confident about the procedure, the apparatus, the concepts & the material from lecture. He never sits down either, always goes to every lab group so that everyone is confident with the experiment & its concepts. He ALWAYS makes sure you know what you're doing, so you'll do great on reports.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d3e4cd60fca157e5acf9" + } + }, + { + "text": "A great TA who actually wants you to know and learn the lab before coming in (which actually helps you finish fairly quick). Will help you understand everything and is a very easy grade (compared to the recitation leader (GJ)). Highly recommend this TA to easily pass your lab reports.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d3e4cd60fca157e5acfa" + } + }, + { + "text": "Professor Benavidez is the only reason why I come into campus. i love his labs and teaching methods. highly recommend if you have the opportunity", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d3e4cd60fca157e5acfb" + } + }, + { + "text": "Great Lab TA! He was so nice and clear with the labs. If one of us had an issue he will gladly help. I would take him again no doubt. If you skip lab you will fail this course. It is essential you read the lab before the class or you will be completely lost.", + "pos": 0.254, + "neu": 0.66, + "neg": 0.086, + "_id": { + "$oid": "6711d3e4cd60fca157e5acfc" + } + }, + { + "text": "Great Lab TA One of the best TAs in CCNY! He was really nice and made the labs clearer. Taught very well. Helped a lot. Made the rubric very clear and graded the labs fairly. Would recommend future Chem262 students to take him", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d3e4cd60fca157e5acfd" + } + }, + { + "text": "He is good", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d3e4cd60fca157e5acfe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e4cd60fca157e5ad00" + }, + "professor_name": "Frank Moliterno", + "rating": 2.4, + "department": "English department", + "comments": [ + { + "text": "I previously gave this professor a negative review but feel he deserves a revisit. After taking his class he gave a fair grade and honestly although I was very frustrated with the readings during the course I find my self still thinking about them, as they are classic pieces of writing. After it being over, I am glad to have taken this course.", + "pos": 0.143, + "neu": 0.76, + "neg": 0.097, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad01" + } + }, + { + "text": "Professor Moliterno isn't that bad of a professor. He assigns readings to do and its best to know what's going on in the books he's big on participation. his essays and tests are fairly easy if u were in class, hes easy on grading them. He does get frustrated if people aren't reading but its an easy A. there's 3 essays, midterm, and final.", + "pos": 0.169, + "neu": 0.8, + "neg": 0.03, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad02" + } + }, + { + "text": "Lord. The worst Professor i had. He expects to understand every piece of literature that you have. And even if you participate and the answer is wrong he makes you feel like crap for not understanding the text. Over that he creates a load of work even during a pandemic. Very petty. Very rude and I compassionate Please. Dont. Take. This. Professor.", + "pos": 0.129, + "neu": 0.675, + "neg": 0.197, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad03" + } + }, + { + "text": "Doesn't really show effort on caring about the students. School has been suspended and will resume within a week online during (COVID-19) and he is still demanding work to be done during these difficult times for everyone. Avoid at all costs, this is not worth the stress for an Introduction class.", + "pos": 0.091, + "neu": 0.723, + "neg": 0.187, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad04" + } + }, + { + "text": "Much like a character in a greek epic Frank Moliterno is flawed as a professor. He wants his students to absorb the materials however, he is cold an lacks the passion needed to help students dig in to the heavy texts of this course. He refutes confusion. He is often rude to students because their answers aren't what he wanted them to be.", + "pos": 0.112, + "neu": 0.776, + "neg": 0.113, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad05" + } + }, + { + "text": "Taking this class is like going to the park. You do well on the swing if you know what you're doing. If you know how to participate, read, annotate (both in the readings and in class, while he speaks) I swear you'll pass. Bro honestly, this was one of the easiest classes I have ever taken.", + "pos": 0.166, + "neu": 0.815, + "neg": 0.019, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad06" + } + }, + { + "text": "Could easily be a character from one of the many tragedies. One who wants his students to learn but not at the expense of his pompous, arrogant demeanor so he fails miserably. Rushes through readings without any assistance or background information and expects the students to be experts on the texts after only few days to read. final and midterm.", + "pos": 0.024, + "neu": 0.768, + "neg": 0.208, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad07" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e4cd60fca157e5ad09" + }, + "professor_name": "Taehun Lee", + "rating": 3.3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "He plays league of legends mostly, smart and knowledgeable, but very typical korean gamer\nHe likes to be online most of the time", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad0a" + } + }, + { + "text": "He is a very good professor and advisor. You will enjoy and learn a lot from his course. Just read the class and do ur hw, and u will be fine in the weekly quizzes, Midterm, and Final exams. For his projects, just do a simple project right rather than doing complicated one wrong, because the validation of the results matters the most.", + "pos": 0.132, + "neu": 0.824, + "neg": 0.044, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad0b" + } + }, + { + "text": "Do not waste time with him. He has his teaching materials from some other professor, and he follows those notes of just follows the book itself. He is not clear at what he says. Amazingly confusing guy.", + "pos": 0.057, + "neu": 0.835, + "neg": 0.108, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad0c" + } + }, + { + "text": "Straightforward. Doesn't surprise you with anything new in exams. Lectures are clearly fathomable. Fairly grades. Quizzes are from homework or a variation of homework. DO THE HOMEWORK!!!!", + "pos": 0.126, + "neu": 0.815, + "neg": 0.059, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad0d" + } + }, + { + "text": "His midterm exams were fair but the final was a bomb. If you want a good grade just try to do well in the midterms and do all Hws. Don't copy the SM for the Hws. You won't learn anything and fail his exams.", + "pos": 0.169, + "neu": 0.671, + "neg": 0.16, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad0e" + } + }, + { + "text": "Very straight-forward professor. The generic \"do all the hw because the exam questions will come from the book\" type professor. He gives more hw than your average professor though. But if you do it and pay attention, exams are fair. And he curves based on how the class does.", + "pos": 0.057, + "neu": 0.912, + "neg": 0.031, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad0f" + } + }, + { + "text": "With this prof you will pretty much need to do the HW completely and understand it and you'll be fine on the exams. The HW problems come from the book. The book is very important in this class. You should either have it on pdf or hardcopy. He shows some neat videos related to fluid mechanics. He slightly curved our grades based on speculation.", + "pos": 0.141, + "neu": 0.822, + "neg": 0.038, + "_id": { + "$oid": "6711d3e4cd60fca157e5ad10" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e5cd60fca157e5ad12" + }, + "professor_name": "Timothy Mangin", + "rating": 4.6, + "department": "African-American Studies department", + "comments": [ + { + "text": "Prof Mangin is a super cool and smart guy who's very passionate about what he teaches. I took him for two classes and they were super different but both pretty easy. He is pretty disorganized at times, but honestly, that just means assignments being pushed back, and slight frustration during lectures.", + "pos": 0.369, + "neu": 0.543, + "neg": 0.088, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad13" + } + }, + { + "text": "His passion for Afro-latino music and culture has expanded my interest in the Black culture. He is rich with knowledge and understanding about Black culture. He is always professional and knows how to engage the class. To pass requires work & thankfully his way of teaching is gold. All his teaching has stuck with me. I deff recommend!", + "pos": 0.249, + "neu": 0.722, + "neg": 0.028, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad14" + } + }, + { + "text": "Professor Mangin demonstrates a deep understanding, enthusiasm, and passion for Afro-Latino music and culture. I enjoyed attending and participating in his class. I learned so much about the music and culture of Puerto Rico, the Dominican Republic, Brazil, and more. Professor Mangin expanded my musical interest. He is professional and engaging.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad15" + } + }, + { + "text": "Dr. Mangin is a great professor with a genuine enthusiasm and love for the material he teaches. He is very knowledgeable about the content we're learning and also takes the time to clearly explain the material to his students - which is something I really enjoy. Participation is a MUST in his class if you want to do well and prepare for his tests.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad16" + } + }, + { + "text": "He's on top of his game. Pretty cool class. It was harder than I thought but well worth it. he really connected the sounds of music with African American culture.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad17" + } + }, + { + "text": "One of the best professors I ever had. He has a lot of fun with the material and is really smart. He brought in a guest speaker who was amazing and gave practical lessons on cypher circles and rapping. His tests are fair and if you do the reading you'll do well.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad18" + } + }, + { + "text": "basically No hw. Unorganized professor, but its good because less assignments and due dates get pushed back. He assigned a lot of readings, I never read to be honest. Every test is online, only two of them. The midterm and Final. Only one assignment which is making a website, topic of your choice with a group. No hard work just do it. Smart proff", + "pos": 0.18, + "neu": 0.798, + "neg": 0.022, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad19" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e5cd60fca157e5ad1b" + }, + "professor_name": "Petra Vospernik", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "Really good professor that gives you the necessary information in order to passes the quizzes and tests. She doesn't give you extra material to confuse you. She really focuses on students learning the material.", + "pos": 0.086, + "neu": 0.863, + "neg": 0.051, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad1c" + } + }, + { + "text": "Really cool professor just do the work and your all set for a good grade", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad1d" + } + }, + { + "text": "Wonderful teacher. She can be all over the place though. Don't expect to get your tests or papers back. Nice movies and you can tell she tries very hard to make sure her students understand and are doing well. I appreciate that about her.", + "pos": 0.255, + "neu": 0.713, + "neg": 0.032, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad1e" + } + }, + { + "text": "Amazing teacher and class. if you like psychology, you will love her. If you don't like psychology, she will try her best to make it understandable for you. Everything is textbook. Read chapters, and do reflection papers on each chapter. 3 Exams too I think. Teacher reviews chapters in class, extremely helpful and sincere.", + "pos": 0.297, + "neu": 0.673, + "neg": 0.03, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad1f" + } + }, + { + "text": "she is really help ful. will listen to you and lectures alot.if you took good notes did the reading and did the discussion board you should be fine. she likes people who participates and have innovative opinions to give", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad20" + } + }, + { + "text": "Nice, understanding phD student. You use the textbook lots, but she gives almost everything in notes during class. She gives good examples and illustrations of concepts and if you do the work you will get an A easily. A pretty basic lineup of theorists - class is not advanced, just basic stuff but good. She's pretty too and a nice person.", + "pos": 0.312, + "neu": 0.662, + "neg": 0.026, + "_id": { + "$oid": "6711d3e5cd60fca157e5ad21" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e6cd60fca157e5ad23" + }, + "professor_name": "Qin Ding", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "Take her. You won't regret. One of the best professor for music class in CCNY. She gives study guide before all her quizzes and goes over it. She makes the class entertaining.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad24" + } + }, + { + "text": "Best elective class ever taken!", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad25" + } + }, + { + "text": "She is an amazing teacher in CCNY!! TAKE HER! You'll not repent!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad26" + } + }, + { + "text": "She was the best professor ever in my life. you'll learn a lot.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad27" + } + }, + { + "text": "YOU WILL NOT REGRET TAKING HER CLASS!!! YOU WILL LEARN A LOT ABOUT MUSIC AND PASS EASILY!!", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad28" + } + }, + { + "text": "Professor Ding is a nice teacher, she cares about students. If you have questions, she would try her best to make you completely understand. It has 4 quiz (two are take-home), one final, and 4 assignments (very simple). Easy A.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad29" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e6cd60fca157e5ad2b" + }, + "professor_name": "Maureen Daniels", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "Nicest professor I''ve had. Lots of writing assignments but she gives really good feedback and encouragements. Made writing more interesting. Lots of group work and sometimes got to sit outside for class.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad2c" + } + }, + { + "text": "Good feedback on writing assignments", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad2d" + } + }, + { + "text": "Unprofessional and Unorganized", + "pos": 0.0, + "neu": 0.377, + "neg": 0.623, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad2e" + } + }, + { + "text": "awesome professor, very laid back and helpful. gives good writing prompts and doesn't bash peoples writing instead gives them constructive criticisms that helps us grow as writers. As for the person who made a comment about the taboo topic (when you write a personal narrative about violating a sibling, that shouldnt be workshopped in a class at all", + "pos": 0.178, + "neu": 0.745, + "neg": 0.077, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad2f" + } + }, + { + "text": "She will give you an optional writing assignment on certain taboo subjects, but then if she finds the subject offensive then the work can not be workshopped in class, its just a waist of time writing. Also the syllabus does not break down the percenatge of how the grade is calculated. She contricts herself with regards to assignments.", + "pos": 0.025, + "neu": 0.91, + "neg": 0.065, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad30" + } + }, + { + "text": "she is one of the nicest professors that I've had. she is a very understanding and gave us enough time to complete assignments. plus she has a good sense of humor.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e6cd60fca157e5ad33" + }, + "professor_name": "Nishan Chatterjee", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "Good.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad34" + } + }, + { + "text": "Nishan can use any help he can get to improve his teaching skills. He doesn't really have any clarity, moves very fast during class, and skips a few steps in the problems without telling the students. The textbook is a MUST HAVE! Other than that his grading is very fair and he's very lenient on those who show signs of struggling. He's a LAST RESORT", + "pos": 0.179, + "neu": 0.75, + "neg": 0.071, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad35" + } + }, + { + "text": "I had him for Math 190. He is very very very smart and knowledgeable but he needs to improve his teaching skills. He does his best to help the students in his class pass even if there is no hope for this student.", + "pos": 0.273, + "neu": 0.672, + "neg": 0.055, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad36" + } + }, + { + "text": "Despite what people say, he is a really good professor. If you really want to learn you have to read the textbook and do a lot of practice. He is more than helpful when you go to his office. Plus he is funny and a really cool guy.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad37" + } + }, + { + "text": "He is good man but not such a good professor. The way he explains the material is very complicated. He doesn't use the material from the book, he makes his own maters and that makes it confusing.", + "pos": 0.047, + "neu": 0.821, + "neg": 0.132, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad38" + } + }, + { + "text": "Despite the class being very disorganized and confusing, he did want his students to pass. He was slightly lenient in the grading, but his teaching skills could be HIGHLY improved.", + "pos": 0.225, + "neu": 0.684, + "neg": 0.091, + "_id": { + "$oid": "6711d3e6cd60fca157e5ad39" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e7cd60fca157e5ad3b" + }, + "professor_name": "Jessica Sticklor", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "She was a great professor. She's understanding and will make sure you get a good grade. If you don't try then she won't be as lenient. She takes a lot of suggestions and ideas, definitely looks at things in a different perspective. I'd take her again.", + "pos": 0.219, + "neu": 0.748, + "neg": 0.033, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad3c" + } + }, + { + "text": "I enjoyed her class. She is very helpful and you could tell she only wants you to do well and she genuinely tries to make that happen. Once you do her assignments to do the best of your ability you should do well.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad3d" + } + }, + { + "text": "Nice person, very helpful, class is interesting, lots of discussion, overall worth it. Just make sure you submit the assignments on time and with that everything will be fine.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad3e" + } + }, + { + "text": "She's really a sweet lady and its obvious that she really wants EVERYONE to do well, and she tries her best to provide you with the additional help you need to do well. And she will help your writing immensely. I recommend her.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad3f" + } + }, + { + "text": "She's very sweet and supportive, easy to approach out of class, very helpful, always replies students' e-mails in a timely manner, always ready to help with any questions or difficulties you're experiencing. I took ENGL 110 with her and highly recommend her.", + "pos": 0.353, + "neu": 0.608, + "neg": 0.039, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad40" + } + }, + { + "text": "Very good Professor, helpful, clear, understanding and supportive.", + "pos": 0.734, + "neu": 0.266, + "neg": 0.0, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad41" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e7cd60fca157e5ad43" + }, + "professor_name": "Santiago Papini", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Firstly - his eyes OMG. Okay really now. He is a great adjunct professor. He's pretty sarcastic which is hilarious and makes the time pass quick. Grading is straight forward - do the hw and do well on the tests. There is a curve on the final exam.", + "pos": 0.27, + "neu": 0.696, + "neg": 0.034, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad44" + } + }, + { + "text": "Professor Papini's class was very fun and interesting. Took his class for the summer and it goes by very fast. Wish i had taken this course for the regular semester. Very interesting. 1st exam is tricky but after that you will know the types of question he ask so it will get easier. Great professor very funny, and laid back. And also he is cute.", + "pos": 0.311, + "neu": 0.673, + "neg": 0.016, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad45" + } + }, + { + "text": "His class was enjoyable and helpful which motivated me to come to Saturday class. He seems to enjoy teaching as well.", + "pos": 0.467, + "neu": 0.533, + "neg": 0.0, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad46" + } + }, + { + "text": "So I came on here just to talk about his beautiful green(?) eyes. Papini is hottt. Anyway, he is funny and laid back. His summer class was not too hard, but the tests could be tricky. He asks if ur ok a lot... take him!", + "pos": 0.171, + "neu": 0.791, + "neg": 0.038, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad47" + } + }, + { + "text": "Papini is very down to earth. He knows his material. His test are a bit tricky. It may sound cliche, but if you study the online reviews and read the chapters you'll do fine. I took him during the summer 2013 session I and we used the text alot, had 3 exams and an extra credit paper worth up to 3%. His attendance is mandatory.", + "pos": 0.133, + "neu": 0.849, + "neg": 0.018, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad48" + } + }, + { + "text": "hes a great professor, took him during the summer an the amount of knowledge that actually stuck with me is amazing, hes not boring at all and really makes sure you understand the material", + "pos": 0.286, + "neu": 0.668, + "neg": 0.046, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad49" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e7cd60fca157e5ad4b" + }, + "professor_name": "Alicia Seecoomar", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Professor Seecomar is one of the best lab professors I've had. She's tough especially when your not paying attention and missing class of course. However show up to class, do the work, and your will get a passing grade. She has a great sense of humor. I highly recommend her for micro lab.", + "pos": 0.206, + "neu": 0.736, + "neg": 0.058, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad4c" + } + }, + { + "text": "Amazing Professor I have ever saw in this college! Love her notes, study them, and you will succeed! She loves to interact with students, she will answer every question you ask! This professor dependable and dedicated! Wish her the best!", + "pos": 0.44, + "neu": 0.56, + "neg": 0.0, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad4d" + } + }, + { + "text": "Professor S. genuinely cares about her students, is very fair, and will answer any questions you have to help you learn better. Of course you must study, but once you do your part it will reflect positively on your grade; no curveballs. She is very fair. Her teaching has facilitated a genuine interest in my current career path. Excellent professor!", + "pos": 0.317, + "neu": 0.648, + "neg": 0.036, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad4e" + } + }, + { + "text": "She is literally the best professor you will ever come across! She makes the material for such a difficult class very easy to understand, goes out of her way to make sure everyone is on the same page, she tells you exactly what will be on the test, NO SURPRISES! She genuinely tries for you to have the best grade possible. Best prof I've ever had.", + "pos": 0.224, + "neu": 0.696, + "neg": 0.08, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad4f" + } + }, + { + "text": "Prof. Seecoomar is simply amazing!! She cares about her students and encourages her them to do their best and she's more than willing to help. Always answers her emails ! After taking her you will definitely learn something and might even love the subject.", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad50" + } + }, + { + "text": "She is a must take !!!!!!!!!!!!!!!!!!!! This professor cares about her students and will go the extra mile once you put in the effort a She is very good with emails, no matter day or 2 in the morning, she will answer. I hope she teaches more courses because she is pretty darn amazing cause I will take every time", + "pos": 0.239, + "neu": 0.747, + "neg": 0.015, + "_id": { + "$oid": "6711d3e7cd60fca157e5ad51" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e8cd60fca157e5ad53" + }, + "professor_name": "Raisa Rexer", + "rating": 4.8, + "department": "French department", + "comments": [ + { + "text": "Professer Rexer has been one of the best professors I have had at Vanderbilt. FREN3102 was interesting and Professor Rexer was engaging, fun, and fresh. It is extremely clear that she knows what she is talking about. She is brilliant. Highly recommend taking her class!", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad54" + } + }, + { + "text": "Outstanding professor at Vanderbilt now! Emphasized close reading of the texts, did a magnificent job explaining what was significant about each book/poem/author, and really cared a lot about her students. Assigned five of seven very short (1-2 pg) papers, no exams. Participation matters, but she has reasonable expectations & is hilarious to boot.", + "pos": 0.218, + "neu": 0.755, + "neg": 0.026, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad55" + } + }, + { + "text": "She is the best! Truly wants her students to succeed and understand. She will often explain in English if the class is having trouble or if the textbook is confusing. She inspired me to continue with French. Very genuine, caring, and involved with her students. Also provides extra credit and drops lowest test grade. Participate and you'll do well.", + "pos": 0.281, + "neu": 0.627, + "neg": 0.092, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad56" + } + }, + { + "text": "Prof. Rexer makes her class easy. If you already have any idea about the language, you should be fine. There is an exam after every chapter, so that is just a bit tiring. The oral exam thought is also intimidating.", + "pos": 0.105, + "neu": 0.83, + "neg": 0.065, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad57" + } + }, + { + "text": "make sure to pay attention to what she says. study consistently and put in ffort. She has a great attitude especially for so early in the morning, and she cares about you, just make sure to at least make some general effort. doing the workbook/homework assignments is an easy wayto boost your grade", + "pos": 0.267, + "neu": 0.711, + "neg": 0.022, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad58" + } + }, + { + "text": "Prof. Rexer is amazing. She's truly savvy about the language and works to ensure that the students understand the complexity of the material. I would defiantly recommend her to anyone who wants to learn French. She's very patient, funny and energetic throughout the course. Enjoyed myself and learned so much too!", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad59" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e8cd60fca157e5ad5b" + }, + "professor_name": "Axel La Salle-Acevedo", + "rating": 4.3, + "department": "Mathematics department", + "comments": [ + { + "text": "A man's man! Supremo! I learned lot of stuff from him.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad5c" + } + }, + { + "text": "He really wants you to do well and is lenient. He comes off very young, but he knows how to explain concepts well and in a way that makes them interesting. He genuinely cares and tries to help you understand.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad5d" + } + }, + { + "text": "Very dinamic class. Makes Math soooo easy. Lets you retake any exam except the final. Amazing class and best professor.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad5e" + } + }, + { + "text": "Lectures are confusing and moves on too quickly. Stutters a lot. Homework is always open on webworks meaning you won't be able to see the answers. He will never reply to your emails unless you are one of his favorite student. Doesn't review for tests and sends topics for the test the night before. Didn't even finish the last chapter. Avoid", + "pos": 0.045, + "neu": 0.862, + "neg": 0.092, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad5f" + } + }, + { + "text": "Amazing lectures, clear and straight to the point. You will take bunch of note in this class, because he literally explains everything that is on the textbook. 3 midterms (1 will be drop) and a final. He does not CURVE, but his exams are very fair, each chapter contains a problem. I got two 90 on midterm and 88 on final, and ended up with A-", + "pos": 0.122, + "neu": 0.809, + "neg": 0.069, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad60" + } + }, + { + "text": "Just an amazing and understanding Professor. Very understanding to everyone's situation and will help guide you to do well. Teaching is fantastic. Highly recommend to take this class regardless of your worries for math. A+ for him!", + "pos": 0.311, + "neu": 0.632, + "neg": 0.057, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e8cd60fca157e5ad63" + }, + "professor_name": "Cathy Palermo", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "A great & understanding professor for beginners in creative writing. She cares about each person and their pieces, she just wants to see her students develop into better writers! We wrote many poems and short stories though the semester and she is a fair grader.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad64" + } + }, + { + "text": "Great class, great professor!", + "pos": 0.809, + "neu": 0.191, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad65" + } + }, + { + "text": "A great professor! You will get to enjoy a lot of freedom. She provides a lot of detailed feedback, and will always help you if you do not comprehend materials. She is always accessible via email as well! She is extremely passionate in her teaching and it shows. Yes, you have to put in the work, but she is understanding!", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad66" + } + }, + { + "text": "An amazing professor for creative writing because her feedback is detailed and specific about what you can do to improve your writing. She strives to make her students become competent writers by the end of the semester which is very evident withing my own work. I enjoyed her course very much and wish her the best!", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad67" + } + }, + { + "text": "Just no", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad68" + } + }, + { + "text": "She is extremely lenient when it comes to grading and is generally kind hearted. Though she talks A LOT about irrelevant things (we had tangent counters). It may be boring to listen to her going off on tangents but it was generally one of the easiest grades. I had a lot of freedom when it came to what I wanted to write about, and she promoted it.", + "pos": 0.214, + "neu": 0.765, + "neg": 0.021, + "_id": { + "$oid": "6711d3e8cd60fca157e5ad69" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e9cd60fca157e5ad6b" + }, + "professor_name": "Ryan McElhaney", + "rating": 4.8, + "department": "Philosophy department", + "comments": [ + { + "text": "He's one of the best professors at CCNY. Philosophy is not easy at all, but Ryan is very passionate and makes it interesting and easy to understand. He gives good feedback all the time. There are 10 short responses (you have to complete at least 5 of them) one draft and one final paper. Take him, you won't regret it! He is really good!!!", + "pos": 0.322, + "neu": 0.658, + "neg": 0.02, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad6c" + } + }, + { + "text": "Ryan was easily one of the best professors I've taken at CCNY. He's extremely passionate about philosophy and it shows in his teachings. There are four papers for his class that you must write, however, the fourth paper is a revision of one of the first three you wrote. He gives good feedback and is always available to help students. Thanks, Ryan!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad6d" + } + }, + { + "text": "You know what. I love philosophy after taking his class. Although the subject is confusing, professor Ryan is passionate and willing to help at anytime. Show him that you can formulate arguements based on readings and explain with example. I got Mostly A- and talk to him in several seperate occasions, then got A as final grade. RECOMMENDED!!!!", + "pos": 0.203, + "neu": 0.769, + "neg": 0.028, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad6e" + } + }, + { + "text": "Awesome and easygoing professor. He is very passionate. He is always willing to answer questions and meet with students if help is needed. Overall, philosophy is a difficult topic, but you will learn a lot from him. The homework's are just readings. There are 4 papers. I recommend him to everyone.", + "pos": 0.199, + "neu": 0.771, + "neg": 0.03, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad6f" + } + }, + { + "text": "Awesome professor. He is very passionate about Philosophy and only assigns 4 essays. Although the essay topics are very confusing, I'm sure you will do fine if you pay attention in class. The day before an essay is due, he will allow students to ask questions which was very helpful in writing the essays. However, this class is boring.", + "pos": 0.235, + "neu": 0.685, + "neg": 0.081, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad70" + } + }, + { + "text": "Professor Ryan is an amazing professor. He is always there for his students to help. He wants his students to do very good. He assigned 2-short papers, 1 moderate length paper and a Final term paper. He is always clear about what he wants. He is a fair professor and understanding as well. I would take him again if I can. I suggest this professor.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad71" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e9cd60fca157e5ad73" + }, + "professor_name": "Michael Tate", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "He's a great professor. Learned a lot. He was very inspirational, and caring in the classroom. He was flexible with homework and papers. He gave great feedback and was in general a great professor. Highly recommend.", + "pos": 0.453, + "neu": 0.547, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad74" + } + }, + { + "text": "Prof Tate lectures are intriguing, youll never be bored in this class. Although this class was taken virtually, I love the break out groups and the assignments are fun. There are 3 quizzes and a final. As long as you watch the lectures and participate you should do well in his class. Hes a gem!", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad75" + } + }, + { + "text": "Professor Tate was an amazing instructor. He really cares about his students and their success and he always made sure to let people know that he was available outside of the class as well. I was going through a rough time during this session but he was really respectful and helpful in my success. Take this class! You will learn a lot and it is fun", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad76" + } + }, + { + "text": "very nice professor interested in material which is very visible. come to class! Tests are a little tricky", + "pos": 0.28, + "neu": 0.662, + "neg": 0.058, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad77" + } + }, + { + "text": "He is a great professor. Without doubt. take this class.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad78" + } + }, + { + "text": "He is an awesome professor. Uses great examples in his lectures, he explains things thoroughly if you don't understand. He cares for his students to do their best. Super cool. I would take him again", + "pos": 0.371, + "neu": 0.579, + "neg": 0.05, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3e9cd60fca157e5ad7b" + }, + "professor_name": "Milagros Seraus-Roache", + "rating": 3.5, + "department": "Education department", + "comments": [ + { + "text": "She makes the class very simple as long as you pay attention and do all assignments. In this class you are required to attend only one writing consultation. The work she assigns is also very manageable.", + "pos": 0.0, + "neu": 0.962, + "neg": 0.038, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad7c" + } + }, + { + "text": "Professor milly is a very understanding teacher. she's provides good materials for the class and is always willing to hear others' opinions. her criteria were very clear unlike other professors. she made me feel comfortable in her class. i really enjoyed the writing consultation. if i were given the opportunity to take her class again, i would.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad7d" + } + }, + { + "text": "Usually, we are supposed to be taken in person but since the pandemic, it was placed online. Professor Seraus Roache is very outgoing, believes in fair chances, and a great communicator. She really cares about her students and knows a lot about the topics discussed in class. She is very resourceful. Would take her again :)", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad7e" + } + }, + { + "text": "Due to COVID-19, we went from having 2 pprs to solely a final ppr (& a presentation). The draft worth 25% and the ppr worth 40%. She had very SPECIFIC guidelines for the ppr & didnt specify that until AFTER the MAJORITY of the class FAILED the draft bringing down our grades 25-30 points. Im a strong writer & her guidelines were ridiculous. AVOID!", + "pos": 0.095, + "neu": 0.775, + "neg": 0.13, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad7f" + } + }, + { + "text": "While I understand the frustration caused by the abrupt switch from in-person to online classes due to COVID, this feedback is unfair. I shared a rubric ahead of the 1st draft and spent 40 minutes explaining it in class. Accountability can feel like an attack but it was important for me to provide authentic feedback on your writing.", + "pos": 0.089, + "neu": 0.815, + "neg": 0.096, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad80" + } + }, + { + "text": "Milly is a nice person who states all her guidelines clearly but she has this habit of cutting people of midway through presentations when she feels like they haven't said what SHE wants them to say. She isn't open to opinions as much. She talks WAYYY to much . weekly readings but you only need to skim through to understand the topic of the week.", + "pos": 0.1, + "neu": 0.875, + "neg": 0.025, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad81" + } + }, + { + "text": "Milly talked a lot during class and would sometimes cut people off to get her point across. She has this habit of correcting people but doesn't realize that everyone has their own view. She is nice and grades by few assignments and midterm but it has to be good content. Every week reading. No final but group project +paper with 4 other ppl", + "pos": 0.106, + "neu": 0.832, + "neg": 0.061, + "_id": { + "$oid": "6711d3e9cd60fca157e5ad82" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eacd60fca157e5ad84" + }, + "professor_name": "W. Garrison McNeil", + "rating": 4, + "department": "Architecture department", + "comments": [ + { + "text": "Best professor ever!!", + "pos": 0.705, + "neu": 0.295, + "neg": 0.0, + "_id": { + "$oid": "6711d3eacd60fca157e5ad85" + } + }, + { + "text": "He is really funny so that is something that makes the class little more easy.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d3eacd60fca157e5ad86" + } + }, + { + "text": "Most helpful professor I ever had in college. Full of jokes and laughs. Experienced in design due to his vast knowledge in his practice and will teach you more things than any other 5th year professor.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d3eacd60fca157e5ad87" + } + }, + { + "text": "Great Professor! City College's Best", + "pos": 0.741, + "neu": 0.259, + "neg": 0.0, + "_id": { + "$oid": "6711d3eacd60fca157e5ad88" + } + }, + { + "text": "Come on... leave the old. He is the jewel for CCNY Arch Dept. Look at other architecture school, there are at least 1 or more produced from the same school. Look at our Thesis faculty 3 Professors are from Cooper, wat a shame!! =(.....\r we need to thanks McNeil for his commitment to CCNY even though he is \" \" (Fill in yourself)!!!", + "pos": 0.128, + "neu": 0.812, + "neg": 0.06, + "_id": { + "$oid": "6711d3eacd60fca157e5ad89" + } + }, + { + "text": "This dude is just plain crazy. You never know if is kidding or if he serious. Always making lude jokes and the mess up part is you have no other choice than to take him. He is also a strict grader.", + "pos": 0.073, + "neu": 0.748, + "neg": 0.179, + "_id": { + "$oid": "6711d3eacd60fca157e5ad8a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eacd60fca157e5ad8c" + }, + "professor_name": "Hilary Gomes", + "rating": 3.3, + "department": "Psychology department", + "comments": [ + { + "text": "She's okay, I've had better professors. You do literally read the whole book and get quizzed on it. Her lectures are boring and are repetitions of the text with mediocre examples. For an intense course I didn't feel engaged or the desire to learn more experimental because of her. What a shame.", + "pos": 0.143, + "neu": 0.732, + "neg": 0.125, + "_id": { + "$oid": "6711d3eacd60fca157e5ad8d" + } + }, + { + "text": "I had Prof Gomes for No Child Left Behind, the math 150 equivalent. She is a demanding teacher, so be ready for a lot of work. The payoff is that you will learn a lot. She has a clear plan for the semester and sticks to the schedule. Very organized, very kind hearted, and cares about the student's learning experience. Be on time for class!", + "pos": 0.167, + "neu": 0.779, + "neg": 0.054, + "_id": { + "$oid": "6711d3eacd60fca157e5ad8e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3eacd60fca157e5ad8f" + } + }, + { + "text": "She does make you read the entire book literally, but you learn the material only if you attend to class and study on your own. Its not an easy class but its also not too difficult. She can be a little weird sometimes.", + "pos": 0.056, + "neu": 0.844, + "neg": 0.1, + "_id": { + "$oid": "6711d3eacd60fca157e5ad90" + } + }, + { + "text": "Professor Gomes is a very good professor and really know what she in talking about. She engages her student by letting us go out into the school to conduct real research studies. Yes, the papers were long, but she allows you to do drafts of different parts, so by the time you have to hand it in, most of the paper is done already. Definate A+ Prof.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d3eacd60fca157e5ad91" + } + }, + { + "text": "Very high demanding when it comes to the papers. There's plenty of reading, weekly quizes and lottssssss of lonnng papers.", + "pos": 0.0, + "neu": 0.897, + "neg": 0.103, + "_id": { + "$oid": "6711d3eacd60fca157e5ad92" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eacd60fca157e5ad94" + }, + "professor_name": "John Dejesus", + "rating": 4.4, + "department": "Mathematics department", + "comments": [ + { + "text": "Cancelled half the classes, then always ended early. Gave a take home midterm, and final, and engough extra credit to add 10 points to our grades so we wouldnt fail. he gave me an a but i know nothing about calc 1, and had to drop calc 2 as a result. I may have to change majors because i dont know anything. But if you need an easy a take him.", + "pos": 0.099, + "neu": 0.848, + "neg": 0.053, + "_id": { + "$oid": "6711d3eacd60fca157e5ad95" + } + }, + { + "text": "I really love this guy, he is the best! I took math 190 with him and he made me love math. His quizzes are extremely similar to the homework questions. I love his teaching method. :-)", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d3eacd60fca157e5ad96" + } + }, + { + "text": "Took Math 201 workshop with him, absolutely the best math professor ever. Clear, made us see why and how math worked and gave us homework and explained the problems. Went over any questions, introduced a topic, then made us practice it till we understood it. Needs to be the head of the Math Department, cool person easy going really nice", + "pos": 0.213, + "neu": 0.749, + "neg": 0.037, + "_id": { + "$oid": "6711d3eacd60fca157e5ad97" + } + }, + { + "text": "I first thought he was kinda boring, but he teaches so clear! we have no test except for the final and midterm. we have quizes every friday based on the material from that week. He always gives extra credit and never checks homework. His teaching style is amazing and so helpful! I recommend him!", + "pos": 0.298, + "neu": 0.643, + "neg": 0.059, + "_id": { + "$oid": "6711d3eacd60fca157e5ad98" + } + }, + { + "text": "Awesome teacher! If you don't understand pre-calculus now, take him ASAP! He makes topics easy to understand.This was his first year at CCNY and I REFUSE to take Cal with another professor next semester. If you do your homework and the extra credit (yes: he counts extra credit), you can easily pass this class.", + "pos": 0.264, + "neu": 0.693, + "neg": 0.043, + "_id": { + "$oid": "6711d3eacd60fca157e5ad99" + } + }, + { + "text": "Very good professor. Extremely helpful and is great at explaining mathematics. If you are going to enter CCNY, take John for 195(Pre Calc), he'll prepare you for the harder classes. Quizzes are weekly based on homework, and attendance is mandatory, but if you go in and listen to him and do the homework, you can walk out with an A, but not so easy.", + "pos": 0.111, + "neu": 0.832, + "neg": 0.057, + "_id": { + "$oid": "6711d3eacd60fca157e5ad9a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ebcd60fca157e5ad9c" + }, + "professor_name": "Christy Mag Uidher", + "rating": 3.3, + "department": "Philosophy department", + "comments": [ + { + "text": "This professor was the lecture part of my FIQWS class... but he next to never showed up! He cancels class all the time, he's fuzzy on the details of what you're supposed to read, and he doesn't seem to like teaching AT ALL.", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d3ebcd60fca157e5ad9d" + } + }, + { + "text": "Taking class with this guy was like going to a comedy club twice a week. The guy is briliant in many subjects, and single-handedly ingnited my interest in Aesthetics. Too bad he's gone to Houston!! He said, \"Brookyln's not so great when Texas offers you a dump truck full of money.\" Myself, there aren't enough dump trucks to hold hold the money they", + "pos": 0.132, + "neu": 0.727, + "neg": 0.141, + "_id": { + "$oid": "6711d3ebcd60fca157e5ad9e" + } + }, + { + "text": "Awesome class. You cannot fail this class if you did the readings and is there for class. He goes over the reading in class. Tests aren't demanding. The readings are long but not so bad. Seven papers on the reading. Drops one. Not very long. Expecting a B+", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5ad9f" + } + }, + { + "text": "yeah he's a cool professor.. he never gives you work and never shows up for class... try flushing your money down the toilet, at least then it'll make a cool noise.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada0" + } + }, + { + "text": "I was so interested in this class at first, but this professor canceled so many classes and didn't give us work so I am not sure what he grades on. He was not really interested in teaching us.", + "pos": 0.052, + "neu": 0.816, + "neg": 0.132, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada1" + } + }, + { + "text": "Excellent Professor- challenging, interesting and good readings assigned. Everything you could ask for in a philosophy professor.", + "pos": 0.456, + "neu": 0.544, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ebcd60fca157e5ada4" + }, + "professor_name": "Justine Fitzgerald", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "She really is the most amazing professor anyone can ever have. Super caring and very understanding. You won't regret taking her. Great feedback on all assignments and easy to speak to. Don't hesitate to talk to her about anything. It was truly an honor to have been in her class.", + "pos": 0.41, + "neu": 0.59, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada5" + } + }, + { + "text": "She is a very nice professor. She really goes into the texts we read and helps a lot when it comes to our thesis. She makes sure everyone is doing it correctly and is willing to spend extra time with you if you don't understand. The only bad thing is that she takes a long time to grade our papers.", + "pos": 0.118, + "neu": 0.83, + "neg": 0.052, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada6" + } + }, + { + "text": "very easy class, one day we literally just did group crossword puzzle contest in her class, other days we spend going around the room having each student read a paragraph of an article until realizing the class is over, never found out what i got on my papers, but a very easy A", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada7" + } + }, + { + "text": "She's so calm and relaxed, smooth, no pressure, understanding, then again, I had her for FIQWS. The class was boring on most days and kind of pointless, all we did was read articles for homework then read them again in class and annotate, few homework here and there, but no major major paper grading from this class.", + "pos": 0.088, + "neu": 0.84, + "neg": 0.072, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada8" + } + }, + { + "text": "Prof. J. Fitzgerald is an amazing professor. If you care about your class and your grade, she will care for you. You can talk about personal things that are bothering you and she will help. Very nice and friendly professor.", + "pos": 0.353, + "neu": 0.599, + "neg": 0.047, + "_id": { + "$oid": "6711d3ebcd60fca157e5ada9" + } + }, + { + "text": "Professor Fitzgerald is a gret English teacher. She's very lenient and helpful. She's compromising, caring, and tries to make things as easy and fair as possible. Two Thumbs Up!", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5adaa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ebcd60fca157e5adac" + }, + "professor_name": "Alberto Foyo", + "rating": 3.7, + "department": "Architecture department", + "comments": [ + { + "text": "Though I no longer study Architecture, Professor Foyo was one of the reasons I extended my stay in the program. His ideas are so profound and moving in a way that inspires you to think through abstract media and design in unorthodox ways that really articulates the creativity of architecture.", + "pos": 0.105, + "neu": 0.855, + "neg": 0.04, + "_id": { + "$oid": "6711d3ebcd60fca157e5adad" + } + }, + { + "text": "Highly intellectual. Genius in design. Best teacher EVER", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5adae" + } + }, + { + "text": "Foyo was interesting. He is EXTREMELY ABSTRACT on another level. If you get confused easily I don't recommend him. He does try to open your mind and he is very demanding when it comes to producing work. You will spend a lot of money bc he demands projects to be built at a LARGE scale, and doesn't help you. Online class was the reason I passed.", + "pos": 0.069, + "neu": 0.811, + "neg": 0.12, + "_id": { + "$oid": "6711d3ebcd60fca157e5adaf" + } + }, + { + "text": "With Foyo you learn so much. You will be confused at times but its all apart of his way to expand your mind. We have awesome projects compared to the other years. He is very entertaining at times and demands quite a bit of work but not something new in architecture school. I would definitely take him again!", + "pos": 0.234, + "neu": 0.742, + "neg": 0.023, + "_id": { + "$oid": "6711d3ebcd60fca157e5adb0" + } + }, + { + "text": "Foyo pushes you to your absolute best. He demands specific quality of work and takes nothing less. He asks for big projects but they are amazing. Because the review written April 17th, 2020 can't withhold his standards its not his fault. He makes you think so abstract, he bends your archit. mind to never view anything simply as it is but much more.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d3ebcd60fca157e5adb1" + } + }, + { + "text": "If classes didn't move online and Foyo didn't SCRAP THE WHOLE STUDIO'S PROJECT WHICH WE HAD TO SPEND HUNDREDS OF DOLLARS ON then I would already know I've failed. I think I have a chance now that the project is to actually do art to please myelf rather than him. VERY ABSTRACT. Likes if you talk a lot and will spend long time on critique discussions", + "pos": 0.11, + "neu": 0.845, + "neg": 0.045, + "_id": { + "$oid": "6711d3ebcd60fca157e5adb2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eccd60fca157e5adb4" + }, + "professor_name": "Corinna Brathwaite", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Best professor, take her class ASAP, but you have to do your work in order to get an A+. She is open minded and flexible with due date, which is amazing. However, try to do everything on time to avoid cramming at the end. The attendance is not mandatory, but you will learn a lot if you attend and she will prepare you for the real teaching life.", + "pos": 0.131, + "neu": 0.815, + "neg": 0.053, + "_id": { + "$oid": "6711d3eccd60fca157e5adb5" + } + }, + { + "text": "Prof. Brathwaithe is such an amazing educator. She was super personable and knowledgeable. She was very clear on class expectations which I personally believe can make or break a class. You would be foolish to not take her class if she is an option.", + "pos": 0.201, + "neu": 0.759, + "neg": 0.04, + "_id": { + "$oid": "6711d3eccd60fca157e5adb6" + } + }, + { + "text": "Her class is so inspiring and helpful! She is an amazing professor and very real since she herself is working teacher and treats you like a colleague, creating a fun loving learning environment! Highly recommend !", + "pos": 0.482, + "neu": 0.518, + "neg": 0.0, + "_id": { + "$oid": "6711d3eccd60fca157e5adb7" + } + }, + { + "text": "Best professor ever! definitely recommend her.", + "pos": 0.764, + "neu": 0.236, + "neg": 0.0, + "_id": { + "$oid": "6711d3eccd60fca157e5adb8" + } + }, + { + "text": "Professor Brathwaite is one of the best teachers I've come across in my college years. She makes the students feel like equals with the understanding that we're all adults and we can all get to where she is. She motivates her students, makes the course interactive and allows for group discussion which improves learning of the content.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d3eccd60fca157e5adb9" + } + }, + { + "text": "She is the best teacher ever! She cares about her students and really knows how to prepare you for classroom teaching. She is the best addition to City College yet!", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d3eccd60fca157e5adba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eccd60fca157e5adbc" + }, + "professor_name": "Jeremey Edmiston", + "rating": 1.1, + "department": "Architecture department", + "comments": [ + { + "text": "It's been 7 years since the last review. I hate to say it but nothing has changed. He is still rude to students and assigns ridiculous work while being unclear on how he wants it. One such thing is having you change everything since midterm a few days before the final. Can say some pretty offensive things from time to time so steer clear from him.", + "pos": 0.098, + "neu": 0.709, + "neg": 0.193, + "_id": { + "$oid": "6711d3eccd60fca157e5adbd" + } + }, + { + "text": "Full of him self. Very rude to students! Never show up for the office hours, even if it is scheduled. DON'T TAKE HIM! Take his class only if you want to waste time, money and GPA.", + "pos": 0.032, + "neu": 0.805, + "neg": 0.163, + "_id": { + "$oid": "6711d3eccd60fca157e5adbe" + } + }, + { + "text": "rude and arrogant", + "pos": 0.0, + "neu": 0.139, + "neg": 0.861, + "_id": { + "$oid": "6711d3eccd60fca157e5adbf" + } + }, + { + "text": "one of the most arrogant and igonorant SB, I have ever seen in my life.", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d3eccd60fca157e5adc0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3eccd60fca157e5adc1" + } + }, + { + "text": "He is cool, but too cool!! he doesnt give a**** about anyone... if u are a smoker, thats a plus! he is a harsh grader too! so try hard to get his attention, as well as a grade.", + "pos": 0.178, + "neu": 0.698, + "neg": 0.124, + "_id": { + "$oid": "6711d3eccd60fca157e5adc2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3edcd60fca157e5adc4" + }, + "professor_name": "Rachel Soyk", + "rating": 3.7, + "department": "Mathematics department", + "comments": [ + { + "text": "MATH 205- she is a nice professor but she teaches two or one chapter that going to be on the exam two days before the exam or quiz. she makes alot of mistake and the homework she gives she says will be similar to exam but ends up not being on the exam. the review sheet she gives out are not on the exam only few similar questIon. EXAM ARE HARD!!!!!", + "pos": 0.025, + "neu": 0.885, + "neg": 0.091, + "_id": { + "$oid": "6711d3edcd60fca157e5adc5" + } + }, + { + "text": "Don't know what she teaching. She does mistakes a lot.", + "pos": 0.0, + "neu": 0.783, + "neg": 0.217, + "_id": { + "$oid": "6711d3edcd60fca157e5adc6" + } + }, + { + "text": "Take her, she is just the Best.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5adc7" + } + }, + { + "text": "BEST MATH PROFESSOR for sure. She honestly cares about her students and their future. If you see her on your schedule, DO NOT even think of dropping that class and picking another class you'll regret it!!!", + "pos": 0.294, + "neu": 0.647, + "neg": 0.058, + "_id": { + "$oid": "6711d3edcd60fca157e5adc8" + } + }, + { + "text": "She is a true Gem in the math department. Take her! Very eager about math and tries to help you understand tough concepts and is patient and kind. she treats her students with respect you wont regret taking her!", + "pos": 0.346, + "neu": 0.625, + "neg": 0.029, + "_id": { + "$oid": "6711d3edcd60fca157e5adc9" + } + }, + { + "text": "I was never keen on math until I took this class with Prof. Soyk. She's a bit quirky but it works in her favor. Her passion is contagious and she is one of the few professors out there that still genuinely cares about her students. It is obvious she wants her students to succeed. I really learn when she is teaching, she makes the material cool.", + "pos": 0.228, + "neu": 0.716, + "neg": 0.056, + "_id": { + "$oid": "6711d3edcd60fca157e5adca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3edcd60fca157e5adcc" + }, + "professor_name": "Casey Bradley", + "rating": 2.3, + "department": "Theater department", + "comments": [ + { + "text": "If I had known what I was getting into before signing up, I wouldn't have taken this course", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5adcd" + } + }, + { + "text": "If I had known what I was getting into before signing up, I wouldn't have taken this course again", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5adce" + } + }, + { + "text": "Only take this if youre genuinely interested in theatre. Other than that, its a loooot of work for someone who just wants the credit. It def requires alooot of work and you must have your cam on and participate. Theres also really heavy readings and homework almost every class.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5adcf" + } + }, + { + "text": "Shes definitely a professor that assigns a lot of work. I had her the first time she taught at CCNY so hopefully shes changed the amount of work. Shes passionate about theatre and a lot of the theater majors liked her but if you arent one, I wouldnt take her if youre thinking of taking the class for the credit.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5add0" + } + }, + { + "text": "She gives a lot of work.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5add1" + } + }, + { + "text": "I would recommend Prof Bradley to any student interested in theater, Prof is very insightful and clear to understand", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5add2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3edcd60fca157e5add4" + }, + "professor_name": "Natalia Zubko", + "rating": 4.2, + "department": "Art department", + "comments": [ + { + "text": "She's great at her work in the class, but sometimes she gets annoyed and upset when you ask her for help with assignments which is rude given by her facial expression, body language and the way she talk to you. She's very unfair when it comes to grading your hard work and projects. Overall, a decent professor. I rate her a 5.7 out of 10.", + "pos": 0.075, + "neu": 0.715, + "neg": 0.21, + "_id": { + "$oid": "6711d3edcd60fca157e5add5" + } + }, + { + "text": "my favorite class during the pandemic hands down. Shes super caring and her excitement for your work makes you excited to do the assignments :')", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5add6" + } + }, + { + "text": "I learned so many useful skills in her class. When you do something incorrect she says how to correct it and gives you a chance to resubmit via email. She answers emails quickly and very helpful. She was very flexible and considerate with the health crisis in mind. It's hard work but so worth it when you see your finished pieces!!!", + "pos": 0.191, + "neu": 0.755, + "neg": 0.053, + "_id": { + "$oid": "6711d3edcd60fca157e5add7" + } + }, + { + "text": "Zubko is a great professor to bring out your creative side. Her class is fun, if you're into building stuff and really \"thinking outside the box.\" There's no exam or midterm, its just getting the projects done on time. Beware though, it can get tough but just push through! DON'T MISS CLASS. It will effect your grade and you'll fall behind!", + "pos": 0.144, + "neu": 0.814, + "neg": 0.042, + "_id": { + "$oid": "6711d3edcd60fca157e5add8" + } + }, + { + "text": "Took Natalia for Sculpture class at CCNY. She's amazing. She really opened my eyes to how much an artist can speak through different materials. There is only one group project and one very short paper in which you research several sculptors. You leave the class more aware of examples of sculpture in everyday life. She's very understanding & caring.", + "pos": 0.113, + "neu": 0.869, + "neg": 0.019, + "_id": { + "$oid": "6711d3edcd60fca157e5add9" + } + }, + { + "text": "She wants to see you push past what you think you know of sculpture and see the broad spectrum of it. Plan out days to finish the project before the day it's due, take pictures of your project process in case it breaks before class. Overall she's a awesome professor to take for sculpture, there's one cool group project.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d3edcd60fca157e5adda" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eecd60fca157e5addc" + }, + "professor_name": "Huy Vo", + "rating": 4.5, + "department": "Computer Science department", + "comments": [ + { + "text": "Only reason I gave a 4 and not a 5 is because his accent made the class way harder to understand for me. Awesome teacher who really cares about students and is super patient with questions. Homeworks are fair. Don't fall behind, but if you do don't be embarrassed to ask him for help immediately after class. Quizzes and tests are open internet.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5addd" + } + }, + { + "text": "There's literally no reason why you should not take his Big Data course. He ends class early. Assignments are very doable, labs are very doable (meant for practice), and exam is doable as well. It's hard to pay attention to his lectures though I'll admit, but that shouldn't matter.", + "pos": 0.058, + "neu": 0.842, + "neg": 0.1, + "_id": { + "$oid": "6711d3eecd60fca157e5adde" + } + }, + { + "text": "Had him for CSC221 which he taught in python. His lectures and in-class labs were really helpful in mastering the language. He's flexible when needed and gave us multiple review sessions. Overall the class was free of stress since it was mostly assignment based. He allowed us to look up things while taking the midterm and quizzes (35% overall).", + "pos": 0.125, + "neu": 0.832, + "neg": 0.042, + "_id": { + "$oid": "6711d3eecd60fca157e5addf" + } + }, + { + "text": "Highly recommend him for Senior Design. He offers excellent feedback, but sometimes he may overdo it (I can't blame him though he kind of has to). Don't finish things too early because he will start picking on the super minor stuff; be up to date.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5ade0" + } + }, + { + "text": "Senior Design class. A very organized and helpful professor. Lets you choose your topic for the project. Good tips for how to do teamwork. Overall, very recommended for this class.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5ade1" + } + }, + { + "text": "Tricky class, the big data course. This guy can be confusing at times. Overall, you learn a lot. Expect to have your Python basics down. This is a HEAVY Python course. However, very practical, useful knowledge.", + "pos": 0.08, + "neu": 0.832, + "neg": 0.088, + "_id": { + "$oid": "6711d3eecd60fca157e5ade2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eecd60fca157e5ade4" + }, + "professor_name": "Patrick Shea", + "rating": 2.3, + "department": "Biology department", + "comments": [ + { + "text": "His exams are just too much details. I feel like his exams was not fair and the lab was made to boost our grade but the harsh grading is pulling it down. He is boring and talks too much during lecture that makes me fall a sleep. I wouldnt recommend taking him because he is not welling to help students for any review sheet or studying tips.", + "pos": 0.045, + "neu": 0.745, + "neg": 0.21, + "_id": { + "$oid": "6711d3eecd60fca157e5ade5" + } + }, + { + "text": "Avoid him at all costs. No reason for a TA to be grading like its a grad school class.", + "pos": 0.109, + "neu": 0.699, + "neg": 0.192, + "_id": { + "$oid": "6711d3eecd60fca157e5ade6" + } + }, + { + "text": "He is terrible at teaching and grades super harsh. He is all about being fair but wouldnt give review sheets for his hard exams that he makes but other lab sections give review sheets. Not pretty fair if you ask me. Avoid this penguin shaped man at all costs", + "pos": 0.069, + "neu": 0.69, + "neg": 0.241, + "_id": { + "$oid": "6711d3eecd60fca157e5ade7" + } + }, + { + "text": "He is an excellent TA, knowledgeable, very clear, and patient. I have learned from his class, and I recommend him 100%. The exams are fair, and the course is very interesting.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5ade8" + } + }, + { + "text": "Hes honestly okay not as bad as how people described him. He does take a while to grade but pretty lenient when I received my grades back.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5ade9" + } + }, + { + "text": "I feel like this TA is a VERY HARSH grader. Graded his lab sections assignments late in the semester and students wasn't informed at all of how they were doing until he already graded them. Test were mainly short response and hard compared to rest of the other TA's lab sections. TA's SHOULDN'T be allowed to make test to dictate a student grade !", + "pos": 0.036, + "neu": 0.873, + "neg": 0.091, + "_id": { + "$oid": "6711d3eecd60fca157e5adea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3eecd60fca157e5adec" + }, + "professor_name": "Carolina Salane", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Lenient teacher, she was very communicative in the beginning of the semester but a few days towards the end of the semester she stopped answering emails. The exams were slightly hard, some questions werent plainly stated in the slides. Many extra credit opportunities and boosted grades due to participation and attendence.", + "pos": 0.193, + "neu": 0.749, + "neg": 0.058, + "_id": { + "$oid": "6711d3eecd60fca157e5aded" + } + }, + { + "text": "Professor Salane's class was very enjoyable. She gives you extra credit opportunities and most of her assignments are easy to do. She is really nice and overall I really loved her class this semester.", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5adee" + } + }, + { + "text": "Professor Salane is a great professor who cares a lot about her students. She is very passionate about psychology. A big thank you to her for being so great while teaching in tough times!!", + "pos": 0.393, + "neu": 0.576, + "neg": 0.031, + "_id": { + "$oid": "6711d3eecd60fca157e5adef" + } + }, + { + "text": "She is a great professor, and honestly I am surprised she does not have more reviews. She is so caring and truly will help you understand the material she is teaching. She is always available during her office hours and she tries to answer all her emails as soon as possible. This has honestly been the lightest class I have ever taken. 12/10.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5adf0" + } + }, + { + "text": "Professor Salane was truly a wonderful professor. She understood and cared for her students. We used textbooks (free, online), lectures, as well as readings throughout. There was interesting weekly discussion boards that she gave useful feedbacks on, an essay, and article summaries. All doable, but you have to read thoroughly to comprehend.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d3eecd60fca157e5adf1" + } + }, + { + "text": "She is very caring and is understanding. The textbook is online for free. TBH one of the best professors I've had. She gives weekly articles and discussion posts. not too many tests. she also posts the slides if you miss something. you dont have to attend lectures but if you do she gives credit.", + "pos": 0.149, + "neu": 0.829, + "neg": 0.022, + "_id": { + "$oid": "6711d3eecd60fca157e5adf2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3efcd60fca157e5adf4" + }, + "professor_name": "Kay Bell", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Professor Bell is very knowledgable and her lectures are always interesting. She gives clear directions and outlines for all the essays and assignments. You will pass easily if you do the work and participate in class!", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5adf5" + } + }, + { + "text": "I absolutely love this professor. The class is easy to pass, you just have to do the assignments. She is very nice and caring and the lectures are always interesting.", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5adf6" + } + }, + { + "text": "This was one of the most irritating classes I've taken. She has an attitude the whole time and has a tendency to be condescending and speaks to us like we're one of her children. During discussions if someone disagrees with her she doesn't consider their POV and proceeds to tell them why their opinion is wrong or will just dismiss it all together.", + "pos": 0.036, + "neu": 0.841, + "neg": 0.124, + "_id": { + "$oid": "6711d3efcd60fca157e5adf7" + } + }, + { + "text": "She was possibly one of the best professors i ever had, i wish i could take her class again. you learn so much and her classes are engaging. definitely take her class!!!!!!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5adf8" + } + }, + { + "text": "I had professor Bell during spring semester of 2022. The discussions/lectures were straight forwards and easy to understand. There's about 4 essays and a final but they were easy if you follow the outlines provided. She's understanding and will answer questions you have.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5adf9" + } + }, + { + "text": "she's so nice and really lenient. her classes are engaging and don't feel long at all. the classwork/hw is pretty easy, and she makes the essays so easy and gives us outlines. participating in this class is so easy. just follow the syllabus and essay outlines and you'll be good!!", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5adfa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3efcd60fca157e5adfc" + }, + "professor_name": "Paula Collins", + "rating": 2.9, + "department": "Education department", + "comments": [ + { + "text": "I would strongly suggest that if you see this professor name drop her class immediately. She is so unprofessional, and too involve in her students personal life. Instead of helping me for the semester she gave me stress and anxiety.", + "pos": 0.088, + "neu": 0.692, + "neg": 0.221, + "_id": { + "$oid": "6711d3efcd60fca157e5adfd" + } + }, + { + "text": "This professor did not care about the students. She put her students on the spot all the time. There was no structure on her class and she was all over the place talking about whatever came in her mind. Don't take her class you'll feel miserable.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d3efcd60fca157e5adfe" + } + }, + { + "text": "Collins spends most time of class talking about her personal stuff she does not teach content. She rehashes same thing over and over again. She overwhelmed us with writing assignments + plenty of reading and 2 projects in 4 weeks. She is also biased and unpredictable. She has her favs. Even though I got an A I would not recommend her.", + "pos": 0.019, + "neu": 0.915, + "neg": 0.066, + "_id": { + "$oid": "6711d3efcd60fca157e5adff" + } + }, + { + "text": "This professor did not care about the students.She put her students on the spot all the time. There was no structure on her class and she was all over the place talking about whatever came in her mind. Don't take her class you'll feel miserable.", + "pos": 0.0, + "neu": 0.84, + "neg": 0.16, + "_id": { + "$oid": "6711d3efcd60fca157e5ae00" + } + }, + { + "text": "Student teaching seminar: Collins is a person you will remember for the rest of your life. She really and truly cares about her students' well-being and success. A very strong personality. Get on her good side.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5ae01" + } + }, + { + "text": "EXCELLENT TEACHER! She really does care about her students. The work is hard and the test aren't fun but she will honestly help someone when they need it and ask for it. The entire class was sad at the end of the semester. She's one of the GREATEST. She's someone to admire.", + "pos": 0.322, + "neu": 0.581, + "neg": 0.097, + "_id": { + "$oid": "6711d3efcd60fca157e5ae02" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3efcd60fca157e5ae04" + }, + "professor_name": "Simanique Moody", + "rating": 4.1, + "department": "Anthropology department", + "comments": [ + { + "text": "I loved Professor Moody. She had a clear grading system and she gives you ample opportunities to make up assignments or get points. The class was super easy especially with her guidance. There are no tests everything is basically class work graded. She works with the classes to schedule dates that would work best for use. Overall amazing.", + "pos": 0.308, + "neu": 0.631, + "neg": 0.061, + "_id": { + "$oid": "6711d3efcd60fca157e5ae05" + } + }, + { + "text": "Amazing professor: very accessible outside of the classroom, extremely knowledgeable, passionate about her subject, caring for her students and their success, and gives extra credit opportunities to boost students' grades.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5ae06" + } + }, + { + "text": "All the readings were available in the CUNY database. I took her for the Spring 2020 semester at Brooklyn College. She's very understanding as a professor and gives her quieter students the chance to get credit for class assignments if they don't want to participate in class. Her assignments were pretty easy. A paper, research project, and debate.", + "pos": 0.165, + "neu": 0.816, + "neg": 0.019, + "_id": { + "$oid": "6711d3efcd60fca157e5ae07" + } + }, + { + "text": "She's good, very caring and inclusive. Nice to listen to and keeps the tempo up but not too fast.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d3efcd60fca157e5ae08" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3efcd60fca157e5ae09" + } + }, + { + "text": "This is the worst professor I have ever taken. She is completely useless, goes off topic, never reads exams and grades based on perceptions and just skims through. I had written a nice paper and she said I didn't cite, false and degrading, she basically didn't read it. Very poor communication and hard to understand her English. Stay away.", + "pos": 0.039, + "neu": 0.74, + "neg": 0.221, + "_id": { + "$oid": "6711d3efcd60fca157e5ae0a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f0cd60fca157e5ae0c" + }, + "professor_name": "Brian Brice", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Brian was my teacher at a university in Mongolia. He taught me business English and he also had an IBT prep class. The best thing about him was his sense of his humor and kindness. He was so funny and kind. Because of him I gained the confidence to use English and I got a high enough score on the IBT. Thank you for everything, bagshaa.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae0d" + } + }, + { + "text": "I heard this guy became disillusioned with higher ed and started traveling. Too bad - easily one of the best professors CCNY had to offer. He was always available to help whether it was his office hour or not, explained everything clearly, and was funny as hell. A great man.", + "pos": 0.231, + "neu": 0.581, + "neg": 0.188, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae0e" + } + }, + { + "text": "This man is a genius.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae0f" + } + }, + { + "text": "Brian was like a cross between a great philosopher and a great comedian in that he knew when to be serious, but always broke the ice with a joke. His wit was also remarkable; for example, once I said to him, \"You're sweating,\" and he replied, \"And I still smell better than you. Now get to work.\" A cool, smart, funny guy, and a man's man.", + "pos": 0.342, + "neu": 0.604, + "neg": 0.054, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae10" + } + }, + { + "text": "ive never had a teacher who looks and sounds like he could kick my ass before, so that was kind of cool. he's a really funny, down-to-earth guy who knows his stuff. also gives really good advice when it comes to writing papers. all he wants is for you to do the reading so he's pretty easy.", + "pos": 0.247, + "neu": 0.704, + "neg": 0.049, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae11" + } + }, + { + "text": "This guy is the coolest professor I've ever had. He has an awesome wild west mustache, he's huge, he speaks German, Latin, and Italian, cracks inappropriate jokes, and has an amazing grasp of the material that one would not expect from someone so young. Most of all, his sense of humor is so off-the-wall. Gotta love that. He should do stand-up.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae12" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f0cd60fca157e5ae14" + }, + "professor_name": "Neelam Prashad", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Prof. Prashad was such an amazing instructor. Her lectures were interesting. I'm glad I took this class. I had a great time.", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae15" + } + }, + { + "text": "She was one of the better, if not the best, TAs avaiable for Intro to Psychology. She was funny in a dorky kind of way, presented the material clearly, and you could tell she really cared about her students by the way she enages with them. She's quick to update information that yoi need to know and actually responds to emails! She's really cool ok?", + "pos": 0.186, + "neu": 0.744, + "neg": 0.07, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae16" + } + }, + { + "text": "She is a great professor! She truly cares about her students. Give 3 exams, quizzes every week and 1 departmental final(cumulative). There is a project due for the class which she help you do. She also offers extra credit. Attendance is mandatory! Definitely take her, she's sweet and always available for her students in person or via email.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae17" + } + }, + { + "text": "She is so sweet and helpful! Her lectures are clear and she is always ready to help. Responds to emails quickly and is wiling to meet you for extra help. She gives a lot of HW and quizzes but they do help you out. 3 super easy exams and 1 departmental final, plus a simple project she helps you with. Totally recommend her!", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae18" + } + }, + { + "text": "She is the best stats professor ever! She is hilarious, caring, amazing, and helps students as much as she can. She teaches the textbook with her slides and breaks everything down, but make sure to read the textbook either online or book form (unless you're a fast learner). There is weekly hw & quizzes, 3 exams and 1 department final, all easy.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae19" + } + }, + { + "text": "She was a TA for psych102 for me. I would recommend her. She's always available by email and would respond pretty fast if i need help with papers, due dates, grades, etc. Very helpful. the lab quizes are hard since we learn the material really quickly and then right away we get the quiz. not her fault tho. she doesnt make the quiz.", + "pos": 0.191, + "neu": 0.79, + "neg": 0.019, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae1a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f0cd60fca157e5ae1c" + }, + "professor_name": "Johnny Ramroop", + "rating": 3.2, + "department": "Biology department", + "comments": [ + { + "text": "He's might be on the tough side in terms of grading, but he welcomes questions anytime, and you can stay with him after class to review concepts and lab reports. He's a harsh grader but curve. Lastly, you can tell that he cares about the students. Although tough, but 10/10 experience.", + "pos": 0.125, + "neu": 0.762, + "neg": 0.113, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae1d" + } + }, + { + "text": "DO NOT TAKE HIM", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae1e" + } + }, + { + "text": "He is a good person but not a good TA. Do yourself a favor and don't take him. I was fooled by the older reviews he is not at all clear with his instructions, gives more work than other TAs, and is a very harsh grader. And most importantly, he does not give grades back in time. Sem is almost over and I am still waiting for my assignment grades.", + "pos": 0.104, + "neu": 0.737, + "neg": 0.159, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae1f" + } + }, + { + "text": "I have never had worse TA in my entire life. He's funny and friendly but he's very unorganized, extremely late on grading and not responsive outside of class at all. If you have a question don't bother emailing him because he will not read them. Class is easy but TA being unhelpful and unorganized makes it a lot more stressful than it needs to be.", + "pos": 0.157, + "neu": 0.746, + "neg": 0.097, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae20" + } + }, + { + "text": "Johnny is an amazing TA, definitely should take him. He genuinely wants you to pass and wants you to succeed. He is very understanding and is willing to explain your mistakes to you without belittling you. He is also very easy going and talkative. One of the best TAs at CCNY for sure. He should definitely teach Bio 101.", + "pos": 0.292, + "neu": 0.675, + "neg": 0.033, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae21" + } + }, + { + "text": "An amazing TA! One of the best lab instructors there is due to how he really makes you want to understand the material and truly helps you. He really wants his students to succeed but you have to do the work for it! An amazing person and is there for you academically as well as personally.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d3f0cd60fca157e5ae22" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f1cd60fca157e5ae24" + }, + "professor_name": "Yael Wyner", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "While the course was reading heavy with quizzes, Professor Wyner made the content intriguing and fun as she was always prepared with the activities and lessons. She also prepared us for the STEAM Festival well in advance to make sure we didn't get lost behind the content. Overall, she is a lovely professor to have and I'd definitely take her again!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae25" + } + }, + { + "text": "Professor Wyner is one of the most engaging and empathetic science educators that I've had. I've taken 4 courses with her and they were challenging but fun. Her courses seldom require textbooks since she curates and sources a bulk of the content - which saves money. I've struggled along the way, but she was always willing to help. 10 out of 10!", + "pos": 0.185, + "neu": 0.772, + "neg": 0.043, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae26" + } + }, + { + "text": "Prof. Wyner is a good professor. I believe it was her first time teaching SCI126, so she wasnt very good at it. Her lectures were confusing and we didnt learn much. She isnt specific about her assignments. Participation and attendance matters in her class. Must hand in assignments on time! Overall okay professor, but not the best.", + "pos": 0.101, + "neu": 0.773, + "neg": 0.125, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae27" + } + }, + { + "text": "Loved the material we learned, the discussions in class were always interesting and engaging and there wasn't anything above the average work load. The class was pleasurable, and I would take it again.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae28" + } + }, + { + "text": "Amazing personality, and overall a clear professor. Tough grader though, but an A is manageable if you pay attention to what she wants exactly and handing in assignments on time is very crucial.", + "pos": 0.117, + "neu": 0.804, + "neg": 0.079, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae29" + } + }, + { + "text": "She's really nice and pretty understanding but you have to do the assignments on time.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae2a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f1cd60fca157e5ae2c" + }, + "professor_name": "Melissa Maldonado-Salcedo", + "rating": 4.9, + "department": "Anthropology department", + "comments": [ + { + "text": "She was the best professor ever! As long as you do your required work you will do fine. she made the class very interesting and a lot of fun. Participation is a must but with a bit of effort it pays off. wish she was teaching other levels of anthro at ccny but i don't think she's around anymore.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae2d" + } + }, + { + "text": "If you need to take anthropology, do everything you can do to get in her class. If you are in her class, pay attention and don't be afraid to interact. She likes students who speak up and contribute to the class. I took her last semester and am wishing I could take another class with her.", + "pos": 0.08, + "neu": 0.897, + "neg": 0.024, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae2e" + } + }, + { + "text": "Very nice Latina prof. She's so cute, and open minded. She feels her field and know the material. Too bad she's not teaching next semester.I really love that class and prof. maldonado", + "pos": 0.267, + "neu": 0.652, + "neg": 0.081, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae2f" + } + }, + { + "text": "You learn soo much in this class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae30" + } + }, + { + "text": "She is interesting. She actually gives work, so don't expect to slack off and get a good grade. The text book is needed. She is very organized. Her syllabus has EVERYTHING. She is also very email oriented. For example, she could send you an email cancelling class on the day of class, so you should always check before class.", + "pos": 0.088, + "neu": 0.883, + "neg": 0.028, + "_id": { + "$oid": "6711d3f1cd60fca157e5ae31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f2cd60fca157e5ae33" + }, + "professor_name": "William Lung", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Will was an awesome professor for the Speech class. As someone who really hated public speaking, my speech delivery skills greatly improved after taking his class. He's also extremely sweet and encouraging.", + "pos": 0.315, + "neu": 0.588, + "neg": 0.098, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae34" + } + }, + { + "text": "This is my second time taking Prof. Lung's creative writing class and I enjoy his class every time. He is very nice and lenient and as long as you are participating in class you'll be fine. He assigns readings and in-class writing assignments; you just have to do it and an A wouldn't be a hard reach.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae35" + } + }, + { + "text": "An amazing professor who I would take over and over if I could! He is the best to take if you're pursuing writing in anyway as a profession.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae36" + } + }, + { + "text": "Professor Lung is great !! He is very helpful and gives constructive honest feedback. He is respectful, articulate, and caring. Get ready to read but you learn and improve your writing throughout the course.", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae37" + } + }, + { + "text": "He's great professor , he would go out his way to help you if its needed. in class he goes over the reading that he tell you to read. do read what he assigned or he well get upset at times if you don't. he helps you improve in your writing and give you feed back on how you can improve. He does give lot of reading but as long you keep up u be fine.", + "pos": 0.144, + "neu": 0.815, + "neg": 0.041, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae38" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f2cd60fca157e5ae3a" + }, + "professor_name": "Mary Myers", + "rating": 4.1, + "department": "Theater department", + "comments": [ + { + "text": "worst professor of the department. I got an A but this woman shouldn't be teaching this class. I feel it was a waste of money and time. She makes you buy so much stuff that you won't even use. Her comments are not constructive. If your vision disagrees with hers, she will say that yours is wrong. DON'T TAKE HER", + "pos": 0.035, + "neu": 0.776, + "neg": 0.188, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae3b" + } + }, + { + "text": "Keys to getting an A in this intro to set design class is 1. Showing up for every class, 2. Doing every weekly assignment/model set project according to the outlines, 3. PAY ATTENTION TO FEEDBACK! If you aren't good at receiving constructive criticism, you will not do well in this class. Also have to attend 3 school plays & take 1 mid-term.", + "pos": 0.029, + "neu": 0.832, + "neg": 0.139, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae3c" + } + }, + { + "text": "Great personality, I learned much more than I expected.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae3d" + } + }, + { + "text": "Took this professor for costume design. She's a very sweet lady and is very helpful at heart. She may not seem that way at first, but she has to get to know you. She really knows her stuff. She has a low tolerance for Slacking it shows in her undertones. Just do your work, show up on time and put in effort. She can tell when you have tried.", + "pos": 0.127, + "neu": 0.838, + "neg": 0.035, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae3e" + } + }, + { + "text": "Mary Is a great teacher and is very helpful. She is always willing to help you if you need it and has an open ear when you have an issue.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae3f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f2cd60fca157e5ae41" + }, + "professor_name": "Rob Domanski", + "rating": 4.7, + "department": "Political Science department", + "comments": [ + { + "text": "This teacher is always smiling and is very helpful. He is a great guy and he helps a lot before finals. His tests are straightforward and tells us the content beforehand. He'll also keep you interested in political science, he is a must-take.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae42" + } + }, + { + "text": "he is very good at his job also, he teaches very fast which is a good thing for those taking him in the summer. if you show up everyday you'll get an A", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae43" + } + }, + { + "text": "Great teacher, tries to keep the class up and interested. Easy papers but the quizes are a bit annoying (they're every week) which makes it real easy to mess up, and he gives review for exams. Straight forward, no surprises.", + "pos": 0.235, + "neu": 0.6, + "neg": 0.165, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae44" + } + }, + { + "text": "He's cool, quizzes and exams are straight forward. If you do the readings and do well on the exams and papers, you'll be fine. He's young, so he can pretty much relate to the students. Overall, he doesn't give you any problems or headaches.", + "pos": 0.221, + "neu": 0.727, + "neg": 0.052, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae45" + } + }, + { + "text": "He is a young professor which is good thing but msot of them are OLD. He knows about technology and the media. I just hope City College will be smart and kept him but being the great school that is will probably let him go.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d3f2cd60fca157e5ae46" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f3cd60fca157e5ae48" + }, + "professor_name": "Bindeshwari Aggarwal", + "rating": 3.6, + "department": "Languages department", + "comments": [ + { + "text": "If you don't understand some hindi prior to the class, she will be unclear. But she is so lenient during class and if you have classmates who do speak hindi, you're fine. She is SO SO SO lenient on grades, it is worth taking this. It is a grade booster and a funny/relaxing class to be in.", + "pos": 0.238, + "neu": 0.741, + "neg": 0.021, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae49" + } + }, + { + "text": "She's so funny...if you understand hindi that is. she just makes my day and her class is def a break from my hectic schedule. an easy A and an enjoyable class as long as you show her you care and are trying a little.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae4a" + } + }, + { + "text": "She is a very nice elderly woman. Easy A, as long as u show some effort to learn Hindi. Just show up to class, do all the assignments, and you'll be fine. She is so nice that she will let u take a test over if u did poorly. I recommend this class even if u have never spoken hindi or wrote it-like me.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae4b" + } + }, + { + "text": "This class is quite easy, prof. is very lax re: homework and tests. I studied a lot b/c I really want to learn the language, but you could do well w/o studying very much. The problems I had were that the prof never goes over grammar in class, relies to much on the book, doesn't really answer questions, and classwork is just busywork.", + "pos": 0.088, + "neu": 0.855, + "neg": 0.057, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae4c" + } + }, + { + "text": "This teacher is very laid back re: homework and tests. Also, is very willing to help outside of class. Even if you don't study a lot (which is important for a language), you will pass or might do well. My problems were: she never goes over the important grammar in class, relies too mush on the book, and doesn't really answer questions.", + "pos": 0.127, + "neu": 0.834, + "neg": 0.039, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f3cd60fca157e5ae4f" + }, + "professor_name": "See Chiu", + "rating": 4, + "department": "Computer Science department", + "comments": [ + { + "text": "Good professor. Will help you if you need it. He's funny and the exams are similar to the review sheets he gives. However, his TA amir is the worst so prepare for that", + "pos": 0.204, + "neu": 0.697, + "neg": 0.099, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae50" + } + }, + { + "text": "Helpful and excellent professor in computer science class", + "pos": 0.52, + "neu": 0.48, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae51" + } + }, + { + "text": "The one flaw I would say Professor Chiu has is that he doesn't give good feedback on HW. He just posts grades and you'll have to talk to him privately for details on your grade. He has a weird policy about not giving people 100s even though they deserve it but otherwise, he is a good professor. By far the best for this course so far.", + "pos": 0.128, + "neu": 0.811, + "neg": 0.061, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae52" + } + }, + { + "text": "He's a really nice guy, and his assignments aren't very difficult. His lectures can be boring since he reads from the slides, but he definitely tries to engage the students. If your really want to take a lot from this class you will have to go out of your way to do so.", + "pos": 0.201, + "neu": 0.772, + "neg": 0.027, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae53" + } + }, + { + "text": "Was actually easier than expected. Had to study but not too much. Take him if you can you'll actually pick up something useful!", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae54" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f3cd60fca157e5ae56" + }, + "professor_name": "Aidan Byrne", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "excellent professor.funny and helpful. not boring at all.", + "pos": 0.629, + "neu": 0.371, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae57" + } + }, + { + "text": "great professor..very helpful..easy grader..fun class", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae58" + } + }, + { + "text": "Funny, smart, and helpful. Great.", + "pos": 0.926, + "neu": 0.074, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae59" + } + }, + { + "text": "Great instructor with and intersesting humor. His stories are really funny. Also he's good at teaching and very helpful.", + "pos": 0.524, + "neu": 0.476, + "neg": 0.0, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae5a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3f3cd60fca157e5ae5b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f4cd60fca157e5ae5d" + }, + "professor_name": "Anna Cannon", + "rating": 3.9, + "department": "Art department", + "comments": [ + { + "text": "Take her if your interested in art since she knows a ton about art.If your trying to take an easy liberal arts,dont take this class.Have to memorize 40 slides for the midterm n final.8-10 pg paper which counts alot,although she is a lenient grader and tries to give you points whenever she can.Again though,if you dont like art you will be bored.", + "pos": 0.112, + "neu": 0.827, + "neg": 0.061, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae5e" + } + }, + { + "text": "HW is do-able. HER midterm/final are ridiculous. Really? we're sspose to memorize 80works of art just to answer 10 of them? That is just too big of a gap. If this was the only class I was taking for a semester, then yea no problem but thats not the case. Also she cant manage time. 80%of the time im late for my next class.", + "pos": 0.025, + "neu": 0.943, + "neg": 0.032, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae5f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae60" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae61" + } + }, + { + "text": "Prof. Cannon is so good that i just have no words to describe her. The assignments she assigns, she wants to do them good; not rushing and accepts them even after a month of the due date.", + "pos": 0.152, + "neu": 0.753, + "neg": 0.095, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae62" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f4cd60fca157e5ae64" + }, + "professor_name": "Alan Sumler", + "rating": 4.8, + "department": "Classics department", + "comments": [ + { + "text": "awesome awesome teacher. super helpful and really interesting. his class is really engaging and he give great notes. i never miss this class not because attendance is really mandatory but because it really is great.", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae65" + } + }, + { + "text": "Awesome professor. He is really cool and knowledgeable about many subjects. He makes classic Greek myths shine as he compares them to topical issues in society and pop culture like south park.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae66" + } + }, + { + "text": "There's NO way you can fail this class. He goes over some words on the review [YES, he does give reviews]. The words on the review are the ones on the test or quizes. He is pretty honest and he will apologize when a chapter is boring but trust me he will try to make it fun. Gives extra credit when it group work day! Funny, nice, & willing to help!", + "pos": 0.331, + "neu": 0.607, + "neg": 0.061, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae67" + } + }, + { + "text": "This class was hard. I liked the prof though. I worked hard and got an A. From Brooklyn College", + "pos": 0.13, + "neu": 0.741, + "neg": 0.13, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae68" + } + }, + { + "text": "awesome class! very fun and well structured. he keeps you interested in the subject and films, and best of all you're allowed to snack during the films! it would be a pity to miss a single class.", + "pos": 0.342, + "neu": 0.584, + "neg": 0.074, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae69" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f4cd60fca157e5ae6b" + }, + "professor_name": "Kimberly Belmonte", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "She gives quizzes every week based on what she taught that week. Gives study guides to midterm and final. Fair grader. 4 papers. Likes student feedback in ways she can improve teaching and will apply it right away. Please take her, she's the prime example of what a model professor should be. You will learn with and your given a fighting chance", + "pos": 0.174, + "neu": 0.791, + "neg": 0.035, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae6c" + } + }, + { + "text": "12 quizzes, 3 papers, and a final. Professor Belmonte gives you feedback on your papers and allows you to redo them, which is a lifesaver. She really is a kind and sweet person, and gives you many opportunities to get the highest grade possible. Take her, she is a gem.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae6d" + } + }, + { + "text": "TAKE HER. So sweet and tries as much as she can to make you understand what's happening in class. It's Experimental Psych, so prepare yourself with the assignments (three papers, 12 online quizzes, classwork and department final). She gives you a chance to do rewrites and gives extra credit! She was literally the guardian angel of my semester.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae6e" + } + }, + { + "text": "Great Professor for Experimental. Cares for her students and is very understanding. It's Experimental so you should be ready to work regardless. I would recommend her to anyone.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae6f" + } + }, + { + "text": "She's a great professor. She likes to help students on their assignment. Since its an Experimental psych, expect a lot of assignments. She's an easy grader, but study book and lecture slides to pass the exam. She'll give a chance to rewrite the exam answers you got wrong. Definitely taking class with her again next semester!!!", + "pos": 0.222, + "neu": 0.717, + "neg": 0.061, + "_id": { + "$oid": "6711d3f4cd60fca157e5ae70" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f5cd60fca157e5ae72" + }, + "professor_name": "Anita Devineni", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "She is one of my favorite bio profs. She is extremely smart and knowledgeable and knows everyone in the class. This is my second time taking a class with her, which is much more works and harder, but she gives about 10 points curves at the end. You will learn a lot from this class if you put in efforts. I wish I can take another class with her.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae73" + } + }, + { + "text": "Prof. Devineni is the best lecturer at CCNY. I took her for neuro and it was a lot of work but has become my favorite class my entire undergrad career at CCNY. Every week its either a quiz, hw, presentation, test, or paper. She made a 2 1/2 hour class feel like an hour. She made such a difficult topic a lot of fun to learn!", + "pos": 0.185, + "neu": 0.774, + "neg": 0.041, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae74" + } + }, + { + "text": "She was excellent. Very passionate and extremely intelligent. The summer lectures are long but she kept it interesting and engaging. She truly cared about whether students learned the material. Highly recommend!", + "pos": 0.521, + "neu": 0.479, + "neg": 0.0, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae75" + } + }, + { + "text": "Anita came as an adjunct to teach genetics for the first time during the summer semester, and she was wonderful. Amazing spirit.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae76" + } + }, + { + "text": "Excellent professor. Her lectures are really interesting and crystal clear. However, exams are not that easy, the average is usually around 60s. But she curves the exam average to 75, which helps a lot. Getting an A is possible, you just have to pay attention in class, redo the in class and recitation problems, and skim the textbook.", + "pos": 0.142, + "neu": 0.757, + "neg": 0.102, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae77" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f5cd60fca157e5ae79" + }, + "professor_name": "Jennifer Gao", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Jennifer was the best. She is so sweet and is always very clear of what she expects from us, wants us to succeed and will give opportunities to raise your grade IF you choose to see her about it.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae7a" + } + }, + { + "text": "Literally, one of the best TAs I ever had. She cares so much about the students, if youre having trouble just talk to her and she will definitely help you out. Super fair when grading and is a super nice person in general. When you email her, she will get back to you ASAP, and she also gives helpful study guides for exams. You can count on her.", + "pos": 0.318, + "neu": 0.652, + "neg": 0.03, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae7b" + } + }, + { + "text": "She is one of the best TA I ever had. I would love to take her class again. She is such a caring person if you are struggling in the class just talk to her, she will understand.", + "pos": 0.24, + "neu": 0.702, + "neg": 0.058, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae7c" + } + }, + { + "text": "Great class but homework every week. A lot of work but will definitellh great TA", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae7d" + } + }, + { + "text": "I really liked the course.", + "pos": 0.436, + "neu": 0.564, + "neg": 0.0, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae7e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f5cd60fca157e5ae80" + }, + "professor_name": "Ryan Dinanauth", + "rating": 3.4, + "department": "Biology department", + "comments": [ + { + "text": "Ryan was a great lab instructor. Do not listen to negative comments from lazy people who refuse to use the feedback he provided from previous lab reports to improve themselves. He was fair, he gave tons of extra credit, ALL the quizzes were related to the labs. If you needed help he was available for office hours.", + "pos": 0.247, + "neu": 0.687, + "neg": 0.066, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae81" + } + }, + { + "text": "Ryan is the TA for bio2, not the Professor, and he was such a harsh grader. The only reason why I passed this class was because I got 90s in lecture which helped me tank my lab grade", + "pos": 0.0, + "neu": 0.927, + "neg": 0.073, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae82" + } + }, + { + "text": "Ryan was my lab TA for BIO102. Super nice. Lab quizzes every week on the lab of that specific week so make sure you read up. Quizzes are super easy, simple, straightforward questions such as definition questions. He tells you what you need to study for the lab exams. I would say he's an OK to lenient grader. Take him if you can. One of the best TAs", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae83" + } + }, + { + "text": "I regret listening to the previous review, thinking that Ryan was going to be great. BUT NO. His quizzes were questions that arent even related to lab, and his lab exams are the worst. He was never clear on what he wants, then blames us for not being clear enough. TAKE WITH CAUTION!!", + "pos": 0.038, + "neu": 0.704, + "neg": 0.258, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae84" + } + }, + { + "text": "Ryan is the man! His wealth of scientific knowledge is contagious. His enthusiasm for teaching made me reconsider pursuing a career in medicine for ecology.", + "pos": 0.208, + "neu": 0.714, + "neg": 0.078, + "_id": { + "$oid": "6711d3f5cd60fca157e5ae85" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f6cd60fca157e5ae87" + }, + "professor_name": "Yahdon Israel", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "He is very arrogant. He's always right. When you write your paper he makes you add personal information you did not want to include. He puts you on blast in front of the whole class and writes on the board everything you did wrong. He sometimes makes people feel bad/ treats students like they are dumb.", + "pos": 0.037, + "neu": 0.745, + "neg": 0.218, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae88" + } + }, + { + "text": "Tbh he's okay. You basically grade yourself he says he gives us the \"power\". Personally haven't learned much. He's always late to class and then its like the repeated cycle every time. Makes you work on one paper throughout the semester and tells you to write in \"your own words\" but when you come to class to \"edit\" completely changes your words.", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae89" + } + }, + { + "text": "The best professor out there!!!", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae8a" + } + }, + { + "text": "Prof. Israel is one of the best professors Ive ever had. The amount of confidence and skills Ive gained have shaped me as a writer and how I see my own voice. Hes genuinely funny, caring, understanding, insanely intelligent and most of all he understands peoples struggles and can help you open up to writing. Absolutely love his class, the best", + "pos": 0.364, + "neu": 0.606, + "neg": 0.03, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae8b" + } + }, + { + "text": "This is probably gonna sound cheesy but he definitely inspired me when it came down to writing. The assignments are pretty easy especially because he makes you open up and talk about you. He grades based on the papers and participating in class especially on the books or articles. Fair grader too! Would definitely take his class again!", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae8c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f6cd60fca157e5ae8e" + }, + "professor_name": "Samaneh Farokhirad", + "rating": 4.8, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "She understands the material very well and is very good at explaining new concepts. Lectures are vry long, 3 hours, and she somehow teaches through the whole thing. Answers any questions, clarify, or repeat something you didn't get. Available by email and office hours. Exams are fair, projects ar HARD. I learned much more than I expected. QUIZ/WEEK", + "pos": 0.123, + "neu": 0.843, + "neg": 0.033, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae8f" + } + }, + { + "text": "This instructor knows the stuff and teach it very nice. Too many works but it you will learn from each ....", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae90" + } + }, + { + "text": "this course helped me to recover my previous courses such as calculus, linear algebra, programming .... She is very clear in the lectures. Never miss office hours, she spends a lot of time to make sure you get it !", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae91" + } + }, + { + "text": "She should teach all courses in the ME department. Lectures are amazing and assignments are interesting. You have to spend a lot of time on this course ...", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae92" + } + }, + { + "text": "Very interesting course. Although it need a lot of work but I think it worth it. She is very knowledgeable and clear in the lectures. Very good professor !", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae93" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f6cd60fca157e5ae95" + }, + "professor_name": "Kiran Chandra", + "rating": 3.4, + "department": "Art department", + "comments": [ + { + "text": "I did not like as a teacher. We had to make two presentations and she did not even explain what you wanted and then when students made their presentations always criticized them in front of the class. i She did not teach anything in class to help us become better teachers.", + "pos": 0.098, + "neu": 0.822, + "neg": 0.081, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae96" + } + }, + { + "text": "I did not like her as a teacher. We had to make two presentations and she did not even explain what she wanted beforehand. Then when students made their presentations she always criticized them in front of the class. She did not teach anything in class to help us become better teachers. Practically, students must be taught one to each other.", + "pos": 0.083, + "neu": 0.848, + "neg": 0.069, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae97" + } + }, + { + "text": "Chandra knows what being a good teacher is all about and challenged me to step outside the common core standards. Chandra encourages you to get your hands dirty with art materials in order to help put yourself in the children's perspective. I learned about a lot of artists and their techniques that are great examples for the future.", + "pos": 0.183, + "neu": 0.755, + "neg": 0.062, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae98" + } + }, + { + "text": "Ready for doing presentation?", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae99" + } + }, + { + "text": "Professor Chandra is truly an amazing artist and art educator. For those who are in education major or planning to be, she's the one for you! She is critical yet inspiring. She helps her students to build up their skills to create curriculumlesson plans as art educator. always give helpful feedback! I've learned a LOT from her! One of the best!", + "pos": 0.288, + "neu": 0.682, + "neg": 0.03, + "_id": { + "$oid": "6711d3f6cd60fca157e5ae9a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f7cd60fca157e5ae9c" + }, + "professor_name": "Dan Shargel", + "rating": 3.5, + "department": "Philosophy department", + "comments": [ + { + "text": "Easy grader. Willing to answer question if anyone has question. Lateabsent.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d3f7cd60fca157e5ae9d" + } + }, + { + "text": "Pretty nice dude. Knows his stuff well. Clear explanations, patient in explaining. Just make sure you come on time because lateness = absent.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d3f7cd60fca157e5ae9e" + } + }, + { + "text": "With him, late = absent. Can go offtopic. Explains topic if any1 has questions. Textbook 100% not needed, not even exams. Easy grader, still have to study tho. Easy to talk to and very helpful one-on-one. Only one paper due, easy assignment. Easy A class", + "pos": 0.218, + "neu": 0.738, + "neg": 0.044, + "_id": { + "$oid": "6711d3f7cd60fca157e5ae9f" + } + }, + { + "text": "really nice guy. never thought i would find philosophy so interesting! hws are pretty easy-- as long as you have your facts right, you will get good grades. there is one presentation (only 10 minutes) which is really as well.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d3f7cd60fca157e5aea0" + } + }, + { + "text": "Grades way to hard! When people in the class tried to ask questions he would totally go off topic and begin talking about something new. Does not manage time well and introduces new topics with 10 minutes remaining in class. Cool thing about him is everything is done through email. Bottom line, grades way to hard.", + "pos": 0.039, + "neu": 0.878, + "neg": 0.083, + "_id": { + "$oid": "6711d3f7cd60fca157e5aea1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f7cd60fca157e5aea3" + }, + "professor_name": "Charles Burks", + "rating": 4.3, + "department": "Theater department", + "comments": [ + { + "text": "I didn't feel like a learned anything with him, he's time management is horrible, and as for acting realism goes I didn't learn any concrete skill. He's a great person though, just never miss or come late to his classes. If you want an easy A he's definitely the one you should go to, but if you want to learn a lot.... neeehhh", + "pos": 0.147, + "neu": 0.797, + "neg": 0.055, + "_id": { + "$oid": "6711d3f7cd60fca157e5aea4" + } + }, + { + "text": "He is the best !", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d3f7cd60fca157e5aea5" + } + }, + { + "text": "If you need an elective, take it. One midterm that was fairly easy if you paid attention and skimmed the online textbook reading he assigned that one time. No final - he changed it to 2 one page essays that were opinion based. Only tough part of the class is overcoming your stage fright. Journals here and there but most of the writing is subjective", + "pos": 0.029, + "neu": 0.902, + "neg": 0.069, + "_id": { + "$oid": "6711d3f7cd60fca157e5aea6" + } + }, + { + "text": "a big hearted professional actor who grooms you for pro experience. can't say enough good things about him.", + "pos": 0.0, + "neu": 0.876, + "neg": 0.124, + "_id": { + "$oid": "6711d3f7cd60fca157e5aea7" + } + }, + { + "text": "Professor Burks loves acting and he loves teaching it. He really wants his students to learn so he can be a bit critical but it's generally good feedback. He also gives a lot of games for us to play to get closer to each other. Tough grader on monologue, but your final grade is based on your improvement throughout the semester. Overall, very fun!", + "pos": 0.26, + "neu": 0.698, + "neg": 0.042, + "_id": { + "$oid": "6711d3f7cd60fca157e5aea8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f7cd60fca157e5aeaa" + }, + "professor_name": "Joseph Moore", + "rating": 3.7, + "department": "Art department", + "comments": [ + { + "text": "When I signed up for this class I was expecting something else, more Photoshop projects but it wasn't, We had a lot of reading instead. Im not happy how he grades student, he asks for notebooks that he will check at the end of the semester! this NEVER will make sense to me. We are college students not High school.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d3f7cd60fca157e5aeab" + } + }, + { + "text": "No textbook, but get ready to read online material. He'll ask for you to take notes on a notebook, DO IT. You will have to hand in the notebook at the end of the semester. If you turn in all your assignments on time and participate in class, you'll be fine. He's a funny guy but have a coffee before class because he talks a lot.", + "pos": 0.178, + "neu": 0.801, + "neg": 0.021, + "_id": { + "$oid": "6711d3f7cd60fca157e5aeac" + } + }, + { + "text": "very nice, understanding, mellow guy but he is not a good teacher at all. For programming he didn't teach us anything. Seriously, just like here &there. He will give you a book, and you'll have to learn by yourself. If you've never coded you should get ready for watching youtube videos to get your assignments in. Not crazy enough to take again.", + "pos": 0.154, + "neu": 0.775, + "neg": 0.071, + "_id": { + "$oid": "6711d3f7cd60fca157e5aead" + } + }, + { + "text": "He's a Photoshop Ninja. Brush up before you get there. I like him. He opens us up to the world. The world's not just about class subject and for that, I really appreciate him. He will help you, but do your part. Be earnest in your work. Read--it's not hard. Our reading was online/print out. He's considerate that way, so we don't have to buy books.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d3f7cd60fca157e5aeae" + } + }, + { + "text": "slow but sure. get your coffee", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d3f7cd60fca157e5aeaf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb1" + }, + "professor_name": "Leopold Flatto", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "He doesn't reply to email , very messy lecture students doesn't know what it been teach , take points out not where on exams, does no like to give more than 80 on exam ,old school , can't hear what students ask,", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb2" + } + }, + { + "text": "Hi is very stingy about giving credit , take credit out no where on exams, horrible old profesor , does not care if u r learning , stay way from this guy if u can...", + "pos": 0.167, + "neu": 0.595, + "neg": 0.238, + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb3" + } + }, + { + "text": "hello, he explaing very slow, boring, this is my third time taking his class, but i wouldnt recomend to anyone taking his class, i know what i am saying if u can find other class just go..i took him cause had no choise", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb4" + } + }, + { + "text": "He is a fair grader and will take into consideration your improvement.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb5" + } + }, + { + "text": "This guy is probably a good 70+ years old, thus he takes his sweet time doing everything. Class-time is spent on doing examples. No clear breakdown of material.", + "pos": 0.178, + "neu": 0.756, + "neg": 0.066, + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb8" + }, + "professor_name": "naomi dambreville", + "rating": 1, + "department": "Psychology department", + "comments": [ + { + "text": "Extremely boring lectures. Doesn't really teach much. Only reads off the slides. Tests are extremely hard.", + "pos": 0.0, + "neu": 0.766, + "neg": 0.234, + "_id": { + "$oid": "6711d3f8cd60fca157e5aeb9" + } + }, + { + "text": "Very confusing lectures; does not address student questions clearly. Says \"sort of\" \"like\" \"um\" almost every other word it is extremely distracting. She just sits there and reads off her laptop, instead of engaging the class and expanding on the material. Seems like the whole class failed the midterm, but she accepted no responsibility for it.", + "pos": 0.149, + "neu": 0.723, + "neg": 0.128, + "_id": { + "$oid": "6711d3f8cd60fca157e5aeba" + } + }, + { + "text": "She need to be more fair on how she grade the exams. I wish she can read this, before she grade the final, so maybe all the students won't fail the exam. She gave to much material and wanted us to know all of it.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d3f8cd60fca157e5aebb" + } + }, + { + "text": "the most boring and inactive professor, I do not know how they even let her teach", + "pos": 0.0, + "neu": 0.853, + "neg": 0.147, + "_id": { + "$oid": "6711d3f8cd60fca157e5aebc" + } + }, + { + "text": "The midterm she gave is really hard and she is not clear on the questions. She gave multiple choice question on the test and 4 answers questions that she doesn't care what you put on that answers because she wanted exactly how it is on the book. Also she just sit the whole class and read what it is on the Blackboard. Really bad professor.", + "pos": 0.0, + "neu": 0.856, + "neg": 0.144, + "_id": { + "$oid": "6711d3f8cd60fca157e5aebd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f8cd60fca157e5aebf" + }, + "professor_name": "Elisa Riedo", + "rating": 4.2, + "department": "Physics department", + "comments": [ + { + "text": "I took this my first semester at City College, and I was terrified because I hate physics, but the class was pretty easy. There were 4 quizzes and 4 tests. The quiz would be on the Friday before the test and the test would be on the first day of class the next week. Lab was extra credit, all the questions were straight from the homework", + "pos": 0.177, + "neu": 0.762, + "neg": 0.062, + "_id": { + "$oid": "6711d3f8cd60fca157e5aec0" + } + }, + { + "text": "I actually enjoyed this class which was surprising. She really tries to make ample opportunities to do well including, extra credit and lab counts as bonus. Quizzes the Friday before exam really help you know what will be on the test. Lots of homework but it was very helpful! Definitely take her you won't regret it!", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d3f8cd60fca157e5aec1" + } + }, + { + "text": "I don't think she is that bad, but you definitely need to refer to the textbook. In class, she goes over the example problems in the book. Her quizzes and tests are pretty easy if you practice on your own and do the homework. We have lab but it counts as a bonus. She is very approachable and has an accent but you will understand everything she says", + "pos": 0.195, + "neu": 0.736, + "neg": 0.069, + "_id": { + "$oid": "6711d3f8cd60fca157e5aec2" + } + }, + { + "text": "Professor Elisa is not the best lecturer, however, test and quizzes are fairly easy. The quizzes are set up in a way that it is guaranteed you will pass the test. There are four questions for both quiz and test. Homeworks are given online by a website called Wiley plus and there are extra credit opportunities. You do not need to show up for class, if you read the textbook then you will do perfectly fine.", + "pos": 0.161, + "neu": 0.8, + "neg": 0.039, + "_id": { + "$oid": "6711d3f8cd60fca157e5aec3" + } + }, + { + "text": "She is very nice and if you want to pass just go over the homework. If you want a relaxed professor and class this is the one. Test is 60%, quizzes are 20%, and final is 20%. She gives extra credit and she makes the finals herself. Take her, unless there is a greater prof", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d3f8cd60fca157e5aec4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f9cd60fca157e5aec6" + }, + "professor_name": "Betsy Rorschach", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Great Prof. She is really knowledgeable. Her class were fun with a lot of hands-on activities. She shared a lot of her own experiences that i found quite useful. Also, she was available after the class, if anyone needed help. in this class, you had to read and do your work in order to benefit from it.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d3f9cd60fca157e5aec7" + } + }, + { + "text": "Wonderfully kind, smart and helpful professor.", + "pos": 0.865, + "neu": 0.135, + "neg": 0.0, + "_id": { + "$oid": "6711d3f9cd60fca157e5aec8" + } + }, + { + "text": "Very knowledgeable and helpful. I learned a lot of interesting things and the class discussions held were very thought provoking. She made us connect our field observations with classroom discussions and learning. Awesome class.", + "pos": 0.235, + "neu": 0.715, + "neg": 0.05, + "_id": { + "$oid": "6711d3f9cd60fca157e5aec9" + } + }, + { + "text": "Hypie like teacher. Very interesting, explains everything clearly, very understanding. Great teacher!", + "pos": 0.617, + "neu": 0.383, + "neg": 0.0, + "_id": { + "$oid": "6711d3f9cd60fca157e5aeca" + } + }, + { + "text": "Although this is not a very interesting class, Betsy is very friendly and extremely knowledgeable about her subject.", + "pos": 0.159, + "neu": 0.728, + "neg": 0.113, + "_id": { + "$oid": "6711d3f9cd60fca157e5aecb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3f9cd60fca157e5aecd" + }, + "professor_name": "Siobhan O'Connor", + "rating": 1.8, + "department": "Mathematics department", + "comments": [ + { + "text": "He do not know what he doing he smart but he can't teach to save his life. I never understood a thing and he too quick with everything", + "pos": 0.059, + "neu": 0.831, + "neg": 0.11, + "_id": { + "$oid": "6711d3f9cd60fca157e5aece" + } + }, + { + "text": "Siobhan isn't a bad professor- she's a fair grader and will stay after class to explain topics. At the same time she often struggles to explain things and will get frustrated when students don't understand. Topics were often made more complicated then needed to be. The class is very exam heavy and too large in size to get individualized help.", + "pos": 0.114, + "neu": 0.8, + "neg": 0.086, + "_id": { + "$oid": "6711d3f9cd60fca157e5aecf" + } + }, + { + "text": "N/A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3f9cd60fca157e5aed0" + } + }, + { + "text": "I'm sure this professor knows her stuff but certainly not how to teach. I found her disrespectful at times, she will laugh in your face if you ask a question she finds easy/dumb. She makes simple things very hard to understand. Your whole grade rides on homework and two tests. No thanks :)", + "pos": 0.148, + "neu": 0.723, + "neg": 0.129, + "_id": { + "$oid": "6711d3f9cd60fca157e5aed1" + } + }, + { + "text": "The class was very long and all over the place. I found it hard to learn in class. There is no extra credit and most of your grade relies on 3 exams. I would avoid this class if you can, but if not try to take this class with another professor.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d3f9cd60fca157e5aed2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3facd60fca157e5aed4" + }, + "professor_name": "John Lin", + "rating": 3.6, + "department": "Speech department", + "comments": [ + { + "text": "Definitely one of the most inspirational people ever. In terms of being a prof, he just wants you to put in effort and grow. Obviously if you slack, it'll show in your energy - i know it's just a speech class, but respect him! He's such an ambitious guy so that def motivates you to present yourself in a better light. He's a great guy :)", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aed5" + } + }, + { + "text": "Professor Lin can be funny at times but he did not make some students feel comfortable to even present their speeches. He would critize a lot, he is also a tough grader. I would not take him again!", + "pos": 0.154, + "neu": 0.806, + "neg": 0.04, + "_id": { + "$oid": "6711d3facd60fca157e5aed6" + } + }, + { + "text": "This class was very entertaining and helpful. Professor Lin is an amazing professor who makes the class laugh but is also very serious about assignments. He's also very caring and respectful. You have to watch a play for this class and do multiple speeches. If you actually do your work, it's not that difficult.", + "pos": 0.323, + "neu": 0.65, + "neg": 0.027, + "_id": { + "$oid": "6711d3facd60fca157e5aed7" + } + }, + { + "text": "I think everyone should take a speech class because it would be very beneficial. Professor Lin is a great professor, he makes the class laugh, but also knows when it's time to stop the games. There were more than 3 speeches for this class, and you have to watch a play, but the work was average. This was a very fun class, which I'd take again.", + "pos": 0.192, + "neu": 0.772, + "neg": 0.036, + "_id": { + "$oid": "6711d3facd60fca157e5aed8" + } + }, + { + "text": "There were times when we had a speech per week three weeks in a row. They start of easy, but over the course of the semester they get harder and longer (lol). Maybe bc of covid, he isnt too harsh on grading but if hes in a bad mood he criticizes you a LOT after your speech, it even feels insulting at times. He also interrupts which throws many off.", + "pos": 0.101, + "neu": 0.725, + "neg": 0.174, + "_id": { + "$oid": "6711d3facd60fca157e5aed9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3facd60fca157e5aedb" + }, + "professor_name": "Wynta Alexander", + "rating": 3.8, + "department": "Psychology department", + "comments": [ + { + "text": "She's such a caring/understanding teacher who makes sure everyone understands what is being taught and speaks on every topic. This is the only class I liked this semester. I was looking forward to logging on and learning more about psychology. She makes her presentations very clear and relatable. She listens very closely when we tell our stories.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aedc" + } + }, + { + "text": "She was ok but quizzes come before explain the lecture", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aedd" + } + }, + { + "text": "She is a good and her lectures are clear. But she is a very harsh grader. The course itself is so heavy and her gradings weren't making the class any easier.", + "pos": 0.192, + "neu": 0.697, + "neg": 0.111, + "_id": { + "$oid": "6711d3facd60fca157e5aede" + } + }, + { + "text": "She's an above-average professor I would say, experimental psych is already challenging and she made the information to be known understandable and gave excellent feedback, she really shows she cares about what she is teaching her students, but she is a really harsh grader and sometimes seems unreasonable with it. Overall, great professor though!", + "pos": 0.18, + "neu": 0.754, + "neg": 0.066, + "_id": { + "$oid": "6711d3facd60fca157e5aedf" + } + }, + { + "text": "You know when people tell you, you'll Meet one professor in college that will change your entire way of thinking? Well, Wynta is that professor. She is able to use relevant pop culture references and unorthodox methods to incorporate in lecture (she looks very young so maybe thats why?) and make it all make sense at the end. Brillant and funny.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aee0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3facd60fca157e5aee2" + }, + "professor_name": "Debjeet Bhattacharjee", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Best professor in the psychology department!", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aee3" + } + }, + { + "text": "Good professor, highly Recommend", + "pos": 0.74, + "neu": 0.26, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aee4" + } + }, + { + "text": "Such a great professor, kind hearted and deserves to continue to teach at CCNY. He is one of the good professors especially in the psychology department. He actually makes you learn and I remember class content", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aee5" + } + }, + { + "text": "He's absolutely an amazing professor. I truly recommend him and he actually teaches the class. He uses examples in his career to relate to class lecture, which make the content so much more understandable and actually sticks in your head. Also gives extra credit out and is such a sweet professor and will answer any question career, class wise etc.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aee6" + } + }, + { + "text": "Easy and cool professor he is very relatable and his lectures are amazing. 1 five page paper. Midterm and final are on bb and are not cumulative. Homework is very easy and is due every other class time.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d3facd60fca157e5aee7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fbcd60fca157e5aee9" + }, + "professor_name": "Mike Rifino", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "He's a very easygoing professor! He's very caring, the workload isn't bad. He's an easy grader. Participation matters too. Probably one of the best professors I've had so far in CCNY.", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d3fbcd60fca157e5aeea" + } + }, + { + "text": "MOST AMAZING PROF!!! He is a sweetheart. He cares so much and genuinely listens and helps students. He made topics interesting and allowed us to work at our own pace. I can't recommend him enough. He has a heart of gold and is so intelligent. Take him!!!!", + "pos": 0.4, + "neu": 0.569, + "neg": 0.031, + "_id": { + "$oid": "6711d3fbcd60fca157e5aeeb" + } + }, + { + "text": "I love professor Rifino!!! TAKE HIM! He is a sweetheart and has a heart of gold, very soft spoken but made my fall in love with psych all over again. very easy grader and emails very quickly, attendance is mandatory so dont skip his class and just participate and its an easy A. would 1000000% take him again.", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d3fbcd60fca157e5aeec" + } + }, + { + "text": "Lectures were boring sometimes, but the material was pretty interesting. Exams were easy, almost identical to review sheets. Rarely gave homework aside from weekly discussions. Plenty of opportunities to get extra credit. He's very understanding & doesn't care about participation. Just make sure you show up to class because he takes attendance.", + "pos": 0.304, + "neu": 0.624, + "neg": 0.072, + "_id": { + "$oid": "6711d3fbcd60fca157e5aeed" + } + }, + { + "text": "Professor Rifino is a very caring and understanding person. if you have any concerns with your grade he will help you out. his lectures are a bit boring only cuz he speaks in one monotone but the material itself is really interesting. honestly easy a class. exams are just like review sheets, weekly discussions and 3 annotated bibliographies.", + "pos": 0.275, + "neu": 0.702, + "neg": 0.023, + "_id": { + "$oid": "6711d3fbcd60fca157e5aeee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fbcd60fca157e5aef0" + }, + "professor_name": "Yedidiah Solowiejczyk", + "rating": 4, + "department": "Computer Science department", + "comments": [ + { + "text": "He is a good and caring. Will cold call on you, and you have to participate. There's about 10 HWs on the syllabus but we only got through 4 since he is very slow. The professor does walkthroughs of data structures and its code (his code, really) so that's the main teaching method. Ask him at the end of lectures if he got your exams/HWs.", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d3fbcd60fca157e5aef1" + } + }, + { + "text": "The professor is meticulous but slow. If he calls on you, answer or risk being marked absent. He's lenient on deadlines, and he grades very slow. If he don't receive a grade from your homework within 2 weeks. Make sure to ask if he received your submission after class.", + "pos": 0.103, + "neu": 0.848, + "neg": 0.049, + "_id": { + "$oid": "6711d3fbcd60fca157e5aef2" + } + }, + { + "text": "Homework (2 coding problems on VSCode) - 30%\nTake-home Exam#1- 15%\nTake-home Exam#2- 15%\nTake-home/Final - 15%\nIn-Class Final Exam - 20%\nClass Attendance/Participate - 5%\n\nCold calls on students by last name so be ready any time. Marks absent if you don't respond. Gives extensions if requested lol. All exams online. Easy class", + "pos": 0.139, + "neu": 0.817, + "neg": 0.044, + "_id": { + "$oid": "6711d3fbcd60fca157e5aef3" + } + }, + { + "text": "For those who have him, drop!!! He often loses our work and our grades reflect that. I just bombed the recent midterm and I don't know where I stand in his class. I'm going to see where it goes but I might have to drop at the end. If you have to take him, i guess take him and study like crazy but I'd pick a diff professor if possible.", + "pos": 0.042, + "neu": 0.833, + "neg": 0.126, + "_id": { + "$oid": "6711d3fbcd60fca157e5aef4" + } + }, + { + "text": "Had us sent HW and exams to his email, so he would often lose our submissions. But, he's always available right before or after class to clarify whether he has received our work. A very caring professor who teaches well. Definitely recommend.", + "pos": 0.268, + "neu": 0.698, + "neg": 0.035, + "_id": { + "$oid": "6711d3fbcd60fca157e5aef5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fccd60fca157e5aef7" + }, + "professor_name": "Rabiya Ahmed", + "rating": 3.2, + "department": "Psychology department", + "comments": [ + { + "text": "Rabiya was my TA for PSY102. She is super funny and great at explaining things. She always answers emails quickly and is willing to further explain the grades that she gives you. She is a much more tough grader than the other TA's, but the extra credit will definitely make up for it. I'm not sure why she has such poor reviews here. She is amazing!", + "pos": 0.23, + "neu": 0.676, + "neg": 0.095, + "_id": { + "$oid": "6711d3fccd60fca157e5aef8" + } + }, + { + "text": "Didn't have an actually final but did have a final paper which wasn't well explained, talked about it briefly a few weeks before it was due. Sometimes didn't explain well and confused the class. She would often say um and uh after every single word which got annoying.", + "pos": 0.0, + "neu": 0.801, + "neg": 0.199, + "_id": { + "$oid": "6711d3fccd60fca157e5aef9" + } + }, + { + "text": "If you do the work its an easy A, gives extra credit also. The final paper was a little difficult but if you follow the instructions and examples you should be good.", + "pos": 0.204, + "neu": 0.753, + "neg": 0.043, + "_id": { + "$oid": "6711d3fccd60fca157e5aefa" + } + }, + { + "text": "Didnt understand what she was doing . she is a bad grader and the final project didnt make any sense.", + "pos": 0.0, + "neu": 0.844, + "neg": 0.156, + "_id": { + "$oid": "6711d3fccd60fca157e5aefb" + } + }, + { + "text": "didn't know what to say, made it seem like she was tired, the assignments were not understandable, quizzes were easy but she made them tricky, no help on our final paper (did not understand assignment)", + "pos": 0.092, + "neu": 0.742, + "neg": 0.167, + "_id": { + "$oid": "6711d3fccd60fca157e5aefc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fccd60fca157e5aefe" + }, + "professor_name": "Phillip Birch", + "rating": 4.4, + "department": "Art department", + "comments": [ + { + "text": "He gives helpful feedback and does not mind going over issues with you as much as your project needs. He is a really nice professor. You have to put the time and effort into your projects because he grades very fairly.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d3fccd60fca157e5aeff" + } + }, + { + "text": "He tries to explain the programs as simply as possible and is always accessible for even the smallest questions. Truly, all his classes are super fun and allows you to make art you want to make, not just for the sake of passing. He's definitely a gem in the art department!", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d3fccd60fca157e5af00" + } + }, + { + "text": "Favorite professor, I would take him every semester if I could! He's so sweet and funny, and he actually gives good advice to help you get your ideas where you want them to be.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d3fccd60fca157e5af01" + } + }, + { + "text": "Professor Birch is a great teacher. He is incredible friendly and is willing to do one-on-ones with you if you reach out to him. The only problem is he is a bit of a harsh grader when it comes to your work. Remember growing up when they said they wouldn't critic you on your art work. Well in this class that exactly what happens. Stay on top of work", + "pos": 0.197, + "neu": 0.734, + "neg": 0.069, + "_id": { + "$oid": "6711d3fccd60fca157e5af02" + } + }, + { + "text": "his good professor, but I find the teaching boring at times. I thought I did okay enough in his class like it's a beginner class but I was wrong. make sure to do good as artwork in order to get An in his class, so I say get ready to put in hours into the projects. but everything else you will learn from him.", + "pos": 0.218, + "neu": 0.694, + "neg": 0.088, + "_id": { + "$oid": "6711d3fccd60fca157e5af03" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fccd60fca157e5af05" + }, + "professor_name": "Kathe Blydenburgh", + "rating": 4.4, + "department": "French department", + "comments": [ + { + "text": "She's a good professor. There is a lot of homework, but it's mostly to prepare you for tests and exams. She's also strict on attendance, but for good reason. I learned a lot of French and I appreciate her! She's very patient!", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d3fccd60fca157e5af06" + } + }, + { + "text": "Gives way too much homework.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3fccd60fca157e5af07" + } + }, + { + "text": "She gives a lot of homework, but they don't take that long to complete and it's basically to prepare you for the next lecture, and all her lectures and homeworks prepare you for the 3 written exam, 1 speaking exam and final at the end of every month, but she doesn't grade work that harshly. I definitely recommend taking her class", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d3fccd60fca157e5af08" + } + }, + { + "text": "Professor Kathe tries to make all her lectures fun and her lectures are reviews for the hw that she posts before the class, and it doesn't take that long to complete. Her class consists of 3 exams, one speaking exam, and a final, she also gives extra credits for tests that you may have failed or did badly on", + "pos": 0.086, + "neu": 0.818, + "neg": 0.095, + "_id": { + "$oid": "6711d3fccd60fca157e5af09" + } + }, + { + "text": "She's kind of a new professor at lehman but is very nice, understanding & sweet. You can def take her class and learn much french. She has about 3 exams but lots of homework online attached to a textbook that you have to buy. But her class is cool & she's flexible but you have to participate sometimes for credit. I'm taking her again for fre112.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d3fccd60fca157e5af0a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fdcd60fca157e5af0c" + }, + "professor_name": "Raed Kaldi", + "rating": 3.6, + "department": "Economics department", + "comments": [ + { + "text": "Easy A. Prof Kaldi is very disorganized, doesnt respond to emails. Assume you get an A on the assignments bc he doesnt provide feedback or anything. Used Connect, downed the workload to taking chapter quizzes, an exam and the final. Were never given a syllabus. He was knowledgeable, but would spend a lot of time on one chapter.", + "pos": 0.033, + "neu": 0.938, + "neg": 0.029, + "_id": { + "$oid": "6711d3fdcd60fca157e5af0d" + } + }, + { + "text": "He is such a mediocre professor. Gives you connect and you are on your one. We got our syllabus on 2nd week of the summer class. That syllabus was from the previous semester and didnt even bother changing the dates or grade requirements. Gives you connect and you are on your own. Doesnt respond to emails and doesnt bother explaining anything.", + "pos": 0.065, + "neu": 0.935, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af0e" + } + }, + { + "text": "Professor Kaldi is very disorganized and doesn't respond to emails sometimes. As long as you do the work he asks for and submits it on time assume you got an A on the assignment. We used connect and all homework and exams were there and we had one group project. Make sure to do the work and you'll be fine so don't stress his class out.", + "pos": 0.094, + "neu": 0.871, + "neg": 0.035, + "_id": { + "$oid": "6711d3fdcd60fca157e5af0f" + } + }, + { + "text": "Professor Kaldi is an alright professor. All you have to do is make sure you submit your work on time and you'll pass his class. Make sure to show up for his lectures to get a good grade in the class too. Overall, he's an easy A.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af10" + } + }, + { + "text": "He is truly an amazing professor. His lectures are very informative. He teaches you real world skills and has you very engaged in class and assignments. He grades on effort so you'll never truly receive feedback. If you submitted an assignment, just assume you got an A. His exams are online so you'll be fine.", + "pos": 0.182, + "neu": 0.776, + "neg": 0.041, + "_id": { + "$oid": "6711d3fdcd60fca157e5af11" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fdcd60fca157e5af13" + }, + "professor_name": "Yana Joseph", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "She helped me switch an English course. She's so sweet and nice.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af14" + } + }, + { + "text": "She's an amazing advisor who finds time to help students who are both new to the English major and the department at CCNY, as well as those who have been there longer but whenever they need help, she's there. She's really sweet and makes things easier to understand and she cares to help guide students on the right path. She's lovely!", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af15" + } + }, + { + "text": "Yana is a gem in the horrible administration that is CUNY! She is the best advisor, and even when she is doing a million things, like putting the entire departments schedules together, she always makes you feel welcome and important .", + "pos": 0.23, + "neu": 0.702, + "neg": 0.068, + "_id": { + "$oid": "6711d3fdcd60fca157e5af16" + } + }, + { + "text": "Awesome advisor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af17" + } + }, + { + "text": "Ms. Joseph is not really a teacher, but she runs the whole English department with a graceful, strong hand. She's a remarkable woman blessed with an easy laugh and a warm humanity. She has changed many lives for the better over the years. She sort's sort of the Gandhi both for English professors and students.", + "pos": 0.452, + "neu": 0.548, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af18" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fdcd60fca157e5af1a" + }, + "professor_name": "Collin Ashely", + "rating": 4.6, + "department": "Sociology department", + "comments": [ + { + "text": "This Professor is one of the best professors I have ever taken! Literally the best! His grading criteria was clear and graded very fairly. Our grades were based on 6 worksheets and 5 assignments since it was only a month long course in summer. He would always give us enough time to complete the assignments and he always gives great feedback.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af1b" + } + }, + { + "text": "Prof. Ashley was very accommodating and easy to reach. The readings were interesting, and so long as you put in the effort and try to comprehend the course material you'll do well.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af1c" + } + }, + { + "text": "He was AN AMAZING PROFESSOR.The lectures were long and it was mainly him talking but they were very engaging and he let us discuss topics together. He was understanding and the homework isn't too bad. We're given one essay and 16 homework assignments (one for each week) we only have to complete 10 (5 writing and 5 worksheets) and there is no final.", + "pos": 0.14, + "neu": 0.821, + "neg": 0.039, + "_id": { + "$oid": "6711d3fdcd60fca157e5af1d" + } + }, + { + "text": "Professor Ashley class was asynchronous, meaning you did most of the work at your own pace. Everything was due by the last day of classes. Youre graded on 2 weekly discussion board post and a final research paper.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3fdcd60fca157e5af1e" + } + }, + { + "text": "I signed up for this course to be synchronous. I soon found that after the semester started the class was asynchronous. I think it was extremely unfair and I didn't want a w mark. He was not accessible except for his office hours. The topics were interesting and so were the lectures. I just wouldn't do it again.", + "pos": 0.043, + "neu": 0.883, + "neg": 0.074, + "_id": { + "$oid": "6711d3fdcd60fca157e5af1f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fecd60fca157e5af21" + }, + "professor_name": "Aleksin Ortega", + "rating": 4.4, + "department": "Spanish department", + "comments": [ + { + "text": "He is a good professor and he makes sure you understand the material and he teaches it well.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d3fecd60fca157e5af22" + } + }, + { + "text": "Great professor. The best Ive had at ccny! Im actually much better in spanish when it comes to him!", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d3fecd60fca157e5af23" + } + }, + { + "text": "I took Spanish 322 onine with Professor Ortega. He is very helpful and keeps things simple for our own benefit and his of course. Keep up with the reading from the textbook. An essay every two weeks. A rough draft on that essay every other week. He is available if you need help on an assignment.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d3fecd60fca157e5af24" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3fecd60fca157e5af25" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3fecd60fca157e5af27" + }, + "professor_name": "Neal Harrelson", + "rating": 4.8, + "department": "Music department", + "comments": [ + { + "text": "He's a really funny and respectful professor. Once you let him help, you'll see a difference. :)", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d3fecd60fca157e5af28" + } + }, + { + "text": "Great professor; really wants to help you achieve your goals in class. Quite funny, too. He really helps build your confidence and somehow knows exactly how to remedy whatever problems you're having in the class. In short, a great professor and a master at his craft.", + "pos": 0.33, + "neu": 0.627, + "neg": 0.043, + "_id": { + "$oid": "6711d3fecd60fca157e5af29" + } + }, + { + "text": "Best Professor ever!!! Makes everything easy very clear in his instructions and keeps an open line of communication with his students. If you want to take mus 165 take it with him he is not only easy but fun!!!!", + "pos": 0.277, + "neu": 0.688, + "neg": 0.036, + "_id": { + "$oid": "6711d3fecd60fca157e5af2a" + } + }, + { + "text": "Something like Conan O'Brien teaching a voice class. Highly entertaining, strangely amusing, unexpectedly substantial, very tall. Had a great time and learned a lot.", + "pos": 0.414, + "neu": 0.515, + "neg": 0.071, + "_id": { + "$oid": "6711d3fecd60fca157e5af2b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ffcd60fca157e5af2d" + }, + "professor_name": "Lisa Ewart", + "rating": 3.8, + "department": "Psychology department", + "comments": [ + { + "text": "I took her class in 2007 and she was great! Every assignment had extensive feedback on it and she was more than fair. Really cared about the students!!!", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af2e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d3ffcd60fca157e5af2f" + } + }, + { + "text": "She is nice but she don't seem to know what she is doing much. I did my labs great, and she didn't check them and I got a C. But how would she know it is a C if she didn't even check it. Find a new teacher!!!", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af30" + } + }, + { + "text": "She is an OK TA. She doesn't give her students detailed feedback on quizzes or papers, so you don't really know where you're losing points.", + "pos": 0.103, + "neu": 0.806, + "neg": 0.091, + "_id": { + "$oid": "6711d3ffcd60fca157e5af31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ffcd60fca157e5af33" + }, + "professor_name": "Muhammad Choudhry", + "rating": 4.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Great human being and good grader", + "pos": 0.636, + "neu": 0.364, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af34" + } + }, + { + "text": "Super good grader", + "pos": 0.872, + "neu": 0.128, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af35" + } + }, + { + "text": "Great teacher sometimes a little hard to understand but you get used to accent", + "pos": 0.163, + "neu": 0.769, + "neg": 0.068, + "_id": { + "$oid": "6711d3ffcd60fca157e5af36" + } + }, + { + "text": "Good human am have well knowledge of his field", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af37" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ffcd60fca157e5af39" + }, + "professor_name": "Joseph Gallo-Rodriguez", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Joey was an amazing TA, compared to a lot of staff at CCNY, he cares about not only students' wellbeing but their understanding for chemistry. Explains everything in a way everyone can understand, makes his class feel like home. Couldn't rave enough about him :)", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af3a" + } + }, + { + "text": "Literally have this TA if you want someone who cares that you pass this class. Prints work out work for us to do and is definitely available if you need help after class. Explains everything clearly and has the best intentions for his students to do well. Participation is not required, but will definitely help to retain information. Simply amazing!", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af3b" + } + }, + { + "text": "I love this guy so much. Is so engaging compared to any other of the chem TAs here at CCNY. HE IS THE BEST", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af3c" + } + }, + { + "text": "yes", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d3ffcd60fca157e5af3d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d3ffcd60fca157e5af3f" + }, + "professor_name": "Curtis Russell", + "rating": 1.2, + "department": "Theater department", + "comments": [ + { + "text": "Take this professor if you want tons of homework, you get as in all your work, and because you miss a few classes, you get a c. Totally new teacher who wants to make a name for himself, save yourself the trouble and heartache, pass this unfair grader up.", + "pos": 0.08, + "neu": 0.78, + "neg": 0.14, + "_id": { + "$oid": "6711d3ffcd60fca157e5af40" + } + }, + { + "text": "Dear student or reader I'm writing this review to let you know in advance to run away from this professor. The grading policies of this professor is very unfair, I wouldn't take his classes even if it was the last class on earth. If you do have to take his class and there's no other options, i would recommend to read the syllabus.", + "pos": 0.073, + "neu": 0.847, + "neg": 0.08, + "_id": { + "$oid": "6711d3ffcd60fca157e5af41" + } + }, + { + "text": "He never help us with any kind of paper. He doesn't even let the students send him rough drafts of the paper. He should have told us to see the play for final in December as by that time we knew all of the terms of theatre. Lots of quizzes. We had to read a lot. We had to watch lots of worldwide theatre plays in YouTube. Need to print the readings.", + "pos": 0.058, + "neu": 0.912, + "neg": 0.03, + "_id": { + "$oid": "6711d3ffcd60fca157e5af42" + } + }, + { + "text": "He grades very harsh in the response papers and presentations. He gives D to the scholar students. He never clearly says what he is looking in the paper. He even tells to watch a play in September based on which we will write our final paper. But at that time nobody knew about any terms of theatrical parts. By December everyone forgot the play.", + "pos": 0.07, + "neu": 0.876, + "neg": 0.054, + "_id": { + "$oid": "6711d3ffcd60fca157e5af43" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d400cd60fca157e5af45" + }, + "professor_name": "Dave Kim", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "He's a cool guy. I think he likes being around his students too, always encouraging them to pass by his office. He dresses pretty flyyy and doesn't do much upkeep to his beard. Take his class.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d400cd60fca157e5af46" + } + }, + { + "text": "very good professor... he inspired me to become a english major... One of the best professors i ever had and he is hot... I would do him if i was a girl... he has really funky hair, which i loveeeee.... and he has nice style so he wont be an eye sore and he is super duper funny.", + "pos": 0.271, + "neu": 0.672, + "neg": 0.056, + "_id": { + "$oid": "6711d400cd60fca157e5af47" + } + }, + { + "text": "he is a good teacher. he explains very well and he knows what he is talking about. He is very hard though he is sharp and very hard on grading papers.", + "pos": 0.148, + "neu": 0.757, + "neg": 0.095, + "_id": { + "$oid": "6711d400cd60fca157e5af48" + } + }, + { + "text": "Dave is very nice in terms of explaning the material. this class requires 2 in class papers n 1 final paper and there will be quizzes every other week. You read about 8 books..but dave makes it easy since he is always available in his office hrs..overall excellent prof..", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d400cd60fca157e5af49" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d400cd60fca157e5af4b" + }, + "professor_name": "Tayfun Pay", + "rating": 4, + "department": "Computer Science department", + "comments": [ + { + "text": "Dr. Pay is pretty damn awesome. He honestly save me from failing like crazy. He gave me many opportunities to catch up in class because I was so behind. My coding skills were pretty bad and he was really patient and took the time to mentor me . I would totally recommend Dr. Pay to any one who is majoring computer science. I owe him a big thank you", + "pos": 0.282, + "neu": 0.562, + "neg": 0.156, + "_id": { + "$oid": "6711d400cd60fca157e5af4c" + } + }, + { + "text": "He's an easy Professor, but does expect all the work to be done(labs, hw, one term paper). As long as you put effort into the class and talk to him if you have difficulties understanding something, you will do well. Take this class if you are thinking of majoring in computer science because it will give you an idea of what it's really about.", + "pos": 0.067, + "neu": 0.892, + "neg": 0.041, + "_id": { + "$oid": "6711d400cd60fca157e5af4d" + } + }, + { + "text": "Great prof...very helpful,class was fun, lets his students out early, exams arent that difficult, VERY VERY VERY EASY GRADES!! TAKE HIM! U WONT REGRET IT!!", + "pos": 0.501, + "neu": 0.499, + "neg": 0.0, + "_id": { + "$oid": "6711d400cd60fca157e5af4e" + } + }, + { + "text": "I believe it was his first time teaching. He did an okay job!", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d400cd60fca157e5af4f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d400cd60fca157e5af51" + }, + "professor_name": "Hilary Sortor", + "rating": 4.8, + "department": "World Humanities department", + "comments": [ + { + "text": "Amazing teacher, one of the best at city! Took her english class a few semesters ago. She is great! Take her she loves to teach and educate students. Very helpful and is a fair grader!", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d400cd60fca157e5af52" + } + }, + { + "text": "Ms Sortor is a very nice personally and professionally. Her class is challenging enough to make you into a better writer but it isnt so hard that it becomes a pain in the ass. Also she will make you feel welcome during office hours.", + "pos": 0.196, + "neu": 0.644, + "neg": 0.16, + "_id": { + "$oid": "6711d400cd60fca157e5af53" + } + }, + { + "text": "Good teacher, she gives a modest amount of work which is expected, just pay attention and read and you'll be fine", + "pos": 0.195, + "neu": 0.747, + "neg": 0.058, + "_id": { + "$oid": "6711d400cd60fca157e5af54" + } + }, + { + "text": "She is awesome! Although I was facing some personal issues and had to withdrawal from the class she was still very helpful.The work is not really intensive. A lot of research is required for the final paper. There are rewrites for each paper and homework assignments once a week.Great course overall!", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d400cd60fca157e5af55" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d401cd60fca157e5af57" + }, + "professor_name": "Rocio Aranda-Alvarado", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Great professor, extremely knowledgeable, amazing lectures!", + "pos": 0.679, + "neu": 0.321, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af58" + } + }, + { + "text": "She skips the formalist BS that goes with art history courses. Genuinely cares about introducing new concepts. Encourages ESL students. Strikes good balance for weekly assignments (reading, writing). Successful in that she provides new lens to view the world, critical thinking, etc. Really enjoy this class.", + "pos": 0.269, + "neu": 0.651, + "neg": 0.08, + "_id": { + "$oid": "6711d401cd60fca157e5af59" + } + }, + { + "text": "Such an easy class and a very nice professor. She only gave us one essay the entire semester and the only tests we had were the midterm and the final. YOU HAVE TO COME TO CLASS! She only discusses specific artworks but she talks very thouroughly about each art work. I enjoyed the class despite having it at 8am. Take it.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af5a" + } + }, + { + "text": "I took her for Atr History 101 and I'm shocked to see that she had not been rated yet & so happy to be the first! She is truely a wonderful professor!!! She is clear, gives great lectures & is very knowledgable. If you have the chance to take her- you WILL NOT be disappointed!", + "pos": 0.293, + "neu": 0.675, + "neg": 0.032, + "_id": { + "$oid": "6711d401cd60fca157e5af5b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d401cd60fca157e5af5d" + }, + "professor_name": "Rebecca Watkins", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "great professor. passionate about the material. if she doesnt know something, she wont bull**** you. she just says it. dont come late though. she gets irky when you do it consistently. overall, great class great professor", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af5e" + } + }, + { + "text": "Love her, nice person. very dedicated and profesional. She was really helpful. 100% Recommended", + "pos": 0.632, + "neu": 0.368, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af5f" + } + }, + { + "text": "good teacher.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af60" + } + }, + { + "text": "Great teacher. Really cares about her students and the quality of their work. Even allows rewrites. Plus she's laid back. We have a lot of class discussions and she always has helpful suggestions. Class does get boring sometimes but it's because of the topic.", + "pos": 0.137, + "neu": 0.829, + "neg": 0.034, + "_id": { + "$oid": "6711d401cd60fca157e5af61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d401cd60fca157e5af63" + }, + "professor_name": "John Jines", + "rating": 4.9, + "department": "Art department", + "comments": [ + { + "text": "Professor Jines is chill, helps you save $$ by making you buy tools you only absolutely need, and is always around to answer questions. He was great. Hes very humble and tries to help as much as he can", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af64" + } + }, + { + "text": "Such a great class. You have to work hard, but you will learn a lot. He is an excellent teacher and obviously puts a lot of effort into the class and cares about actually being a teacher.", + "pos": 0.253, + "neu": 0.721, + "neg": 0.026, + "_id": { + "$oid": "6711d401cd60fca157e5af65" + } + }, + { + "text": "I love him so much he's amazing and wonderful and he's the nicest guy you'll ever meet! I took two classes with him, he's really incredibly good.", + "pos": 0.462, + "neu": 0.538, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af66" + } + }, + { + "text": "Easy gpa booster. you just have to be able to know how to draw somewhat. always tries to save students money, dont need many supplies. Most of the assignments are in class, some assignments are taken home to finish.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d401cd60fca157e5af67" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d402cd60fca157e5af69" + }, + "professor_name": "Gaurav Jashnani", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "An amazing human being therefore it makes him an amazing Professor. He is very caring about his students and always ready to listen and help. No exams only 2 papers. Fun lectures. Simply a great experience.", + "pos": 0.44, + "neu": 0.52, + "neg": 0.041, + "_id": { + "$oid": "6711d402cd60fca157e5af6a" + } + }, + { + "text": "Really easy to work with and very helpful. Interesting and engaging lectures. Cares about the students making sure they understand the material. He really wants his students to do well. The material is very interesting and will have you thinking about the topics even outside of the classroom.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d402cd60fca157e5af6b" + } + }, + { + "text": "amazing, engaging and fun professor. classroom discussions are always interesting and important to know. readings are fun rather than boring. class assignments are easy to complete as well. would take professor again.", + "pos": 0.468, + "neu": 0.483, + "neg": 0.048, + "_id": { + "$oid": "6711d402cd60fca157e5af6c" + } + }, + { + "text": "He is a wonderful professor. He really cares about his students and very understanding. The class was very interesting. He knows how to keep everyone focus in the class. There will be lot of readings that he posts online because you dont have to buy a text book. There are no tests for this class except two papers to write and a small presentation", + "pos": 0.138, + "neu": 0.831, + "neg": 0.03, + "_id": { + "$oid": "6711d402cd60fca157e5af6d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d402cd60fca157e5af6f" + }, + "professor_name": "Donald Gordon", + "rating": 4.8, + "department": "Computer Science department", + "comments": [ + { + "text": "He's really good at teaching and is very technical. No attendance so I skipped most of his classes (don't be like me). I did really well on the projects. The tests were all multiple choice but it gets tricky since he talks about it in class but I always cut class so bombed them. He curves based on class avg. He didn't curve my class though.", + "pos": 0.053, + "neu": 0.838, + "neg": 0.109, + "_id": { + "$oid": "6711d402cd60fca157e5af70" + } + }, + { + "text": "One of my favorite professors at CCNY, his lectures are clear and you learn a lot if you pay attention. He is always willing to help out if you go to him, and his homework isn't bad as long as you put in the time.", + "pos": 0.212, + "neu": 0.761, + "neg": 0.027, + "_id": { + "$oid": "6711d402cd60fca157e5af71" + } + }, + { + "text": "Absolutely awesome professor. He has challenging projects and tests, but if you pay attention in class, you will do well. The projects require a good amount of work, but he gives plenty of time, and you actually learn! Also, great amount of wit and humor to keep the class flowing; rarely a dull moment. 11/10", + "pos": 0.311, + "neu": 0.666, + "neg": 0.023, + "_id": { + "$oid": "6711d402cd60fca157e5af72" + } + }, + { + "text": "took him over the summer. he teaches more than just sql in my class over the summer. he exposes students to modern day stuff on sql. pretty good compared to other ccny professors", + "pos": 0.162, + "neu": 0.798, + "neg": 0.04, + "_id": { + "$oid": "6711d402cd60fca157e5af73" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d402cd60fca157e5af75" + }, + "professor_name": "Zienh Saaed", + "rating": 1.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Here is the true overview of this professor for any class. She uses notes and lectures from other professor who previously have taught the course. She has simply no idea of what she is teaching. She gives pop quizzes so she makes you attend class, but if you have a question she will have no real answers because SHE DOESNT KNOW THE MATERIAL HERSELF", + "pos": 0.028, + "neu": 0.906, + "neg": 0.065, + "_id": { + "$oid": "6711d402cd60fca157e5af76" + } + }, + { + "text": "She spend time to answer all the questions in the class and in the office Hours. Most students did not spend enough time to practice, when come to the exam they losse. Especially when study statistics, data analysis it's not courses you can pass without practicing! If you are taking a class with her never hesitate to ask her if you have questions!", + "pos": 0.037, + "neu": 0.963, + "neg": 0.0, + "_id": { + "$oid": "6711d402cd60fca157e5af77" + } + }, + { + "text": "WORST PROFESSOR EVER", + "pos": 0.0, + "neu": 0.328, + "neg": 0.672, + "_id": { + "$oid": "6711d402cd60fca157e5af78" + } + }, + { + "text": "I have never had such an irresponsible professor in my life. She doesn't know any of the material she is teaching. She watched youtube videos before the lectures to be able to teach the material and gave the exact examples. She came an hour and a half late to our final and corrected the midterm exams in the lecture . I am surprised she is a prof!!", + "pos": 0.027, + "neu": 0.924, + "neg": 0.049, + "_id": { + "$oid": "6711d402cd60fca157e5af79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d403cd60fca157e5af7b" + }, + "professor_name": "Priya Puliyampet", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Puliyampet is extremely helpful and cooperative. She is available to provide guidance all the time. Her lecture material is easy to understand. There is a quiz every class, but you get better over time. She is also straightforward and provides thorough feedback on every assignments. Also provides extra credits and a cheerful energy. 10/10", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d403cd60fca157e5af7c" + } + }, + { + "text": "you should run. dont even take this class she doesnt know how to explain the material ps her laugh is really annoying", + "pos": 0.135, + "neu": 0.752, + "neg": 0.113, + "_id": { + "$oid": "6711d403cd60fca157e5af7d" + } + }, + { + "text": "Priya is an amazing prof. She cares so much for her students and give a lot of opportunity to do well. Lots of extra credit. Take her if you really want to understand & do well. She explains the material thoroughly.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d403cd60fca157e5af7e" + } + }, + { + "text": "Made the material easy to understand and gives good feedback on the papers. Very helpful outside of class too. Gave 7 quizzes (and dropped three), a presentation, 2 papers and a final exam, and I feel like everything was fair. All around good professor :)", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d403cd60fca157e5af7f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d403cd60fca157e5af81" + }, + "professor_name": "Eugenia Cherkasskaya", + "rating": 3.3, + "department": "Psychology department", + "comments": [ + { + "text": "Easy class, easy professor. Minimal assignments, tests and extra credit opportunities. She appears serious and not enthusiastic but does have passion. Ask for help and she will gladly do so.", + "pos": 0.431, + "neu": 0.499, + "neg": 0.07, + "_id": { + "$oid": "6711d403cd60fca157e5af82" + } + }, + { + "text": "She wants her students to do well and provides plenty extra credit. She does a appear to lack enthusiam but she does have passion for the sexual studies. She listens to what students have to say and has control of the class. The topics dicussed easily could of become heated debate or just silly. Minimal assignments and tests. Easy A", + "pos": 0.22, + "neu": 0.756, + "neg": 0.024, + "_id": { + "$oid": "6711d403cd60fca157e5af83" + } + }, + { + "text": "She teaches off of PowerPoint and basically reads off of it and just adds a little bit of an interpretation. Attendance and readings are important because she loves to give pop quizzes based on the readings. She likes a little bit of participation, but doesn't allow too much room for any because she's flying by those slides! No need to take notes.", + "pos": 0.088, + "neu": 0.841, + "neg": 0.071, + "_id": { + "$oid": "6711d403cd60fca157e5af84" + } + }, + { + "text": "Not at all impressed by her or her teaching style! Seems to be very limited and narrow minded as well as judgmental. I hope this semester goes by fast because it is literally painful to sit in her class!", + "pos": 0.106, + "neu": 0.72, + "neg": 0.174, + "_id": { + "$oid": "6711d403cd60fca157e5af85" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d403cd60fca157e5af87" + }, + "professor_name": "Akemi Reeves", + "rating": 4, + "department": "Asian Studies department", + "comments": [ + { + "text": "She is a very good teacher. She really wants her students to pass. the amount of time of studying you put into learning the language, the better your outcome(grade) will be. She has an accent which may affect how you understand the material. Overall study!! strict with attendance. Always willing to help students.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d403cd60fca157e5af88" + } + }, + { + "text": "This professor is very easy to pass, as long as you hand in all of the assignments on time and participate. Guarantee you will get at least an A. However, she does have English speaking ability. Sometimes it difficult to understand what she was lecturing. Overall is good!.", + "pos": 0.238, + "neu": 0.719, + "neg": 0.043, + "_id": { + "$oid": "6711d403cd60fca157e5af89" + } + }, + { + "text": "Easy class!", + "pos": 0.761, + "neu": 0.239, + "neg": 0.0, + "_id": { + "$oid": "6711d403cd60fca157e5af8a" + } + }, + { + "text": "She is not a bad professor.\r She wants her class to pass.\r Just do her assignments on time and even though the class seems boring. Try to listen and ask questions just in case her review ends up being lame.\r But she might have changed up things according to what students in the class might have told her.", + "pos": 0.032, + "neu": 0.909, + "neg": 0.059, + "_id": { + "$oid": "6711d403cd60fca157e5af8b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d404cd60fca157e5af8d" + }, + "professor_name": "Laura Vladiviezo", + "rating": 3.6, + "department": "Education department", + "comments": [ + { + "text": "She requires a lot of work to be done. She grades very harshly so triple check your work. I was not interested in the class however the projects did seem to help us understand how important team work is. Not the nicest teacher. At first it seems that way but she might be Bi polar. Approach with caution.Take it to get your grade and get OUT!", + "pos": 0.047, + "neu": 0.899, + "neg": 0.054, + "_id": { + "$oid": "6711d404cd60fca157e5af8e" + } + }, + { + "text": "She gives engineering related articles to read but her projects and essays must be done her way. If you have your own style of writing, you might have to change your ways. She's helpful during her office hours. Not an easy A class, you will have to work rlly hard for it.", + "pos": 0.064, + "neu": 0.854, + "neg": 0.082, + "_id": { + "$oid": "6711d404cd60fca157e5af8f" + } + }, + { + "text": "She is the best professor at City College. Her class are fun and she only wants the papers on time. The class discussions are very interesting.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d404cd60fca157e5af90" + } + }, + { + "text": "She's a harsh grader. Give in all the work on time.. and participate in her class.. she might seem easy going.. but don't count on it... especially while she grades papers", + "pos": 0.059, + "neu": 0.881, + "neg": 0.059, + "_id": { + "$oid": "6711d404cd60fca157e5af91" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d404cd60fca157e5af93" + }, + "professor_name": "Ervin Kallfa", + "rating": 3.3, + "department": "Political Science department", + "comments": [ + { + "text": "I don't know what people are talking about. He's an awesome TA and challenges you to think. He engages his students in conversation & the class is never dull. He's a bit strict but very understanding if you're a good student. I don't know my grade yet, hoping for an A. If not I'll come back and roast him on here! lol jk", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d404cd60fca157e5af94" + } + }, + { + "text": "somtimes it was understand him becuase his accent. it is not a easy A class. every week there is a quiz. for the midterm and for final he will give you review sheet with the questions. must take a note+read the textbook!", + "pos": 0.0, + "neu": 0.938, + "neg": 0.062, + "_id": { + "$oid": "6711d404cd60fca157e5af95" + } + }, + { + "text": "He's a good teacher, every informed about the topic. The only bad thing is he never used the blackboard so get ready to write and listen at the same time.", + "pos": 0.157, + "neu": 0.746, + "neg": 0.097, + "_id": { + "$oid": "6711d404cd60fca157e5af96" + } + }, + { + "text": "He mixes the philosophers with contemporary issues so you can see how it applies. He is very knowledgeable and tries to help the class see thru the eyes of the philosopher. You don't have to read but you should try. Required: 3 papers. 1st is 4-7pgs. 2nd is 7-10pgs and 3rd is 7-10.", + "pos": 0.034, + "neu": 0.966, + "neg": 0.0, + "_id": { + "$oid": "6711d404cd60fca157e5af97" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d404cd60fca157e5af99" + }, + "professor_name": "Cemel Yetkiner", + "rating": 2.6, + "department": "History department", + "comments": [ + { + "text": "Basic Ottoman history until today.Very intelligent with extensive research history i.e. Protestant Inmpact in Mideast. Demanding as is expected in a serious class. 2 big reports(6 pg.+ 12 pg.)4 Exams,Extreme class participation-Must Read prior to class.Multiple Blackboard Posts.PUNCTUALITY a MUST!", + "pos": 0.069, + "neu": 0.851, + "neg": 0.08, + "_id": { + "$oid": "6711d404cd60fca157e5af9a" + } + }, + { + "text": "He's a good teacher, although he does make the students run the class only because he likes what his students have to say. You must do the reading for his class, and it is run as a university level class. His tests are easy because he gives you the questions prior to the exam and he is an easy grader on the papers too, well at least for me.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d404cd60fca157e5af9b" + } + }, + { + "text": "He was the Students to run the class, Grading is very bad. If you want to learn something from a teacher but not from your classmate, this is not the right teacher. Although materials was good.", + "pos": 0.124, + "neu": 0.817, + "neg": 0.059, + "_id": { + "$oid": "6711d404cd60fca157e5af9c" + } + }, + { + "text": "it was a difficult class. it was mostly based on participation, though on his grading system it only says 10 percent. the history was very interesting,but he depended on YOU to run the class, and he was so bipolar at times, flipped on the class for no reason!dont take him if youre not willing to teach yourself the material and run the class", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d404cd60fca157e5af9d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d405cd60fca157e5af9f" + }, + "professor_name": "Jiahui Li", + "rating": 1.8, + "department": "Mathematics department", + "comments": [ + { + "text": "she is a nice teacher very helpful. she gaves alot of quizes which help students boost thier grades. I failed the first three quizes and I was doing really bad so I was about to withdraw the class. But with her encouragement and help I started focusing on my homeworks and i got A- in that class.", + "pos": 0.218, + "neu": 0.716, + "neg": 0.066, + "_id": { + "$oid": "6711d405cd60fca157e5afa0" + } + }, + { + "text": "She is always rushing things so you have to take 3-4 pages of notes during class. HW is important to her and attendance. She assumes that we know the problems and skips part of them which makes it more confusing . She prepares quizzes every Friday and HW is due that day too. Unclear and not the best professor for the course.", + "pos": 0.026, + "neu": 0.825, + "neg": 0.149, + "_id": { + "$oid": "6711d405cd60fca157e5afa1" + } + }, + { + "text": "She is the worst teacher u can ever have in math! She can barely speak english", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d405cd60fca157e5afa2" + } + }, + { + "text": "Always late for her specified office hour, completely incomprehensible, doesn't stress class participation so more than half the class is always behind, rushes through subjects without stopping, and is generally a terrible instructor.", + "pos": 0.109, + "neu": 0.808, + "neg": 0.083, + "_id": { + "$oid": "6711d405cd60fca157e5afa3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d405cd60fca157e5afa5" + }, + "professor_name": "Richard Klotz", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "Where should I even start... His class has a friendly atmosphere which I very much enjoyed, but he's a stickler for grading assignments and exams. He will criticize you for your efforts and refer you to the book for answers. He's isn't lenient in any regard and sticks to his grading policies like a bible.", + "pos": 0.121, + "neu": 0.79, + "neg": 0.089, + "_id": { + "$oid": "6711d405cd60fca157e5afa6" + } + }, + { + "text": "Excellent teacher. Gives a lot of homework. Generous grader. Easy tests.", + "pos": 0.553, + "neu": 0.447, + "neg": 0.0, + "_id": { + "$oid": "6711d405cd60fca157e5afa7" + } + }, + { + "text": "He's a great professor, but hard to pass. He hands out notes, which keep you from learning the material thoroughly. But then again, he responds to emails quickly and teaches nicely. We got slammed with Series, so prepare in advance. His tests are hard, but make the final seem easier. He went back to Columbia, so this shouldn't matter to CCNY kids.", + "pos": 0.143, + "neu": 0.791, + "neg": 0.066, + "_id": { + "$oid": "6711d405cd60fca157e5afa8" + } + }, + { + "text": "Professor Klotz is, without a doubt, the best professor that I've had in any class, thus far. Not only is he well prepared for every lecture but he understands what he is teaching you. You truly get the feeling that he wants you to pass and understand the material. Responds to e-mails rapidly, hand-checks and corrects all hw and prepares you!", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d405cd60fca157e5afa9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d406cd60fca157e5afab" + }, + "professor_name": "Liu Huabei", + "rating": 3.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He is a very helpful professor and available most of the time. His homework assignments and exams required a lot of thinking. He loves what he is doing and he is enjoying it.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afac" + } + }, + { + "text": "The course material is hard,his exams are not easy. But what he cares the most is the concept. If you show him ur concepts on the test paper, you would get a lot of points. He would help and explain whenever you have a question. He is a lot better than an average CCNY professor.", + "pos": 0.178, + "neu": 0.796, + "neg": 0.027, + "_id": { + "$oid": "6711d406cd60fca157e5afad" + } + }, + { + "text": "Good Prof, very smart, tries to explain as well as he can. Heavy accent but possible to understand. Very helpful outside of class. Really nice person and reasonable.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afae" + } + }, + { + "text": "Asian teacher. Can?t speak English. Lecture notes are illegible. Notes are useless. No examples. Test average is 50?s. This guy is a typical CCNY Prof ****", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d406cd60fca157e5afaf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d406cd60fca157e5afb1" + }, + "professor_name": "Eliot Spitzer", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "Best class ever taken - worthy of an Ivy League institution. Real word experience, brilliant knowledge in economics and policy as well as law. Politics lean to the left, but so do everyone else's in New York City. Heavy reading load but worth it - very fair grader - extremely helpful and responsive. Once in a lifetime opportunity.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afb2" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afb3" + } + }, + { + "text": "I agree with the previous comment, really brilliant. I learned a lot. The reading is a pretty heavy load, but each teaches a lot. Every class, he goes over the readings in details and extracts important key concepts to help us understand the news that we hear around us. I highly recommend him.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afb4" + } + }, + { + "text": "Brilliant person, knowledgeable, with ample real-world experience. Not too demanding, but expects good quality work. TONS of reading each week. Helpful outside of class, and flexible to talk in person, phone or email. Great class!", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afb5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d406cd60fca157e5afb7" + }, + "professor_name": "Jennifer sabin", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "A rare find regarding professors--I had her last year and she really helped improve my writing skills. I wish I could take her a second time.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afb8" + } + }, + { + "text": "She was very friendly and approachable. She choose a variety of topics to have us write about, from architecture to films to tenure. I really enjoyed it. She helps improve your writing skills and is an easy grader.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d406cd60fca157e5afb9" + } + }, + { + "text": "Relaxed on the student wide phenomenon of immaturity with regards to work ethic, responsibility, etc. Make no mistake. Will grade down for such faults. Do assignments thoroughly, thoughtfully and with sophistication. You are rewarded. Offers help and is approachable. Pleasant, real, a coach. I'm a good hard working kid, and I'll say she's great.", + "pos": 0.335, + "neu": 0.603, + "neg": 0.062, + "_id": { + "$oid": "6711d406cd60fca157e5afba" + } + }, + { + "text": "Relaxed about the student wide phenomenon of immaturity with regards to work ethic, responsibility, etc. Make no mistake. Will grade down for such faults. Do assignments thoroughly, thoughtfully and with sophistication. You are rewarded. Offers help and is approachable. Pleasant, real, a coach. I'm a good hard working kid, and I'll say she's great.", + "pos": 0.335, + "neu": 0.603, + "neg": 0.062, + "_id": { + "$oid": "6711d406cd60fca157e5afbb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d407cd60fca157e5afbd" + }, + "professor_name": "Ram Yadesh", + "rating": 2.9, + "department": "Biology department", + "comments": [ + { + "text": "Made me hate science! Do not take him, he is not clear on what he expects, gives a whole lot of readings. Doesn't teach well the material, and then expects you to pass the quizzes! Worse experience ever.", + "pos": 0.0, + "neu": 0.749, + "neg": 0.251, + "_id": { + "$oid": "6711d407cd60fca157e5afbe" + } + }, + { + "text": "He is an okay professor in my opinion. I felt like it was his first time teaching students. He is very helpful though, if you ask questions he will try his best to explain it to people who don't understand. This class is extremely boring and he makes bio not fun. He's also no clear, and his quizzes are okay. Just review before going to class.", + "pos": 0.172, + "neu": 0.734, + "neg": 0.095, + "_id": { + "$oid": "6711d407cd60fca157e5afbf" + } + }, + { + "text": "I don't think he realizes that this class is not for science majors. His quizzes are very demanding and require you to know very detailed bio concepts. His quizzes are harder than the lecture exams. If he could fix his quizzes then it will be great.", + "pos": 0.082, + "neu": 0.875, + "neg": 0.044, + "_id": { + "$oid": "6711d407cd60fca157e5afc0" + } + }, + { + "text": "I really enjoyed his class! It was very interesting, and I learned a lot. He knows his stuff, and he is always there to help you.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d407cd60fca157e5afc1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d407cd60fca157e5afc3" + }, + "professor_name": "Angela Lopez", + "rating": 3.3, + "department": "Biology department", + "comments": [ + { + "text": "I think she cares about her students. She also gives lectures and tries to explain the concepts to us. She's very helpful when you ask her questions", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d407cd60fca157e5afc4" + } + }, + { + "text": "Angela cares about her students and she wants us to well! You do have to put in enough studying time for her since her quizzes can be specific.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d407cd60fca157e5afc5" + } + }, + { + "text": "Angela is a tough grader, but you learn a lot in her class. She cares a lot about her students and grades fairly. I took both her anatomy 1 and 2 classes during summer semesters and she did a wonderful job preparing us.", + "pos": 0.18, + "neu": 0.795, + "neg": 0.025, + "_id": { + "$oid": "6711d407cd60fca157e5afc6" + } + }, + { + "text": "Angela is the TA for anatomy and physiology 1 and 2. She is a kind person, but when it comes to lab, she makes lab harder than the professor does.", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d407cd60fca157e5afc7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d407cd60fca157e5afc9" + }, + "professor_name": "Javad Shabani", + "rating": 4.5, + "department": "Physics department", + "comments": [ + { + "text": "One of the best professors. I encourage you to take this professor. He cares about his students a lot.", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d407cd60fca157e5afca" + } + }, + { + "text": "Great guy. Took Dr. Shabani for the Physics seminar class. Very laid back. Only two main projects for the semester, which he gives pretty much half the semester to do each one. Very nice guy.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d407cd60fca157e5afcb" + } + }, + { + "text": "Amazing professor. The total grading percentage is 105 so you have 5% extra credit for attendance. There are 2 midterms: One take home (1 week time) and one in-class open book midterm. I must say, both midterms were quite difficult so study thoroughly. He gives extra credit in exams if you talk to him after getting test papers back.", + "pos": 0.135, + "neu": 0.823, + "neg": 0.042, + "_id": { + "$oid": "6711d407cd60fca157e5afcc" + } + }, + { + "text": "Professor Shahani is a great man. He has a nice personality. But his tests are really hard and lectures are hard to understand. They're all from the book, so you better READ and practice the problems from the homework.", + "pos": 0.178, + "neu": 0.675, + "neg": 0.147, + "_id": { + "$oid": "6711d407cd60fca157e5afcd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d408cd60fca157e5afcf" + }, + "professor_name": "Rhyan Toledo", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "She is a great professor with great lectures. She is very flexible and easygoing. She gives alot of extensions and extra credit. Overall, great professor.", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d408cd60fca157e5afd0" + } + }, + { + "text": "This professor is one of my favorite professors ever! If she taught another class, I would take it in a heartbeat! She's super understanding and caring, and creates a safe space in her classroom for openness and transparency. A few reflection papers, 3 exams and a final (with a cheat sheet allowed for all exams) and you're sure to pass! super easy!", + "pos": 0.335, + "neu": 0.628, + "neg": 0.036, + "_id": { + "$oid": "6711d408cd60fca157e5afd1" + } + }, + { + "text": "She's very nice. The material is pretty easy. She's also very willing to help students if they're having trouble in class. Overall, her class is interesting, funny, and pretty easy.", + "pos": 0.502, + "neu": 0.442, + "neg": 0.057, + "_id": { + "$oid": "6711d408cd60fca157e5afd2" + } + }, + { + "text": "LOVEDDD Professor Rhyan so much!! Not only was she knowledgeable about the class but she was very understanding! Her coursework is not overwhelming as many other psych classes. The class consisted of 4 reflections, 3 exams, and a final exam which was very doable. Absolutely loved this professor and would love to retake her for another class!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d408cd60fca157e5afd3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d408cd60fca157e5afd5" + }, + "professor_name": "Adam Marr", + "rating": 4.5, + "department": "Mathematics department", + "comments": [ + { + "text": "I did well on the midterms- not the finals lol that's okay. Guess what, though If I could,I would retake his class again. He is really funny, sometimes he is a little fast, but to be honest- don't blame him, blame the math department. He asks us if we need to go over something, very nice and direct w grading. just do ur homework u will be fine.WOO!", + "pos": 0.236, + "neu": 0.743, + "neg": 0.021, + "_id": { + "$oid": "6711d408cd60fca157e5afd6" + } + }, + { + "text": "had him else where as my teacher. he's goated.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d408cd60fca157e5afd7" + } + }, + { + "text": "I'm taking Math 190 with Professor Marr this fall and so far his class has been straight forward. Read the syllabus on grading and you'd see that the final exam overtakes you test grades if it is higher, very cool. Basically if you show up, go to tutoring once a week, and work on the areas you're having problems in you'll be fine.", + "pos": 0.093, + "neu": 0.868, + "neg": 0.04, + "_id": { + "$oid": "6711d408cd60fca157e5afd8" + } + }, + { + "text": "3 exams but 1 gets dropped each worth 25%. Homework is 10% and 40% for the final. Math is something you learn by yourself. He explains well and helps you when you're struggling but it's mostly depends on you if you study.", + "pos": 0.168, + "neu": 0.758, + "neg": 0.074, + "_id": { + "$oid": "6711d408cd60fca157e5afd9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d409cd60fca157e5afdb" + }, + "professor_name": "Maryam Omidi", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Loved her and loved this class! She is understanding. Her grading criteria is clear. You know what is expected of you from day 1. She also gave careful feedback on all assignments. I would take her again for sure.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d409cd60fca157e5afdc" + } + }, + { + "text": "Professor Omidi is very understanding and caring. Her slides are clear and she makes sure everyone understands the material. There are 2 short response papers, an easy DSM-5 assessment, a short write-up on an AA meeting, and a midterm and final. There is no textbook, lectures are recorded, and tests are during class time. Overall, she's great!", + "pos": 0.227, + "neu": 0.741, + "neg": 0.032, + "_id": { + "$oid": "6711d409cd60fca157e5afdd" + } + }, + { + "text": "A great and caring professor. She answers emails fast and she is always willing to clarify things. She was so accommodating to students, and recorded all the lectures, so we could view them later on. There is no textbook, so the midterm and final are all based on the lectures. For the final exam she gave us a full week to submit it!", + "pos": 0.109, + "neu": 0.86, + "neg": 0.032, + "_id": { + "$oid": "6711d409cd60fca157e5afde" + } + }, + { + "text": "Professor Omidi is very caring. She explains very clearly; she makes sure that everyone understands her lectures. She is honest and has a passion for her classes. Her PPs arent boring. She gives two main assignments, midterm and final. She also gives some quizzes but she did not grade them, is just to help us to refresh the material covered.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d409cd60fca157e5afdf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d409cd60fca157e5afe1" + }, + "professor_name": "Anna Linetskaya", + "rating": 5, + "department": "Humanities department", + "comments": [ + { + "text": "(Took her in Fall 2022 and I really loved her classes!) Really gets you into the cultural context of Russian Literature, resulting in many other students including me taking another of her class :) Very writing heavy, but she is easily contactable and can give further context to some readings if you have questions. Very thorough with her readings!!", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d409cd60fca157e5afe2" + } + }, + { + "text": "LOVED her. She provides all the PDFs. Gives amazing feedback on homework. She's very caring and reasonable. her lectures are interesting. Her choice of topics/material is extraordinary. There's quite a lot of reading but everything she gives is very interesting. Makes sure to remember her students and develops close connections with everyone.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d409cd60fca157e5afe3" + } + }, + { + "text": "She was really kind and always made an effort to know her students. Readings are sometimes long, and came with lecture videos, an assigned quiz, journal that was due every week, to prepare for discussion. The weekly work was time consuming, and attendance is mandatory. If you put effort in the journals, you might be excused from the final paper!", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d409cd60fca157e5afe4" + } + }, + { + "text": "She is the best. She truly care about her students, how they feel and how she present her lecture. The lectures are amazing and go deep in numerous topics. However, participation matters and if you wanna participate you have to read all the novels. You have to write a 300-word review of each novel about any topic you want. No midterm and no final.", + "pos": 0.24, + "neu": 0.703, + "neg": 0.056, + "_id": { + "$oid": "6711d409cd60fca157e5afe5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d409cd60fca157e5afe7" + }, + "professor_name": "Sergey Trostyanskiy", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "GOATED. Breaks down philosophy to its core. One day he lectures, other day a group of students give a presentation about the material (seminar type of discussion). Very lenient and caring for his students. Try your best to participate. Take home midterm and final based on the readings. Truly a gem. Not a free A, but if you work for it, youll get it", + "pos": 0.122, + "neu": 0.851, + "neg": 0.027, + "_id": { + "$oid": "6711d409cd60fca157e5afe8" + } + }, + { + "text": "Great Phil Professor! I took his two of his courses through two semesters and it is really amazing! The only written work is the mid term and finals, which are very easy if you pay attention and read the weekly readings. There is also weekly presentations that are mandatory but very easy. Very caring and understanding.", + "pos": 0.268, + "neu": 0.715, + "neg": 0.018, + "_id": { + "$oid": "6711d409cd60fca157e5afe9" + } + }, + { + "text": "Little to no written work for this class, the bulk of the assignments are weekly presentations in groups of 3. As long as you participate you'll be fine in the class. Hes super nice to students but can get a little passive aggressive if no one participates. highly recommend.", + "pos": 0.193, + "neu": 0.708, + "neg": 0.099, + "_id": { + "$oid": "6711d409cd60fca157e5afea" + } + }, + { + "text": "He's extremely kind and passionate about what he does. He doesn't assign homework and pushes students to engage in discussions in class. He's very lenient and is willing to work with you if you're having difficulty in the class. Definitely worth taking this class.", + "pos": 0.298, + "neu": 0.659, + "neg": 0.043, + "_id": { + "$oid": "6711d409cd60fca157e5afeb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40acd60fca157e5afed" + }, + "professor_name": "Camille Lester", + "rating": 3, + "department": "Psychology department", + "comments": [ + { + "text": "She's a easy grader. As long you do your work , you should be fine. Less stress and less work too.", + "pos": 0.186, + "neu": 0.714, + "neg": 0.099, + "_id": { + "$oid": "6711d40acd60fca157e5afee" + } + }, + { + "text": "Yes, she takes a while to respond to emails, but only because she is a student herself. Her class is 100% asynchronous. We learned tons with no pressure. Her lectures are well detailed and very interesting. Loved, loved, loved, her class!!! SO EASY!! GO FOR IT! Wish she taught more classes...", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d40acd60fca157e5afef" + } + }, + { + "text": "Even though this class was asynchronous, she has never responded to an email I have sent her. Students had to email each other to get work done because there was always confusion. She is disorganized, a bad communicator, lackadaisical and unreliable. This class is a pass for me.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d40acd60fca157e5aff0" + } + }, + { + "text": "She does not know how to teach unless it's through her lecture slides. If you disagree with her she takes it personally. Seemed like she didn't enjoy teaching and grading criteria was not clear. I did not like this class and didn't find it helpful.", + "pos": 0.047, + "neu": 0.731, + "neg": 0.222, + "_id": { + "$oid": "6711d40acd60fca157e5aff1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40acd60fca157e5aff3" + }, + "professor_name": "Kunga Tsetan", + "rating": 4, + "department": "Chemistry department", + "comments": [ + { + "text": "He is not as good as he sounds, he is a tough cookie to impress. If you mess up in any way, he gets really irritated and you lose points on the lab. The only upside to him is that he is quick and you leave early (he is always in a rush), but he isn't the best TA in my opinion. Take someone better if you can.", + "pos": 0.073, + "neu": 0.745, + "neg": 0.181, + "_id": { + "$oid": "6711d40acd60fca157e5aff4" + } + }, + { + "text": "Explains and guides the students through the lab so that they could finish hours before other sections and still understand what they were performing. lenient grader (make sure you follow the rubric and include everything he asks for). Really fair. If you think you don't deserve a certain grade, go talk to him he'll consider it.", + "pos": 0.115, + "neu": 0.855, + "neg": 0.03, + "_id": { + "$oid": "6711d40acd60fca157e5aff5" + } + }, + { + "text": "13 labs - he drops your lowest grade. You have a lab report due every week.", + "pos": 0.0, + "neu": 0.852, + "neg": 0.148, + "_id": { + "$oid": "6711d40acd60fca157e5aff6" + } + }, + { + "text": "Kunga was my lab TA and at first he seemed to go too fast and it was overwhelming but later on in the labs, you will appreciate his pace since he will finish everything hours before the other lab classes. He also has a poker face and alot of students thought he was intimidating but hes' actually pretty chill.", + "pos": 0.116, + "neu": 0.827, + "neg": 0.057, + "_id": { + "$oid": "6711d40acd60fca157e5aff7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40acd60fca157e5aff9" + }, + "professor_name": "Doerthe Eisele", + "rating": 4, + "department": "Chemistry department", + "comments": [ + { + "text": "Horrible. Waste of time. She does not teach you anything.", + "pos": 0.0, + "neu": 0.559, + "neg": 0.441, + "_id": { + "$oid": "6711d40acd60fca157e5affa" + } + }, + { + "text": "The professor was able to unify the whole online course unlike any other courses I have taken yet. Her caring and inspiring attitude had created a learning environment, and erased the students' exam anxieties through clear and concise grading policies. Her extra credit projects allowed student to grasp the course materials clearly.", + "pos": 0.254, + "neu": 0.72, + "neg": 0.026, + "_id": { + "$oid": "6711d40acd60fca157e5affb" + } + }, + { + "text": "She wants all of her students to succeed! She also makes you learn chemistry concepts in lecture through repetition. She's a great professor!", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d40acd60fca157e5affc" + } + }, + { + "text": "Great teacher!! I STRONGLY recommend that everyone takes her classes. DO NOT HESITATE!!!!", + "pos": 0.59, + "neu": 0.41, + "neg": 0.0, + "_id": { + "$oid": "6711d40acd60fca157e5affd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40bcd60fca157e5afff" + }, + "professor_name": "Tenzin Getso", + "rating": 3.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Class and material is hard and Getso likes to make you think. Exams are not straightforward - he really wants to make sure you understand concepts and are not just spitting back information. Study concepts, do practice problems and old exams and you should get the hang of it. Ask questions and participate. He cares a lot about his students.", + "pos": 0.121, + "neu": 0.818, + "neg": 0.061, + "_id": { + "$oid": "6711d40bcd60fca157e5b000" + } + }, + { + "text": "Good professor, and explains concepts very well.", + "pos": 0.514, + "neu": 0.486, + "neg": 0.0, + "_id": { + "$oid": "6711d40bcd60fca157e5b001" + } + }, + { + "text": "perfect professor! everything is clear and always answers ur question. u will pass it and get a EZ A", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d40bcd60fca157e5b002" + } + }, + { + "text": "There is no doubt that Tenzin is passionate about CE but where he fails is being able to deal with the students. His grading is harsh to say the least and leaves zero room for discussion. If you are doing poorly, he will always compare you to himself and belittle you with his arrogance. I hope he changes things around if he plans on teaching.", + "pos": 0.093, + "neu": 0.711, + "neg": 0.196, + "_id": { + "$oid": "6711d40bcd60fca157e5b003" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40bcd60fca157e5b005" + }, + "professor_name": "Ozden Ocak", + "rating": 4, + "department": "International Studies department", + "comments": [ + { + "text": "wonderful person, very patient and helpful. i learned a lot from her lectures.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d40bcd60fca157e5b006" + } + }, + { + "text": "Very nice person, yes she expects a little too much but if you do the job you can get an A!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d40bcd60fca157e5b007" + } + }, + { + "text": "Very understanding professor with a few writing assignments of ~500 words. Also allowed a bonus writing assignment as extra assignment, and took time to make sure that students understood the material. Just do the reading, participate in class, and you'll do more than fine.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d40bcd60fca157e5b008" + } + }, + { + "text": "She's nice , but as a Professor she expects way too much. She will help and answer your questions, but her answers leave you more confused than before. You MUST read the textbook and she cold calls about specific tidbits and theories. You can't really bs anything. For her assignments take what she says in lectures + textbook and you'll get a 3/5.", + "pos": 0.079, + "neu": 0.853, + "neg": 0.068, + "_id": { + "$oid": "6711d40bcd60fca157e5b009" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40bcd60fca157e5b00b" + }, + "professor_name": "Kathryn Harrison", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "does not care about her students or respect their personal lives. would never take her again no matter how \"cool\" she seems.", + "pos": 0.199, + "neu": 0.664, + "neg": 0.137, + "_id": { + "$oid": "6711d40bcd60fca157e5b00c" + } + }, + { + "text": "She cool but dont want you to call her Ms", + "pos": 0.15, + "neu": 0.728, + "neg": 0.121, + "_id": { + "$oid": "6711d40bcd60fca157e5b00d" + } + }, + { + "text": "Caring and thoughtful! I really enjoyed our time together.", + "pos": 0.617, + "neu": 0.383, + "neg": 0.0, + "_id": { + "$oid": "6711d40bcd60fca157e5b00e" + } + }, + { + "text": "Kat is definitely the best prof I've ever had. She's passionate about the course material and is very engaging. Also easy to become friends with and talk outside class. She still checks up on us even though we had her last semester. I got a D because I was missing a lot of work. I should've failed, but Kat passed me anyways thanks to ec.", + "pos": 0.216, + "neu": 0.735, + "neg": 0.049, + "_id": { + "$oid": "6711d40bcd60fca157e5b00f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40ccd60fca157e5b011" + }, + "professor_name": "Fred Moshary", + "rating": 1.8, + "department": "Earth Science department", + "comments": [ + { + "text": "Labs were all take-home. You had one week to do lab, then a week to do report. Only four out of five labs need to be performed. You get to choose which four. DON'T WRITE BAD REPORTS! Final grade is only based on lab reports. He is not forgiving in grading if you do not complete parts of the lab. There is time at end of semester to re-do a lab", + "pos": 0.049, + "neu": 0.919, + "neg": 0.032, + "_id": { + "$oid": "6711d40ccd60fca157e5b012" + } + }, + { + "text": "graded by one homework and one project. nothing interesting. dont take him", + "pos": 0.0, + "neu": 0.83, + "neg": 0.17, + "_id": { + "$oid": "6711d40ccd60fca157e5b013" + } + }, + { + "text": "Why is this professor teaching important Comp E classes?", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d40ccd60fca157e5b014" + } + }, + { + "text": "A professor that never teaches!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d40ccd60fca157e5b015" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40ccd60fca157e5b017" + }, + "professor_name": "Benjamin Nadler", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Took his class 10 years ago in 2013. He was a great professor. My mom died right before finals & he allowed me to delay my final for a few weeks. Thanks to him I was able to grieve appropriately instead of worrying about grades. I graduated, went to med school, became a physician, and he is on a (long) list of people I'm very thankful for.", + "pos": 0.134, + "neu": 0.733, + "neg": 0.133, + "_id": { + "$oid": "6711d40ccd60fca157e5b018" + } + }, + { + "text": "professor Nadler is very informative and makes you actually do the work. While he does set deadlines to make sure you don't slack, he is fairly lenient. He grades fairly, and an overall fun person to get along with, and has a nice beard.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d40ccd60fca157e5b019" + } + }, + { + "text": "There are no exams, just a lot of readings, discussions, and workshops. Professor Nadler makes class interesting. He's pretty funny. You don't need to buy anything for this class because he provides a course packet. Participation is a must. Overall his class is fun & he's a great person.", + "pos": 0.264, + "neu": 0.7, + "neg": 0.036, + "_id": { + "$oid": "6711d40ccd60fca157e5b01a" + } + }, + { + "text": "Professor Nadler is one of the more caring professors I have met at CCNY. He grades fairly and makes the class very interesting. I can now confidently find,read, and comprehend scientific journal articles. Make sure to come to class prepared, do all the assignments and participate in class and you are sure to get a good grade. Great guy overall!", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d40ccd60fca157e5b01b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40ccd60fca157e5b01d" + }, + "professor_name": "Catherine Haase", + "rating": 4.2, + "department": "Speech department", + "comments": [ + { + "text": "In general, she is a very nice teacher. If you are in front of the camera, she is the most amazing person that you can find. However, if you are behind the camera she is the person that you don't want to be with. She knows a lot about the business and what she is teaching. Just take her class and do as she says and you will be OK. You learn a lot", + "pos": 0.09, + "neu": 0.894, + "neg": 0.015, + "_id": { + "$oid": "6711d40ccd60fca157e5b01e" + } + }, + { + "text": "Speech is a really easy class and even though a lot of students did not show up, they passed anyways. I just felt like she let most of the students off easy. It was definitely an easy A and almost no effort required at all, but I do wish I learned more. I'd recommend taking this class with her if you're taking harder classes to balance it out.", + "pos": 0.215, + "neu": 0.767, + "neg": 0.019, + "_id": { + "$oid": "6711d40ccd60fca157e5b01f" + } + }, + { + "text": "Prof. Haase has a very good foundation in teaching acting technique (sense memory). She's an experienced actress who works in the industry and shares necessary tools of the field with her students. She gives good instructions on how to tackle and break down a character to get the best outcome. It was great taking her class, i learned a lot.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d40ccd60fca157e5b020" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40dcd60fca157e5b022" + }, + "professor_name": "Christopher Woll", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "Great professor. Really knowledgeable and super approachable. Just study. Make sure you study because your grade will be based off of your exams( for 217)", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d40dcd60fca157e5b023" + } + }, + { + "text": "You learn a lot in his classes. Just put time aside to study. He's super reasonable. And what he teaches is very applicable.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d40dcd60fca157e5b024" + } + }, + { + "text": "A very relaxed environment, a lot of fun in between lectures. A lot of fun projects in this class, and he gives you a lot of creative freedom. Class only takes place once a week so don't miss anything if you don't have to. You will fall behind. Don't miss projects or turn anything in late.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d40dcd60fca157e5b025" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40dcd60fca157e5b027" + }, + "professor_name": "Jennifer Light", + "rating": 2.3, + "department": "Political Science department", + "comments": [ + { + "text": "Will B+ you to death, just stay strong and do the extra credit.", + "pos": 0.298, + "neu": 0.505, + "neg": 0.197, + "_id": { + "$oid": "6711d40dcd60fca157e5b028" + } + }, + { + "text": "Shes sweet and understanding. Medium level difficulty class.", + "pos": 0.263, + "neu": 0.526, + "neg": 0.211, + "_id": { + "$oid": "6711d40dcd60fca157e5b029" + } + }, + { + "text": "The class is really boring and unnecessary. She doesnt know how to teach plus she has attitude problems. The class work is light. Just show up, participate, and do the papers. She should give on teaching.", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d40dcd60fca157e5b02a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40dcd60fca157e5b02c" + }, + "professor_name": "Anna Phillips", + "rating": 4.7, + "department": "Biology department", + "comments": [ + { + "text": "Awesome lab professor. Makes material very approachable and, believe it or not, makes lab relevant to lecture! Gives most important information that you need to know and weeds out the useless information for you. I learned a great deal from Anna and hope to have her again as a professor. Very fair grader and very sweet. A+ for Anna Phillips.", + "pos": 0.258, + "neu": 0.705, + "neg": 0.037, + "_id": { + "$oid": "6711d40dcd60fca157e5b02d" + } + }, + { + "text": "she was very down to earth and very friendly. expressed her own opions about the topics, which made them easier to learn. .. always looking out for the students best... i wishh all lab instructors were like her =) and i would definatly take a lab with anna again =)", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d40dcd60fca157e5b02e" + } + }, + { + "text": "this Ph.D student explains the concept very well...she writes on the board which helps the student alot...keep it upp", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d40dcd60fca157e5b02f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40ecd60fca157e5b031" + }, + "professor_name": "Jeremy Murphy", + "rating": 4.3, + "department": "Psychology department", + "comments": [ + { + "text": "In a word easy A. 3 tests easy as hell cuz he gives review before the test and the test ques comes stright from it.... if you want a A take him", + "pos": 0.179, + "neu": 0.705, + "neg": 0.116, + "_id": { + "$oid": "6711d40ecd60fca157e5b032" + } + }, + { + "text": "Vey laid back. The material was kind of boring but its the subject itself. Gives review sheet b4 exam study that and your notes and you should do well.Skim through the main points in the textbook. Gives exactly wht is coverd in class. Fare grader. Gud class for high grade & GPA.There is also extra credits available.", + "pos": 0.054, + "neu": 0.916, + "neg": 0.03, + "_id": { + "$oid": "6711d40ecd60fca157e5b033" + } + }, + { + "text": "Excellent professor! Explains exactly what is expected of the student and means it. He clearly defines and describes complex processes. He is very intelligent and has the ability to put intricate models into layman terms. Attendance in my opinion is mandatory; to miss one day is to miss a lot of material. Read the text and ask for help if needed -M", + "pos": 0.241, + "neu": 0.715, + "neg": 0.043, + "_id": { + "$oid": "6711d40ecd60fca157e5b034" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40ecd60fca157e5b036" + }, + "professor_name": "Luis Henao", + "rating": 4.7, + "department": "Spanish department", + "comments": [ + { + "text": "Absolutely love this professor. He's very helpful and he's patient. Hes also very easy on the eyes.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d40ecd60fca157e5b037" + } + }, + { + "text": "he is super! very interactive in class, gives examples and explains very clearly. tells corny jokes all the time and is a fair grader. gives plenty of extra credit so its easy to get a good grade. does not treat students like idiots. i wanted to keep learning Spanish because of him. plus hes good looking... don't ever be late for his class he does", + "pos": 0.28, + "neu": 0.667, + "neg": 0.053, + "_id": { + "$oid": "6711d40ecd60fca157e5b038" + } + }, + { + "text": "Cool guy. Very easy exams. Don't come late, although he won't fuss as much as other professors. Lots of group work. Easy grader, rarely gives homework. Lots of extra credit & exam corrections. If you cannot get a good grade, you need to go back to your 121 professor and get him/her fired. There are too many opportunities to get an A in this course", + "pos": 0.175, + "neu": 0.747, + "neg": 0.077, + "_id": { + "$oid": "6711d40ecd60fca157e5b039" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40fcd60fca157e5b03b" + }, + "professor_name": "Lina Velliou", + "rating": 4.5, + "department": "Spanish department", + "comments": [ + { + "text": "She is a great Spanish profesora. All you have to do in her class is read the text, take notes, do some workbook HW, and participate and you will be fine. Participation is key. Also study the verb tenses (they will be on every quiz/test). She's cool and very helpful!", + "pos": 0.198, + "neu": 0.769, + "neg": 0.032, + "_id": { + "$oid": "6711d40fcd60fca157e5b03c" + } + }, + { + "text": "I love this professor!!! She is so funny and keeps class interesting and engaged!!! She breaks down grammar really well and teaches it in a way you can remember and use in your daily spanish speaking excursions. Study for the quizzes and this class will be a breeze. Lina rocks... one of a kind type of professor!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d40fcd60fca157e5b03d" + } + }, + { + "text": "She is flexible", + "pos": 0.487, + "neu": 0.513, + "neg": 0.0, + "_id": { + "$oid": "6711d40fcd60fca157e5b03e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40fcd60fca157e5b040" + }, + "professor_name": "Pamela Stein", + "rating": 4.7, + "department": "Music department", + "comments": [ + { + "text": "I think she is an awesome professor. I would have liked if she stayed at ccny though.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d40fcd60fca157e5b041" + } + }, + { + "text": "I had her for Theory 1 and shes an excellent teacher. She teaches well and she takes her time and slows down for the dumb students as well. If you're having trouble in her class, you really shouldn't be majoring in music. Great professor and easy going. You'll learn the material and do well. I recommend her.", + "pos": 0.265, + "neu": 0.653, + "neg": 0.082, + "_id": { + "$oid": "6711d40fcd60fca157e5b042" + } + }, + { + "text": "She's great. Willing to listen to the students. But some materials that she didn't explain well enough", + "pos": 0.129, + "neu": 0.759, + "neg": 0.112, + "_id": { + "$oid": "6711d40fcd60fca157e5b043" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d40fcd60fca157e5b045" + }, + "professor_name": "Rachel Kirkwood", + "rating": 4.7, + "department": "Humanities department", + "comments": [ + { + "text": "Professor Kirkwood is an amazing professor! I believe she is doing her PH.D or something in education, but she is on a great track to become a great full-professor. Her class wasn't very diffucult, and when you don't understand something, she will gladly help you. Since she's closer to college student age, she understands our struggles, & will help", + "pos": 0.292, + "neu": 0.666, + "neg": 0.042, + "_id": { + "$oid": "6711d40fcd60fca157e5b046" + } + }, + { + "text": "Ms. Kirkwood is a great teacher . She's fun and makes the class interesting ! Also great feedback on papers !", + "pos": 0.465, + "neu": 0.535, + "neg": 0.0, + "_id": { + "$oid": "6711d40fcd60fca157e5b047" + } + }, + { + "text": "so nice and really considerate. very fair grader", + "pos": 0.646, + "neu": 0.354, + "neg": 0.0, + "_id": { + "$oid": "6711d40fcd60fca157e5b048" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d410cd60fca157e5b04a" + }, + "professor_name": "Anika Pensiero", + "rating": 3, + "department": "Speech department", + "comments": [ + { + "text": "As long as you listen to the feedback she gives, Professor Pensiero is a dream. She's fun and pretty lenient when it comes to grading. Yes, you have to participate (it's PUBLIC SPEAKING class), but if you do you're guaranteed a good grade.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d410cd60fca157e5b04b" + } + }, + { + "text": "hated the work, teacher not bad", + "pos": 0.258, + "neu": 0.362, + "neg": 0.38, + "_id": { + "$oid": "6711d410cd60fca157e5b04c" + } + }, + { + "text": "She doesn't know what a good speech is. Only wants you to speeches in a boring, lame way. If you dont do it her way you're gonna have a hard time.", + "pos": 0.08, + "neu": 0.742, + "neg": 0.179, + "_id": { + "$oid": "6711d410cd60fca157e5b04d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d410cd60fca157e5b04f" + }, + "professor_name": "Lindsay Goss", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "professor goss was a great choice for intro to lit studies. i recommend her to everyone looking at this course, and even for her other courses! the reading's are interesting and class discussions are always fun/never boring. :)", + "pos": 0.263, + "neu": 0.689, + "neg": 0.048, + "_id": { + "$oid": "6711d410cd60fca157e5b050" + } + }, + { + "text": "Amazing professor though she definitely is a hard grader. But as long as you pay attention to what she's teaching and ask her for help you will be good.", + "pos": 0.311, + "neu": 0.614, + "neg": 0.075, + "_id": { + "$oid": "6711d410cd60fca157e5b051" + } + }, + { + "text": "A tough grader on papers but the smaller assignments during the semester are much more engaging and are difficult to do bad on, just be detailed in your work. She's very kind and her lectures are for the most part very interesting. If you can handle being graded very seriously on papers, then take her class. It's the only risky thing about her :)", + "pos": 0.197, + "neu": 0.64, + "neg": 0.162, + "_id": { + "$oid": "6711d410cd60fca157e5b052" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d410cd60fca157e5b054" + }, + "professor_name": "Yaxi Zheng", + "rating": 4.7, + "department": "Chinese department", + "comments": [ + { + "text": "She is a great professor! She makes you want to learn more and she give u extra help if you need it. The test may be hard but it can manage. 100% would take and continue on", + "pos": 0.146, + "neu": 0.824, + "neg": 0.03, + "_id": { + "$oid": "6711d410cd60fca157e5b055" + } + }, + { + "text": "shouldnt be too hard if you study the lesson vocabulary before every class. will be quizzes every class on vocab", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d410cd60fca157e5b056" + } + }, + { + "text": "Go for it!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d410cd60fca157e5b057" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d411cd60fca157e5b059" + }, + "professor_name": "Sierra Rooney", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She is amazing! But a very strict grader accepts papers as only hard copy in person - no mailbox so unfortunately failed the class due to unfourtunate circumstances on the final class. I would have otherwise gotten a B+ possibly an A - either way greatful i had her and would take her again.", + "pos": 0.086, + "neu": 0.718, + "neg": 0.196, + "_id": { + "$oid": "6711d411cd60fca157e5b05a" + } + }, + { + "text": "If you write real well you'll get an A for sure. She went to NYU so she's very knowledgeable and a little strict with the essays but not to strict. Just follow her instructions and you'll do well. Her midterm and final are all about memorizing slides. The suckish part is remembering like 50 slides only to see like 5 or 7 of em on both tests.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d411cd60fca157e5b05b" + } + }, + { + "text": "Shes veryyy nicee! I got an A. Only gives like two essays(not including the autobiography), the midterm and final.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d411cd60fca157e5b05c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d411cd60fca157e5b05e" + }, + "professor_name": "Helen Stayna", + "rating": 4.3, + "department": "Psychology department", + "comments": [ + { + "text": "This is a very easy class. Stayna reads directly from the slides and provides ALL the slides before class. No textbook required. If you can memorize the slides, you will pass her class. 3 quizzes (drops the lowest one), a midterm (30q's) and a final (roughly 30 q's) make up your entire grade. Very easy A.", + "pos": 0.101, + "neu": 0.823, + "neg": 0.076, + "_id": { + "$oid": "6711d411cd60fca157e5b05f" + } + }, + { + "text": "Purely lecture based, tries to make room for students to participate, very sweet personality. This course is very heavy loaded with info so be prepared.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d411cd60fca157e5b060" + } + }, + { + "text": "Long, long lectures. Professor Stayna will prepare you for her quizzes, midterm and final by telling you what to review for. Paper is easy. Class can get pretty boring, in saying that she reads everything right from the slides, but knowledgable nonetheless.", + "pos": 0.091, + "neu": 0.872, + "neg": 0.037, + "_id": { + "$oid": "6711d411cd60fca157e5b061" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d411cd60fca157e5b063" + }, + "professor_name": "Debra Kennedy", + "rating": 5, + "department": "Advisor department", + "comments": [ + { + "text": "The extraordinary counselor who always greeted you into her office with a smile and kind gesture. Always open to hear anything you need, always there when you needed her, always cared for all even if you werent her student. She told me to never quit engineering since 2016, now I am a senior and close to finishing thanks to her guidance. Rip prof.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d411cd60fca157e5b064" + } + }, + { + "text": "She is an amazing advisor. She is there for you when something is wrong with you or your not feeling well she will help you through. She gives homework but they are simply simple. Just make sure you always attend class and do your hws, you will be fine. She gives an final exam but it is so easy because she provides you with a review sheet.", + "pos": 0.186, + "neu": 0.755, + "neg": 0.059, + "_id": { + "$oid": "6711d411cd60fca157e5b065" + } + }, + { + "text": "Amazing advisor, she's very helpful and is always willing to help you. If she doesn't have the answer to your question she will try her best to find the information you need, if not, she'll refer you to someone.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d411cd60fca157e5b066" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d412cd60fca157e5b068" + }, + "professor_name": "Tom Beno", + "rating": 2.3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "I Love him!", + "pos": 0.692, + "neu": 0.308, + "neg": 0.0, + "_id": { + "$oid": "6711d412cd60fca157e5b069" + } + }, + { + "text": "He never teach any thing. Be ready to study every thing by your own. Dont ask questions coz he never has answers. No tests, just one midterm and final, which are the sums from text book. More then half of the class will get an A. ME students will have problems in higher subjects if taking his class. Its better to wait a year for other proffesor.", + "pos": 0.1, + "neu": 0.863, + "neg": 0.037, + "_id": { + "$oid": "6711d412cd60fca157e5b06a" + } + }, + { + "text": "he doesnt know anything and has a military teaching style..... obey or die... gets pissed off when students ask questions... tests are the same exact problems from the book though", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d412cd60fca157e5b06b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d412cd60fca157e5b06d" + }, + "professor_name": "Abraham Rubin", + "rating": 2, + "department": "World Humanities department", + "comments": [ + { + "text": "horrible professor, very unclear about what he expects from you, assigns too many readings and gives horrible feedback", + "pos": 0.0, + "neu": 0.617, + "neg": 0.383, + "_id": { + "$oid": "6711d412cd60fca157e5b06e" + } + }, + { + "text": "Rubin is an easy grader who doesn't accept late work. To pass all you have to do is read the book (and if you don't he encourages students to use sparknotes and at least pretend) and participate. He gives two papers, and only quizzes when people haven't read.", + "pos": 0.055, + "neu": 0.832, + "neg": 0.113, + "_id": { + "$oid": "6711d412cd60fca157e5b06f" + } + }, + { + "text": "He is a nice person, but his teaching method is not the most effective one. Never organized, always late and would get mad if anybody gets to class late. Doesn't seem to know how to take students to the point where they know what the readings are about and what he expects. Lots of BORING readings and takes years to give feedback. No Extra Credits.", + "pos": 0.024, + "neu": 0.753, + "neg": 0.223, + "_id": { + "$oid": "6711d412cd60fca157e5b070" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d412cd60fca157e5b072" + }, + "professor_name": "Laurel Eisenbruch", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "Good professor, gives 2 quizzes, two exams. A lot of writing and reading for this class. Only one speech and its the final speech.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d412cd60fca157e5b073" + } + }, + { + "text": "Excellent professor. She is a bit old school but in a good way. She knows her material well and also takes her time out to listens to every student individually and remembers who you are. Take her class if your looking to improve your speech.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d412cd60fca157e5b074" + } + }, + { + "text": "Excellent professor. Easy class. Extremely fair grader. Attend class and participate and you will do fine.", + "pos": 0.478, + "neu": 0.522, + "neg": 0.0, + "_id": { + "$oid": "6711d412cd60fca157e5b075" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d412cd60fca157e5b077" + }, + "professor_name": "Yoko Ikeda", + "rating": 3.8, + "department": "Asian Studies department", + "comments": [ + { + "text": "Professor Ikeda is a good professor. It is true that her lectures are boring. It's anthropology, you either like it or you don't. Her lectures are helpful since most of her exams comes from the lecture notes. It is true that her exams are easy, but her final exam is quite tricky. Overall a good professor.", + "pos": 0.23, + "neu": 0.71, + "neg": 0.06, + "_id": { + "$oid": "6711d412cd60fca157e5b078" + } + }, + { + "text": "this prof's lectures are kinda boring, but the class discussions are fun and interesting. there is a lot of reading, you dont have to do it but your grade will probably be better if you do. hw and attendance are graded and her tests are pretty straight forward for the most part.", + "pos": 0.28, + "neu": 0.697, + "neg": 0.023, + "_id": { + "$oid": "6711d412cd60fca157e5b079" + } + }, + { + "text": "Nice professor! Very opinionated and gives lots of class discussions. Overall a fun experience.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d412cd60fca157e5b07a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d413cd60fca157e5b07c" + }, + "professor_name": "Elizabeth Sibilia", + "rating": 4.8, + "department": "International Studies department", + "comments": [ + { + "text": "Very good professor, knows her stuff. Attendance is mandatory, hw's are easy. Definitely came out of her class learning a lot. Some lectures can be boring.", + "pos": 0.302, + "neu": 0.629, + "neg": 0.069, + "_id": { + "$oid": "6711d413cd60fca157e5b07d" + } + }, + { + "text": "Good professor. She is very into what she does. You have to go to class, but she is always there to help if you e-mail her. Powerpoint used a LOT. Weekly online journals is hw - no tests. I would absolutely reccoment", + "pos": 0.116, + "neu": 0.825, + "neg": 0.059, + "_id": { + "$oid": "6711d413cd60fca157e5b07e" + } + }, + { + "text": "Best and nicest professor. No exams, only 2 papers and 1 group presentation. Overall satisfied and recommend to anyone.", + "pos": 0.439, + "neu": 0.484, + "neg": 0.076, + "_id": { + "$oid": "6711d413cd60fca157e5b07f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d413cd60fca157e5b081" + }, + "professor_name": "Titcha HO", + "rating": 1.8, + "department": "English department", + "comments": [ + { + "text": "She was a good professor, tends to get off topic but you really wont mind cause shes an easy A as long as you show up and look like you are pay attention", + "pos": 0.228, + "neu": 0.731, + "neg": 0.04, + "_id": { + "$oid": "6711d413cd60fca157e5b082" + } + }, + { + "text": "Avoid her you won't understand a word that she says. I had to drop the class which I never do.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d413cd60fca157e5b083" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d413cd60fca157e5b084" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d414cd60fca157e5b086" + }, + "professor_name": "Brendan Kibbee", + "rating": 4.8, + "department": "Music department", + "comments": [ + { + "text": "Honestly, I had no interest in this course when I registered for it. I just needed it as requirement. But what a pleasant surprise it was! Prof. Kibbee was amazing! It turned into my favorite class of the semester. I genuinely looked forward to his lectures and the music was great. Very interesting. Can't go wrong w/ Prof. Kibbee.", + "pos": 0.381, + "neu": 0.598, + "neg": 0.021, + "_id": { + "$oid": "6711d414cd60fca157e5b087" + } + }, + { + "text": "What a wonderful teacher. He is required to assign papers and give exams, but makes them as easy as possible. All that's important to him is that his students are interested and engaged in the material. Really passionate about his subject.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d414cd60fca157e5b088" + } + }, + { + "text": "Prof. Kibbee is great! really cool guy and the class is very interesting. Definitely take it if you're really into music. The workload is easy if you keep up. He gives you hints for the readings and exam reviews. You can't go wrong with this class.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d414cd60fca157e5b089" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d414cd60fca157e5b08b" + }, + "professor_name": "Jennifer Krause", + "rating": 4.8, + "department": "Judaic Studies department", + "comments": [ + { + "text": "SHE MAY COME OFF AS VERY INTIMIDATING AND HARD BUT SHE IS HONESTLY THE BEST PROFESSOR AT CCNY. VERY EASY CLASS. HER EXAMS AND PAPERS ARE STRAIGHTFORWARD. JUST GO TO CLASS AND PAY ATTENTION :) EASY A+", + "pos": 0.429, + "neu": 0.453, + "neg": 0.118, + "_id": { + "$oid": "6711d414cd60fca157e5b08c" + } + }, + { + "text": "awesome professor, really helpful and really easy!! she knows her stuff!!", + "pos": 0.591, + "neu": 0.409, + "neg": 0.0, + "_id": { + "$oid": "6711d414cd60fca157e5b08d" + } + }, + { + "text": "Professor Krause is amazing! I thought this class was going to be boring because I'm not religious at all but she made this course so interesting. Attendance is extremely mandatory, participate, and do the 2 projects.", + "pos": 0.217, + "neu": 0.745, + "neg": 0.038, + "_id": { + "$oid": "6711d414cd60fca157e5b08e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d414cd60fca157e5b090" + }, + "professor_name": "Sunita Vatuk", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "A bit of a stickler for participation, but she's pretty fair, all in all. Approachable outside of class, can hold a conversation, and is EXTREMELY passionate about math, her field of study. She cares about each individual student, and, at the end of the day, she just wants them to understand the material and succeed. Her lectures are a bore though.", + "pos": 0.274, + "neu": 0.695, + "neg": 0.032, + "_id": { + "$oid": "6711d414cd60fca157e5b091" + } + }, + { + "text": "She knew her math inside and out, she taught it very fundamentally and worked well with an audience of non-math majors and math-related majors alike. Learned a lot from her, gave a new perspective on math. Very kind, but also quite passive-aggressive... She loves those who participate, so engaging with and in class will help your grade immensely.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d414cd60fca157e5b092" + } + }, + { + "text": "She is very approachable and friendly in class. Make sure to stop by her office hours and talk to her about how you're doing. She genuinely cares about her students learning and will put a lot of effort into helping you. She gives A LOT of work to do, but as long as you stay consistent doing the work throughout the semester, you'll do fine.", + "pos": 0.138, + "neu": 0.839, + "neg": 0.023, + "_id": { + "$oid": "6711d414cd60fca157e5b093" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d415cd60fca157e5b095" + }, + "professor_name": "Mark Smith", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "This professor is one of the best! He has a real passion for graphic design and gives the best feedback. There were 3 main projects, letterform design, book and poster. He makes projects fun, which is why I loved the class. Attendance is mandatory or else youll fail.", + "pos": 0.312, + "neu": 0.634, + "neg": 0.054, + "_id": { + "$oid": "6711d415cd60fca157e5b096" + } + }, + { + "text": "Best design prof at CCNY by a longshot", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d415cd60fca157e5b097" + } + }, + { + "text": "This professor really cares and makes the effort so that you do great projects and i like that he gives great feedback.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d415cd60fca157e5b098" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d415cd60fca157e5b09a" + }, + "professor_name": "Jesse Kanter", + "rating": 3.4, + "department": "Physics department", + "comments": [ + { + "text": "Great TA! He knows his stuff which is useful during the lab sessions and recitation. He is however very tough on grading and deadlines. For lab reports, he will tell you what to include in it rather than have you answer the lab report questions.", + "pos": 0.143, + "neu": 0.822, + "neg": 0.035, + "_id": { + "$oid": "6711d415cd60fca157e5b09b" + } + }, + { + "text": "Very tough grader . If you are late to submit the lab report, his gonna take a lot points from you. 5 points is good , but 15 or 50 points from your overall grade is too much .", + "pos": 0.048, + "neu": 0.917, + "neg": 0.035, + "_id": { + "$oid": "6711d415cd60fca157e5b09c" + } + }, + { + "text": "He is really nice but he will grade your report like it is about to be publish in a Magazine. Really tough grader but helps a lot.", + "pos": 0.257, + "neu": 0.679, + "neg": 0.065, + "_id": { + "$oid": "6711d415cd60fca157e5b09d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d415cd60fca157e5b09f" + }, + "professor_name": "Grace Kearney", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "So sweet. Took her class freshman year. Clear grading system. Will extend due dates. As long as you do most assignments, you'll be fine. A lot of group work and breakout rooms.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d415cd60fca157e5b0a0" + } + }, + { + "text": "Her syllabus is very straightforward and the course is easy to keep track of. She also is very flexible and encouraging. She will definitely give you the benefit of the doubt if you miss a few classes. Class has a few peer review days.", + "pos": 0.26, + "neu": 0.666, + "neg": 0.074, + "_id": { + "$oid": "6711d415cd60fca157e5b0a1" + } + }, + { + "text": "such a nice and genuine teacher, love her. shes very understanding and is really good at teaching", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d415cd60fca157e5b0a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d416cd60fca157e5b0a4" + }, + "professor_name": "Siobhan Pokorney", + "rating": 5, + "department": "Sociology department", + "comments": [ + { + "text": "I loved taking Professor Pokorney's family relationship class this semester. Professor Pokorney broke down her syllabus in a way; that made it possible for students to choose what assignments they wanted to complete throughout the semester. I would recommend taking any of her courses. She is a gem.", + "pos": 0.118, + "neu": 0.83, + "neg": 0.052, + "_id": { + "$oid": "6711d416cd60fca157e5b0a5" + } + }, + { + "text": "Extremely sweet, caring, and considerate professor. one of the best professors I've had at ccny. gives really good feedback and is accessible whenever you need any help or have questions. Shares her experiences about working in social work which is so helpful and helps you explore different fields and covers so many issues. Def recommend!!", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d416cd60fca157e5b0a6" + } + }, + { + "text": "Literally the best professor every student is looking for.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d416cd60fca157e5b0a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d416cd60fca157e5b0a9" + }, + "professor_name": "Jeffrey Garanich", + "rating": 1, + "department": "Biomedical Engineering department", + "comments": [ + { + "text": "Harsh grader even if you put 100% effort. He never cares for the students. He brings guest lecturers because he can't teach anything. He always gives terrible grades on papers and presentations. Avoid the master's program because it is not worth it. MTM has no value in reality. The whole program is a waste of money and time.", + "pos": 0.0, + "neu": 0.748, + "neg": 0.252, + "_id": { + "$oid": "6711d416cd60fca157e5b0aa" + } + }, + { + "text": "You have to take 3 classes with this individual and he will give you bad grades in all three even if you try your best. He never takes any suggestion and will blame you directly. Tough grader and gives nonstop papers. Just avoid the whole MTM because you will finish it with a very low gpa because his three classes are a must to finish MTM.", + "pos": 0.055, + "neu": 0.787, + "neg": 0.157, + "_id": { + "$oid": "6711d416cd60fca157e5b0ab" + } + }, + { + "text": "The Professor is so awful does not know what he is teaching. He has big mouth and he keep talking and talking tirelessly hours after hours. You wont learn anything in this MTM course. He will add you into a group and you will be miserable in working hard when your group members wont do any work. He a tough grader. Try to avoid him at any cost.", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d416cd60fca157e5b0ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d416cd60fca157e5b0ae" + }, + "professor_name": "Caroline Arout", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "Took Prof. Arout for Advanced Stats, very easygoing class - she was also a very kind and understanding professor. But her teaching style isn't the best, it'll feel like you're teaching yourself for the majority of the course. There are 6 Labs worth the most of the overall grade, 2 exams, a research proposal, and a final presentation.", + "pos": 0.166, + "neu": 0.767, + "neg": 0.067, + "_id": { + "$oid": "6711d416cd60fca157e5b0af" + } + }, + { + "text": "I really, really like Professor Arout. She teaches very difficult subjects, such as Neuropsychology with a lot of information and detail but she gives awesome \"brain-cementing\" examples that help her students learn and visualize the material. I really like her energy and style. I hope she teaches more Neuro or Psychology-related courses at CCNY!", + "pos": 0.311, + "neu": 0.662, + "neg": 0.027, + "_id": { + "$oid": "6711d416cd60fca157e5b0b0" + } + }, + { + "text": "I really, really like Professor Arout. She teaches very difficult subjects, such as Neuropsychology with a lot of information and detail but she gives awesome \"brain-cementing\" examples that help her students learn and visualize the material. I really like her energy and style. I hope she teaches more Neuro or Psychology-related courses at CCNY!", + "pos": 0.311, + "neu": 0.662, + "neg": 0.027, + "_id": { + "$oid": "6711d416cd60fca157e5b0b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d417cd60fca157e5b0b3" + }, + "professor_name": "Anita Sicignano", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "By far one of the best professors in CCNY, especially for PSY 321. She is very caring, lenient with the workload, and gives you the information you need to know when doing the papers.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0b4" + } + }, + { + "text": "Anita is the most amazing professor in CCNY! She made experimental fun! She's really caring, she wants her students to succeed. Lots of papers, but that's expected of experimental, she walks you through collecting data and spss. Take her! You won't regret it.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0b5" + } + }, + { + "text": "Just take the class and you will get an easy A. There are 3 papers and 3 exams. She would actually tell you what's going to be in the test so super easy.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d417cd60fca157e5b0b8" + }, + "professor_name": "Pamella Terry Shell", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "This is the most amazing prof someone can take. She is someone who cares for her students and is willing to meet with them and talk to them about school and personal life if you need to. She is an amazing women and an amazing prof. I would take her again and again because she is truly caring and gives out good vibes", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0b9" + } + }, + { + "text": "Amazing professor. Very engaging discussion. Make sure you complete your assignments on time and you will be fine. She is very kind and understanding.", + "pos": 0.429, + "neu": 0.571, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0ba" + } + }, + { + "text": "She is a great professor and very sweet! Definitely take her. Her lectures are very interesting and you learn a lot in the class. She has a clear grading criteria, so just follow what she wants and you would get a good grade in exchange.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d417cd60fca157e5b0bd" + }, + "professor_name": "Nakaweesi Katongole", + "rating": 5, + "department": "Biomedical department", + "comments": [ + { + "text": "Professor Naki is excellent. You will have to read passages and write reflections almost every week. The professor will be lenient if you have trouble with the material or other issues. The papers she assigns are not difficult - you will have enough time to complete them. Participate regularly and be prepared when you do group presentations.", + "pos": 0.152, + "neu": 0.806, + "neg": 0.042, + "_id": { + "$oid": "6711d417cd60fca157e5b0be" + } + }, + { + "text": "Professor Naki is great! For all future Sophies, I highly recommend that you take her class. She is very lenient, so as long as you do the required readings, you will do well. There are two quizzes and a final paper that is combined with the composition section of FIWQS.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0bf" + } + }, + { + "text": "This was my first semester in her FIQWS class and I love her!! She is very caring, understanding, and makes you want to learn. I would highly recommend Prof, Naki to anyone. Participate in large and small group discussions, show up, and read the given articles/chapters it'll be a easy A. 10/10!!!", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d417cd60fca157e5b0c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d418cd60fca157e5b0c2" + }, + "professor_name": "Eric Kaplan", + "rating": 4.7, + "department": "Chemistry department", + "comments": [ + { + "text": "Professor Kaplan was honest about how difficult the material would be, but he was clear that he would do everything he could to help us succeed as long as we also put in the work. He encouraged questions in lecture and he would often go through practice problems with us. Going through the textbook individually is huge for both Orgo classes.", + "pos": 0.252, + "neu": 0.68, + "neg": 0.068, + "_id": { + "$oid": "6711d418cd60fca157e5b0c3" + } + }, + { + "text": "Lectures are dense but super important to follow along. Eric really walks through everything necessary for the exams, which he grades fairly and honestly.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d418cd60fca157e5b0c4" + } + }, + { + "text": "I took Professor Kaplan for Orgo II, his class was tough but doable. Be prepared to read and do literally hundreds of practice problems. He won't test you of every single topic but do focus on the foundations like mechanisms and synthesis (it's pretty much the backbone of orgo). If you work hard, you'll get an A.", + "pos": 0.147, + "neu": 0.758, + "neg": 0.095, + "_id": { + "$oid": "6711d418cd60fca157e5b0c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d418cd60fca157e5b0c7" + }, + "professor_name": "Sujoy Debnath", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "He understands the concerns of students and always gave deadline extensions for labs if needed. Class was hybrid, but students had the option to join on Zoom even if class was scheduled in-person. There are about seven labs that we had, but professor graded leniently and was always available to address any concerns students had.", + "pos": 0.049, + "neu": 0.951, + "neg": 0.0, + "_id": { + "$oid": "6711d418cd60fca157e5b0c8" + } + }, + { + "text": "Best lab instructor of CSC 33200 ever. Honestly, he understands and read the minds of other people's concerns, the trouble they are facing, as well as their struggles. He is like a mind reader and doctor. He is willing to help people. So as long as you try your best and follow the protocols of each of the labs he gives, that's all that matters.", + "pos": 0.244, + "neu": 0.691, + "neg": 0.064, + "_id": { + "$oid": "6711d418cd60fca157e5b0c9" + } + }, + { + "text": "Great TA for the course. Lenient grader for the labs. All you need to do is pay attention during the little bit of time that he discusses the labs, and you should be fine.", + "pos": 0.203, + "neu": 0.761, + "neg": 0.036, + "_id": { + "$oid": "6711d418cd60fca157e5b0ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d418cd60fca157e5b0cc" + }, + "professor_name": "Dorothy Ferrer", + "rating": 1.3, + "department": "Latin American Studies department", + "comments": [ + { + "text": "Content-wise the class was really interesting, but it felt like a tense environment despite being online", + "pos": 0.246, + "neu": 0.609, + "neg": 0.145, + "_id": { + "$oid": "6711d418cd60fca157e5b0cd" + } + }, + { + "text": "It feels like the professor did not take into account that we had other classes/ responsibilities given that it was an elective. She is passionate about Latin History, but I feel like she wasn't understanding- causing a disconnect.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d418cd60fca157e5b0ce" + } + }, + { + "text": "Be prepared to have read 40 pages each class for discussions- if you don't there's a chance you get a pop quiz. 7 essays in total. The professor is passive aggressive most of the time. If you are taking this class to lighten your workload, this is not the class for you. Often 10 minutes late.", + "pos": 0.063, + "neu": 0.881, + "neg": 0.057, + "_id": { + "$oid": "6711d418cd60fca157e5b0cf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d419cd60fca157e5b0d1" + }, + "professor_name": "Nicholas Scordato", + "rating": 3.7, + "department": "Media Arts department", + "comments": [ + { + "text": "Professor Scordato is a great person but his class can be difficult at times as he is picky about what he wants and what he expects out of your advertising ideas. Be prepared to do many sketches every class and a couple of presentations. He can be a chill professor but also expects you to do good work and improve.", + "pos": 0.178, + "neu": 0.776, + "neg": 0.046, + "_id": { + "$oid": "6711d419cd60fca157e5b0d2" + } + }, + { + "text": "I found this Professor to be a grump, old and rude.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d419cd60fca157e5b0d3" + } + }, + { + "text": "Just ask him for help and he'll go an extra mile for you. He's funny and laidback and you learn how to do copywriting with ease, he gives you many chances to be silly and get your ideas out before you actually submit them. He's an easy grader, but just show up and chill in his class with your work done and he'll be happy.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d419cd60fca157e5b0d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d419cd60fca157e5b0d6" + }, + "professor_name": "Mary McNamara", + "rating": 4.3, + "department": "Classics department", + "comments": [ + { + "text": "This class requires no homework which is awesome but attendance and some participation is mandatory. The only work in this class is tests. If you do not study or prepare for the tests you will fail. It is a hard class but the professor is really sweet and caring.", + "pos": 0.208, + "neu": 0.666, + "neg": 0.126, + "_id": { + "$oid": "6711d419cd60fca157e5b0d7" + } + }, + { + "text": "Great professor, she guides us though the course and makes sure were are not lost. Though you do have to buy books like the illiad and stuff.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d419cd60fca157e5b0d8" + } + }, + { + "text": "Many books will have to be read and they are difficult to understand. Very accommodating. Online plus in class testing with extra credit group work.", + "pos": 0.093, + "neu": 0.819, + "neg": 0.089, + "_id": { + "$oid": "6711d419cd60fca157e5b0d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d419cd60fca157e5b0db" + }, + "professor_name": "Saira Rafiee", + "rating": 3.7, + "department": "Political Science department", + "comments": [ + { + "text": "Shes pretty nice and caring, however the class was not great. There was an extreme political view bias which she expressed almost every class. That being said, she is nice enough and lecture isn't so bad. Try to participate.", + "pos": 0.297, + "neu": 0.609, + "neg": 0.094, + "_id": { + "$oid": "6711d419cd60fca157e5b0dc" + } + }, + { + "text": "Overall professor Rafiee is a good professor who hears the concern of her students. There were 3 assignments: group debate, midterm and final. They were not immediately graded which can be very frustrating for some students who don't have an idea how tough of a grader she is. Overall, do your work the best you can for a positive outcome!", + "pos": 0.156, + "neu": 0.778, + "neg": 0.066, + "_id": { + "$oid": "6711d419cd60fca157e5b0dd" + } + }, + { + "text": "Doing the reading helps you understand and contribute to the lectures and I think that's a great way to pass this course. She's so understanding and gives great feedback. You want to understand what you're studying so do the reading and ask questions otherwise you'll be lost.", + "pos": 0.215, + "neu": 0.745, + "neg": 0.041, + "_id": { + "$oid": "6711d419cd60fca157e5b0de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d419cd60fca157e5b0e0" + }, + "professor_name": "Monika Hazut-Uchiyama", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "Rushes and felt like I was being judged for asking questions or concerns. If you know basic photography this class is for you. If not then i will avoid this class.", + "pos": 0.074, + "neu": 0.861, + "neg": 0.065, + "_id": { + "$oid": "6711d419cd60fca157e5b0e1" + } + }, + { + "text": "The most personable Prof. I've ever had. Honestly wants you to enjoy photography. If you don't know anything going in things are explained really well and not too fast. If you already like photography, you'll love the class. Super chill, funny and kind. Fun class if you are willing to try. Would go back to college if all were prof like her.", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d419cd60fca157e5b0e2" + } + }, + { + "text": "Very fun class, especially if you're into talking about famous photographer's work and style. The second half of the semester was more fun for me since we instead talked about and critiqued each other's photos. I got to show my own style of photography, and so did everyone else. Helped me get into photography as a personal hobby of mine. Nice prof.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d419cd60fca157e5b0e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41acd60fca157e5b0e5" + }, + "professor_name": "Marisol Diaz", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "I do not recommend if you are taking it as an elective class.", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d41acd60fca157e5b0e6" + } + }, + { + "text": "Mandatory homework - 1 page summaries for each chapter. She goes through every page of the textbook in class and you must participate or she marks it on the attendance. Must take your own photos for each chapter. 3 Quizzes on camera functions. 2 exams on the textbook. Good class professor but can make learning boring with lectures. Not a hard class", + "pos": 0.069, + "neu": 0.886, + "neg": 0.045, + "_id": { + "$oid": "6711d41acd60fca157e5b0e7" + } + }, + { + "text": "This is the easiest photography class I took at CCNY. It was too easy, I was hoping that it's one of the advanced photo classes. Prof .Diaz is amazing as person, but weak as professor, often late to class and doesn't insist on homework to be ready for class. I didn't get much progress, didn't get critics on any of my work. I wouldn't recommend it.", + "pos": 0.189, + "neu": 0.694, + "neg": 0.118, + "_id": { + "$oid": "6711d41acd60fca157e5b0e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41acd60fca157e5b0ea" + }, + "professor_name": "Theresa Darwich-Alcaraz", + "rating": 3, + "department": "Education department", + "comments": [ + { + "text": "She is a beautiful human being and she is very flexible with deadlines for projects. I learned a lot of linguistics concepts that I did not know. She evens takes the time to help you with other classes related to the field. I am not writing this because I received a good grade but because I want to show her my support.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d41acd60fca157e5b0eb" + } + }, + { + "text": "If you see the \"Darwich-Alcaraz\" name on a syllabus, please run for the hills!!! That is, unless you enjoy pop-quizzes where the questions don't match course objectives; no feedback on assignments given; and lectures that follow assessment. Who in their right mind gives a quiz on a subject before they actually teach it: Oh, that's right, she does.", + "pos": 0.1, + "neu": 0.865, + "neg": 0.035, + "_id": { + "$oid": "6711d41acd60fca157e5b0ec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41acd60fca157e5b0ee" + }, + "professor_name": "Karim Elhaies", + "rating": 5, + "department": "Arabic department", + "comments": [ + { + "text": "He makes a lot of fun in the class which inspires the student to learn more. His accent is perfect. He is very smart.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d41acd60fca157e5b0ef" + } + }, + { + "text": "The best professor in CCNY, inspiring and talented. He cares so much about his students.", + "pos": 0.547, + "neu": 0.453, + "neg": 0.0, + "_id": { + "$oid": "6711d41acd60fca157e5b0f0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41bcd60fca157e5b0f2" + }, + "professor_name": "Hannah Rosenberg", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Hannah is amazing, so glad I took her class this summer. She really cares about her students. She responds quickly to emails and she works with you. Make sure to participate and do the homework, it all adds up. Her lectures are NOT boring, just let her lead and you follow step by step and u'll do great. I would definitely take her class again.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d41bcd60fca157e5b0f3" + } + }, + { + "text": "She is really great at teaching and as a person. Take her now u doink", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d41bcd60fca157e5b0f4" + } + }, + { + "text": "I'm super glad taking statistics with\nProfessor Rosenberg this semester!She is\nvery clear with her grading policies and\nexpectations in the syllabus. She simplified\nstatistics in a way where students can feel\ncomfortable asking her questions. Be\nmindful to read the chapter before class,\nas she'll go right into the notes and she\ngives hw every week.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d41bcd60fca157e5b0f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41bcd60fca157e5b0f7" + }, + "professor_name": "Peter Gisolfi", + "rating": 4.5, + "department": "Architecture department", + "comments": [ + { + "text": "Peter Gisolfi is one of the best architecture professors I have had in my educational career.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d41bcd60fca157e5b0f8" + } + }, + { + "text": "Very boring prof. but very clear about things. Very practical. PPL! Get to the real world!", + "pos": 0.219, + "neu": 0.692, + "neg": 0.089, + "_id": { + "$oid": "6711d41bcd60fca157e5b0f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41bcd60fca157e5b0fb" + }, + "professor_name": "Carolyn Lord", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She's one of the great professor I ever met. Attend one dance performance. One project is optional if you choose to do the performance. Always be prepared with proper uniform. Participation counts but allows 3 absences. One Exam and Extra Credit will be given. Must sure you know all the dance movements and the spellings.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d41bcd60fca157e5b0fc" + } + }, + { + "text": "The best professor at City College. She is a really nice professor and explain the class very clear. I wish she can teach another class so i can take it with her. I will give her a A+ :) I really recommend her , you won't reject it. By the way she teach Ballet.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d41bcd60fca157e5b0fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41ccd60fca157e5b0ff" + }, + "professor_name": "Iman Issa", + "rating": 3.5, + "department": "Arabic department", + "comments": [ + { + "text": "She is a great teacher. I had 3 different teachers in the 3 semesters I took of Arabic at CCNY so I have have had the time and experience to be able to compare. In her class, I knew what was expected of me in my HW and on tests. Arabic is a hard language to learn but with a good teacher, like Iman, it can be a fun and worthwhile experience.", + "pos": 0.204, + "neu": 0.782, + "neg": 0.014, + "_id": { + "$oid": "6711d41ccd60fca157e5b100" + } + }, + { + "text": "Too much information added near the last day! Not enough review or quizzes. 2 class sessions before the final we learned important phrases would have been useful from the first day. She gets frustrated and is very discouraging! If you are not personally interested you may not stay!", + "pos": 0.082, + "neu": 0.749, + "neg": 0.169, + "_id": { + "$oid": "6711d41ccd60fca157e5b101" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41ccd60fca157e5b103" + }, + "professor_name": "Patrycja Slawuta", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Racism and Prejudice class was amazing with this professor! Looking forward to taking experimental with her.", + "pos": 0.155, + "neu": 0.531, + "neg": 0.314, + "_id": { + "$oid": "6711d41ccd60fca157e5b104" + } + }, + { + "text": "She is the best!!! Take her class. She is so patient and really explains complex topics well. She truly cares about her students and will make sure they understand everything she covers! What I liked the most about her is that she literally walks you step-by-step through conducting your research. You will learn a lot and she is so fair!", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d41ccd60fca157e5b105" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41dcd60fca157e5b107" + }, + "professor_name": "Maria Tzortziou", + "rating": 4.8, + "department": "Earth Science department", + "comments": [ + { + "text": "Prof. Tzortziou is a brilliant teacher. I learned so much in her coast/ ocean processes class. Her lectures are very interesting and she explains concepts very clearly. She's happy when we ask questions. For the tests, just make sure you review the slides at a steady pace because you'll often need to know specific info from the slides. She's Great!", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d41dcd60fca157e5b108" + } + }, + { + "text": "Prof. Tzortziou is superb. She's very approachable so if you have questions just ask; she loves when students show interest. She likes to assign small projects & tries to make the class fun. Lectures & exams are very detailed so you will have to do a lot of studying. Otherwise, the course topics are intriguing & she's great )", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d41dcd60fca157e5b109" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41dcd60fca157e5b10b" + }, + "professor_name": "Syl Peterkin", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "Great professor that you can talk to like a friend. Easy going, funny, and overall just great. Not a harsh grader at all. Even if your answer is too simple, if it seems like you actually understand the question, he gives you a good grade.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d41dcd60fca157e5b10c" + } + }, + { + "text": "Mr. Peterkin is the most inspirational instructors I ever had. He is very funny, and doesn't flaunt his intelligence but obviously very smart. He pushed us to get internships and to participate in school activities. Realistic and understands our problems. You are given time to review so all participate in class. Challenging but worthwhile!", + "pos": 0.207, + "neu": 0.712, + "neg": 0.081, + "_id": { + "$oid": "6711d41dcd60fca157e5b10d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41dcd60fca157e5b10f" + }, + "professor_name": "Yuriy Pechenyy", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "Overall class is difficult, lecture was impossible- but lab made my grade higher. TA helped us out and I think made me understand techniques more. Do all the assignments, come every lab and take good notes during reviews. Exams are hard but not impossible.", + "pos": 0.08, + "neu": 0.851, + "neg": 0.07, + "_id": { + "$oid": "6711d41dcd60fca157e5b110" + } + }, + { + "text": "Professor Yuriy was the best thing about BIO 22900. For all the horribleness that was our lecture professor at least they gave us Yuriy. He genuinely cared about teaching us the right way and making sure we understood everything. He even advised us on what type of research we should participate in depending on what career we were looking at.", + "pos": 0.135, + "neu": 0.815, + "neg": 0.049, + "_id": { + "$oid": "6711d41dcd60fca157e5b111" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41ecd60fca157e5b113" + }, + "professor_name": "Sofia Chelpon", + "rating": 5, + "department": "Science department", + "comments": [ + { + "text": "She's super chill and really knows what she's teaching. She can answer any question you have. Even better than Prof. Padilla who had the main lectures. The lab's weren't always the easiest but push yourself a little and you can get it done. Also, Prof. Chelpon can always help and she explains things so well, you probably won't even have questions.", + "pos": 0.167, + "neu": 0.809, + "neg": 0.024, + "_id": { + "$oid": "6711d41ecd60fca157e5b114" + } + }, + { + "text": "I learn more in lab than I do in lecture", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d41ecd60fca157e5b115" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41ecd60fca157e5b117" + }, + "professor_name": "Rachael McIntosh", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Prof. Rachael McIntosh is one of the best professors I've ever had. She really cares whether students understood material, and always answers questions clearly. She is cute, well-organized, and kind. I was lucky to have this class. Make sure that you work properly and take part in group discussion. Highly recommend!", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d41ecd60fca157e5b118" + } + }, + { + "text": "I loved this professor so much. Her lectures were absolutely amazing; a lot of times we drifted off topic. You're doing 2 major projects throughout in stages. She works to make sure not to overwhelm her students. She is very patient and will walk you through everything. I would take her again if possible.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d41ecd60fca157e5b119" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41ecd60fca157e5b11b" + }, + "professor_name": "Laura Polucha", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "Very sweet professor! Amazing feedback on papers and understanding when speaking to her. Although lectures can be very boring, she allows a cheat sheet for the final and reasonable due dates for many of her assignments, such as her term paper. Wrote her term paper the night before and got an A on it. Her emails are also very funny and lighthearted.", + "pos": 0.184, + "neu": 0.742, + "neg": 0.074, + "_id": { + "$oid": "6711d41ecd60fca157e5b11c" + } + }, + { + "text": "She is one of the best professors you will ever get at CCNY! If you decide to take the intro to art class, then this professor is it for you! She cares about the students and tries her best to make sure the workload can be as light as possible! She gives a lot of assignments for extra credit so use that opportunity. Her notes are really the best!", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d41ecd60fca157e5b11d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41fcd60fca157e5b11f" + }, + "professor_name": "Elmira Mayansky", + "rating": 4.5, + "department": "Mathematics department", + "comments": [ + { + "text": "The professor is very good at teaching the class and helping students out. She is very caring and will help you pass if you talk to her. There is a lot of midterms and quizzes so, study hard and don't slack.", + "pos": 0.237, + "neu": 0.735, + "neg": 0.029, + "_id": { + "$oid": "6711d41fcd60fca157e5b120" + } + }, + { + "text": "She is a great professor but beware that you have to get used to her accent. She explains a lot on how to solve a problem and she approaches it at numerous amount of ways.", + "pos": 0.118, + "neu": 0.794, + "neg": 0.088, + "_id": { + "$oid": "6711d41fcd60fca157e5b121" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41fcd60fca157e5b123" + }, + "professor_name": "James Hammonds", + "rating": 1.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "He is such a hot mess. He's an easy grader which is great. Really high curve in my experience. He doesn't like to give solutions, just answers. He likes to teach from his own textbook, which often times has many flaws in it. He never responds to my emails. Take him for the easy pass, but it sure as heck drains you.", + "pos": 0.181, + "neu": 0.772, + "neg": 0.047, + "_id": { + "$oid": "6711d41fcd60fca157e5b124" + } + }, + { + "text": "Disaster of a teacher, totally unorganized, not helpful at all in lecture or in office hours, has no lessons planned, is \"writing\" his own open source textbook which is useless, fails to convey any information. You can't learn yourself because he does not have a clear curriculum. By far the worst professor I have had at CCNY.", + "pos": 0.0, + "neu": 0.706, + "neg": 0.294, + "_id": { + "$oid": "6711d41fcd60fca157e5b125" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d41fcd60fca157e5b127" + }, + "professor_name": "Lisa Rogal", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "She gives little to no quizzes (can't remember) but there are a medium amount of readings and papers based on them. You can see she spent time to give you feedback and will be willing to talk to you to check in with how are you doing in the class. Spend time on your work, submit them before the due date, and it is pretty straightforward to an A.", + "pos": 0.059, + "neu": 0.921, + "neg": 0.02, + "_id": { + "$oid": "6711d41fcd60fca157e5b128" + } + }, + { + "text": "Professor Rogal has improved my writing skills by tenfold - every constructive criticism she gave was extremely helpful & insightful. She knows how to push students to get the best results & is also very flexible if you need the extra help. The material is super easy but there is a lot of writing - it's required as a freshman course.", + "pos": 0.209, + "neu": 0.763, + "neg": 0.028, + "_id": { + "$oid": "6711d41fcd60fca157e5b129" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d420cd60fca157e5b12b" + }, + "professor_name": "Talia Kaplan", + "rating": 2.5, + "department": "Psychology department", + "comments": [ + { + "text": "Kaplains lectures consisted of her saying \"ah and Um\" for most of the class. she does not know how to explain anything, besides what she is interested in herself. she makes you do papers and midterms and never gives you your grades back in a timely fashion. her classes are filled with students doing presentations stay away or drop the class", + "pos": 0.042, + "neu": 0.925, + "neg": 0.033, + "_id": { + "$oid": "6711d420cd60fca157e5b12c" + } + }, + { + "text": "Professor Kaplan does a great job teaching the theories course for Grad School. I took her class at NYU but she also teaches at City College. This is a pretty standard intro course covering everything from psychodynamic to strengths based theories. There is a lot of material and I wish we had more time to go in dept but the course is only 12 weeks.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d420cd60fca157e5b12d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d420cd60fca157e5b12f" + }, + "professor_name": "Jon Jensen", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "He was always understanding and although his lectures were long, he'd always keep It interesting.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d420cd60fca157e5b130" + } + }, + { + "text": "Very nice! I really like him. He is very understandable. Doesn't give a crazy amount of homework. He doesn't care about the format of the textbook. Class is fun and goes by faster than you think.", + "pos": 0.255, + "neu": 0.687, + "neg": 0.058, + "_id": { + "$oid": "6711d420cd60fca157e5b131" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d420cd60fca157e5b133" + }, + "professor_name": "Nicodemus Nicoludis", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Was great to have him for the FIQWS composition section. The essays aren't hard but a little different. His lectures are alright. He is a pretty clear talker so that might be a positive for some. Gives short weekly readings and questions to answer on that. He sometimes have hard time explaining assignments but make sure you ask if you struggle.", + "pos": 0.278, + "neu": 0.664, + "neg": 0.058, + "_id": { + "$oid": "6711d420cd60fca157e5b134" + } + }, + { + "text": "One of my favorite professors. Super caring and understanding especially with classes being remote. Gives work but never over does it and makes class really enjoyable. Highly recommend!", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d420cd60fca157e5b135" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d421cd60fca157e5b137" + }, + "professor_name": "Kate Riley", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "My first year/class at Rutgers University was with Professor Riley and it was her first time teaching at RU. Flexible assignment dates, Easy Quizs every friday based off of weekly reading. NO MIDTERM OR FINAL. Big Project Situated Discourse Project Required. Prof. Riley inspiried me to find my major! Down to earth and an overall great teacher.", + "pos": 0.141, + "neu": 0.814, + "neg": 0.045, + "_id": { + "$oid": "6711d421cd60fca157e5b138" + } + }, + { + "text": "AMAZING. Riley is down to earth, easy to approach and makes her class interesting and fun! Everyone in my class was able to relate to the topics to their own life and always had something to add to class discussions. Weekly quizzes on articles (easy), 3 papers (1 page) and a final exam on an interesting ethnography! HIGHLY RECOMMEND", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d421cd60fca157e5b139" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d421cd60fca157e5b13b" + }, + "professor_name": "Linda Liu", + "rating": 1.8, + "department": "English department", + "comments": [ + { + "text": "Very inconsiderate, she's likes to look down upon the students. Her grading policy is atrocious, did not learn one thing in her class. DO NOT take her class you'll regret it, BIG waste of time and money.", + "pos": 0.068, + "neu": 0.736, + "neg": 0.196, + "_id": { + "$oid": "6711d421cd60fca157e5b13c" + } + }, + { + "text": "I don't like her at all, I feel as if she uses unnecessary words to express what she is trying to say, and she has favorites. From what I see she does not give good grades on papers because the form of writing is not like hers. I feel punished for having my own writing style.", + "pos": 0.044, + "neu": 0.804, + "neg": 0.152, + "_id": { + "$oid": "6711d421cd60fca157e5b13d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d421cd60fca157e5b13f" + }, + "professor_name": "Talya Cohen-Davidowitz", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Nice and Helpful Professor. I would recomment her for all classes she is/will teach.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d421cd60fca157e5b140" + } + }, + { + "text": "She is a great/interesting professor. She's young & very nice. She relates lectures to the real world. The readings are easy to understand & she post notes on blackboard. She's very helpful & gives 2 extra credits...going to writing center & for participating in a experiment on psych website. I do recommend everyone to take her...she's the BEST!!!", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d421cd60fca157e5b141" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d422cd60fca157e5b143" + }, + "professor_name": "Mike Holober", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "Jazz Arranging 1. Professor Holober is one of, if not THE best music professor at CCNY. Arranging is his specialty, and he is an expert on the subject. Great teacher, fair, insightful, very helpful, enthusiastic, and has a good rapport with his students. Highly recommended course for jazz majors.", + "pos": 0.284, + "neu": 0.663, + "neg": 0.053, + "_id": { + "$oid": "6711d422cd60fca157e5b144" + } + }, + { + "text": "I had Holober for Big Band and Jazz Rep 3. Excellent teacher with a deep knowledge and passion for the music. Subject to occasional brief mood swings, but generally a light hearted and funny guy. Great pianist and amazing composer also. Recommended.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d422cd60fca157e5b145" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d422cd60fca157e5b147" + }, + "professor_name": "Jane Rosen", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "I agree she was incredibly disorganized and gives grades based on what she feels about you as a person and not as a student. Please avoid.", + "pos": 0.152, + "neu": 0.699, + "neg": 0.149, + "_id": { + "$oid": "6711d422cd60fca157e5b148" + } + }, + { + "text": "she is very dis organized. Haven't learn anything in her class. Then give grades randomly.Terrible,Terrible", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d422cd60fca157e5b149" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d423cd60fca157e5b14b" + }, + "professor_name": "Elizabeth Kessler", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "She is really nice! The class is basically slides she talks about, but not in a boring way. As long as you take notes you'll be fine. If you read the book, you'll get an A. You are also required to make (a lot of) museum visits", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d423cd60fca157e5b14c" + } + }, + { + "text": "she is a great teacher, always willing to help, and really understanding.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d423cd60fca157e5b14d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d423cd60fca157e5b14f" + }, + "professor_name": "Andrew Fillmore", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "I have taken two digital photography classes of his. He is an amazing professor who konws everything about this field. And the most important is that he knows how to encourage the students to discover their styles, and pushes them in friendly ways. Don't have too much homework, just keep shooting everyday then you will be fine.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d423cd60fca157e5b150" + } + }, + { + "text": "I got a lot from the class. Prof Fillmore gets you to understand Photography in the context of your own art and what's going on around you. Also has you produce a book of your photos which was a great way to develop coherence in your work.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d423cd60fca157e5b151" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d423cd60fca157e5b153" + }, + "professor_name": "Sameeah Muhammad", + "rating": 4.5, + "department": "World Humanities department", + "comments": [ + { + "text": "She is a very nice person because she cares about the student doing well. Reviews ur paper and gives u lot of chances to make it perfect. 250 words reflection on BB- very easy. read the books she assigns- its fun. Few short writing projects and 2 essays and a presentation. It might seem a lot of work but its easy. Easy A folks.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d423cd60fca157e5b154" + } + }, + { + "text": "The best!!! Read all of the books, participate in class and work hard on the essays, get an A!Btw no textbook but books which have a theme like comedy, and tragedy, interesting books! Overall a funny teacher that cares for her students. Work hard, participate and she will notice. No tests either!", + "pos": 0.285, + "neu": 0.54, + "neg": 0.175, + "_id": { + "$oid": "6711d423cd60fca157e5b155" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d424cd60fca157e5b157" + }, + "professor_name": "Karen Yau", + "rating": 2.8, + "department": "Political Science department", + "comments": [ + { + "text": "Took Immigration Law and Policy class, she is actually a good professor. She leads the discussions and makes students lead the discussion, so make sure you actually read! My only qualm with her is, she is an unecessarly tough grader.", + "pos": 0.13, + "neu": 0.836, + "neg": 0.034, + "_id": { + "$oid": "6711d424cd60fca157e5b158" + } + }, + { + "text": "Most ridiculous professor I have ever encountered. Changed the syllabus and her grading policies every week. Completely unprepared to teach this class and did not make it a priority. Expectations were not clear. She did not actually lecture, just let the students shout out their own interpretations. Finally got herself organized the last 2 weeks.", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d424cd60fca157e5b159" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d424cd60fca157e5b15b" + }, + "professor_name": "Anne Hall", + "rating": 3.8, + "department": "Art department", + "comments": [ + { + "text": "Too much work for an introductory class! Her midterm were all fill-ins and very hard! She is down to earth and gives good feedback but she gives too much work. Not an easy A.", + "pos": 0.051, + "neu": 0.816, + "neg": 0.133, + "_id": { + "$oid": "6711d424cd60fca157e5b15c" + } + }, + { + "text": "She is such a nice person, really specific about the assignments, gives such good feedback about your photography. Expect homework every week, but that's the only way you are going to learn and I had fun doing it, too. Few readings here and there, and fun school trips. Please don't be late to class since discussions starts right away, I recommend!!", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d424cd60fca157e5b15d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d424cd60fca157e5b15f" + }, + "professor_name": "James Maniscalco", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Knowledgeable professor who uploads slides but the lectures go in depth and he definitely clears up concepts during class. He was late quite a few times/canceled and brought his kids to class (a bit of a distraction). He makes up for it by adding points on your tests & the opportunity for extra credit if you want. He also does good test reviews.", + "pos": 0.227, + "neu": 0.729, + "neg": 0.044, + "_id": { + "$oid": "6711d424cd60fca157e5b160" + } + }, + { + "text": "One of the best professors I've ever had. He is so funny, and very approachable. One midterm, one final, two papers and he gave an extra credit opportunity. I would take him again. He posts the slides!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d424cd60fca157e5b161" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d425cd60fca157e5b163" + }, + "professor_name": "Julio Salcedo", + "rating": 2.5, + "department": "Architecture department", + "comments": [ + { + "text": "pretty lsyed bsck. but a little too much like he just doesnt care about your work.", + "pos": 0.232, + "neu": 0.608, + "neg": 0.161, + "_id": { + "$oid": "6711d425cd60fca157e5b164" + } + }, + { + "text": "get motivated", + "pos": 0.75, + "neu": 0.25, + "neg": 0.0, + "_id": { + "$oid": "6711d425cd60fca157e5b165" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d425cd60fca157e5b167" + }, + "professor_name": "Paul Galatowitsch", + "rating": 3.3, + "department": "Sociology department", + "comments": [ + { + "text": "This prof is great he's understanding and he wants you to understand the material. He's very knowledgeable about the topics he discusses I would definitely take him again. Do your reading and everything on test is based on what he has taught so no surprises", + "pos": 0.16, + "neu": 0.802, + "neg": 0.038, + "_id": { + "$oid": "6711d425cd60fca157e5b168" + } + }, + { + "text": "He's a great professor and you can tell he has had a lot of experience based on his lectures. It really helps to read and bring up questions in class because if you don't read, you will be so lost. It was a really interesting class that has impacted me more than I expected.", + "pos": 0.159, + "neu": 0.794, + "neg": 0.047, + "_id": { + "$oid": "6711d425cd60fca157e5b169" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d425cd60fca157e5b16b" + }, + "professor_name": "Lily Thom", + "rating": 3, + "department": "Psychology department", + "comments": [ + { + "text": "she does not prepare for the lecture but she requires students to do the preview. she is a harsh grader.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d425cd60fca157e5b16c" + } + }, + { + "text": "Although I only had her for recitation, she was a great TA. She made things more clear than the professor (Crain). She's very friendly and intelligent. Very well knowledged. Isn't a harsh grader. Goes over everything but I still suggest reading the book because a 50 min recitation weekly wont give her enough time to cover everything in depth", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d425cd60fca157e5b16d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d426cd60fca157e5b16f" + }, + "professor_name": "Betsy Frank", + "rating": 1, + "department": "Communication department", + "comments": [ + { + "text": "SHE IS THE WORST. She looks like Hilary Clinton and will talk your head off about Donald Trump. She's very rude and doesn't know how to teach anything. You won't learn anything and she will make you read a textbook and then she won't do the correct formats. SHE IS AWFUL. DO NOT TAK HER !!!!!", + "pos": 0.037, + "neu": 0.77, + "neg": 0.193, + "_id": { + "$oid": "6711d426cd60fca157e5b170" + } + }, + { + "text": "Avoid taking PR-Writing with this professor! She will destroy your confidence in your abilities. As you can't read her mind, it will be never written in the way that she would write it so nothing is good enough! She doesn't know how to communicate & should not be teaching. She has honestly got to be the worst professor I've ever had at City College", + "pos": 0.106, + "neu": 0.727, + "neg": 0.167, + "_id": { + "$oid": "6711d426cd60fca157e5b171" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d426cd60fca157e5b173" + }, + "professor_name": "Pat Hope", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Professor Hope is like a non-binary Jesus in the world of philosophy. They are quite literally inspirational and amazing. The readings may seem hard, but their lectures make them enjoyable. Prepare to be enlightened and inspired. They are passionate, which makes the class fun and engaging. They encourage discussions and give helpful feedback.", + "pos": 0.491, + "neu": 0.494, + "neg": 0.015, + "_id": { + "$oid": "6711d426cd60fca157e5b174" + } + }, + { + "text": "Super caring and understanding. They were my favorite that semester because you could see they were passionate about what they were teaching and also cared about the students. Weekly hw but super easy.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d426cd60fca157e5b175" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d426cd60fca157e5b177" + }, + "professor_name": "Jane Kim", + "rating": 1, + "department": "Architecture department", + "comments": [ + { + "text": "there is little to no feedback in her classes, she does not explain what she expects from the projects, even if you work hard you won't get anything close to an A.", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d426cd60fca157e5b178" + } + }, + { + "text": "She was so difficult. I had her for my first ever semester of architecture and she was super tough. She never told me exactly what she wanted and expected me to know what she wanted and then the following class got annoyed if I didn't do what she was thinking I should do. I probably would take her in following years but definitely not a freshman.", + "pos": 0.083, + "neu": 0.845, + "neg": 0.072, + "_id": { + "$oid": "6711d426cd60fca157e5b179" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d427cd60fca157e5b17b" + }, + "professor_name": "Luis Monroy Franco", + "rating": 1, + "department": "Economics department", + "comments": [ + { + "text": "This was the WORST professor I have EVER taken at CCNY. He appeared in Oct to post ALL lectures and at the same time announce a midterm and assignment, showed up at the end of Nov to give the midterm (gave us a 2 day study period), then disappeared again to give a short notice final exam in Dec, between each of these events he was M.I.A. Beware!!!", + "pos": 0.0, + "neu": 0.897, + "neg": 0.103, + "_id": { + "$oid": "6711d427cd60fca157e5b17c" + } + }, + { + "text": "DON'T EVER TAKE HIM, IF U HAVE A CHOOSE. A LOT OF WORK, EXAMS ARE TOUGH. MANY OF THE STUDENT DROP THE CLASS. I GOT 32 FOR THE FIRST EXAM, AND I STUDIED.", + "pos": 0.0, + "neu": 0.86, + "neg": 0.14, + "_id": { + "$oid": "6711d427cd60fca157e5b17d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d427cd60fca157e5b17f" + }, + "professor_name": "Daniel Josephson", + "rating": 5, + "department": "Asian Studies department", + "comments": [ + { + "text": "TAKE HIM! Prof Dan is awesome and his class materials are so informative, I walked away with so much useful knowledge about Chinese culture. We had zoom class and attendance did matter so come to class. I appreciate this caring, awesome guy who give lots of useful reviews before any quizzes/exams.5 quizzes, 1 group presentation,1 midterm& 1 final.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d427cd60fca157e5b180" + } + }, + { + "text": "Professor Dan is a very caring professor. He cares bout his students and is so accommodating. Your grade is based on 5 very easy quizzes, a group project, midterm, final, and attendance. His lectures are so exciting and it makes you eager to learn more. One of the best professors at ccny!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d427cd60fca157e5b181" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d427cd60fca157e5b183" + }, + "professor_name": "Evy Wright", + "rating": 3.5, + "department": "Theater department", + "comments": [ + { + "text": "She's a very good professor, and I've learned a lot from her class. I used to be very shy and I didn't know how to structure my presentations and speeches well, however after her class, I feel I can do them pretty well. She's very well-spoken and outspoken, and overall very captivating in her speaking. I would love to take her again", + "pos": 0.202, + "neu": 0.766, + "neg": 0.031, + "_id": { + "$oid": "6711d427cd60fca157e5b184" + } + }, + { + "text": "I personally thought she was biased towards certain students and was not clear on grading requirements.", + "pos": 0.108, + "neu": 0.671, + "neg": 0.221, + "_id": { + "$oid": "6711d427cd60fca157e5b185" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d428cd60fca157e5b187" + }, + "professor_name": "Kazi Maisha", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "BIO 101 - not 206. She is a wonderful TA. Extremely personable, which makes learning much more enjoyable and motivating. On top of that, she is interested in helping you succeed (unlike the lecturer of the course Dr. Firooznia) and will give you very honest critique. Although she is just a TA, she beats 90% of the professors I've had.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d428cd60fca157e5b188" + } + }, + { + "text": "Professor Maisha is one of the best TAs I ever had. She goes out of her way to make the class entertaining with games. She always makes herself available for students and provides an atmosphere where asking questions and learning is fun. I'm excited to spend the rest of the semester with her.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d428cd60fca157e5b189" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d428cd60fca157e5b18b" + }, + "professor_name": "Griffin Pion", + "rating": 4, + "department": "Philosophy department", + "comments": [ + { + "text": "GReat prof", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d428cd60fca157e5b18c" + } + }, + { + "text": "He is a pretty cool professor, very easy going, really caring, and he wants you to really learn what he is teaching but if you are not a philosophy major or just not interested in philosophy at all then you will be very bored in his class.", + "pos": 0.147, + "neu": 0.745, + "neg": 0.109, + "_id": { + "$oid": "6711d428cd60fca157e5b18d" + } + }, + { + "text": "Easy class and nice prof. Attendence is basically mandatory because you have to take a quiz every class. You have to wrte about 4 papers-- not that much and not that hard as well. He is also leinant with them. Most of class he'll talk and you will ask for a response.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d428cd60fca157e5b18e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d428cd60fca157e5b190" + }, + "professor_name": "Evonne Aguire", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Evonne is quite literally the best lab TA in biology you can get. I've had friends who took other TA's that were incredibly harsh with their grades. Evonne cares for her students, and as long as you show up, you'll get more than a 90 for her lab.", + "pos": 0.183, + "neu": 0.762, + "neg": 0.055, + "_id": { + "$oid": "6711d428cd60fca157e5b191" + } + }, + { + "text": "Best lab ta you can get for bio", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d428cd60fca157e5b192" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d429cd60fca157e5b194" + }, + "professor_name": "Jinglun Feng", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He's a really awesome guy. Hew grades papers very fast and gives you feedback to do better. He doesn't teach for the full 3hours, which is a good thing. He tries to go through each line of the code in class.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d429cd60fca157e5b195" + } + }, + { + "text": "Jinglun is a Graduate Student. I had the pleasure to be a student for his first semester teaching EE425 Comp Engineering. The classwork is tedious and overall hard. However, he is a calm, emphatic, and resourceful, and helps you out when you stuck on a concept. Ive learned a lot. Definitely recommend taking him.", + "pos": 0.215, + "neu": 0.732, + "neg": 0.053, + "_id": { + "$oid": "6711d429cd60fca157e5b196" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d429cd60fca157e5b198" + }, + "professor_name": "Danny Rocco", + "rating": 4.5, + "department": "Speech department", + "comments": [ + { + "text": "Great respectful and caring speech professor. Easy GPA booster. Just make sure to do your three speeches as everybody else does. You're not obliged to hide conservative views at all as the other comment said at all. Just be a normal person and most importantly, back your speeches up with facts, not conspiracy theories", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d429cd60fca157e5b199" + } + }, + { + "text": "In the beginning, he is very relaxed and just likes to keep everything simple. However, when the second project started, things started going off the rails where things got political and he wants you to choose topics that align with liberal views. So, if you are more conservative you might want to hide that and just pretend to go along for that A.", + "pos": 0.111, + "neu": 0.844, + "neg": 0.045, + "_id": { + "$oid": "6711d429cd60fca157e5b19a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d429cd60fca157e5b19c" + }, + "professor_name": "Cory Weng", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "He is amazing! I 100% recommend having him as your recitation's leader, takes the time to help you on any questions you have.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d429cd60fca157e5b19d" + } + }, + { + "text": "Best TA I've had so far. He actually goes over the material in recitation. From other students with different TAs, I heard they just make them sit there and do wksts in breakout rooms. However, cory is an absolute gem. He goes over questions from Aleks and the lectures. I would just say to listen and participate often or you'll get picked on.", + "pos": 0.063, + "neu": 0.937, + "neg": 0.0, + "_id": { + "$oid": "6711d429cd60fca157e5b19e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42acd60fca157e5b1a0" + }, + "professor_name": "John Yurchyk", + "rating": 4, + "department": "Architecture department", + "comments": [ + { + "text": "A knowledgeable professor with a lot of information to share, whether it'd be about buildings, architects, or how to use Rhino. Very accommodating, especially considering the negative stigma about studio work in architecture school. The only problem is that he tends to mumble a lot, which can make it difficult to understand him.", + "pos": 0.036, + "neu": 0.812, + "neg": 0.152, + "_id": { + "$oid": "6711d42acd60fca157e5b1a1" + } + }, + { + "text": "Really smart guy with lots of good information to impart. Excellent balance of accommodating and demanding. Somewhat new to teaching.", + "pos": 0.349, + "neu": 0.582, + "neg": 0.069, + "_id": { + "$oid": "6711d42acd60fca157e5b1a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42acd60fca157e5b1a4" + }, + "professor_name": "Amy Gartrell", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "You HAVE to have access to a camera for this course, none are provided. That being said, it was cool to learn about DSLR cameras and their functions, but the assignments had a lot of specific details needed. Prof ended up making textbook chapters mandatory as people weren't reading, with assignments to go with.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d42acd60fca157e5b1a5" + } + }, + { + "text": "Prof. Gartrell is really insightful and lets us be ourselves. Given that this is an art course, the majority of the class is about show and tell, with less curriculum.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d42acd60fca157e5b1a6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42acd60fca157e5b1a8" + }, + "professor_name": "Abhipsa Shatarupa", + "rating": 1, + "department": "Chemistry department", + "comments": [ + { + "text": "AWFUL. THE LABS ARE ALREADY CONFUSING JUST GO TO ANOTHER SECTIONS LAB IF U HAVE HER THAT IS ALLOWED.", + "pos": 0.0, + "neu": 0.776, + "neg": 0.224, + "_id": { + "$oid": "6711d42acd60fca157e5b1a9" + } + }, + { + "text": "Abhipsa is rude when students approach her with questions and she takes off points for the most littlest things", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d42acd60fca157e5b1aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42bcd60fca157e5b1ac" + }, + "professor_name": "Sriram Ganeshan", + "rating": 1.5, + "department": "Physics department", + "comments": [ + { + "text": "Sriram Ganesh is amongst the worst teachers I have had. His lectures are not clear and not in sync with the class, its like he is teaching himself. He will seem pretty chill and will say that grades don't matter but, he is an extremely harsh grader. Do yourself a favor and drop his course!!", + "pos": 0.11, + "neu": 0.7, + "neg": 0.189, + "_id": { + "$oid": "6711d42bcd60fca157e5b1ad" + } + }, + { + "text": "His lectures on average are hard to follow, so rely on the textbook, and he presumes the students can work as quickly as he could. He does have his moments, and is generally alright, but the fact that he gave us a final question which in the solutions he didn't even bother solving himself (the question took me 3 hours to complete) is ridiculous.", + "pos": 0.086, + "neu": 0.816, + "neg": 0.098, + "_id": { + "$oid": "6711d42bcd60fca157e5b1ae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42bcd60fca157e5b1b0" + }, + "professor_name": "Jesse Mechanick", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "a gem of a professor. class is graded by 4 major assignments, discussion board posts, with fieldwork. Show up to class, participate, pay attention and these assignments should be rather enjoyable. SUPER accessible to students, loves communication even just for corny jokes. He is also understanding with extension...just take him already!!", + "pos": 0.226, + "neu": 0.751, + "neg": 0.023, + "_id": { + "$oid": "6711d42bcd60fca157e5b1b1" + } + }, + { + "text": "Jesse is an amazing teacher! Honestly, one of the best here at City College. Really works with you and helps out whenever possible. Hopefully he gets a full time job here, cause we need more professors like him.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d42bcd60fca157e5b1b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42bcd60fca157e5b1b4" + }, + "professor_name": "Nina Frenkel", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "A fantastic teacher! Helpful to all her students and colleagues. An amazing draftsman and designer.", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d42bcd60fca157e5b1b5" + } + }, + { + "text": "She's truly a professor/teacher! I came in hopeless, and exited feeling like I'd teach adobe flash a few things. She's the BEST! She loves helping us. She's such an expert, she can look at your work & tell you what kind of ice cream you liked as a kid! jk, but she meets you where you are & helps you grow! She's the kind you want in all classes.", + "pos": 0.289, + "neu": 0.687, + "neg": 0.024, + "_id": { + "$oid": "6711d42bcd60fca157e5b1b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42ccd60fca157e5b1b8" + }, + "professor_name": "Malik Zulqarnain", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "Amazing doctor and good professor.", + "pos": 0.691, + "neu": 0.309, + "neg": 0.0, + "_id": { + "$oid": "6711d42ccd60fca157e5b1b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42ccd60fca157e5b1bb" + }, + "professor_name": "Malikqua Lancaster", + "rating": 3, + "department": "Biology department", + "comments": [ + { + "text": "good", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d42ccd60fca157e5b1bc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42ccd60fca157e5b1be" + }, + "professor_name": "Keith Weissman", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "Good professor. Not 100% clear on what he says, but in general he is good. There are 9 hw assigments. Some of them are really long. 3 tests(2 midterms and 1 final) 25/25/30 points for them and 20 for homework", + "pos": 0.131, + "neu": 0.833, + "neg": 0.036, + "_id": { + "$oid": "6711d42ccd60fca157e5b1bf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42dcd60fca157e5b1c1" + }, + "professor_name": "Anna Cahn", + "rating": 3, + "department": "Art department", + "comments": [ + { + "text": "Although her lectures are clear and informative her expectations dont match that of a introductory art class. The tests compose of 10 slides and two essays where you have to remember the date, name, artist, significance, and time period for each painting. The average for the first test was a 65 and we needed to write a 8 page research paper.", + "pos": 0.074, + "neu": 0.926, + "neg": 0.0, + "_id": { + "$oid": "6711d42dcd60fca157e5b1c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42dcd60fca157e5b1c4" + }, + "professor_name": "J March", + "rating": 4, + "department": "World Humanities department", + "comments": [ + { + "text": "EAsy grader do the readings and write the papers... i think it was four papers the first three being 3 pages long each and the last being 10 page. easy stuff guys easy A", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d42dcd60fca157e5b1c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42dcd60fca157e5b1c7" + }, + "professor_name": "Jayshree Mathur", + "rating": 5, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "She was the best teacher i have ever had. She was helpful in every possible way and cared about every student. If a student was having trouble she would make it her goal to make sure the student got up to speed in class.", + "pos": 0.225, + "neu": 0.725, + "neg": 0.05, + "_id": { + "$oid": "6711d42dcd60fca157e5b1c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42ecd60fca157e5b1ca" + }, + "professor_name": "Christa Quint", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Quint is an awesome professor! The class was very easy, essentially because she was extremely helpful, clear on all material, and really made sure everyone understood the topic before moving on. She gave out test reviews, which were almost identical to the tests themselves. Overall, a very nice, and, in my opinion, a very cute lady!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d42ecd60fca157e5b1cb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42ecd60fca157e5b1cd" + }, + "professor_name": "Nkem Nkem Stanley-Mbamelu", + "rating": 4.5, + "department": "Advisor department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42ecd60fca157e5b1cf" + }, + "professor_name": "Abhay Urribarri", + "rating": 5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "He is the best professor ever. He made my life. eVERY PROFESSORS NEEDS TO LEARN FROM HIM.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d42ecd60fca157e5b1d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42ecd60fca157e5b1d2" + }, + "professor_name": "Andrea Ribuado", + "rating": 4.5, + "department": "World Humanities department", + "comments": [ + { + "text": "She's a great lady! Very nice and helpful! Just go to class with the books everyday; quizzes are weekly. There's a final and midterm in which if you read the books nd pay attention in class, they are easy! Overall she's a great prof! Take her!", + "pos": 0.308, + "neu": 0.669, + "neg": 0.023, + "_id": { + "$oid": "6711d42ecd60fca157e5b1d3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42fcd60fca157e5b1d5" + }, + "professor_name": "Christopher Burrell", + "rating": 5, + "department": "American Studies department", + "comments": [ + { + "text": "I really recommend taking him. I hated just the thought of USSO b/c I've never been good in History. However, he made the class very interesting and history SO EASY! DO THE READINGS! One thing about his class is that you have to do quite a long reading so be prepared. He likes students to participate. He has 9 quizzes, 3 papers, a midterm and final", + "pos": 0.205, + "neu": 0.715, + "neg": 0.08, + "_id": { + "$oid": "6711d42fcd60fca157e5b1d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d42fcd60fca157e5b1d8" + }, + "professor_name": "David Prince", + "rating": 5, + "department": "Humanities department", + "comments": [ + { + "text": "This professor really knows how to make Advertising clear. Sometimes ad professor throw out terms and that's it, it'll be on your test. He's really great at explaining everything in a concise way that will help you write your papers throughout the semester. He's inspiring. Awesome teacher. Best ad prof at CCNY, so take him for Ad Planning.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d42fcd60fca157e5b1d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d430cd60fca157e5b1db" + }, + "professor_name": "Kenneth Petrocca", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "Was always willing to discuss coursework. Helpful and understanding.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d430cd60fca157e5b1dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d430cd60fca157e5b1de" + }, + "professor_name": "Abed Haddad", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "he knows his stuff and makes class fun", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d430cd60fca157e5b1df" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d430cd60fca157e5b1e1" + }, + "professor_name": "Kenneth Ken Leong", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "He is a really nice lab TA. Clearly defines what he expects. Sometimes he might be tough in grading, but there is no confusion about what to do in lab because he goes over everything before starting the actual experiment. Great way to boost the lecture class grade.", + "pos": 0.263, + "neu": 0.716, + "neg": 0.021, + "_id": { + "$oid": "6711d430cd60fca157e5b1e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d430cd60fca157e5b1e4" + }, + "professor_name": "Aatish Gurung", + "rating": 4, + "department": "Chemistry department", + "comments": [ + { + "text": "He's a great TA!", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d430cd60fca157e5b1e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d431cd60fca157e5b1e7" + }, + "professor_name": "Howard Duffy", + "rating": 4, + "department": "Architecture department", + "comments": [ + { + "text": "Howard was a decent professor. He really cared about us and tried. He was still new so he will get better with time. his style is super laid back and he is more technical than conceptual.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d431cd60fca157e5b1e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d431cd60fca157e5b1ea" + }, + "professor_name": "Paolo Gaudiano", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "good teacher", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d431cd60fca157e5b1eb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d432cd60fca157e5b1ed" + }, + "professor_name": "Ana Perry", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She is a relatively new professor but is very knowledgeable in the Contemporary US Latin Art. Her lectures are great and well planed. There are a few readings to do for every class but are very clear and easy to understand. Gives good feedback and is ready to provide additional help outside of class. I missed a class and she was happy to recap it.", + "pos": 0.353, + "neu": 0.616, + "neg": 0.031, + "_id": { + "$oid": "6711d432cd60fca157e5b1ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d432cd60fca157e5b1f0" + }, + "professor_name": "Brandon Baird", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Lab is heavy with lots of material. You must understand these things for the lab exams. But Brandon tries to help and work with you however he can, he understands the workload. He's super hot so it helps. Some days we had to stay overtime, especially due to school cancellation. One group project. But lab is not hard to pass. Do not fret, take him!", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d432cd60fca157e5b1f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d432cd60fca157e5b1f3" + }, + "professor_name": "Samuel Byrd", + "rating": 3, + "department": "Anthropology department", + "comments": [ + { + "text": "Prof Byrd was alright. He was nice but his lectures tend to get boring and you might fall asleep. He gives A LOT to read, so be prepared.", + "pos": 0.186, + "neu": 0.725, + "neg": 0.089, + "_id": { + "$oid": "6711d432cd60fca157e5b1f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d433cd60fca157e5b1f6" + }, + "professor_name": "Juliet Luther", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "Terrible!! While she may seem knowledgeable about the material, she spends two hours lecturing. She uses blackboard but is extremely incompetent with technology and will fail you if you have difficulties uploading assignments on Blackboard. She does not accept emailed work and will also fail you if you miss one assignment! Steer clear of this one!!", + "pos": 0.045, + "neu": 0.63, + "neg": 0.325, + "_id": { + "$oid": "6711d433cd60fca157e5b1f7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d433cd60fca157e5b1f9" + }, + "professor_name": "Tal Lazar", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "Professor Lazar is one of the best professors I've had in college. He's very knowledgeable and organized and you will leave his class with lots of positive feedback and useful information. He assigns several hands-on exercises throughout the semester, so get ready to get your hands dirty, in the good sense of the word.", + "pos": 0.243, + "neu": 0.697, + "neg": 0.061, + "_id": { + "$oid": "6711d433cd60fca157e5b1fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d433cd60fca157e5b1fc" + }, + "professor_name": "Sabrina Pringle", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She is an easy grader and pretty chill professor.", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d433cd60fca157e5b1fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d433cd60fca157e5b1ff" + }, + "professor_name": "Oihida Beloucif", + "rating": 5, + "department": "French department", + "comments": [ + { + "text": "Professor Beloucif is a wonderful professor. Her classes are never boring and she forces everyone to participate. I didn't mind because how else would you learn to speak a foreign language? She speaks mostly in French but won't hesitate to speak in English if you don't understand (less difficult if you know another romance language like Spanish)", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d433cd60fca157e5b200" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d434cd60fca157e5b202" + }, + "professor_name": "Yvonne Campbell", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "She is Amazing. Just take her!", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d434cd60fca157e5b203" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d434cd60fca157e5b205" + }, + "professor_name": "Casina Malinchak", + "rating": 3, + "department": "Chemistry department", + "comments": [ + { + "text": "Casina was very helpful and attentive to questions during class and emails. Easy to reach. Although she got backed up with grading lab reports, she provided good feedback on them.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d434cd60fca157e5b206" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d434cd60fca157e5b208" + }, + "professor_name": "Moriah Carlson", + "rating": 3, + "department": "Art department", + "comments": [ + { + "text": "Moriah lacks integrity as an educator. She is dishonest about the topics she teaches and seems like her attention is not on her class. In general the class feels like you are being preached to as opposed to learning genuine useful skills.", + "pos": 0.205, + "neu": 0.723, + "neg": 0.072, + "_id": { + "$oid": "6711d434cd60fca157e5b209" + } + }, + { + "text": "Moriah is such an inspiring, energetic educator. You can tell she really cares!", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d434cd60fca157e5b20a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d435cd60fca157e5b20c" + }, + "professor_name": "Melanie Lorek", + "rating": 4.5, + "department": "Sociology department", + "comments": [ + { + "text": "She's very nice and straight forward. Give her what she asks for on assignments and you won't have a problem in this class. Readings are long and boring, quizzes are based on them so READ. Final project straight forward.She doesn't like any distractions in class so no cell phones or walking in late!! Thats her pet peeve!!I recommend her.", + "pos": 0.206, + "neu": 0.693, + "neg": 0.101, + "_id": { + "$oid": "6711d435cd60fca157e5b20d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d435cd60fca157e5b20f" + }, + "professor_name": "Grant Orvis", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Took Dr. Orvis bio 206 Genetics class this summer (2012) and was by far the best bio class I have taken. Orvis is extremely helpful. His lectures are clear and comprehensive, and He is always enthusiastic and funny when he teaches. Exams are fair, he provides you with a good review before the tests. Highly recommend him!!!", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d435cd60fca157e5b210" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d435cd60fca157e5b212" + }, + "professor_name": "Susan Yule", + "rating": 4.5, + "department": "Media Arts department", + "comments": [ + { + "text": "This class is extremely useful in all aspects, especially if you are an ad/pr major. I learned so much including InDesign and Photoshop, which will definitely help me in the long run. Professor Yule is a great teacher and explains everything very clearly. She is available outside of class and is very helpful.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d435cd60fca157e5b213" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d436cd60fca157e5b215" + }, + "professor_name": "Hector Agredano", + "rating": 4.5, + "department": "International Studies department", + "comments": [ + { + "text": "Really caring, flexible and informative!", + "pos": 0.665, + "neu": 0.335, + "neg": 0.0, + "_id": { + "$oid": "6711d436cd60fca157e5b216" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d436cd60fca157e5b218" + }, + "professor_name": "Sasha Cohen", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "very encouraging -- learned a lot about painting with oils -- fun -- take her class", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d436cd60fca157e5b219" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d436cd60fca157e5b21b" + }, + "professor_name": "Peter Galante", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "cool dude. Take him!", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d436cd60fca157e5b21c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d437cd60fca157e5b21e" + }, + "professor_name": "James Lewis", + "rating": 3, + "department": "World Civilizations department", + "comments": [ + { + "text": "Boring class. Don't need to pay attention to class in order to get a good grade on papers. NO FINAL!!!!", + "pos": 0.158, + "neu": 0.602, + "neg": 0.241, + "_id": { + "$oid": "6711d437cd60fca157e5b21f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d437cd60fca157e5b221" + }, + "professor_name": "Orhan Celebi", + "rating": 4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "he is a good prof. and you can lear a lot. Easy A if u do well on the quizzes and no final if quiz average is 90 or above.", + "pos": 0.219, + "neu": 0.72, + "neg": 0.061, + "_id": { + "$oid": "6711d437cd60fca157e5b222" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d437cd60fca157e5b224" + }, + "professor_name": "James Polly", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "He is one of the best professors I've had. He does a lot to make his students understand the material and if you study, you'll easily pass. The material itself isn't too challenging, and the lectures can feel very slow at times. He doesn't really provide a lot of examples though, which I think is essential for a math class. Overall, pretty good!", + "pos": 0.179, + "neu": 0.801, + "neg": 0.02, + "_id": { + "$oid": "6711d437cd60fca157e5b225" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d438cd60fca157e5b227" + }, + "professor_name": "Sanjoy Banerjee", + "rating": 3, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "no comment.", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d438cd60fca157e5b228" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d438cd60fca157e5b22a" + }, + "professor_name": "Michael Thibeault", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Best teacher focused on the business aspect of art. Take portfolio with him if want to learn how to apply for jobs and how to have a successful portfolio focused on the commercial aspect. Great lectures and many assignments or strict deadlines. He is not an artist, he's an agent for artist and knows how artists get jobs in the real world.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d438cd60fca157e5b22b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d438cd60fca157e5b22d" + }, + "professor_name": "Martin Rosenman", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Professor Rosenman is an EXCELLENT professor! He gives specific feedback and gives you advice on how to finish your assignments on time. He is very helpful and cares about his students a lot. It is easy to pass his class with an A, just do the work as he mentions in class and you are good! One of the most helpful professors in the entire college )", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d438cd60fca157e5b22e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d439cd60fca157e5b230" + }, + "professor_name": "Michael Conforti", + "rating": 4, + "department": "History department", + "comments": [ + { + "text": "Great teacher, the lectures are always so informative. The textbook is not worth buying, but make sure to take very thorough notes in class. Also, make sure to read all assigned readings cause they usually are on the exams. Plus, work hard on the papers he assigns because he does grade them pretty harshly. But overall, a great prof!", + "pos": 0.254, + "neu": 0.706, + "neg": 0.04, + "_id": { + "$oid": "6711d439cd60fca157e5b231" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d439cd60fca157e5b233" + }, + "professor_name": "Yiannis Andreopoulos", + "rating": 3.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Weird that I'm 1st rater. This was the MOST BENEFICIAL course i took in CCNY; projects are actual engineering not academic play. If you don't want to suicide but learn in this course: 1-take this course at end of your degree. 2-take this course by itself. 3-class is confusing,go to prof office after study for clarity. 4-focus projects,forget exams.", + "pos": 0.132, + "neu": 0.807, + "neg": 0.061, + "_id": { + "$oid": "6711d439cd60fca157e5b234" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d439cd60fca157e5b236" + }, + "professor_name": "Milagros Seraus", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "She's nice. Her class was very engaging. There are two groups presentations along with two papers.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d439cd60fca157e5b237" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d439cd60fca157e5b239" + }, + "professor_name": "Jamie Fine", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I have never met teacher like her. she explains everything very clear.", + "pos": 0.193, + "neu": 0.667, + "neg": 0.141, + "_id": { + "$oid": "6711d439cd60fca157e5b23a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43acd60fca157e5b23c" + }, + "professor_name": "Kamal Soleimani", + "rating": 4, + "department": "Anthropology department", + "comments": [ + { + "text": "Great Prof, he's caring and considerate of his students. However, u have to ask him multiple times for clarification on HW & for that reason I wouldn't take him again. I would only recommend taking cross cultural perspectives during the summer. One short book to read, an article, and a 3-4 page final essay.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d43acd60fca157e5b23d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43acd60fca157e5b23f" + }, + "professor_name": "Nissa Whittle", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "Professor Nissa was very laid back. She made sure everyone in the class felt comfortable. We had to attend two theater performances during the semester and write a one-page response for each. She does collect notebooks so make sure you write down all the classmate feedback. I definitely recommend this class.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d43acd60fca157e5b240" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43acd60fca157e5b242" + }, + "professor_name": "Amy Gomez", + "rating": 2, + "department": "Marketing department", + "comments": [ + { + "text": "She is not a bad professor. Approachable with a cornball sense of humor. Very lecture heavy and lots of unnecessary group work. That being said, she is obviously not used to teaching above high school level. Students did not want to participate because they felt patronized. Answering dull and obvious questions without learning is what you get.", + "pos": 0.08, + "neu": 0.857, + "neg": 0.063, + "_id": { + "$oid": "6711d43acd60fca157e5b243" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43bcd60fca157e5b245" + }, + "professor_name": "Lawrence Fleischer", + "rating": 5, + "department": "Liberal Studies department", + "comments": [ + { + "text": "Had him twice for Family Law & Juvenile Rights at CWE. Makes his lectures long but full of info, funny teacher. Really understanding and makes class smooth. However do read and take notes for the final its open book and requires you to know and describe the terms and case studies. Take him hes awesome. Just read and take notes youll be fine.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d43bcd60fca157e5b246" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43bcd60fca157e5b248" + }, + "professor_name": "Willie Mack", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "He is a good professor. His work was very easy. They were no finals in his class. It was just a final paper on the country you have chosen. His participate matters. He is a very understanding professor. I will take his class again. He gives a lot of extra credit in his class, And he is a very easy grader and has good feedback on any assignments.", + "pos": 0.201, + "neu": 0.771, + "neg": 0.028, + "_id": { + "$oid": "6711d43bcd60fca157e5b249" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43bcd60fca157e5b24b" + }, + "professor_name": "Allison Moore", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Professor Moore accommodated my anxiety issue, even with a group project. Her class was well structured and graded assignments helped deepen my understanding of the subject matter. An all around amazing professor. As such, I highly recommend taking Professor Moore, if you have the opportunity.", + "pos": 0.236, + "neu": 0.732, + "neg": 0.032, + "_id": { + "$oid": "6711d43bcd60fca157e5b24c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43ccd60fca157e5b24e" + }, + "professor_name": "Alfonso Oliva", + "rating": 3, + "department": "Architecture department", + "comments": [ + { + "text": "Caring and helpful professor held back by the online-only format of the course and lack of communication with his co-teacher.", + "pos": 0.237, + "neu": 0.672, + "neg": 0.091, + "_id": { + "$oid": "6711d43ccd60fca157e5b24f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43ccd60fca157e5b251" + }, + "professor_name": "Ekim Kilic", + "rating": 4, + "department": "Political Science department", + "comments": [ + { + "text": "Was a great TA that was willing to go over confusing or unclear lecture points. Made sure to break down exam and essay structures and expectations. He worked to learn everyone's names and checked in every now and then.", + "pos": 0.141, + "neu": 0.773, + "neg": 0.086, + "_id": { + "$oid": "6711d43ccd60fca157e5b252" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43ccd60fca157e5b254" + }, + "professor_name": "Peter Tinguely", + "rating": 2, + "department": "Psychology department", + "comments": [ + { + "text": "Avoid Professor Tinguely if you can. His lectures are confusing, he seems bored and disinterested, and he blames you for not understanding his assignments. He often puts questions that don't seem entirely connected to the topic and then puts in the wrong answers so everyone is stuck guessing their true grade. I truly didn't enjoy his class.", + "pos": 0.081, + "neu": 0.68, + "neg": 0.239, + "_id": { + "$oid": "6711d43ccd60fca157e5b255" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43dcd60fca157e5b257" + }, + "professor_name": "Sarah Cohn", + "rating": 5, + "department": "Library & Information Science department", + "comments": [ + { + "text": "I took Professor Cohn's class as an asynchronous online class and couldn't ask for more. She gave us more than enough time to complete assignments and gave us great feedback on them. The class assignments were weekly discussion boards + commenting on classmates' posts and a literature review. You'll learn a ton from reading the assignments. Easy A!", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d43dcd60fca157e5b258" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43dcd60fca157e5b25a" + }, + "professor_name": "Rose Deler", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She's thorough with her emails and lectures in what she wants you to do in her class. Very patient and understanding. She checks her emails and responds back. There were 4 quizzes and 4 projects. This was a fun and relaxing class, even if you are a beginner. I would definitely recommend this class!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d43dcd60fca157e5b25b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43dcd60fca157e5b25d" + }, + "professor_name": "John Kavanagh", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Great professor, light work load, makes lectures very fun and interesting. Tends to go a bit off topic sometimes but its really interesting what he talks about! \nWould definitely take again!", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d43dcd60fca157e5b25e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43ecd60fca157e5b260" + }, + "professor_name": "Adam Blazej", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Prof. Blazej is amazing, he keeps the course interesting. There's a lot of readings, so reading before class makes the lecture materials easier. He is very understanding, so if you have problems, he's always there to help. Talk to him in person or in office hours instead of emailing would be faster way to reach him.", + "pos": 0.199, + "neu": 0.76, + "neg": 0.041, + "_id": { + "$oid": "6711d43ecd60fca157e5b261" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43ecd60fca157e5b263" + }, + "professor_name": "Martha Guillorn", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Very chill and gives a lot of space to be creative with assignments.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d43ecd60fca157e5b264" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43ecd60fca157e5b266" + }, + "professor_name": "Katherine Ramirez", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "prof. ramirez had a lot going on in her life when i took her but she still put in her all. she makes herself available to give you whatever you need (job reference, etc) and makes that clear. she can be tough and expects you to turn in on time and do the readings, but she offered extra credit and made allowances for tough circumstances. love her", + "pos": 0.161, + "neu": 0.794, + "neg": 0.045, + "_id": { + "$oid": "6711d43ecd60fca157e5b267" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43fcd60fca157e5b269" + }, + "professor_name": "Jorge Morales", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "He is the only reason why I was able to get an A- in this course and I love him. He set minimum scores on the practical so nobody could score lower than a 72 which saved me on practical 2. He is really funny and a good teacher. For our lab reports he was an easy grader. If you have the option, TAKE HIS SECTION!!! I honestly hope to have him again", + "pos": 0.253, + "neu": 0.722, + "neg": 0.024, + "_id": { + "$oid": "6711d43fcd60fca157e5b26a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43fcd60fca157e5b26c" + }, + "professor_name": "Joshua Wright", + "rating": 2, + "department": "Psychology department", + "comments": [ + { + "text": "This is an experimental class that includes both mindfulness exercises and academic work. To succeed you need to attend, be engaged, and get everything clarified in writing in an email. The professor is wordy, indirect and not a skilled teacher. He is a bit too into mindfulness. I found him to be very patronizing and condescending to us students.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d43fcd60fca157e5b26d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d43fcd60fca157e5b26f" + }, + "professor_name": "Michelle Dyke", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "I took her for the honors section and I just have to say she is an amazing professor! Her lectures are amazing and definitely help you when it comes to writing the essays she assigns. She also gives study sheets/questions which are answered by the end of lectures. These study sheets also help you for the quizzes. 3 essays and 4 quizzes, no exams.", + "pos": 0.246, + "neu": 0.726, + "neg": 0.028, + "_id": { + "$oid": "6711d43fcd60fca157e5b270" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d440cd60fca157e5b272" + }, + "professor_name": "Damian Lambert", + "rating": 2, + "department": "Languages department", + "comments": [ + { + "text": "I took him online and the lectures were very uninteresting. Every class he asked few students to read in the beginning of the class then the remainder of the class he put us in breakout rooms to do excercises from MLS. there were 5 exams, one composition, one oral, and A LOT OF HOMEWORK. Be prepared to spare lots of time for hw. It's easy but work", + "pos": 0.05, + "neu": 0.95, + "neg": 0.0, + "_id": { + "$oid": "6711d440cd60fca157e5b273" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d440cd60fca157e5b275" + }, + "professor_name": "Spencer Hill", + "rating": 5, + "department": "Earth Science department", + "comments": [ + { + "text": "Cares about his lectures and students. Always encourages inquiries. 4 homeworks, lowest dropped, all graded based on effort+completion. Tests are made to be challenging, but will curve according to the class's overall performance. Performing around class average is ~B. Always makes the effort to have interactive/physical models for his lessons", + "pos": 0.099, + "neu": 0.867, + "neg": 0.034, + "_id": { + "$oid": "6711d440cd60fca157e5b276" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d440cd60fca157e5b278" + }, + "professor_name": "Caitlin Meissner-Chiriga", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She was super nice and really cared about all the students. Her sense of humor and bubbly personality made every class fun to come to. Gave detailed feedback on all our assignments.", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d440cd60fca157e5b279" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d441cd60fca157e5b27b" + }, + "professor_name": "Wendy Del Valle", + "rating": 5, + "department": "Earth Science department", + "comments": [ + { + "text": "Professor Wendy is awesome! I've taken her for Nature and Human Part 1&2. Make sure you pay attention to the PP because that's where all the quiz/test comes for. She loves participation. I was never confident in the science but she makes it clear and interesting.", + "pos": 0.247, + "neu": 0.699, + "neg": 0.054, + "_id": { + "$oid": "6711d441cd60fca157e5b27c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d441cd60fca157e5b27e" + }, + "professor_name": "Joshua Jow", + "rating": 2, + "department": "Architecture department", + "comments": [ + { + "text": "Seemed like he was not very prepared and was late to give us important information. Grading system was not clear esp since it was a group project. he also did not seem to make an effort to help me improve my grade after the mid term so not very helpful as professor overall.", + "pos": 0.158, + "neu": 0.733, + "neg": 0.11, + "_id": { + "$oid": "6711d441cd60fca157e5b27f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d441cd60fca157e5b281" + }, + "professor_name": "Petrushka Bazin", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Professor Bazin is incredible and amazing! The zines, participation, and the art lesson plan is the biggest role to do for the class because it's WORTH your grade. At the end of the spring semester, we did an ice cream party because of the hard work we all accomplished. This was a great experience for me! Take her!!!!", + "pos": 0.248, + "neu": 0.733, + "neg": 0.02, + "_id": { + "$oid": "6711d441cd60fca157e5b282" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d441cd60fca157e5b284" + }, + "professor_name": "Justo Planas", + "rating": 5, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Great class! Super kind. Sometimes my classmates wouldn't know how to say something in Spanish so they would say it in English and he was not bothered. Would give feedback in weekly homework assignments. Final paper of 5 pages. Easy class.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d441cd60fca157e5b285" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d442cd60fca157e5b287" + }, + "professor_name": "Irving Mota Leon", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "He is a great professor. Offers lots of useful resources that could be use on classrooms. He is very understanding and allows you to revise your work after giving great feedback.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d442cd60fca157e5b288" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d442cd60fca157e5b28a" + }, + "professor_name": "Paul Goldberg", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Laid back professor, his lectures are about what you'll read and then group discussion on what you read. Attendance is mandatory, there are 16 reading responses you need to submit (40%), and you can receive Extra Credit for submitting more. Both exams are easy (10% each), one 1000 word essay (30%).\nParticipation makes the class enjoyable.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d442cd60fca157e5b28b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d442cd60fca157e5b28d" + }, + "professor_name": "Susan Mei", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "Lots of hands-on experience in this class. She is a very tough grader so your scripts or films will be heavily looked at and critiqued. There is many group projects that you'll need to complete and pretty easy class to pass. As long as you show up and do your work you'll be fine.", + "pos": 0.132, + "neu": 0.838, + "neg": 0.03, + "_id": { + "$oid": "6711d442cd60fca157e5b28e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d443cd60fca157e5b290" + }, + "professor_name": "David Groff", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Professor Groff is a real gem! He genuinely cares about his students, encourages discussion, and is easily accessible outside of class. He is more than willing, in fact, he insists we meet with him to discuss publications, our progress in the class, and revisions. He gives good feedback, prompts are optional. A true workshop class, even online.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d443cd60fca157e5b291" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d443cd60fca157e5b293" + }, + "professor_name": "Tarek Saadawi", + "rating": 1, + "department": "Computer Science department", + "comments": [ + { + "text": "Avoid this professor. Very unorganized lectures. His speaking is hard to understand and his english is not great. Says no to recording lectures, says no to posting homework solutions because he is old fashion and says you should just write it down. Seems like he wants to make the class harder than it should be.", + "pos": 0.096, + "neu": 0.76, + "neg": 0.144, + "_id": { + "$oid": "6711d443cd60fca157e5b294" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d443cd60fca157e5b296" + }, + "professor_name": "Tricia White", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "If theres a Professor to avoid, it would be her. EXTREMELY unprofessional&rude are understatements. She doesn't teach any content, rather tells you to read chapters of a book&gives quizlet exams. Takes the whole semester to grade assignments so you never knew where you're standing. Didn't turn her camera on once during the semester. IGNORES EMAILS.", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d443cd60fca157e5b297" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d444cd60fca157e5b299" + }, + "professor_name": "Travis Sloane", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "This class was a lot. He is a gem but it was very heavy with discussion boards, stem journals, google slide journal and papers and a Midterm for an education class. I am guessing there was a lot because he is passionate but it was all very loaded and too much for a student who is taking other classes and has other obligations.", + "pos": 0.069, + "neu": 0.931, + "neg": 0.0, + "_id": { + "$oid": "6711d444cd60fca157e5b29a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d444cd60fca157e5b29c" + }, + "professor_name": "Judith Felice", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Homework given everytime we meet, however it was necessary to practice all the material we were taught. She comes up with tricks to learn math faster, she always answers emails, she is very understanding. She gives many opportunities for extra credit. I recommend taking her!", + "pos": 0.158, + "neu": 0.812, + "neg": 0.03, + "_id": { + "$oid": "6711d444cd60fca157e5b29d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d444cd60fca157e5b29f" + }, + "professor_name": "Jeremiah Mccarthy", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "This was an Asynchronous class where we would watch his lecture videso online. You had three main assignments to talk about art work from his youtube lectures. Alo of work but really really easy. The professor is really nice and understanding, so if you happen to be behind, he will excuse it. Take him as your art prof !!", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d444cd60fca157e5b2a0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d445cd60fca157e5b2a2" + }, + "professor_name": "Michael Torres", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d445cd60fca157e5b2a4" + }, + "professor_name": "Philip Rappaport", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d445cd60fca157e5b2a6" + }, + "professor_name": "Dexter Ciprian", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d445cd60fca157e5b2a8" + }, + "professor_name": "Gabrielle Legendre", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d446cd60fca157e5b2aa" + }, + "professor_name": "Sam Brian", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d446cd60fca157e5b2ac" + }, + "professor_name": "Samantha Bellamy", + "rating": null, + "department": "World Humanities department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d446cd60fca157e5b2ae" + }, + "professor_name": "Jason Baez", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d446cd60fca157e5b2b0" + }, + "professor_name": "Fernando Cardenas Pena", + "rating": null, + "department": "Media Arts department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d447cd60fca157e5b2b2" + }, + "professor_name": "Antonio Marti", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d447cd60fca157e5b2b4" + }, + "professor_name": "Laura Scherling", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d447cd60fca157e5b2b6" + }, + "professor_name": "Rongmei Wei", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d448cd60fca157e5b2b8" + }, + "professor_name": "Elana Broitman", + "rating": null, + "department": "Internation Service department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d448cd60fca157e5b2ba" + }, + "professor_name": "Elena Broitman", + "rating": null, + "department": "International Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d448cd60fca157e5b2bc" + }, + "professor_name": "Woessner Martin", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d449cd60fca157e5b2be" + }, + "professor_name": "Saviah Hunter", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d449cd60fca157e5b2c0" + }, + "professor_name": "Nancy Palubniack", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d449cd60fca157e5b2c2" + }, + "professor_name": "Abdullah Khawarzad", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d449cd60fca157e5b2c4" + }, + "professor_name": "Saleh Junnun", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44acd60fca157e5b2c6" + }, + "professor_name": "Silvia De Toffoli", + "rating": null, + "department": "Philosophy department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44acd60fca157e5b2c8" + }, + "professor_name": "Astrid Hallaraaker", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44acd60fca157e5b2ca" + }, + "professor_name": "Paula Doerfel", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44acd60fca157e5b2cc" + }, + "professor_name": "El Babekri", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44bcd60fca157e5b2ce" + }, + "professor_name": "Hanh Nguyen", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44bcd60fca157e5b2d0" + }, + "professor_name": "Sebasti\u00e1n Mart\u00ednez", + "rating": null, + "department": "Languages department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44bcd60fca157e5b2d2" + }, + "professor_name": "David Pultz", + "rating": null, + "department": "Sociology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ccd60fca157e5b2d4" + }, + "professor_name": "Tarendra Lakhankar", + "rating": null, + "department": "Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ccd60fca157e5b2d6" + }, + "professor_name": "Hayley Hancock", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ccd60fca157e5b2d8" + }, + "professor_name": "Shant Shahrigian", + "rating": null, + "department": "Administration department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ccd60fca157e5b2da" + }, + "professor_name": "Anna Hotter", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Super kind professor who looks like just started teaching class not long ago. They're nice enough to make a huge chunk of your grade participation based. Has a few tests and projects but overall a good atmosphere and class environment.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d44ccd60fca157e5b2db" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44dcd60fca157e5b2dd" + }, + "professor_name": "Maria Chaname", + "rating": 1, + "department": "Spanish department", + "comments": [ + { + "text": "Please do not take her for Spanish, she is horrible. Every student was super stressed out and she did not comply. She does weekly videos and seems nice i'll give her that. But not so understanding when it comes to your work, and its way to much. Everyone had bad grades - what does that say about the teacher....if you can take ANYONE else, do it.", + "pos": 0.08, + "neu": 0.803, + "neg": 0.116, + "_id": { + "$oid": "6711d44dcd60fca157e5b2de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44dcd60fca157e5b2e0" + }, + "professor_name": "Alexandra Lorenzo", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44dcd60fca157e5b2e2" + }, + "professor_name": "Lyn Di Iorio", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ecd60fca157e5b2e4" + }, + "professor_name": "Fadi Samaan", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ecd60fca157e5b2e6" + }, + "professor_name": "Anna McClennen", + "rating": null, + "department": "Sociology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ecd60fca157e5b2e8" + }, + "professor_name": "Lesley Hansen", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44ecd60fca157e5b2ea" + }, + "professor_name": "Christina Thomopoulos", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44fcd60fca157e5b2ec" + }, + "professor_name": "David Marakhayve", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44fcd60fca157e5b2ee" + }, + "professor_name": "Rumana Syed", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44fcd60fca157e5b2f0" + }, + "professor_name": "Zhuo Yin", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d44fcd60fca157e5b2f2" + }, + "professor_name": "Maria Velazquez", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d450cd60fca157e5b2f4" + }, + "professor_name": "Dave Britton", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d450cd60fca157e5b2f6" + }, + "professor_name": "Mikhail Kreytser", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d450cd60fca157e5b2f8" + }, + "professor_name": "Augustine Nocera", + "rating": null, + "department": "Media Arts department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d450cd60fca157e5b2fa" + }, + "professor_name": "Emily Esposito", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d451cd60fca157e5b2fc" + }, + "professor_name": "Kellie Griffith", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d451cd60fca157e5b2fe" + }, + "professor_name": "Teresa Bruno", + "rating": null, + "department": "Languages department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d451cd60fca157e5b300" + }, + "professor_name": "Adriano Espaillat", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d452cd60fca157e5b302" + }, + "professor_name": "Zhengzhao Lou", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d452cd60fca157e5b304" + }, + "professor_name": "Marguerite Lukes", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d452cd60fca157e5b306" + }, + "professor_name": "Immad Malik", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d452cd60fca157e5b308" + }, + "professor_name": "Judith Felice", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d453cd60fca157e5b30a" + }, + "professor_name": "Stefan Pukatzki", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d453cd60fca157e5b30c" + }, + "professor_name": "Jos\u00e9 Chac\u00f3n", + "rating": null, + "department": "Languages department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d453cd60fca157e5b30e" + }, + "professor_name": "Violet Lee", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d453cd60fca157e5b310" + }, + "professor_name": "Pitcha Sudjaritjuntorn", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d454cd60fca157e5b312" + }, + "professor_name": "Laura Brandt", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d454cd60fca157e5b314" + }, + "professor_name": "Komal Chauhan", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d454cd60fca157e5b316" + }, + "professor_name": "Rafaela Espinal", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d455cd60fca157e5b318" + }, + "professor_name": "Najha Johnson", + "rating": null, + "department": "Liberal Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d455cd60fca157e5b31a" + }, + "professor_name": "Samuel Fenster", + "rating": null, + "department": "Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d455cd60fca157e5b31c" + }, + "professor_name": "Aiden O'Donnell", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d455cd60fca157e5b31e" + }, + "professor_name": "Marlene Clark", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d456cd60fca157e5b320" + }, + "professor_name": "Xiaoyan Xiaoyan Yang", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d456cd60fca157e5b322" + }, + "professor_name": "Nicholas Videen", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d456cd60fca157e5b324" + }, + "professor_name": "Gabriela Hernandez", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d457cd60fca157e5b326" + }, + "professor_name": "Marla Alexandre", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d457cd60fca157e5b328" + }, + "professor_name": "Rebecca Wellington", + "rating": null, + "department": "African-American Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d457cd60fca157e5b32a" + }, + "professor_name": "Kevin Persaud", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d457cd60fca157e5b32c" + }, + "professor_name": "Er Ro", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d458cd60fca157e5b32e" + }, + "professor_name": "Andrea Fisher", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d458cd60fca157e5b330" + }, + "professor_name": "Burt Goncalves", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d458cd60fca157e5b332" + }, + "professor_name": "Eva Garcia", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d459cd60fca157e5b334" + }, + "professor_name": "Gretel Acosta", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d459cd60fca157e5b336" + }, + "professor_name": "Annette Weintraub", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d459cd60fca157e5b338" + }, + "professor_name": "Frederick Pearsall", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d459cd60fca157e5b33a" + }, + "professor_name": "Nalani Kopp", + "rating": null, + "department": "Humanities department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45acd60fca157e5b33c" + }, + "professor_name": "Syl Peterkin", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45acd60fca157e5b33e" + }, + "professor_name": "Anthony Graves", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45acd60fca157e5b340" + }, + "professor_name": "Samuel Van Gool", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45acd60fca157e5b342" + }, + "professor_name": "Lamiae Saidi", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45bcd60fca157e5b344" + }, + "professor_name": "Carlos Acosta", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45bcd60fca157e5b346" + }, + "professor_name": "David Jacobsen", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45bcd60fca157e5b348" + }, + "professor_name": "Thomas Leavitt", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45ccd60fca157e5b34a" + }, + "professor_name": "Natalie Lupiani", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45ccd60fca157e5b34c" + }, + "professor_name": "K. Williams", + "rating": null, + "department": "Urban Design amp Development department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45ccd60fca157e5b34e" + }, + "professor_name": "Rachel Bell", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45ccd60fca157e5b350" + }, + "professor_name": "Andrew Wolf", + "rating": null, + "department": "Honors department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45dcd60fca157e5b352" + }, + "professor_name": "Issa Salame", + "rating": 4.4, + "department": "Chemistry department", + "comments": [ + { + "text": "Professor Salame is amazing! He holds weekly review sessions, gives generous extra credit, and even got fired for helping students too much. Use unstuckstudy ai and old exams to ace this class.", + "pos": 0.285, + "neu": 0.631, + "neg": 0.084, + "_id": { + "$oid": "6711d45dcd60fca157e5b353" + } + }, + { + "text": "Prof Salame is one of the few professors who truly cares about his students inside and outside of class. If you see he is teaching a class you have to take do yourself a favor and take him. His tests are very similar to his review packets and if you get 90's or above an all three exam you don't have to take the final.", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b354" + } + }, + { + "text": "Best prof ever. Genuinely cares about the students. Best thing to ever happen to the Ccny science department", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b355" + } + }, + { + "text": "One of the best professors at CCNY!", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b356" + } + }, + { + "text": "MVP PROFESSOR, LITERAL GOAT OF CHEMISTRY, THIS GUY BASICALLY IS THE MICHEAL JORDAN OF CHEMISTRY", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b357" + } + }, + { + "text": "Extremely easy class. Not much need to be said. If you wish, you can stick to just doing the ALEKS material and recitation material and you will literally ace the exams. Worst part of the class is definitely the lazy students not studying and being surprised that they fail the exams.", + "pos": 0.162, + "neu": 0.681, + "neg": 0.156, + "_id": { + "$oid": "6711d45dcd60fca157e5b358" + } + }, + { + "text": "THE BEST PROFESSOR IN THE WORLD! I only took this class just because he was teaching it, and I miss being his student. I had him for Orgo 1, and he is genuinely the most caring professor I have ever had. Take him if you can for any chem courses he teaches you will not regret.", + "pos": 0.171, + "neu": 0.804, + "neg": 0.025, + "_id": { + "$oid": "6711d45dcd60fca157e5b359" + } + }, + { + "text": "Professor Salame truly cares about his students' well-being and understanding of the course material. His exams reflect what he teaches in class, so go to the lectures even though they aren't mandatory. As long as you show up to class and study for the exams, your grade will reflect that. You got this!", + "pos": 0.108, + "neu": 0.871, + "neg": 0.021, + "_id": { + "$oid": "6711d45dcd60fca157e5b35a" + } + }, + { + "text": "6 quizzes, lowest dropped and a cumulative final exam. I took this course just to have him as a professor again and it was the best. Asha was my lab ta and shes amazing as well.", + "pos": 0.226, + "neu": 0.716, + "neg": 0.058, + "_id": { + "$oid": "6711d45dcd60fca157e5b35b" + } + }, + { + "text": "TAKE HIM. He's super fair with his exams and his review is essentially exactly how the exam was. Bombed my first two exams but still got the B. Lectures are engaging and he doesn't read off every single slide and every word like most science dept profs, he skips the ones you won't need for the exams. WISH I WAS A CHEM MAJOR SO I CAN TAKE HIM AGAIN", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b35c" + } + }, + { + "text": "had an A in the class so I didnt have to take the final. hes the goat. not much to say", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b35d" + } + }, + { + "text": "If you see people getting A's in chem you just know the professor is amazing and he is. Def take him if you can, hes gonna make u love and understand chem. Chem is hard a bit and it takes practice to get the hang of it but he explains it so well. As long as u put in effort he will do his best to boost ur grade up.", + "pos": 0.216, + "neu": 0.77, + "neg": 0.014, + "_id": { + "$oid": "6711d45dcd60fca157e5b35e" + } + }, + { + "text": "hands down the best professor in ccny. the most caring, funny and empathetic person. he genuinely wants u to do good in his class and he will try his best to boost ur grade but that doesnt mean you get to slack. as long as u put in the work and try he will help you. TAKE HIM YOU WONT REGRET", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b35f" + } + }, + { + "text": "Probably my favorite professor of all time. He made THE infamous STEM course really easy to understand, and actually pretty fun. You should really attend every lecture if you can, and drill practice problems from the book. Final grade was based on three exams.", + "pos": 0.233, + "neu": 0.717, + "neg": 0.05, + "_id": { + "$oid": "6711d45dcd60fca157e5b360" + } + }, + { + "text": "Prof. Salame is one of those rare university-level professors who is both great at teaching and cares a lot about his students. He made every class engaging and went out of his way for every student to do well. 100% recommend you take his organic chemistry course.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b361" + } + }, + { + "text": "Amazing Professor. If you go to lecture and pay attention to what he says will and will not be on exams, you'll be perfectly fine.", + "pos": 0.304, + "neu": 0.652, + "neg": 0.043, + "_id": { + "$oid": "6711d45dcd60fca157e5b362" + } + }, + { + "text": "Amazing. Chem is a hard course and obviously you must dedicate hours into studying, but if you attend his class and visit his office hours for extra help, he is so chill and caring that it almost feels like you're taking this class for fun. I actually would take another chem class with him for fun. Super clear on what's needed to learn for exams.", + "pos": 0.352, + "neu": 0.634, + "neg": 0.014, + "_id": { + "$oid": "6711d45dcd60fca157e5b363" + } + }, + { + "text": "Prof Salame is the best prof ever. This man is everything you would want in a prof. He cares about his students, takes time during his weekend to hold review sessions, and motivates his students to do their best. Despite orgo being a challenging course Salame makes it interesting to learn. Go to office hours if you don't understand something.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b364" + } + }, + { + "text": "#DO NOT OVERWHELM YOURSELF BY JUST LEARNING ABOUT THE CONTENTS. \n#PRACTICE OLD EXAMS; ORGO IS MORE ABOUT DOING RATHER THAN JUST KNOWING.", + "pos": 0.067, + "neu": 0.933, + "neg": 0.0, + "_id": { + "$oid": "6711d45dcd60fca157e5b365" + } + }, + { + "text": "I love this man. so nice and approachable and funny. get an A on first three exams to be exempt from the final. to get an A on the exams, have every single question done in class, problem session, past exams completed. he usually reuses those questions. get on his good side he helps you", + "pos": 0.258, + "neu": 0.703, + "neg": 0.04, + "_id": { + "$oid": "6711d45dcd60fca157e5b366" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45ecd60fca157e5b368" + }, + "professor_name": "Doris Pichardo", + "rating": 4.2, + "department": "Mathematics department", + "comments": [ + { + "text": "Tough Grader. Easy exams/quizzes (No curve but partial credit depends) Gives lots of practice problems .Make sure you follow her method to do all problems .then you will be fine .", + "pos": 0.245, + "neu": 0.56, + "neg": 0.195, + "_id": { + "$oid": "6711d45ecd60fca157e5b369" + } + }, + { + "text": "Doris P. has a very structured teaching style, with detailed note packets and robust exam reviews. While CALC2 is demanding, she makes you put in the work. Using UnstuckStudy AI alongside the materials helped me prep efficiently for the weekly quizzes and exams.", + "pos": 0.109, + "neu": 0.851, + "neg": 0.04, + "_id": { + "$oid": "6711d45ecd60fca157e5b36a" + } + }, + { + "text": "She is a good teacher when it comes to math. The only way you will do good is by doing practice problems, staying on top of your work and paying attention in class. She gives tons of practice to do and is relatively fair. She's a very old school type of professor which I genuinely liked. The material is tough but put in the work and you'll be fine", + "pos": 0.147, + "neu": 0.812, + "neg": 0.041, + "_id": { + "$oid": "6711d45ecd60fca157e5b36b" + } + }, + { + "text": "She does not know how to teach the entire calc 2 syllabus within the given timeframe. She just dumped us with 10 2- hour long videos she recorded 3 semesters ago and forced us to watch it in 2 days. There were questions in the final exam from topics she didnt go over in class or the videos. She became very disorganized towards the end of the sem.", + "pos": 0.0, + "neu": 0.888, + "neg": 0.112, + "_id": { + "$oid": "6711d45ecd60fca157e5b36c" + } + }, + { + "text": "Uses great fill-in note packets, provides extensive exam review materials with keys, offers extra credit (up to 10 points for the 2/3 exams, no curve). Explains content thoroughly, though CALC2 demands cramming. Weekly quizzes and straightforward online homework. Fantastic professor! CALC 2 IS NOT EASY BUT SHE MAKES U PUT IN THE WORK!", + "pos": 0.123, + "neu": 0.816, + "neg": 0.061, + "_id": { + "$oid": "6711d45ecd60fca157e5b36d" + } + }, + { + "text": "All lessons are based around fill-in packets with answer keys. She provides very robust exam review(+ key)packets. Provided extra credit to boost up to 10 points each of our first 2/3 exams(No curve). She takes her time to explain the content(which I loved) but at the end it was a cram(CALC2 is demanding). All around fantastic Professor.", + "pos": 0.194, + "neu": 0.77, + "neg": 0.036, + "_id": { + "$oid": "6711d45ecd60fca157e5b36e" + } + }, + { + "text": "The course is slow in the beginning and very rushed at the end. She is also very rude and it can make it difficult for students who deal with a lot of anxiety.", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d45ecd60fca157e5b36f" + } + }, + { + "text": "Her lectures are pretty fast paced, but it's reasonable bc there's a lot of material to cover. I often had to review the material outside of class to make sure I understood it. The grade is composed of Pearson hw, 3 exams, and a final. She gave a lot of practice questions with her paper homework. Do them if you're struggling.", + "pos": 0.076, + "neu": 0.869, + "neg": 0.055, + "_id": { + "$oid": "6711d45ecd60fca157e5b370" + } + }, + { + "text": "She started at a very slow paste in the beginnings than rush things at the ends. she held around 7 or 8 lectures outside classes which make it hard for students to catch up. She doesn't drop any exams at all even if you did better in the final. She doesn't even consider it. Don't take her if you don't want your GPA to drop drastically.", + "pos": 0.067, + "neu": 0.866, + "neg": 0.067, + "_id": { + "$oid": "6711d45ecd60fca157e5b371" + } + }, + { + "text": "She will call students out. You will have to do tons of homework, weekly quizzes, and 3 or 4 exams. Only available 2 days a week and if you are not present and paying attention, you are in tough shape. She is super-fast and expects students to know everything instead of teaching them.", + "pos": 0.0, + "neu": 0.972, + "neg": 0.028, + "_id": { + "$oid": "6711d45ecd60fca157e5b372" + } + }, + { + "text": "Keep up with the notes and hws she uploads because she gives quizzes every weekly, those same topics on quizzes will be put onto her midterms. If you want the best grade I would do every hw and notes.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b373" + } + }, + { + "text": "The professor was a great teacher this semester. Although we had to rush a lot towards the end, she still was able to teach everything in the course. There were 3 exams and 10 quizzes, but she dropped two quizzes. The exams were mostly multiple choice. The quizzes were rough, but I feel that they helped me a lot in the class. Definitely take her", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b374" + } + }, + { + "text": "I failed this class because I really didn't put in the effort at all this semester.But, she expects her students to know everything already which made it hard to learn. She also is a harsh grader so exam grades were not good for me. She gives a quiz every week which did more harm than good. She rushed over 5 topics and expected us to master it.", + "pos": 0.041, + "neu": 0.782, + "neg": 0.177, + "_id": { + "$oid": "6711d45ecd60fca157e5b375" + } + }, + { + "text": "Do not take this class no matter what! This was my worst semester ever. She was a harsh grader and did not explain lessons. Such a stressful and depressing semester. She does not have any respect for her students and does not care about them. She made me feel discouraged. She is rude and mean and her tests are extremely difficult. BEWARE!", + "pos": 0.0, + "neu": 0.648, + "neg": 0.352, + "_id": { + "$oid": "6711d45ecd60fca157e5b376" + } + }, + { + "text": "She is a great professor. Had her for Math 195 back in the Fall 2018 Semester and had her for Math 201 back in the Spring 2019 Semester. She is amazing. I wouldn't got C's in both of her classes, in two conditions, if I weren't depressed about the Poltergeist Child Star Heather O'Rourke's death and went to Bobby Tarique Tutoring center for help.", + "pos": 0.175, + "neu": 0.774, + "neg": 0.051, + "_id": { + "$oid": "6711d45ecd60fca157e5b377" + } + }, + { + "text": "!Horrible professor! AVOID HER. Had her for math 195 and she didn't teach anything. She consistently said \"You should know this from math 190 moving on\" and rushed through the material. She's rude/doesn't care about her students whatsoever. She makes slick comments when you ask a question/don't understand something. Quizzes dont match class work.", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d45ecd60fca157e5b378" + } + }, + { + "text": "Friends do not take her! She is constantly in a hurry with the material, she thinks that everyone in her class should know everything, if someone does not know something she starts to get upset. She does not explain the\nlectures well. If you want to take this course I recommend going to another teacher.", + "pos": 0.15, + "neu": 0.808, + "neg": 0.042, + "_id": { + "$oid": "6711d45ecd60fca157e5b379" + } + }, + { + "text": "Professor Pichardo is an amazing professor. I feel some people don't like her because they expect her to be a miracle worker. She is here to teach you calculus, not math you should know from high school that you should've known years ago. Her lectures are easy to follow. Study guides given before each exam. You can pass if you put in effort.", + "pos": 0.147, + "neu": 0.824, + "neg": 0.029, + "_id": { + "$oid": "6711d45ecd60fca157e5b37a" + } + }, + { + "text": "I had this class over the summer 21 and had to drop it. She is very condescending and expects you to know EVERYTHING even though she doesn't explain well. Maybe better in person - but I will never know. Will NEVER take her class again!", + "pos": 0.041, + "neu": 0.89, + "neg": 0.069, + "_id": { + "$oid": "6711d45ecd60fca157e5b37b" + } + }, + { + "text": "Seriously, she needs to go easy on the exams. The questions are fair but give us ENOUGH time to finish. It is so unfair for us students.", + "pos": 0.108, + "neu": 0.688, + "neg": 0.204, + "_id": { + "$oid": "6711d45ecd60fca157e5b37c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45ecd60fca157e5b37e" + }, + "professor_name": "Brett Silverstein", + "rating": 4.3, + "department": "Psychology department", + "comments": [ + { + "text": "Brett silberstein, on the whole, is a great man\n4.3 if I had to put a rating to the man", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b37f" + } + }, + { + "text": "Horrible prof. do not take for grad course. is super mean and condescending, never lets you know how you're doing grade-wise in the class and is literally unhinged. participation, finals, paper, and review of homework readings were all 25% but he NEVER uploaded any grades. he told us he's gonna upload grades after the final to not stress us.. like?", + "pos": 0.082, + "neu": 0.844, + "neg": 0.074, + "_id": { + "$oid": "6711d45ecd60fca157e5b380" + } + }, + { + "text": "You're better off not going to lectures. I find lectures boring, and he may be hard to hear for some people. He usually uploads the recordings on blackboard but even then, I didn't find them useful. Always try to get the homework's done and the papers complete on time. If you have a good TA then you can do good in this course.", + "pos": 0.133, + "neu": 0.785, + "neg": 0.082, + "_id": { + "$oid": "6711d45ecd60fca157e5b381" + } + }, + { + "text": "Do not miss the opportunity for extra credit. There are 4 papers and a final. He is a good person but you have to put in the work to get good grade. You gotta read book and attend lectures or listen to the recordings of the lectures he posts. He is pretty average but would be good if he starts to explain a little better.", + "pos": 0.258, + "neu": 0.721, + "neg": 0.021, + "_id": { + "$oid": "6711d45ecd60fca157e5b382" + } + }, + { + "text": "He is actually mad chill and his lectures basically give you the answers based on the notes that you take. He randomly becomes hilarious throughout his lectures by raising his tone to release a sense of passion. Its very easy I think anyone can take this class and pass.", + "pos": 0.156, + "neu": 0.788, + "neg": 0.056, + "_id": { + "$oid": "6711d45ecd60fca157e5b383" + } + }, + { + "text": "For introductory psychology, Silverstein's lectures were fantastic; he has a great sense of humor and he consciously uses as a tool to help you remember the lesson. The workload is large, but not at all unwieldy and he sticks to his syllabus to the letter. His course is structured to give you chances to recover from mistakes like paper rewrites", + "pos": 0.196, + "neu": 0.758, + "neg": 0.046, + "_id": { + "$oid": "6711d45ecd60fca157e5b384" + } + }, + { + "text": "This class was not easy, it was really hard, quiz every week discussion class, 4 papers, final. Idk why this dude got some many good reviews you going to put in work to get a good grade", + "pos": 0.134, + "neu": 0.739, + "neg": 0.127, + "_id": { + "$oid": "6711d45ecd60fca157e5b385" + } + }, + { + "text": "This class is composed of 2 parts the Lecture and the Discussion Class (DS). Attendance for the lecture is not mandatory since it is recorded and posted on BB for the DS Attendance and Participation are required. You will be quizzed in the first 7 min of the discussion class. You are given HW every week but it is easy and can make up points easily.", + "pos": 0.098, + "neu": 0.887, + "neg": 0.016, + "_id": { + "$oid": "6711d45ecd60fca157e5b386" + } + }, + { + "text": "I took his PSY class in the Spring of 2022, there is a lot of work, 4 papers, a quiz every week, easy HW every week, and then a final. \n\nBe prepare to put in the work, because there is a lot of work for this class in some ways its good because if you do bad in quizzes but great in papers you will do well. \n\nlike i said get ready for a LOT of work!", + "pos": 0.208, + "neu": 0.767, + "neg": 0.025, + "_id": { + "$oid": "6711d45ecd60fca157e5b387" + } + }, + { + "text": "giving definitions and examples in class. quiz every week, quiz is not based on lecture and very tricky. Very discouraging. No matter how well you understand the terms you learned in class. He always quizzes something different", + "pos": 0.133, + "neu": 0.713, + "neg": 0.154, + "_id": { + "$oid": "6711d45ecd60fca157e5b388" + } + }, + { + "text": "There are no clear criteria; he didn't explain topics in class, only read from his handbook copies that are very difficult to read since they are copies of articles he highlighted. one paper, one exam. Useless feedback at some point he is rude and incoherent, he changed his mind all the time refereeing to instructions or material.", + "pos": 0.0, + "neu": 0.831, + "neg": 0.169, + "_id": { + "$oid": "6711d45ecd60fca157e5b389" + } + }, + { + "text": "He is best for his lectures and extra credit", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b38a" + } + }, + { + "text": "He's amazing. His lectures are all you need to listen to for you to pass the class and understand the material. He explains concepts very well and his assignments are super easy. The papers are also easy if you do it right by following their prompt. The final exam is exactly like all the quizzes so make sure you study the quizzes well!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b38b" + } + }, + { + "text": "This intro to psych was fascinatingit was easy to pay attention and commit to memory. Professor is extremely kind, animated, and passionate about every topic, which helped me care about the subject. He experienced serious health problems during the course and he continued as if nothing was amiss, which is commendable. TA was top-notch, as well.", + "pos": 0.25, + "neu": 0.672, + "neg": 0.077, + "_id": { + "$oid": "6711d45ecd60fca157e5b38c" + } + }, + { + "text": "PSY 102 is a very straightforward class with professor Silverstein. Although he can go on tangents sometimes throughout the lectures, the professor is very clear about the assignments and how everything will be graded. He gives plenty of opportunities for you to get better scores on papers, and is very fair. I would definitely take him again.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b38d" + } + }, + { + "text": "He made everyone particpate in class. We read a lot of articles for HW. He gave one paper and one test (the final exam). I didn't like his teaching method, we sat there on zoom and took notes while he talked. I'm a visual learner I like powerpoints. His discussions each class were not bad. I feel like I learned a lot", + "pos": 0.116, + "neu": 0.853, + "neg": 0.031, + "_id": { + "$oid": "6711d45ecd60fca157e5b38e" + } + }, + { + "text": "Silverstein honestly was a great professor for psychology 102. Kept you interested throughout and his T.A are all really amazing. The grading is very clear and not tough at all. Even though this class was not required for my major, he made me really enjoy the lectures. I definitely recommend him and I would take him again.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b38f" + } + }, + { + "text": "Dr. Silverstein is an amazing Professor. You have 4 papers, HW every week, SONA credit, and 1 test. His papers are LIGHTWORK and his lectures are enetertaing. Take Talia Schulder as your TA and you're good. The HW also is short and easy. Overall, the class is easy. Just do the work and go to recitation. Lecture isnt mandatory.", + "pos": 0.218, + "neu": 0.765, + "neg": 0.018, + "_id": { + "$oid": "6711d45ecd60fca157e5b390" + } + }, + { + "text": "Amazing at what he does. He's so good at lecturing that you think he's just rambling in a conversation with you but then you realize hes talking about the material. Easy class, lots of paper though (definitely doable, I did them a dayor2 before they were due and did well lol). As long as your TA is good, you'll be fine. Study for weekly quizzes.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b391" + } + }, + { + "text": "He knows what he is explaining. He say jokes and makes the class fun. Be ready to write a lot and every week hw and quiz. Total 4 papers. 1 hw and 1 quiz every week. He is ready to help always. Too much work but you will get a lot of info from the class.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d45ecd60fca157e5b392" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d45fcd60fca157e5b394" + }, + "professor_name": "Asha Samad-Matias", + "rating": 2.4, + "department": "Anthropology department", + "comments": [ + { + "text": "she passed away. end of horror story", + "pos": 0.0, + "neu": 0.619, + "neg": 0.381, + "_id": { + "$oid": "6711d45fcd60fca157e5b395" + } + }, + { + "text": "She is one of the worst teacher. \nVery bad professor. She is old to teach, should retire. She forgets a lot.", + "pos": 0.0, + "neu": 0.707, + "neg": 0.293, + "_id": { + "$oid": "6711d45fcd60fca157e5b396" + } + }, + { + "text": "The class looked as if it was structed well but she merged her worksheets with other classes so some of the questions had no relation with the assignment, you were left asking more questions than given. She is not going to respond to your e-mails, goes off-topic frequently. Although the class was tedious, I did somehow end up learning new things.", + "pos": 0.024, + "neu": 0.931, + "neg": 0.044, + "_id": { + "$oid": "6711d45fcd60fca157e5b397" + } + }, + { + "text": "Her class is not what it sounds like. She will go off topic and talk about other things and current news rather than teaching what the name of the class implies. We worked on one paper through out the entire semester PLUS a final exam which was too much. Take the reviews seriously. Although she can be nice, she does not have the skill of teaching", + "pos": 0.076, + "neu": 0.9, + "neg": 0.024, + "_id": { + "$oid": "6711d45fcd60fca157e5b398" + } + }, + { + "text": "She focused more on current events & discussions about the news rather than actually teaching. We worked on one paper the entire semester & her directions were rather confusing, but she wouldn't give feedback or be accessible outside of class. There was never anything presented to us & she'd sometimes be rude when it came to answering questions", + "pos": 0.029, + "neu": 0.884, + "neg": 0.088, + "_id": { + "$oid": "6711d45fcd60fca157e5b399" + } + }, + { + "text": "DON'T TAKE HER! THIS IS YOUR SIGN! SHE GIVES TOO MANY PAPERS AND EXPECTS YOU TO FINISH THEM WITHIN A FEW DAYS", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d45fcd60fca157e5b39a" + } + }, + { + "text": "RED FLAG RED FLAG TAKING THIS CLASS GIVES ME NIGHTMARES AND STRESS FOR ABSOLUTE NOOO REASON BC THIS PROF AINT EVEN GRADE NADA SHE GIVES SO MUCH UNCLEAN INSTRUCTIONS AND DOES NOT CARE AND JUST DUMPS RANDOM WORK ALL OVER THE PLACE. DONT BOTHER DOING HER WORK SHE IS NOT EVEN GOING TO GRADE THEM. this class is so useless so save your money.", + "pos": 0.089, + "neu": 0.736, + "neg": 0.175, + "_id": { + "$oid": "6711d45fcd60fca157e5b39b" + } + }, + { + "text": "In an online settings she isnt very good at keeping track of deadlines, lecturing or grading on time. That being said it is a very easy class to pass. As long as you hand in all the assignments and complete it how she wants it done then youll pass. But Im not really sure if she actually grades the work or if she grades by whether you did it.", + "pos": 0.057, + "neu": 0.881, + "neg": 0.062, + "_id": { + "$oid": "6711d45fcd60fca157e5b39c" + } + }, + { + "text": "AVOID!!!!!!THIS CLASS COULD HAVE BEEN AN EASY BUT THE PROFESSOR MAKES IT 10 TIMES HARDER. HER INSTRUCTIONS ARE UNCLEAR IS VERY FRUSTRATING, SHE POSTS A BUNCH OF ASSIGNMENT ON BB AND NEVER GRADES THEM. I DIDNT LEARN ANYTHING FROM THIS CLASS ALL SHE DOES IS TALK CURRENT EVENTS. ALSO DONT BUY THE BOOKS, SHE REQUIRES 3 OF THEM, BUT WE NEVER USED THEM.", + "pos": 0.031, + "neu": 0.816, + "neg": 0.153, + "_id": { + "$oid": "6711d45fcd60fca157e5b39d" + } + }, + { + "text": "Professor Samad's classes are easy, but also a nightmare. I suggest not buying all the books in her syllabi, as you won't be even using any of the material. Most of her classes start with questions on what is going on in the news and then it becomes tangential. My course focused on Peoples of the Middle East, but we barely learned anything.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d45fcd60fca157e5b39e" + } + }, + { + "text": "AVOID THIS WOMAN. She assigns SO MUCH WORK just for it to be on Blackboard ungraded when there's a week left in the semester. She's always changing requirements and due dates on assignments. In class, you never understand exactly what you're supposed to be doing, and we spent a month talking about random current events instead of any lesson plan.", + "pos": 0.0, + "neu": 0.953, + "neg": 0.047, + "_id": { + "$oid": "6711d45fcd60fca157e5b39f" + } + }, + { + "text": "This class was an absolute waste of everyone's time. Samad is unable to facilitate a class and relies on the class to teach. The first month of class was spent introducing ourselves over and over. This was the worst professor I have taken at CCNY in my four years here. BEWARE!!!!!!", + "pos": 0.0, + "neu": 0.859, + "neg": 0.141, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a0" + } + }, + { + "text": "Sweet older lady, but very unprofessional regarding organization and communication. My class received our syllabus a month after class started so what were we doing the first 4 weeks? Absolutely nothing. She tends to talk about everything else besides the class and before we know it, time has run out... TOO MANY ASSIGNMENTS, NOT ENOUGH FEEDBACK", + "pos": 0.033, + "neu": 0.887, + "neg": 0.08, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a1" + } + }, + { + "text": "Hands down one of the worst professor's I've ever had. Clearly has no clue what she's doing, absolutely no hard deadlines, no lectures. I've learned nothing all semester. What a waste of time and money. DO NOT TAKE HER CLASSES.", + "pos": 0.112, + "neu": 0.662, + "neg": 0.227, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a2" + } + }, + { + "text": "Completed nearly all assignments except 4 chapter summaries which were 20% combined and she gave me a C. Would you like to know why I'm not surprised? Well its because from Day 1 she and her syllabus were a mess and I was told by her former students that you must keep copies of your work because SHE LOSES IT and claims you never submitted it.", + "pos": 0.034, + "neu": 0.841, + "neg": 0.124, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a3" + } + }, + { + "text": "Awful! I had to drop the class within the first week. Want to know why? She waited until the last minute to give out the guidelines for all the required assignments (interviews, summaries and papers). It's too much work and you need ample time to get it done. It doesn't help when the professor gives out instructions at the 11th hour!", + "pos": 0.02, + "neu": 0.86, + "neg": 0.12, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a4" + } + }, + { + "text": "Professor really takes time to make sure you understand the lectures in class. Class is very interactive and knowlegeable. Just follow her criteria and youre good!", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a5" + } + }, + { + "text": "Great professor who sincerely cares about what she teaches!", + "pos": 0.636, + "neu": 0.364, + "neg": 0.0, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a6" + } + }, + { + "text": "SHOW UP PLEASE, talk current events, then she'll try to relate it to the class. 4 book summaries 10 article summaries 4 site visit summaries 1 research paper 1 essay and final exam. final is EASY! papers are easy, but take some time. SHOW UP! didn't hand in 2 of the book summaries and got an A. my papers were also poor quality", + "pos": 0.087, + "neu": 0.8, + "neg": 0.113, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a7" + } + }, + { + "text": "Professor Matias is a very intelligent woman, but all you do in her class is talk about current events. Desn't give you time to work towards the research paper and other assignments, which there are many of. No hard deadlines so work will pile up, must manage your time well! Got away with not doing a 15 minute presentation and still got an A.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d45fcd60fca157e5b3a8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d460cd60fca157e5b3aa" + }, + "professor_name": "William Skeith", + "rating": 3.7, + "department": "Computer Science department", + "comments": [ + { + "text": "Learn C++ basics before taking his class, it'll help you enormously. If you don't, you might have a hard time keeping up with him. His projects are actually intriguing and make you think outside the box. Midterm and final are curved based on how everyone else does. He's patient and will always answer any questions you have.", + "pos": 0.046, + "neu": 0.931, + "neg": 0.024, + "_id": { + "$oid": "6711d460cd60fca157e5b3ab" + } + }, + { + "text": "Wes is easily one of the best CS Professors at CCNY. He is a great person overall and will always answer any concerns you have. graded on projects, midterm, final, and recitation. It's a class where he expects you to know some C++ before you take him. But if you don't, he provides resources to learn. He curves based on class performance. Tale him!!", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3ac" + } + }, + { + "text": "Good lectures and notes, very available after class, super nice and willing to help, curves pretty well\nSome of the projects and final was kind of difficult, doesn't really review over the material well, not much of an extra credit opportunity", + "pos": 0.426, + "neu": 0.526, + "neg": 0.047, + "_id": { + "$oid": "6711d460cd60fca157e5b3ad" + } + }, + { + "text": "- He is very nice and open to any questions no matter how little you think it is. \n- His notes in class are posted online and they are always organized beautifully and easy to get through the terminal. great explainations\n- Definitely do his TODO's they help a lot\n- His class may be intimidating at first because he uses Linux but you'll adjust", + "pos": 0.174, + "neu": 0.785, + "neg": 0.041, + "_id": { + "$oid": "6711d460cd60fca157e5b3ae" + } + }, + { + "text": "He is really nice and helpful and knows a lot but his lessons can be complicated!", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3af" + } + }, + { + "text": "Skeith is one of the best professors I've ever had. He is very passionate about the subject he teaches and wants you to understand the subject. There are times where people won't be paying attention, but he will still be doing his best to teach. I hope everyone takes his class at least once because it was very eye opening.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3b0" + } + }, + { + "text": "Study the basics of C++ before his class. Do projects ahead of time. Do his TO-DO's, they WILL show up on his (1) midterm and final. He does curve, but don't rely on it. I \"failed\" both and still passed. Work on his projects ahead of time. Come to his lectures, they're useful. Talk to him during office hours and make the most of it. Good luck :)", + "pos": 0.193, + "neu": 0.754, + "neg": 0.053, + "_id": { + "$oid": "6711d460cd60fca157e5b3b1" + } + }, + { + "text": "Projects get progressively difficult and more time consuming, so do not leave it for last minute.\n\nThe C++ he teaches is intermediate level, so ask questions when concepts don't make sense.\n\nIf you do all exercises, you'll be fine for exams, otherwise it is difficult.", + "pos": 0.065, + "neu": 0.833, + "neg": 0.102, + "_id": { + "$oid": "6711d460cd60fca157e5b3b2" + } + }, + { + "text": "If you want the best grade in this class do the TODO exercises he puts after every lesson. If you have no programming experience I recommend you learn c++ before taking WES, he teaches at a very intermediate level and expects you to know basic c++ syntax.", + "pos": 0.15, + "neu": 0.808, + "neg": 0.041, + "_id": { + "$oid": "6711d460cd60fca157e5b3b3" + } + }, + { + "text": "Professor Skeith is a great lecturer and really cares for his students. The material is hard however and projects are challenging, a very good grader as long as you put in some effort.", + "pos": 0.293, + "neu": 0.673, + "neg": 0.034, + "_id": { + "$oid": "6711d460cd60fca157e5b3b4" + } + }, + { + "text": "PLEASE put the work in. Since the first few lectures were easy, I thought I could slack off, but the difficulty skyrocketed. I never went to OH, asked questions, or did many of the TODOs (reason why I barely passed), but I think he'd be a great prof if I did. He's not very concise with his words, so you need to decipher what he's saying sometimes.", + "pos": 0.127, + "neu": 0.832, + "neg": 0.041, + "_id": { + "$oid": "6711d460cd60fca157e5b3b5" + } + }, + { + "text": "Really hard class if you don't have prior coding experience. He teaches well but it is fast paced. He and the TA don't release project grades so it is hard to know if your doing it correctly. He curves a lot.", + "pos": 0.036, + "neu": 0.886, + "neg": 0.078, + "_id": { + "$oid": "6711d460cd60fca157e5b3b6" + } + }, + { + "text": "Definitely learn C++ before taking him or you will have a really hard time doing well in his class. He expects you to have the basic knowledge of coding by the first day and his homework is quite advanced for a beginner course. Watch tutorials on YouTube and pray for the best.", + "pos": 0.222, + "neu": 0.751, + "neg": 0.028, + "_id": { + "$oid": "6711d460cd60fca157e5b3b7" + } + }, + { + "text": "Learn C++ before taking this clas. He does curve decently but, be sure to figure out everything. I barely went to class since I found learning from random youtube videos was easier for me. Good luck.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3b8" + } + }, + { + "text": "You have to put in some work. I took this class in fall of 2020 and he was amazing. You just have to realize that intro to comp sci isn't going to be some basic syntax. He goes into some simpler data structures (arrays, linked lists, etc) and the class is in C++. You'll have to deal with pointers and all that stuff. It's not going to be easy.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3b9" + } + }, + { + "text": "I would recommend you to study C++ before taking this course.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3ba" + } + }, + { + "text": "He had high expectations for us and just assumed that we would know how to code all the homeworks by ourselves. I went through the five stages of grief trying to even grasp the concept of the homeworks before starting it. He seems like a nice person but I dont recommend him as a professor at all.", + "pos": 0.059, + "neu": 0.863, + "neg": 0.078, + "_id": { + "$oid": "6711d460cd60fca157e5b3bb" + } + }, + { + "text": "Comp sci is a difficult subject but it's even harder if the professor cannot teach you the basic material. Get ready to teach everything yourself by watching YouTube videos.", + "pos": 0.102, + "neu": 0.844, + "neg": 0.055, + "_id": { + "$oid": "6711d460cd60fca157e5b3bc" + } + }, + { + "text": "He had very high expectations of his students even though this course is supposed to teach us how to start coding. He seems like a nice person but he cannot teach anything properly. The only reason he has such high ratings is because he curves his exams a lot. But just giving us a good grade doesn't help us learn how to code.", + "pos": 0.148, + "neu": 0.811, + "neg": 0.04, + "_id": { + "$oid": "6711d460cd60fca157e5b3bd" + } + }, + { + "text": "Hes a nice guy but made the class so difficult. His lectures are on Twitch. The projects he gives start off easy but then get so difficult towards the end. Hes very strict with cheating as well.", + "pos": 0.157, + "neu": 0.58, + "neg": 0.262, + "_id": { + "$oid": "6711d460cd60fca157e5b3be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d460cd60fca157e5b3c0" + }, + "professor_name": "Jay Jorgenson", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Jorgenson is extremely caring about how youre doing in the class despite having so many students, he makes sure you know it won't be easy but he motivates you to have the WANT to learn. He does surveys for opinions, he doesn't assign much hw. the textbook in ccny is only $5. He is very funny and sweet. Would recommend his course for sure!", + "pos": 0.269, + "neu": 0.71, + "neg": 0.021, + "_id": { + "$oid": "6711d460cd60fca157e5b3c1" + } + }, + { + "text": "Jay is a good professor. He grades three midterms and a final only. He makes math very easy. I took calc1 with him last summer. It will be easier if you take it fall or spring semester, because if you plan to take it summer or winter, that might be complicated to understand for you. It needs a lot of work if you take that course. Overall ok.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3c2" + } + }, + { + "text": "He gives you a chance and really tries to help you. The only thing I don't like about him is that I worked really hard to get an A+ my grade was 100 and he gave me an A I was really pissed about that because I could've gotten an A but worked twice as hard to get the +. It wouldn't have cost him anything to give me the + I deserved.", + "pos": 0.045, + "neu": 0.862, + "neg": 0.093, + "_id": { + "$oid": "6711d460cd60fca157e5b3c3" + } + }, + { + "text": "I took Jay during the June 2024 Summer Semester in a 4 week online session. I must say that Jay really did his best to make his class the easiest as he can. This class was tough for me! It was a 3-4 month class that was condensed into 1 month. It was a lot of work with lots of hw, quizzes, and exams that had to be due in a short period of time.", + "pos": 0.093, + "neu": 0.888, + "neg": 0.019, + "_id": { + "$oid": "6711d460cd60fca157e5b3c4" + } + }, + { + "text": "Jay is by far one of my favorite professors at CCNY! He will speak facts and truth right in front of your face, no BS! He clearly goes over the material very well and is very lenient when it comes to exams. He is also very flexible when it comes to exam review sessions. One of the best math professors, only problem is he sucks at replying to emails", + "pos": 0.229, + "neu": 0.685, + "neg": 0.086, + "_id": { + "$oid": "6711d460cd60fca157e5b3c5" + } + }, + { + "text": "Honestly, Jay is hands down one of my favorite math professors here at CCNY. He makes math look so easy, even though math is hard enough, and he always has some interesting stories to tell the class. Very fair professor, would definitely take again", + "pos": 0.316, + "neu": 0.659, + "neg": 0.025, + "_id": { + "$oid": "6711d460cd60fca157e5b3c6" + } + }, + { + "text": "The absolute worse professor that one could have. He teaches very fast and is inconsiderate to the fact that he is teaching students who are learning the topics for the first time. He doesn't reply to emails but he states that \"he reads them\". You will only receive an answer in person when you ask him. I REPEAT. HE DOES NOT REPLY AT ALL.", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d460cd60fca157e5b3c7" + } + }, + { + "text": "This class is meant for those students who have time, a lot of assignments and everyday you can't go without an assignment. I suggest do extra credit if you have the chance, the finals caught me off guard but nonetheless, very manageable class if you have time.", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3c8" + } + }, + { + "text": "This class require alot of self teaching and tutoring on your own. The professor does not give proper lectures for you to understand or study with and pretty much goes with it. Definitely rely on your textbook heavily, as it the best way to learn. The only way to pass his exams and class is by self teaching as you not gonna learn anything.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3c9" + } + }, + { + "text": "He is a pretty good professor. He is pretty fast paced so you have to be super attentive. His handwriting is pretty messy but you'll get used to it. Jay prepares you pretty good for the dep final, his exam 1 and 2 is harder than the dep final. He also assigns a lot of HW (like 3-4 chapters everyday).", + "pos": 0.295, + "neu": 0.681, + "neg": 0.023, + "_id": { + "$oid": "6711d460cd60fca157e5b3ca" + } + }, + { + "text": "Jay was an amazing professor, he would be a bit tough with grading but his overall grading scale was much lower. an 80 is an A. 65 is a B 55 is a C. he is very knowledgeable and caring take him if available.", + "pos": 0.139, + "neu": 0.782, + "neg": 0.079, + "_id": { + "$oid": "6711d460cd60fca157e5b3cb" + } + }, + { + "text": "Took this class in the summer session, 4 credits mean heavier workload. You should be prepared to complete all coursework ASAP, there are a lot of assignments/certifications required no way around it you have to do it. \n\nThe class was a good experience, I know what I slacked on but it's on me. I would've enjoyed class more over a regular 12-week", + "pos": 0.141, + "neu": 0.836, + "neg": 0.023, + "_id": { + "$oid": "6711d460cd60fca157e5b3cc" + } + }, + { + "text": "It was alot work for 3 weeks. He said that it was a 15 week class in 3 weeks and we had to do the work with on our own with Hawkes and recordings. He was right. Stop complaining if you were expecting something different. Glad it is over.", + "pos": 0.057, + "neu": 0.868, + "neg": 0.075, + "_id": { + "$oid": "6711d460cd60fca157e5b3cd" + } + }, + { + "text": "Im so disappointed, I worked SOOOOO hard. I had a 102 in the course until I messed up on the final and got a 85 and ended with a B. I feel like all my hard work went to waste. No curve and he didnt give any partial credit like he said he would.", + "pos": 0.115, + "neu": 0.68, + "neg": 0.205, + "_id": { + "$oid": "6711d460cd60fca157e5b3ce" + } + }, + { + "text": "Were using hawkes to learn online. Hawkes is bad, no educational lectures, WE DONT LEARN. Over complicated and a waste of time. Main issue is with hawkes since its a terrible website to learn from, textbook is poorly written, and the certify part is nothing like the textbook. Lectures where we actually went thru hawkes might have helped but no.", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d460cd60fca157e5b3cf" + } + }, + { + "text": "If CCNY was giving awards for bad professor, Professor Jorgenson will sure be nominated. He has no clue what to teach, how to teach clearly, put problems in the exam that he never taught his students. Spends a lot of time talking about pens which he could have used to actually teach some staff. If you really wanna learn stats stay away from him!", + "pos": 0.141, + "neu": 0.749, + "neg": 0.11, + "_id": { + "$oid": "6711d460cd60fca157e5b3d0" + } + }, + { + "text": "He clearly tells you that he is giving you a 12 week course in 3 weeks and that he is not going to dilute it or change it. YOUR THE ONE WHO SIGNED UP FOR HIS CLASS, WHAT DID YOU EXPECT AN EASY A. STOP BEING LAZY. I finished his class in 2 1/2 weeks, just sit down and do the work. If you have a full time job or outside problems don't take the class", + "pos": 0.1, + "neu": 0.799, + "neg": 0.101, + "_id": { + "$oid": "6711d460cd60fca157e5b3d1" + } + }, + { + "text": "He is one of the worst professors I've ever had and taking his class was awful. The amount of hw he assigned through Hawkes was insane which I paid $84 for a 3 week class. Despite getting very high scores on all tests I couldn't keep up with the hw and almost failed this class. 5-10 certifications EVERY SINGLE DAY. He didn't curve the hw grade.", + "pos": 0.0, + "neu": 0.829, + "neg": 0.171, + "_id": { + "$oid": "6711d460cd60fca157e5b3d2" + } + }, + { + "text": "Professor jorgensen cares. He understood that the year 2020 was difficult . I ended up studying on my own most of the time (plus tutoring). Everything you need to know will be on hawkes ( which you need to pay for). He is lenient about due dates also. Be sure to do the difficult practices and finish everything on hawkes if you want to pass his clas", + "pos": 0.116, + "neu": 0.799, + "neg": 0.085, + "_id": { + "$oid": "6711d460cd60fca157e5b3d3" + } + }, + { + "text": "He is very understandable and cares about his students. You will pass the class as long as you are studying for the exams and doing all the certifications.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d460cd60fca157e5b3d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d461cd60fca157e5b3d6" + }, + "professor_name": "Yvette Francis", + "rating": 3.1, + "department": "Design department", + "comments": [ + { + "text": "100% the most difficult design class I've taken. But if you want to succeed and gain insight into the design industry, TAKE THIS CLASS. When it comes to design CUNY does not have the rigor of more elite art institutions, this is one of few classes that tests your skills. A good art class should roughen one up a bit, and this one certainly does.", + "pos": 0.221, + "neu": 0.755, + "neg": 0.024, + "_id": { + "$oid": "6711d461cd60fca157e5b3d7" + } + }, + { + "text": "Be prepared to do work, this is NOT an easy grade, your going to get actually pushed to make something professional, there is no handholding, you will get a lot of feedback and comments, you pace your own self on projects, there's no real deadlines except the final portfolio, so you have to be on top of everything", + "pos": 0.058, + "neu": 0.835, + "neg": 0.107, + "_id": { + "$oid": "6711d461cd60fca157e5b3d8" + } + }, + { + "text": "harsh on homework she excepted the every week journal, every week has test. she prefer no mistake work you did a mistake she could failed you. she don't have actual printed assignment unclearly with the description on the assignments. she claim will failed student that failed the final test no matter she like work through out year.", + "pos": 0.065, + "neu": 0.702, + "neg": 0.233, + "_id": { + "$oid": "6711d461cd60fca157e5b3d9" + } + }, + { + "text": "Where do I begin. Let's start with the projects, if you are ready to be doing countless revisions just for the final piece to be considered sub-par by the professor, by all means, take her as a professor. Or if you are ready to contemplate dropping her class every minute you are doing her work. Or, lets see. If you want to make her your priority.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3da" + } + }, + { + "text": "I emailed her on two separate occasions and she never had any problems with my work, then during critique, she complained about everything. Claimed she was \"taking pity\" on us and gave us an extension after basically abandoning us during a project. Students can only email her on Thursday before 5 pm, but she will either not respond or respond late.", + "pos": 0.026, + "neu": 0.892, + "neg": 0.082, + "_id": { + "$oid": "6711d461cd60fca157e5b3db" + } + }, + { + "text": "A lack of professionalism is an understatement!! She threaten students with low grades, if your work does not meet \"Her standards\" she makes you redo it. She rolls her eyes while someone is speaking to her which is totally unprofessional. No one should be treated this way!", + "pos": 0.0, + "neu": 0.751, + "neg": 0.249, + "_id": { + "$oid": "6711d461cd60fca157e5b3dc" + } + }, + { + "text": "she only replies to emails on Thursdays but when you email her she DOES NOT REPLY. when you get to class she belittles you totally unprofessional", + "pos": 0.0, + "neu": 0.836, + "neg": 0.164, + "_id": { + "$oid": "6711d461cd60fca157e5b3dd" + } + }, + { + "text": "This class will be a demo of how the real design field is. Prof Francis will be straight up with you about a bad project and a good one when she sees it. This class will push you to your limits and it's not meant for everyone, only for the ones who are serious. You MUST put in your TIME and EFFORT into this class, if you do so you'll be fine.", + "pos": 0.087, + "neu": 0.852, + "neg": 0.061, + "_id": { + "$oid": "6711d461cd60fca157e5b3de" + } + }, + { + "text": "Prof.Francis is one of those professors that everyone in the design field should take. The level of knowledge you gain from the class is outstanding. Her feedback is straightforward and clear. As long as you stay focused , take notes and care about your future in the field, this class will benefit you", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3df" + } + }, + { + "text": "For anyone rating this professor less than a 4 is not prepared for the brazen world of design.\n\nIf you truly care about taking a step forward in your career then you NEED to take this class. Her critiques are harsh and force you to make changes in your process, something that you won't find in other classrooms or frankly for under $20,000/semester.", + "pos": 0.088, + "neu": 0.847, + "neg": 0.066, + "_id": { + "$oid": "6711d461cd60fca157e5b3e0" + } + }, + { + "text": "I have no regret in taking her class. She is willing to help you always if you let her and wants you to do well in her class but also in real life that's why is is preparing you. Prof. Francis has good habits that she wants you to practice as well. She is amazing you will learn a lot from her about typography and the profession of graphic design.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3e1" + } + }, + { + "text": "You are going to do well in her class if you listen to her, take notes, and pay attention to details. Be always prepared for class tha's a main key element and be organized. She is the real deal her criticism is straightforward and helpful. She will push you to do better and to go further in the design field.", + "pos": 0.143, + "neu": 0.794, + "neg": 0.063, + "_id": { + "$oid": "6711d461cd60fca157e5b3e2" + } + }, + { + "text": "Extremely rude and hateful. Insulted students and followed with \"Right? Right guys?\" to get everyone to join in and hate. Put trick questions on the quizzes that made zero sense. Threatened to stop answering her emails because \"not enough of us emailed her\" one week. Only answers emails on Thursdays...Class was on Mondays. Avoid her at all costs!", + "pos": 0.03, + "neu": 0.66, + "neg": 0.31, + "_id": { + "$oid": "6711d461cd60fca157e5b3e3" + } + }, + { + "text": "DON'T take this class. She was a very difficult teacher to deal with. She didn't care that we had other classes to focus on. I had to just focus on her class like that was the only class that I had. She made us work on 1 project 10x different times and I had to go print out so much different copies because it didn't fit her standards.", + "pos": 0.034, + "neu": 0.865, + "neg": 0.102, + "_id": { + "$oid": "6711d461cd60fca157e5b3e4" + } + }, + { + "text": "Any 5 star review she has is from a student she gaslighted into believing she helped. She's constantly saying she's \"preparing us for the real world\" as an excuse for how horrible of a person she is, so students leave thinking she was just giving tough love. From experience, no one really treats you like that in the \"real world\".", + "pos": 0.149, + "neu": 0.729, + "neg": 0.122, + "_id": { + "$oid": "6711d461cd60fca157e5b3e5" + } + }, + { + "text": "I am rating Professor Francis 4 years after graduating from City College. Im writing this most importantly because through my experience on the field I realized how much i valued taking her classes. If you want to succeed in the field I highly recommend taking her classes. It wont be easy but it helped me prepare perfectly for this industry. Trust.", + "pos": 0.259, + "neu": 0.718, + "neg": 0.023, + "_id": { + "$oid": "6711d461cd60fca157e5b3e6" + } + }, + { + "text": "It's tough to know what she wanted from us because she would give so much negative criticism and very little positive feedback. She believes in teaching through baptism by fire, but I've been a straight A student in all my art and design classes until I got a C+ in this class. She needs to be more flexible in her methods for different students.", + "pos": 0.103, + "neu": 0.792, + "neg": 0.105, + "_id": { + "$oid": "6711d461cd60fca157e5b3e7" + } + }, + { + "text": "She will insult your work & try to get your classmates to turn against you.She doesn't give actual feedback & answers emails only one day a week.Ran over class time (over 45 min) multiple times throughout the semester because she'd spend class going on tangents instead of teaching. Did I learn things in her class? Yes. Was it worth the trauma? No.", + "pos": 0.067, + "neu": 0.84, + "neg": 0.094, + "_id": { + "$oid": "6711d461cd60fca157e5b3e8" + } + }, + { + "text": "The professor graded harshly with barely any feedback.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3e9" + } + }, + { + "text": "Tons of hw, just better off finding a better professor, not accessible after class- takes forever to answer emails,tons of readings, overall not a good experience and would not suggest her", + "pos": 0.16, + "neu": 0.773, + "neg": 0.066, + "_id": { + "$oid": "6711d461cd60fca157e5b3ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d461cd60fca157e5b3ec" + }, + "professor_name": "Yochanan Shachmurove", + "rating": 2.6, + "department": "Economics department", + "comments": [ + { + "text": "He's alright if you're okay with self-teaching. He usually reads the slides during lectures and doesn't really expand. There are 6 exams (3 graded, 3 practice, 20 mc each), they were pretty simple. He reuses questions a lot though so the questions overlap. He's easy if you look past his personality. He's funny in a \"he did not just say that,\" way.", + "pos": 0.181, + "neu": 0.788, + "neg": 0.031, + "_id": { + "$oid": "6711d461cd60fca157e5b3ed" + } + }, + { + "text": "Rude and misogynist. Try to avoid him at all!", + "pos": 0.0, + "neu": 0.56, + "neg": 0.44, + "_id": { + "$oid": "6711d461cd60fca157e5b3ee" + } + }, + { + "text": "He just uploads his NYU courses and that's it, then prepare yourself for the exam, which is also very disorganized.", + "pos": 0.0, + "neu": 0.884, + "neg": 0.116, + "_id": { + "$oid": "6711d461cd60fca157e5b3ef" + } + }, + { + "text": "He doesn't teach a word & expects students to know everything & teach the class. He makes students present their hw for the entire two-hour lecture. This hw requires students to create 50-60 PP slides that will not count towards the final grade. Your semester's grade depends on 20 multiple choice questions (10 MCQ each exam with 20 min time limit).", + "pos": 0.034, + "neu": 0.966, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3f0" + } + }, + { + "text": "He's a genuinely caring Professor that wants you to learn. We read a lot of Econ papers throughout the course, which is a great opportunity to learn about how research is done on a graduate level. The lectures at times are monotone since he reads off the slides, but if you learn the material better on your own like I do, it's not an issue.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3f1" + } + }, + { + "text": "Our class was smaller, so participation and being prepared mattered. His class is flexible and not only care about the test book. The course was a Master's level course, it includes a lot of reading material . He is very knowledgeable so if you keep asking you should know a lot!", + "pos": 0.075, + "neu": 0.877, + "neg": 0.048, + "_id": { + "$oid": "6711d461cd60fca157e5b3f2" + } + }, + { + "text": "Our class was smaller, so participation and being prepared mattered. His class was challenging, but that is why I had the motivation to work hard. The course was also at a Master's level course, so reading and work are expected. He is very knowledgeable in Internation Economics and so it's important to ask questions to get the most of the class.", + "pos": 0.128, + "neu": 0.848, + "neg": 0.024, + "_id": { + "$oid": "6711d461cd60fca157e5b3f3" + } + }, + { + "text": "He's an old robot. Doesn't care about the material since he reads verbatim from Cengage slides. He threatens to fail you if you don't complete two 50-slide presentations which don't count towards your grade?? Make it make sense. He also forces the class to MAIL him a USB with your tests and slides or you guessed it, you fail. Don't even bother.", + "pos": 0.028, + "neu": 0.796, + "neg": 0.176, + "_id": { + "$oid": "6711d461cd60fca157e5b3f4" + } + }, + { + "text": "Professor Shackmurovw is a very knowledgeable professor like many but he seems to have a severe interest deficit in his class. He reads all of his slides and doesnt try to make the Class interesting. Economics is a very useful topic so it is good to pay attention but you can just read the textbook and youll be fine. Gives two PowerPoint projects.", + "pos": 0.244, + "neu": 0.653, + "neg": 0.103, + "_id": { + "$oid": "6711d461cd60fca157e5b3f5" + } + }, + { + "text": "All he did was read off the textbook's slides. Two PowerPoint projects that don't count toward the grade but you have to do them. You are not going to learn in his class if you have other more major classes that you need. You should take him if you want an easy class for your other harder classes. He wants cameras on ALL THE TIME.", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3f6" + } + }, + { + "text": "I took Prof. Shachmurove's intermediate macroeconomics class as an undergrad on Spring 2015 and got an A. His class was challenging but that is why I had the motivation to study hard because I was determined to ace the class. Now I am a graduate student pursuing MA on economics and I would love to take his class again if that's possible.", + "pos": 0.185, + "neu": 0.793, + "neg": 0.022, + "_id": { + "$oid": "6711d461cd60fca157e5b3f7" + } + }, + { + "text": "JUST WORK FOR YOUR GRADE AND HE WILL SEE THAT AND GRADE ACCORDINGLY. HE IS NOT A BAD PROFESSOR AT ALL,.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3f8" + } + }, + { + "text": "He's a good professor. Very knowledgeable the course. You will find yourself doing homework that you will find silly but its a easy going class. He makes it clear what he expects from the students.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3f9" + } + }, + { + "text": "Read the textbook thoroughly and you will do well on his exams. Also don't wait last minute to start your projects do small amounts over the coarse of the semester.", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3fa" + } + }, + { + "text": "No one fails in his class, it is curve based. He gives 3 exams, 2 40 slide powerpoint projects and in between assignments based on the textbook. It is a lot of work but he assigns it to prepare you for work in a real world setting where you have to do research and presentations. The exams mainly determines your grade but so does participation.", + "pos": 0.025, + "neu": 0.951, + "neg": 0.024, + "_id": { + "$oid": "6711d461cd60fca157e5b3fb" + } + }, + { + "text": "I had Prof. Shachmurove for 2 courses this semester and I learned a lot from research on my own. He prepares you to research the way an economist should, so I understand why he assigns long projects. Do not be fooled by the other bad reviews of him! He is extremely caring, he will only treat you the way you deserve to be treated if you're lazy!", + "pos": 0.116, + "neu": 0.806, + "neg": 0.078, + "_id": { + "$oid": "6711d461cd60fca157e5b3fc" + } + }, + { + "text": "He only grades you off the quizzes, and with the corona outbreak, It's MANDATORY to mail him a usb instead of using you know EMAIL? Also those positive reviews on this site is clearly fake. \" I find him funny and blunt\", you're clearly the joke whoever wrote that. Surely you bream of experience as well too.", + "pos": 0.293, + "neu": 0.665, + "neg": 0.043, + "_id": { + "$oid": "6711d461cd60fca157e5b3fd" + } + }, + { + "text": "Professor Shachmurove is very straightforward. Do the work and you will pass. There is 2 powerpoint projects and 3 exams. He grades according to class average.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d461cd60fca157e5b3fe" + } + }, + { + "text": "Reading is a must in the class. The tests rely on it. The class is test heavy but everything is provided in the slides and the book in my case (superfreakonomics, which was actually interesting and quick to read). He is a little tough on students but is very knowledgable. I found him to be funny and blunt. I got an A in the class.", + "pos": 0.105, + "neu": 0.877, + "neg": 0.019, + "_id": { + "$oid": "6711d461cd60fca157e5b3ff" + } + }, + { + "text": "Prof Shachmurove is a great prof ! Took him for International Economics and learned a lot. You are grades solely on 3 exams, he gives practice exams for each exam so youre prepared for the actual exam. You are required to do 2 presentations , not graded, however good for your own knowledge because it forces you to learn about someone / something", + "pos": 0.095, + "neu": 0.87, + "neg": 0.035, + "_id": { + "$oid": "6711d461cd60fca157e5b400" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d462cd60fca157e5b402" + }, + "professor_name": "Ethan Akin", + "rating": 3.9, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor's lectures are from the slides and midterm exams (3 tests, 20% each) are not too difficult but he is VERY strict on grading it, like making a minor error. The final exam was challenging side but if you use the practice exam on math department website and practice every topic shown in the slides, you will be prepared.", + "pos": 0.136, + "neu": 0.811, + "neg": 0.053, + "_id": { + "$oid": "6711d462cd60fca157e5b403" + } + }, + { + "text": "He's looks really cool in person (W moustache), he's got a really chill vibe. The attendance isn't mandatory (I rarely attended). Self studied all of the lecture materials and redid the practice problems on the slides. He posts practice exams too and the actual exams are really fair. He explains laplace transforms and fourier series really well", + "pos": 0.119, + "neu": 0.819, + "neg": 0.062, + "_id": { + "$oid": "6711d462cd60fca157e5b404" + } + }, + { + "text": "Honest opinion: he is not a strict grader but his lectures were super boring. i never went to class since ain't nobody tryna go to an 8am differential class. as long as you get a hold of the previous midterms, you are set! youtube university is the best university", + "pos": 0.221, + "neu": 0.731, + "neg": 0.048, + "_id": { + "$oid": "6711d462cd60fca157e5b405" + } + }, + { + "text": "Overall a good professor, attendance is not mandatory but I would recommend attending as he gives hints as to which questions will be on the exam. 8 homeworks throughout the semester. His lectures can get very abstract and I wish he would do more examples on the board. Somewhat of a tough grader on exams especially when it comes to definitions.", + "pos": 0.13, + "neu": 0.833, + "neg": 0.037, + "_id": { + "$oid": "6711d462cd60fca157e5b406" + } + }, + { + "text": "Professor Akin was a very fair professor. He gives 3 tests(20% each) and 1 final(40%). His exams are very similar to previous years exams so try to access them as they and the hw problems are your best bet for study material. If you do this you will pass with no worries whatsoever!", + "pos": 0.154, + "neu": 0.802, + "neg": 0.044, + "_id": { + "$oid": "6711d462cd60fca157e5b407" + } + }, + { + "text": "Professor Akin is one of the best math professors I took and he's the most recommended for differentials. He only presents in lectures in slides but you can see them in his webpage, and you have to practice most of the homework problems and sample final questions to prepare for the exams. He is always accessible and sometimes would say a few jokes.", + "pos": 0.096, + "neu": 0.853, + "neg": 0.051, + "_id": { + "$oid": "6711d462cd60fca157e5b408" + } + }, + { + "text": "He's the best for Math 39100, except he teaches at 8 am only. You MUST go to lecture as his slides are not that good on their own. The best way to ace his exams is to practice the homework problems a lot and dig up past midterms. The final is a culmination of all midterms. If you do all the HW, you will get extra credit. Lenient with HW due dates.", + "pos": 0.156, + "neu": 0.784, + "neg": 0.061, + "_id": { + "$oid": "6711d462cd60fca157e5b409" + } + }, + { + "text": "You will lose a lot of points if you make small mistakes on the test even if you use the right methods (4 or 5 points on a 10-point question). The homework is extra credit, he adds 5 points to your final term average if you do most of it. He doesn't mind if you submit hw late. Nice guy! Attendance is not mandatory. Grades tests very quickly.", + "pos": 0.072, + "neu": 0.839, + "neg": 0.089, + "_id": { + "$oid": "6711d462cd60fca157e5b40a" + } + }, + { + "text": "First off attending is pointless because his handwriting is illegible so taking notes becomes pointless so you have no idea what's written on blackboard. He does in exchange read off slides but if that's the case why won't you read off of the textbook. He also gives you wrong marks for right proofs. In short avoid & don't take math classes in ccny", + "pos": 0.0, + "neu": 0.874, + "neg": 0.126, + "_id": { + "$oid": "6711d462cd60fca157e5b40b" + } + }, + { + "text": "Good review sessions before the test. Also posts study guides for the tests and even final. He tries to make the lectures interesting. Hw is extra credit and there are like 8 of them. He did like a little recap at the beginning of each class on what we talked about last class, I found it very helpful. Pretty nice guy, ask questions if ur confused", + "pos": 0.278, + "neu": 0.694, + "neg": 0.028, + "_id": { + "$oid": "6711d462cd60fca157e5b40c" + } + }, + { + "text": "His midterms are just like the homework problems and the final is also like his midterms. He's always willing to help during his office hours and he teaches using PowerPoint. If you do all his hw, he adds 5 points to your term average and also explains the concepts really well. He tends to go a little fast sometimes, but overall, great professor.", + "pos": 0.177, + "neu": 0.797, + "neg": 0.026, + "_id": { + "$oid": "6711d462cd60fca157e5b40d" + } + }, + { + "text": "he mainly reads off of slides, so his lectures are a bit hard to follow. he's still an amazing professor and is able to thoroughly explain concept in a digestible manner. if you do ALL the homework, there's no reason you should do bad on exams (exams are similar to HW). he's also pretty funny and likes telling silly stories.", + "pos": 0.189, + "neu": 0.713, + "neg": 0.097, + "_id": { + "$oid": "6711d462cd60fca157e5b40e" + } + }, + { + "text": "Very good. A pure mathematician- doesn't just rattle off the formulas and methods for solving diffeqs. Lectures are well constructed and presented using ppt. Good for covering more material, but some ppl may not like it over oldschool chalk. ppts are all posted too for reference. Available outside of class. If you do the hwk, you'll pass.", + "pos": 0.118, + "neu": 0.839, + "neg": 0.043, + "_id": { + "$oid": "6711d462cd60fca157e5b40f" + } + }, + { + "text": "The whole point of taking this professor is passing the exams by learning the material outside the class. Otherwise, you'll go through lectures with slides, explanations and jokes you won't understand.", + "pos": 0.062, + "neu": 0.938, + "neg": 0.0, + "_id": { + "$oid": "6711d462cd60fca157e5b410" + } + }, + { + "text": "I am very sure that professor Akin would be a great professor for in person class. However for online he is awful. He teaches with slides, never uses white board or any other stuff to do the math. Instead, he reads off the slides which is extremely not helpful. His tests are okay if you know the material which you definitely wont get from lecture", + "pos": 0.149, + "neu": 0.777, + "neg": 0.074, + "_id": { + "$oid": "6711d462cd60fca157e5b411" + } + }, + { + "text": "Study from outside resources, he's not that great at explaining", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d462cd60fca157e5b412" + } + }, + { + "text": "Professor Akin is a nice guy but I wouldn't recommend him as a professor. Maybe things are different in person, but online, there is no partial credit on his multiple choice math exams and is pretty unforgiving in his grading scheme. I also just didn't find that he explains things clearly. He reads off of slides and I ended up teaching myself.", + "pos": 0.132, + "neu": 0.757, + "neg": 0.111, + "_id": { + "$oid": "6711d462cd60fca157e5b413" + } + }, + { + "text": "In general, I would say math 391 is an easy class and Professor Akin is a solid choice because he is articulate and caring. While all math professors in ccny are lazy because all their exams are multiple choices(no partial credits). Professor Akin is aware of the situation and gives us extra credit question in case we miss some questions.", + "pos": 0.183, + "neu": 0.758, + "neg": 0.059, + "_id": { + "$oid": "6711d462cd60fca157e5b414" + } + }, + { + "text": "He uses slides but for this class the content is very difficult and had to rely a lot on self study. There were 3 exams and a final which were difficult and no easy ride, there is no clear grading criteria as each test had a different scoring grade and my grade was left a mystery. Going to have to work hard and stay up late to pass this class.", + "pos": 0.0, + "neu": 0.818, + "neg": 0.182, + "_id": { + "$oid": "6711d462cd60fca157e5b415" + } + }, + { + "text": "This is a honest answer. Professor Akin is an incredibly smart man. He could read of the slides and remembers the things. However, he forgets that we are students. This class was made very theoretical and plus he expects us to imagine the problems while he read of the slide. This is a difficult course was made more difficult with how he teaches.", + "pos": 0.087, + "neu": 0.802, + "neg": 0.111, + "_id": { + "$oid": "6711d462cd60fca157e5b416" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d462cd60fca157e5b418" + }, + "professor_name": "Sophie Barrett", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Barrett genuinely cares, and class has a great culture. She doesn't sugarcoat that there's a lot of work to do but she's there for you the whole way and breaks things into manageable chunks. I found the exams somewhat difficult, but the paper was very scaffolded and manageable which ended up determining most of our grade. She's good.", + "pos": 0.127, + "neu": 0.831, + "neg": 0.042, + "_id": { + "$oid": "6711d462cd60fca157e5b419" + } + }, + { + "text": "The only B+ I have had as a psych major. I took her in the winter of 2022 and it was a fully online course. Stats was so hard for me. She had covid so it was a mess alot of the times. Participation is key in her class. Her exams are hard but not too hard. I wouldn't really recommend her, find someone else that's not like her lol.", + "pos": 0.019, + "neu": 0.813, + "neg": 0.168, + "_id": { + "$oid": "6711d462cd60fca157e5b41a" + } + }, + { + "text": "The mention of her name post class gives chills. Every time, I hear a student who says they're gonna take her class the upcoming semester, I immediately say \"HELL NO\". guys just run. and if you think she will be understanding, well I got news for you, she lacks empathy. So in the end, stay far far away!!!", + "pos": 0.033, + "neu": 0.871, + "neg": 0.097, + "_id": { + "$oid": "6711d462cd60fca157e5b41b" + } + }, + { + "text": "Sophie is a gem of a professor; she is highly knowledgeable about the material. She goes out of her way to provide tutors and allows for a cheat sheet for exams. The class can be challenging; however, you'll do great if you use the resources provided. Overall, she is hilarious and a fantastic lecturer. It was a pleasure being in her class!", + "pos": 0.213, + "neu": 0.747, + "neg": 0.04, + "_id": { + "$oid": "6711d462cd60fca157e5b41c" + } + }, + { + "text": "I'm only taking this class because I need too, not that I want too. You need God.", + "pos": 0.115, + "neu": 0.819, + "neg": 0.067, + "_id": { + "$oid": "6711d462cd60fca157e5b41d" + } + }, + { + "text": "The workload is extreme. Rstudio is unnecessary. At Hostos I dropped before finals bc I got sick but the class was easy, no Rstudio and the prof was great. Stats at CCNY is a nightmare. Rstudio should be illegal & the amount of HW/reading is insane. This type of class you have to take by itself with no other classes, no job, no kids, no life.", + "pos": 0.159, + "neu": 0.628, + "neg": 0.213, + "_id": { + "$oid": "6711d462cd60fca157e5b41e" + } + }, + { + "text": "Just seeing her name anywhere causes me anxiety. I have to immediately delete all of her assignments from my computer because that's just how much stress she caused me. Made my summer a complete nightmare! I got an okay grade but because I killed myself working so hard on sleepless nights as well. Wouldn't ever recommend to anyone!", + "pos": 0.058, + "neu": 0.727, + "neg": 0.215, + "_id": { + "$oid": "6711d462cd60fca157e5b41f" + } + }, + { + "text": "If you're currently taking her for the upcoming semester you still have time to save yourself please! only gives you midterm,final & final paper on to grade, but gives 0 instructions as to how to write the final paper & expects you to figure it out.Doesnt say how she'll be grading your test just simply throws a grade at you.Youll regret taking her!", + "pos": 0.064, + "neu": 0.882, + "neg": 0.054, + "_id": { + "$oid": "6711d462cd60fca157e5b420" + } + }, + { + "text": "Professor Barrett is amazing! This class requires work. If you are someone who never misses a deadline and is very on top of learning criteria, this class is for you! She would post all lecture slides and her TA's were always ready to answer our questions. Overall, Barrett is very passionate and very on top of it all. Weekly labs, weekly homeworks.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d462cd60fca157e5b421" + } + }, + { + "text": "Attendance is mandatory for the class but she does not teach anything in class. She expects the students to watch prerecorded lectures. Basically a self taught class and insane amount of HW. The prof and the TAs are not helpful as they are not teaching anything for the actual class. Very long LABs are done in RStudio.", + "pos": 0.019, + "neu": 0.875, + "neg": 0.106, + "_id": { + "$oid": "6711d462cd60fca157e5b422" + } + }, + { + "text": "This class made me WORK for my grade but doable if u read the textbook and take notes. Her exams were literally questions we do in class and hw, just different numbers. So many ppl used the class slack to cry about the work instead of getting help. She gives extra credit, drops lowest exam, has tutors, and makes video alternatives to the textbook.", + "pos": 0.093, + "neu": 0.805, + "neg": 0.101, + "_id": { + "$oid": "6711d462cd60fca157e5b423" + } + }, + { + "text": "She is tough! She tells you that on the first day of class. There is ALOT of work but the same items are on the exams. You get tutors and cheat sheets but you need to do the work. This was the first class I took that felt like a college class. Someone always answered my questions on slack. It is obvious she cared and people wanted to be lazy", + "pos": 0.086, + "neu": 0.805, + "neg": 0.109, + "_id": { + "$oid": "6711d462cd60fca157e5b424" + } + }, + { + "text": "DO NOT TAKE HER,TO MUCH .She is an amazing person but tuff and hard at grading.The class is hard and she will not make it easy for you at all. She creates her own exams, she kept telling us that you wont have any way of cheating and its true,but the exams are different from the hw which tricks you hard. in class environment you lose motivation", + "pos": 0.082, + "neu": 0.696, + "neg": 0.221, + "_id": { + "$oid": "6711d462cd60fca157e5b425" + } + }, + { + "text": "her tests are not like her lectures or homework, you will fail them, you don't do homework by your own,she makes them hard. She makes her own exams and hw,and lab. she does to much work and at the end the grading is too much and not fair, you lose track of things, if you thing you are already failing that class drop before it to late they trick you", + "pos": 0.028, + "neu": 0.777, + "neg": 0.195, + "_id": { + "$oid": "6711d462cd60fca157e5b426" + } + }, + { + "text": "She is the worst prof ever, too much work and too many things are going on, she makes things look easy and fun but trust me is non of that. She makes you watch videos before lecture then when you come to class she stays on one question for the whole time a swear to you, you lose focus, and the lab section it was decent but overall hard class very.", + "pos": 0.105, + "neu": 0.785, + "neg": 0.11, + "_id": { + "$oid": "6711d462cd60fca157e5b427" + } + }, + { + "text": "Pretty decent Professor. Class has a lab component for coding with 6 hw worth 20%. 4 exams (one gets dropped) worth 40% plus a final worth 20%. About 15 regular LONGG hw's worth 20%. I was only bothered that we had to watch recorded lectures before class only to do practice problems in class. Lots of material to remember and easy access to help.", + "pos": 0.215, + "neu": 0.72, + "neg": 0.065, + "_id": { + "$oid": "6711d462cd60fca157e5b428" + } + }, + { + "text": "i still have nightmares.the workload is crazy, she is very rude. she gives homework with questions that have like part v, and she makes you do r studio during lab, which is completely unnecessary. the workload of this class will have you spending all the time you have studying for it. the exams are very hard. ur better off epermitting.", + "pos": 0.083, + "neu": 0.808, + "neg": 0.109, + "_id": { + "$oid": "6711d462cd60fca157e5b429" + } + }, + { + "text": "she traumatized me. this women is so cruel and made my freshman year miserable. She loves torturing her students with loads of work. If you can take anyone else do it no one can be worse than her. She makes her exams hard on purpose, bashes students for expressing themselves and then be manipulative. I swear you will regret taking her", + "pos": 0.046, + "neu": 0.636, + "neg": 0.318, + "_id": { + "$oid": "6711d462cd60fca157e5b42a" + } + }, + { + "text": "bro please listen to the last few reviews. Dont take her you will literally cry cuz of this class. She enjoys torturing her students. Expects us to do lab, lecture hw and then study for her exam. stats is not hard she makes it hard on purpose. She takes students out for lunch but then cant have a review session for the final. that alone says a lot", + "pos": 0.067, + "neu": 0.822, + "neg": 0.111, + "_id": { + "$oid": "6711d462cd60fca157e5b42b" + } + }, + { + "text": "Dont take her. she has no sympathy for her students and finds pleasure in drowning her students with work. She expects you to do lecture hw with lab hw (coding) and then study for her exam. if you want to be sane this sem dont take her. She makes you watch her old lecture videos that are hours long. I ended up self teaching after a day of this clas", + "pos": 0.067, + "neu": 0.904, + "neg": 0.028, + "_id": { + "$oid": "6711d462cd60fca157e5b42c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d463cd60fca157e5b42e" + }, + "professor_name": "Jonathan Maldonado", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "Great professor. Keeps it real 100 percent of the time and is very understanding. You will not regret taking him.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b42f" + } + }, + { + "text": "Professor Maldonado is an absolute gem. Like a lot of other people, I find public speaking insanely intimidating. But Professor Maldonado manages to create a very therapeutic and motivating environment for all students. He consistently brings positive energy & gives excellent critique. You can tell he loves his job. Show up to class & participate!", + "pos": 0.356, + "neu": 0.619, + "neg": 0.026, + "_id": { + "$oid": "6711d463cd60fca157e5b430" + } + }, + { + "text": "Profesor Maldonado's class is very entertaining .You will get great feedback every time . Few assignments but you need to do all the pre-work in order to pass. I recommend his class 100 %.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b431" + } + }, + { + "text": "Professor Maldonado is the best teacher ever! The speeches were so easy and fun to talk about. He really made the class act like a family. As long as you can talk in the presentations, you are gonna get an A for sure.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b432" + } + }, + { + "text": "Very welcoming and accepting. Always provides feedback to presentations and is looking to help you improve at any time.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b433" + } + }, + { + "text": "I 100% encourage you to take this class! I was/am a person that would struggle with voicing my thoughts and opinions .This class helped me get out of my comfort zone. It also helped me in my personal life. Im glad I took this class, it was very fun and educational. I learned a lot from the teacher and peers. Teacher is very good at giving feedback.", + "pos": 0.229, + "neu": 0.742, + "neg": 0.028, + "_id": { + "$oid": "6711d463cd60fca157e5b434" + } + }, + { + "text": "This professor is very straightforward and only wants his students to succeed. Take his classes if you want to improve in any aspect of your life.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b435" + } + }, + { + "text": "Verycoolprofessor.Doesn't put toomuch pressure on students.Please don't slack on his class.If u feeling heavy in some week you can share everything in that class.Also,as an introvert by taking his class it will help you.I have seen students getting stuck throughout speeches and the whole body shaking but that went gone literary end of the semester.", + "pos": 0.106, + "neu": 0.845, + "neg": 0.049, + "_id": { + "$oid": "6711d463cd60fca157e5b436" + } + }, + { + "text": "Professor Maldonado truly helps you to become more comfortable with public speaking and learn to give speeches in a very positive way. He gives specific feedback for each and every student and makes sure to uplift your presentations before giving constructive criticism. The presentations are the main part of the class but they're always fun.", + "pos": 0.25, + "neu": 0.72, + "neg": 0.03, + "_id": { + "$oid": "6711d463cd60fca157e5b437" + } + }, + { + "text": "The only professor and the only class that made me feel welcome when I was a freshman and everything was new and terrifying. Professor Jonathan is very encouraging and provides the best feedback to help students improve.", + "pos": 0.322, + "neu": 0.606, + "neg": 0.072, + "_id": { + "$oid": "6711d463cd60fca157e5b438" + } + }, + { + "text": "Prof. Maldonado is truly a great professor! He makes a great classroom environment with no judgements. Students engage and become friends very easily. He gives great feedback and ideas to add to your presentations as well.", + "pos": 0.469, + "neu": 0.491, + "neg": 0.04, + "_id": { + "$oid": "6711d463cd60fca157e5b439" + } + }, + { + "text": "He creates a good environment that even a shy person can participate, but you have to participate. He gives good feedback. Would love to take this course again.", + "pos": 0.349, + "neu": 0.611, + "neg": 0.04, + "_id": { + "$oid": "6711d463cd60fca157e5b43a" + } + }, + { + "text": "I really enjoyed taking his class. Awesome professor and he really cares about his students. He will make you step out of your comfort zone for presentations but his classroom is a complete JUDGEMENT-FREE ZONE. Take his class, you will not regret it!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b43b" + } + }, + { + "text": "Professor Maldonado, is one of the\nprofessors that cares about his students!\nHis class was very fun, engaging and full\nof energy. We had three presentations\nthroughout the semester and one pager on\ntheater review. There's no quizzes or hws.\nJust come to class everyday, participate,\ndo your presentations and you'll do great!\nTake his class!!!", + "pos": 0.242, + "neu": 0.726, + "neg": 0.032, + "_id": { + "$oid": "6711d463cd60fca157e5b43c" + } + }, + { + "text": "This Class was an amazing expierence, show up to the classes participate and be thoughtful, there are public speaking presentations the class is all about being out of our comfort zone and learning how to publicly speak and the Professor is very kind and understanding, it will help you grow as an person which was the most important.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b43d" + } + }, + { + "text": "Professor Maldonado is quite literally the best teacher to take this speech class. He is so understanding and thoughtful about his students. Although speaking in front of a group of people on a daily basis sucks for an introvert, he makes the environment so comfortable for his students. 10/10!", + "pos": 0.2, + "neu": 0.758, + "neg": 0.042, + "_id": { + "$oid": "6711d463cd60fca157e5b43e" + } + }, + { + "text": "One of the best professors ever and an easy A. All you have to do is a presentation and present it. It didn't even matter if it was good. As long as you do it, you would get an A. You have three presentations, about any topic you wanted (literally anything), and rarely got homework.", + "pos": 0.161, + "neu": 0.822, + "neg": 0.017, + "_id": { + "$oid": "6711d463cd60fca157e5b43f" + } + }, + { + "text": "10/10, the best professor at CCNY. He truly does care about students and is very understanding. Just come to class, participate, and present when you have to and you'll do fine. Rarely ever homework, and it's an easy A", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b440" + } + }, + { + "text": "Only need to do 3 speeches in class. Have your camera on and that'll count as participation. He's a nice professor and understands what work was given outside of class that may hinder your work in this class.", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b441" + } + }, + { + "text": "Professor Maldonado is great honestly. The class itself is not hard, but you just have to make sure to do all the work. The class was very low-key, and professor Maldonado always gave us accommodations for any issues we had.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b442" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d463cd60fca157e5b444" + }, + "professor_name": "Themis Lazaridis", + "rating": 2.6, + "department": "Chemistry department", + "comments": [ + { + "text": "He is not helpful at all. I went to office hours for help, he said drop the class. He gave past exams, but his exam was very different from the previous exams. Not helpful, and very discouraging. Take another professor if you, he ruined gpa for a lot of 4.0 students.", + "pos": 0.03, + "neu": 0.732, + "neg": 0.238, + "_id": { + "$oid": "6711d463cd60fca157e5b445" + } + }, + { + "text": "Take literally anyone else you can. He gives you practice exams but they are not similar AT ALL to his test. He test you on random subjects from chem 103. He does not curve questions literally everyone got wrong. The only upside was that he gave a 4 point curve at the end but most the people had to drop the course or fail.", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d463cd60fca157e5b446" + } + }, + { + "text": "For an intro level gen chem class. it did not have to be that hard. The exams were like 6 short response questions, and the class average was like a 40 for every exam. Recitation also felt worthless. His lectures were okay, but did not give a good sign about the intensity of exams. must study HARD", + "pos": 0.077, + "neu": 0.782, + "neg": 0.14, + "_id": { + "$oid": "6711d463cd60fca157e5b447" + } + }, + { + "text": "No.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b448" + } + }, + { + "text": "Ig professor isn't that decent but nobody talks about recitation and lab Ta's. Lab ta took off points even if you get it right and recitation ta says he will not take off points for one or two days of absence but at the end he took off points for both class participation and attendance and even if u miss a single recitation, hell take off points.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d463cd60fca157e5b449" + } + }, + { + "text": "His class is so difficult to pass but the only good thing he does is that he curves at the end.", + "pos": 0.154, + "neu": 0.761, + "neg": 0.085, + "_id": { + "$oid": "6711d463cd60fca157e5b44a" + } + }, + { + "text": "Worst Professor ever! Hope his children get same karma as we got in his class!!", + "pos": 0.139, + "neu": 0.623, + "neg": 0.238, + "_id": { + "$oid": "6711d463cd60fca157e5b44b" + } + }, + { + "text": "Honestly, I would study the textbook for this class because his exam problems are nothing like ALEKS and that's what most students end up studying. I attended lecture and would go through the textbooks once before an exam and go an A in the class. Do labs & ALEKS, so many students don't then complain (he gave a lot of extensions for ALEKS too).", + "pos": 0.073, + "neu": 0.858, + "neg": 0.069, + "_id": { + "$oid": "6711d463cd60fca157e5b44c" + } + }, + { + "text": "tbh just go with any other professor other than him. My biggest regret was picking his class over Simms. They're both garbage but you have a higher chance of getting a better grade in Simms class", + "pos": 0.154, + "neu": 0.8, + "neg": 0.046, + "_id": { + "$oid": "6711d463cd60fca157e5b44d" + } + }, + { + "text": "The professor gave past questions from which you could study and the questions were similar (but not the same questions). You have to work hard to learn the topics and Aleks is really useful if you want to learn. Overall the exams were moderately difficult but very much doable and the professor even dropped the lowest of the three exams.", + "pos": 0.083, + "neu": 0.797, + "neg": 0.12, + "_id": { + "$oid": "6711d463cd60fca157e5b44e" + } + }, + { + "text": "I could not understand any of the material or content this professor was giving to us students. Even most of the students were lost and didn't bother to ask for help. This was because he is unapproachable and does not show mercy for anyone when it comes to their grades. Do yourself a favor and do not take this professor for any class.", + "pos": 0.138, + "neu": 0.8, + "neg": 0.062, + "_id": { + "$oid": "6711d463cd60fca157e5b44f" + } + }, + { + "text": "I loved this class for my grade of D. Not fault of teacher, its all my own fault. I cant study. But I will not come to this forum to post my tears, complaints, or bitterness. Everyone wants everything given, I want a million bucks before I am 30 but I know I gonna have to work for it, not cry for it. Post anything here its a junk place anyway...", + "pos": 0.107, + "neu": 0.758, + "neg": 0.136, + "_id": { + "$oid": "6711d463cd60fca157e5b450" + } + }, + { + "text": "He is horrible and disrespectful. He doesn't answer emails and thinks he's always right. He failed people who's pie grade was under 60% even though it is only 5% of the grade. This was never brought up on the syllabus but he decided to make it mandatory a week before class ends.", + "pos": 0.026, + "neu": 0.893, + "neg": 0.08, + "_id": { + "$oid": "6711d463cd60fca157e5b451" + } + }, + { + "text": "He's not the best but not the worst either. I took his online class and the homework and exams are on ALEKS. Im gonna warn you, it is the WORST website and might be the reason for your downfall. The professor, however gives many extensions on HWs and exams if you ask him nicely. He's chill but ALEKS was a nightmare, so many all-nighters for that", + "pos": 0.104, + "neu": 0.764, + "neg": 0.132, + "_id": { + "$oid": "6711d463cd60fca157e5b452" + } + }, + { + "text": "tbh this is not the professor you are looking for an easy pass.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d463cd60fca157e5b453" + } + }, + { + "text": "This is a hard class. Understandable there are things that could be done better. But I had a family emergency and missed an exam and a lab. I had a valid reason but was not granted a make-up even though the Chemistry Department was ready to pardon the missed lab, it was up to Prof Lazaradis and he said NO. This was a waste of money and time.", + "pos": 0.098, + "neu": 0.709, + "neg": 0.193, + "_id": { + "$oid": "6711d463cd60fca157e5b454" + } + }, + { + "text": "Lazaridis tests are challenging and very conceptual. His lectures are helpful and he provides resources for you to do well. HOMEWORK, LAB and RECITATION will saveeee your grade. Do practice tests and go to the CCAPP tutoring for extra help if you need. You will not get a good grade unless you put in the work and effort.", + "pos": 0.142, + "neu": 0.82, + "neg": 0.037, + "_id": { + "$oid": "6711d463cd60fca157e5b455" + } + }, + { + "text": "Not an easy class nor an easy professor but with the right TA you should be fine. Dont think that this class is like 103 where you could easily pass so get ready to put in the work. His tests are harder than average but everything is doable if you put your mind into it. He gives back points in case of any mistakes. Overall not as bad as expected.", + "pos": 0.189, + "neu": 0.732, + "neg": 0.079, + "_id": { + "$oid": "6711d463cd60fca157e5b456" + } + }, + { + "text": "Professor Lazaridis was one of the most understanding professors I've had. He would generously give back points on your test if he felt the grading by the TA was harsh, extend homework deadlines, give us all his past exams and answers which were very similar to his exams and he added 2.4 points to everyones final grade he was amazing.", + "pos": 0.124, + "neu": 0.833, + "neg": 0.043, + "_id": { + "$oid": "6711d463cd60fca157e5b457" + } + }, + { + "text": "He's a good lecturer, you'll learn if you pay attention. He makes his own tests, so don't base studying just off of past tests. ALEKs comes in clutch at the end of the semester with the grade boost if ur failing, so does lab and recitation. But you NEED to study, his class is dum hard for no reason. Plays with ur GPA here, STUDY HARD.", + "pos": 0.051, + "neu": 0.78, + "neg": 0.169, + "_id": { + "$oid": "6711d463cd60fca157e5b458" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d464cd60fca157e5b45a" + }, + "professor_name": "Gary Frey", + "rating": 3.5, + "department": "Economics department", + "comments": [ + { + "text": "He a very good professor and understanding when we would email him about extensions or if the exams on mindtap wouldn't work.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b45b" + } + }, + { + "text": "Frey is a pretty good teacher. Presents lessons clearly & in a easy to understand manner. Pushes deadlines back frequently for students.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b45c" + } + }, + { + "text": "Frey-sannn! You are a lovely, amazing professor. Seriously. This man goes out of his way to make sure his students are able to do & finish their work on time. Want an extension? He'll give it to you. Extra help? You got it! A lot of work on Mindtap, though. He's very chill. I love him.", + "pos": 0.276, + "neu": 0.7, + "neg": 0.024, + "_id": { + "$oid": "6711d464cd60fca157e5b45d" + } + }, + { + "text": "this professor made me wanna drop his class over 100 times. I'm a freshmen i came in thought why notntake this as my elective thought it would be fun turned out to be harder then all my other classes 4 of my friens dropped it", + "pos": 0.068, + "neu": 0.888, + "neg": 0.043, + "_id": { + "$oid": "6711d464cd60fca157e5b45e" + } + }, + { + "text": "Professor Frey was very understanding, and respectable when it came to his students asking for extensions. He would even curve the exams we took, if he saw that majority of the class didn't do so well. His class is mostly on Cengage, and there is weekly assignments on there. Cengage is annoying, but Professor Frey makes it fair to pass his class.", + "pos": 0.103, + "neu": 0.869, + "neg": 0.028, + "_id": { + "$oid": "6711d464cd60fca157e5b45f" + } + }, + { + "text": "As an experienced professor in the field of economics, Professor Frey has an impressive knowledge base and is able to effectively communicate complex economic concepts to his students. His lectures are engaging, and he provides real-world examples that make the material come alive.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b460" + } + }, + { + "text": "Amazing Professor, clear criteria Grading, and he's humorous, the presentations are well made! and the understanding and speaking clear every moment and asking for opinions makes him a awesome professor 10/10 would take him again!", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b461" + } + }, + { + "text": "Lectures are literally pointless. Everything needed is provided by webassign.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b462" + } + }, + { + "text": "Lectures and homework are based off the textbook. Lecture attendance is not mandatory, but his lectures are humorous. Recitation attendance depends on the TA. I did not go to any of his classes or recitations besides at the beginning and the end of the semester. Did all the homework, and got good grades on the online midterm and final. Got an A.", + "pos": 0.108, + "neu": 0.876, + "neg": 0.016, + "_id": { + "$oid": "6711d464cd60fca157e5b463" + } + }, + { + "text": "Professor Frey uses the online textbook and gives out a lot of homework but if you ask for extensions, he gives it to you. Attending the lectures isn't mandatory but recitation is. Only big projects was a critical thinking assignment, the midterm and the final exam.", + "pos": 0.0, + "neu": 0.911, + "neg": 0.089, + "_id": { + "$oid": "6711d464cd60fca157e5b464" + } + }, + { + "text": "Excellent Professor. Not only did he make class very interesting and intriguing,but he was also very understanding if you needed an extension. I would highly recommend taking him.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b465" + } + }, + { + "text": "Professor Frey is one of the best teachers I've had by far. He uses the textbook to teach, and there are a lot of example problems, so it is good practice for the assessments. There were only 2 assessments in the semester, the midterm and final. There was a lot of homework, but if you asked for an extension, he always gave one. Take him!", + "pos": 0.072, + "neu": 0.901, + "neg": 0.027, + "_id": { + "$oid": "6711d464cd60fca157e5b466" + } + }, + { + "text": "You don't need to attend lectures in person. There is option to attend and option to go online. Attendance is not mandatory. Just make sure you join a discord server with classmates. Usually there are A LOT of students (mine had like 300+) so if you do go in person be quick to grab a seat the first few weeks. The hw is easy, email him for extension", + "pos": 0.131, + "neu": 0.818, + "neg": 0.052, + "_id": { + "$oid": "6711d464cd60fca157e5b467" + } + }, + { + "text": "Had him for microeconomics. Best professor ever!! The homework on mind tap was a lot, but as long as you do most of it, you'll be fine. I only completed like 65-70% of the mind tap assignments. So caring and thoughtful, he always extends deadlines. The midterm and finals are mostly based on the mind tap assignments. Take his class!!", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b468" + } + }, + { + "text": "Overall, he's a great professor. Takes his time to explain concepts and when you ask for extensions on assignments, he gives it. The only bad thing about this class is Mindtap. The assignments are a lot and the homework? Get prepared to spend at least four hours on a chapter but overall the class was good for me.", + "pos": 0.122, + "neu": 0.842, + "neg": 0.035, + "_id": { + "$oid": "6711d464cd60fca157e5b469" + } + }, + { + "text": "Professor is very helping and caring. MindTap was time consuming and he extended homework many times as we requested to extend it.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b46a" + } + }, + { + "text": "He is an amazing teacher that is understandable. If you have any questions or concerns he is happy to help.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b46b" + } + }, + { + "text": "Gary is a very good prof in economics he knows his stuff. For this class in specific he reads off his slides and gives many examples and explanations. He uses MinTap in which he will give a lot of assignments to do which are very doable. Especially since he is so caring to his students that he extends time for the assignments if you ask for it.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b46c" + } + }, + { + "text": "Gary's great. He reads off of slides all the time, so it gets a bit boring sometimes. Great guy, but, LOADS of assignments via the dreaded Mindtap. He extends things a lot of the time, so its great if you want to do everything at a pace you like. Homework is the most important thing.", + "pos": 0.278, + "neu": 0.631, + "neg": 0.092, + "_id": { + "$oid": "6711d464cd60fca157e5b46d" + } + }, + { + "text": "He's a very nice professor. Pretty lenient and he actually cares about all his students. The only thing I dislike is the sheer amount of Mindtap work/assignments.", + "pos": 0.322, + "neu": 0.607, + "neg": 0.072, + "_id": { + "$oid": "6711d464cd60fca157e5b46e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d464cd60fca157e5b470" + }, + "professor_name": "Michael Lyle-Thompson", + "rating": 4.9, + "department": "World Civilizations department", + "comments": [ + { + "text": "The professor is very chill. He was very lenient and easy going with us. There are only 4 assignments for the semester, and few discussion questions, and an easy, one question final. I loved the class discussions and I can tell that he really loves history!", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b471" + } + }, + { + "text": "He's a very chill professor. Only 4 assignments, some discussion questions and a very simple final. He was patient and lenient with us. We had great discussions in class and I could tell he truly loved history! I definitely recommend taking him.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b472" + } + }, + { + "text": "He is a very understanding teacher and as long as you send an email or do your work you should have no problem.", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b473" + } + }, + { + "text": "This professor is a very good one, he's chill and takes time through the course and presents the materials very easily. He's also very understanding and you can talk things up with him if needed be.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b474" + } + }, + { + "text": "Just get all assignments done for the class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b475" + } + }, + { + "text": "Professor Thompson made this class very interesting. He always held great discussions that made this portion of history that I find very boring into something somewhat fun. His assignments were all fair and simple, the grading criteria was very clear too. Definitely take his class if you are considering it.", + "pos": 0.286, + "neu": 0.673, + "neg": 0.041, + "_id": { + "$oid": "6711d464cd60fca157e5b476" + } + }, + { + "text": "Overall the best professor for WCIV. He makes the class worthwhile and engaging, you will learn a lot from him! I recommend taking this professor, as long as you hand in your (4) assignments on time & participate in the discussion boards, you will do great! No \"exams\" but the assignments are a big chunk of your grade!", + "pos": 0.202, + "neu": 0.774, + "neg": 0.024, + "_id": { + "$oid": "6711d464cd60fca157e5b477" + } + }, + { + "text": "Absolutely one of the best classes I have taken so far! This is not your normal history course. Get ready to question a lot of things about the creation of the world and the society we live in. The readings are great and the discussions are very interesting. I highly recommend it.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b478" + } + }, + { + "text": "Prof. Thompson was amazing. Very caring and made the content of the class interesting and straightforward.. There are 4 assignments each worth 15% a few discussion board posts which are worth 20% and then the final which was 20%. TAKE HIS CLASS!!!!", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b479" + } + }, + { + "text": "HE is amazing", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b47a" + } + }, + { + "text": "He is very understanding and patient and his lectures are easy to understand. He is fair in terms of workload. Absolutely Amazing person and Professor. Would gladly take this course again.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b47b" + } + }, + { + "text": "amazing professor just know that you wont be seeing him very often he usually does online.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b47c" + } + }, + { + "text": "Very chill professor. There are no exams, just like four short papers to write, which are like 1-2 pages. You will need to read articles and a book to understand the course and assignments. Other than that, it's the easiest class out of the five classes I've taken this semester.", + "pos": 0.139, + "neu": 0.821, + "neg": 0.039, + "_id": { + "$oid": "6711d464cd60fca157e5b47d" + } + }, + { + "text": "Take this class. Your perspective on the world will shift for good and you won't regret it.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b47e" + } + }, + { + "text": "I am a pre med major so I was nervous about taking WCIV on top of all my other difficult classes. However, the professor was very kind and understanding. He posts clear directions on what to have completed and when to have it completed by. There were not too many assignments and as long as you showed effort and understanding, he would give you an A", + "pos": 0.109, + "neu": 0.825, + "neg": 0.066, + "_id": { + "$oid": "6711d464cd60fca157e5b47f" + } + }, + { + "text": "This class is so easy and it the professor is so nice. If you do the work you will get an A", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b480" + } + }, + { + "text": "Professor Thompson love his job and have time for his student. He is always available to answer any questions you may have. I have acquired so much knowledge from his class. Will highly recommend him.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b481" + } + }, + { + "text": "This professor was so understanding he gave us assignments and told us as long as we turn it in by the end of the semester were fine literally passed his class with an A.", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d464cd60fca157e5b482" + } + }, + { + "text": "Even though I started the class with no particular knowledge in this course, professor Thompson made me really enjoy class and want to learn more. It was online and asynchronous but the readings were interesting. He is a very kind person and grades very lenient. I would recommend him!", + "pos": 0.299, + "neu": 0.675, + "neg": 0.026, + "_id": { + "$oid": "6711d464cd60fca157e5b483" + } + }, + { + "text": "The easiest 'A' I have ever gotten. He even cancelled our final exam because he was worried we were too stressed. It was only 4 assignments and a few discussion boards which he gave the entire semester to complete. He's really chill and is there to accommodate you.", + "pos": 0.052, + "neu": 0.824, + "neg": 0.124, + "_id": { + "$oid": "6711d464cd60fca157e5b484" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d465cd60fca157e5b486" + }, + "professor_name": "Shubha Govind", + "rating": 2.8, + "department": "Biology department", + "comments": [ + { + "text": "JUST DONT. Shes extremely tough, exam averages are 30s 50s, never says anything about exam content, its super random and specific, especially with so much material. she doesnt only harm ur gpa but costs u mentally and physically. Its an interesting class so dont ruin your experience taking this awful heartless professor, the TA is a waste EPERMIT!!", + "pos": 0.186, + "neu": 0.649, + "neg": 0.165, + "_id": { + "$oid": "6711d465cd60fca157e5b487" + } + }, + { + "text": "Awful Professor. Is never helpful and supportive. She will trouble you more if you ask for help and tries to give more trouble. Do not create more problems in life by taking this Professor course.", + "pos": 0.11, + "neu": 0.576, + "neg": 0.314, + "_id": { + "$oid": "6711d465cd60fca157e5b488" + } + }, + { + "text": "Get ready to teach yourself grad genetics! Honestly, she's a very nice person but not a good teacher. We had a weekly quiz, 2 tests, research, a presentation and LOTS of reading. Read each review article, summarize it and study it along with each figure and you'll be fine. Stressed out but fine! :)", + "pos": 0.221, + "neu": 0.687, + "neg": 0.093, + "_id": { + "$oid": "6711d465cd60fca157e5b489" + } + }, + { + "text": "Her exams are very specific and tricky, so it is best to study her problem sets and review lecture notes. She was very understanding when the class average was not expected and curved when necessary. Make sure you stay on top of the material and you should be fine!", + "pos": 0.183, + "neu": 0.739, + "neg": 0.078, + "_id": { + "$oid": "6711d465cd60fca157e5b48a" + } + }, + { + "text": "Worst professor ever. She is very tough while grading. I would never recommend this professor.", + "pos": 0.0, + "neu": 0.6, + "neg": 0.4, + "_id": { + "$oid": "6711d465cd60fca157e5b48b" + } + }, + { + "text": "Listen to the reviews. Trust me this isn't a professor that u should just overlook the reviews and think you'll survive. She's tough and makes your life even harder if u want to ask for help. JUST DON\"T DO IT!", + "pos": 0.168, + "neu": 0.798, + "neg": 0.033, + "_id": { + "$oid": "6711d465cd60fca157e5b48c" + } + }, + { + "text": "She is difficult. This is not a class that can be taken lightly, you need to study very hard because she is very unclear during lecture. Many questions asked during lecture were left unanswered and left more confusion. Be prepared to teach yourself. Her exams are difficult and require a deep understanding of the concepts.", + "pos": 0.035, + "neu": 0.782, + "neg": 0.183, + "_id": { + "$oid": "6711d465cd60fca157e5b48d" + } + }, + { + "text": "Took her for grad genetics, great prof. Went through undergrad material clearly and concisely before taking time to explain complex genetic concepts. Went over most of the papers (focusing on flies mostly) together, and encouraged everyone to theorize/experiment/discuss. Would love another class with her in the future.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b48e" + } + }, + { + "text": "This class is not for the lazy. You need to be present for every lecture bc she takes attendance, but also youll miss important material. You cannot get behind on the reading and there is homework and a quiz every week. Changed the midterm from MC to short answers the moment we arrived for the exam, so be on your toes. Waleed Khalid is the best TA", + "pos": 0.128, + "neu": 0.846, + "neg": 0.026, + "_id": { + "$oid": "6711d465cd60fca157e5b48f" + } + }, + { + "text": "Govind is a decent professor and she curves heavily. Most people got horrible grades the entire semester, but ended up getting Bs and As. This class is like a review of bio 101 and 102 with a few extra stuff. The exams are short response and really difficult. Practice the questions from the problem sets and make sure you read the textbook.", + "pos": 0.085, + "neu": 0.783, + "neg": 0.132, + "_id": { + "$oid": "6711d465cd60fca157e5b490" + } + }, + { + "text": "Class is very hard but doable as long you study the material by doing the problem sets, quizzes and chapter review questions. Focus on what she emphasized because it's likely that it will be on the exam. Do well on the quiz and above average on exam. The exam is similar to problems in problem set and quizzes. Study on problems and concepts.", + "pos": 0.035, + "neu": 0.758, + "neg": 0.207, + "_id": { + "$oid": "6711d465cd60fca157e5b491" + } + }, + { + "text": "Quizzes every week. Make sure you get the highest score you can and also if you dont try to learn the materials. And for midterm just read the old quizzes, and problem sets you will be fine. She is an outstanding professor tough exams obviously, but you will be fine if you get more then average grades.", + "pos": 0.125, + "neu": 0.825, + "neg": 0.05, + "_id": { + "$oid": "6711d465cd60fca157e5b492" + } + }, + { + "text": "She seems like a nice person, but so far she did a horrible job with us. She mixed up undergraduate and graduate quizzes and she changed the format of the midterm from 30mc to 25 short response the morning of the test because a few people had old exams. Shes not bad at teaching, but she made mistakes that are inexcusable and unprofessional.", + "pos": 0.097, + "neu": 0.741, + "neg": 0.162, + "_id": { + "$oid": "6711d465cd60fca157e5b493" + } + }, + { + "text": "Very difficult professor. She's very misleading when it comes to exams. She told the whole class that it will be multiple choice format on the midterm and changes it 12 hours prior to the exam date into short answers exam. She also mixes graduate materials into undergraduate materials. I do not recommend her as a teacher.", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d465cd60fca157e5b494" + } + }, + { + "text": "Genetics is not easy but with her you learn a lot. Amazing lectures. Very caring, weekly quizzes are very helpful to learn the topic. She makes the class very interesting. You must work hard, put a lot of time and effort if you want to do well in her class. Exams require some critical thinkings but they are based on everything she covers in class.", + "pos": 0.263, + "neu": 0.663, + "neg": 0.074, + "_id": { + "$oid": "6711d465cd60fca157e5b495" + } + }, + { + "text": "you gotta read the textbook and put time into studying. You can get an A but you also have to work for it. There is a curve and as long as you stay above the average, you should do fine. She is pretty nice lady but also frustrating at times because you think you know it .. but you dont...", + "pos": 0.146, + "neu": 0.799, + "neg": 0.055, + "_id": { + "$oid": "6711d465cd60fca157e5b496" + } + }, + { + "text": "If you dont read the textbook, you're not passing. In order to do well in this class you have to go home and read the chapter in detail BEFORE lecture. Exams are more tricky than hard. Shes not as bad as everyone makes her seem but only if you do your work. Stay at average or above exam grades to pass. Curve and extra credit at the end of semester", + "pos": 0.092, + "neu": 0.871, + "neg": 0.037, + "_id": { + "$oid": "6711d465cd60fca157e5b497" + } + }, + { + "text": "Professor Govind does not care about her students and the effort that they put into her class. I went to tutoring and studied like crazy just to pass this class, yet, I couldn't. I knew all the material and her exams were horrible. Lost my scholarship because I failed this class. BEWARE!!! The \"curve\" doesn't even help.", + "pos": 0.036, + "neu": 0.717, + "neg": 0.247, + "_id": { + "$oid": "6711d465cd60fca157e5b498" + } + }, + { + "text": "TERRIBLE GRADER AND SAYS NOT TO MEMORIZE YET SHE CAN NOT TEACH CONCEPTS! If you want to save your GPA take another professor or cry through her exams. It'll be your worst semester yet to come.. I'll pray for you. First class I've ever failed at CCNY.", + "pos": 0.111, + "neu": 0.651, + "neg": 0.238, + "_id": { + "$oid": "6711d465cd60fca157e5b499" + } + }, + { + "text": "Dr. Govind is an expert in genetics. As a research scientist, she has tremendous experience in understanding the fundamental principles behind specific laboratory techniques. I don't believe I've taken a course that was much more difficult than this one. At higher level BIO courses, you must realize that memorization doesn't do the trick anymore ..", + "pos": 0.02, + "neu": 0.931, + "neg": 0.049, + "_id": { + "$oid": "6711d465cd60fca157e5b49a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d465cd60fca157e5b49c" + }, + "professor_name": "Matthew Witter", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "This professor is so understanding and caring. He is also funny at times and listening to his lectures is actually fun. He is so easygoing and will not make you feel stressed. He is the best!!", + "pos": 0.35, + "neu": 0.602, + "neg": 0.048, + "_id": { + "$oid": "6711d465cd60fca157e5b49d" + } + }, + { + "text": "hes a good professor I would say that, the class itself isnt hard however it Is a upper level course so your going to have to put in some effort for example the 10-12 page paper and the presentation. Some of his jokes did feel a bit weird or the scenarios he would give were kind of awkward in a way. Maybe thats just me but I felt a bit uncomfy.", + "pos": 0.063, + "neu": 0.899, + "neg": 0.038, + "_id": { + "$oid": "6711d465cd60fca157e5b49e" + } + }, + { + "text": "Amazing professor, just what is needed in the semester. Clear assignments, makes sure you know your stuff and are learning. Very good assignments.", + "pos": 0.385, + "neu": 0.615, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b49f" + } + }, + { + "text": "This professor is awesome, he's super sweet and chill. He gives many opportunities to get an A. He gives 3 quizzes and a final exam, which are all super easy, 3 main written assignments, that are also easy and 1 easy presentation. Just do the work its not hard, go to class, and participate a lot with your group members. Overall, TAKE HIM !", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a0" + } + }, + { + "text": "Awesome professor who cares about his students. Makes sure you understand and do well in his courses. Easy to talk to and is very lenient with his assignments. He loves what he does, which makes him so good at it. You have to participate, it will work out in your favor! Hands down, one of the best psych professors ever!", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a1" + } + }, + { + "text": "Prof Witter is amazing! He is very easy going and fun! He makes 3 hours like a breeze. His tests can be a little tricky but if you study well you will pass well. He gives alot of extra credit! I truly recommend him if you want to understand psychology furthermore!", + "pos": 0.395, + "neu": 0.589, + "neg": 0.017, + "_id": { + "$oid": "6711d465cd60fca157e5b4a2" + } + }, + { + "text": "TAKE THIS PROFESSOR!!! You will not regret it. One of the best professors in CCNY.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a3" + } + }, + { + "text": "Professor Witter is a great person and truly one of the best professors CCNY has to offer. For this class, there was an online midterm, open book final, two chapter reflection essays, and a case study final paper. Instructions were clear, papers graded fairly, and exam questions based on powerpoints/notes from class. Professor is super helpful!", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a4" + } + }, + { + "text": "He is the sweetest and kindest professor ever.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a5" + } + }, + { + "text": "Dr. Witter was the best professor that I have had in CCNY's Psychology Department. Take his class he is awesome professor!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a6" + } + }, + { + "text": "Truly one of the best professors at CCNY, I highly recommend enrolling in one of his class. There was one final paper, presentation, quizzes, and final exam, which is fair. His lectures are entertaining, and even provides extra credit opportunities. He's my new favorite professor", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a7" + } + }, + { + "text": "If you are planning on going into the field of Psychology Dr. Witter will make your intro to clinical Psych experience an unforgettable one, what an amazing professor!. The lectures, assignments and group challenges felt more like opportunities to grow personally! you won't regret it!", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a8" + } + }, + { + "text": "He is one of the best teachers in the city college of New York psychology department. If you're able to take his class do it.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4a9" + } + }, + { + "text": "He does not give a lot of work throughout the semester but beware the final paper comes quicker than you think. Other than that I loved his class and enjoyed the way he care about the students having a good time and makes it easy for you to come out of your shell.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4aa" + } + }, + { + "text": "The professor is fantastic, and the materials and syllabus are very self-explanatory. If you pay attention and attend class regularly, you should be fine.", + "pos": 0.194, + "neu": 0.755, + "neg": 0.05, + "_id": { + "$oid": "6711d465cd60fca157e5b4ab" + } + }, + { + "text": "Great professor, very understanding and nice. He makes sure you understand the material!", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4ac" + } + }, + { + "text": "Excellent, top notch Professor. I suggest taking his classes very seriously, doing all the readings, and keeping up with all the assignments; he is understanding, but he also doesn't \"play\" around and is very prompt, as well. As long as you're prepared and willing to take on the workload, this professor is one the best that I've ever had.", + "pos": 0.211, + "neu": 0.732, + "neg": 0.057, + "_id": { + "$oid": "6711d465cd60fca157e5b4ad" + } + }, + { + "text": "Professor witter has been the best professor I had at CCNY", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4ae" + } + }, + { + "text": "Professor Witter is one of the most understanding professors at CCNY. He doesn't assign much homework either. Most of the homework we received was in the end and it was an appropriate amount of work considering we didn't have to do much in the beginning. Really sweet prof. I suggest everyone takes a class with him at least once or more if possible!", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4af" + } + }, + { + "text": "He is nice professor and understanding.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d465cd60fca157e5b4b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d466cd60fca157e5b4b2" + }, + "professor_name": "Karen Struening", + "rating": 3.8, + "department": "Political Science department", + "comments": [ + { + "text": "only 2 main papers, her lectures went by fast but most of the discussion was done during the ta's time. we also had tests on bb. midterm and final. the papers arent hard but they do require time. you NEED the textbook in order to be successful, a lot of the questions on the tests are based on the textbook. very understanding.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4b3" + } + }, + { + "text": "This professor is caring lady but sometime bit of mess which is not too important .All slides and study materials are available on the blackboard, which is helpful for the class. Midterms are online, and three papers (not too difficult) & TA discussions. Just do your best, and then you will be fine. you got this!", + "pos": 0.236, + "neu": 0.691, + "neg": 0.072, + "_id": { + "$oid": "6711d466cd60fca157e5b4b4" + } + }, + { + "text": "She's okay not really much to say about her or her class. The tests are all online and the paper are easy and reasonable. Her lectures are posted on blackboard. The TA's class is mostly discussion.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4b5" + } + }, + { + "text": "If you are looking to take her for PSC 101, do it. Don't listen to any of the bad ratings. This was genuinely one of the easiest A's I ever got in my life ( I no joke attended 3 lectures total all semester, whoops.) It's 3 ridiculously easy papers, and some online quizzes (based directly off articles she gives,) and an online midterm.", + "pos": 0.079, + "neu": 0.814, + "neg": 0.107, + "_id": { + "$oid": "6711d466cd60fca157e5b4b6" + } + }, + { + "text": "I don't even know where to begin, she was my first D. Concrete white savior complex.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4b7" + } + }, + { + "text": "Was a complete mess and very confusing when it came to giving assignments. Absolutely horrible.", + "pos": 0.11, + "neu": 0.503, + "neg": 0.388, + "_id": { + "$oid": "6711d466cd60fca157e5b4b8" + } + }, + { + "text": "worst professor ever, she does not considered her students, her classes are always a mess because her behavior management skills are lacking, she is a very inconsiderable grader and does not stop to clarify confusion during her lectures. Do yourself the favor and don't take her.", + "pos": 0.084, + "neu": 0.754, + "neg": 0.162, + "_id": { + "$oid": "6711d466cd60fca157e5b4b9" + } + }, + { + "text": "worst professor ever, she does not considered her students, her classes are always a mess because her behavior management skills are lacking, she is a very inconsiderable grader and does not stop to clarify confusion during her lectures. Do yourself the favor and don't take her.", + "pos": 0.084, + "neu": 0.754, + "neg": 0.162, + "_id": { + "$oid": "6711d466cd60fca157e5b4ba" + } + }, + { + "text": "I really appreciated this professor. Her lectures were not mandatory attendance. All assignments are online. I get extremely anxious taking exams in person so this was great for me personally. Made it extremely easy to get an A+. Super easy course. Don't be scared away by the name \"Karen.\" She isn't one. Extremely nice, intelligent lady.", + "pos": 0.312, + "neu": 0.608, + "neg": 0.08, + "_id": { + "$oid": "6711d466cd60fca157e5b4bb" + } + }, + { + "text": "really nice professor. we had asynchronous assignements sometimes and there was 5 question bb quiz & they were pretty easy. We had no TA this semester. the tests were straightforward and not that hard. honestly would take her again", + "pos": 0.218, + "neu": 0.685, + "neg": 0.097, + "_id": { + "$oid": "6711d466cd60fca157e5b4bc" + } + }, + { + "text": "She gave me C+ when I really shouldve gotten like a B. I appreciate how she gave us extra time when needed but still I didnt appreciate the way she explained her instructions", + "pos": 0.102, + "neu": 0.819, + "neg": 0.079, + "_id": { + "$oid": "6711d466cd60fca157e5b4bd" + } + }, + { + "text": "She is a great professor; however, she can sometimes struggle with technology. She is very understanding if you give an accaptable excuse with a reasonable amount of time. She gave about 4 papers in total including the final. She gives both Asynchronists work which is followed up with a Blackboard quiz. Overall it is a chill class.", + "pos": 0.088, + "neu": 0.875, + "neg": 0.037, + "_id": { + "$oid": "6711d466cd60fca157e5b4be" + } + }, + { + "text": "At first, I thought I wasn't going to pass this class, but she ended being a good professor. She knows what she is teaching. She explains really well and is very understanding. The papers and exam essays are your key to passing this class. If you get a good TA, pay attention to the lectures and study the review sheets, you should be fine.", + "pos": 0.177, + "neu": 0.802, + "neg": 0.022, + "_id": { + "$oid": "6711d466cd60fca157e5b4bf" + } + }, + { + "text": "Professor is really caring towards the students and have office hours open to ask for additional questions or clarifications. But be aware of the TA graders, I got D on both of my papers and its not clear on how theyre grading you. Overall, My advice is: Be attentive and ask questions to gain more knowledge about things.", + "pos": 0.106, + "neu": 0.851, + "neg": 0.043, + "_id": { + "$oid": "6711d466cd60fca157e5b4c0" + } + }, + { + "text": "She's really understanding she extended deadlines for our class multiple times. Around 5 papers but they're not that difficult if you use her PowerPoints and follow directions. Go to office hours if you're confused she won't hesitate to help. As long as you do your work you'll get a good grade. Not sure why everyone is complaining about TAs lol.", + "pos": 0.166, + "neu": 0.694, + "neg": 0.14, + "_id": { + "$oid": "6711d466cd60fca157e5b4c1" + } + }, + { + "text": "great Prof", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4c2" + } + }, + { + "text": "The processor herself is really nice and understanding but the papers are graded harshly to a point that can drag your final grade (if you are taking this course, not as a requirement but just for credit then don't take it ,tricky to get an A with those graders)", + "pos": 0.131, + "neu": 0.826, + "neg": 0.043, + "_id": { + "$oid": "6711d466cd60fca157e5b4c3" + } + }, + { + "text": "The professor is really understanding and helpful! But beware of be TAs lol.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4c4" + } + }, + { + "text": "Honestly live this teacher she is so understanding", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4c5" + } + }, + { + "text": "Good professor, easy to understand and her lectures aren't bad either, messy but not bad. The problem is that the TA is the one grading the papers, and they grade extremely harsh.", + "pos": 0.324, + "neu": 0.577, + "neg": 0.099, + "_id": { + "$oid": "6711d466cd60fca157e5b4c6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d466cd60fca157e5b4c8" + }, + "professor_name": "Joseph Bak", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "He was a great professor. He makes his own exams and gives you a sample exam thats very similar which helps you a ton. Would reccomend if your trying to pass. You do have to put in the work.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4c9" + } + }, + { + "text": "The course is a lot of work, but Prof Bak's lectures are clear and informative. He tries hard to answer everyone's questions, both after class and during office hours, and gives helpful feedback on tests and homework. If you're prepared to work hard, you will learn a lot.", + "pos": 0.17, + "neu": 0.773, + "neg": 0.058, + "_id": { + "$oid": "6711d466cd60fca157e5b4ca" + } + }, + { + "text": "He's amazing. The materials are tough, but the exam is based on HW and what he emphasized in the lecture. Gives a lot of partial credits. Take him.", + "pos": 0.177, + "neu": 0.784, + "neg": 0.039, + "_id": { + "$oid": "6711d466cd60fca157e5b4cb" + } + }, + { + "text": "Took him last fall(2019) for math 328. While attendance is not mandatory I STRONGLY advise that you show up. It's hard to keep up with taking notes but make sure you do, and in an understandable fashion because that's the key to an A. He goes over several methods in class that will make your life easier during the exams and final. Fair grader.", + "pos": 0.134, + "neu": 0.81, + "neg": 0.056, + "_id": { + "$oid": "6711d466cd60fca157e5b4cc" + } + }, + { + "text": "Course was pretty hard including vector calculus and linear algebra, but Prof. Bak did a good job covering all the material and preparing for the group final.", + "pos": 0.191, + "neu": 0.77, + "neg": 0.039, + "_id": { + "$oid": "6711d466cd60fca157e5b4cd" + } + }, + { + "text": "This class is not super difficult but heavy material and prof Bak is extremely messy on board and organization of the lesson. Even if you study yourself you cannot put the materials together correctly in big cluster. His handwriting is illegible and he talks to himself very low (almost mutters). You might pass the class but never enjoy math", + "pos": 0.023, + "neu": 0.796, + "neg": 0.181, + "_id": { + "$oid": "6711d466cd60fca157e5b4ce" + } + }, + { + "text": "Prof. Bak really knows his stuff and is an excellent pedagogue. \"Complex Analysis\" is a tough course, especially for undergrads, but Prof. Bak explains the material well. Grade based on a midterm and final, which are hard, but doable if you keep up with the work. He can answer any question about the material and is happy to meet outside of class.", + "pos": 0.144, + "neu": 0.815, + "neg": 0.041, + "_id": { + "$oid": "6711d466cd60fca157e5b4cf" + } + }, + { + "text": "His lectures get messy because he writes all over the place and often goes off topic. Not enough time for the tests.", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d466cd60fca157e5b4d0" + } + }, + { + "text": "easy to pass, tests were okay but he definitely does not care about attendance . He is not the best at teaching because he gets off topic a lot but he tries to pass you as best as he can !", + "pos": 0.233, + "neu": 0.625, + "neg": 0.143, + "_id": { + "$oid": "6711d466cd60fca157e5b4d1" + } + }, + { + "text": "The homework he gives is really easy. However, his exams are almost impossible. He gives only 5 questions and each has two parts. If you dont know how to solve part a, then you can easily lose 20 pts. He teaches good but exams can screw you.", + "pos": 0.139, + "neu": 0.795, + "neg": 0.067, + "_id": { + "$oid": "6711d466cd60fca157e5b4d2" + } + }, + { + "text": "He is the best math teacher I have ever had. I never felt alive and inspired before in any math class. If you study hard, you will enjoy his classes", + "pos": 0.271, + "neu": 0.638, + "neg": 0.091, + "_id": { + "$oid": "6711d466cd60fca157e5b4d3" + } + }, + { + "text": "LOVEEE HIMM!!! one of the best math professors at city. He's caring and knows how to teach!!", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4d4" + } + }, + { + "text": "Among the math professors at City College. Highly recommend Dr. Bak for any of your math classes. Numerical Analysis was an easy class, and Dr. Bak made it very clear to understand the various methods to solve problems. Take him for any classes if you can!", + "pos": 0.196, + "neu": 0.754, + "neg": 0.05, + "_id": { + "$oid": "6711d466cd60fca157e5b4d5" + } + }, + { + "text": "If you can handle fast-paced, chaotic instruction, then Bak is your guy. He is the math-kid's dream professor. But if you prefer slow, even-headed teaching where someone spoon-feeds you concepts in an organized manner then you're better off reading the book and studying on your own. Exams aren't that hard if you study; study hard, that is.", + "pos": 0.109, + "neu": 0.832, + "neg": 0.059, + "_id": { + "$oid": "6711d466cd60fca157e5b4d6" + } + }, + { + "text": "Best professor, period. Unlike most math professors, he has the art of speaking and clarifying the material. Those who dislike the professor's teaching are simply lazy students that probably hate math and blame the instructor for poor performance. Do your work, listen to lectures attentively and you'll do good. Very nice guy as well, 5 stars.", + "pos": 0.167, + "neu": 0.639, + "neg": 0.194, + "_id": { + "$oid": "6711d466cd60fca157e5b4d7" + } + }, + { + "text": "The way he teaches seems confusing to me. He seems disorganized with his teaching.", + "pos": 0.0, + "neu": 0.745, + "neg": 0.255, + "_id": { + "$oid": "6711d466cd60fca157e5b4d8" + } + }, + { + "text": "To be honest, he's average. His lectures a bit confusing but if you do the homework and study at least a week before the tests, you'll be fine. I don't go to all the lectures but study from the homework a lot and get good grades on the tests. Stuff gets complicated after the first test so don't slack on homework after it.", + "pos": 0.119, + "neu": 0.859, + "neg": 0.021, + "_id": { + "$oid": "6711d466cd60fca157e5b4d9" + } + }, + { + "text": "Lectures were very clear. The material was pretty boring but it turned out to be pretty useful for computer science classes this semester. Professor is fair; he drops the lowest exam grades and makes the final exam pretty much the same as the questions on the three in-class exams.", + "pos": 0.297, + "neu": 0.626, + "neg": 0.077, + "_id": { + "$oid": "6711d466cd60fca157e5b4da" + } + }, + { + "text": "best class ever.....I learned more in this course (even though I only got a B) than I did in any other course (even when I got an A)", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d466cd60fca157e5b4db" + } + }, + { + "text": "This professor sometimes jokes a lot about mathematics. But I wasn't amazed on how he taught Numerical Analysis better than Marchese. Numerical Analysis is a challenging course. Take your time to learn all the methods in the summer, and you will be good for the entire course.", + "pos": 0.196, + "neu": 0.743, + "neg": 0.061, + "_id": { + "$oid": "6711d466cd60fca157e5b4dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d467cd60fca157e5b4de" + }, + "professor_name": "Edward Keller", + "rating": 3.5, + "department": "Media Arts department", + "comments": [ + { + "text": "As long as you show up and take notes, you will succeed in this class. He wants what he says, exactly how he says it, in the papers. Not a tough class, quite easy. He offers re-writes on the papers which is nice of him, considering he doesn't have to do that.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4df" + } + }, + { + "text": "Professor Keller is honestly a chill guy, willing to help if you have any questions, offers rewrites on homework. The class was nice, not too much work, he doesn't post many materials on blackboard most of the assignments are what he discusses in class so you probably won't get As on the homework unless you take notes/write exactly what he wants.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4e0" + } + }, + { + "text": "Prof. Keller was honestly one of the best professors I've ever had. He's extremely knowledgeable about what he teaches and deserves great respect. He offers rewrites for papers if you'd like to improve your scores; his course is very hard to fail (unless you skip class, don't pay attention, or don't bother engaging in class/with the material given)", + "pos": 0.298, + "neu": 0.605, + "neg": 0.097, + "_id": { + "$oid": "6711d467cd60fca157e5b4e1" + } + }, + { + "text": "Keller is easy to talk to, funny, and nice but his lectures were long and very repetitive. He talks about the same things in each class. If you just showed up to one class, did the homework, and read a bit of the textbook you're probably going to pass. But if you want a more engaging class then I wouldn't recommend Keller.", + "pos": 0.151, + "neu": 0.77, + "neg": 0.079, + "_id": { + "$oid": "6711d467cd60fca157e5b4e2" + } + }, + { + "text": "Very lecture heavy and repetitive. Does not use slides and the class is overall very boring. The assignments aren't hard and you have a chance to redo them but don't expect A's unless you answer exactly how he wants you too. Very much a boomer and is kinda discouraging when it comes to advertising now a days.", + "pos": 0.043, + "neu": 0.848, + "neg": 0.109, + "_id": { + "$oid": "6711d467cd60fca157e5b4e3" + } + }, + { + "text": "Prof. Keller is funny and likes to weave his practical experience into the lesson. However, he has like 3 favorite stories he alternates between. Repetitive but always funny. It does seem like he hates digital but you will see why the more you attend class. Also, his assignment instructions are minimalistic (no word count and 2 sentence prompt)", + "pos": 0.229, + "neu": 0.695, + "neg": 0.076, + "_id": { + "$oid": "6711d467cd60fca157e5b4e4" + } + }, + { + "text": "Professor Keller is absolutely awful. He only keeps on talking in class without any slides and always goes off-topic while lecturing. He never uploads slides to the blackboard and you have to constantly remind him to upload. He always gives you low grades on assignments but never gives you any feedback to improve. Horrible professor try to avoid it", + "pos": 0.056, + "neu": 0.782, + "neg": 0.163, + "_id": { + "$oid": "6711d467cd60fca157e5b4e5" + } + }, + { + "text": "Basically every class this professor gives lectures, sometimes they are repetitive, sometimes they are interesting. Overall he is a good guy and will mostly teach you old school advertising. The class was not hard at all, he is reasonable and I never felt stressed about assignments.", + "pos": 0.172, + "neu": 0.789, + "neg": 0.039, + "_id": { + "$oid": "6711d467cd60fca157e5b4e6" + } + }, + { + "text": "Professor Keller is knowledgeable in his specialties like Advertising. You will learn throughout his class that he pretty much wants you to write in papers his opinions not your own ideas. If you do that you will get an easy A. Take notes on his lectures!!!", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4e7" + } + }, + { + "text": "Where to begin... Prof Keller is an amazing human being. However, my complaint is I feel like I wasted a semester taking his class. Every class is the same lecture. He has 1/2 power-points that are incredibly un-detailed that he pulls up from time to time. He then expects you to be an expert after this. Grading criteria is unclear. Waste of time.", + "pos": 0.086, + "neu": 0.776, + "neg": 0.139, + "_id": { + "$oid": "6711d467cd60fca157e5b4e8" + } + }, + { + "text": "This guy is the epitome of a baby boomer whos stuck in his hay days. We maybe discussed 3 topics bc this guy LITERALLY REPEATS THE SAME THING EVERYDAY. Its frustrating bc ik adv. can be interesting but he's extremely biased + puts down the adv. of today + of its potential future. Nevertheless, bc he barely talks about anything new, hes an easy A...", + "pos": 0.079, + "neu": 0.831, + "neg": 0.091, + "_id": { + "$oid": "6711d467cd60fca157e5b4e9" + } + }, + { + "text": "Once you pay attention and do the assignments you will pass. He uses old school approach and you may not understand his point until you are actually in the field. He's opinionated but allows you to speak your truth. He's understanding and will not fail you.", + "pos": 0.132, + "neu": 0.844, + "neg": 0.024, + "_id": { + "$oid": "6711d467cd60fca157e5b4ea" + } + }, + { + "text": "This man is a goat. I've been an Alumni for 2 years now and have learned that the advertising industry is a subjective field. With Prof Keller you get the most authentic approach(IMO) to an industry that has been in races to win back public perception. With the dishonesty in today's politics, Keller is teaching students how to be great advertisers.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4eb" + } + }, + { + "text": "He is a good man but not the best teacher. Repeats the same thing every class. The class is not based on facts but on his opinions.", + "pos": 0.062, + "neu": 0.794, + "neg": 0.144, + "_id": { + "$oid": "6711d467cd60fca157e5b4ec" + } + }, + { + "text": "Super passionate old-school ad man. I took him for a few classes. Every class is a lecture, straightforward. Grades consist of a midterm, final, and some 2-3 page essays he sprinkles in through the semester. The exams are easy if you pay attention. He's a bit tougher on the papers but he gives plenty of feedback and lets you rewrite them.", + "pos": 0.122, + "neu": 0.86, + "neg": 0.018, + "_id": { + "$oid": "6711d467cd60fca157e5b4ed" + } + }, + { + "text": "Keller is an incredible influence in the Ad field. He brings an authenticity that often lacks in Advertising. Yes, he talks a lot about his personal life - learn from it! No, you don't really need the textbook - at all! Take notes on common sense things. Meet inspiration. Absolutely recommend him to anyone starting or continuing in this field.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4ee" + } + }, + { + "text": "Professor Keller is not your average professor. If you truly want to understand the heart of advertising, you should take him. If you want a predictable class by the textbook take someone else. He makes you think critically about the industry and George Lois was a guest speaker at my class. Plus Prof. Keller is caring and tells good stories.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4ef" + } + }, + { + "text": "He is a good professor. Yes, he is a lecture professor so you do have to take notes of the key points but ideally if you listen and understand the message that he trying to convey, you will get a good grade. Beware he is a little traditional but he actually has some good points. I took him twice as a teacher and would take him again. Take Notes!!!", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4f0" + } + }, + { + "text": "The class was frustrating because he is a good person... but has clearly lost his touch as a teacher. Passionate about the subject but it didn't feel like he was teaching most times, talked about same things very often. Class lacked structure, and he barely referenced the book so that was a waste of money, just seemed like class was sort of a joke.", + "pos": 0.192, + "neu": 0.671, + "neg": 0.137, + "_id": { + "$oid": "6711d467cd60fca157e5b4f1" + } + }, + { + "text": "I was advised not to take Keller because I wouldn't learn anything except for his personal life, and this is partially true. His \"lectures\" are anecdotes and praise to George Lois. He gives out minimal homework and the midterm/final do weigh a lot in his class. Love him, but if you want to really learn about advertising take someone else.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4f2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d467cd60fca157e5b4f4" + }, + "professor_name": "David John", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "Very fair class. Notes uploaded after lectures. Regular homework and quizzes. Exams are extremely fair. Creates a calm and good vibe environment. His lectures are straightforward. FYI, he may initially try to scare you into thinking it will be hardcore course, don't panic. Put in the work and you will do fine. Can't stress enough, highly recommend.", + "pos": 0.336, + "neu": 0.621, + "neg": 0.043, + "_id": { + "$oid": "6711d467cd60fca157e5b4f5" + } + }, + { + "text": "Great professor, be prepared to dedicate some time after class to really understand the material. Quite a bit of homework but really helps you to understand, and quizzes are based on it. Tests should be easy as long as you study past quizzes and homework. Very caring professor and doesn't want to leave anyone behind. Easily the best math professor.", + "pos": 0.337, + "neu": 0.647, + "neg": 0.017, + "_id": { + "$oid": "6711d467cd60fca157e5b4f6" + } + }, + { + "text": "David's a very fair professor, and I thoroughly enjoyed the class. His class is inviting for discussion and friendly manners, and his class is easy as long as you pay attention and do the work. Exams follow similarly to the questions on hw, quizzes, and notes, so if you review them, you'll be solid. However, if you don't study, you will fail.", + "pos": 0.216, + "neu": 0.719, + "neg": 0.065, + "_id": { + "$oid": "6711d467cd60fca157e5b4f7" + } + }, + { + "text": "Super cool guy, treats you like a peer rather than a student. Uploads all his notes to a dropbox folder so they're easily accesible after class. Uploads lots of homework, if you do the homework you'll be fine for the exams and quizzes. Gives extra credit here and there to boost your grade. Tests are fair if you just do the work and review the notes", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4f8" + } + }, + { + "text": "Take David if you get the chance. His courses are nicely structured and he sets you up to do well. You can expect homework every night (this is a good thing) and frequent quizzes, which help prepare you for the exams. He's a big personality and likes to joke around, but he seriously cares about his students and the material.", + "pos": 0.235, + "neu": 0.735, + "neg": 0.03, + "_id": { + "$oid": "6711d467cd60fca157e5b4f9" + } + }, + { + "text": "Lectures felt like an open discussion, so there wasn't any pressure when asking questions during class. The homework assignments made it easy to learn concepts I missed or misunderstood during class. There were frequent quizzes that reflected the exact topics on the midterms, which made it easy to review for the final exam.", + "pos": 0.165, + "neu": 0.761, + "neg": 0.074, + "_id": { + "$oid": "6711d467cd60fca157e5b4fa" + } + }, + { + "text": "Final had me sweating.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4fb" + } + }, + { + "text": "Professor Dj was absolutely goated this semester. His lectures were clear, he uploaded notes, and gave us review questions in order to prepare for the midterms. He is super lenient with partial credit on quiz, midterm and even the final. I believe he dropped our lowest midterm (out of 4), 3 lowest quiz, and 4 hw grades. I would highly recommend Dj.", + "pos": 0.189, + "neu": 0.741, + "neg": 0.07, + "_id": { + "$oid": "6711d467cd60fca157e5b4fc" + } + }, + { + "text": "dude always was eating sandwiches while trying to lecture us", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4fd" + } + }, + { + "text": "He is a really good professor his lectures are great and clear. If you still need help you can go for office hours. He is funny and entertaining.", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b4fe" + } + }, + { + "text": "Overall he is probably the best professor to take this class with. He is nice and you can talk to him and ask questions at his office hours. This is a class you NEED to study for if you're not good at math and he's pretty fair with tests. If you complete the study guides you'll do just fine on the tests, study the concepts don't memorize.", + "pos": 0.184, + "neu": 0.785, + "neg": 0.031, + "_id": { + "$oid": "6711d467cd60fca157e5b4ff" + } + }, + { + "text": "It is a good professor. He gives review packages and encourages students to go to workshops and tutoring, which will help. It is not an easy A class if you do not have a strong math foundation and you need to put in work, but you need it for future math classes. He is motivating, and he will help you succeed if you put in the work.", + "pos": 0.222, + "neu": 0.733, + "neg": 0.044, + "_id": { + "$oid": "6711d467cd60fca157e5b500" + } + }, + { + "text": "Extremely good professor, teaches exceptionally well and is clear on what's going to be on the exams and how to study for them. He has great tutors under him that can help you if you're having trouble with homework or if you don't understand a topic at the Artino Lab. He owes me 20 bux tho", + "pos": 0.221, + "neu": 0.739, + "neg": 0.04, + "_id": { + "$oid": "6711d467cd60fca157e5b501" + } + }, + { + "text": "Lot of homework, but he's a great professor. Tests are very similar to the reviews he gives out.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b502" + } + }, + { + "text": "He's ok but has some issues such as\n-takes forever to grade and it gets annoying especially when he says he'll grade by a certain day and then posts grades much later \n-it took him 2 months to fix quiz/test grades for alot of students \n-constantly lies (will say he will post something by a day and then doesn't) \nOverall he's ok, just do the work", + "pos": 0.058, + "neu": 0.844, + "neg": 0.099, + "_id": { + "$oid": "6711d467cd60fca157e5b503" + } + }, + { + "text": "Overall a great professor. Gives a lot of homework however its good practice and does prepare you for midterms and the final. TA's were great helpful. Overall not too bad, would recommend taking him.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b504" + } + }, + { + "text": "best professor take him trust", + "pos": 0.714, + "neu": 0.286, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b505" + } + }, + { + "text": "He's a lecture-heavy professor posts but note for every session. He also gives homework heavily but can extend it if needed. He got multiple TAs for help, Also after-hours. He gives some extra credit at the end. \n\n\nMultiple quizzes (online), 3 exams, one midterm, and one Final. Pay attention and go over the review and you'll pass easily.", + "pos": 0.181, + "neu": 0.795, + "neg": 0.024, + "_id": { + "$oid": "6711d467cd60fca157e5b506" + } + }, + { + "text": "Had him for Fall 2023. His lectures are easy to understand, and he provides his notes as well as practice exams. He really provides a lot of tools useful for passing the class, it is just up to you to take advantage of them. The practice exams are harder than the actual exams, so take them. Just do the work and participate, and you'll be fine.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d467cd60fca157e5b507" + } + }, + { + "text": "His class is so easy because if you put in just a little bit of effort you can pass. His practice exams are always much more difficult than real ones making the exams easier. He is an entertaining professor and is generous with the opportunities he offers. Very accessible when it comes to office hours but for the life of him can't respond to emails", + "pos": 0.143, + "neu": 0.83, + "neg": 0.027, + "_id": { + "$oid": "6711d467cd60fca157e5b508" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d468cd60fca157e5b50a" + }, + "professor_name": "Hamideh Sedghi", + "rating": 3.4, + "department": "Political Science department", + "comments": [ + { + "text": "Stay away. Despite very interesting topics she dissuaded my passion for learning. Completely arrogant inflexible and uncaring, she created an environment that I dreaded so much. She cared more about her protocols than teaching well, was unprofessional rude disorganized unavailable by email and very combative with students. I do not recommend", + "pos": 0.144, + "neu": 0.568, + "neg": 0.288, + "_id": { + "$oid": "6711d468cd60fca157e5b50b" + } + }, + { + "text": "Professor is brilliant, critical, and highly accessible. She is serious about her materials and goes deeply into explaining them. She encouraged us to learn and think for ourselves. I will keep my notes from her class for ever, even when I go to grad school next year. Thank you Professor.", + "pos": 0.153, + "neu": 0.784, + "neg": 0.063, + "_id": { + "$oid": "6711d468cd60fca157e5b50c" + } + }, + { + "text": "Rudest and most condescending person I have come across anywhere. Regret taking this class and the amount of anxiety interacting with her brought into my life. Save yourself the trouble.", + "pos": 0.082, + "neu": 0.643, + "neg": 0.275, + "_id": { + "$oid": "6711d468cd60fca157e5b50d" + } + }, + { + "text": "Not accessible outside class. I've emailed her many times and she never ever responded. Very condescending and rude and always thinks she's right no matter what. Will scream at you and talk over you. Although she is an easy A theres many other classes that are way more worth it. Don't bother wasting your time with her.", + "pos": 0.141, + "neu": 0.753, + "neg": 0.106, + "_id": { + "$oid": "6711d468cd60fca157e5b50e" + } + }, + { + "text": "She rude and doesn't allow her students to get up to use the restroom or even drink water.Everything is her way and she believes that she's always right.She claims that that's \"disrespectful.\" A student here in the library asked me a question and the professor called me out for helping. Even Moving your mouth even bothers her.", + "pos": 0.036, + "neu": 0.859, + "neg": 0.105, + "_id": { + "$oid": "6711d468cd60fca157e5b50f" + } + }, + { + "text": "Spare yourself + she writes her own reviews lol.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b510" + } + }, + { + "text": "Very interesting and engaging. Learned alot and will take her again.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b511" + } + }, + { + "text": "Professor Sedghi can give nice lectures but she's difficult to communicate with. Late emails, made students cry, always believes she's right, grading was late, offered no feedback, etc. If you have learning difficulties, DO NOT TAKE HER. She will not accommodate! Trust the negative reviews. I believe she writes her own positive reviews.", + "pos": 0.092, + "neu": 0.611, + "neg": 0.297, + "_id": { + "$oid": "6711d468cd60fca157e5b512" + } + }, + { + "text": "TRUST LOWER RATING the course is survivable but the professor is not professional. it's true she is arrogant, stubborn, and inconsiderate, doesn't respond quickly to emails, is terrible at managing time. interesting topics but there is too much content she wants you to digest before the next class. forces your camera to be on, -5% for every absence", + "pos": 0.079, + "neu": 0.65, + "neg": 0.271, + "_id": { + "$oid": "6711d468cd60fca157e5b513" + } + }, + { + "text": "This was a very engaging and interesting course. Theories and case studies were awesome and we actually had to learn hoe to research and write papers. I learned more than I asked for. Will take this professor again.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b514" + } + }, + { + "text": "We learned alot of IR and IO theories which we had to use in our papers. The course required thinking and reading new theories that I appreciated. It was unique to rely on both theory and empirical studies and I am so happy for the new knowledge. She is a great political science professor that I recommend and will take again.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b515" + } + }, + { + "text": "I love the readings and the lectures. I feel I'm learning so much that my head is EXPANDING! Awesome.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b516" + } + }, + { + "text": "I love this course. Professor encouraged us to participate by asking questions about the readings and our opinions on the readings. She is very nice and friendly and tried hard to get us engage with each other. I love this course and professor's method of teaching.", + "pos": 0.33, + "neu": 0.647, + "neg": 0.023, + "_id": { + "$oid": "6711d468cd60fca157e5b517" + } + }, + { + "text": "Excellent class, excellent professor. I have been doing all the readings, going to class on time and participate in class. I enjoy the professor and the class. Professor is extremely helpful. I am here to learn and am proud to have such a knowledgeable professor. I will take as many classes that I can with her. Thank you Professor", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b518" + } + }, + { + "text": "She's very knowledgeable in the topic however, her attitude makes the class miserable. She is very rude to students and yells at students for asking questions. She doesn't respond to emails. She has a very condescending tone when she speaks to the students. Top 3 worst classes I've ever taken.", + "pos": 0.031, + "neu": 0.788, + "neg": 0.181, + "_id": { + "$oid": "6711d468cd60fca157e5b519" + } + }, + { + "text": "Professor Sedghi is rude, impatient, arrogant, and very frequently yells over people for no reason at all. She has such poor personal interaction skills, it is a wonder she is still allowed to teach.", + "pos": 0.0, + "neu": 0.679, + "neg": 0.321, + "_id": { + "$oid": "6711d468cd60fca157e5b51a" + } + }, + { + "text": "Prof Sedghi is expert in her field no doubt. As a prof she is rude, goes off topic a lot, interrupts students, isn't accessible outside class and does not grade fast. I remember one class we read news headlines the entire time. She contacts through blackboard, only automatic when notifications are sent. Expect tech difficulties from her.", + "pos": 0.034, + "neu": 0.847, + "neg": 0.12, + "_id": { + "$oid": "6711d468cd60fca157e5b51b" + } + }, + { + "text": "Read every 1-star review she has. They are all true. She's absolutely terrible in every way imaginable. Super rude and absolutely insufferable. Do not take her under any circumstance for your own good.", + "pos": 0.218, + "neu": 0.636, + "neg": 0.145, + "_id": { + "$oid": "6711d468cd60fca157e5b51c" + } + }, + { + "text": "Ive never done a RMP I absolutely feel the need to warn every CCNY student about this professor. She is extremely rude, not responsive to emails , can never admit to being wrong, always yells and belittles students for asking questions First class she mispronounced a students name,and when she was corrected chuckled and said however you say that", + "pos": 0.033, + "neu": 0.792, + "neg": 0.176, + "_id": { + "$oid": "6711d468cd60fca157e5b51d" + } + }, + { + "text": "This class was the hardest class I ever took. I'm not a history person, but if you are you'd probably enjoy it. The professor lectures all class and it's hard to keep up. We have to read chapters from the textbook and watch long videos for homework. Discussion boards were not graded, and tests were timed wrong. She spoke over students a lot.", + "pos": 0.061, + "neu": 0.857, + "neg": 0.082, + "_id": { + "$oid": "6711d468cd60fca157e5b51e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d468cd60fca157e5b520" + }, + "professor_name": "G. Dordick", + "rating": 3.2, + "department": "Sociology department", + "comments": [ + { + "text": "Lectures are based off the reading, so you'll enjoy them if you do the read. Good note taking skills are crucial. Tests will have things from readings, but also stuff she mentions in lectures, so make sure to write things down. She's very reasonable and down to earth. Bad jokes, but entertaining nonetheless. Lots of extra credit opportunities.", + "pos": 0.274, + "neu": 0.663, + "neg": 0.063, + "_id": { + "$oid": "6711d468cd60fca157e5b521" + } + }, + { + "text": "Urban Sociology. Simple class. She is Great! Funny! But she no push over. The readings are long but this is college. Weekly reading responses and 1 written assignment. Midterm was a take home exam. Her lectures are only long and boring if you didn't read. Lectures are short and engaging if you did read. If you didn't read, don't miss class.", + "pos": 0.116, + "neu": 0.781, + "neg": 0.103, + "_id": { + "$oid": "6711d468cd60fca157e5b522" + } + }, + { + "text": "Nice lady, but VERY tricky exams. Not an easy A professor, one time she put 2 right answers in a m/c question and admitted it. But of course, she chose one to be the right answer. Attend all lectures, write everything she says down, only way to pass exams. Also do all the readings , its ALOT.", + "pos": 0.056, + "neu": 0.841, + "neg": 0.104, + "_id": { + "$oid": "6711d468cd60fca157e5b523" + } + }, + { + "text": "Contrast to what other reviews have said about her she is an amazing professor. Her lectures are very interesting and she provides easy to follow outlines for her content. She also gives pop quizzes and they allow for you to gain extra points for exams. She has one midterm, one final. Do what is needed and you will be fine.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b524" + } + }, + { + "text": "I think she's fair. Nothing extraordinary as a professor and not too low. Her exams were very detailed oriented but she does provide a lot of extra credit and chance to bounce your grade up. She is quite informative but the subject can be a bit boring sometimes if it's not your major. I wish she was more approachable as she can be off sometimes.", + "pos": 0.173, + "neu": 0.788, + "neg": 0.039, + "_id": { + "$oid": "6711d468cd60fca157e5b525" + } + }, + { + "text": "She's a great prof. I few reasonable papers. Test were a little difficult. Follow instructions and come to class. You will learn a lot.", + "pos": 0.145, + "neu": 0.777, + "neg": 0.078, + "_id": { + "$oid": "6711d468cd60fca157e5b526" + } + }, + { + "text": "Professor can be fairly difficult. She's not the easiest person to get along with but if you try hard and just don't be stupid you should be fine. Not an easy class if you're not interested in sociology, which I'm not.", + "pos": 0.115, + "neu": 0.668, + "neg": 0.216, + "_id": { + "$oid": "6711d468cd60fca157e5b527" + } + }, + { + "text": "She's amazing! Easy A if you follow directions/come to class. She's also very insightful! Loved this class.", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b528" + } + }, + { + "text": "Good Professor. Just be prepared to do a lot more than you envision. Plenty of difficult reading. Not an Easy A, at all!", + "pos": 0.166, + "neu": 0.655, + "neg": 0.179, + "_id": { + "$oid": "6711d468cd60fca157e5b529" + } + }, + { + "text": "Professor is a great for comprehension. Theories can be confusing but she'll be more than happy to elaborate. She can get really upset about attendance and not following directions. The blog post you MUST follow and you HAVE to attend each class on time because she gives pop quizzes on the readings at the Beginning- no mercy if you're late.", + "pos": 0.113, + "neu": 0.775, + "neg": 0.112, + "_id": { + "$oid": "6711d468cd60fca157e5b52a" + } + }, + { + "text": "Prof. D is amazing. If you enjoy theories and long readings that is. This class is all about theorists and their beliefs. It is very insightful and Prof. D presents it in a comical, interesting way. She is superb at her lectures and intelligent on this subject. Don't take it if you don't care about the subject. Duhhhh.", + "pos": 0.235, + "neu": 0.728, + "neg": 0.037, + "_id": { + "$oid": "6711d468cd60fca157e5b52b" + } + }, + { + "text": "Attendance is a must!!! Participation also matters. Her lectures are very long and she does not allow any electronics. She likes calling people out on phones. Not bad professor. She likes to tricks students on her tests, three test. Also cannot pass her class without attending lectures.", + "pos": 0.191, + "neu": 0.751, + "neg": 0.058, + "_id": { + "$oid": "6711d468cd60fca157e5b52c" + } + }, + { + "text": "She is the best professor I've ever met. Just follow all her instructions, do your homework/assignment and you will be fine. She is awesome!", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b52d" + } + }, + { + "text": "Great Experience!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b52e" + } + }, + { + "text": "Professor D is the female version of John Nash, the Princeton prof who inspired the movie The Beautiful Mind. It's rare to come across such brilliant faculty at the City College and since we don't pay Ivy tuition, her class by itself is worth the price of attendance. Prof D is insightful, caring , hilarious and yes she's challenging in a good way.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b52f" + } + }, + { + "text": "wooooooooo. Those article readings are so long my goodness. Exams are kinda hard even after i read every chapter and article she said. i actually liked writing her papers though. Those papers actually kept me interested in the material. She likes Short and straight to the point kind of assignments so that means no long papers. She's nice if you are", + "pos": 0.223, + "neu": 0.728, + "neg": 0.049, + "_id": { + "$oid": "6711d468cd60fca157e5b530" + } + }, + { + "text": "She is the worst professor ever, it's an intro class and she gives work more than 3000 level classes, very tough grader too... DONT TAKE HER!!", + "pos": 0.0, + "neu": 0.787, + "neg": 0.213, + "_id": { + "$oid": "6711d468cd60fca157e5b531" + } + }, + { + "text": "Do you care about your grades? Okay then it is settled!!! DO NOT TAKE HER!!! DO NOT!!! Ridiculously long readings.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d468cd60fca157e5b532" + } + }, + { + "text": "Worst professor ever. Tests are tough because they are based on everything she covers plus information in readings and textbooks, and the questions are very specific. She does not treat the course like an introductory one. Wish someone had warned me about her before I took the class. My gpa suffered a lot because of this class. DO NOT TAKE HER.", + "pos": 0.072, + "neu": 0.746, + "neg": 0.182, + "_id": { + "$oid": "6711d468cd60fca157e5b533" + } + }, + { + "text": "DO NOT TAKE HER. SHE GIVES LIKE 5 ARTICLES EACH 40 PAGES LONG AND THATS WHAT THE TESTS ARE ON. DO NOT TAKE UNLESS YOU WANT TO FAIL!!!!!!!", + "pos": 0.18, + "neu": 0.701, + "neg": 0.119, + "_id": { + "$oid": "6711d468cd60fca157e5b534" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d469cd60fca157e5b536" + }, + "professor_name": "Amy Kratka", + "rating": 4.7, + "department": "Judaic Studies department", + "comments": [ + { + "text": "She is such a lovely and caring professor. I was so happy taking her class for my last semester. Get ready to read! Stay up to date with the reading and take notes. Watch the films and take notes based on her lecture and you should pass the Midterm and Final. Which are simply just essays. her assignments are very mangeable and fun!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b537" + } + }, + { + "text": "Amy is the best! Cares a lot about her students and made me feel welcomed.", + "pos": 0.452, + "neu": 0.548, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b538" + } + }, + { + "text": "I really enjoyed taking her flqws class fall of 2023. She was so sweet and caring like a mother. It was a such a joy taking her class my first semester of college. I wish her many blessings", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b539" + } + }, + { + "text": "Honestly, such a sweet professor, there are 3 major paper assignments, but it's not too hard because you get a lot of time and feedback. We had to do readings and discuss the material, Prof Kratka is extremely knowledgeable and interested in what she teaches. We always have fun, interesting conversations in her class. I definitely recommend her!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b53a" + } + }, + { + "text": "Such a sweet lady, just read what she assigns and in class we just spoke about it and yeah light work", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b53b" + } + }, + { + "text": "One of the best professors in CCNY", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b53c" + } + }, + { + "text": "She really cares about her students and their academic growth. Easy and caring. Reading is recommended, at least summaries, so you can participate in class. She really enjoys discussions of books. 3 papers & be ready to read excerpts from them out loud. Lots of reading", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b53d" + } + }, + { + "text": "Professor Kratka was really annoying about having your camera on. She mentioned it many times each class, but wouldn't make it mandatory. Overall the class wasn't difficult, we had 3 papers, but to read a whole novel was unrealistic to have done two days later (due every week essentially), in my opinion.", + "pos": 0.099, + "neu": 0.843, + "neg": 0.058, + "_id": { + "$oid": "6711d469cd60fca157e5b53e" + } + }, + { + "text": "Honestly one of the best professors in the Jewish Studies department here at CCNY. As long as you do everything youre supposed to, she will give you the grade you deserve. Take her class, you wont regret it!", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b53f" + } + }, + { + "text": "professor Kratka is very nice however her grading is very tough, she is all about reading books and writing a good paper. Make sure to always come to class and read all the books because of the paper.", + "pos": 0.188, + "neu": 0.771, + "neg": 0.041, + "_id": { + "$oid": "6711d469cd60fca157e5b540" + } + }, + { + "text": "Her class is like a book club so get ready to read! All you have to do is come in and participate or simply listen to the discussion on the reading, 3 papers throughout the course and you read one of them out loud. If you participate a lot & do your work then you should be able to manage to get an A in her class.", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b541" + } + }, + { + "text": "The feedback she gives will really help your paper and her lectures provide the lesser known information you wont find anywhere else", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b542" + } + }, + { + "text": "Prof Kratka is v sweet. I took her Jews in Film & Fiction class. Simply read the books, watch the films, and take notes. Her class is NOT hard to pass. If I worked harder in her course, I would have gotten an A rather than a B+. One mini paper, a midterm & final make up ur grade. Regurgitate info from class discussions in exams and you'll def pass.", + "pos": 0.059, + "neu": 0.941, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b543" + } + }, + { + "text": "Professor Kratka is an amazing person who truly cares about her students and how they do in class. Yet, her class is all over the place and she is unclear about grading and assignments. Although the content is not presented as difficult it is still hard to find a way to meet all of her expectations.", + "pos": 0.181, + "neu": 0.767, + "neg": 0.052, + "_id": { + "$oid": "6711d469cd60fca157e5b544" + } + }, + { + "text": "Prof. Kratka is one of the best professors at CCNY and I will highly recommend her. She treats everyone with respect and truly cares about every student. This class is not very easy, a lot of readings, 3 papers, and an oral presentation. She gives good and helpful feedback on the papers but at the same time, she is a very tough grader.", + "pos": 0.198, + "neu": 0.746, + "neg": 0.055, + "_id": { + "$oid": "6711d469cd60fca157e5b545" + } + }, + { + "text": "Professor Kratka is wonderful. She truly cares about all of her students and shows you what you are capable of. She helped me become a better writer by meeting with me outside of class to work on papers. You will not receive an easy A, but it is VERY possible to get one if you're willing to do the work. TAKE HER... every chance you get", + "pos": 0.16, + "neu": 0.817, + "neg": 0.024, + "_id": { + "$oid": "6711d469cd60fca157e5b546" + } + }, + { + "text": "Professor Kratka is one of the nicest people you'll meet. She treats each student with respect and she really cares about your ideas and opinions. Her classes are very enjoyable as they are like being in a book club, you sit around and discuss books in a casual and intellectual manner. No papers only a midterm and a final which are super easy.", + "pos": 0.33, + "neu": 0.643, + "neg": 0.027, + "_id": { + "$oid": "6711d469cd60fca157e5b547" + } + }, + { + "text": "I hate CCNY, but Dr. Kratka is the only reason I am excited to be attending school this semester. Her tests are kind of hard (a lot of writing), but other than that I loved this class. She's so well-versed and proficient. You can tell she loves what she teaches. There is a lot of reading, but it's doable. Just don't fall behind on the readings :)", + "pos": 0.211, + "neu": 0.736, + "neg": 0.053, + "_id": { + "$oid": "6711d469cd60fca157e5b548" + } + }, + { + "text": "Prof Kratka is very sweet. She does have you do a lot of readings so prepare for that, but it is nothing too hard you can't handle. Some of the books are enjoyable. She does a lot of talking about the book & that alone. No tests; just 2 mini papers, 1 research paper, and a 5 min presentation discussing a book to the class. Super easy", + "pos": 0.203, + "neu": 0.732, + "neg": 0.065, + "_id": { + "$oid": "6711d469cd60fca157e5b549" + } + }, + { + "text": "She is super sweet and passionate about the readings. She discusses them all in class and participation makes the class even better. She cares about your grade and how well you are doing. There is one paper, a midterm and final.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b54a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d469cd60fca157e5b54c" + }, + "professor_name": "Reza Pourmodheji", + "rating": 3.7, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Really poor in teaching, and also poor in social communications... He does think that the undergrad students have no brain, and he will belittle you first if you ask a question, then he might answer barely, and sometimes even irrelevantly... Not recommended to take any of his classes though... AVOID!", + "pos": 0.0, + "neu": 0.728, + "neg": 0.272, + "_id": { + "$oid": "6711d469cd60fca157e5b54d" + } + }, + { + "text": "I can never agree with the below rating! What? \"Outstanding\"??? Perhaps the student rating below is coming from another world. Professor Peter Ganatos teaches well, as I've heard from my friend; but Pourmodheji is very new to the field, and struggling while trying to teaching. Never again!", + "pos": 0.14, + "neu": 0.764, + "neg": 0.096, + "_id": { + "$oid": "6711d469cd60fca157e5b54e" + } + }, + { + "text": "He did an outstanding job with the lab part of the course. He would go over lectures from Ganatos just to make sure everyone grasped the concept. I enjoyed his exams and he give a lot of extra credit. I absolutely loved the project he assigned. Quizzes also helped with things taught during class and helped a lot with both midterms and the final.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b54f" + } + }, + { + "text": "Dr. Reza is one of the best professors in Grove. He cares about the subject he teaches, you can feel his enthusiasm and it makes you feel interested in system dynamics! He answers questions really thoroughly as well so if you are interested in this subject, you will have a great time. He also grades very leniently.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b550" + } + }, + { + "text": "Hes alright. not a fan of his lectures but he does enough for you to know how to do some problems. if you want to do well on the quizzes and the exams, you NEED to complete the HWs on your own. Theyre very similar to exams and quizzes.", + "pos": 0.103, + "neu": 0.805, + "neg": 0.092, + "_id": { + "$oid": "6711d469cd60fca157e5b551" + } + }, + { + "text": "I would recommend everyone. Great Professor!", + "pos": 0.633, + "neu": 0.367, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b552" + } + }, + { + "text": "Fantastic professor. The only thing you need to do is spend time on your homework's. If you put thought into the class, you will do well.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b553" + } + }, + { + "text": "Professor Reza is a really great, stays in subject, makes this class easy to understand, even though its not an easy class. Had this class last semester and was my best class. It's a curriculum class, but guarantee you will like it.", + "pos": 0.256, + "neu": 0.71, + "neg": 0.034, + "_id": { + "$oid": "6711d469cd60fca157e5b554" + } + }, + { + "text": "His teaching method is so chill and relaxed, it is very refreshing. Appreciated the fact that he took the time to explain some hard to understand topics. HW's labs and two exams, class was great! Highly recommend taking his classes.", + "pos": 0.281, + "neu": 0.691, + "neg": 0.028, + "_id": { + "$oid": "6711d469cd60fca157e5b555" + } + }, + { + "text": "Awesome class! awesome instructor, happy with my grade.", + "pos": 0.709, + "neu": 0.291, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b556" + } + }, + { + "text": "Great instructor, made the class a bliss!I wish CCNY gave him more classes.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b557" + } + }, + { + "text": "Thanks to one of the commenters below, as I searched for \"pourmodheji\" on the PubPeer, I noticed about his research problems (e.g., 2012 article) that got me very frustrated. I did not learn enough from this 411 class too. How you can see flows in someone's research work, and he can earn high ratings for teaching??? IMPOSSIBLE!!!", + "pos": 0.045, + "neu": 0.835, + "neg": 0.121, + "_id": { + "$oid": "6711d469cd60fca157e5b558" + } + }, + { + "text": "Professor Reza is a very gifted instructor. I enjoyed this class very much. He's so gifted that some of my peers were able to ace this class while they can barely spell, read, you name it, makes me wonder how competent they are if after graduation they have so much time to procrastinate. That shows that even the less bright can learned with him!", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b559" + } + }, + { + "text": "Yes, Professor pourmodheji is the BUST!", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b55a" + } + }, + { + "text": "Excellent Professor! I enjoyed and learned so much in this class. Clear and amazing lectures. Very kind Professor! I highly recommend Professor Pourmodheji.", + "pos": 0.546, + "neu": 0.454, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b55b" + } + }, + { + "text": "Professor Reza is a great professor and very caring ! He knows how to teach period! You only need one textbook that he provides, and we had two exams! plus homework's!Take him and you will learn so much!", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b55c" + } + }, + { + "text": "Prof. Pourmodheji is outstanding! Great lectures, he is very knowledgeable, if you need help, just reach out, he will help you. Just don't be late on assignments, as he is very firm on dates, but you have more than enough time to submit them,so don't wait till the last minute.I learned many things from this class that I will apply towards my career", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b55d" + } + }, + { + "text": "Amazing lecturer! Tough at times but you will learn lots!", + "pos": 0.244, + "neu": 0.654, + "neg": 0.102, + "_id": { + "$oid": "6711d469cd60fca157e5b55e" + } + }, + { + "text": "If you really want to learn how BRILLIANT is our professor Pourmodheji, just search his last name as \"Pourmodheji\" on \"PubPeer\" platform'search bar and see his excellent commented research works as well. You will enjoy it. I always wish him the BEST!", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d469cd60fca157e5b55f" + } + }, + { + "text": "Nowadays, there are bust Professors working hard in providing self-promotional comments on different online platforms, perhaps to use it for their employment. Good job though!", + "pos": 0.116, + "neu": 0.834, + "neg": 0.051, + "_id": { + "$oid": "6711d469cd60fca157e5b560" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46acd60fca157e5b562" + }, + "professor_name": "Danielle Carr", + "rating": 1.5, + "department": "English department", + "comments": [ + { + "text": "I learned nothing in this class I have never written a negative review before but this is just necessary,This professor was extremely disorganized, seemed to not even know what she assigns and has a really bad attitude. Everything is group work, the complete syllabus is for show and lectures are just her speaking from vague recollection of material", + "pos": 0.03, + "neu": 0.818, + "neg": 0.152, + "_id": { + "$oid": "6711d46acd60fca157e5b563" + } + }, + { + "text": "She was more focused on the attendance than anything else. You only had 5 min to join the meeting or you would be marked late, meanwhile a lot of times she would start the meeting late. She doesn't tolerate late assignments even if you have a reasonable excuse. she would mark it a 0. Stay away for your own sanity.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d46acd60fca157e5b564" + } + }, + { + "text": "This professor was SO disorganized. It was hard to figure out what assignments we had to do, where to find them, and how to do them. We had homework due on random days of the week and lots of them. Not the wrist professor, but definitely a headache. The course is so easy but she treated it like rocket science.", + "pos": 0.169, + "neu": 0.78, + "neg": 0.051, + "_id": { + "$oid": "6711d46acd60fca157e5b565" + } + }, + { + "text": "Horrible professor that gives bad directions and unnecessary work. Take class with different professor if you need this course.", + "pos": 0.0, + "neu": 0.708, + "neg": 0.292, + "_id": { + "$oid": "6711d46acd60fca157e5b566" + } + }, + { + "text": "Doesn't care about your circumstances, quick to give you a 0 but takes forever to grade turned in assignments.", + "pos": 0.0, + "neu": 0.908, + "neg": 0.092, + "_id": { + "$oid": "6711d46acd60fca157e5b567" + } + }, + { + "text": "By far the worst proff that you can have! She gives a trillion assignments that are due in a one week span, homework which she doesn't accept late (not even a MINUTE late) and homework due at random times, anything BESIDES 11:59. Also has a very nasty attitude! I had a horrible family emergency and she didnt let me do the assignments late.", + "pos": 0.0, + "neu": 0.775, + "neg": 0.225, + "_id": { + "$oid": "6711d46acd60fca157e5b568" + } + }, + { + "text": "I gave her a chance even though I had seen all the Rate My Professor, reviews, thinking she couldn't be that bad. She is a terrible teacher. She never gave us homework on time, and expected us to do it in time. She does not know how to give critiques, and she gives excessive homework, more than stem classes themselves. STAY AWAY.", + "pos": 0.072, + "neu": 0.881, + "neg": 0.046, + "_id": { + "$oid": "6711d46acd60fca157e5b569" + } + }, + { + "text": "I loved the actual assignments, but this class was unnecessarily hard for logistical reasons that she implements. Insane points off for being a few minutes late, four different sites for hw (given everyday) and instructions for them scattered everywhere, never provided feedback between first and final draft (only peer), and was super late grading.", + "pos": 0.124, + "neu": 0.794, + "neg": 0.082, + "_id": { + "$oid": "6711d46acd60fca157e5b56a" + } + }, + { + "text": "Ego maniac. She will berate you and torment you. Always looking to make herself feel superior and downgrade you. Never cares to actually teach or check up on her students. Absolutely awful. If you say something that goes against her 100% perfect never wrong answers she'll start making faces and cutting you off. Please as soon as you find out, leave", + "pos": 0.159, + "neu": 0.688, + "neg": 0.153, + "_id": { + "$oid": "6711d46acd60fca157e5b56b" + } + }, + { + "text": "Even if she is the only teacher available and u need the credit, I still don't recommend u take her. RUN!! She is so condensing and rude and likes everything to be particular. She will make your life a living hell, I promise. I took this class + CHEM 1 + CALC 3 + 2 LIB CLASSES and those classes combined were literally easier than hers. #iwarnedyou", + "pos": 0.137, + "neu": 0.74, + "neg": 0.123, + "_id": { + "$oid": "6711d46acd60fca157e5b56c" + } + }, + { + "text": "The professor assigns a ton of homework and projects that are assigned at odd times. She marks attendance extremely harshly. The explanations for project work is often unclear. Even if you do most assignments and consistently participate in class, you should anticipate a horrible grade.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d46acd60fca157e5b56d" + } + }, + { + "text": "She does attendance on the dot of of you're class time. If you are late to class by even a minute, she will mark you late. She also give a lot of work to do and can change when the assignment is due sometimes midday.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d46acd60fca157e5b56e" + } + }, + { + "text": "By far one of the most irritating professors of all time. She has a disgusting attitude, is very disrespectful, grades extremely unfairly, and assigns an extensive amount of pointless work. She would assign homework every single week all due at random times and wont grade them until months later. Do not take her you will regret it.", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d46acd60fca157e5b56f" + } + }, + { + "text": "Posted the syllabus late(about a month after the semester began), passive aggressive, will post assignments late and still expect them to be done within an unfair time frame, rude to students.", + "pos": 0.049, + "neu": 0.74, + "neg": 0.211, + "_id": { + "$oid": "6711d46acd60fca157e5b570" + } + }, + { + "text": "Honestly my STEM classes are much more easier and less troublesome. I wish I never took her class.", + "pos": 0.334, + "neu": 0.548, + "neg": 0.118, + "_id": { + "$oid": "6711d46acd60fca157e5b571" + } + }, + { + "text": "She will have you complete hw almost daily and make you turn it in at absurd times. You would have turned in 30 assignments and she wouldnt grade them till 3 months later. She stresses us on organizing our work and making it clear to read for the audience, but when it comes to her giving us directions for any work it isnt clear enough to understand", + "pos": 0.067, + "neu": 0.867, + "neg": 0.066, + "_id": { + "$oid": "6711d46acd60fca157e5b572" + } + }, + { + "text": "My advice is to avoid this professor. Trust me, the subject itself isn't hard but the professor makes you do a lot of unnecessary work for something simple and it's stressful being in her class. The class doesn't even need to be this hard either, the professor makes it difficult. You'll be way better off with any other professor for the same class.", + "pos": 0.096, + "neu": 0.755, + "neg": 0.149, + "_id": { + "$oid": "6711d46acd60fca157e5b573" + } + }, + { + "text": "This professor was terrible", + "pos": 0.0, + "neu": 0.492, + "neg": 0.508, + "_id": { + "$oid": "6711d46acd60fca157e5b574" + } + }, + { + "text": "This professor is a menace to society. She waste time talking about things that does not help with the actual class and gives lectures recording in order to learn. Throughout the class, she did not grade any of the major work. The deadline for submitting grade is today but she has not graded 3 major assignments and did not submit the grade.", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d46acd60fca157e5b575" + } + }, + { + "text": "Do yourself a favor and just DO NOT take her, there are plenty of other professors that teach the same course & assign less work. She gives a ridiculous amount of homework & assignments, not to mention her assignments are wordy, long, and unclear. I took physics & calc 2 along with her class and this English class felt worse than science and math.", + "pos": 0.038, + "neu": 0.853, + "neg": 0.108, + "_id": { + "$oid": "6711d46acd60fca157e5b576" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46acd60fca157e5b578" + }, + "professor_name": "Akira Kawaguchi", + "rating": 2.3, + "department": "Computer Science department", + "comments": [ + { + "text": "Don't care simply.", + "pos": 0.0, + "neu": 0.432, + "neg": 0.568, + "_id": { + "$oid": "6711d46acd60fca157e5b579" + } + }, + { + "text": "He is obviously very talented with coding, but lacks the ability to understand students background knowledge. Goes very quickly. Only take him if you have background in any coding language already. Lots of work too, so make sure to check his Blackboard because he doesn't always announce due dates.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d46acd60fca157e5b57a" + } + }, + { + "text": "He's actually the best. I've taken 103 with skeith and failed. Akira teaches at a decent pace, and doesn't make the class impossible to pass. We use zybooks which is an interactive learning tool that is actually really fun to use and you learn a lot from it. The man gives you 50 percent just for reading the textbook. DOn't listen to the bad reviews", + "pos": 0.103, + "neu": 0.807, + "neg": 0.09, + "_id": { + "$oid": "6711d46acd60fca157e5b57b" + } + }, + { + "text": "During lectures, I don't understand what he was talking about. He needs to be more specific and explain more on how to do this.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d46acd60fca157e5b57c" + } + }, + { + "text": "The class is suppose to be an introduction to the introduction class, yet he makes it harder than it's suppose to be. Gives lectures online where he never goes into details on the subject and quizzes you on topic that he vaguely talked about and is rude when you bring this up. He ended up roasting someone for just asking a question. Don't take.", + "pos": 0.0, + "neu": 0.955, + "neg": 0.045, + "_id": { + "$oid": "6711d46acd60fca157e5b57d" + } + }, + { + "text": "Kawaguchi is one of the worst professors ever. Take him if you do not want to pass.", + "pos": 0.0, + "neu": 0.738, + "neg": 0.262, + "_id": { + "$oid": "6711d46acd60fca157e5b57e" + } + }, + { + "text": "DO NOT TAKE HIM UNLESS YOU GOT EXPERIENCE I took him 2x, I dropped in the fall and retook it in the summer after getting some experience. For newbies the assignments are difficult he there is no lecture he makes videos which you have watch to pass, he is rude when asked a question. If you have experience you can get by the 7 hw the 3 exams are hard", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d46acd60fca157e5b57f" + } + }, + { + "text": "Even though he didn't make me loath programming, his projects were just too much for someone just getting into programming and c++. 4th,5th, and 6th projects should be knocked down a huge peg because this is an intro class. now i still program sometimes, but decided to change to civil engineering due to higher preference in math over programming.", + "pos": 0.028, + "neu": 0.972, + "neg": 0.0, + "_id": { + "$oid": "6711d46acd60fca157e5b580" + } + }, + { + "text": "Recommend learning some C++ before taking this class. In particular: vectors and object-oriented programming. Projects were games he invented so you REALLY have to work to complete projects. Spent average 25-30 hours per project. Not the most polished interpersonal skills but very generous with curve.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d46acd60fca157e5b581" + } + }, + { + "text": "If you survive him you'll be prepared for anything. His lectures are online. They are challenging but the examples are clear and help you understand. Watch lectures on 1.5 speed. Assignments are tough - require work and time, but he explains the logic in the lectures and even gives you parts of the solution. Tests are from the book. Book's good too", + "pos": 0.225, + "neu": 0.751, + "neg": 0.024, + "_id": { + "$oid": "6711d46acd60fca157e5b582" + } + }, + { + "text": "good. I would suggest only to learn some programming basics before taking class.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d46acd60fca157e5b583" + } + }, + { + "text": "He curves a lot for your grade! But it is a very difficult course for someone who never coded before!!", + "pos": 0.0, + "neu": 0.806, + "neg": 0.194, + "_id": { + "$oid": "6711d46acd60fca157e5b584" + } + }, + { + "text": "He's the chair of the computer science dept. He sends about 35 video lectures to student via blackboard (45min each). Holds class when he feels like it. Not good at helping students with problems. He says \"Did you watch the lecture video?\" and ignores you. Expects student to grasp complicated programming topics immediately. Tests are from textbook.", + "pos": 0.039, + "neu": 0.818, + "neg": 0.143, + "_id": { + "$oid": "6711d46acd60fca157e5b585" + } + }, + { + "text": "You should sooooooo take this professor if you don't ever want to go to class and you want to fail. This professor shows up whenever he feels like it and puts all his lectures online. He won't help you with your problems. He'll tell you \"Did you watch the lecture?\".", + "pos": 0.066, + "neu": 0.765, + "neg": 0.168, + "_id": { + "$oid": "6711d46acd60fca157e5b586" + } + }, + { + "text": "He does not care about students at all. Bad teaching skills and bad preparation for classes ever!", + "pos": 0.0, + "neu": 0.585, + "neg": 0.415, + "_id": { + "$oid": "6711d46acd60fca157e5b587" + } + }, + { + "text": "Well the only thing I want to point out before selecting Akira, be ready to study on your own. He seems funny and knows his stuff but unfortunately he just can't teach. He gives you bunch of assignments without any explanations. His lectures were also so confusing and all over the place. Then he asks his students \"Why don't you understand?\".", + "pos": 0.094, + "neu": 0.812, + "neg": 0.094, + "_id": { + "$oid": "6711d46acd60fca157e5b588" + } + }, + { + "text": "Professor Akira is the best professor. I learned a lot abot c++ in his class. I failed CSc 103 with skeith, but got an A in Akira's class. Exam are easy, make sure to study chapters from the book. Project are little hard, but if you put your time and effort, you should get good grade..", + "pos": 0.199, + "neu": 0.751, + "neg": 0.05, + "_id": { + "$oid": "6711d46acd60fca157e5b589" + } + }, + { + "text": "Great Professor, I dont know what everyone complains about... Akira is a very smart, handsome and humurous individual. Gives great lectures that give you a strong grasp of the material. Tests are fairly easy straight out of textbook and projects are manageable.", + "pos": 0.384, + "neu": 0.573, + "neg": 0.044, + "_id": { + "$oid": "6711d46acd60fca157e5b58a" + } + }, + { + "text": "When you see horrible ratings of a professor, especially Akira, definitely beware! If you don't have prior coding experience I suggest you learn beforehand or start reviewing. This guy doesn't teach a single thing, he expects you to know a lot before going into things. How is he the chair of Computer Science? This is ridiculous", + "pos": 0.048, + "neu": 0.851, + "neg": 0.101, + "_id": { + "$oid": "6711d46acd60fca157e5b58b" + } + }, + { + "text": "Don't bother going to lectures, since he posts all the projects and test dates/topics online. The tests are a joke; review the practice questions at the end of the textbook chapters. He just copy/pastes those questions. He ended up giving everyone an A at the end since he took such a long time grading. Projects are a little harsh but do-able.", + "pos": 0.076, + "neu": 0.896, + "neg": 0.028, + "_id": { + "$oid": "6711d46acd60fca157e5b58c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46bcd60fca157e5b58e" + }, + "professor_name": "Glenford Patterson", + "rating": 3.4, + "department": "Economics department", + "comments": [ + { + "text": "Unclear learning objectives. No homework to guide you before quizzes. Veers off topic during lectures VERY often. Study guides semi useful. Don't take this professor if you have other options. His lectures can be inspiring at times but if you came to learn the course material you're out of luck. You'll have to read 90% of the book on your own time.", + "pos": 0.116, + "neu": 0.839, + "neg": 0.046, + "_id": { + "$oid": "6711d46bcd60fca157e5b58f" + } + }, + { + "text": "Not bad", + "pos": 0.74, + "neu": 0.26, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b590" + } + }, + { + "text": "what do you want other students to know about this professor?", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b591" + } + }, + { + "text": "The whole course is pretty much self-taught. Exams weren't difficult but that's the only thing that was graded aside from TA quizzes. Not much to say about him he was an alright professor, easily irritated, and easy A if you do the work.", + "pos": 0.242, + "neu": 0.684, + "neg": 0.074, + "_id": { + "$oid": "6711d46bcd60fca157e5b592" + } + }, + { + "text": "This professor is all over the place with his work, always loses track of the plot during the lecture, sometimes can be quite unprofessional.", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d46bcd60fca157e5b593" + } + }, + { + "text": "Making fun of his dad smh \n Not getting an a", + "pos": 0.243, + "neu": 0.588, + "neg": 0.169, + "_id": { + "$oid": "6711d46bcd60fca157e5b594" + } + }, + { + "text": "Is everything a teacher shouldn't be. His competence is as weak as the US Dollar, constantly goes off topic and wastes lots of time rambling about whatever is in that void that is his empty head. His effectiveness is only in his old lectures and class notes, but even those don't provide much help. And don't bother doing online, he's bad there too.", + "pos": 0.036, + "neu": 0.811, + "neg": 0.154, + "_id": { + "$oid": "6711d46bcd60fca157e5b595" + } + }, + { + "text": "Be lucky that your TA is the one thats grading the work, he's not a good professor he messed up on our midterms a few times and we're lucky he ended up deciding to give us 20 extra points on a midterm, but overall I told my TA what happened and she curved my grade to a B+", + "pos": 0.062, + "neu": 0.882, + "neg": 0.056, + "_id": { + "$oid": "6711d46bcd60fca157e5b596" + } + }, + { + "text": "Easy A, just show up to recitations and take your tests based on the lectures and recitation material and you should be fine. He does go off track during lectures sometimes but honestly, it's not that bad.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b597" + } + }, + { + "text": "The WORST professor in this school. He somehow teaches almost every econ elective and is an absolute nightmare. All he does is go on tangents of condescending remarks to students. He's one of those people that will call you dumb and lazy before you even get to finish your question. Gives zeros out for no reason and is unreachable through email.", + "pos": 0.0, + "neu": 0.816, + "neg": 0.184, + "_id": { + "$oid": "6711d46bcd60fca157e5b598" + } + }, + { + "text": "Not a good Professor. Expects you to know material and if you dont love entrepreneurship he gets upset and thats for most of the class especially if you are forced to take the class and not take it because you like the subject. If you want an Easy A go for it. Make sure you send follow up emails of your submitted assignments. He tends to overlook", + "pos": 0.113, + "neu": 0.743, + "neg": 0.143, + "_id": { + "$oid": "6711d46bcd60fca157e5b599" + } + }, + { + "text": "A few days ago Professor Patterson failed most of us on an assignment in order to \"get our attention\", but as others and I who want to pursue and study business/economics/management/etc, each class becomes a waste of time through his condescending remarks, belittling us, and barley going through marketing. we do not have the same resources.", + "pos": 0.024, + "neu": 0.879, + "neg": 0.097, + "_id": { + "$oid": "6711d46bcd60fca157e5b59a" + } + }, + { + "text": "Refused to record lectures until the 8th week after a student blew up at him in a lecture, due to his unclear and contradictory instructions. Talks over students when they ask for clarification and calls them lazy for \"not paying attention\". Doesn't teach anything during lectures, just belittles students for not being enough. Wish I could type more", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d46bcd60fca157e5b59b" + } + }, + { + "text": "He's literally the worst professor ever. He just give you an assignment without proper written instruction and gives you a bad grade without any feedback. He is very harsh with his grading for no reason. He then spends the following class ranting about how everyone does the hw wrong but doesn't realize it may be his fault. Avoid taking his classes!", + "pos": 0.0, + "neu": 0.759, + "neg": 0.241, + "_id": { + "$oid": "6711d46bcd60fca157e5b59c" + } + }, + { + "text": "Class is a mess, and begins in the semester with high expectations from the professor. The professor frequently shows up late and expects students to show up early. Lectures begin with rants based on personal criticism of students and how they didn't meet criteria that is never explicitly mentioned. Avoid for entrepreneurship /marketing.", + "pos": 0.032, + "neu": 0.836, + "neg": 0.131, + "_id": { + "$oid": "6711d46bcd60fca157e5b59d" + } + }, + { + "text": "This class was a mess. I thought it would at least be an easy A esp since its online but the multiple choice were difficult at best, didn't make any sense at worst. Very disorganized, but required for econ. Take with a different professor if possible", + "pos": 0.126, + "neu": 0.649, + "neg": 0.225, + "_id": { + "$oid": "6711d46bcd60fca157e5b59e" + } + }, + { + "text": "He doesn't really convey the material well. He expects you to read the textbook and flies through the slides. Gets into arguments with the TA's and Students. His class feels like a power play where he's always right. I personally don't feel comfortable answering or asking questions.", + "pos": 0.129, + "neu": 0.772, + "neg": 0.099, + "_id": { + "$oid": "6711d46bcd60fca157e5b59f" + } + }, + { + "text": "Wouldn't recommend!! From the first day class was a mess, he ranted for 4 weeks straight until we finally got into the first real lesson. Students would argue in the chat the entire class and he would SPEED through the powerpoints. Also got into an argument with his TA over the chat. Recitation sections mostly doesn't even happen. Easy A I guess.", + "pos": 0.027, + "neu": 0.795, + "neg": 0.178, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a0" + } + }, + { + "text": "His class was pretty straight forward. He expects you to know the information, the majority of the information you need can be found on his slides. Buy the textbook is you want to. You should be able to get at least a B in every test.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a1" + } + }, + { + "text": "His management class was very easy and got straight A. Thinking that the Marketing class would be the same was a mistake. The marketing class was not easy and is about group projects and presentations. There is quite a lot of homework and getting A is hard in this class. Many students drop the class. 200 level class felt like 400 level.", + "pos": 0.107, + "neu": 0.776, + "neg": 0.117, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46bcd60fca157e5b5a4" + }, + "professor_name": "Dorthe Eisele", + "rating": 3.9, + "department": "Chemistry department", + "comments": [ + { + "text": "She is a joke.", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a5" + } + }, + { + "text": "This class is not an easy class but she makes it interesting. The professor makes each topic very clear. You definitely learn the topics you thought you knew before. At the beginning of the class, she discussed previous class material which helps to understand the material even better. To get a good grade, follow class and do the extra credit.", + "pos": 0.325, + "neu": 0.654, + "neg": 0.021, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a6" + } + }, + { + "text": "Hey did you know profs can post their own ratings good or bad and from students, only those who want to cry come here?", + "pos": 0.136, + "neu": 0.649, + "neg": 0.214, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a7" + } + }, + { + "text": "Professor Eisele used examples to explain topics and that was very useful. One thing about her teaching style that can be changed a little is the amount of repetition that occurs, its too much. Once recitation was fully on time with Aleks, the course got less hectic. The optional group presentations were a great addition, she cares about students", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a8" + } + }, + { + "text": "She truly cares about her students and wants all of them to succeed. She also hopes you learn vocabulary from lecture that will help in future classes. She listens to her students!", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b5a9" + } + }, + { + "text": "This professor is the best and most considerate out of all CCNY professors. Have a huge Curve. If you want to learn chem 104 , take the class seriously and you will retain information. Overall kind and compassionate professor during pandemic.", + "pos": 0.33, + "neu": 0.638, + "neg": 0.032, + "_id": { + "$oid": "6711d46bcd60fca157e5b5aa" + } + }, + { + "text": "If you wanna learn, don't take her lol", + "pos": 0.0, + "neu": 0.75, + "neg": 0.25, + "_id": { + "$oid": "6711d46bcd60fca157e5b5ab" + } + }, + { + "text": "She is unorganized. Only good thing about her is when I complained to her about exam dates and she pushed it back also made her delete the lab exam. Shes easy A because she made exam weight so little and give so much extra credit. I basically failed the final and still got A+. Actually I didnt need extra credit and still A+. Complain more better.", + "pos": 0.147, + "neu": 0.72, + "neg": 0.133, + "_id": { + "$oid": "6711d46bcd60fca157e5b5ac" + } + }, + { + "text": "Professor Eisele is one of the best professors I have had. She makes you work for the grade you get but gives you lots of clarification and study lectures to help you succeed. To her, it's all about really learning the concepts. She takes hard material and turns it into easy concepts to understand. She is not easy, she challenges you to learn.", + "pos": 0.187, + "neu": 0.734, + "neg": 0.079, + "_id": { + "$oid": "6711d46bcd60fca157e5b5ad" + } + }, + { + "text": "This class gave me nightmares every night, literally. Exams are composed of over 20 page questions in a short amount of time, and they are extremely confusing. It is not possible to finish answering all the questions. Lectures werent too great as she fails to explain materials", + "pos": 0.0, + "neu": 0.842, + "neg": 0.158, + "_id": { + "$oid": "6711d46bcd60fca157e5b5ae" + } + }, + { + "text": "This class is about learning not memorizing. Let me tell you learning is equivalent to working smart but memorizing is equivalent to working hard. Trust me you will learn lots of things in this class, and it is not easy. Professor aims to build a house of knowledge. You have to enjoy the ride otherwise don't take it.", + "pos": 0.155, + "neu": 0.776, + "neg": 0.069, + "_id": { + "$oid": "6711d46bcd60fca157e5b5af" + } + }, + { + "text": "First of all this class is not an easy A. You have to work hard to earn a good grade. Her exams are mad long 18-20 pages and there's a lot to memorize. If you are good at memorizing then go for it. You don't really have to attend lectures, she posts the review slides on bb, so just memorize all the slides and the sample problems from the book.", + "pos": 0.073, + "neu": 0.805, + "neg": 0.122, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b0" + } + }, + { + "text": "This prof tries her best to make class fun. Offers lots of extra credit. Her exams are fair. She asks for definitions that she repeats a many times and math problems that you will see over and over again on each exam. Is the exam long? Yes. Is it unreasonably difficult? No. She writes the test so if she says something is important, take notes!", + "pos": 0.22, + "neu": 0.715, + "neg": 0.065, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b1" + } + }, + { + "text": "Professor Eisele is an awesome professor. However the exams are really long and difficult, you need to pace yourself! Make sure to study and understand the sample problems, and do the tutoring questions. Do any extra credit offered! Make sure to review the concepts discussed after the lecture in a study group. If you get the concepts the math is ok", + "pos": 0.191, + "neu": 0.734, + "neg": 0.074, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b2" + } + }, + { + "text": "Do not walk into this class expecting it to be easy. There is a lot of material to cover in a short amount of time. Professor Eisele is amazing because she cares for her students, but if you walk into this class with false expectations you will be in trouble. If you ever feel overwhelmed talk to her! Make a study group, for the hw, and extra credit", + "pos": 0.148, + "neu": 0.806, + "neg": 0.046, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b3" + } + }, + { + "text": "Prof Eisele really makes you want to come to class. Her lectures are fun, but still informative because she gets everyone involved. Like most science courses, there's 3 exams, final, lab, hw and recitation. She used lots of examples to relate. She's one of those professors who wants you to understand but also cares about your grade, so take her.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b4" + } + }, + { + "text": "Just memorize the sample problems and definitions. The sample problems are the same numbers as from the textbook. Make sure to do ALEKS on time, ALEKS sucks but its 10% of your grade. Although she did not take attendance, still attend class for the slides and her extra credit announcements. You can also do a 5 minute presentation for extra credit.", + "pos": 0.123, + "neu": 0.798, + "neg": 0.079, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b5" + } + }, + { + "text": "Shes caring, kind, and tries to be inspirational. If you can't memorize terms & problems word 4 word, write 18 pages of exam in 75 mins, don't take her. But If you can, you will enjoy the class and get an easy A. Shes best when it comes to extra credit. She is great at communication with students", + "pos": 0.367, + "neu": 0.61, + "neg": 0.023, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b6" + } + }, + { + "text": "This class is an easy A, I'll give you that. There are 3 tests and the final. All tests are cumulative and based EXACTLY on her definitions on the slides and the sample problems from the textbook. While she isn't a great teacher and frustrated me with how much class time she spent on being motivational, if she's offered, definitely take her.", + "pos": 0.078, + "neu": 0.792, + "neg": 0.13, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b7" + } + }, + { + "text": "Professor Eisele is one of the most caring professors at CCNY. Not only does she want you to get a good grade, but she wants her students to understand the concepts. NOTE: YOU WILL HAVE TO MEMORIZE A LOT IF YOU WANT TO PASS HER CLASS. Other than that, I was glad to have her as my chemistry professor.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d46bcd60fca157e5b5b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46ccd60fca157e5b5ba" + }, + "professor_name": "Michelle Parague", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "She is really a tough grader, she basically wants you to be perfect. She expects way too much from the students, knowing we're not used to writing speeches. This is worse if you have anxiety or are generally nervous especially when it comes to presenting. She doesn't even give personal feedback. Sometimes you don't even know when there's homework.", + "pos": 0.056, + "neu": 0.814, + "neg": 0.131, + "_id": { + "$oid": "6711d46ccd60fca157e5b5bb" + } + }, + { + "text": "To be honest if you are a person who suffers from really bad anxiety then this class is absolutely not for you. With speeches you have to follow every criteria and if you don't you most likely won't get a good grade. She is not understanding at all, I let her know beforehand that I have an anxiety disorder but she still wants things her own way.", + "pos": 0.029, + "neu": 0.822, + "neg": 0.148, + "_id": { + "$oid": "6711d46ccd60fca157e5b5bc" + } + }, + { + "text": "I believe Spch 111 is a course that teaches students how to be nice speakers instead of expecting the students are excellent speakers and do their speeches very well. She is a tough grader because she expects too much from the students, the students who never make any public speech before. If you have a choice, make a right.", + "pos": 0.136, + "neu": 0.841, + "neg": 0.023, + "_id": { + "$oid": "6711d46ccd60fca157e5b5bd" + } + }, + { + "text": "I had her for SPEECH 111. She tries to interact with the class and make jokes. She's a really tough grader, like she wants you to be perfect with everything you do. Pretty hard to get an A in her class. She's very critical too, and she thinks she's always right. She's understanding though. Make sure you have a valid reason for why your absent.", + "pos": 0.182, + "neu": 0.743, + "neg": 0.075, + "_id": { + "$oid": "6711d46ccd60fca157e5b5be" + } + }, + { + "text": "She is a nice person but is a tough grader and you really have to go to a play or your grade goes down a lot. There's barely any extra credit and there are pop quizzes so read the textbook & COME TO CLASS. Her lectures are sometimes boring and she doesn't do much to improve your confidence in public speaking.", + "pos": 0.217, + "neu": 0.72, + "neg": 0.063, + "_id": { + "$oid": "6711d46ccd60fca157e5b5bf" + } + }, + { + "text": "She is very sweet and passionate about public speaking. If you show progress during your speeches, which she makes clear, she will take that into consideration for your final grade. She really cares for her students and tries to make it as lively as possible.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c0" + } + }, + { + "text": "She be female dogging if you don't have certain things and she tries to be funny and is not reasonable with grading and takes her job too seriously like she going to lose it.", + "pos": 0.133, + "neu": 0.714, + "neg": 0.153, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c1" + } + }, + { + "text": "Don't take her again", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c2" + } + }, + { + "text": "Took the class in Fall 2018. You do have to put the effort in the class to a certain extent. For some reason, we only did \"pop quizzes\" in the beginning. Follow rubric for speeches. She gave some feedback for some speeches,but other times didn't. I didn't read or use the textbook much. Funny I guess. Best of luck to you. May teach differently now.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c3" + } + }, + { + "text": "Let me keep it real, if you don't put in effort you won't get an A. Everything is on Blackboard. She puts up the rubrics, and all you have to do is make sure you follow what she ask for. Don't wait till the last minute, she can detect that. Be on time, if not, it will have a severe impact on your grade. She doesn't post grades on Blackboard though.", + "pos": 0.031, + "neu": 0.934, + "neg": 0.035, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c4" + } + }, + { + "text": "One speech after another, but she is really funny and her enthusiasm is contagious. She is a tough grader and makes you work for your grade, but she helps you in every way. Her goal is for you to pass and gain confidence so she really cares.", + "pos": 0.367, + "neu": 0.563, + "neg": 0.07, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c5" + } + }, + { + "text": "I loved her. She was a caring and funny teacher. She makes jokes every day and loves the students. She is a little tough on grading and you have a speech assignment one right after the other. But, the class is fun. You can survive without doing the readings. I didn't read anything from it. Sometimes the guys dose off and just stay looking at her.", + "pos": 0.198, + "neu": 0.788, + "neg": 0.015, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c6" + } + }, + { + "text": "Your speech skills will definitely improve. However, she gives way too much work. She even gives exams and quizzes which are unnecessary for a Speech class. You'll need to show improvement and do any makeup speeches and extra credit to earn that A.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c7" + } + }, + { + "text": "She is way too tough on grading. I'm usually an A student and I've gotten C's in her class. Not an easy A. I don't recommend you take her. She requires too much and tries to be funny. At first she seemed cool, but has no chill with grading. I felt like I was back in high school. Not a bad personality, just not the best teacher.", + "pos": 0.132, + "neu": 0.721, + "neg": 0.147, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c8" + } + }, + { + "text": "She's awesome. She tries to get us to improve on our public speaking skills.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5c9" + } + }, + { + "text": "I actually loved her. She's truly an amazing professor. She tries to make you laugh and keep you engaged. TOUGH GRADER. But you'll definitely learn a lot from her and your public speaking fear will be gone, trust me. She's wiling to work with you and help you improve. An A is very possible but you do have to work for it.", + "pos": 0.316, + "neu": 0.612, + "neg": 0.071, + "_id": { + "$oid": "6711d46ccd60fca157e5b5ca" + } + }, + { + "text": "She was actually great. Idk why people said that students must avoid her because she was very helpful. She just expects you to do well on her class and attend everyday.", + "pos": 0.239, + "neu": 0.669, + "neg": 0.093, + "_id": { + "$oid": "6711d46ccd60fca157e5b5cb" + } + }, + { + "text": "great professor. lots of assignments but it is worth it. You'll begin to see your grades go up and you'll learn a lot. A little tough on grading so just be prepared!", + "pos": 0.213, + "neu": 0.752, + "neg": 0.035, + "_id": { + "$oid": "6711d46ccd60fca157e5b5cc" + } + }, + { + "text": "She is an awesome speech teacher. She expects a lot forom people that she sees will be good I'm her class. I I really enjoyed her speech class", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5cd" + } + }, + { + "text": "Yes-hard grader, but you will learn by the end of the semester more than you expected. Great personality though..", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5ce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46ccd60fca157e5b5d0" + }, + "professor_name": "Richard Calichman", + "rating": 3.8, + "department": "Japanese department", + "comments": [ + { + "text": "He's genuinely really caring and puts in lots of effort in his class!", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d1" + } + }, + { + "text": "This Professor focuses on grammar and kanji. He is a tough grader, your whole grade will be based off of all the tests you are to take. Don't take him lightly. This is pretty hard for a language class. Except to learn three alphabets by heart.", + "pos": 0.141, + "neu": 0.803, + "neg": 0.055, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d2" + } + }, + { + "text": "Extremely didactic teaching. Knows how to present difficult material such as the Japanese language. On top of that, very funny and lighthearted. Makes sure the student understands the lesson, and always open to take questions. Does not assign homework but expects you to review the lesson consistently and memorize the material rather quickly.", + "pos": 0.126, + "neu": 0.843, + "neg": 0.031, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d3" + } + }, + { + "text": "Loved this professor so much! Does not give any hw, just to remember the vocab and study the characters. 4 quizzes throughout the semester after each unit and a final exam. He was hilarious, makes lots of jokes, and pretty lenient with attendance. Make sure to participate because he always keeps a note of that.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d4" + } + }, + { + "text": "Best Professor I had this remote semester. He's upfront and makes everyone participate, I get anxious speaking up but he's chill so it wasn't that bad. He gave 4 quizzes and 2 exams, all open book. He's really understanding too so it's fine if you miss a few classes. Basically, this class is an easy A+, just participate and do your part.", + "pos": 0.178, + "neu": 0.775, + "neg": 0.047, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d5" + } + }, + { + "text": "Fun, clear expectations, everyone participates, great congenial atmosphere. Homework is not graded but expect to be called on, especially if you are unprepared! I thought that the class was clear and straightforward, but some people struggled. Bottom line, sensei is easygoing and caring, but be prepared to put in work or you will get embarrassed.", + "pos": 0.274, + "neu": 0.638, + "neg": 0.088, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d6" + } + }, + { + "text": "the professor is the worst professor. because he makes you do work outside of class. quiz every day so you have to practice kanji so be on top of it. he is a hard grader on four quizzes. he is only free one day for office hours. You have prtaice kanji everyday and be on top of write it on the board. Not wotrth to take the class", + "pos": 0.095, + "neu": 0.833, + "neg": 0.073, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d7" + } + }, + { + "text": "Quite confusing class, participation on every topic either by writing on board, answering, or with group conversation. need extra work outside the class to get good marks. only class lecture in not sufficient. attendance everyday.", + "pos": 0.076, + "neu": 0.866, + "neg": 0.058, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d8" + } + }, + { + "text": "If you don't want to do extra work at home don't take this class. I had to practice kanji every week 2-3 times. hard class for language. best to take this class. your will suffer as you will not pass his four quiz if you don't kanji every day. For anyone who is a plan to take this class to be beware of the professor. a lot of writing for this class", + "pos": 0.054, + "neu": 0.868, + "neg": 0.078, + "_id": { + "$oid": "6711d46ccd60fca157e5b5d9" + } + }, + { + "text": "Really cool professor. Always available via email. As long as you go to class, do the homework and practice outside of class, you should do fine. Hell answer any questions you may have and is funny. Taking him next semester!", + "pos": 0.157, + "neu": 0.747, + "neg": 0.095, + "_id": { + "$oid": "6711d46ccd60fca157e5b5da" + } + }, + { + "text": "He is a good prof but he is really serious. Everyone in class must participate at least once in each class. He will call on you to read or write Japanese words. If you failed to answer his question, he will keep tracking you. He needs you to remember all lectures on your own with no excuse. Be prepared before going to class.", + "pos": 0.061, + "neu": 0.829, + "neg": 0.11, + "_id": { + "$oid": "6711d46ccd60fca157e5b5db" + } + }, + { + "text": "Study every lesson you go over in class. Practice sentence structure and hiragana and katakana with repetition. This class DOES NOT get hard until you hit the kanji at the very end of the semester. PLEASE DON'T SLACK OFF. You should only take this class if you are determined to learn Japanese.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5dc" + } + }, + { + "text": "Simply the best professor in CCNY. Must take him!!!!!!", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5dd" + } + }, + { + "text": "one of the best professor at CCNY for Japanese language.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5de" + } + }, + { + "text": "Study every lesson you go over in class. Practice sentence structure and hiragana and katakana with repetition. This class DOES NOT get hard until you hit the kanji at the very end of the semester. PLEASE DON'T SLACK OFF. This is a class only for those interested in Japanese. Sensei tends to nick points off any little thing, I would've had an A+", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d46ccd60fca157e5b5df" + } + }, + { + "text": "Class in general was hard only because it is a new language so that has nothing to do with the way he teaches. He is very chill, as long as you do the work and study you will get a good grade. He is very funny and makes class very fun. One of my favorite classes this semester taught by an amazing professor.", + "pos": 0.22, + "neu": 0.761, + "neg": 0.019, + "_id": { + "$oid": "6711d46ccd60fca157e5b5e0" + } + }, + { + "text": "CALICHMAN IS THE MAN! Took 2 semesters back to back with him and made so many good friends from his class. This man made learning Japanese fun and enjoyable. Totally would recommend him for any Japanese classes. Wish he would teach upper-level Jap as well. Learning a language is hard in itself, so be prepared. But he will make Jap fun to learn.", + "pos": 0.269, + "neu": 0.714, + "neg": 0.016, + "_id": { + "$oid": "6711d46ccd60fca157e5b5e1" + } + }, + { + "text": "Homework is light, just memorization. His tests are pretty intense - straightforward but you really need to study. Calichman is seriously the coolest dude ever and my classmates have become my best friends. Japanese has been my favorite class for 2 semesters now. Invaluable memories made. His class is hard but take it. You won't regret it.", + "pos": 0.277, + "neu": 0.673, + "neg": 0.05, + "_id": { + "$oid": "6711d46ccd60fca157e5b5e2" + } + }, + { + "text": "Great Professor, kind of confusing though", + "pos": 0.398, + "neu": 0.389, + "neg": 0.213, + "_id": { + "$oid": "6711d46ccd60fca157e5b5e3" + } + }, + { + "text": "Very enjoyable class! Straightforward quizzes and final exam. Grammar is very important so be sure to study. No homework besides Kanji memorization. Was a wonderful introduction to Japanese. Take him if you can!", + "pos": 0.287, + "neu": 0.661, + "neg": 0.052, + "_id": { + "$oid": "6711d46ccd60fca157e5b5e4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46dcd60fca157e5b5e6" + }, + "professor_name": "Vladimir Shpilrain", + "rating": 2.3, + "department": "Mathematics department", + "comments": [ + { + "text": "I took his probability course and he didn't seem all too bad. Attendence is not mandatory, but definitely go to lecture as he puts some example problems that will show up on exams. He does somewhat curve grades based on the class average. He makes some pretty witty jokes during lecture and in general seems like a pretty nice guy.", + "pos": 0.229, + "neu": 0.647, + "neg": 0.124, + "_id": { + "$oid": "6711d46dcd60fca157e5b5e7" + } + }, + { + "text": "Prof. Shpilrain appeared to be scary at times, but he was actually approachable. His lectures are good and he gives a lot of relevant examples. Probability is difficult because even a single word could change the entirety of a problem. This class teaches you to think differently, not like differential or linear where you can follow something.", + "pos": 0.057, + "neu": 0.771, + "neg": 0.172, + "_id": { + "$oid": "6711d46dcd60fca157e5b5e8" + } + }, + { + "text": "Prof sets clear expectations from the beginning. There'll be two midterms and the final, no curves. If you ask, he may give a quiz. He won't give partial credit if he sees a mistake. He is not the greatest teacher when explaining stuff but if you read the textbook before class, you will be able to understand. beware of his tone, he talks superlow.", + "pos": 0.027, + "neu": 0.869, + "neg": 0.104, + "_id": { + "$oid": "6711d46dcd60fca157e5b5e9" + } + }, + { + "text": "40%: 2 Exam 60%: Final Exam \n\nDropped his class in October with no regrets Use Youtube (Prof Leonard) over his lectures. He doesn't curve (claims it's because of the math department, but I doubt it) and he's very strict. If you have a question, he provides a vague answer. If you do take his class, I suggest to switch, drop, or study hard.", + "pos": 0.023, + "neu": 0.845, + "neg": 0.133, + "_id": { + "$oid": "6711d46dcd60fca157e5b5ea" + } + }, + { + "text": "talks to undergrads wit disgust in his voice.", + "pos": 0.0, + "neu": 0.642, + "neg": 0.358, + "_id": { + "$oid": "6711d46dcd60fca157e5b5eb" + } + }, + { + "text": "make the material too difficult", + "pos": 0.0, + "neu": 0.615, + "neg": 0.385, + "_id": { + "$oid": "6711d46dcd60fca157e5b5ec" + } + }, + { + "text": "It was a very miserable experience in his class and getting a decent grade is highly unlikely with his problems. He also has too much attitude and doesn't like teaching undergrad students. Avoiding him is the best option.", + "pos": 0.088, + "neu": 0.689, + "neg": 0.223, + "_id": { + "$oid": "6711d46dcd60fca157e5b5ed" + } + }, + { + "text": "In order to get a good grade in his class you will need to think like him. Read every word twice (mandatory!) on the test and keep in mind that he is there to trick you . If something seems to easy, most likely is not the answer and you need to look for the opposite.", + "pos": 0.159, + "neu": 0.821, + "neg": 0.019, + "_id": { + "$oid": "6711d46dcd60fca157e5b5ee" + } + }, + { + "text": "While professor Shpilrain comes off as emotionless and uncaring, he does a good job imparting the course material through his lectures. Lectures consist of brief summaries of concept and theory followed by a couple of relevant examples. If you are taking his course and you want a good grade, read the textbook before lectures and work through the hw", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d46dcd60fca157e5b5ef" + } + }, + { + "text": "Comes in, slams his books on the desk and just writes on the chalkboard all period, then leaves 10 min before class ends. His class was really tough, but in the end, I passed it, so he did something right. His tests are difficult and hard to pass. He can lighten up if you break his hard outer shell (that's hard to do). Difficult teaching style.", + "pos": 0.0, + "neu": 0.825, + "neg": 0.175, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f0" + } + }, + { + "text": "Great professor, you will learn a lot if you actually try in his class. He teaches very well but he does not curve, I aced 1 and flunk 1 in class exams and aced the final but he only gave me the raw score and did not curve. Overall great professor.", + "pos": 0.072, + "neu": 0.802, + "neg": 0.126, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f1" + } + }, + { + "text": "Great professor for Combinatorics. I've only had him for combinatoric so I cannot say if he is a good professor for other courses, but he sure is a clear lecturer. Lectures are so important and he will answer any questions you have with hw.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f2" + } + }, + { + "text": "Cold exterior shell but his lectures are good. Go to his office hours he can be very helpful.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f3" + } + }, + { + "text": "Kind of monotone so can be boring. I find his exams are very fair, he also repeats them so if you can get them from someone who took the course with him in the past you should be set. He does a lot of helpful practice problems so pay attention and you'll do well. Does really love talking about the subject every once in a while he'll light up.", + "pos": 0.148, + "neu": 0.764, + "neg": 0.088, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f4" + } + }, + { + "text": "Really boring but doable. His exams are hard and grading is terrible. He doesn't give partial credits sometimes. Get ready to study by yourself. Assignments aren't mandatory and neither is attendance.", + "pos": 0.082, + "neu": 0.628, + "neg": 0.29, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f5" + } + }, + { + "text": "WORST professor ever.. Very arrogant and rude to everyone. Came in late and left like 20-30 minutes before class ended, doesn't care about any of his students, doesn't know how to explain the material, homework, attendance and participation dont count, only the 3 tests count (including the final). Please don't take him, you will REGRET IT and fail", + "pos": 0.063, + "neu": 0.657, + "neg": 0.279, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f6" + } + }, + { + "text": "Please don't take this guy, please just don't take him, he doesn't care about anyone ,lectures are very complicated. This guy should be fire, again please don't take him you are not going to pass not because the math is hard but because he can't teach. Your going to have to do it yourself , and the test are extremely hard. DONT TAKE HIM!!!!!!!!!!!!", + "pos": 0.071, + "neu": 0.816, + "neg": 0.113, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f7" + } + }, + { + "text": "A heavy test-based class. 30% midterm1, 30% midterm 2, 40% Final. Don't buy the webassign code cuz he doesn't count homework and it's just for practice. Do textbook problems instead. The material is easy on it's own, but his teaching style and negativity makes it seem impossible. If you're good at ignoring bad attitudes, he's your guy.", + "pos": 0.081, + "neu": 0.714, + "neg": 0.204, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f8" + } + }, + { + "text": "Awful! Doesn't care about students or if you learn or not! Canceled class 4 times no notice! Tough grader that has to curve every exam because grades are so poor, so you really never know ur grade! He walks out during every exam so if you like to cheat well this guy is for you. Otherwise avoid like the plague. You need to teach yourself everything.", + "pos": 0.105, + "neu": 0.675, + "neg": 0.219, + "_id": { + "$oid": "6711d46dcd60fca157e5b5f9" + } + }, + { + "text": "As soon as I read his reviews, I was weary but I did not think he would be as horrible as he was. He cancels class whenever he felt like it, didnt care if you passed or not, even saying he expected 80% of us to fail, & only counts your exams towards your grade. I am not a slacker, but myself and peers included all struggled and dropped it. Avoid!!", + "pos": 0.036, + "neu": 0.703, + "neg": 0.26, + "_id": { + "$oid": "6711d46dcd60fca157e5b5fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46dcd60fca157e5b5fc" + }, + "professor_name": "Stanley Ocken", + "rating": 2.3, + "department": "Mathematics department", + "comments": [ + { + "text": "He does not care about any of his students. He actually even lies a lot. If you ask a question, he will put you on the spot in front of everyone and make you feel dumb. Even if you get the answer right, if you do not use his specific method he will make the whole question completely wrong so you can't even self teach yourself. Terrible professor.", + "pos": 0.0, + "neu": 0.805, + "neg": 0.195, + "_id": { + "$oid": "6711d46dcd60fca157e5b5fd" + } + }, + { + "text": "Avoid this guy by all means. He is so unhelpful and rude. He goes so slow during lecture and when you go to him for questions or help he just shows sympathy. Extremely poor lecturer which makes being motivated in class even harder. AVOID AT ALL COSTS.", + "pos": 0.137, + "neu": 0.667, + "neg": 0.197, + "_id": { + "$oid": "6711d46dcd60fca157e5b5fe" + } + }, + { + "text": "Calculus 2 is hard to begin with, he is smart and assumes we all are too. I personally got lost many times because he assumed I had previous knowledge that I did not. Moves fast because there is a lot of material to cover. Homework isn't mandatory but is helpful mostly cause he gives quizzes based on it. Never curved tests and they are difficult.", + "pos": 0.077, + "neu": 0.822, + "neg": 0.1, + "_id": { + "$oid": "6711d46dcd60fca157e5b5ff" + } + }, + { + "text": "Poor lecturer, homeworks are nothing like the exams. Drop him.", + "pos": 0.0, + "neu": 0.489, + "neg": 0.511, + "_id": { + "$oid": "6711d46dcd60fca157e5b600" + } + }, + { + "text": "Even if you are getting good grades, you might probably only get a B-. His grading system is ridiculous and overly strict. Doesn't curve even if more than half the class is failing, doesn't drop a test, isn't the best teacher. If you show you're trying, go to his office hours, he shows sympathy. But overall I wouldn't take him again.", + "pos": 0.077, + "neu": 0.831, + "neg": 0.092, + "_id": { + "$oid": "6711d46dcd60fca157e5b601" + } + }, + { + "text": "Do not take him if you need a B or higher in a Calculus class, it is very rare to see someone come out with a B in his class. His tests are hard, best way to study would be to study from textbook examples. Final is standard. Will not curve no matter what and does not drop one test, even if the class test average is a 50%. He is a harsh grader.", + "pos": 0.088, + "neu": 0.859, + "neg": 0.054, + "_id": { + "$oid": "6711d46dcd60fca157e5b602" + } + }, + { + "text": "omg plz plz plz plz dont take his class, hard grader, he doesnt drop lowest grade, and numbirc grade, if you get 70 is c-, 80 B-, and 90 is A-. he does not curve!!!! this is the most important thing. try your best to avoid him. his test is harder than your think, and test does not match the homework level. 4 exams and final. think about it.", + "pos": 0.21, + "neu": 0.744, + "neg": 0.045, + "_id": { + "$oid": "6711d46dcd60fca157e5b603" + } + }, + { + "text": "The most helpful thing in his class were his self-written notes. My best advice is to read through them before class and work out the practice problems (used in his test). He cares if you care. He gets really annoyed if you walk into class late so beware. Gave a few quizzes and 4 exams and then the final of course. Graphing is a big topic and trig.", + "pos": 0.166, + "neu": 0.765, + "neg": 0.069, + "_id": { + "$oid": "6711d46dcd60fca157e5b604" + } + }, + { + "text": "If you study and go to his office hours, show you care, he will take that into consideration. It's not easy but definitely doable. He gives 3 tests, they get harder obviously, quizzes once a week of which he drops the two lowest, and web assign. Try and you'll be fine. It's math so it's not easy", + "pos": 0.064, + "neu": 0.764, + "neg": 0.172, + "_id": { + "$oid": "6711d46dcd60fca157e5b605" + } + }, + { + "text": "He was willing to help. But, he made calculus very boring, and more difficult. He made many typos on the tests, and mistakes during his lectures. He was a very hard grader, avoid if you value your GPA.", + "pos": 0.096, + "neu": 0.602, + "neg": 0.302, + "_id": { + "$oid": "6711d46dcd60fca157e5b606" + } + }, + { + "text": "Boring lectures. Hes a good prof because he goes through every little thing. gives three test and a final and multiple quizzes. posts helpful questions on bb similar to test questions. if you study and do web assign you will do well. some web assign dont match up with class work. YOU DONT NEED THE TEXT BOOK!", + "pos": 0.128, + "neu": 0.836, + "neg": 0.036, + "_id": { + "$oid": "6711d46dcd60fca157e5b607" + } + }, + { + "text": "he makes me feel like he is condescending but is there to help. he posts slides with exact steps (\"pretty notes\"), informed us of tutoring, &when he senses that the class isnt keeping up (senses it, b/c no one says it...) he'll go back&review everything until everyone is on track. needs to feel more welcoming tho lol but thats probably b/c he's old", + "pos": 0.231, + "neu": 0.733, + "neg": 0.036, + "_id": { + "$oid": "6711d46dcd60fca157e5b608" + } + }, + { + "text": "Worst professor ever !!! the math department themselves even know this and won't do anything about it. Hes completely obnoxious and won't help his students. He insults students when they ask questions. If you love math and want to learn don't take a professor like him that will ruin your love for math. Wanted to be a math teacher before I met him!", + "pos": 0.146, + "neu": 0.646, + "neg": 0.208, + "_id": { + "$oid": "6711d46dcd60fca157e5b609" + } + }, + { + "text": "TERRIBLE TERRIBLE TERRIBLE! This guy crushed my GPA. He is very rude and not approachable at all. He will make you feel so dumb. Not lenient, doesnt care about his students, he is always making mistakes during his lectures. AVOID if you value your GPA.", + "pos": 0.067, + "neu": 0.498, + "neg": 0.434, + "_id": { + "$oid": "6711d46dcd60fca157e5b60a" + } + }, + { + "text": "Do yourself and favor, don't take his class. Very hard grader. In the beginning seems eh, but in the end he loses interest in teaching, very unclear. Test are very difficult. No extra credit if so its BS. Horrible. He needs to retire. He yells a lot and gets angry when someone asks questions. AVOID taking his class by all means. Trust me.", + "pos": 0.112, + "neu": 0.556, + "neg": 0.332, + "_id": { + "$oid": "6711d46dcd60fca157e5b60b" + } + }, + { + "text": "If you ask a question b prep to be yelled at. He is there on office hours but does nothing at all to help you understand what you did wrong. Unless you know exactly wut you need help undrstanding dnt bother making an appointment with him. Also posts reading on BB last min nd everything he covers is based on those readings. also makes lec mistakes", + "pos": 0.09, + "neu": 0.776, + "neg": 0.134, + "_id": { + "$oid": "6711d46dcd60fca157e5b60c" + } + }, + { + "text": "He IS very clear when going over each unit. He took attendance only twice this semester. His notes on the ccny website are GREAT and he extends HW deadlines if he sees that you are struggling. He likes one on ones during office hours so take advantage! The class is easy, if you revise your notes and he does care if you fail.", + "pos": 0.256, + "neu": 0.667, + "neg": 0.078, + "_id": { + "$oid": "6711d46dcd60fca157e5b60d" + } + }, + { + "text": "He is an amazing professor, he goes over every unit precisely and makes sure everyone understands the material before moving on. He is free during office hours and always willing to help you. I honestly don't think he's a harsh grader,if your wrong- your wrong, at least he gives partial credit!Tip: His notes are very useful-its on ccny math website", + "pos": 0.201, + "neu": 0.68, + "neg": 0.119, + "_id": { + "$oid": "6711d46dcd60fca157e5b60e" + } + }, + { + "text": "This professor is not clear at all!! He goes off topic most of the class and doesn't clearly explain how to solve problems! He takes off points on tests for the smallest mistakes and does not help at all. This is not a professor to take if you have trouble with math. Pick someone who teaches better!!!", + "pos": 0.068, + "neu": 0.705, + "neg": 0.227, + "_id": { + "$oid": "6711d46dcd60fca157e5b60f" + } + }, + { + "text": "WORST PROFESSOR EVER!he gets confused on his own teaching, and he is SUPER slow at times. we do homework online,and he ALWAYS pushes the due date back,which gets very confusing at times.SUPER HARSH GRADER,takes at least 8 points off on minor mistakes. AVOID HIM AT ALL TIME!!!DO NOT TAKE HIS CLASS! almost everyone fails his exams. NO EXTRA CREDITS!", + "pos": 0.057, + "neu": 0.601, + "neg": 0.342, + "_id": { + "$oid": "6711d46dcd60fca157e5b610" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46ecd60fca157e5b612" + }, + "professor_name": "Richard Bernstein", + "rating": 3.8, + "department": "Political Science department", + "comments": [ + { + "text": "A wonderful person who deeply cared about what he did and the students he taught. Knew everything you could possibly need to know about American history. A true scholar and gentleman.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b613" + } + }, + { + "text": "He was the best professor I ever had. Prof. Bernstein passed away on Sunday June 25th, 2023.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b614" + } + }, + { + "text": "prof bernstein is a nice guy, just do the readings and follow his paper criteria and you will pass, also do the readings for his class, class discussion is huge", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b615" + } + }, + { + "text": "Bernstein is a really smart professor, however his way of teaching in class is not the best, especially through zoom. He lectures for the whole class and only let students speak when discussing. He will assign many books to read although you don't have to read ALL of it. He does give papers to do and you have to do heavy research to complete them.", + "pos": 0.043, + "neu": 0.908, + "neg": 0.049, + "_id": { + "$oid": "6711d46ecd60fca157e5b616" + } + }, + { + "text": "Hes really a great professor you just have to pay attention in class. For this class the final grade was based on our midterm, final, and participation grade. So long as you answer the essay prompts with a clear and concise answer you will get an A. Take notes and engage in class discussions if you want the get the most out of the class.", + "pos": 0.148, + "neu": 0.832, + "neg": 0.019, + "_id": { + "$oid": "6711d46ecd60fca157e5b617" + } + }, + { + "text": "professor Bernstein knows what he's talking about and he's obviosly an expert in any topic of relating to political science- however... SUPERRRRR BORING. all he does is lecture the ENTIRE TIME with NO SLIDES.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d46ecd60fca157e5b618" + } + }, + { + "text": "Such a good hearted and passionate professor, I owe him for giving me a second chance . He really helped me to graduate. I am very thankful and inspired by him and his lectures! Highly recommend", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b619" + } + }, + { + "text": "Prof Bernstein is very smart, but not a very good teacher. His lectures were not engaging, he often fought with students, or shot peoples ideas down and told them they wrong without helping them expand on their points. He was unresponsive when I reached out for guidance several times. Would not recommend but his courses are inevitable for some", + "pos": 0.049, + "neu": 0.675, + "neg": 0.277, + "_id": { + "$oid": "6711d46ecd60fca157e5b61a" + } + }, + { + "text": "I recommend taking professor Bernstein!! He gives a take home midterm and final and gives at least a week to complete it.. He definitely gives a lot of reading but as long as you ask him questions about the readings you should be fine. MUST PARTICIPATE IN CLASS DISCUSSION. Overall he is one of the better poli sci professor.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b61b" + } + }, + { + "text": "took comparative constitutionalism with him. super lecture heavy and it can get very boring very fast. There's only 2 papers and they're pretty straightforward. Really accommodating for his students. Not an easy A but not super difficult either. Hardest task will not being lulled to sleep during class by his soothing voice.", + "pos": 0.162, + "neu": 0.716, + "neg": 0.123, + "_id": { + "$oid": "6711d46ecd60fca157e5b61c" + } + }, + { + "text": "My first experience with him was amazing, he IS incredibly knowledgeable, i cant deny that. However; as we switched to remote learning he made 0 effort to go online. I learned nothing because he simply uploaded pdfs once a week of his notes. It was a waste of a course, I hope he doesnt pull that in fall bc of COVID. Beware, he did not lecture!", + "pos": 0.122, + "neu": 0.84, + "neg": 0.038, + "_id": { + "$oid": "6711d46ecd60fca157e5b61d" + } + }, + { + "text": "Best professor I've had during my time at CCNY thus far. An amazing lecturer. Only two grades for the class- take-home midterm and final papers that are a breeze if you put in the time and effort.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b61e" + } + }, + { + "text": "Professor Bernstein is an amazing professor that you should really be sure to take if you are majoring in political science. His lectures are very interesting as he tells the content like a story--adding facts and stories that you would never hear otherwise. He is very accommodating if you have a problem, just talk to him.", + "pos": 0.181, + "neu": 0.778, + "neg": 0.041, + "_id": { + "$oid": "6711d46ecd60fca157e5b61f" + } + }, + { + "text": "This professor is arguably amongst the worst at CCNY. Not only does he expect that you conform your writing style to his liking, but he fails to indicate what exactly his preferred method is. He doesn't lecture appropriately, often never on topic, and fails to provide any constructive commentary whatsoever. Avoid at all costs there are better.", + "pos": 0.081, + "neu": 0.715, + "neg": 0.204, + "_id": { + "$oid": "6711d46ecd60fca157e5b620" + } + }, + { + "text": "Other professors should teach his classes. He just tries to kill time and you end up learning nothing. His line editing method lowers your grade dramatically. Who has so much time to do that. That's weird. Avoid him. Oh, did I mention he constantly accuse you of plagiarism and threatens you with an F. I learned my lesson the hard way.", + "pos": 0.0, + "neu": 0.773, + "neg": 0.227, + "_id": { + "$oid": "6711d46ecd60fca157e5b621" + } + }, + { + "text": "Run away from him. Save yourself. He should stop teaching and let others teach who CAN teach.", + "pos": 0.157, + "neu": 0.735, + "neg": 0.108, + "_id": { + "$oid": "6711d46ecd60fca157e5b622" + } + }, + { + "text": "THE worst in the dept. Doesn't know how to teach. Rambles non sense all the time. I don't understand how he has positive comments here. Seems like he wrote them himself. His \"line editing\" drama leaves you with a C or lower. So if you care about grades then your choice. I don't recommend.", + "pos": 0.145, + "neu": 0.728, + "neg": 0.127, + "_id": { + "$oid": "6711d46ecd60fca157e5b623" + } + }, + { + "text": "He is one of the greatest lecturers on campus and in Political Science Department. I took him three times, and would've taken more, but, unfortunately, I am graduating this FALL 2018. If you take him, you will not regret that you took him at the end of your semester. Don't be afraid of him, and raise questions that bother you, argue with him!", + "pos": 0.076, + "neu": 0.788, + "neg": 0.136, + "_id": { + "$oid": "6711d46ecd60fca157e5b624" + } + }, + { + "text": "Sure he comes off as grumpy but he genuinely cares for his students. He has the best course structure as it only consists of a midterm and final (both essays). All he does is stand at the front of the classroom and lectures, so no poorly designed powerpoint. As long as you read the textbooks or even do a thorough skim, you'll be fine in his class.", + "pos": 0.172, + "neu": 0.78, + "neg": 0.048, + "_id": { + "$oid": "6711d46ecd60fca157e5b625" + } + }, + { + "text": "Professor Bernstein is a great professor! If he sees that you're trying and come to class you'll do fine. Don't cheat yourself by not showing up, his lectures leave you with a world of knowledge. I wish I found him earlier so I could take more of his classes. Take Professor Bernstein and thank me later.", + "pos": 0.213, + "neu": 0.768, + "neg": 0.018, + "_id": { + "$oid": "6711d46ecd60fca157e5b626" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46ecd60fca157e5b628" + }, + "professor_name": "Richard Steinberg", + "rating": 3.2, + "department": "Physics department", + "comments": [ + { + "text": "DO NOT TAKE HIM. I'm a straight-A student & this is the ONLY class I ever failed. He says everything in class was \"free game\" for exams (including ALL of the Wiley questions and EVERYTHING in lecture). His exams only has 12-16 questions, mostly short response and NO PARTIAL CREDIT OR CURVE FOR THE EXAMS AND CLASS. He ruined my perfect 4.0 GPA.", + "pos": 0.092, + "neu": 0.748, + "neg": 0.161, + "_id": { + "$oid": "6711d46ecd60fca157e5b629" + } + }, + { + "text": "He is a very tough grader, If he is your only option make the best of it. If you do every assignment correctly read and study you will be fine. Good luck!", + "pos": 0.297, + "neu": 0.659, + "neg": 0.044, + "_id": { + "$oid": "6711d46ecd60fca157e5b62a" + } + }, + { + "text": "Despite the awful reviews. I had no choice but to take this class. This class is by far the most agonizing class I have taken in my entire college career. He makes the class much harder than it needs to be. Be prepared to struggle in this course like I did. Thankfully I am done and can finally see the light at the end of the tunnel.", + "pos": 0.136, + "neu": 0.74, + "neg": 0.124, + "_id": { + "$oid": "6711d46ecd60fca157e5b62b" + } + }, + { + "text": "Go to class! If you knows your name by the end of the semester, you can be calm", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b62c" + } + }, + { + "text": "Do NOT listen to the positive reviews!! If you take him, do NOT expect an A.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b62d" + } + }, + { + "text": "definitely not an easy A but Prof Steinberg provides you with everything you need to succeed; class is mostly exams and all questions come from wiley and lecture (definitely attend office hours)", + "pos": 0.246, + "neu": 0.711, + "neg": 0.043, + "_id": { + "$oid": "6711d46ecd60fca157e5b62e" + } + }, + { + "text": "Professor Steinberg is a kind professor that really wants everyone to do well in the class. Everything that is on the exams were either homework problems or problems that were heavily emphasized in lectures. Attending his class was something that I enjoyed doing as his passion for teaching was very uplifting.", + "pos": 0.19, + "neu": 0.723, + "neg": 0.087, + "_id": { + "$oid": "6711d46ecd60fca157e5b62f" + } + }, + { + "text": "absolutely awful professor absolutely awful excuse of a human being e-permit this class if he's the only one!!!", + "pos": 0.066, + "neu": 0.624, + "neg": 0.31, + "_id": { + "$oid": "6711d46ecd60fca157e5b630" + } + }, + { + "text": "THIS MAN DA STINKS AVOIDDDD", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d46ecd60fca157e5b631" + } + }, + { + "text": "A profesor that wants to see your downfall. For the first exam he posted an old midterm which if you studied it you were good, since he posted similar questions to the old midterm. For the second midterm he did the same thing, posted an old midterm two only for the actual midterm to be the actual opposite. More than half of the class dropped. Avoid", + "pos": 0.042, + "neu": 0.926, + "neg": 0.032, + "_id": { + "$oid": "6711d46ecd60fca157e5b632" + } + }, + { + "text": "Better to take this class a different semester or with a different semester. Don't waste your time or money.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b633" + } + }, + { + "text": "Literally half the class dropped if that doesn't say something about him i dont know what what else does. Sure hes got a decent personality but he keeps making mistakes on exams (doesn't curve either) and hes stingy with points for no reason. Save your gpa! Beware!", + "pos": 0.029, + "neu": 0.735, + "neg": 0.236, + "_id": { + "$oid": "6711d46ecd60fca157e5b634" + } + }, + { + "text": "save you're gpa and you're money and your time", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b635" + } + }, + { + "text": "trash professor take anyone else he makes it impossible to do good if you make one small mistake the entire question is wrong also getting 3 questions wrong is a 78", + "pos": 0.075, + "neu": 0.701, + "neg": 0.223, + "_id": { + "$oid": "6711d46ecd60fca157e5b636" + } + }, + { + "text": "Says he wants to help us succeed but REFUSES to offer partial credit on exams or even give extra credit makes the class harder than it needs to be \nAVOID", + "pos": 0.271, + "neu": 0.631, + "neg": 0.098, + "_id": { + "$oid": "6711d46ecd60fca157e5b637" + } + }, + { + "text": "Avoiddddddd", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d46ecd60fca157e5b638" + } + }, + { + "text": "He's a kind person but also is sneaky and doesn't teach well during the lectures. doesn't go over homework assigned on Wileyplus. During the first exam, we were supposed to have 16 questions but due to he's printer issues, we only were assigned 10 questions, with no added extra points. Overall i do not like his teaching methods.", + "pos": 0.034, + "neu": 0.812, + "neg": 0.154, + "_id": { + "$oid": "6711d46ecd60fca157e5b639" + } + }, + { + "text": "Prof Steinberg's tests are very fair in that as long as you study/review the homeworks, you should pass the tests. However, he gives no partial credit and exams are usually only 15 questions or so. Never uploads grades and exams are worth 85% of the class. Lectures are useless and not worth your time. Lazy professor. Entire class is self-study", + "pos": 0.065, + "neu": 0.77, + "neg": 0.165, + "_id": { + "$oid": "6711d46ecd60fca157e5b63a" + } + }, + { + "text": "Before going into his class, looking at his rating I had very high expectations. He is nice and respectful but he does not really assist in learning. The Wileyplus hw were very difficult and he never explains the HW questions or even the content in depth. The tests are exactly like the Wiley plus question. There is no partial credit. Good luck!!", + "pos": 0.198, + "neu": 0.685, + "neg": 0.118, + "_id": { + "$oid": "6711d46ecd60fca157e5b63b" + } + }, + { + "text": "Lectures aren't really helpful because he doesn't go over questions step by step, he just teaches the basic concepts (mostly with his keys)and leaves you on your own. He is a good person and very funny, more helpful if you ask him questions in person, but will challenge you and make you work for the answer. Better than other physics profs here tho", + "pos": 0.164, + "neu": 0.811, + "neg": 0.025, + "_id": { + "$oid": "6711d46ecd60fca157e5b63c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46fcd60fca157e5b63e" + }, + "professor_name": "G.D. Peters", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "Prof. Peters is one of the best teachers I've had. He actually cares about his students and what he teaches. He also goes off topic sometimes. All I can say is be prepared to read. Participating in the discussions is also a plus.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b63f" + } + }, + { + "text": "I'm taking ENW210 at Lehman College with him and he's a mess. He wants everyone to completely follow rules, his syllabus said it's mandatory to have cameras on but he somehow says it's not mandatory to have cameras on. However, don't let that part fool you, he'll always ask his class to have cameras on and go on a lecture on that but not classwork.", + "pos": 0.017, + "neu": 0.883, + "neg": 0.1, + "_id": { + "$oid": "6711d46fcd60fca157e5b640" + } + }, + { + "text": "He does have a lot of outbursts and gets upset easily when someone doesn't answer his question correctly. Attendance is mandatory, he literally takes up ten minutes of class time just to take attendance. He randomly gives tests because he believes students aren't doing the reading. He is just extremely extra...", + "pos": 0.068, + "neu": 0.884, + "neg": 0.048, + "_id": { + "$oid": "6711d46fcd60fca157e5b641" + } + }, + { + "text": "Professor peters is alright but he has some serious childish outbursts he needs to control. It honestly embarrassing as this point as an adult. There should be no reason he gets upset when a student leaves the camera to use the restroom in their own home, and purposely calls on that student and gets upset when they arent available. Immaturity.", + "pos": 0.074, + "neu": 0.696, + "neg": 0.231, + "_id": { + "$oid": "6711d46fcd60fca157e5b642" + } + }, + { + "text": "Hes a pretty good professor, have to keep your camera on during online class so he knows your actually there. Make sure you do the readings because if he calls on you and you have nothing to say he gets upset and knows you didnt do the homework. Prompts are easy to follow.", + "pos": 0.183, + "neu": 0.775, + "neg": 0.042, + "_id": { + "$oid": "6711d46fcd60fca157e5b643" + } + }, + { + "text": "Great great great professor!! Will be an honor if I could take him again! His class is inspirational and encouraging.", + "pos": 0.622, + "neu": 0.378, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b644" + } + }, + { + "text": "Great professor extremely nice, I HIGHLY recommend going to his office hours to get the most out of the course.", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b645" + } + }, + { + "text": "Amazing professor, yes there is a lot of reading and writing but he makes it so interesting plus the weekly assignments arent longer than a page. He does not overwhelm you with papers, instead he divides the tasks into shorter poems or stories you have to write and read in every class. Go to class, do the readings and you will pass.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b646" + } + }, + { + "text": "He is a great character and really cares about his students. I highly recommend taking his classes you won't regret it. My favorite professor so far!", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b647" + } + }, + { + "text": "GD is great even his side stories are pretty cool and interesting. He make sure you understand exactly what he is talking about. If you need something cleared he has no problem helping.", + "pos": 0.404, + "neu": 0.554, + "neg": 0.042, + "_id": { + "$oid": "6711d46fcd60fca157e5b648" + } + }, + { + "text": "A sweet professor who cares about his students. The content is easy if you pay attention in class. He makes class fun and interesting. Take him!!", + "pos": 0.42, + "neu": 0.542, + "neg": 0.038, + "_id": { + "$oid": "6711d46fcd60fca157e5b649" + } + }, + { + "text": "AH! I love everything about his class. He is an awesome professor. Very helpful and caring. If you have a chance take him!", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b64a" + } + }, + { + "text": "He's a fun teacher who really cares about his teaching. Loved the way he explains everything. He also discusses other things rather than the stories. Remembers your name and he's a tough grader.", + "pos": 0.256, + "neu": 0.707, + "neg": 0.037, + "_id": { + "$oid": "6711d46fcd60fca157e5b64b" + } + }, + { + "text": "A really awesome teacher. Gave the best feedback and genuinely cared. Loved my class and easy grader. Made the Killer Stories class really fun and easy.", + "pos": 0.528, + "neu": 0.381, + "neg": 0.091, + "_id": { + "$oid": "6711d46fcd60fca157e5b64c" + } + }, + { + "text": "G.D was a great professor. He cares about his students and makes sure nobody falls off track. We had to read one story per class but they're short and although some didn't make sense, he made sure to explain thoroughly in class. If you have him, make sure to read \"Mean Yellow Jacket\" It was written by him and it's so brilliantly thought.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b64d" + } + }, + { + "text": "The class i took with him was Killer Stories - a FIQWS class. Took him as a freshman and absolutely loved him. His class may get boring sometimes but he is a really caring person. He's also a very easy grader. I definitely recommend him to all those freshman out there taking FIQWS classes.", + "pos": 0.264, + "neu": 0.674, + "neg": 0.062, + "_id": { + "$oid": "6711d46fcd60fca157e5b64e" + } + }, + { + "text": "G.D Is one of those professors that genuinely care about his students and their performance In the course. If you do the reading and participate In class this will be an easy A, the class held allot of discussion. Great course, you won't regret it!", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b64f" + } + }, + { + "text": "I loved G.D. as a professor. He gave really good feedback. However, there was reading to do for every class, which was not really a problem. He is caring and understanding.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b650" + } + }, + { + "text": "He is GREAT!!! His class is really engaging. As a freshman, having him as my one of my first professors was a blessing. He is a tough grader, but he's an amazing person. Make sure you participate in his class. It shouldn't be hard to do so, he makes you want to participate.", + "pos": 0.289, + "neu": 0.692, + "neg": 0.019, + "_id": { + "$oid": "6711d46fcd60fca157e5b651" + } + }, + { + "text": "You'll want to participate. His encouragement makes you explore regions in your brain, you never knew existed. I didn't know I LOVED creative writing so much! I could write, forever! Since my teen years, people tell me to write a book, but I didn't feel a book inside. With this class, I hope to complete a book. He is AWESOME!", + "pos": 0.226, + "neu": 0.742, + "neg": 0.032, + "_id": { + "$oid": "6711d46fcd60fca157e5b652" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d46fcd60fca157e5b654" + }, + "professor_name": "Joel Hopkins", + "rating": 3.1, + "department": "World Civilizations department", + "comments": [ + { + "text": "I would like to re iterated on my previous review. Dada Hopkins is the best professor I have ever have. He is great to look at, good with students, and his classes are so entertaining. He is very entertaining, charming and very very nice. I hope to have him agian.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b655" + } + }, + { + "text": "hes a great teacher", + "pos": 0.577, + "neu": 0.423, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b656" + } + }, + { + "text": "Nah", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b657" + } + }, + { + "text": "STAY FAR AWAY FROM this professor. Absolute worse professor I have ever taken and worse class experience I ever went through. Assignments every week with trick questions and VERY HARD to complete. On top of that he is an extremely EXTREMELY tough grader. No feedback on any of the assignments. No extra credit. No office hours. Heavy courseload. NO!!", + "pos": 0.024, + "neu": 0.658, + "neg": 0.318, + "_id": { + "$oid": "6711d46fcd60fca157e5b658" + } + }, + { + "text": "We only had 3 papers for the entire class, but he would only post lectures. Never met the guy and his lectures were super long and so many for no reason. There were too many readings, one being like 400 pages long, and I had to rely on my own knowledge for the essays, which is the only reason I passed. Don't take the class if you get overwhelmed.", + "pos": 0.127, + "neu": 0.832, + "neg": 0.041, + "_id": { + "$oid": "6711d46fcd60fca157e5b659" + } + }, + { + "text": "This man could care less whether your in the hospital dying or having a mental breakdown he will not give you an extension. Never talked to him and all we got were lectures with 3 essays for the semester and we were expected to understand it. I only passed using my own knowledge on the time period from previous classes.", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b65a" + } + }, + { + "text": "We had 3 essays to write. Only the 3 essays counted towards our grades. When we got our essays we got No feedback. Very harsh grader. We Never met; only recorded lectures and expected us to understand the sources. His recorded lectures are long and sometimes hard to understand. Overall, dont take this class its not worth the stress and effort.", + "pos": 0.035, + "neu": 0.838, + "neg": 0.127, + "_id": { + "$oid": "6711d46fcd60fca157e5b65b" + } + }, + { + "text": "Professor Hopkins is a very sarcastic man but a decent lecturer. He's extremely hard to please, his standards are ridiculous for an intro class & became entirely intolerable when we went online. He recorded his lectures & would send out assignments - nothing was live. He recorded a lecture completely drunk once but I'll blame that on the pandemic.", + "pos": 0.048, + "neu": 0.758, + "neg": 0.194, + "_id": { + "$oid": "6711d46fcd60fca157e5b65c" + } + }, + { + "text": "Don't take this professor!!! He is an EXTREMELY hard grader. There is no extra credit for this class. He is very sarcastic which is annoying and sometimes rude. There are also way too many readings to do with little time. Overall the worst professor I've ever experienced!! Again DON'T TAKE THIS PROFESSOR.", + "pos": 0.0, + "neu": 0.692, + "neg": 0.308, + "_id": { + "$oid": "6711d46fcd60fca157e5b65d" + } + }, + { + "text": "Probably one of the worst teachers in the school. He grades so harshly I doubt anyone has gotten a 100 on any of his assignments. His lecture are informative. However, he allowed little to no participation to ask important questions. He likes to go on many tangents that don't focus with main topic. If you're learning about history avoid this prof.", + "pos": 0.065, + "neu": 0.779, + "neg": 0.156, + "_id": { + "$oid": "6711d46fcd60fca157e5b65e" + } + }, + { + "text": "Don't take him if you really want to learn. He's not very clear and always off topic. For a 100 level course it should be a little easier. He doesn't use Blackboard, so you won't know how you doing in class. It seems that he has a lot of knowledge and doesn't know how to portrait it to the class.", + "pos": 0.065, + "neu": 0.898, + "neg": 0.038, + "_id": { + "$oid": "6711d46fcd60fca157e5b65f" + } + }, + { + "text": "Participation counts as half of the grade, however he isnt too open to questions throughout the class because he tries to fit his whole lecture within the class time, just keep your head up and off your phone. His lectures are however very interesting and arent hard to follow. Lots of readings. Hes extremely unbiased as well with his lectures", + "pos": 0.14, + "neu": 0.839, + "neg": 0.021, + "_id": { + "$oid": "6711d46fcd60fca157e5b660" + } + }, + { + "text": "I took his food history and culture class. He is a tough grader and gives a lot of reading assignments. I would never take him again.", + "pos": 0.0, + "neu": 0.943, + "neg": 0.057, + "_id": { + "$oid": "6711d46fcd60fca157e5b661" + } + }, + { + "text": "Don't get me wrong, I like history which is why i took this class. However, I've never been so confused about a history class like this one. He goes on a thousand tangents that can be very difficult to keep up. 5 essays & 2 geog assignments is what your grade. NO LATE WORK ACCEPTED. He is a smart man just his teaching methodology is ://///", + "pos": 0.164, + "neu": 0.727, + "neg": 0.109, + "_id": { + "$oid": "6711d46fcd60fca157e5b662" + } + }, + { + "text": "Honestly, I didn't even feel like I was sitting in a history class. He would talk about some things not even related to history. There's no point in feeling confident in the essay's you will write for this class because he's such a harsh grader. He needs to realize it's a history class, not English. I don't recommend taking him.", + "pos": 0.11, + "neu": 0.757, + "neg": 0.133, + "_id": { + "$oid": "6711d46fcd60fca157e5b663" + } + }, + { + "text": "He's honestly not a terrible professor. He's even made us laugh at times because he can get very animated. He's very passionate about what he talks about, but sometimes I can get lost in what he's saying because he will go on rants, but other than that you can get used to it. He's a very tough grader and huge history buff. Get ready to read.", + "pos": 0.17, + "neu": 0.727, + "neg": 0.103, + "_id": { + "$oid": "6711d46fcd60fca157e5b664" + } + }, + { + "text": "HORRIBLE! Do not take him unless you have no other choice. He goes onto tangents in his lectures and always goes out of topic. You have to read 60+ pages before each lecture. Boring lectures. 5 essays and 2 geography assignments along with a final. All super hard.", + "pos": 0.068, + "neu": 0.75, + "neg": 0.182, + "_id": { + "$oid": "6711d46fcd60fca157e5b665" + } + }, + { + "text": "If you want to put slot of hard work into a class take him . If you want to read over 40 pages or work this is the class for you . But if you have other classes and dont really like to read dont take him . The essays are hard ,quizzes and final are all hard . This class makes it hard to get an A or B .", + "pos": 0.031, + "neu": 0.85, + "neg": 0.119, + "_id": { + "$oid": "6711d46fcd60fca157e5b666" + } + }, + { + "text": "He's an insanely intelligent professor, but the readings and some of the topics can be very overwhelming. He has a cool sense of humor and he can really explain and help you with whatever questions you have. Overall, if you have the time to really spend hours reading each class and can attend each class, it's really not as hard.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d46fcd60fca157e5b667" + } + }, + { + "text": "You can learn a lot in his class. However, he is not the best option if you have a full time job and not enough time to study. NOT AN EASY CLASS!!!", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d46fcd60fca157e5b668" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d470cd60fca157e5b66a" + }, + "professor_name": "Harold Forsythe", + "rating": 2.3, + "department": "History department", + "comments": [ + { + "text": "Not a very difficult class, just very boring. 3 essays, a group presentation and a final exam.", + "pos": 0.117, + "neu": 0.753, + "neg": 0.13, + "_id": { + "$oid": "6711d470cd60fca157e5b66b" + } + }, + { + "text": "Most important thing, final exam is write by hand, he gave 20 court case to read. If you're international student, becareful because we cant use any electrical translator. My writing skill is perfect, he gave me a good comment and grade B+ (I have all arguments). In the 2nd essay, he gave A-/ B+.This class pull down GPA, I got A for any other class", + "pos": 0.159, + "neu": 0.804, + "neg": 0.036, + "_id": { + "$oid": "6711d470cd60fca157e5b66c" + } + }, + { + "text": "Prof. Forsythe is so boring I literally can't, he's a very old man and doesn't use technology. Only thing we were graded on were 3 papers on 3 different books (just use chapgpt pls) and one essay for the final. It wasn't a hard class, just very boring and that hour and 15 minutes always felt so long. Good for studying other classes tho ig.", + "pos": 0.081, + "neu": 0.841, + "neg": 0.078, + "_id": { + "$oid": "6711d470cd60fca157e5b66d" + } + }, + { + "text": "He talks a lot. He gives out a roll sheet for attenedance because he couldn't be bothered to learn peoples names. I don't think attendance matters in the end but pretty much 3 papers and a final. If you're a good writer then this class should be a piece of cake. It's history you've learned since day 1 of elementary school.", + "pos": 0.142, + "neu": 0.842, + "neg": 0.015, + "_id": { + "$oid": "6711d470cd60fca157e5b66e" + } + }, + { + "text": "The entire class is just listening to him speak. When he had a cold he made a student collect our papers so he wouldn't get us sick but his mask was on his chin instead of his mouth. The papers are easy but for the test he gave us a 600 page packet to read before hand and the test is an essay at 8am. I should've dropped this class.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b66f" + } + }, + { + "text": "The class was fairly easy imo. None of what you learn in the lectures will play a huge role in the final or any of the papers. He gives you 3 papers based on 3 books, you can just write two cuz he drops the lowest grade from one of those three. And the final is based on civil rights and court cases.", + "pos": 0.11, + "neu": 0.853, + "neg": 0.038, + "_id": { + "$oid": "6711d470cd60fca157e5b670" + } + }, + { + "text": "This is an easy to pass course with a course grade that includes attendance, two papers, and a final exam. He will give you three books to write papers based on them and drop the paper with the lowest grade. There is a deadline for the papers, but many people turn them in a few weeks after the deadline and the professor will still accept them.", + "pos": 0.076, + "neu": 0.877, + "neg": 0.047, + "_id": { + "$oid": "6711d470cd60fca157e5b671" + } + }, + { + "text": "CCNY ppl save yourself and do not take this professor, he is absolutely terrible and is not clear about any aspects of the course. During the semester I reported him to the history department because of how bad he was. Just take another prof for history, AVOID THIS GUY.", + "pos": 0.054, + "neu": 0.743, + "neg": 0.203, + "_id": { + "$oid": "6711d470cd60fca157e5b672" + } + }, + { + "text": "i enjoyed having this professor he would post the work and allow us to do it when the time came however i did not enjoy that he gave grades last minute literally he put all the grades one day before they were due lol also he took forever to reply to an email", + "pos": 0.134, + "neu": 0.822, + "neg": 0.044, + "_id": { + "$oid": "6711d470cd60fca157e5b673" + } + }, + { + "text": "This class was very boring all he did was go on tangents. Your grade is on 3 papers and a final, The lowest paper Is drop. The grading tho is very unclear it should be an easy B if your decent at writing but I dont recommend when there are way better professor to teach than this slacker", + "pos": 0.088, + "neu": 0.77, + "neg": 0.143, + "_id": { + "$oid": "6711d470cd60fca157e5b674" + } + }, + { + "text": "Do not take this professor. When we switched online, he did not keep his students in the loop and would assign work without any email. He also never answered my emails. I emailed my last 2 essays and never received a grade and when I emailed him about it, he said he never received them which does not make sense how he got that email but not Those.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b675" + } + }, + { + "text": "He claims that the goal of the class is to educate and help us grow as writers through history. He goes off tangent A LOT, everything taught in class does NOT correlate to what is due (I promise this), he does NOT give feedback on papers unless you personally ask him. This entire class is super disorganized. His answers to questions are indirect.", + "pos": 0.127, + "neu": 0.842, + "neg": 0.031, + "_id": { + "$oid": "6711d470cd60fca157e5b676" + } + }, + { + "text": "Ok this professor is wack. I took him for my first year and if you are going into college for the first time, it is way different. No homework. Just show up to class and hear him lecture. don't bother taking notes. 3 essays but 1 is optional. The final he gives 2 essay prompts: One bout WWi and one bout civil rights n court cases. Class boring eh", + "pos": 0.043, + "neu": 0.894, + "neg": 0.063, + "_id": { + "$oid": "6711d470cd60fca157e5b677" + } + }, + { + "text": "This is class is an easy A, but I would say this class is boring. However, this class is a easy way to boost your gpa, so just survive the long lecture. There is only three essay to do in this class,but the lowest essay grade gets drop. He gives a final about different court case.", + "pos": 0.137, + "neu": 0.732, + "neg": 0.132, + "_id": { + "$oid": "6711d470cd60fca157e5b678" + } + }, + { + "text": "Take this class if you want to nap. All he does is talk and its often about the same material, showing up felt like a waste of time because it was just him talking and rambling about his really boring college life. it's 3 essays and a final to pass.", + "pos": 0.069, + "neu": 0.833, + "neg": 0.098, + "_id": { + "$oid": "6711d470cd60fca157e5b679" + } + }, + { + "text": "other reviews were right. ONLY TAKE IF YOU ARE TRULY INTERESTED IN HISTORY. Gradewise, class is an easy A bc you only write 2 papers. Off topic too much. Dont bother taking notes. Theres a textbook for the class but I never used it. Final is gna be on court cases and some basic american history. Congrats if you survived taking this class", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b67a" + } + }, + { + "text": "Want to get a free grade come right here. Harold is a sweet guy and he gives little to no feedbacks. But it is an easy A. Do you wanna study history or pass the class? You can do both, the final is the court cases and the amendments. It is an easy A.", + "pos": 0.208, + "neu": 0.768, + "neg": 0.023, + "_id": { + "$oid": "6711d470cd60fca157e5b67b" + } + }, + { + "text": "Just goes off and off and does not get class involved, talks for an hour and 15 minutes straight! If you're into history maybe this class is for you, he really puts you to sleep. 3 essays, does not give any feedback AT ALL & one final which is an essay all you need to do is read the court cases and some basic history knowledge.", + "pos": 0.033, + "neu": 0.967, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b67c" + } + }, + { + "text": "If you want to LISTEN to history, you should take his class. The class was knowledgable however, I questioned myself every time I went to his class \"why am I learning this, is this even useful?\" Because all you need is basic America history, Constitution, rights and certain court cases for the final, then your done.", + "pos": 0.106, + "neu": 0.871, + "neg": 0.023, + "_id": { + "$oid": "6711d470cd60fca157e5b67d" + } + }, + { + "text": "He can't teach. All he does is ramble. I barely took notes on his lecture because he makes me sleep. Makes you read 3 books for 3 essays, drops lowest one. Can't get an A in the class if you don't get A's on the essays. He doesn't give any feedback so go to the writing center to improve your essay. Gives one final exam, essay format.", + "pos": 0.041, + "neu": 0.922, + "neg": 0.037, + "_id": { + "$oid": "6711d470cd60fca157e5b67e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d470cd60fca157e5b680" + }, + "professor_name": "Ian Howe", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "Prof. Howe respects every ideas and can properly schedule the class to give chances to everyone to get involved in the class. He is a sunny and funny man who enjoys the life and spends time volunteering outside the class. If you want to learn something, he is definitely the professor that you want to choose.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b681" + } + }, + { + "text": "I really wanted to like this professor, but perhaps because it was his first time teaching on summer, it was a disaster. He was very unclear about his instructions and blamed students for not taking notes. He refused to acknowledge that if 75% of his students are lost, there is probably something wrong with how he is communicating.", + "pos": 0.025, + "neu": 0.675, + "neg": 0.3, + "_id": { + "$oid": "6711d470cd60fca157e5b682" + } + }, + { + "text": "Prof Howe is a great guy who really wanted the class to be interested in the material and seemed to care. Terrible with instructions, very unclear what he wants and he doesn't prepare you on how to do it. His exams questions are all from quizlet, not very motivating to learn the material when other students are getting 100 without ever reading.", + "pos": 0.135, + "neu": 0.754, + "neg": 0.111, + "_id": { + "$oid": "6711d470cd60fca157e5b683" + } + }, + { + "text": "No doubt one of the best classes I've taken in Baruch. Class was informational and compelling. He gave us many helpful advises and I can't emphasis enough on his accessibility outside of class. Overall, a solid professor who would challenge you to think outside of the box.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b684" + } + }, + { + "text": "Very easy going class. Met once a week and everything was online (tests, homework, group project). Prof Howe has a busy life and you can tell, since his assignments and directions are pretty unclear. overall an easy A class and engaging lectures", + "pos": 0.231, + "neu": 0.73, + "neg": 0.039, + "_id": { + "$oid": "6711d470cd60fca157e5b685" + } + }, + { + "text": "Pretty cool dude, but I was very frustrated because his expectations were so unclear. He's really engaging in class, but unclear with assignments. The whole class was confused. I liked that he had you work in groups the whole time though. I probably wouldn't have survived that class without my group members. We balanced each other out well.", + "pos": 0.161, + "neu": 0.615, + "neg": 0.224, + "_id": { + "$oid": "6711d470cd60fca157e5b686" + } + }, + { + "text": "Keeps class engaged. Homework and tests were all online. Great teacher that everyone should take.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b687" + } + }, + { + "text": "Professor Howe is one of the best professors I've had at CCNY. He's an expert in Strategic Management and I learned so much from his class. Be sure to study, participate, hand in all assignments and put effort in to your group projects. He's very engaging & enthusiastic, although sometimes his lectures are longer than class time. Great professor!", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b688" + } + }, + { + "text": "This was the best decision made for my capstone professor. He was so engaging and made every class an experience. He really cares that you know the material, works with your frame of thinking and guides you to the right answers. Very knowledgable professor and the final project is one of the most exciting encounters you'll have at CCNY.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b689" + } + }, + { + "text": "Every class has a \"so what moment\". He prepares you for the real world. I was able to pull most of my 4 years together in this capstone course. I will absolutely recommend this course for anyone entering their senior year. This is the one professor who keeps it real.", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b68a" + } + }, + { + "text": "All ai have to day is that you wont regret taking this Prof! The absolute best!", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b68b" + } + }, + { + "text": "Prof. Howe is amazing. I have yet to have a professor (one year later) that was as entertaining and fantastic as Prof. Howe. Do you like learning about business? Do you like it when someone makes it easy to remember? Do you like it when that same individual is hilarious as well? Then Professor Howe is definitely your man.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b68c" + } + }, + { + "text": "It was a great pleasure to learn under Professor Ian Howe at CUNY Baruch. Hes incredibly enthusiastic, encourages student participation, and genuinely cares about every single student. Also, his teaching style is interesting and clear. I most definitely learned a lot in his Intro to Business course, and would highly recommend him.", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b68d" + } + }, + { + "text": "Professor Howe is an amazing professor. He's very knowledgeable and experienced. He wants his students to do well and reach for the top. I would definitely recommend everyone to take him, you will learn a lot.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b68e" + } + }, + { + "text": "Professor Howe is absolutely amazing. He helped me discover my true passion is business and even lead me to change my career path! His lessons connect to every day life so you can apply what you learned not only in your career but in day-to-day decision making. He is very concise and clear while also sparking curiosity and a desire to learn more.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b68f" + } + }, + { + "text": "Not an easy class, but probably the best I've taken at CCNY. Professor Howe does a great job of pushing the class, and pulling the answer out of you. Can't say enough about him, and appreciate everything I learned from the class, and the time he spent after providing all kinds of insight from business ideas to networking opportunities.", + "pos": 0.248, + "neu": 0.729, + "neg": 0.023, + "_id": { + "$oid": "6711d470cd60fca157e5b690" + } + }, + { + "text": "Professor Howe is an excellent professor that encourages his students think critically on matters of economics and leadership and management. His lectures are relatable yet thought provoking. Be prepared to work in a group but learn to work effectively. His ability to deliver the course material is key. Recommend to all students", + "pos": 0.271, + "neu": 0.707, + "neg": 0.022, + "_id": { + "$oid": "6711d470cd60fca157e5b691" + } + }, + { + "text": "The professor is great! The class was very helpful and interesting, but he also gives quizzes and group homework. Seems like professor is very passionate about the subject and also bring a lot of other unusual things to it. (for example, Skype conference with the US ambassador of the Marshal Islands)", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b692" + } + }, + { + "text": "One of the best professors at CCNY. Very passionate about his craft and is dedicated to helping his students during and after class, whether it be about classwork or guidance for the future.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b693" + } + }, + { + "text": "I had the chance to take a class with Professor Howe for a marketing concentration class and it was a really good experience. It was not only a simple lecture where students just get some random knowledge about a specific topic. This class was interesting on every business topics focus on the Marketing topic.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d470cd60fca157e5b694" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d471cd60fca157e5b696" + }, + "professor_name": "Bruce Kanze", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "Although you have to read a lot, Professor Bruce deeply cares about each one of his students. You have 3 papers throughout the semester but he gives amazing feedback and constantly gives you chances to fix your writing. The most caring and sincere professors at CCNY. His class discussions are amazing. TAKE HIM!!", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b697" + } + }, + { + "text": "ONE OF THE BEST! KINDEST HUMAN BEING!!!!! PLEASE TAKE HIM U WON'T REGRET!!!!", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b698" + } + }, + { + "text": "He's a great guy. Had him for student teaching and he really helps you grow as a teacher and as a person", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b699" + } + }, + { + "text": "Best professor at CCNY.", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b69a" + } + }, + { + "text": "The best professor at CCNY. He gives good advice and so caring. Honestly, I won't be able to put all my words in here. He's such a nice human being. God bless him. For papers, he tells you what he wants in a paper.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b69b" + } + }, + { + "text": "Highly recommended. He is just amazing! Take this class. It's more than class, you will love his class. He cares about the students and is always willing to help.", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b69c" + } + }, + { + "text": "Words cannot describe this professor. Just take his class and you will not regret it. So much fun.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b69d" + } + }, + { + "text": "Great professor! Do the work and you will get a good grade. He is the sweetest and most understanding professor you will ever have and he deeply cares about each of his students. He does expect a lot on the essays though so make sure you have good ideas that connect to readings and class discussions", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b69e" + } + }, + { + "text": "Bruce is probably the most hands-on and involved professor at CCNY. He is passionate and inspirational in his teachings. He cares deeply about his students and is always willing to work with you inside and out the class. 3 papers, journals and a project are required within the class, but easy A if you just follow along.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b69f" + } + }, + { + "text": "Dont even bother reading his reviews, just take him. He is ABSOLUTELY amazing! Gives great feedback, accessible via email, and makes learning so much fun. Participate, be on time, and show interest. He gets to know each and every student which I respect. Prof. Bruce allows you to rewrite papers to make sure you succeed.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a0" + } + }, + { + "text": "Bruce is one of the most inspirational professors that the School of Education has. However, he is very strict with writing. He will give any student the opportunity to redo their work as long as the student's writing agrees with his ideas.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a1" + } + }, + { + "text": "Bruce is the best professor I ever had. Lots of reading, but not hard. He is caring about everyone in the class, and gives useful feedbacks. Sadly he is not teaching next semester.", + "pos": 0.278, + "neu": 0.638, + "neg": 0.084, + "_id": { + "$oid": "6711d471cd60fca157e5b6a2" + } + }, + { + "text": "Bruce was an amazing Professor. He is very insightful and super kind. There is three papers, which aren't stressful. You have to do the readings and write journal entries, but he isn't strict on what you write. Just do the work, participate a lot, and come to class everyday and the class will flow smoothly.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a3" + } + }, + { + "text": "This class was amazing. There are 3 papers, journal entries, readings and 15 hours of fieldwork. The papers are easy and he gives you extra time if needed. He also let you redo them/fix them for a higher grade. He gives you a textbook, so you don't need to buy one. Readings are in the textbook and journal entries are based on the readings.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a4" + } + }, + { + "text": "Great professor! Definitely someone to look up to and will not forget your face, even a few semesters after. Goes above and beyond to get to know his students and make sure that they are on the right track. His class seemed like a second home, and we were able to build a sense of community.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a5" + } + }, + { + "text": "Bruce is a joy to have as a teacher. He really pushes his students to do their best. There are a lot of reading assignments and A LOT of responses to write but overall the work is fair. You'll spend half of the class working on a project which you will present during the end of the semester. Best Education teacher I've taken!", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a6" + } + }, + { + "text": "Bruce Kanze is an amazing professor. Expect lots of readings, journal entries, fieldwork observation, and project work. It's all worth it though and super fun! The only class I enjoyed and would recommend! No final or midterm. Participation is KEY! Journal entries are a MUST! Reading is a MUST! But he cares about all his students!", + "pos": 0.261, + "neu": 0.715, + "neg": 0.024, + "_id": { + "$oid": "6711d471cd60fca157e5b6a7" + } + }, + { + "text": "His class has alot of reading but they are all great reads and certainly interesting. He creates a classroom environment that is engaging with debates and gives great advice as an educator. He has tons of experience and is someone to look up to!", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a8" + } + }, + { + "text": "Great professor. He is always there for you. Must take him if you are going into education.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6a9" + } + }, + { + "text": "No tests. Read, discuss, think, discuss, write, present, write, discuss. Class became an extended family; people cried on last day. Bruce REALLY cares. About what you think, about making you think more, about why we're doing all this. I wish he could teach all the rest of my education classes. Always available and insightful. You'll leave better.", + "pos": 0.144, + "neu": 0.765, + "neg": 0.09, + "_id": { + "$oid": "6711d471cd60fca157e5b6aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d471cd60fca157e5b6ac" + }, + "professor_name": "Joseph Abbondandolo", + "rating": 4.7, + "department": "Economics department", + "comments": [ + { + "text": "He is a nice professor. His class (I/Opsy) had weekly quizzes and db, is presentation heavy and PARTICIPATION MATTERS. A big chunk of your grade relies on group work so pray that you have decent partners because you will be graded as one. Don't miss any work then expect an easy A, because he doesn't accept late work or round up. Attendance matters.", + "pos": 0.183, + "neu": 0.786, + "neg": 0.031, + "_id": { + "$oid": "6711d471cd60fca157e5b6ad" + } + }, + { + "text": "Took him for Industrial/Organizational psych. Assignments and online tests were easy and class lectures were easy to follow as well. He makes the class based on group/partner work (if you are introverted, don't take him then). He's very nice and cares about his students. He replies to emails outside of his class very quickly, which for me is a plus", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6ae" + } + }, + { + "text": "THIS CLASS IS MOSTLY BASED ON GROUP WORK. IT TURNED OUT SURPRISINGLY FUN I WAS INTIMIDATED AT FIRST BECAUSE OF THE GROUP PRESENTATION AND DEBATE BUT IT ACTUALLY WAS'NT BAD AT ALL. THE PROFESSOR IS VERY KIND AND CARING HE MADE THE CLASSROOM FUN FOR EVERYBODY. I WISH ALL MY PROFESSORS WERE LIKE HIM.", + "pos": 0.324, + "neu": 0.589, + "neg": 0.088, + "_id": { + "$oid": "6711d471cd60fca157e5b6af" + } + }, + { + "text": "hands down one of my favorite classes i have ever taken at CCNY because of the professor.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6b0" + } + }, + { + "text": "This class was truly inspiring and not as stressful as other Eco classes. With an amazing professor this class went by smoothly. The assignments is nothing crazy and Definitely participate a lot and be yourself because it is a free going class. You will love this class and the Professor!", + "pos": 0.332, + "neu": 0.634, + "neg": 0.034, + "_id": { + "$oid": "6711d471cd60fca157e5b6b1" + } + }, + { + "text": "Organizational Change is a great class taught by a great professor. Change happens to all organization and it's important to learn about what it means to really change. This class was easy and I would recommended it.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6b2" + } + }, + { + "text": "It was pleasure taking his class. The syllabus is laden with group activities. A word to the wise be sure you pick/screen your teammates for the group projects. He provides keen insight and cares about his students.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6b3" + } + }, + { + "text": "I can't select many things from the Tag List above so here we go: The professor is very respected and caring, if anyone really wants to learn about HR, this is the Professor to learn from. His lectures are amazing. You can reach out to him anytime for advice. Group work during lectures and at the end group final. Extraordinary human being.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6b4" + } + }, + { + "text": "Great prof. Had a few rough patches as we transitioned to online teaching mid semester but the class was entertaining and he was very \"alive\" during classes. The presentations matter quite a lot and there is a lot of organization and prepping to do before them, so give them your best and work with your partner, you'll live. Tests are alright.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6b5" + } + }, + { + "text": "Take HRM with Prof. Abbondandolo, you won't regret! DO NOT drop the course after the first class! This class requires effort, not an easy A. Had 5 quizzes, 1 group presentations, 1 team debate, and group final. He also assigned a 4-6 research paper Due on December. This class seem hard on how he harshly grade his exam. Not easy exam.", + "pos": 0.062, + "neu": 0.837, + "neg": 0.102, + "_id": { + "$oid": "6711d471cd60fca157e5b6b6" + } + }, + { + "text": "The workload and creativity aspect of the class will make you want to drop it, but don't. This class requires effort but it is doable. He's understanding. There are 2 presentations, 1 debate, simple weekly hw, and a group final. Have good partners for group assignments. Participate. READ THE TEXTBOOK TO PASS QUIZZES. Make the most out of the class.", + "pos": 0.106, + "neu": 0.87, + "neg": 0.024, + "_id": { + "$oid": "6711d471cd60fca157e5b6b7" + } + }, + { + "text": "Take HRM with Prof. Abbondandolo, you won't regret! DO NOT drop the course after the first class! This class requires effort, not an easy A, but definitely doable. Had 5 quizzes, 3 group presentations, 1 team debate, and group final. STUDY for the quizzes by reading textbook! There's HW and participation matters! Highly recommend taking this class!", + "pos": 0.193, + "neu": 0.781, + "neg": 0.026, + "_id": { + "$oid": "6711d471cd60fca157e5b6b8" + } + }, + { + "text": "When I heard I have to do 3 presentations and it has to be creative, I wanted to drop this class so badly. But I forced myself to stay and I don't regret it. This professor gives amazing lectures, and class is always fun. If you want to do good on the test, read the textbook! Always carry cash on you, if you come late to class.", + "pos": 0.234, + "neu": 0.673, + "neg": 0.093, + "_id": { + "$oid": "6711d471cd60fca157e5b6b9" + } + }, + { + "text": "By far one of the best profs I've had at CCNY. I thought this class would be a drag, especially since it's on a Saturday, but it turned out to be my favorite class this semester. He gives 5 quizzes (lowest gets dropped), 3 group presentations (not stressful), E.C & a group final. The content is interesting & applicable for daily use. Def recommend!", + "pos": 0.218, + "neu": 0.721, + "neg": 0.061, + "_id": { + "$oid": "6711d471cd60fca157e5b6ba" + } + }, + { + "text": "AMAZING professor with real world experience who cares. Class has a lot of really useful information. Study for the quizzes and exams, the class is easy but the exams need to be studied for. Wish he taught more courses.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6bb" + } + }, + { + "text": "one of the worst professor in ccny. his class is fun, but don't let the fun part tricked you. his quizzes are hard. he doesn't teach of prepared the student for the exams. and there too much work to be done every class.", + "pos": 0.042, + "neu": 0.729, + "neg": 0.229, + "_id": { + "$oid": "6711d471cd60fca157e5b6bc" + } + }, + { + "text": "He is by fa the best professor in City College. Super understanding. Clear direction. 3 group projects 5 quizzes midterm and final. He drops west quiz score so that's great. If you study the slides you will be fine", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6bd" + } + }, + { + "text": "he is the best professor in the economic department. He gives homework that is due every class but they are super easy, as long as you submit them in time you'll get the full grade. He drops the lowest quiz and gives out Extra credit. Be prepared to persent more than 3 times and be creative, bring confetti. he offers to fix resume and cover letter.", + "pos": 0.241, + "neu": 0.718, + "neg": 0.041, + "_id": { + "$oid": "6711d471cd60fca157e5b6be" + } + }, + { + "text": "Great Professor! He is easy-going and is empathetic with students. There are 3 presentations and 5 quizzes. The class is not hard. Just show up, participate, and do the simple homework that he assigns. I would take a class with him again.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6bf" + } + }, + { + "text": "He's a really great professor. He answers your questions and try to help. There is a quiz like every other week based on the lectures and notes. There are 3 presentations that you can do by group or individually. Quizzes are easy if you read with 25 mc and 5 extra credit. Take him", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d471cd60fca157e5b6c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d472cd60fca157e5b6c2" + }, + "professor_name": "Tamara Kucherenko", + "rating": 3.8, + "department": "Mathematics department", + "comments": [ + { + "text": "She knows what she's doing but I don't recommend her. Her tests were in person and very hard. She gives a practice test a week before the actual one and they have the same concepts but the actual test is harder. Her lectures were online and it would be hard to keep up with her since she would skip steps and go too fast. Self-study. Calc 2 is hard.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d472cd60fca157e5b6c3" + } + }, + { + "text": "Pros: MyMathLab is great for practice and studying. All exams were in person, and they were fair. If u studied, ur good. Always available for office hours or email. Cons: Terrible teaching/lectures. Cant teach. Tutoring is ok. Tough grader, so make sure you dont make mistakes on exams. Sometimes unintentionally (or not) discouraging to bad students", + "pos": 0.272, + "neu": 0.663, + "neg": 0.065, + "_id": { + "$oid": "6711d472cd60fca157e5b6c4" + } + }, + { + "text": "Very tough class. Your proof writing skills need to be sharp. But professor Kucherenko does a really good job explaining the proof techniques you will be using throughout the course. Study hard, because the exams are hard, but she will test your ability to write the proofs she has shown you before.", + "pos": 0.123, + "neu": 0.799, + "neg": 0.078, + "_id": { + "$oid": "6711d472cd60fca157e5b6c5" + } + }, + { + "text": "I took the class in spring 2020. She is a good professor. Her in class quizzes were identical to the homework problems. However the midterm was a little challenging. Then the corona thing happened and we switched to remote learning. I like the fact that you can access the recorded lecture anytime in blackboard. i'd recommend u to take the class.", + "pos": 0.136, + "neu": 0.825, + "neg": 0.04, + "_id": { + "$oid": "6711d472cd60fca157e5b6c6" + } + }, + { + "text": "Avoid her. She is always confused.", + "pos": 0.0, + "neu": 0.471, + "neg": 0.529, + "_id": { + "$oid": "6711d472cd60fca157e5b6c7" + } + }, + { + "text": "very good teacher for advanced courses. don't trust the negative reviews. I thought she would be terrible because of them, but really it has been the opposite for me. not even guaranteed to get an A yet but take her for adv calc 1 or 2", + "pos": 0.111, + "neu": 0.812, + "neg": 0.077, + "_id": { + "$oid": "6711d472cd60fca157e5b6c8" + } + }, + { + "text": "Prof. Kucherenko was great, the subject wasn't easy but she took the time to answer every question and to make sure people understood the subject. If you are not afraid of sitting down and doing some work she is the professor for you.", + "pos": 0.117, + "neu": 0.847, + "neg": 0.036, + "_id": { + "$oid": "6711d472cd60fca157e5b6c9" + } + }, + { + "text": "She gives the hardest problems which even the best students can't finish. She misses the idea of time. Try to finish one problem that takes up to 40 min. when you have 3 other problems and a total time of 75 min. The class average was in the low 60's.", + "pos": 0.098, + "neu": 0.733, + "neg": 0.17, + "_id": { + "$oid": "6711d472cd60fca157e5b6ca" + } + }, + { + "text": "She is a really good professor. But Calc 2 is a difficult class and requires a lot of studying. She teaches well but you still need to self study. The webassign hw was good practice because it ranged from easy to most difficult questions. Her tests were tough but tons of practice will get you an A. Difficulty of her tests prepares you for final.", + "pos": 0.153, + "neu": 0.702, + "neg": 0.145, + "_id": { + "$oid": "6711d472cd60fca157e5b6cb" + } + }, + { + "text": "Overall,I enjoyed the material being taught but the professor made it difficult.I enjoy math and understand it but when I tell you her exams are tough,they are tough.I studied weeks before an exam for this class and did poorly because the exams were extremely tough and she did not give partial credit. So,if you understand very very well, go for it.", + "pos": 0.14, + "neu": 0.79, + "neg": 0.07, + "_id": { + "$oid": "6711d472cd60fca157e5b6cc" + } + }, + { + "text": "She wasn't a bad professor at all in terms of teaching, but she expect you to know a lot already. Russian accent that is just a bit hard to understand. Four exams, tough grader BUT she does give practice exams in the same format so you'll know exactly what is going to be on the exam. In my hybrid class, she gave a quiz every week.", + "pos": 0.028, + "neu": 0.923, + "neg": 0.049, + "_id": { + "$oid": "6711d472cd60fca157e5b6cd" + } + }, + { + "text": "Writes proofs from book. Very dry and boring. Bad at explaining. So for a real math class (not one of calcs) take someone else, if you want to learn.", + "pos": 0.039, + "neu": 0.779, + "neg": 0.182, + "_id": { + "$oid": "6711d472cd60fca157e5b6ce" + } + }, + { + "text": "Not clear at all. She just re wrote the proofs from the book and rather explained anything. When asked for something she would got confused. At the end you have to do your own self study from the book because her classes were not helpful at all.", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d472cd60fca157e5b6cf" + } + }, + { + "text": "She's great!! If you do your homework, you never gonna have problems with this subject. At the end of the semester you will get what you deserve!", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6d0" + } + }, + { + "text": "By the time we got to power series and uniform convergence of a sequence of functions, she should have had more alternative examples and clearer explanations instead of rewriting proofs from the book. I also wish she curved in tests. Her office hours are not that great, 1 on 1 works fine but bieekly quizzes don't really help. Harsh grader on tests", + "pos": 0.097, + "neu": 0.826, + "neg": 0.078, + "_id": { + "$oid": "6711d472cd60fca157e5b6d1" + } + }, + { + "text": "Meh professor. When discussing the definition of uniform continuity and discussing the applications of uniform convergence, her explanations were not clear enough. In exams, it's not difficult, however, she could have taught the class better instead of rewriting proofs from the book. I felt that if she had curved the class, it would be much better.", + "pos": 0.127, + "neu": 0.817, + "neg": 0.056, + "_id": { + "$oid": "6711d472cd60fca157e5b6d2" + } + }, + { + "text": "freshman, took this class fall '13. It was hybrid- only 1 day/week & w lectures online. Very helpful & understanding prof. Taught at UCLA. 2 midterms. got a B with minimum study. Dont fear her accent and drop the course instead be adult and get urself adjusted, deff use office hours. p.s. to handle hybrid calc u have to be already good at math", + "pos": 0.122, + "neu": 0.848, + "neg": 0.03, + "_id": { + "$oid": "6711d472cd60fca157e5b6d3" + } + }, + { + "text": "Very clear and helpful professor. Uses her own lessons. Do the hw's quizzes are exactly the hw's. Drops one quiz. Her midterms are really difficult, but doable however. Disagree with whoever said she is generous with partial credit, she gives very little to none. But she is nice and very good at teaching. She is also very hot.", + "pos": 0.264, + "neu": 0.666, + "neg": 0.071, + "_id": { + "$oid": "6711d472cd60fca157e5b6d4" + } + }, + { + "text": "Quizzes based on HW. The test questions are as hard as the hardest HW questions. I personally could not follow her in class so I used YouTube outside of class. However, many others were able to follow her so it depends on who you are. Make sure to do extra problems outside of homework to solidify work. Go to Office Hours! Overall,she is very fair.", + "pos": 0.074, + "neu": 0.868, + "neg": 0.058, + "_id": { + "$oid": "6711d472cd60fca157e5b6d5" + } + }, + { + "text": "A very good professor. She completely understands the course materials, doesn't depend on the textbook for lectures, and gives her own explanation of the course. She gives practice exams, and wishes you for the best if you work hard. A very nice professor.", + "pos": 0.235, + "neu": 0.738, + "neg": 0.027, + "_id": { + "$oid": "6711d472cd60fca157e5b6d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d472cd60fca157e5b6d8" + }, + "professor_name": "Andy Rich", + "rating": 4.6, + "department": "Political Science department", + "comments": [ + { + "text": "I took professor Rich for PSC 21600 and the class was slightly challenging. He does communicate with students effectively and if you have questions he is responsive. Participate and improve your work and you will achieve a decent grade.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6d9" + } + }, + { + "text": "Avoid the comment below me, Rich is very personable and makes himself available if you need him, just keep him informed. With that being said he has really high expectations, mediocre work will not be rewarded. Fantastic Professor! No tests, only essays.", + "pos": 0.071, + "neu": 0.728, + "neg": 0.201, + "_id": { + "$oid": "6711d472cd60fca157e5b6da" + } + }, + { + "text": "He is not bad a bad professor but he was honestly not one of my favorite. He is one of those professors who will smile in your face all semester yet give you bad grades on assignments even if you know you answered everything correctly. He is more friendly than most professors in the apartment though, so I guess he is worth a try", + "pos": 0.268, + "neu": 0.675, + "neg": 0.057, + "_id": { + "$oid": "6711d472cd60fca157e5b6db" + } + }, + { + "text": "Prof. Rich is very intelligent. He commands the subject area he teaches and allowed us question, which we may not have found an answer but came up with fixes. He was the first prof. to give his phone number to reach him when he was not at school so I could perfect my work. He gave a 5 pg analytical paper, 2 pg response and a mid term and final.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6dc" + } + }, + { + "text": "He's a really good proffessor, although i had a a bad T.A. (nick), the prof. is really nice and helpful. Remember to go to class, even though its a lecture hall. Most of the exam questions comes from his lectures. So if you take good notes and look at the review sheet he gives u, you're guaranteed a really good grade.", + "pos": 0.209, + "neu": 0.744, + "neg": 0.047, + "_id": { + "$oid": "6711d472cd60fca157e5b6dd" + } + }, + { + "text": "Easy class (if you do your part). Go to class and take notes. Take the quizzes (sometimes they're so easy that if you follow what he's saying in class-you could just skim through the reading). Memorize everything on the review sheets. And, the papers are pretty easy. I'm selling my book btw (@ discounted price). If ne1's interested, get @ me.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6de" + } + }, + { + "text": "too many online quizzes", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6df" + } + }, + { + "text": "He is hard! He's general towards what he wants...", + "pos": 0.0, + "neu": 0.825, + "neg": 0.175, + "_id": { + "$oid": "6711d472cd60fca157e5b6e0" + } + }, + { + "text": "One of the best professors I have had at CCNY. If you can, take one of his upper division classes. Very smart guy.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e1" + } + }, + { + "text": "very good professor very fun and energetic keeps you wake", + "pos": 0.587, + "neu": 0.413, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e2" + } + }, + { + "text": "Make sure you come to class-the tests have some questions that are only discussed in the lectures. If you study, you'll be fine. Make sure you come to class on time though.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e3" + } + }, + { + "text": "Prof. Rich is awesome. He's very straight-forward and let's you know exactly what he expects of you. Weekly quizes help you stay on top of things. Does not give hw. Only 2 written papers, a midterm, and a final. All easy. Come to class early as he hates late walk-ins. Highly recommended. (FYI - Janet is a kick-ass TA!!!)", + "pos": 0.279, + "neu": 0.682, + "neg": 0.039, + "_id": { + "$oid": "6711d472cd60fca157e5b6e4" + } + }, + { + "text": "Very organized professor, excellent lecturer. His lectures are clear and easy to understand. Midterm is easy, just study what he tells you to, same goes for final. Papers- it's worth at least one trip to the writing center for each, they grade on grammar. Janet, my T.A, was excellent as well. They both encouraged their students to think, welcomed q", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e5" + } + }, + { + "text": "he loves teaching as much as he loves the subject. turned dry topics into interesting discussion points. he is clear, concise, accurate and organized. he is attentive to students which came as a surprise since psc 101 is a lecture course. he has a great demeanor and attitude. take him if for psc courses.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e6" + } + }, + { + "text": "One of my favorite professor at City College - I have only like 2. This guy is very helpful and is a very teacher student kind of guy. Why doesn't CCNY have more of these professors?", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e7" + } + }, + { + "text": "nice teacher will listen two paper and two test his TA domanski is the manski i liked both of them i could not complaint you a an easy quiz every week you its ten questions long multiple choice. he give all the answers in his lectures so just paay attenttion.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e8" + } + }, + { + "text": "Prof. Rich was by far the best professor I've had.", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6e9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d472cd60fca157e5b6ea" + } + }, + { + "text": "good professor, passionate about subject, funny guy, likes to here individual opinions, flexible. easy", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6eb" + } + }, + { + "text": "Excellent teacher and advisor.", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6ec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d472cd60fca157e5b6ee" + }, + "professor_name": "Maria Binz-Scharf", + "rating": 3.5, + "department": "Economics department", + "comments": [ + { + "text": "She is amazing! So understanding", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6ef" + } + }, + { + "text": "This was my fav prof ever at ccny. she's very understanding just talk to her don't lie. She's very sweet and wants to make sure everyone is enjoying the class and doesn't overwhelm you, i took this class as an elective and i 100% would take her again. Coming from a person that doesn't like class that are hard or give too much work.", + "pos": 0.183, + "neu": 0.77, + "neg": 0.047, + "_id": { + "$oid": "6711d472cd60fca157e5b6f0" + } + }, + { + "text": "This class was really interesting because it may seem like she doesn't have everything set. These classes are very new at CCNY so there is no strong foundation. However, she knows a lot, and the expectation is to talk, a lot, and complete all of the work. Do that, and you're good.", + "pos": 0.163, + "neu": 0.792, + "neg": 0.046, + "_id": { + "$oid": "6711d472cd60fca157e5b6f1" + } + }, + { + "text": "I had the pleasure of taking 2 classes with Prof Binz-Scharf. She is an extremely caring and passionate professor. She may seem a bit all over the place sometimes, but she knows her stuff! She is always available to help outside of class. As long as you get your work done (on time), you should be fine. I would definitely take her class again!", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6f2" + } + }, + { + "text": "She is by fair one of the best professors i have ever had here at CCNY. She genuinely cares for her students and wants nothing but the best for them. She can be a tough professor at times but she knows what she is doing. I have had the pleasure of taking two courses with Professor Binz-Sharf! she is also always available outside of class for help!", + "pos": 0.189, + "neu": 0.734, + "neg": 0.077, + "_id": { + "$oid": "6711d472cd60fca157e5b6f3" + } + }, + { + "text": "She was OK. But she was distracted all semester because she was appointed chairman. She was fired from being chairman, so it might become different now. H grading system is strange.", + "pos": 0.0, + "neu": 0.733, + "neg": 0.267, + "_id": { + "$oid": "6711d472cd60fca157e5b6f4" + } + }, + { + "text": "Let me sum it up for you. Dont take her class. Got B but took a lot of work and I lost interest in management.", + "pos": 0.134, + "neu": 0.768, + "neg": 0.098, + "_id": { + "$oid": "6711d472cd60fca157e5b6f5" + } + }, + { + "text": "Her grades come out of nowhere. I also agree with the student who said she's fake friendly. Don't take here.", + "pos": 0.126, + "neu": 0.669, + "neg": 0.205, + "_id": { + "$oid": "6711d472cd60fca157e5b6f6" + } + }, + { + "text": "One of the worst professor Ive ever had. Attended class every day but midterm had nothing to do with the class lectures. She disrespects and humiliates students by going up to them and asking them questions in a class of 100 people. This is not high school! You Crazy!! Shes always late to class, even her own office hours. Don't take her.", + "pos": 0.0, + "neu": 0.867, + "neg": 0.133, + "_id": { + "$oid": "6711d472cd60fca157e5b6f7" + } + }, + { + "text": "After receiving no grades on any assignment and only positive feedback for the entire semester I was given an A-. Her grading is subjective despite any rubrics that implicate otherwise. If you don't share her opinions on certain topics it will hurt your grade.", + "pos": 0.109, + "neu": 0.747, + "neg": 0.143, + "_id": { + "$oid": "6711d472cd60fca157e5b6f8" + } + }, + { + "text": "Professor Binz-Scharf had a clear grading criteria from day one but never made us aware of our grades in the class until putting a random letter grade online. She claims to leave her political views outside of the classroom but that is anything but the truth.", + "pos": 0.097, + "neu": 0.877, + "neg": 0.027, + "_id": { + "$oid": "6711d472cd60fca157e5b6f9" + } + }, + { + "text": "So many people cheat in this class and I don't know why. If you read the textbook, attend her lectures, you will get an A. This is not an easy A because you actually need to put work into it. She's also a great lecturer, so it's not like her class is a drag. I recommend her.", + "pos": 0.098, + "neu": 0.755, + "neg": 0.147, + "_id": { + "$oid": "6711d472cd60fca157e5b6fa" + } + }, + { + "text": "Only showed up for midterms and still got an A. The required textbook was very clear and enjoyable. The homework assignments can be done just by skimming the chapter. Pretty easy A. Just read the textbook (not many pages). She's very inspirational. She knows her stuff!", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6fb" + } + }, + { + "text": "Doesn't answer questions in class. Has bubbly personality. Smiley on the outside but discourteous on the inside. Will look down on you and put you down in front of the entire class. Will call you out and call names. Doesn't return exams and misgrades students' tests. Doesn't care about students at all. Can't teach. Not worth anyone's money and time", + "pos": 0.056, + "neu": 0.89, + "neg": 0.054, + "_id": { + "$oid": "6711d472cd60fca157e5b6fc" + } + }, + { + "text": "60% 3 in-class exams, 40% HW (all online). Lectures conducted in HUGE auditorium, you will have to learn a lot of material on your own. HW and exams are different. Powerpoints are confusing and vague in comparison to the text. Does not allow electronics in class, yet all HW and the actual textbook are online and the class is hybrid.", + "pos": 0.047, + "neu": 0.875, + "neg": 0.078, + "_id": { + "$oid": "6711d472cd60fca157e5b6fd" + } + }, + { + "text": "She is not an easy professor. Whatever grade you get, you must earn it. Her homework assignments are hard but really do help you out later on. I enjoyed this class and she really helped met out in getting a good grade.", + "pos": 0.235, + "neu": 0.709, + "neg": 0.056, + "_id": { + "$oid": "6711d472cd60fca157e5b6fe" + } + }, + { + "text": "Bubbly personality, but this is a front. She could care less about the students. If you are reading this Maria, my advice to you is to try to be more sincere. You tend to let your mood affect the way you conduct and respond to your class.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b6ff" + } + }, + { + "text": "Having taken several courses with her, she is a professor who gives actually cares about her students. She will take time out to help even if she is really busy. Her classes are not \"easy\" but they provide a good mix of challenge and relevant material. Also she is a MANAGEMENT professor; So obviously her course will focus on management not Eco.", + "pos": 0.135, + "neu": 0.84, + "neg": 0.025, + "_id": { + "$oid": "6711d472cd60fca157e5b700" + } + }, + { + "text": "I have taken her for a few classes and can honestly say I have learned soo much from her. She is a very smart woman who knows a lot about a wide range of topics. I would take her again in the future.Also she treats you a person not just a student and does not talk down to you. I think by doing this she gets the best out of you", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d472cd60fca157e5b701" + } + }, + { + "text": "I have taken many professors who claim to be helpful but they don?t fulfill on this promise. This professor how ever is the opposite. She is more than helpful in understand the course material. She is a joy to learn from, she is very knowledgeable and makes learning fun. Her Hw can be a little difficult but she allows you to send a draft in advance", + "pos": 0.267, + "neu": 0.7, + "neg": 0.033, + "_id": { + "$oid": "6711d472cd60fca157e5b702" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d473cd60fca157e5b704" + }, + "professor_name": "Catherine Franklin", + "rating": 4.2, + "department": "Education department", + "comments": [ + { + "text": "Professor Franklin is alright overall. She is very sweet but she has her moments where she can be a little passive aggressive and rude. She tries to be", + "pos": 0.16, + "neu": 0.679, + "neg": 0.162, + "_id": { + "$oid": "6711d473cd60fca157e5b705" + } + }, + { + "text": "Sweetheart until you disagree with her opinion. She will not fully read your email.", + "pos": 0.228, + "neu": 0.635, + "neg": 0.138, + "_id": { + "$oid": "6711d473cd60fca157e5b706" + } + }, + { + "text": "Professor Franklin's inquiry class is very easy. She seems like the sweetest lady in the beginning until you disagree or have a different opinion.", + "pos": 0.194, + "neu": 0.717, + "neg": 0.089, + "_id": { + "$oid": "6711d473cd60fca157e5b707" + } + }, + { + "text": "The biggest sweetheart and a gem for the department. No words to describe how much she cares about her students. Opens class by telling us opportunities. Loved the field trips this semester. She truly goes above and beyond. No words to describe except that I feel sorry for anyone who has never had the pleasure of knowing such an amazing mentor.", + "pos": 0.256, + "neu": 0.636, + "neg": 0.108, + "_id": { + "$oid": "6711d473cd60fca157e5b708" + } + }, + { + "text": "Very easy to pass this class. She loves when students participate and join in group discussions. Very little homework was assigned.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b709" + } + }, + { + "text": "This lecturer is quite endearing. She is extremely understanding if there is a problem, She devotes an adequate amount of time to completing her assignment. When I took her class, she assigned only around three assignments Everything is quite simple. I admire her enthusiasm for leading the class on a campus tour.", + "pos": 0.178, + "neu": 0.777, + "neg": 0.045, + "_id": { + "$oid": "6711d473cd60fca157e5b70a" + } + }, + { + "text": "The best professor- goes the extra mile to help her students , great feedback to help for future. Very understanding and helpful grader. Tries to help students beyond the classroom for their future. Gives papers and projects, no tests. Be present on time and participate. Very interesting class with field trips and other great experiences! Good luck", + "pos": 0.405, + "neu": 0.568, + "neg": 0.027, + "_id": { + "$oid": "6711d473cd60fca157e5b70b" + } + }, + { + "text": "Professor Franklin is a very sweet and understanding professor who gives plenty of constructive criticism, with that being said she doesn't like it when you do not take into consideration her comments. Most of her comments are suggestions and if you do not use them exactly how she wants you to, she gets very upset. We went on alot of fieldtrips.", + "pos": 0.048, + "neu": 0.836, + "neg": 0.116, + "_id": { + "$oid": "6711d473cd60fca157e5b70c" + } + }, + { + "text": "Professor Franklin is the best CCNY professor who cares about her work and her students! I loved the trips we took and wanted to take more, but we had only a few because of weather. She grades fairly and cares about if her students understand the material or not. I would love to take her class again! :) #Best Education Instructor ever!!!!!!", + "pos": 0.27, + "neu": 0.674, + "neg": 0.056, + "_id": { + "$oid": "6711d473cd60fca157e5b70d" + } + }, + { + "text": "Prof. Franklin is by far the best professor I have ever had! She changed my life! She really cares about her work and her students, and it is blatantly obvious that she is a master at her craft. We are as involved in the classroom as she is, and we all have a voice. She helped us create a sense of community and develop long lasting friendships!", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b70e" + } + }, + { + "text": "At first, I was thrown off on the amount of trips she took us on, but as time went by, it started to make sense. No textbook, amazing feedback. If you're not a strong writer please go to the writing center before turning in papers. She takes attendance and gives extra credit which is good. Classroom was very open-ended. I recommend.", + "pos": 0.177, + "neu": 0.69, + "neg": 0.134, + "_id": { + "$oid": "6711d473cd60fca157e5b70f" + } + }, + { + "text": "Extremely engaging and helpful. If you're a Type A personality, her VERY open-ended style may be unsettling at first. Assignments may seem unclear, as she's more interested in what YOU get out of them than in filling your head for you; YOU fill in much of their purpose. Just finish assignments, and be passionate and engaged, and you'll do fine.", + "pos": 0.232, + "neu": 0.74, + "neg": 0.028, + "_id": { + "$oid": "6711d473cd60fca157e5b710" + } + }, + { + "text": "Professor Franklin is a joy to have! YOU MUST TAKE HER! As a first time education student, she really showed me the ropes to education. She was very welcoming and is even my adviser. She is very lenient with her work, she never raises her voice and is such a sweetheart. She is very intrigued by what the student has to say. We only had 3 papers.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b711" + } + }, + { + "text": "GreatProfessor - if you want to learn about Inquiry - she is a great resource. Interesting readings, stimulating discussions. Recommended for those interested in something different.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b712" + } + }, + { + "text": "Great Professor.She's very nice, but she gives a lot of reading(easy).Participation is a MUST.Attendance is a MUST.She doesn't like late comers.She acts like she doesn't care about how late or how much you've been absent,but at the end she counts that towards your grade other than that she's awesome.No final3 Major papers.She gives plenty of time:)", + "pos": 0.121, + "neu": 0.785, + "neg": 0.094, + "_id": { + "$oid": "6711d473cd60fca157e5b713" + } + }, + { + "text": "SHE IS NICE. SHE IS NOT HARD AT ALL. SHE GIVES A LOOOOT OF TIME FOR YOU TO COMPLETE YOUR WORK. SOME OF HER READINGS WERE INTERESTING. GOOD CLASS. I HIGHLY RECOMMEND!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b714" + } + }, + { + "text": "She was easy and all her work was not that hard. She does like to give a lot of readings but it's all pretty easy. No final, no midterm for the class. Just do the papers which comes out to be about 3 in total or so. Fieldwork is required and participation is a must. Overall, an easy class.", + "pos": 0.263, + "neu": 0.699, + "neg": 0.038, + "_id": { + "$oid": "6711d473cd60fca157e5b715" + } + }, + { + "text": "I liked this professor, she seemed to be very into the education field. However sometimes she gives this weird look and pauses in the middle of student responses and it makes me feel a little unsure and uncomfortable.", + "pos": 0.066, + "neu": 0.796, + "neg": 0.139, + "_id": { + "$oid": "6711d473cd60fca157e5b716" + } + }, + { + "text": "Inquiry: she is lame at times... by the middle of the semester she became rude and angry. its not my fault her hair looks like that.", + "pos": 0.136, + "neu": 0.602, + "neg": 0.261, + "_id": { + "$oid": "6711d473cd60fca157e5b717" + } + }, + { + "text": "At, first she was a very nice professor. Gave too much work and at times didn't really get a chance to go over it. Participation is a must. Towards the middle I lost interest because of a rude comment she said to me.", + "pos": 0.162, + "neu": 0.736, + "neg": 0.103, + "_id": { + "$oid": "6711d473cd60fca157e5b718" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d473cd60fca157e5b71a" + }, + "professor_name": "Alberto Guzman", + "rating": 2.3, + "department": "Mathematics department", + "comments": [ + { + "text": "Touched me still got an A+", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b71b" + } + }, + { + "text": "He was teaching math at Lehman College super cool super chill I definitely passed my math test because of how good of a professor he is !", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b71c" + } + }, + { + "text": "Extremely well prepared and knowledgeable about the topic. Provides detailed explanations and builds on prior learning. If you don't do the work - don't be surprised by your outcome. If you do the work - it is a very rewarding class.", + "pos": 0.176, + "neu": 0.788, + "neg": 0.035, + "_id": { + "$oid": "6711d473cd60fca157e5b71d" + } + }, + { + "text": "This teacher hates his students. Many students fail his class.", + "pos": 0.0, + "neu": 0.556, + "neg": 0.444, + "_id": { + "$oid": "6711d473cd60fca157e5b71e" + } + }, + { + "text": "this professor is the worst professor ever, he doesn't curve and takes a lot of point from a small little mistake. my friend told me to drop his class but i didn't and it end up missing up my average.and his exam, some of the question are not clearly stated so please if you see his name on any of the classes you want to take, run.", + "pos": 0.088, + "neu": 0.765, + "neg": 0.147, + "_id": { + "$oid": "6711d473cd60fca157e5b71f" + } + }, + { + "text": "If you guys goin to listen to me then plz dont take this guy. he is one of worse profesor i ever had. exams are tough. cant really ask questions in the class.", + "pos": 0.036, + "neu": 0.836, + "neg": 0.128, + "_id": { + "$oid": "6711d473cd60fca157e5b720" + } + }, + { + "text": "very good teacher", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b721" + } + }, + { + "text": "I Really Dislike this Proffessor!...By all means avoid taking this guy...he sucks...and the whole class fails.", + "pos": 0.0, + "neu": 0.614, + "neg": 0.386, + "_id": { + "$oid": "6711d473cd60fca157e5b722" + } + }, + { + "text": "The first day he seemed real nice. IYet as the year went on the class got harder and he's not too open to questions. The homework should be easy if you understand it. If you don't it's probably better if you take tutoring, which was the mistake on my part. Take him for a bit and if you dont like it change classes quick.", + "pos": 0.08, + "neu": 0.824, + "neg": 0.097, + "_id": { + "$oid": "6711d473cd60fca157e5b723" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d473cd60fca157e5b724" + } + }, + { + "text": "Knows his stuff really well but grades rough.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d473cd60fca157e5b725" + } + }, + { + "text": "I don't know know about who is saying this professor is good. For me, I studied and I did homework and I participated and I know lots of stuffs more than average person in the cal(3) class and I failed with F. I focused on this class to get a good grade but it turned upside down and end up with Failing. So, If you think you can handle it..??????", + "pos": 0.073, + "neu": 0.831, + "neg": 0.097, + "_id": { + "$oid": "6711d473cd60fca157e5b726" + } + }, + { + "text": "This professor is not a nice professor. I saw in the class that the person, who is taking this class with him twice already and even though you got B average in the class, you are not safe to pass the finals. So, if you are looking for troubles in that class, Take with him. Otherwise, try to avoid with him and take with another professor.", + "pos": 0.0, + "neu": 0.862, + "neg": 0.138, + "_id": { + "$oid": "6711d473cd60fca157e5b727" + } + }, + { + "text": "THIS GUY IS EVIL! HE SHOULD NOT TEACH AND HE HATES IT WHEN STUDENTS ASK QUESTIONS. HE TRIES HARD TO MAKE TESTS VERY HARD. REVIEWS WHO SAY HE IS A GOOD PROFESSOR ARE LYING.... DO NOT TAKE HIM", + "pos": 0.059, + "neu": 0.653, + "neg": 0.288, + "_id": { + "$oid": "6711d473cd60fca157e5b728" + } + }, + { + "text": "one of the best professor, he teaches his way which make the subject easier. i was afraid at the begging when i read the other commets but i think that it is not that hard to get an A in the class. HE makes alot of problems in the class which is better than just theorem. if you think u are good and like math take it with this professor", + "pos": 0.202, + "neu": 0.755, + "neg": 0.043, + "_id": { + "$oid": "6711d473cd60fca157e5b729" + } + }, + { + "text": "he know his stuf and he wants to know your stuff the way he knows his so get yourself ready for a very tough professor. you should know all the past math in order to do good in his class.", + "pos": 0.127, + "neu": 0.832, + "neg": 0.04, + "_id": { + "$oid": "6711d473cd60fca157e5b72a" + } + }, + { + "text": "IF you are reading this... consider yourself lucky. If you have the option of taking a class with someone else... don't think it twice. If you have no option, you are better off not taking math for the semester. Believe me! I'm an A student and I barely passed his class. Very unclear, exams are not based on the book which he makes you bring everyda", + "pos": 0.083, + "neu": 0.855, + "neg": 0.062, + "_id": { + "$oid": "6711d473cd60fca157e5b72b" + } + }, + { + "text": "He is a bad teacher and very stingy in partial credit. He asked the exam like..nobody was thoughtful and nothing to do with the class. He is also lazy to write the exam clearly. His homework are very difficult and took long time to figure it out. It is very bad and almost half of the class are failing..Be careful and don't take with him or F.", + "pos": 0.114, + "neu": 0.699, + "neg": 0.187, + "_id": { + "$oid": "6711d473cd60fca157e5b72c" + } + }, + { + "text": "This is truly the worse professor at CCNY. Don't you ever, ever, take him, unless you are looking for an F. His homeworks are hard b/c he doesn't know how to teach. How can you do HW if you don't learn anything. He gets mad for any little thing, and you are going to study a lot on your own. Be sure to repeat the course if you take him. Baaaddd", + "pos": 0.066, + "neu": 0.837, + "neg": 0.098, + "_id": { + "$oid": "6711d473cd60fca157e5b72d" + } + }, + { + "text": "dont think about taking this professor. I repeat dont take him, unless you like failing. on the test there is no partial credit. He thinks he is the smartest person on the earth. He asks mad annoying questions.\" oh i got a question what is the question\".", + "pos": 0.108, + "neu": 0.666, + "neg": 0.226, + "_id": { + "$oid": "6711d473cd60fca157e5b72e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d474cd60fca157e5b730" + }, + "professor_name": "Gerardo Renique", + "rating": 3.5, + "department": "History department", + "comments": [ + { + "text": "I took this course Asians in Latin America. Renique went off topic for one class by discussing the history of imperialism in Afgahnistan after 9-11. His textbook was a few small soft-covered books. He would get into fights with a communistic or facistic student at times. He allowed me to email my last term paper to him.", + "pos": 0.0, + "neu": 0.954, + "neg": 0.046, + "_id": { + "$oid": "6711d474cd60fca157e5b731" + } + }, + { + "text": "His lectures are sometimes off topic and he may put you to sleep at times. The midterm, final and the writing assignment questions are all take home and sometimes, they are quite difficult. They usually have nothing to do with the lectures, notes or readings. I had to cheat and use the internet, but I did tweak the words so he wouldn't notice.", + "pos": 0.0, + "neu": 0.94, + "neg": 0.06, + "_id": { + "$oid": "6711d474cd60fca157e5b732" + } + }, + { + "text": "Prof Renique was a great professor. He obviously cared about what he was teaching, but often became a bit scattered during the lectures, which made it hard to learn everything in the time we had. He often changed the syllabus and assignments as well, which added a bit of stress, but he made sure everyone understood what was going on, even if absent", + "pos": 0.139, + "neu": 0.788, + "neg": 0.073, + "_id": { + "$oid": "6711d474cd60fca157e5b733" + } + }, + { + "text": "This professor was completely horrible. To begin with, he is very disorganized and he gave the class 4 different updates on the syllabus. When he grades papers, he is biased and he marked me off on things that he did not teach. He expects too much in his papers and doesn't give us good feedback. He never emailed me back when I was sick.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d474cd60fca157e5b734" + } + }, + { + "text": "A very well respected professor i have ever ever met, of cause it is not an easy A class but you have to show enough effort and he will help you out. How i wish city college can have professors like him.", + "pos": 0.274, + "neu": 0.693, + "neg": 0.033, + "_id": { + "$oid": "6711d474cd60fca157e5b735" + } + }, + { + "text": "This man is a GOD at CCNY. He is extremely well respected and I have NEVER met a student who has disliked him. He knows his stuff so well its wow, ACTUALLY CARES, works with you so well he gives more than most deserve. People who do not do well in his class... you are a special kind of special. Gives E.C. Inspiring, which is uncommon. Talks matter.", + "pos": 0.344, + "neu": 0.606, + "neg": 0.05, + "_id": { + "$oid": "6711d474cd60fca157e5b736" + } + }, + { + "text": "This class was a drag. His lectures werent specific nor interesting. He would just talk and talk. The tests formats werent clear.", + "pos": 0.077, + "neu": 0.76, + "neg": 0.163, + "_id": { + "$oid": "6711d474cd60fca157e5b737" + } + }, + { + "text": "Professor Renique is a very smart individual. He is well versed in the history of Modern Latin America. His lectures tend to be a a bit long and sometimes a bit on the \"rambling\" side. However, he gives great importance to student engagement and participation throughout lectures. I would definitively take another class with him.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d474cd60fca157e5b738" + } + }, + { + "text": "Complicated long rambling lectures without substance. World Civilization Class focused entirely on the history and struggles of the native people of Peru and Bolivia. Harsh grader on his essays, does drop the lowest. Marks down for complex sentence structure Expects students to be historians not fresh faced first semester freshmen. Difficult Accent", + "pos": 0.062, + "neu": 0.704, + "neg": 0.233, + "_id": { + "$oid": "6711d474cd60fca157e5b739" + } + }, + { + "text": "He's intelligent & well-versed in Latin American history (except when he said the Brazilian gov't fell in 1990s) but he's not a good teacher, especially for an intro-level class. His idea of a discussion is him lecturing 95% of the time & periodically asking for our opinions. He's disorganized & CONSTANTLY showed up late. Do exactly what he wants!", + "pos": 0.031, + "neu": 0.872, + "neg": 0.097, + "_id": { + "$oid": "6711d474cd60fca157e5b73a" + } + }, + { + "text": "Worst idea ever. I thought the rates were just kidding about this guy. But he is NOT clear, does NOT give you any type of hint of what is going to be on the test. NO clear cut notes, hard to understand. Does NOT really care if half his class is failing all of his quizzes. Do not take him if you want anything higher than a B at most.", + "pos": 0.057, + "neu": 0.707, + "neg": 0.236, + "_id": { + "$oid": "6711d474cd60fca157e5b73b" + } + }, + { + "text": "A lot of reading. Quizzes are hard & doesnt give any reviews. Harsh grader. If your looking for an easy A its not this class. He knows his stuff but thinks everyone taking this class is a history major & analyze history like he does.", + "pos": 0.105, + "neu": 0.831, + "neg": 0.064, + "_id": { + "$oid": "6711d474cd60fca157e5b73c" + } + }, + { + "text": "This guy has no clear-cut notes and his lectures are very sporadic. His grading is VERY tough and his methodology for quiz preparation is AWFUL! No review sheets or review sessions for tests and he flies through chapters.", + "pos": 0.0, + "neu": 0.756, + "neg": 0.244, + "_id": { + "$oid": "6711d474cd60fca157e5b73d" + } + }, + { + "text": "I took his Borderlands class - and it was probably one of the smartest things that I have ever done. I highly recommend him, he offers a well grounded and interesting narrative. An excellent down to earth historian. If you want to step away from vague, abstract absolutes and truly begin to understand historical circumstances. Renique is your man!", + "pos": 0.274, + "neu": 0.707, + "neg": 0.019, + "_id": { + "$oid": "6711d474cd60fca157e5b73e" + } + }, + { + "text": "He is very helpfull and has a way with words to keep you interested", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d474cd60fca157e5b73f" + } + }, + { + "text": "I absolutely agree with the previous comment, and his evaluations seems severe. Not recommended!", + "pos": 0.153, + "neu": 0.602, + "neg": 0.245, + "_id": { + "$oid": "6711d474cd60fca157e5b740" + } + }, + { + "text": "This has by far been a tough tough class. The material is completely boring, and his lectures seem unorganized... He expects you to read close to 100 pages a week around close to 60 a setting, all the while the books are very abstract and not to the point. His essay questions are extremely difficult dont let these reviews fool you DONT DO IT!!!!!!", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d474cd60fca157e5b741" + } + }, + { + "text": "Prof Renique is brilliant, nothing else does it. The guy knows his stuff to the nth degree. Tough grader, though; but well worth it. A+ for him.", + "pos": 0.234, + "neu": 0.727, + "neg": 0.039, + "_id": { + "$oid": "6711d474cd60fca157e5b742" + } + }, + { + "text": "not so clear with lectures as well as expectations. difficult grader!", + "pos": 0.137, + "neu": 0.523, + "neg": 0.34, + "_id": { + "$oid": "6711d474cd60fca157e5b743" + } + }, + { + "text": "He certainly knows his Latin American history. A bit long winded in lectures, though, but it is always nice to be taught by someone who knows his stuff. Nice guy as well. Tough grader though, and he seems to grade students who were weak on the first couple of essays MUCH EASIER for the rest of the class than those who came in knowing how to write..", + "pos": 0.201, + "neu": 0.73, + "neg": 0.068, + "_id": { + "$oid": "6711d474cd60fca157e5b744" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d474cd60fca157e5b746" + }, + "professor_name": "Laurent Mars", + "rating": 2.8, + "department": "Chemistry department", + "comments": [ + { + "text": "He is an okay professor. In my experience with him, I had to self-study a lot and memorize the answers to some of the questions we had for homework in CHEM101 which is a website we used. Those questions would be reused and used for all exams, even the final. When we'd have class with him, it would be just to review the questions majority got wrong.", + "pos": 0.027, + "neu": 0.929, + "neg": 0.044, + "_id": { + "$oid": "6711d474cd60fca157e5b747" + } + }, + { + "text": "He does not care about students! He always has an attitude Never answers questions He's not lenient with homework I cant understand when he speaks", + "pos": 0.0, + "neu": 0.829, + "neg": 0.171, + "_id": { + "$oid": "6711d474cd60fca157e5b748" + } + }, + { + "text": "Did all that work in his class for no credit. Don't waste your time if you're not a science major", + "pos": 0.104, + "neu": 0.799, + "neg": 0.097, + "_id": { + "$oid": "6711d474cd60fca157e5b749" + } + }, + { + "text": "Hes a good professor, he gives review tests, and most of the questions are from there, so if you dont do good on his tests, I dont know what to tell you...", + "pos": 0.082, + "neu": 0.85, + "neg": 0.068, + "_id": { + "$oid": "6711d474cd60fca157e5b74a" + } + }, + { + "text": "Professor Mars is a good professor, but the technology he tries to use is not the greatest. Professor if you read this, stop using iClicker! It sucks", + "pos": 0.054, + "neu": 0.634, + "neg": 0.313, + "_id": { + "$oid": "6711d474cd60fca157e5b74b" + } + }, + { + "text": "This was horrible. Stay away.", + "pos": 0.0, + "neu": 0.533, + "neg": 0.467, + "_id": { + "$oid": "6711d474cd60fca157e5b74c" + } + }, + { + "text": "Prof. Mars explained the material very well. He does do several problems in class to help you out. He does give a lot of homework, but it really helps to get a better understanding of the material. His tests are tough, but if you get a good understanding of the material they aren't that bad. His final was easy. He's also pretty funny in my opinion.", + "pos": 0.345, + "neu": 0.615, + "neg": 0.04, + "_id": { + "$oid": "6711d474cd60fca157e5b74d" + } + }, + { + "text": "He's a very good professor. His lecture's are a little lengthy but informational. He gives practice exams that are literally almost exactly the same as the actual tests, with minor changes. Do the HW and study the practice exams and you will pass. The final was the easiest of all the exams.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d474cd60fca157e5b74e" + } + }, + { + "text": "His classes are quite long, but I you keep practicing and practice some more you may just pass. However, if you did get an A in Chem 103 then this should be a decent class for you to take. If you had gotten a C in Chem 103 and not too sure of the answer then be prepared to do some work, well alot of work.", + "pos": 0.071, + "neu": 0.894, + "neg": 0.035, + "_id": { + "$oid": "6711d474cd60fca157e5b74f" + } + }, + { + "text": "worst", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d474cd60fca157e5b750" + } + }, + { + "text": "His problem is that he thinks he is funny. He does not do many problems in class. His lectures are not useful at all. He is rude sometimes. Try to take somebody else.", + "pos": 0.125, + "neu": 0.679, + "neg": 0.196, + "_id": { + "$oid": "6711d474cd60fca157e5b751" + } + }, + { + "text": "Dont take him, he will ruin chemistry for you.", + "pos": 0.0, + "neu": 0.678, + "neg": 0.322, + "_id": { + "$oid": "6711d474cd60fca157e5b752" + } + }, + { + "text": "He posted all the grades on blackboard and out of ~160 entering students, 1 person got an +A and 4 people got As. Nearly 60 students failed, or withdrew, and I didn't bother to count how many students got Ds, but many more. Mars is terrible, and should be held accountable for these stats.", + "pos": 0.026, + "neu": 0.861, + "neg": 0.113, + "_id": { + "$oid": "6711d474cd60fca157e5b753" + } + }, + { + "text": "Hes my favorite professor. I passed this course without going to lectures (all information is on blackbord). You just have to go over problems from workshop, the practice exams he gives out, & the sample questions from textbooks. He drops your lowest of 3 exams & gives 100+extra minutes for each on. Final is easier than 3 exams. Only test2 is hard", + "pos": 0.083, + "neu": 0.82, + "neg": 0.096, + "_id": { + "$oid": "6711d474cd60fca157e5b754" + } + }, + { + "text": "The Ceruso of 104. I would highly advise avoiding this professor, especially if you don't have a completely solid grasp of Chem103. Doesn't teach well, do sample problems, or otherwise prepare you for tests. He puts great effort into confusing and tricking you (and no the tests arn't like practice exams). Good luck if you take him, you'll need it.", + "pos": 0.172, + "neu": 0.65, + "neg": 0.178, + "_id": { + "$oid": "6711d474cd60fca157e5b755" + } + }, + { + "text": "He cannot manage time at all. He gives up on a chapter and has you teach yourself. The second class he told us we made him behind, and meanwhile the class didn't even ask questions during the first lecture. He assigns homework without even going over a single sample problem. Avoid if you want to learn anything or get a good grade!", + "pos": 0.062, + "neu": 0.861, + "neg": 0.077, + "_id": { + "$oid": "6711d474cd60fca157e5b756" + } + }, + { + "text": "I have no idea why his ratings here are so bad... HIS PRACTICE EXAMS ARE ALMOST IDENTICAL TO THE REAL ONES. Do the homework, do the practice exams, and boom, you get an A. He has a little accent, but you can still pretty much understand him. Again, do the practice exams, over and over again, and you will get a very good grade in this class.", + "pos": 0.113, + "neu": 0.83, + "neg": 0.057, + "_id": { + "$oid": "6711d474cd60fca157e5b757" + } + }, + { + "text": "This guy is great! It is true that he may insult the class sometimes but I think he is just trying to be funny. I took his class in the summer and I'm so glad that I did. Use the practice tests to study but don't rely on them, do extra problems from the textbook. You can ace the final if you study and understand every test. Also, he drops one test!", + "pos": 0.165, + "neu": 0.768, + "neg": 0.066, + "_id": { + "$oid": "6711d474cd60fca157e5b758" + } + }, + { + "text": "I don't know about the comments from 2006 but I took his class in 2012 and it was really easy. (Probably one of the easiest chem professor you can get) All you really need to do to pass is study the practice exams.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d474cd60fca157e5b759" + } + }, + { + "text": "He does give practice tests prior to an exam but they are not EXACTLY like the actual tests. He may seem a little mean with his sarcasm and his slightly insulting jokes, but in the end he ended up being really helpful. His final was just questions from all of the the practice tests and the actual tests, so it was easy.Just study and you'll do fine", + "pos": 0.108, + "neu": 0.779, + "neg": 0.113, + "_id": { + "$oid": "6711d474cd60fca157e5b75a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d475cd60fca157e5b75c" + }, + "professor_name": "Noelle Nagales", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Took her my freshman year and she was AMAZING!!! So kind to her students. Would take her again if I could.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b75d" + } + }, + { + "text": "She is amazing. Take her class", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b75e" + } + }, + { + "text": "Noelle is easily one of the sweetest porfessors I've ever had. Shes very understanding about assignment submission and really cares about her students. Her lectures are light and fun and she really enages with her students. Highly recommend, shes the absolute best!", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b75f" + } + }, + { + "text": "Noelle was one of my best professors. She's so sweet and understanding. We legit only wrote 3 papers, 1 presentation, and a small easy project towards the end of the course. I wish I had her for longer; I only had her for the summer.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b760" + } + }, + { + "text": "She's an icebreaker teacher who appreciates participation but doesn't force it down your throat. You work in groups also there's the occasional presentation. She is a sweetheart, very kind, and accessible", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b761" + } + }, + { + "text": "Freshmans, if you're thinking about taking freshman composition, take it with Noelle. She super kind, respectful, and can there for questions. She gives good feedback for major assignments and wants her students to pass. Super chill when it comes to late work, but still make sure to turn in work on time. You won't regret it.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b762" + } + }, + { + "text": "Very passionate about her class, cares a lot about her students, very kind and friendly. Professor Nagales is lenient about homework submission due dates. Do you part: participate in class, do your homework, care about learning process and you'll get a high grade. Take Noelle's class while it's still available :)", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b763" + } + }, + { + "text": "I just really love her. the best professor Ive ever had so far! take her for sure!!!!", + "pos": 0.465, + "neu": 0.535, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b764" + } + }, + { + "text": "As a freshman, taking her class made my first-semester great. Her feedback and help made handing in assignments much easier for me than usual. She wasn't hard on participation but if you did participate she would really did appreciate it. \nShe also isn't very hard on late assignments. Would definitely recommend taking her class 1000/10!", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b765" + } + }, + { + "text": "I love Professor Nagales! Her English course is the best one I've ever taken in my educational career. She allows you to have so much freedom with your writing as long as you follow the criteria, which I loved. She is also very sweet, you can tell that she really cares about each and every student. If you have the chance, take her class!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b766" + } + }, + { + "text": "She's really nice, understanding, and organized. It's really hard for me to think someone would struggle with her unless they just don't care.", + "pos": 0.108, + "neu": 0.662, + "neg": 0.231, + "_id": { + "$oid": "6711d475cd60fca157e5b767" + } + }, + { + "text": "The kindest. If you are going to miss a class, all you have to do is send her an email. The work isn't heavy, which is perfect for freshman. For the few essays that we have, she gives great feedback. It is clear that she really cares for her students.", + "pos": 0.227, + "neu": 0.746, + "neg": 0.027, + "_id": { + "$oid": "6711d475cd60fca157e5b768" + } + }, + { + "text": "Ive always wanted to take a creative writing class because I was taught to write in an academic format for years, but Prof. Nagales made me think outside of the box and helped me find my freedom in writing. I discovered a new writing style of mine that I never thought I could have all thanks to her. She made class a safe place to be yourself.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b769" + } + }, + { + "text": "Professor Noelle made writing fun. Her course work is fair and beneficial to her students in that every assignment you do contributes to something greater. She is also very caring and understanding and doesn't mind late assignments. Highly recommended to take her classes if you can, you won't regret it. She's also fan of JoJo's bizarre Adventure.", + "pos": 0.323, + "neu": 0.645, + "neg": 0.032, + "_id": { + "$oid": "6711d475cd60fca157e5b76a" + } + }, + { + "text": "Ms. Nagales cares about her students and she allows you to hand in homework late (use it wisely and dont take advantage of it). There is a lot of homework only because it helps you with the essays and to help you understand it clearly.", + "pos": 0.3, + "neu": 0.67, + "neg": 0.031, + "_id": { + "$oid": "6711d475cd60fca157e5b76b" + } + }, + { + "text": "Noelle is kind hearted and will work with you to improve your writing skills. She is very friendly and will give you a good grade if she sees you put effort into the class.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b76c" + } + }, + { + "text": "One of the best professors that you can ever take for Freshman Composition! She genuinely cares about how you're doing in both the class and and outside of the class. She's very understanding of your workload and makes the class a pleasure to take. Definitely take her if you have the opportunity to!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b76d" + } + }, + { + "text": "Genuinely nice professor and is super laid back and caring towards students. She's not strict with due dates (don't take advantage of her though) and is very understanding when her students are having a tough time. Not hard at all, and the course content is pretty engaging. Definitely worth taking her, she is a blessing to this world.", + "pos": 0.329, + "neu": 0.628, + "neg": 0.043, + "_id": { + "$oid": "6711d475cd60fca157e5b76e" + } + }, + { + "text": "Professor Nagales is exceptional. She is super intelligent and great to talk to. If you want a great experience in Freshman Comp, take her!", + "pos": 0.472, + "neu": 0.528, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b76f" + } + }, + { + "text": "Noelle is a refreshing teacher to have. She respects her students as much as she respects the subject matter, and this pushes you to want to work harder in her class.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b770" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d475cd60fca157e5b772" + }, + "professor_name": "Brian Tiburzi", + "rating": 3.1, + "department": "Physics department", + "comments": [ + { + "text": "His quizzes were absolutely horrid. They make up a large section of your grade and nobody ever passed them.", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d475cd60fca157e5b773" + } + }, + { + "text": "You have been warned if you post his quiz questions anywhere especially chegg, he will contact them and they will provide him with you're name and email. You will be reported to academic integrity and be found guilty. His HW's and readings aren't to hard but his quizzes has the difficulty of a whole exam. He doesn't do a good job with explaining", + "pos": 0.042, + "neu": 0.819, + "neg": 0.139, + "_id": { + "$oid": "6711d475cd60fca157e5b774" + } + }, + { + "text": "Literally a majority of the grade was just from the quizzes he gave every week and the lab grade. He cannot teach and keeps continuously talking in the lectures not caring if the students understand or not. He is one of those professors that is just there for the paycheck and has no passion for teaching.", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d475cd60fca157e5b775" + } + }, + { + "text": "Yes, the quizzes are difficult. However, he knows this and is very caring when it comes to the end of semester grades. Quizzes are every two weeks which I liked because they only focused on 2 topics max. My quiz grades were not great but the labs and the homework boosted my grade. He also does answer his emails and is pretty accessible.", + "pos": 0.207, + "neu": 0.741, + "neg": 0.052, + "_id": { + "$oid": "6711d475cd60fca157e5b776" + } + }, + { + "text": "AVOID! The grade consists of OpenStax readings&homework and quizzes every two weeks. The quizzes had nothing to do with his lectures or textbook. The class averages for the quizzes that I took before I dropped class were 56%, 45%, and 42%. It got lower each time. Whenever we asked to go over something we don't understand, he refused to help us.", + "pos": 0.068, + "neu": 0.851, + "neg": 0.081, + "_id": { + "$oid": "6711d475cd60fca157e5b777" + } + }, + { + "text": "No tests, only 5 question quizzes (8 quizzes, 40% of your grade) The rest comes from homework and labs. My quiz average was like a 48% and I got a B- so the curve is great ( depends on your class score distribution though). I emailed him about my difficulty in the class and he provided resources and a class wide extra credit opportunity. nice guy", + "pos": 0.227, + "neu": 0.716, + "neg": 0.057, + "_id": { + "$oid": "6711d475cd60fca157e5b778" + } + }, + { + "text": "I am even more confused about physics. His lectures are very long, boring and it's as if he's talking more to himself than his students. He does not interact with his students. He seems to be very knowledgeable about physics but cant seem to spread this knowledge clearly to others. if you get a Q wrong on a quiz you'll never know why he won't say.", + "pos": 0.048, + "neu": 0.846, + "neg": 0.106, + "_id": { + "$oid": "6711d475cd60fca157e5b779" + } + }, + { + "text": "ommmg where do i begin? His lectures do not have ANY relation to the problems posted for quizzes. Tends to not address said quizzes and does not really teach about how to solve a problem. Rather, finds the most confusing way to solve a problem. Should've dedass chosen another prof cuz he wont care about you.", + "pos": 0.055, + "neu": 0.748, + "neg": 0.197, + "_id": { + "$oid": "6711d475cd60fca157e5b77a" + } + }, + { + "text": "He doesn't seem to care about his students if they all email him about a quiz format / questions not working. Will not respond to you if you ask for help regarding said quizzes. Overall very inaccessible. I appreciate his humor during lectures, but that doesn't help me with my grades.", + "pos": 0.096, + "neu": 0.82, + "neg": 0.084, + "_id": { + "$oid": "6711d475cd60fca157e5b77b" + } + }, + { + "text": "Worst Professor I have had in my whole college experience. This professor cannot teach and expects to learn all by yourself even though your other classes are making you read the textbook to learn as well. Not understanding at all especially since classes are online and covid is still happening. Does not offer office hours to help students.", + "pos": 0.075, + "neu": 0.861, + "neg": 0.064, + "_id": { + "$oid": "6711d475cd60fca157e5b77c" + } + }, + { + "text": "Professor Tiburzi is one of the few really good professors at CCNY. His teaching style is fun and engaging. This course needs you to practice a lot of textbook problems. Not an easy course, but he explains everything in detail and really wants his students to do well. He is always available during office hours and through emails.", + "pos": 0.134, + "neu": 0.811, + "neg": 0.055, + "_id": { + "$oid": "6711d475cd60fca157e5b77d" + } + }, + { + "text": "This is the first time this course is being offered, and the workload is ridiculous. There were 7 assignments, and the average time spent on each was 20+ hours. Definitely NOT for Python beginners , we got little feedback and no solutions. He complained about our work, but never told us how to improve on it. C'mon Brian!", + "pos": 0.089, + "neu": 0.813, + "neg": 0.098, + "_id": { + "$oid": "6711d475cd60fca157e5b77e" + } + }, + { + "text": "Youre in for a treat in this class.. it sucks how he can make physics, a subject i hate, so much fun. ngl, I didnt think college profs were this valid cuz he had a great pace.. and he didnt make us pay for a hw system. The only thing id say he could improve is doing test reviews. I cant say enough how welcoming he made my first semester at ccny.", + "pos": 0.199, + "neu": 0.73, + "neg": 0.071, + "_id": { + "$oid": "6711d475cd60fca157e5b77f" + } + }, + { + "text": "Before Corona there were no homeworks so that was great while it lasted, quizzes are one question but tend to be very hard (he gives lots of partial credit) exams reach up to 3/4 questions. However His lectures are probably the worst lectures Ive had in ccny, and it is a self taught class no doubt.", + "pos": 0.145, + "neu": 0.719, + "neg": 0.136, + "_id": { + "$oid": "6711d475cd60fca157e5b780" + } + }, + { + "text": "Your best friend is the textbook and youtube tutorials. He goes quick in lectures but if you ask questions and keep up with textbook readings, you can understand the topic. Practice problems online really helps clarify confusion. The class isnt hard, but grade relies mainly on exam/quiz, so be sure you show clear work b/c he gives a lot of credit.", + "pos": 0.24, + "neu": 0.673, + "neg": 0.087, + "_id": { + "$oid": "6711d475cd60fca157e5b781" + } + }, + { + "text": "do yourself a favour and stay away. he cant explain anything in Leyman terms.. we are not scientists", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b782" + } + }, + { + "text": "If you think Physics is an easy subject by all means you are wrong but out of the bunch Prof Tiburzi is the best pick. He helped those who had difficulties with grades and such but you have to show that you care. His tests are tricky but he is extremely lenient with grading and would you give you points just by jotting down formulas. Take him.", + "pos": 0.185, + "neu": 0.733, + "neg": 0.082, + "_id": { + "$oid": "6711d475cd60fca157e5b783" + } + }, + { + "text": "The best physics prof @ccny, I liked his method of teaching. Even if the content wasnt very clear during lectures, talking to him after helped me understand. His humor is interesting, but still entertaining and helps in understanding the concepts. Exams are fair and straightforward and he provides a practice test online, he isnt nitpicky either.", + "pos": 0.249, + "neu": 0.725, + "neg": 0.026, + "_id": { + "$oid": "6711d475cd60fca157e5b784" + } + }, + { + "text": "I took Prof Tiburzi for physics 207, so it was my first introduction to physics. It was pretty challenging, but this prof is extremely dedicated and will spend time after class to go over your questions. Come to class prepared! Prof is knowledgeable, caring, and aroused my interest in physics", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d475cd60fca157e5b785" + } + }, + { + "text": "Eccentric professor, but very good at his job. Teaches basic physics concepts with ease, allowing for greater understanding and ability with complex problems. Accessible outside of class and very caring. 10 exams, dropped 3, with an optional final that would replace 3 bad grades, and curved. Hard exams, but go to class and they're a piece of cake.", + "pos": 0.236, + "neu": 0.638, + "neg": 0.126, + "_id": { + "$oid": "6711d475cd60fca157e5b786" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d476cd60fca157e5b788" + }, + "professor_name": "Charles Li", + "rating": 3.5, + "department": "Mathematics department", + "comments": [ + { + "text": "He is insanely difficult. He goes through his lectures too fast and gives so much homework. I attended every lecture but still had so much troubles. He also refuses to give review sheets because he thinks \"it is too easy if we have them.\" He expects us to read the textbooks, go over all the lectures, and even watch videos to pass his test.", + "pos": 0.054, + "neu": 0.859, + "neg": 0.087, + "_id": { + "$oid": "6711d476cd60fca157e5b789" + } + }, + { + "text": "Too tough to understand", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d476cd60fca157e5b78a" + } + }, + { + "text": "Charles Li is the type of professor that will force you to study on your own. His lectures are easy to understand but not enough to pass the course with.. and he makes this perfectly clear. Calc 3 is hard and if you're not willing to work hard to learn the material then don't take his class.", + "pos": 0.183, + "neu": 0.77, + "neg": 0.047, + "_id": { + "$oid": "6711d476cd60fca157e5b78b" + } + }, + { + "text": "He is one of the best and realest math professors I have ever met. He does indeed give real grades. He teaches you everything that is going to be in the final. He;s exams are straight forward if you do study. Overall, u have to study a lot if you wanna pass his class. Less than half of of my classmates passed his class. only 1 person got an A.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b78c" + } + }, + { + "text": "If you do your HW and understand it you will pass the class but if you want an A do all HW plus take the weekend to work on past exam's questions related to the material that your exam will cover. He is determined to make sure that the students who are interested really get the material. calc 3 is hard, he gives 'real grades' so work hard.", + "pos": 0.144, + "neu": 0.809, + "neg": 0.047, + "_id": { + "$oid": "6711d476cd60fca157e5b78d" + } + }, + { + "text": "He explains everything in an amazing way but he is really a harsh grader...he doesnt like to give good grades...overall funny guy though and you learn a lot...", + "pos": 0.252, + "neu": 0.575, + "neg": 0.173, + "_id": { + "$oid": "6711d476cd60fca157e5b78e" + } + }, + { + "text": "Awesome teacher. Just hands down the best at the CCNY Math department. Take him if you can get him; he gives plenty of examples and is very clear in explaining concepts. His grading is a little harsh, but in his words \"you get what you deserve.\" Definitely do the homeworks each day and you'll be fine.", + "pos": 0.199, + "neu": 0.773, + "neg": 0.028, + "_id": { + "$oid": "6711d476cd60fca157e5b78f" + } + }, + { + "text": "Three tests, drops one. Very generous with extra credit(counts toward tests only). Easy matlab test. Phenomenal explanation! Very laid back. Will have your test grades ready by the next class day and will have your final grade about three days after the final exam. This guy is THE best professor I have met.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b790" + } + }, + { + "text": "He is a great teacher. Actually he is the best one I've ever seen. But the thing the weighting for the grade of his course shouldn't be 40% of the final. I've got 100s (A+) in all the class exams. But the final exam was the most difficult S**T I've ever faced. That pulled my grade to a B+. You're doomed if u do bad in more than one exam.", + "pos": 0.061, + "neu": 0.77, + "neg": 0.169, + "_id": { + "$oid": "6711d476cd60fca157e5b791" + } + }, + { + "text": "Very good teacher. Very clear and conveys concepts extremely well. Grades hard, but tests are very fair and reasonable. The material in Calc 3 is difficult, so a lot of people have problems - but it's not because of his teaching. I'd rate him 8/10.", + "pos": 0.165, + "neu": 0.688, + "neg": 0.147, + "_id": { + "$oid": "6711d476cd60fca157e5b792" + } + }, + { + "text": "His lectures are ok, but he makes all the classic new teacher mistakes. He doesn't take any time to measure your comprehension of the material and your entire grade is based on a few problems on the tests. His grading is harsh and there is no curve. Make a mistake or two on the exams and you fail.", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d476cd60fca157e5b793" + } + }, + { + "text": "Good professor. Explains the subject well and clear but is strict when it comes to grading. You better study hard and do all the homeworks.", + "pos": 0.298, + "neu": 0.65, + "neg": 0.052, + "_id": { + "$oid": "6711d476cd60fca157e5b794" + } + }, + { + "text": "To pass this class you must PAY ATTENTION and DO THE HOMEWORK and, dare I say it, STUDY, which is the essentials of any class especially maths. His tests are hard. As are his quizzes, but if you do well on them, you're guaranteed to pass the final which is 40% of your grade. If you're not going to put forth the effort this class is not for you.", + "pos": 0.037, + "neu": 0.924, + "neg": 0.039, + "_id": { + "$oid": "6711d476cd60fca157e5b795" + } + }, + { + "text": "He is one of the best math teachers I've had, but be prepared to have extremely difficult exams. His partial credit is pretty much 60/40. If you have everything right but one mistake - 60% of pts of question. He explains and teaches well, just don't slack off, thinking you understand the topic doesn't mean you'll do well on tests. Do every HW!!!", + "pos": 0.218, + "neu": 0.696, + "neg": 0.086, + "_id": { + "$oid": "6711d476cd60fca157e5b796" + } + }, + { + "text": "His tests are moderately difficult but he does not give partial credit. I studied at least 4 hrs everyday and still got a C. What he teaches in class has nothing to do with his tests. He will make tests based on previous exam not on what he does in class. He teaches a lot of unnecessary material not in the syllabus which again never shows up in any", + "pos": 0.0, + "neu": 0.937, + "neg": 0.063, + "_id": { + "$oid": "6711d476cd60fca157e5b797" + } + }, + { + "text": "If you need to learn Cal, please take Li. Explains thing very clear and gives you time to understand (when he has it).. You will learn many tricks that will pay off later on.. Cal2 is hard anyways but he teachs it in a way that make you feel confortamble.. The test are hard but that is a general thing.. Once you move to Cal3 you will see the diff.", + "pos": 0.049, + "neu": 0.879, + "neg": 0.072, + "_id": { + "$oid": "6711d476cd60fca157e5b798" + } + }, + { + "text": "great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b799" + } + }, + { + "text": "Charles Li is the best professor in the math department. He explains ANY question you have. He makes learning math easy. His tests are not hard if you do the h.w. and study. He tries his best to make you understand. His method of teaching allows you to understand things quickly. He does alot of examples. I definitely recommend this prof. -Joel", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b79a" + } + }, + { + "text": "He's a nice proff but would not recommend for other students because is his exams are killers unless your a genious. BEWARE he teaches good but at a very fast paste, so it gets confusing. GOODLUCK WITH HIS KILLER EXAMS. you think you understand everything until you take his killer exams.If you want an A take someone!!", + "pos": 0.089, + "neu": 0.604, + "neg": 0.307, + "_id": { + "$oid": "6711d476cd60fca157e5b79b" + } + }, + { + "text": "He gives a lot of examples in class so you can understand it. Explains the material very well and teaches a lot of shortcuts and tricks. Very good about answering questions after class. He allows you to answer questions on the board before class starts, and each question you answer is a point on your lowest test grade.", + "pos": 0.088, + "neu": 0.848, + "neg": 0.064, + "_id": { + "$oid": "6711d476cd60fca157e5b79c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d476cd60fca157e5b79e" + }, + "professor_name": "Kho Kashfi", + "rating": 4.1, + "department": "Chemistry department", + "comments": [ + { + "text": "Dr. Kashfi's class is difficult but completely doable. You have to WORK HARD for an A. He's a great lecturer but since the class is very fast-paced, he doesn't have time to do many questions in class, so make sure to do as many questions as possible on your own. His tests are fair and always have at least 10 extra credit points built into them.", + "pos": 0.193, + "neu": 0.752, + "neg": 0.056, + "_id": { + "$oid": "6711d476cd60fca157e5b79f" + } + }, + { + "text": "His syllabus is very clear as to what he expects. You need to work hard in his class. Exams can be hard but not impossible. The course is fast paced but then again this is an accelerated program. He knows what he is talking about and is very helpful if you ask for help. Can be intimidating but a nice guy overall.", + "pos": 0.179, + "neu": 0.737, + "neg": 0.084, + "_id": { + "$oid": "6711d476cd60fca157e5b7a0" + } + }, + { + "text": "Rarely shows up to lectures but will send in student instructors (Seniors in college) to administer exams or \"review\" chapters that he didn't even teach.. One of the worst professors I've had. He doesn't teach the material so be ready to teach yourself everything from youtube. Would not recommend.", + "pos": 0.063, + "neu": 0.793, + "neg": 0.143, + "_id": { + "$oid": "6711d476cd60fca157e5b7a1" + } + }, + { + "text": "Although I did pretty well in this class, it is mainly due to the fact that I took AP Chemistry in high school. He is very ambiguous when it comes to exams and quizzes. No one ever knows what they will cover.", + "pos": 0.114, + "neu": 0.839, + "neg": 0.047, + "_id": { + "$oid": "6711d476cd60fca157e5b7a2" + } + }, + { + "text": "The only person you can really depend on is yourself to learn. Lecture is mostly useless; he's not there to teach but to brush over the concepts. Doesn't follow office hours unless you tell him beforehand you're coming. Wants to help those already doing fine in the class do better while neglecting those failing even if they seek help. Rude overall.", + "pos": 0.164, + "neu": 0.662, + "neg": 0.174, + "_id": { + "$oid": "6711d476cd60fca157e5b7a3" + } + }, + { + "text": "He seems intimidating, but he is a genuinely good person. He helped me whenever I reached out. You do need to study hard, use your textbook (literally. every day.) but this class is not as scary as everyone makes it out to be. Always ask for help if you need it", + "pos": 0.204, + "neu": 0.738, + "neg": 0.058, + "_id": { + "$oid": "6711d476cd60fca157e5b7a4" + } + }, + { + "text": "Material Is Difficult, definitely use the textbook and DO AS MANY QUESTIONS AS POSSIBLE!! Study in groups if you can and always go over your exams and ask Dr. K for help with things you don't understand. Difficult, but doable", + "pos": 0.134, + "neu": 0.826, + "neg": 0.04, + "_id": { + "$oid": "6711d476cd60fca157e5b7a5" + } + }, + { + "text": "Im not going to say what every1 else did. yes, his test is hard, and no, his class is typical. read the books and know it like the back of ur hand... bc u will regret it if u dont for the exams... make sure u do chem everyday but u sophie losers should know that... and yes im still in sophie davis!!!", + "pos": 0.158, + "neu": 0.738, + "neg": 0.103, + "_id": { + "$oid": "6711d476cd60fca157e5b7a6" + } + }, + { + "text": "He is rude. He cares more about his research then the class..but if you put the time in.. i mean A LOT of time you'll be able to do decently well.", + "pos": 0.141, + "neu": 0.776, + "neg": 0.083, + "_id": { + "$oid": "6711d476cd60fca157e5b7a7" + } + }, + { + "text": "WOW! very fast pace course, covers more than a chapter each class but he is very clear and knowledgeable. I like it when he gives us medical applications. He teaches many different courses here, so he knows what we need to know. Good job Dr. Kho!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b7a8" + } + }, + { + "text": "Great class, good teacher, hard exams.", + "pos": 0.614, + "neu": 0.263, + "neg": 0.123, + "_id": { + "$oid": "6711d476cd60fca157e5b7a9" + } + }, + { + "text": "The most rewarding part of this course was actually the real life applications mentioned to us during certain lectures. This actually made chemistry feel real and important.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b7aa" + } + }, + { + "text": "Great class.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b7ab" + } + }, + { + "text": "I learned a lot. He is hard but fair.", + "pos": 0.265, + "neu": 0.628, + "neg": 0.108, + "_id": { + "$oid": "6711d476cd60fca157e5b7ac" + } + }, + { + "text": "Great class and a very good professor. I feel that I have a strong background now for molecules-to-cells. He is not easy but he knows what he is doing.", + "pos": 0.203, + "neu": 0.746, + "neg": 0.051, + "_id": { + "$oid": "6711d476cd60fca157e5b7ad" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d476cd60fca157e5b7ae" + } + }, + { + "text": "he knows what he is talking about. nut his tests are insanely hard. he excepts a lot from u but yet the class avergaes are usually low and doesnt curve. bottom line give up ur life for 4 months and study just to pass with min grade", + "pos": 0.0, + "neu": 0.921, + "neg": 0.079, + "_id": { + "$oid": "6711d476cd60fca157e5b7af" + } + }, + { + "text": "A very smart, yet sensitive professor. Has walked out of class several times because of class misconduct.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b7b0" + } + }, + { + "text": "Good teacher, very clear, expects a lot and he is knows what he is talking about.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d476cd60fca157e5b7b1" + } + }, + { + "text": "He is very funny and likes to teach. You must listen and do what he tells you otherwise forget it, but I enjoyed his class. I have class with him next semester and I am looking forward to it. Now how many people can say that about their chem class.", + "pos": 0.153, + "neu": 0.821, + "neg": 0.026, + "_id": { + "$oid": "6711d476cd60fca157e5b7b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d477cd60fca157e5b7b4" + }, + "professor_name": "Edward Baurin", + "rating": 2.9, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "The absolute worst!!!", + "pos": 0.0, + "neu": 0.287, + "neg": 0.713, + "_id": { + "$oid": "6711d477cd60fca157e5b7b5" + } + }, + { + "text": "I can't make any progress without this advisor along with Grove making me repeat unnecessary classes due to Grove being underfunded. You're better off majoring in electrical engineering at SUNY than this man screwing up progress.", + "pos": 0.136, + "neu": 0.763, + "neg": 0.101, + "_id": { + "$oid": "6711d477cd60fca157e5b7b6" + } + }, + { + "text": "One of the best Professor! Very informative and useful class!", + "pos": 0.498, + "neu": 0.502, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7b7" + } + }, + { + "text": "Great class and a great professor!", + "pos": 0.68, + "neu": 0.32, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7b8" + } + }, + { + "text": "I don't care what anyone says, professor baurin is one of the best professors out there. Just present your binder good following everything from slides and you pads. Baurin is lit!!!!", + "pos": 0.213, + "neu": 0.72, + "neg": 0.068, + "_id": { + "$oid": "6711d477cd60fca157e5b7b9" + } + }, + { + "text": "very awesome and good professor! i love ieee code of ethics!", + "pos": 0.607, + "neu": 0.393, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7ba" + } + }, + { + "text": "Learned little or nothing from him. He doesn't do things on time. His assignments are vague. He gave no grades for those papers, I doubt he read them. Subjective grading criteria based on class participation, writing quality and final project presentation. My advice? Please him like your boss because you can't skip him for this class. Good luck.", + "pos": 0.158, + "neu": 0.752, + "neg": 0.09, + "_id": { + "$oid": "6711d477cd60fca157e5b7bb" + } + }, + { + "text": "I took this class with interest in Engineering Management. I also had fear of public speaking but wanted to take it to push myself. This class required extensive opinionated and historical writing but nothing too bad. The Final Exam Group Project was on research of an Engineering Company. He wants you to talk so easy A if you do.", + "pos": 0.16, + "neu": 0.809, + "neg": 0.031, + "_id": { + "$oid": "6711d477cd60fca157e5b7bc" + } + }, + { + "text": "The most awful professor. disrespectful , mismanage, waste of ccny' $ . the worse thing is wrong advise and lead students to wrong path.", + "pos": 0.0, + "neu": 0.552, + "neg": 0.448, + "_id": { + "$oid": "6711d477cd60fca157e5b7bd" + } + }, + { + "text": "Very big on being organized but is arguably the least organized professor in the department. I can't believe that he ever managed anyone professionally.", + "pos": 0.0, + "neu": 0.902, + "neg": 0.098, + "_id": { + "$oid": "6711d477cd60fca157e5b7be" + } + }, + { + "text": "Added nothing to the class. He gives random assignments to make it seem like the class is worth something. He is useless when assisting students for advising. One of the worst at CCNY.", + "pos": 0.109, + "neu": 0.72, + "neg": 0.171, + "_id": { + "$oid": "6711d477cd60fca157e5b7bf" + } + }, + { + "text": "Very ambiguous in his grading scheme and didn't grasp the class's attention at all during his lectures. Assigned many useless assignments and then forgot when they were due, we received no feedback on them at all. Attendance was taken by scanning ID cards so you had to attend every lecture.", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d477cd60fca157e5b7c0" + } + }, + { + "text": "He's a nice guy, but this class was a bore. He would assign unnecessary work and then the following week would forget which tasks were due. For some reason, he believes work projects are done strictly by the book in the real world. You need this class to graduate, but I don't see the point. Just glad that its over!", + "pos": 0.092, + "neu": 0.835, + "neg": 0.072, + "_id": { + "$oid": "6711d477cd60fca157e5b7c1" + } + }, + { + "text": "Expect to do group & indiv. presentations. Likes participation &outgoing people. Tries to teach about work situations you might have after grad- ethics,dress code, etiquette,etc. Grade depends on your project mentor, not him, but he still gives a lot of work that is supposed to help with your proj, though he is not always very clear about assgntmts", + "pos": 0.11, + "neu": 0.842, + "neg": 0.048, + "_id": { + "$oid": "6711d477cd60fca157e5b7c2" + } + }, + { + "text": "Class is highly interesting. He goes into a great effort to try and give a real life perspective on how the real world of engineering works. The only problem usually is the assignments. Since we have class only once a week, it's easy to forget what he wants even if we took notes. Some examples on Blackboard would be very helpful. Very nice overall.", + "pos": 0.211, + "neu": 0.73, + "neg": 0.059, + "_id": { + "$oid": "6711d477cd60fca157e5b7c3" + } + }, + { + "text": "One of my fav professors ever! Extremely intelligent and is always there to mentor and give a good advice. He enjoys teaching and is completely reasonable in every way.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7c4" + } + }, + { + "text": "Thanks to him and his carelessness and negligence I will have to take an additional semester. A nightmare.", + "pos": 0.136, + "neu": 0.751, + "neg": 0.113, + "_id": { + "$oid": "6711d477cd60fca157e5b7c5" + } + }, + { + "text": "Easily one of the two or three most helpful people I ever dealt with on a regular basis at CCNY. This is someone worth getting to know, as he knows the place inside-out.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7c6" + } + }, + { + "text": "horrible adviser. He makes the students frustrated by showing a terrible attitude.", + "pos": 0.0, + "neu": 0.474, + "neg": 0.526, + "_id": { + "$oid": "6711d477cd60fca157e5b7c7" + } + }, + { + "text": "WORST ADVISOR EVER. I wanted to change my major JUST BECAUSE OF HIM. SUPER MOODY. Glad I'm graduating so don't need to see him any more", + "pos": 0.202, + "neu": 0.584, + "neg": 0.214, + "_id": { + "$oid": "6711d477cd60fca157e5b7c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d477cd60fca157e5b7ca" + }, + "professor_name": "Keith Grant", + "rating": 2.8, + "department": "Theater department", + "comments": [ + { + "text": "DO NOT TAKE THIS CLASS IF U WANT TO FAIL. THIS IS BY FAR THE WORST CLASS I HAVE TAKEN. HE WILL DROP YOU FROM CLASS EVEN THOUGH YOU THINK U R DOING GOOD THROUGHOUT THE SEMESTER. ATTENDANCE MATTERS ALOT TOUGH GRADER YOU CANNOT GET ONE MISTAKE OR YOU ARE DONE. IF U AIN'T THE FAV YOU WILL GET KICKED OUT OF CLASS.", + "pos": 0.098, + "neu": 0.72, + "neg": 0.182, + "_id": { + "$oid": "6711d477cd60fca157e5b7cb" + } + }, + { + "text": "Turns every theatre class into a moral and political debate. He told me I got a 10/10 on my final scene, then when grades came out he took three points off bc he claimed it was bad, when he praised me for doing so well in class. He is also extremely arrogant. He also will not pay attention to your accommodations.", + "pos": 0.103, + "neu": 0.797, + "neg": 0.1, + "_id": { + "$oid": "6711d477cd60fca157e5b7cc" + } + }, + { + "text": "Very rude and biased, he has his favorites and if you're not it, good luck. Super tough grader, expects Oscar level performances in an INTRO class, and takes points off for every little thing on his little card. His quizzes are only 50 seconds.", + "pos": 0.12, + "neu": 0.664, + "neg": 0.216, + "_id": { + "$oid": "6711d477cd60fca157e5b7cd" + } + }, + { + "text": "WASTED MY TIME IN THIS CLASS. WAKING UP EARLY FOR THIS CLASS AND AT THE END I DO NOT EVEN PASS. BRUH. NEVER GONNA TAKE THIS PROFESSOR AGAIN!!!! THE PROFESSOR WILL PERSONALLY DROP YOU FROM THE CLASS JUST A HEADS UP. A NUMBER OF STUDENTS IN MY CLASS WERE KICKED OUT BY HIM!", + "pos": 0.023, + "neu": 0.866, + "neg": 0.112, + "_id": { + "$oid": "6711d477cd60fca157e5b7ce" + } + }, + { + "text": "RULE OF ADVICE IS ALWAYS LISTEN TO RMP THEY NEVER LIE. BY FAR THE WORST PROFESSOR I HAVE EVER TAKEN. THE DUDE IS ALWAYS MOODY. IF U DON'T HAVE UR CAMERA ON IN THIS CLASS YOU ARE CONSIDERED A GHOST AND HE MAKES U ABSENT. THIS PERSON SHOWS NO SYMPATHY FOR HIS STUDENTS WHATSOEVER. IF UR HIS #1 HE ONLY CARES ABOUT YOU", + "pos": 0.049, + "neu": 0.746, + "neg": 0.205, + "_id": { + "$oid": "6711d477cd60fca157e5b7cf" + } + }, + { + "text": "DO NOT TAKE THIS PROFESSOR I SWEAR HE DEADASS HAS FAVORITES AND EXPECTS SO MUCH FROM U BTW HE CHANGES THE SYLLABUS LAST MINUTE. IF YOUR LOOKING FOR A MAD BIAS PROFESSOR AND CLASS TO BRING DOWN UR GPA WELL LOOK NO MORE. I WOULD NEVER TAKE THIS CLASS EVER AGAIN!! PATTERSON WAS BETTER!", + "pos": 0.122, + "neu": 0.738, + "neg": 0.139, + "_id": { + "$oid": "6711d477cd60fca157e5b7d0" + } + }, + { + "text": "Professor is just rude to people in their class. Obviously shows favoritism. Pop quizzes are like 5 minutes full of very specific things. Once he sees you as a inconsistent student in the beginning theres nothing you can do to change that. Took this class as a last option for an elective and it is the worst decision I've ever made", + "pos": 0.061, + "neu": 0.835, + "neg": 0.104, + "_id": { + "$oid": "6711d477cd60fca157e5b7d1" + } + }, + { + "text": "LISTEN TO THE REVIEWS ON RMP CAUSE THEY ARE LEGIT !!!!!! HE'S A DECENT PROFESSOR. THERE ARE TIMES WHERE HE OFTEN PUTS STUDENTS ON THE SPOT AND IF YOU DON'T KNOW THE ANSWER YOU GET A MARK ON YOUR CARD. IF YOU DON'T PAY ATTENTION HE ALSO BUTS A MARK ON YOUR CARD! LOOKING FOR A CLASS TO BRING DOWN YOUR GPA I ADVISE YOU NOT TO TAKE THIS CLASS!!!", + "pos": 0.042, + "neu": 0.958, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7d2" + } + }, + { + "text": "FYI !! YOUR ZOOM CAMERA HAS TO BE ON AT ALL TIMES!! THE PROFESSOR IS NICE AT TIMES BUT FOR HIS QUIZZES HE BARELY GIVES US ENOUGH TIME TO READ THE QUESTIONS. YOU HAVE TO DO A MONOLOGUES FOR THIS CLASS IN WHICH YOU HAVE TO ACT. IF HE ISN'T PLEASED ON YOUR ACTING SCALES HE WOULD GIVE YOU A BAD GRADE. I WOULD WRITE MORE BUT THERE IS A WORD LIMIT ON RMP", + "pos": 0.047, + "neu": 0.824, + "neg": 0.129, + "_id": { + "$oid": "6711d477cd60fca157e5b7d3" + } + }, + { + "text": "The reviews make him out to be so bad. I only took his intro to theatre class so I'm not sure how he might be in higher courses, but he's a character and his classes will not be boring. All you need to do is pay close attention to video lectures and you'll be set. He was funny and very passionate about theatre.", + "pos": 0.153, + "neu": 0.767, + "neg": 0.08, + "_id": { + "$oid": "6711d477cd60fca157e5b7d4" + } + }, + { + "text": "This is a warning to other students: PLEASE do not take Keiths class. He has obvious favorites and doesnt care about students he doesnt see as attractive (read: fair skin and skinny.) He is a liar and will claim you didnt do work when its the opposite. He has to be one of the worst professors! DONT DO IT!!!", + "pos": 0.108, + "neu": 0.679, + "neg": 0.213, + "_id": { + "$oid": "6711d477cd60fca157e5b7d5" + } + }, + { + "text": "He's okay, but if you put hard work into something and someone else just does a crappy job, you will likely get the same grade, even though your effort is visible. He makes the course so that getting an A+ is impossible.(stupid) When something doesn't make sense, he'll apply it to metaphors and come up with whimsical phrases! Class feels invasive.", + "pos": 0.043, + "neu": 0.855, + "neg": 0.102, + "_id": { + "$oid": "6711d477cd60fca157e5b7d6" + } + }, + { + "text": "You might feel uncomfortable at first and he will at times seem rude, but overall he's okay. He demands that we have our cameras on, and if you have it off, he makes it a big deal. He is not lenient with attendance unless you have a doctor's note. So if you are dying and don't have a note, absent! I will say that he does care about his students!", + "pos": 0.092, + "neu": 0.831, + "neg": 0.077, + "_id": { + "$oid": "6711d477cd60fca157e5b7d7" + } + }, + { + "text": "Take this class but go in with an open mind. He might get on your case sometimes for not trying your best but sometimes things make you uncomfortable. Attendance seems to be like the main criteria for the grade. Show up to class and do all the movements and stuff and think about the A. You'll also make a lot of friends cause everyone gets cool.", + "pos": 0.131, + "neu": 0.769, + "neg": 0.1, + "_id": { + "$oid": "6711d477cd60fca157e5b7d8" + } + }, + { + "text": "Keith is an awesome professor he really gets you engaged and looking forward to the class", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7d9" + } + }, + { + "text": "This man and this class got on my nerves. All I want to know is, why are you so shady? Besides him as a person the class structure was so poor. Expect NOTHING BUT abstractions. It seems like hes just figuring it out as he goes as well. If you cant stand group project... dont.", + "pos": 0.116, + "neu": 0.823, + "neg": 0.061, + "_id": { + "$oid": "6711d477cd60fca157e5b7da" + } + }, + { + "text": "Keith Lee Grant is a great professor who truly cares about his students. He creates a safe space in his class, in which every student feels welcome and comfortable. Take his class because he will make you feel comfortable performing in front of an audience and he will inspire you to put your best performance forward!", + "pos": 0.44, + "neu": 0.56, + "neg": 0.0, + "_id": { + "$oid": "6711d477cd60fca157e5b7db" + } + }, + { + "text": "IF you want an honest professor who will mold you into the best performer you can be, then he is your best bet. IF you can't handle constructive criticism, hate participating, or just want to take this class to pass the time, move on.", + "pos": 0.291, + "neu": 0.645, + "neg": 0.064, + "_id": { + "$oid": "6711d477cd60fca157e5b7dc" + } + }, + { + "text": "His Musical Theatre Workshop is okay. If you do your work and show up, you will get easy A. I thought he was an amazing teacher at first, but he is very rude and does not care about students. He seems like he is keeping this teaching job at CCNY just for money.", + "pos": 0.142, + "neu": 0.735, + "neg": 0.123, + "_id": { + "$oid": "6711d477cd60fca157e5b7dd" + } + }, + { + "text": "He's amazeballs. I love this teacher so far for acting class! MUST HAVE TEACHER. Don't take this class if you're too shy though. Participation is 50% of grade!!!!!!!! So you've got to be comfortable in your own skin!!!!!", + "pos": 0.19, + "neu": 0.766, + "neg": 0.044, + "_id": { + "$oid": "6711d477cd60fca157e5b7de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d478cd60fca157e5b7e0" + }, + "professor_name": "Pam Laskin", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "she can talk your head off about the topic you learn in class but it can be engaging. attendance matters! She is tough at times but also sweet. wants the best for students. many group discussions in class. multiple papers but she's there to help you. the class was interesting. recommend taking it.", + "pos": 0.346, + "neu": 0.63, + "neg": 0.024, + "_id": { + "$oid": "6711d478cd60fca157e5b7e1" + } + }, + { + "text": "i do not recommended this class. not only does she make you purchase one of her OWN books (basically insider trading), but her classes can be summarized into her telling the class about how good of a writer she is, how much she loves ethnic fairy tales, and other very out of touch comments. she loves appropriating cultures. take another class pls!", + "pos": 0.212, + "neu": 0.77, + "neg": 0.018, + "_id": { + "$oid": "6711d478cd60fca157e5b7e2" + } + }, + { + "text": "Heres some advice. Dont be late. Dont be absent. Participate. If you dont care, neither will she. Shell give you warnings but wont improve your grade for mediocricy. There really is no late work or extra credit. PARTICIPATE. She is intimidating, but she is wonderful. You will leave her class a much better writer. She has a lot to offer!", + "pos": 0.157, + "neu": 0.65, + "neg": 0.193, + "_id": { + "$oid": "6711d478cd60fca157e5b7e3" + } + }, + { + "text": "At first she scared me, but i felt comfortable in her class within a week or two. Really passionate. Really serious about attendance- DONT skip! This class truly knocked my socks off. Her final group project gives you a lot of autonomy and it is probably the most fun assignment i have ever done. Prof Laskin genuinely cares and i love her tangents!!", + "pos": 0.328, + "neu": 0.624, + "neg": 0.048, + "_id": { + "$oid": "6711d478cd60fca157e5b7e4" + } + }, + { + "text": "Prof laskin honestly scared the crap out of me at first, but by the end of the semester i loved her. She was strict, but she gave a lot of oppurtunity. Every paper had a rewrite and she gave really good feedback. Just don't be late to her class, or else she will fail you lol", + "pos": 0.211, + "neu": 0.673, + "neg": 0.117, + "_id": { + "$oid": "6711d478cd60fca157e5b7e5" + } + }, + { + "text": "I loved this class the material was interesting and definitely helped me progress in my writing the professor was genuine, interesting and funny there were a few papers but if you like to write it shouldn't be an issue attendance does matter !", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d478cd60fca157e5b7e6" + } + }, + { + "text": "Pamela is very passionate about her subject. She is a published writer, so it explains a lot. I learned a lot from this course and i appreciated her passion. However, she has poor time management and she assigns too much work simultaneously. Make sure you get your books on time she delayed our course 2 weeks because everyone did not have the books.", + "pos": 0.165, + "neu": 0.767, + "neg": 0.067, + "_id": { + "$oid": "6711d478cd60fca157e5b7e7" + } + }, + { + "text": "Took the class to try it out, but my god was it hard. You need to be REALLY creative, like pull out straws out of the most random places creative, if the curtains are blue infer that the author is depressed type of creative. Threatens to drop or fail you if you are absent or late too much. A few amount of papers, but each paper has to have many pgs", + "pos": 0.211, + "neu": 0.618, + "neg": 0.171, + "_id": { + "$oid": "6711d478cd60fca157e5b7e8" + } + }, + { + "text": "An old-school academic who loves teaching. All she wants is active participation -- a tall order when most only take 210 because they have to. She cares as much about attendance as she does about work. Dropped me from 210 after 2 absences, and I sought her out to try again. Her passion is contagious to those with any interest in literature.", + "pos": 0.209, + "neu": 0.759, + "neg": 0.033, + "_id": { + "$oid": "6711d478cd60fca157e5b7e9" + } + }, + { + "text": "She assigns multiple papers from the start of the semester and the load never gets lighter. At the end of the semester she crams you with an 8-10 pages research paper and a 15 page group project. Her class is an excessive amount of work and its not worth it unless you are an english major. Save yourself the stress and take someone else.", + "pos": 0.051, + "neu": 0.885, + "neg": 0.065, + "_id": { + "$oid": "6711d478cd60fca157e5b7ea" + } + }, + { + "text": "I honestly loved her class, and I usually hate English. She's very nice, clear, and helpful. The books and topics she chooses to teach are also very interesting. The writing is to be expected but its not to outrageous at all. If you're naturally a good writer you'll do great. DEFINITELY RECOMMEND HER!", + "pos": 0.442, + "neu": 0.528, + "neg": 0.03, + "_id": { + "$oid": "6711d478cd60fca157e5b7eb" + } + }, + { + "text": "I took her for critical reading and writing 2. She's picky about certain things and she's not an easy grader but I found that it helped me to take the class more seriously. Many times (being an English major) I write papers with ease knowing that most professors will at least give me a B, I had to step up my game in her class, which was refreshing.", + "pos": 0.065, + "neu": 0.855, + "neg": 0.079, + "_id": { + "$oid": "6711d478cd60fca157e5b7ec" + } + }, + { + "text": "SHE WAS SUCH A HARD GRADER. GAVE STUDENTS OPPORTUNITY TO REVISE PAPER FOR HIGHER GRADE BUT WOULD NOT GIVE YOU ANY FEEDBACK. I TOOK WRITING FOR THE HUMANITIES AND THE TOPICS WERE INTERESTING BUT SHE MAKES IT SEEM LIKE SHE KNOWS IT ALL. AT THE BEGINNING THERE WAS NOT A LOT OF WORK BUT AT THE END THERE WAS SO MUCH TO DO!!!", + "pos": 0.137, + "neu": 0.846, + "neg": 0.017, + "_id": { + "$oid": "6711d478cd60fca157e5b7ed" + } + }, + { + "text": "She loves to talk down to her students and asks like she is all knowing. She loves to just talk at her students. Mad Libs is not the way to teach an english class. Class would be better if she wasn't here.", + "pos": 0.242, + "neu": 0.698, + "neg": 0.06, + "_id": { + "$oid": "6711d478cd60fca157e5b7ee" + } + }, + { + "text": "This professor is very picky; especially if you're not good at writing.", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d478cd60fca157e5b7ef" + } + }, + { + "text": "THE BEST ENGLISH PROFESSOR IN CCNY... READ all material asigned... you will pass... there are many papers but you have the opportunity to do re-writes. Group presenatation as a final on a artistic topic of your choice. I wouldn't say easy A but any one can earn it.", + "pos": 0.122, + "neu": 0.822, + "neg": 0.057, + "_id": { + "$oid": "6711d478cd60fca157e5b7f0" + } + }, + { + "text": "I loved her class so much!!! She is an incredible person and very fair with her work! Make sure you know how to manage your time because there will be a few papers and a few books to read! The midterm and the final are extremely easy! You'll make a big mistake if you don't take her for English 210! I learned so much and so will you :)", + "pos": 0.201, + "neu": 0.77, + "neg": 0.029, + "_id": { + "$oid": "6711d478cd60fca157e5b7f1" + } + }, + { + "text": "She is an awesome professor. Not only does she make you write a fair amount, but you will walk out of the class feeling like a better writer. Her friendly yet stern character created a very productive environment. I enjoyed this class so much that I took out an English Minor.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d478cd60fca157e5b7f2" + } + }, + { + "text": "She is, undoubtedly, one of the best English professors at the City college of New York. Take her class and you will never regret that you did. Even though she gives a lot of work, I completed my English 110 with Prof Laskin as a better writer.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d478cd60fca157e5b7f3" + } + }, + { + "text": "at first I was skeptical about taking this calss, but I am glad I did. Museum trip was the best! Aslo she is helpful very clear. Just do the papers and readings. One thing I like is when she grades the paper she gives it back to you and you can do it over for a higher grade and you know what she looking for from the paper comments she made.muah", + "pos": 0.239, + "neu": 0.743, + "neg": 0.019, + "_id": { + "$oid": "6711d478cd60fca157e5b7f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d478cd60fca157e5b7f6" + }, + "professor_name": "Ratna Sircar", + "rating": 2.1, + "department": "Psychology department", + "comments": [ + { + "text": "Positive evaluation withdrawn because, despite that I informed her that I had social anxiety, she still encouraged me to participate. However, once I received my final grade, I realized she had deducted 15/20 points for participation because she claimed I left my remarks \"dangling.\" What a disrespectful person!", + "pos": 0.12, + "neu": 0.848, + "neg": 0.032, + "_id": { + "$oid": "6711d478cd60fca157e5b7f7" + } + }, + { + "text": "She is a tough teacher and it could come off as her being rude sometimes, but by he end of the semester I realized she just wants the best for her students. 1 essay, 1 term paper finall, 1 partner presentation.", + "pos": 0.123, + "neu": 0.808, + "neg": 0.069, + "_id": { + "$oid": "6711d478cd60fca157e5b7f8" + } + }, + { + "text": "Having taken her class for this semester and reading the past reviews is like me seeing two totally different people. I think she has drastically changed her teaching style for the better. The class is more conversation based so yes you have to read but it's actually interesting! Two presentations and one paper near the end. No exams! She cares.", + "pos": 0.199, + "neu": 0.762, + "neg": 0.04, + "_id": { + "$oid": "6711d478cd60fca157e5b7f9" + } + }, + { + "text": "This was one of the easiest classes I have ever taken. But, it was because the professor didn't do any real teaching. She pushed hard for participation but overall she would just talk during class and you'd sit there, listen and pass. Also, the work load is almost non existent. We did two group presentations of textbook chapters and a paper.", + "pos": 0.03, + "neu": 0.944, + "neg": 0.026, + "_id": { + "$oid": "6711d478cd60fca157e5b7fa" + } + }, + { + "text": "She is very back and forth with information regarding grades, homework, etc. She is disrespectful to the students in general in the way that she speaks. Mandatory attendance, one paper, two presentations.", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d478cd60fca157e5b7fb" + } + }, + { + "text": "Everything that makes a class boring. Reads straight from the textbook, short, easy, mindless assignments, just hope you have a good group because presentation grades are collective. Material is rudimentary, all covered in PSY 101, still somehow always behind schedule. If you need the A, take it and don't feel guilty, you've suffered for it.", + "pos": 0.189, + "neu": 0.688, + "neg": 0.123, + "_id": { + "$oid": "6711d478cd60fca157e5b7fc" + } + }, + { + "text": "I do not recommend this professor, her class is not good. Her slides and her way to explain do not help you understand. She changes things frequently which is annoying for us like students.", + "pos": 0.061, + "neu": 0.708, + "neg": 0.231, + "_id": { + "$oid": "6711d478cd60fca157e5b7fd" + } + }, + { + "text": "Professor Sircar's class was hard and amazing at the same time. If you're interested in the subject and want a deep level of understanding, her class is perfect. She doesn't spoonfeed you anything and will make you work for your grade but you will come out of this class feeling satisfied with everything that you have learned.", + "pos": 0.205, + "neu": 0.776, + "neg": 0.019, + "_id": { + "$oid": "6711d478cd60fca157e5b7fe" + } + }, + { + "text": "She covers an entire chapter in less than 45 minutes. If you have any questions she will tell you to read the textbook. The exams have over 40 questions and she will tell you which chapters will be on it but that's it. No help, no study guide, nothing.", + "pos": 0.045, + "neu": 0.9, + "neg": 0.055, + "_id": { + "$oid": "6711d478cd60fca157e5b7ff" + } + }, + { + "text": "If you have other responsibilities other than school, don't take it . If you dont have time to read chapters every day, don't take it. If you don't excell at exams or lectures, and are not okay with not getting tests back or be given reviews, don't take it. If you like rude professors, this is your class.", + "pos": 0.04, + "neu": 0.885, + "neg": 0.075, + "_id": { + "$oid": "6711d478cd60fca157e5b800" + } + }, + { + "text": "She's a horrible professor (which doesn't necessarily mean she's a horrible person), but if you pay attention in class and TAKE NOTES, you'll do fine. If she likes the class she gets in touch with her good side and may offer extra credit. Making her laugh seems to do the trick.", + "pos": 0.268, + "neu": 0.623, + "neg": 0.11, + "_id": { + "$oid": "6711d478cd60fca157e5b801" + } + }, + { + "text": "No words can describe how terrible this class is. BARELY any review sessions, no slides online, rushes through lectures and expects you to know more than 7 chapters. The TA's can be somewhat helpful but the recitation is always a week behind schedule. SO disorganized. Best advice: TRY your BEST and hope for the best. Get a good grade on the paper.", + "pos": 0.32, + "neu": 0.566, + "neg": 0.114, + "_id": { + "$oid": "6711d478cd60fca157e5b802" + } + }, + { + "text": "doesn't post slides, no review. each exam consists of 8 chapters or more. the grading policy is 60% exams 40% quizzes and other things. not approachable and no extra credit. lecture goes fast and skips slides.", + "pos": 0.097, + "neu": 0.847, + "neg": 0.056, + "_id": { + "$oid": "6711d478cd60fca157e5b803" + } + }, + { + "text": "She doesn't give extra credit or curves of any kind. The average for exams are 62. It is all test heavy, no slides posted, no review, you miss everything. She doesn't move any exams if there is a snow day and fits two lectures into one if it does happen. Wouldn't recommend. This class is more for bio majors than psych.", + "pos": 0.049, + "neu": 0.801, + "neg": 0.15, + "_id": { + "$oid": "6711d478cd60fca157e5b804" + } + }, + { + "text": "This professor is amazing at what she does (neurological psychology), but as a teacher she is lacking in that area. She does not post the slides, so you have to take A LOT of notes. She also does not explain a lot of the content because \"you should know this already.\" Recitation is a blessing, the TAs help you out so much, loved them.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d478cd60fca157e5b805" + } + }, + { + "text": "She is not helpful. She does not want to work basically and expects everything from students. She would not answer questions clearly and does not realize how her guidance can help. Does not post slides but only teaches from them in class. Expects you to not only participate but shout out an answer once she points at you. Not clear about the exams", + "pos": 0.028, + "neu": 0.865, + "neg": 0.107, + "_id": { + "$oid": "6711d478cd60fca157e5b806" + } + }, + { + "text": "This is NOT an easy A. You have to study from the textbook and take good notes in class. She usually go through 1 chapter per class so dont fall behind. Exams are MC and are moderately easy if you study. Paper is easy because you have alot half of the semester to do it. Be sure to attended her class - she gives 5% extra for attendance.", + "pos": 0.144, + "neu": 0.825, + "neg": 0.031, + "_id": { + "$oid": "6711d478cd60fca157e5b807" + } + }, + { + "text": "She is not that bad. Her lectures are distorted. Gives annoying quizzes at the end of lectures. Her reviews are somewhat useless. Doesn't post lectures on bb. Test are easy only if you study from the book and notes. Take her class if you are going to spend time studying.", + "pos": 0.098, + "neu": 0.767, + "neg": 0.135, + "_id": { + "$oid": "6711d478cd60fca157e5b808" + } + }, + { + "text": "You have to really study. Read the chapter summary! Take notes in class. Office hours are helpful, just don't come 20 minutes before is over because it frustrate her and she won't answer your questions. No extra credit, just attendance 5% of your grade, DON'T MISS CLASS. TA's are great. And the final paper is super easy.", + "pos": 0.221, + "neu": 0.677, + "neg": 0.102, + "_id": { + "$oid": "6711d478cd60fca157e5b809" + } + }, + { + "text": "Horrible, don't do it to yourself.", + "pos": 0.0, + "neu": 0.588, + "neg": 0.412, + "_id": { + "$oid": "6711d478cd60fca157e5b80a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d479cd60fca157e5b80c" + }, + "professor_name": "Shireen Saleque", + "rating": 1.7, + "department": "Biology department", + "comments": [ + { + "text": "I heard she is hired to keep grades low. AVOID. She also does not know the material a major red flag.\n\n Don't take her she is rude and cheats for her favorites", + "pos": 0.069, + "neu": 0.664, + "neg": 0.267, + "_id": { + "$oid": "6711d479cd60fca157e5b80d" + } + }, + { + "text": "Saleque is a very rude professor and seems like she absolutely hates teaching. Exams are extremely difficult, where the averages are always in the 30s and 40s. She does not respond to emails, and takes forever to grade exams. If you see her name on your schedule, just AVOID her at all costs! E-permit if needed.", + "pos": 0.038, + "neu": 0.773, + "neg": 0.189, + "_id": { + "$oid": "6711d479cd60fca157e5b80e" + } + }, + { + "text": "Just avoid to save your GPA! Not a nice person very rude and disrespectful !", + "pos": 0.142, + "neu": 0.487, + "neg": 0.372, + "_id": { + "$oid": "6711d479cd60fca157e5b80f" + } + }, + { + "text": "This was unfair from the get go. She asked questions about experiments and took off all points. Exam breakdown points: 25 for matching 25 fill the blank (literally just based off slides but studying the slides will NOT help in this section) and 50 points for short response to experiment questions that are between 6-10 points each. Literally doodle", + "pos": 0.0, + "neu": 0.92, + "neg": 0.08, + "_id": { + "$oid": "6711d479cd60fca157e5b810" + } + }, + { + "text": "Before you take this class with her, go down to the shadiest place in New York and get someone to spit on you. That experience alone will be better than taking her class. \nAsk for clarify? Nope. \nAsk for better questions? How dare you \nUse the textbook? At your own peril, I used the ninja channel on yt about membranes. Most helpful all semester.", + "pos": 0.083, + "neu": 0.812, + "neg": 0.105, + "_id": { + "$oid": "6711d479cd60fca157e5b811" + } + }, + { + "text": "Professor Saleque is one of those professors who I had to self study for to do well on the course. She was very hard to follow during lecture, and the class average was a 40!!! When an average is that low, it's usually the professors fault. Do yourself a favor and take anyone else but her for whichever class you're interested in taking.", + "pos": 0.112, + "neu": 0.819, + "neg": 0.068, + "_id": { + "$oid": "6711d479cd60fca157e5b812" + } + }, + { + "text": "While Professor Saleque may have an established research lab, her paltry classroom etiquette, and rude/condescending behavior towards her students are undeserving of being a lecturer. Her class witnessed unhealthy criticism when students failed to meet her high standards for presentations. CCNY should reconsider her position as a professor.", + "pos": 0.0, + "neu": 0.779, + "neg": 0.221, + "_id": { + "$oid": "6711d479cd60fca157e5b813" + } + }, + { + "text": "Maybe at one point she used to be difficult but I had her last fall and it was easy. I barely studied and aced her exams. I guess she does not care about satisfying the biology department need to purposely keep students grades down anymore. Absolutely love her and she is going to write me a letter of rec for Medical school. BEST PROF EVER", + "pos": 0.201, + "neu": 0.699, + "neg": 0.1, + "_id": { + "$oid": "6711d479cd60fca157e5b814" + } + }, + { + "text": "The worst Bio professor. She is such a tough grader, all her exams are short answers and she does not give any partial credit. The class average was around a 40 throughout the whole semester and she barely curved. She was not kind when students would ask questions and would get annoyed easily. Please do yourself the favor and do not take her.", + "pos": 0.132, + "neu": 0.724, + "neg": 0.144, + "_id": { + "$oid": "6711d479cd60fca157e5b815" + } + }, + { + "text": "Worst BIO professor at CCNY. Never take her even if she is your last option. She doesn't seem to care about her students at all. Extremely rude and exams are really tough. My class average ran in 40s. Would never taker her ever again. Take her and regret for life!!!", + "pos": 0.0, + "neu": 0.744, + "neg": 0.256, + "_id": { + "$oid": "6711d479cd60fca157e5b816" + } + }, + { + "text": "One of the rudest professors at CCNY and cares less about her students. Don't take her even if that's the only class that fits your schedule.", + "pos": 0.098, + "neu": 0.787, + "neg": 0.115, + "_id": { + "$oid": "6711d479cd60fca157e5b817" + } + }, + { + "text": "Pls dont take her, very tough grader, dont care if you learn or not, gets mad when you ask questions, grade by exams, laugh when you say something not right, dont let you in after 10min late, dont know how to teach, have to many guess lectures, dont give partial credits", + "pos": 0.127, + "neu": 0.762, + "neg": 0.111, + "_id": { + "$oid": "6711d479cd60fca157e5b818" + } + }, + { + "text": "She was a good professor personality-wise. Teaching-wise, she is the absolute worst. She reads off her slides and keeps saying \"um\" in-between phrases, and doesn't answer questions that are asked. This is showing me that she doesn't know what she is lecturing. Our class averages have been in the 50s for the exam. RUN IF YOU SEE HER NAME!!!!!!!!!!!", + "pos": 0.045, + "neu": 0.875, + "neg": 0.081, + "_id": { + "$oid": "6711d479cd60fca157e5b819" + } + }, + { + "text": "She was the worst TA you can get in 229 she didn't know what she was doing, was always asking TA's for help never graded our reports and assignments on time. During this semester she was not teaching any other courses so she has no excuse for giving us our assignments 2 months late. AVOID IF YOU CAN SAVE YOUR GPA.", + "pos": 0.142, + "neu": 0.744, + "neg": 0.114, + "_id": { + "$oid": "6711d479cd60fca157e5b81a" + } + }, + { + "text": "If you want to endure hell, by all means take her. She was our TA and she made life difficult so I cant imagine a full on class with her. Shes lazy, unorganized, and clueless half the time. She didnt give us grades so we were left in the dark about our progress. Unbelievable. Worst TA EVER. YOU HAVE BEEN WARNED.", + "pos": 0.077, + "neu": 0.676, + "neg": 0.247, + "_id": { + "$oid": "6711d479cd60fca157e5b81b" + } + }, + { + "text": "She is not a good TA. She didnt give us our grades back till the end of the semester and we got horrible grades for the same work other classes got As in. She is a really strict grader and the only reason she curved is because the entire class complained. Her exams are difficult too even though they were worth 10%. Please avoid her.", + "pos": 0.056, + "neu": 0.768, + "neg": 0.176, + "_id": { + "$oid": "6711d479cd60fca157e5b81c" + } + }, + { + "text": "Good professor, obviously knows her stuff, but often reads off the slides. Graded harshly and took points off for small things. Focus on the lecture slides, the study guides, and you'll be fine; she tests mostly on big topics and main ideas for MC but then expects you to know more detail for short answers during exams.", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d479cd60fca157e5b81d" + } + }, + { + "text": "shes a very approachable professor but is extremeley harsh with grading ( I have A's in Biochem and Physical Chem yet still did not do well on exams despite getting 10 points above the average). Also, the final this year was a killer. Gave several questions she didnt really cover in class and made almost all students feel very unprepared. Avoid", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d479cd60fca157e5b81e" + } + }, + { + "text": "I know you have no choice to take her class the thing is you gotta work for your grade. test 10 questions multiple choice and rest short answers. The main point of short answers are to show your understanding of the materials. READ the textbook and do the questions behind it. choose Lab instructors wisely. Her lectures helps focus on test questions", + "pos": 0.081, + "neu": 0.886, + "neg": 0.033, + "_id": { + "$oid": "6711d479cd60fca157e5b81f" + } + }, + { + "text": "she is a horrible lecturer and her exams are super unfair. avoid if you care about your grade and learning. professors like her are what is wrong with the bio department.", + "pos": 0.211, + "neu": 0.527, + "neg": 0.262, + "_id": { + "$oid": "6711d479cd60fca157e5b820" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d479cd60fca157e5b822" + }, + "professor_name": "Toshiaki Jitsukawa", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "Amazing prof!!! His lectures are as clear as they get. He wants everyone to understand and pass. His grading system is straight up. 3 midterms out of which he drops 1 and then final. Matlab is a joke. I had 60 avg on 2 midterms and didnt do well on the final but he still passed me with a C. TAKE HIM IF YOU CAN!!!!", + "pos": 0.121, + "neu": 0.859, + "neg": 0.02, + "_id": { + "$oid": "6711d479cd60fca157e5b823" + } + }, + { + "text": "Prof Jitsukawa is obviously loves math (probably more so than teaching it). His tests are fair but mistake will not be tolerated. If you miscalculate something he doesn't care but a conceptual mistake will get you a lot of point off (A LOT). You have to study and \"master\" the subject or else you will have low grades. Overall, great class, great man", + "pos": 0.185, + "neu": 0.666, + "neg": 0.149, + "_id": { + "$oid": "6711d479cd60fca157e5b824" + } + }, + { + "text": "Really tough exams. Make sure you don't miss his lectures because the examples he solves are basically his exam questions. Also, the final is not as hard as his problems. Make sure you study past finals for the final exam (assuming the final is departmental).", + "pos": 0.182, + "neu": 0.732, + "neg": 0.087, + "_id": { + "$oid": "6711d479cd60fca157e5b825" + } + }, + { + "text": "Professor Jitsukawa is very straightforward in his lectures. He tells you what type of problems are on his exams and he is also very clear with his expectations. Do the HWS and study for the tests. You will definitely get above a B-.", + "pos": 0.116, + "neu": 0.828, + "neg": 0.056, + "_id": { + "$oid": "6711d479cd60fca157e5b826" + } + }, + { + "text": "The professor is good at his job. He taught a 16 week course in 7.I learnt a lot from his class. This was a repeat class for me. The course material was as new as the 1st time. If you attend the class you can pass. If you make a minor mistake, there goes the grade. Very, very strict grader. He does not entertain questions very much but a good prof.", + "pos": 0.076, + "neu": 0.882, + "neg": 0.042, + "_id": { + "$oid": "6711d479cd60fca157e5b827" + } + }, + { + "text": "Not super helpful, didn't teach stuff that was on the departmental final... Doing the homework definitely helps, but he's not great about answering questions.", + "pos": 0.118, + "neu": 0.616, + "neg": 0.265, + "_id": { + "$oid": "6711d479cd60fca157e5b828" + } + }, + { + "text": "Honestly, his accent is really thick, but you could get used to it. But there IS a language barrier. He is pretty straight forward with what he wants but is he good at teaching? Eh. He legitimately sucks at teaching series. I was so so so lost and i have to go to a million different resources just to understand. Wouldn't recommend.", + "pos": 0.158, + "neu": 0.682, + "neg": 0.16, + "_id": { + "$oid": "6711d479cd60fca157e5b829" + } + }, + { + "text": "Doesn't engage with the students. Doesn't tolerate dumb questions. Takes an incredible amount of points off for small errors.", + "pos": 0.117, + "neu": 0.692, + "neg": 0.192, + "_id": { + "$oid": "6711d479cd60fca157e5b82a" + } + }, + { + "text": "This class was very simple. Go to class, do all the homework and in-class problems and the rest is up to you. But it really is all up to you - very unhelpful professor.", + "pos": 0.0, + "neu": 0.947, + "neg": 0.053, + "_id": { + "$oid": "6711d479cd60fca157e5b82b" + } + }, + { + "text": "This professor is really awesome. He goes over every single problem from the textbook and then assigns hw. The HW problems basically show up on the departmental final. And he covers every single details from the book in class. If you attend his class regularly, you will ace his exmas and finals. His exmas are straightforward. An A is possible.", + "pos": 0.066, + "neu": 0.853, + "neg": 0.081, + "_id": { + "$oid": "6711d479cd60fca157e5b82c" + } + }, + { + "text": "THE BEST at explaining everything Calculus. Exams are straightforward - no surprises; he gives hints about what he will be on tests, so pay attention in class, and you'll get a great grade and never even have to read the book.", + "pos": 0.182, + "neu": 0.746, + "neg": 0.071, + "_id": { + "$oid": "6711d479cd60fca157e5b82d" + } + }, + { + "text": "He is an awesome professor. He can make you understand you very well. Just you have to do homework problems carefully and you will be fine in exams.", + "pos": 0.276, + "neu": 0.648, + "neg": 0.076, + "_id": { + "$oid": "6711d479cd60fca157e5b82e" + } + }, + { + "text": "He's a good professor, don't listen to what other people say. I didn't do well, but it's my own fault and this class in general is exceptionally hard; this guy really tries to make the material clear. Make sure you do the hw, that's the only practice you are going to get and all of his exam is from the textbook. Go to class too.", + "pos": 0.112, + "neu": 0.794, + "neg": 0.094, + "_id": { + "$oid": "6711d479cd60fca157e5b82f" + } + }, + { + "text": "If you want to get a F then take this guy if you want to pass with good grad find a different professor", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d479cd60fca157e5b830" + } + }, + { + "text": "+Good Teacher\r -Bad Grader\r -Easy Class exams\r -Final is extremely hard\r If you want to pass this class just find a different professor\r I had a B+ average in class\r But I got ?F? for the final because of the final", + "pos": 0.12, + "neu": 0.8, + "neg": 0.08, + "_id": { + "$oid": "6711d479cd60fca157e5b831" + } + }, + { + "text": "He values proof over examples. There aren't a lot of examples in his class. He is a hard grader. If you do the wrong thing, which I don't have a problem with. When he does examples, there were problems that he couldn't even get the right answer because of the amount of algebra involved yet he still takes off A LOT of points if you do it.", + "pos": 0.067, + "neu": 0.836, + "neg": 0.097, + "_id": { + "$oid": "6711d479cd60fca157e5b832" + } + }, + { + "text": "Don't ask Dumb questions in his class, he gets really mad. Anyways, very Good Teacher, a little hard on grading. He does give partial credit if you show that \"you know what you are doing.\" I notice that many people complain because they write random stuff on their test and expects (10) of (15) points. In fact, thats why they get (0 or 1) of (20).", + "pos": 0.112, + "neu": 0.794, + "neg": 0.094, + "_id": { + "$oid": "6711d479cd60fca157e5b833" + } + }, + { + "text": "Didn't ever say \"Good Morning\", nor ever called anyone by name, nor went over any of the 14 homework problems, nor explained his arbitrary test grading system, nor ever reviewed content comprehension. My grade was more a reflection of how he taught, rather than what I learned. Accelerated summer aside, this was the worst math class professor ever!", + "pos": 0.0, + "neu": 0.853, + "neg": 0.147, + "_id": { + "$oid": "6711d479cd60fca157e5b834" + } + }, + { + "text": "1. Attending Class usefull. Everything is good; but when it comes to exam question. he is a beach. his grading.. 20pt question , method 100% right.. i made an algebraic mistake and he gave me 0 LITERALLY, not makin up. Bottom line he teaches good but doesnt cover material that needed to be cover doesnt explains. explains good, Bad grader.", + "pos": 0.081, + "neu": 0.766, + "neg": 0.153, + "_id": { + "$oid": "6711d479cd60fca157e5b835" + } + }, + { + "text": "I can't really complain. As long as you do the homework, you'll be ready for the exams since they're pretty much based on that. He's not the nicest person in the world, but not the meanest either.", + "pos": 0.137, + "neu": 0.818, + "neg": 0.045, + "_id": { + "$oid": "6711d479cd60fca157e5b836" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47acd60fca157e5b838" + }, + "professor_name": "David Rumschitzki", + "rating": 2.4, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "He disrespect students and enjoy abusing them, really bad person", + "pos": 0.17, + "neu": 0.319, + "neg": 0.51, + "_id": { + "$oid": "6711d47acd60fca157e5b839" + } + }, + { + "text": "I can't believe this guy still has a job as a professor. He is an unprofessional jerk who does not know how to teach and talk to other humans.", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d47acd60fca157e5b83a" + } + }, + { + "text": "Yes, be prepared to be randomly called on to recite some algebraic expressions from previous classes. Many students were shaken to their core and thus didn't attend class out of fear of being berated for not remembering some formulas from freshman physics or being unable to read his microscopic handwriting. Most fear-inducing experience of my life", + "pos": 0.075, + "neu": 0.851, + "neg": 0.074, + "_id": { + "$oid": "6711d47acd60fca157e5b83b" + } + }, + { + "text": "Process control is very difficult material and this professor does not make it any easier. I understand he is very nice outside of class but his teaching style was not nice. The good thing is that he will pass you even if you did really really bad on exams.", + "pos": 0.065, + "neu": 0.71, + "neg": 0.225, + "_id": { + "$oid": "6711d47acd60fca157e5b83c" + } + }, + { + "text": "Pros: smart professor, goes deep into theory (although this can be a con, too). Cons: easily frustrated, combative, not adept at using remote learning technologies, throws a fit every time students aren't responsive (I get how it's frustrating, but it's remote learning, get used to it), can belittle students when they ask questions.", + "pos": 0.087, + "neu": 0.756, + "neg": 0.157, + "_id": { + "$oid": "6711d47acd60fca157e5b83d" + } + }, + { + "text": "Made me realize I have no desire in being a chemical engineer. The man is a monster; make sure you know everything about the class before as well as graduate level math. The man will call on you randomly so be ready, and if noone answers or you don't know the answer be ready for a tantrum. Every. Single. Class. Miserable.", + "pos": 0.135, + "neu": 0.751, + "neg": 0.115, + "_id": { + "$oid": "6711d47acd60fca157e5b83e" + } + }, + { + "text": "Truth be told, this guy is very smart. That said, he's very combative and enjoys making students miserable. If you're a good looking girl, be aware. He'll try to isolate you and in some cases even try to get you to his apartment. I also know of other gals whom he followed to non-uni related places.", + "pos": 0.176, + "neu": 0.749, + "neg": 0.075, + "_id": { + "$oid": "6711d47acd60fca157e5b83f" + } + }, + { + "text": "First time teaching the class, did not expect much out of his teaching. Exams are tough and long, so you won't be able to finish all the questions. Stay above average and you will be okay. Dont be afraid to ask questions.", + "pos": 0.044, + "neu": 0.922, + "neg": 0.035, + "_id": { + "$oid": "6711d47acd60fca157e5b840" + } + }, + { + "text": "This guy is one of the smartest professors I've ever seen. Quick on his feet, will be able to give you insight on any question you ask while matching his answer to the overall flow of the class. A total craftsman with the material. That said, this dude is a total ashole, unnecessarily abrasive. Be prepare to be pointed at to answer questions.", + "pos": 0.061, + "neu": 0.939, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b841" + } + }, + { + "text": "This professor will give you nightmares. He goes around the class asking each student questions on the material and will either tease you, threaten the whole class with a pop quiz, or tell you to leave the classroom if you get one of his questions wrong. He takes attendance on random days so attendance is important. Tests are extremely difficult.", + "pos": 0.03, + "neu": 0.793, + "neg": 0.176, + "_id": { + "$oid": "6711d47acd60fca157e5b842" + } + }, + { + "text": "Foundation of fluid mechanics: The course seems easy because he was very clear & through but his exam was very tough. When preparing for his exam use some help online like prepare from his notes & google similar problem write them down. Also make sure the start of the problem is correct like Boundary condition, coordinates. He gives lot of partial.", + "pos": 0.216, + "neu": 0.665, + "neg": 0.119, + "_id": { + "$oid": "6711d47acd60fca157e5b843" + } + }, + { + "text": "This professor is a bully, he will give you nothing but nightmares. Welcome to boot camp and the students are lower than maggots, all that is missing is to do the morning work out with him and your in the army.", + "pos": 0.0, + "neu": 0.772, + "neg": 0.228, + "_id": { + "$oid": "6711d47acd60fca157e5b844" + } + }, + { + "text": "He is just the worse professor you will have in this program. He loves insulting students. His tests are unsolvable. He's the chemical engineering department's nightmare.", + "pos": 0.112, + "neu": 0.697, + "neg": 0.191, + "_id": { + "$oid": "6711d47acd60fca157e5b845" + } + }, + { + "text": "The toughest professor you'll ever run into and the one you will remember as the crazy one. Super tough but well worth the time when you look back. After completing a course from him, all the other courses seem like a joke. Be prepared to stay awak and stay focused as he asks you random questions that, only if you were calm, could answer on time", + "pos": 0.273, + "neu": 0.677, + "neg": 0.05, + "_id": { + "$oid": "6711d47acd60fca157e5b846" + } + }, + { + "text": "This man is very intelligent but very disrespectful. He never gave back any exams or gave feedback on your progress in class. He must've had some serious issues in his past to make him so arrogant, not even the professors like him even though they'd never admit it.", + "pos": 0.151, + "neu": 0.699, + "neg": 0.15, + "_id": { + "$oid": "6711d47acd60fca157e5b847" + } + }, + { + "text": "I'm not sure he is human or animal during class time. New experience you never had before.Good luck Guys!!!!!!", + "pos": 0.0, + "neu": 0.752, + "neg": 0.248, + "_id": { + "$oid": "6711d47acd60fca157e5b848" + } + }, + { + "text": "He is a most intelligent professor I have ever met. I can sure imagine him teaching any subject he likes. He makes sure that every minute in his lecture is worth the time spent. This is one lecture after which you really feel that it has added something to your knowledge.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b849" + } + }, + { + "text": "He taught us \"Foundations of fluid mechanics\".Before his course , fluid mechanics used to seem like a foreign language but he has made us adept to it.Don't take if you are expecting an easy course.He is a hard but fair man.I think he should teach all courses.This is one place where we feel that we are on par with MIT!", + "pos": 0.133, + "neu": 0.843, + "neg": 0.024, + "_id": { + "$oid": "6711d47acd60fca157e5b84a" + } + }, + { + "text": "Very good professor. Difficult and somewhat demanding, but if you keep up on your work you can learn a lot from his class. People say he picks on students, but when half the class can't tell him the derivative of 1/x, you can't really blame him for being a bit annoyed.", + "pos": 0.086, + "neu": 0.799, + "neg": 0.114, + "_id": { + "$oid": "6711d47acd60fca157e5b84b" + } + }, + { + "text": "I have had 3 graduated classes with him so far. He is one of the smartest guy I have ever seen in my entire life. He is a good teacher also. His language is Math. So if you are not good in Math don't ever think of taking class with him. I learned a lot from him.", + "pos": 0.109, + "neu": 0.853, + "neg": 0.038, + "_id": { + "$oid": "6711d47acd60fca157e5b84c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47acd60fca157e5b84e" + }, + "professor_name": "Amir Dagan", + "rating": 3, + "department": "English department", + "comments": [ + { + "text": "Very knowledgeable, intelligent professor. His lectures are very philosophical...it's not your average surface level, skim the text kind of literature class. Get ready to plunge into the text and do some critical thinking! Professor Dagan is a great lecturer but he's also a great listener; he's very opened minded with little to no biases.", + "pos": 0.192, + "neu": 0.745, + "neg": 0.063, + "_id": { + "$oid": "6711d47acd60fca157e5b84f" + } + }, + { + "text": "Professor Dagan is extremely knowledgeable on such a large span of literature, and it shows. There are weekly assignments, a quick presentation on a topic of literature in history, and two essays. If you communicate with him about an issue, he is understanding and kind.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b850" + } + }, + { + "text": "Absolutely, difficult to work with during my time in his class. He was very unclear with feedback whenever students had questions about assignments, and the essays we wrote for his course. The homework assignments had confusing questions that made no sense to many students. Expect to only receive a C if you don't raise your hand. Terrible professor", + "pos": 0.0, + "neu": 0.777, + "neg": 0.223, + "_id": { + "$oid": "6711d47acd60fca157e5b851" + } + }, + { + "text": "Enjoyed this class. Lots of interesting readings. Prof. Dagan was insightful and asked questions that made me look deeper into the text. If you do the readings and participate in class discussion, you should be fine.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b852" + } + }, + { + "text": "The class is easy if you read and do homework but sometimes it feels like there is too many stories to read and it gets confusing. The work load is fair and he values participation. Do the work and its easy.", + "pos": 0.294, + "neu": 0.662, + "neg": 0.044, + "_id": { + "$oid": "6711d47acd60fca157e5b853" + } + }, + { + "text": "As long as you do the readings you shouldn't have any problems. He's not the best with people and sometimes doesn't understand how to ask a question to the class, but if you can be specific in your own questions, then he can answer them. Very smart and very cerebral.", + "pos": 0.103, + "neu": 0.858, + "neg": 0.04, + "_id": { + "$oid": "6711d47acd60fca157e5b854" + } + }, + { + "text": "The books and topics are extremely interesting. He has the potential to be a great professor but he is so uptight. He expects to hear some great analysis from his undergraduate students of which maybe one or two in the class can come up with. If you are not the selected prodigies then youre somewhat screwed. He is insulting,serious and HWs arecrazy", + "pos": 0.135, + "neu": 0.754, + "neg": 0.111, + "_id": { + "$oid": "6711d47acd60fca157e5b855" + } + }, + { + "text": "Dagan has so much potential to be a really good instructor. But he teaches in a way that makes him unclear in the things he gets across to his students. Don't get me wrong, I do all of his assignments, but more than half the time it's hard to see where he's getting at with his questions. Because of that, it's fairly hard to participate in class.", + "pos": 0.074, + "neu": 0.848, + "neg": 0.078, + "_id": { + "$oid": "6711d47acd60fca157e5b856" + } + }, + { + "text": "He only really seemed to enjoy it when people kissed up to him. The rest of those who didn't, however, didn't get the leisure of getting an A. He always answered my questions in some rude way. He was far from great, seriously.", + "pos": 0.192, + "neu": 0.719, + "neg": 0.089, + "_id": { + "$oid": "6711d47acd60fca157e5b857" + } + }, + { + "text": "I think he is really good at getting the broad points across. He likes class particpation, but also has a very dry sense of humor about discussion. Just do the work and show up and you'll be fine. And he is pretty easy on the eyes, so that is an extra bonus!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b858" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d47acd60fca157e5b859" + } + }, + { + "text": "HES A VERY EASY GRADER BUT HIS CLASSES ARE VERY BORING ALL YOU DO IS SIT IN CLASS AND ANALYSE THE BOOKS YOU WERE SUPPOSED TO READ. YOU'LL DO GOOD IF YOU READ EVERYTHING BECAUSE HE BASES HIS QUIZZES ON THE NIGHTS READING AND THE QUESTIONS ARE VERY EASY.", + "pos": 0.175, + "neu": 0.768, + "neg": 0.058, + "_id": { + "$oid": "6711d47acd60fca157e5b85a" + } + }, + { + "text": "A very boring class, many quizes about the reading.though grader, however, you will do good in this class if you are creative in your essays.", + "pos": 0.191, + "neu": 0.724, + "neg": 0.085, + "_id": { + "$oid": "6711d47acd60fca157e5b85b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d47acd60fca157e5b85c" + } + }, + { + "text": "Boring...it's easier to read from a textbook than handouts...he needs to liven that class up ASAP.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b85d" + } + }, + { + "text": "I hope the prof reads this:You have such potential to make the class interesting. You're young, you're cool and you need to use that to your advantage and make this topic, which could be real boring - real hot. Be more enthusiastic,more energetic. Don't make us read the text in class - that's soooo 3rd grade Enliven the material. You can do it.", + "pos": 0.181, + "neu": 0.788, + "neg": 0.032, + "_id": { + "$oid": "6711d47acd60fca157e5b85e" + } + }, + { + "text": "The guy can't teach and makes ridiculus request. actually you should kniow his dady works in the department and that's how he got his job. But when I took the class he only used the final paper to create my grade (which is the only one i handed in) and I", + "pos": 0.05, + "neu": 0.95, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b85f" + } + }, + { + "text": "I enjoyed learning about the great classical composers and the period in which they lived.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b860" + } + }, + { + "text": "I learned about classical music for the first time. It was very interesting. The teacher is very knowlegeable and helpful.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b861" + } + }, + { + "text": "He knows alot about classical music. Very impressive and interesting. I learned to appreciate it.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b862" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47acd60fca157e5b864" + }, + "professor_name": "Steven Jablonsky", + "rating": 3.3, + "department": "Music department", + "comments": [ + { + "text": "Great guy talking about Music. He is very funny. Would have gotten a higher grade if I attended his classes and took the final exam. His lectures were absolutely amazing and inspirational to people who want to learn about music. I feel like talking to my music teachers from my elementary school and high school about what I learned from this man.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b865" + } + }, + { + "text": "I had an amazing time in this course! This is NOT JUST a music class, it is a class on how to live as a functioning member of society! Dr. Jablonsky is a humourous sage filled to the brim with wisdom. I'm glad to say that I got a front-row seat to the best class I have ever taken! Also, he gives you the answers to the tests in HIS FREE TEXTBOOK!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b866" + } + }, + { + "text": "I was really excited taking the class. Oh, the disappointment. He is a bad teacher, why? because he does not teach. He goes off on an irrelevant, 2 hour-long rant, that usually ends with how great he is. Oh, another thing- if you're a girl, he will single you out and put you on the spot. Super creepy. He also added me on social media mid semester.", + "pos": 0.132, + "neu": 0.754, + "neg": 0.114, + "_id": { + "$oid": "6711d47acd60fca157e5b867" + } + }, + { + "text": "Super-bright and articulate, an excellent explainer of material basic music theory that isnt particularly intuitive. Posts his own text online for free. Hes definitely old-school, so if you need touchy-feely support this is not your guy. Yes, he can drift into digressions, but they serve as a sort of comic relief to an otherwise intense 2 hour", + "pos": 0.206, + "neu": 0.769, + "neg": 0.025, + "_id": { + "$oid": "6711d47acd60fca157e5b868" + } + }, + { + "text": "He doesn't give homework or tests, but that's really where the good stuff ends. He can be funny and nice sometimes, but he comes off extremely arrogant and condescending. He tends to cut people off and instead of answering the question that is actually asked, he'll go off on an irrelevant tangent and make you feel stupid.", + "pos": 0.158, + "neu": 0.682, + "neg": 0.16, + "_id": { + "$oid": "6711d47acd60fca157e5b869" + } + }, + { + "text": "Thinks his class is the best but I would rather take a class on how to make pillows because that's what I wish I could bring to his class", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b86a" + } + }, + { + "text": "To anyone who has him, well GOOD LUCK CHARLIE", + "pos": 0.612, + "neu": 0.388, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b86b" + } + }, + { + "text": "DON'T EVER TAKE HIM. If you want to have a great semester DONT TAKE HIM. SAVE YOUR GPA.", + "pos": 0.229, + "neu": 0.636, + "neg": 0.135, + "_id": { + "$oid": "6711d47acd60fca157e5b86c" + } + }, + { + "text": "He is an eccentric professor who has a long history of music. His tests are based on the textbook he wrote but he questions you on the most trivial information. His essays are personal responses to videos or art. Dont take his 101 classes.", + "pos": 0.0, + "neu": 0.964, + "neg": 0.036, + "_id": { + "$oid": "6711d47acd60fca157e5b86d" + } + }, + { + "text": "I like him so much. He doesnt give you essay, and test. Test is really simple. I love him so much", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b86e" + } + }, + { + "text": "For sure the most eccentric professor in the Music Dept but I learned so much from him and improved tremendously as a composer. For the composition class you have to compose a piece per week and for the arranging class you also arrange a piece per week. You definitely need to put in time but it's so worth it.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b86f" + } + }, + { + "text": "He is a good guy that really wants the best for you, but his teaching style is not exactly great. His essays are easy but you need to study everyday. Get ready to memorize names, paintings, and history. Also pay attention to what he says in class because it will come back. He is ruthless in his quizzes and tests and does not tell you what to study.", + "pos": 0.148, + "neu": 0.777, + "neg": 0.076, + "_id": { + "$oid": "6711d47acd60fca157e5b870" + } + }, + { + "text": "Was a very nice professor, and I enjoyed his class. He let me work with him and turn in assignments when I was ready.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b871" + } + }, + { + "text": "He makes his own textbook which is mad lit. He tells a lot of jokes and he isn't that bad. He's an okay grader and is cool.", + "pos": 0.264, + "neu": 0.642, + "neg": 0.093, + "_id": { + "$oid": "6711d47acd60fca157e5b872" + } + }, + { + "text": "Cool guy, jokes around a lot, and prepares you for \"the final of life\". Teaches you about music and life. Tests and papers are fairly easy. Get ready to learn a lot of names and dates.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b873" + } + }, + { + "text": "More interested in talking about himself than teaching.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b874" + } + }, + { + "text": "Expect to do much of the learning on your own. You will have to go home and study for 2 hours if you want to pass. This professor gets off topic a lot and talks about himself a lot. It is not an easy class but it's not too shabby. Some papers, reading and test.", + "pos": 0.021, + "neu": 0.949, + "neg": 0.03, + "_id": { + "$oid": "6711d47acd60fca157e5b875" + } + }, + { + "text": "This guy is full of life lessons and music. He expects you to know stuff, but that's good because...well, when you're in an advanced musicianship class...you should know stuff. Laid back guy, doesn't mind making allowances for life, but keep up or you will fall behind. I was one of the lucky ones who was able to catch up.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b876" + } + }, + { + "text": "This cat knows his stuff. He's young too. Overall just a wonderful experience in his classroom. His lectures are fascinating and he really goes into deep meanings of the true history of music. Just a really profound and flexible teacher who respects his students and is there to teach and give his all!", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d47acd60fca157e5b877" + } + }, + { + "text": "A hack! He subbed for one of my classes, and he talked about himself the whole time. Everything he says relates to him being great. Really annoying.", + "pos": 0.136, + "neu": 0.772, + "neg": 0.092, + "_id": { + "$oid": "6711d47acd60fca157e5b878" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47bcd60fca157e5b87a" + }, + "professor_name": "Ibithaj Arafat", + "rating": 2.5, + "department": "Sociology department", + "comments": [ + { + "text": "She was a teacher who was passionate and helped all students who wanted to learn. She was available after class to give more insight about topic if needed. She encouraged me to work hard and be on time. She was inspirational. A great role model and demonstrated leadership. She was my favorite professor.", + "pos": 0.252, + "neu": 0.726, + "neg": 0.022, + "_id": { + "$oid": "6711d47bcd60fca157e5b87b" + } + }, + { + "text": "Professor Arafat is very knowlegeable and an expert who knows what she is teaching and explains it well. She is VERY strict and can come across harsh but she is one of the best teachersprofessors I've ever known. I come from a family of teachers and my expectations are high. Ms. Arafat is by far one of the best I've ever crossed path with.", + "pos": 0.175, + "neu": 0.799, + "neg": 0.026, + "_id": { + "$oid": "6711d47bcd60fca157e5b87c" + } + }, + { + "text": "don't even think to take rhis class go to another cuny school.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b87d" + } + }, + { + "text": "This Prof. is the best!! She is also very fair and just. I learned a lot and enjoyed her classes. Yes, she is strict, but it's because she cares, still.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b87e" + } + }, + { + "text": "She is a tough professor, but she is like that to make sure you understand the lessons. Always come to her class, ask questions to clarify your understanding, keep up with class notes, follow the steps and work together with your group on doing the group project and study hard for her 1 exam and you'll do well.", + "pos": 0.137, + "neu": 0.819, + "neg": 0.044, + "_id": { + "$oid": "6711d47bcd60fca157e5b87f" + } + }, + { + "text": "She is a very tough and fair Professor, but a nice professor. If you come to class, take notes, ask questions to clarify your understanding and do your parts of the group project, and study hard for her exam, you will be fine. Failure happens to you if you slack off. Group project is 50%, 10% for Group presentation and 50% is your exam.", + "pos": 0.105, + "neu": 0.793, + "neg": 0.102, + "_id": { + "$oid": "6711d47bcd60fca157e5b880" + } + }, + { + "text": "She is a pain in the ass, but u know what its worth it because after taking her class u will leave knowing u worked and learned something from her. she is sweet if she see u putting the effort in. She pretend to be mean but got a warm heart. Just respect her because she knows her****. don't be like other students that curses her out. that =F", + "pos": 0.213, + "neu": 0.673, + "neg": 0.114, + "_id": { + "$oid": "6711d47bcd60fca157e5b881" + } + }, + { + "text": "She's a very knowledgeable professor but she absolutely should have retired years ago. Very difficult to communicate. I was very disappointed with her class.", + "pos": 0.0, + "neu": 0.727, + "neg": 0.273, + "_id": { + "$oid": "6711d47bcd60fca157e5b882" + } + }, + { + "text": "I had her last spring, maybe that's she was extremely unhelpful, easily irritated and obnoxious for no reason. I have never encountered a person with such hatred for students. Her answers to our question were always laced with sarcasm and contempt. She is the worst teacher I've ever had in my whole entire life.You could not pay me to take her class", + "pos": 0.05, + "neu": 0.667, + "neg": 0.283, + "_id": { + "$oid": "6711d47bcd60fca157e5b883" + } + }, + { + "text": "This Professor has been teaching at Cty College has 10yrs+ to were they cannot fire her. If sociology is your major this is a requrement! DO NOT WASTE YOUR MONEY!!! Please take this class some where else, her class is a waste of your money and time!Her main goal is to fail you because she get paid for the enrollment. Your grade is based on 1 test.", + "pos": 0.109, + "neu": 0.809, + "neg": 0.082, + "_id": { + "$oid": "6711d47bcd60fca157e5b884" + } + }, + { + "text": "It's ok. U have to attend, write a book report(10 pp.), present it, write a research paper (15 pp.), n take a final (based on the presentations. By the way this lazy woman doesn't teach. We learn from each other's presentations, which r each 1 class long). She is a very close-minded, traditional thinker, so don't even try 2 get all radical on her.", + "pos": 0.0, + "neu": 0.956, + "neg": 0.044, + "_id": { + "$oid": "6711d47bcd60fca157e5b885" + } + }, + { + "text": "This class requires that you actually DO research, which is why it's so difficult, but I feel like she gives chances to do well. If u're a soc major, u have 2 take it, no matter what. CONFORM! Get through it, put up with her...do what she assigns n u'll pass the class. Good Attendance n not procastinating will be ur saviors in this class.", + "pos": 0.164, + "neu": 0.792, + "neg": 0.043, + "_id": { + "$oid": "6711d47bcd60fca157e5b886" + } + }, + { + "text": "She's a really strict professor only because she wants you to learn and be successful in the future. She's very helpful,funny, clear, and understanding of her students. I found her class to be the most difficult at CCNY. Be very prepared...", + "pos": 0.182, + "neu": 0.76, + "neg": 0.057, + "_id": { + "$oid": "6711d47bcd60fca157e5b887" + } + }, + { + "text": "she is just B i t c h. avoid her at any cost! a true experience.", + "pos": 0.16, + "neu": 0.726, + "neg": 0.114, + "_id": { + "$oid": "6711d47bcd60fca157e5b888" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d47bcd60fca157e5b889" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d47bcd60fca157e5b88a" + } + }, + { + "text": "Very awful, punitive teaching style. Verbally abusive.", + "pos": 0.0, + "neu": 0.265, + "neg": 0.735, + "_id": { + "$oid": "6711d47bcd60fca157e5b88b" + } + }, + { + "text": "she may be hard in her research class, but this class is easy. 5quizzes, 1 quiz only covers 1 chapter. questions are really basic.she is likely to make careless mistakes while lecturing and we have to correct her.she does not sugarcoat her words.some of you may think it is annoying.", + "pos": 0.064, + "neu": 0.749, + "neg": 0.187, + "_id": { + "$oid": "6711d47bcd60fca157e5b88c" + } + }, + { + "text": "Very strict and knowledgeable. easy class. one book summary and presentation (each day another person presents for the whole session). you will learn alot in this class. one exam (final) and you can call her anytime for help.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b88d" + } + }, + { + "text": "The most infuriating professor i have ever had.", + "pos": 0.0, + "neu": 0.655, + "neg": 0.345, + "_id": { + "$oid": "6711d47bcd60fca157e5b88e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47bcd60fca157e5b890" + }, + "professor_name": "Paul Oppenheimer", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "Does not give clear grading criteria, nor does he allow students to have enough discussion imo. Would never take again.", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d47bcd60fca157e5b891" + } + }, + { + "text": "He seems like a nice guy but hes extremely boring. He talks non-stop & when he asks for input from students, he barely waits a few seconds before talking again. Almost Impossible to get a word in or ask questions. Your whole grade is based on two papers so do your best . The books are boring too & hes pretty pretentious which can get annoying", + "pos": 0.17, + "neu": 0.711, + "neg": 0.119, + "_id": { + "$oid": "6711d47bcd60fca157e5b892" + } + }, + { + "text": "Won't take this professor again. He's so passionate about Chaucer but if you don't understand he'll leave you there. Only 2 papers to do but he's very strict on them. Regret taking him. Don't take him!", + "pos": 0.103, + "neu": 0.807, + "neg": 0.09, + "_id": { + "$oid": "6711d47bcd60fca157e5b893" + } + }, + { + "text": "Professor is a sweet man who is very passionate about Chaucer Canterbury Tales. I really dislike old English and it is annoying; however, he is very patient and only gives 2 papers. I'd say it is an easy A.", + "pos": 0.195, + "neu": 0.691, + "neg": 0.114, + "_id": { + "$oid": "6711d47bcd60fca157e5b894" + } + }, + { + "text": "This class was supposed to be Comparative Literature, not strictly European Literature. Prof is def knowledgeable in the latter, but this course did little to expand any student's literary horizon. In addition, he's an unreasonably difficult grader. For reference, I'm an English major who does well in every class. I'm sorry but I wouldn't recommend", + "pos": 0.089, + "neu": 0.794, + "neg": 0.117, + "_id": { + "$oid": "6711d47bcd60fca157e5b895" + } + }, + { + "text": "A true erudite of knowledge on literature spanning different cultures and time periods. I've never learned so much from a single professor! His passion for his subject was so infectious that I still remember many of his lessons and discussions a year later. If you can take him, you should. However, he is by no means an easy A.", + "pos": 0.136, + "neu": 0.831, + "neg": 0.033, + "_id": { + "$oid": "6711d47bcd60fca157e5b896" + } + }, + { + "text": "He is a very tough grader when it comes to reading about the middle ages. He very closed minded and simply wants professional writing for his class. He also give harsh comments on essays and honest i am a straight \"A\" student until his class. He truly does not give his class the chance to grow and express themselves.", + "pos": 0.149, + "neu": 0.782, + "neg": 0.069, + "_id": { + "$oid": "6711d47bcd60fca157e5b897" + } + }, + { + "text": "Cannot believe Oppenheimer is not at Oxford or Yale. Then again, since CCNY used to be \"poor man's Harvard\", maybe he's right where he belongs. Brilliant without being pretentious; encyclopedic knowledge without having to show off. Spectacular insights. A must-take prof for any literature or poetry lover. Stimulating lectures.", + "pos": 0.179, + "neu": 0.768, + "neg": 0.053, + "_id": { + "$oid": "6711d47bcd60fca157e5b898" + } + }, + { + "text": "He is a great professor, but his grading criteria is quite unclear. There wasn't any dialogue about any of the tales we read; he just read to us, and we followed along. This class by no means is an easy A.", + "pos": 0.13, + "neu": 0.753, + "neg": 0.117, + "_id": { + "$oid": "6711d47bcd60fca157e5b899" + } + }, + { + "text": "Clearly an intelligent man. His lectures tend to go off topic. He is a super hard grader. You'll learn a lot but most likely won't receive an A. There are also a lot of reading required for this class.", + "pos": 0.148, + "neu": 0.824, + "neg": 0.028, + "_id": { + "$oid": "6711d47bcd60fca157e5b89a" + } + }, + { + "text": "This prof. is very brilliant. I only advise you to take this class if you have an interest in classical literature. If not, don't bother. I personally am always interested in literature so this class suited me just well. Do not test his intelligence, he will dismantle you in the kindest way possible. Majority of your grade is based on your essays.", + "pos": 0.165, + "neu": 0.775, + "neg": 0.06, + "_id": { + "$oid": "6711d47bcd60fca157e5b89b" + } + }, + { + "text": "Prof. Oppenheimer is a very brilliant man. His knowledge for literature is expansive and he expects his students to follow suit. That being said, we didn't have homework or tests, but he expects papers to be up to par with his standards. He often goes off on tangents, but if you truly enjoy literature, you will listen to every word.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b89c" + } + }, + { + "text": "hard grader, he is a perfectionist.", + "pos": 0.316, + "neu": 0.506, + "neg": 0.177, + "_id": { + "$oid": "6711d47bcd60fca157e5b89d" + } + }, + { + "text": "Opened the world of Chaucer and Medieval England to me with an astounding mastery of diction; perfect accent, intonation and inflection. It was this, his enunciation that I remember and value most. His infectious enthusiasm suggested my term essay: Chaucer's Use of Satire as it Affects Chivalry in the Fabliaux of the Canterbury Tales.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b89e" + } + }, + { + "text": "Took Canterbury Tales and Medieval Epic class; Shakespeare as undergrad. Brilliant prof and excellent lecturer. His specialties are Medieval and Renaissance. He is one of the best people to take for that--probably anywhere. What he does very well is teach you close reading. Pretty conservative politically, but not a problem and open to debate.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b89f" + } + }, + { + "text": "Not an easy grader. You will have to be a good writer to get an A and you must work REALLY HARD to get a good grade. He is very intelligent.", + "pos": 0.224, + "neu": 0.639, + "neg": 0.137, + "_id": { + "$oid": "6711d47bcd60fca157e5b8a0" + } + }, + { + "text": "Among my Top Three Professors. He's thoroughly informed, clear, handsome, and has no business anywhere but an Ivy League university. I never dreaded his classes, of which I took 3. Loved him; he was precious and a rare genius in academic thought.", + "pos": 0.353, + "neu": 0.619, + "neg": 0.028, + "_id": { + "$oid": "6711d47bcd60fca157e5b8a1" + } + }, + { + "text": "He knows what he is talking about, although he made us buy 11 books for his class and we only got to read about 6. Marshall the TA that worked with him was great. Overall the class is not too demanding the test were easy. If you do the work it is an easy A.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b8a2" + } + }, + { + "text": "He is a good professor with an eccentric methodology. Nevertheless you will understand the material and enjoy it after his class is done", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b8a3" + } + }, + { + "text": "he talks too much about things that is not related to the material", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d47bcd60fca157e5b8a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47ccd60fca157e5b8a6" + }, + "professor_name": "Joseph Barba", + "rating": 3.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Do as many problems/questions as you can for related chapters. If you understand all problem set problems, and past quizzes/exams if available, you are golden. Otherwise, he did grade generously this semester and gave nice curves. Drops one midterm and weighed heavier the highest of your exam averages (midterms vs final average).", + "pos": 0.095, + "neu": 0.814, + "neg": 0.092, + "_id": { + "$oid": "6711d47ccd60fca157e5b8a7" + } + }, + { + "text": "Barba is a good guy. He gives hard exams that will make you think hard, but he also gives a great curve. You need to study hard and go to his office hours. He is very nice during office hours and will always welcome any question. He doesn't care about the final answer, but rather your steps. He is very very generous with partial credit. Good luck", + "pos": 0.341, + "neu": 0.581, + "neg": 0.079, + "_id": { + "$oid": "6711d47ccd60fca157e5b8a8" + } + }, + { + "text": "His lectures are not very interactive, but he is always available during office hours and helps a lot with every question however stupid it is. We had 4 tests over the term, he does good partial credit, but anyway you'll have to study a lot and know how to solve problems.", + "pos": 0.195, + "neu": 0.682, + "neg": 0.123, + "_id": { + "$oid": "6711d47ccd60fca157e5b8a9" + } + }, + { + "text": "Just making sure your alright, because the quiz is amazing based on what I learned and what i studied so far, its really great", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d47ccd60fca157e5b8aa" + } + }, + { + "text": "Easiest class ever! Anyone who gets below an A+ needs to drop this major and find some other career. Anyone who complains this class is hard has a serious skill issue and need to get better at EE.", + "pos": 0.126, + "neu": 0.705, + "neg": 0.169, + "_id": { + "$oid": "6711d47ccd60fca157e5b8ab" + } + }, + { + "text": "Person below cheated on all the exams he had chegg, quizlet, coursehero, and google open during all the exams and he is a nicompoop. I hate this class and barba is so mean and failed like 20 students", + "pos": 0.053, + "neu": 0.722, + "neg": 0.224, + "_id": { + "$oid": "6711d47ccd60fca157e5b8ac" + } + }, + { + "text": "It's ASN. Idk why they r lying. Yes, for a F, D grade student, it is impossible to imagine getting A+. Dgmw, their struggle is real.U need to put some effort,practice & really understand, but good thing is he gives HW problems which are enough for practice & an A. No submission req.There's partial credit in exm without which I would have gotten a B", + "pos": 0.124, + "neu": 0.743, + "neg": 0.133, + "_id": { + "$oid": "6711d47ccd60fca157e5b8ad" + } + }, + { + "text": "no partial credit 4 hard exams and so much homework", + "pos": 0.0, + "neu": 0.548, + "neg": 0.452, + "_id": { + "$oid": "6711d47ccd60fca157e5b8ae" + } + }, + { + "text": "hardest class ever at ccny", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d47ccd60fca157e5b8af" + } + }, + { + "text": "boring class", + "pos": 0.0, + "neu": 0.303, + "neg": 0.697, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b0" + } + }, + { + "text": "The material itself isn't difficult, if you had good circuits background a lot of the problems you do to practice for exams will be easy. The difficult part of his course comes from his exams, most of his exams looked nothing like practice problems he gave us to review. I relied heavily on the curve to pass his course.", + "pos": 0.146, + "neu": 0.748, + "neg": 0.105, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b1" + } + }, + { + "text": "He is not a bad professor and can actually teach the material well. But, when your grade is based on 4 exams and a final; there isn't much you could do if you get off to a bad start. His exams got harder each time and the curve was lower each time. There is literally no way to study for them since nothing is even close to what he puts on exams.", + "pos": 0.043, + "neu": 0.829, + "neg": 0.128, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b2" + } + }, + { + "text": "Hoped there was a higher curve :(", + "pos": 0.248, + "neu": 0.476, + "neg": 0.276, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b3" + } + }, + { + "text": "He's a really good professor. There were 12 total quizzes every Wednesday. Even though I failed 3 quizzes out of 12 quizzes, if you can do well on the other quizzes and if you do extremely well on the final exam, you can end up with an A just like me. He's a fine gentleman. He's like a dad/father. Very helpful. Quizzes (60%) and Final Exam (40%).", + "pos": 0.22, + "neu": 0.739, + "neg": 0.041, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b4" + } + }, + { + "text": "I was expecting a C or D in this class but was surprised with a B. Weekly quizzes that get harder as the semester goes on but he curves super heavily on the quizzes. The class average on each quiz is raised up to a 7 and we get the points added from our quizzes to reach the average. Final was hard but his curve was so legendary, surprise me so much", + "pos": 0.148, + "neu": 0.832, + "neg": 0.02, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b5" + } + }, + { + "text": "Ok so barba is crazy because his quizes are evry week and i do good in beginnig but they get harder and harder so yoiu need to do good in his class to pass and I got lucky on the final and happy to pass the class barba is a good man", + "pos": 0.299, + "neu": 0.673, + "neg": 0.027, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b6" + } + }, + { + "text": "His class isn't easy, but he is very good at teaching. Follow his lectures to do well on the quizzes. He is very understanding with students. He is always there to answer questions for us. Great way of teaching. If you pay attention to his solving style, you will do well. Would love to have him again!", + "pos": 0.318, + "neu": 0.639, + "neg": 0.043, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b7" + } + }, + { + "text": "He is bad at explaining and making sure if students understands or not. He makes his exams very difficult. Also, he doesn't repeat his exams so you gotta make sure that you know what he is teaching. Mostly learn own your own. if you work hard you will make it i guess. good luck!", + "pos": 0.165, + "neu": 0.718, + "neg": 0.117, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b8" + } + }, + { + "text": "He is a great professor who knows the material and is more than willing to help you get through difficulties you might face. His tests are average. As long as you do your work using the book outside of class you will do good on the tests.", + "pos": 0.177, + "neu": 0.783, + "neg": 0.04, + "_id": { + "$oid": "6711d47ccd60fca157e5b8b9" + } + }, + { + "text": "He is the BEST EE prof i have ever had, taught the material very well. If you go to class, you should know how to do the problems. He gave you homework, which is easier than the exam so do your textbk question and you good. Very caring and his lecture is NOT boring because he gave a lot of energy while teaching, which is what I appreciate the most.", + "pos": 0.268, + "neu": 0.701, + "neg": 0.031, + "_id": { + "$oid": "6711d47ccd60fca157e5b8ba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47ccd60fca157e5b8bc" + }, + "professor_name": "Octavio Betancourt", + "rating": 3.4, + "department": "Computer Science department", + "comments": [ + { + "text": "Class split into 2,2 days w/ him, then with a TA. He focuses more on the concept/ theoretical side and tries to get you to understand WHY something is answered one way,so you know how to do other problems! I really liked that. His tests are easy if you just practice problems in the book. No partial C. Unfortunately hes retiring after this semester.", + "pos": 0.081, + "neu": 0.781, + "neg": 0.139, + "_id": { + "$oid": "6711d47ccd60fca157e5b8bd" + } + }, + { + "text": "He is not a good teacher, and has tough test. But he curve a a lot. The average tests are 30-40. If you are above average, I think you could get B or A. Even you are below the average, you still have a chance to pass his class. Unless you got 0 on the test.", + "pos": 0.043, + "neu": 0.907, + "neg": 0.051, + "_id": { + "$oid": "6711d47ccd60fca157e5b8be" + } + }, + { + "text": "good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d47ccd60fca157e5b8bf" + } + }, + { + "text": "Do the homework and study on your own. The exams are not too hard. He curves.", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c0" + } + }, + { + "text": "Curves a lot. If you know basic logic (i.e. p->q, p is true, therefore q is true) and combinations & permut. from High School you should ace the first exam. Textbook is grimaldi, discrete and comb.., 5th ed, which is used a lot. Slight accent, frequently tells jokes, answers ur questions in class. Goes over lots of examples (from txtbk) in class.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c1" + } + }, + { + "text": "basically the whole class is you and your group working on your own, dont expect much help from him at all(email or office hrs), book doesnt help at all, try and find someone who took the class for the projects", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c2" + } + }, + { + "text": "cheap professor,failed me inspite of doing projects,never take him he doesnt teach anything and he justknows matlab nothing more than that very irritating doesnt know anything but appears to be over confident never take his class guys", + "pos": 0.104, + "neu": 0.844, + "neg": 0.052, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c3" + } + }, + { + "text": "He is an alright professor. Test #1 was on chaps 1- 2. Test #2 was on Ch 3 - 4. Avg. 56 and 42 for the two tests. He focuses on how to prove/disprove. Final was on relations, functions, graph theory, and trees. Test questions are sometimes directly from the textbook. The best part is the curve. Such a huge curve. 60 or higher is an A.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c4" + } + }, + { + "text": "Prof has gruff bravado typical of mathematicians, but frets privately abt whether students learn material. Do all problems in book & you'll have little difficulty on exams. Combinatorics (Ch. 1) is hardest topic covered; problems are unnecessarily difficult; invest time and attention & you'll be fine. Steep curve applied, weeds out the lazy early.", + "pos": 0.033, + "neu": 0.722, + "neg": 0.245, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c5" + } + }, + { + "text": "Going to this guy's lectures and going to the central park is the same. You will learn nothing. He focus almost exclusively in trying to explain proofs and doesn't explain any exercises. Pros: His exams are from exercises in the chapter and he curves. The final is only from last chap. Do all the exer. in the chap, get above avg = A.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c6" + } + }, + { + "text": "Well, Like previous have said, betancourt isn't well organized with his teaching methods. He is somewhat unpredictable. The reason I withdrew from that class because some friends of mine told me that minoring in CS is a waste of time for an EE major like myself. However, I enjoyed studying the concepts and understood it very well.", + "pos": 0.232, + "neu": 0.702, + "neg": 0.066, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c7" + } + }, + { + "text": "Avoid this professor if possible....if you can't start studyng in your own. He is hard to understand. He is not availble during his office hours. He is very unorginized and gives no sylibus.", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c8" + } + }, + { + "text": "He's an ok Prof, if you know what you're doing. The class is fairly hard. His projects are repeats, but you DO NEED TO KNOW what you're copying as he will question everybody about their report. He typically curves the grade, so don't worry if you screw up the 1st project as long as you make it up for later proj", + "pos": 0.079, + "neu": 0.878, + "neg": 0.043, + "_id": { + "$oid": "6711d47ccd60fca157e5b8c9" + } + }, + { + "text": "I took professor Betancurt last semester. Seriously, his class was really hard. I had to study a lot. I was going to drop his class because i was not aware of his curving style. However, i decided to stay and ended up getting an A. The class is hard but if you do above class average in the exams you'll pass.", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d47ccd60fca157e5b8ca" + } + }, + { + "text": "did not deserve an A, curved helped alot. Attend class to know topics covered,take good notes and read them repeatedly. tests focus on class material. buy solutions manual online-helpful. practice combinatorics alot, hard and no partial credit for them I hear, although I got them right. Witty and interactive lecture style, keeps you awake.", + "pos": 0.077, + "neu": 0.825, + "neg": 0.097, + "_id": { + "$oid": "6711d47ccd60fca157e5b8cb" + } + }, + { + "text": "the responses that have been posted before me, has probably been written by the professor himself!!! he is the hardest, the most horrible professor in the world!!! his exams are ultra hard...his lectures lacks clarity...his tests average were somewhere in the low 40s...and on top of that, the final he made was insane!!! he does curve though, that's", + "pos": 0.027, + "neu": 0.824, + "neg": 0.149, + "_id": { + "$oid": "6711d47ccd60fca157e5b8cc" + } + }, + { + "text": "Betancourt is a great professor. Explains everything clearly and really help his students. Be advised that this is not an easy class and you'll have to do more work than just understanding what he explains in lectures. Exams are difficult, but he is a good grader.", + "pos": 0.191, + "neu": 0.745, + "neg": 0.064, + "_id": { + "$oid": "6711d47ccd60fca157e5b8cd" + } + }, + { + "text": "Doesn't assign problems or give sample tests, so you have little idea what he's going to ask. Only gives two midterms and a final, so you don't know how well you're doing for weeks. He curves ridiculously, class average was 30-40 but we'll presumably get a regular spread, so ultimately not \"hard\". Could be worse, I suppose.", + "pos": 0.055, + "neu": 0.829, + "neg": 0.116, + "_id": { + "$oid": "6711d47ccd60fca157e5b8ce" + } + }, + { + "text": "He is a good professor. Teaches good. But one thing is that if u slove a wuestion and u have done it correctly like half way thorugh it and ur answer is wrong then u will get Zero (0), No partial Credit for work which you have done correctly. But he is nice and gives better understanding of course. Just need to bit do work. Have a great time.", + "pos": 0.226, + "neu": 0.666, + "neg": 0.108, + "_id": { + "$oid": "6711d47ccd60fca157e5b8cf" + } + }, + { + "text": "Prof Betancourt is an excellent teacher -- at times not entirely clear, but he really cares and wants everyone to fully understand the material before moving to the next topic. He obviously possesses a brilliant mathematical mind, but he sometimes presents topics too theoretically at first, when a simple, practical example would suffice.", + "pos": 0.191, + "neu": 0.782, + "neg": 0.027, + "_id": { + "$oid": "6711d47ccd60fca157e5b8d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47dcd60fca157e5b8d2" + }, + "professor_name": "La Joyce Brookshire", + "rating": 3.3, + "department": "Speech department", + "comments": [ + { + "text": "Dr.Lajoyce Brookshire was an amazing professor. I got an A+ in her class, my first grade was a 70 which was the introduction speech and I thought hey let me just barely breeze past this course barely giving my all. However, I realized if you genuinely take the time to listen to what Dr.Brookshire recommends us to do, you will gaurentee an A grade.", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8d3" + } + }, + { + "text": "Very passionate and enthusiastic about teaching this class. If you do the work the way she asks, easy 100.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8d4" + } + }, + { + "text": "Professor Brookshire is a great teacher, who won't accept anything less than your best. Please keep in mind that her classes although relaxed it is best to take it seriously.", + "pos": 0.397, + "neu": 0.515, + "neg": 0.087, + "_id": { + "$oid": "6711d47dcd60fca157e5b8d5" + } + }, + { + "text": "if you really want learn something choose this class, is challenging but you learn something about it. Needs participation, conduct, energy and paper for your keywords (there is not homework or book)The only thing to pass this class is practice and pay attention.", + "pos": 0.114, + "neu": 0.851, + "neg": 0.035, + "_id": { + "$oid": "6711d47dcd60fca157e5b8d6" + } + }, + { + "text": "Dr Brookshire is a teacher who annoys you when you have them but once you are finished you will grow to appreciate them. She can be real tough and use you as an example but you will learn different strategies to help with your speech. Participation and attendance matters, there are 3/4 speeches and all of them are easy! She tells you everything!", + "pos": 0.173, + "neu": 0.777, + "neg": 0.05, + "_id": { + "$oid": "6711d47dcd60fca157e5b8d7" + } + }, + { + "text": "Professor is hard on her students but she teaches what needs to be taught. Graded on 4 speeches. If you make sure you are prepared you will do fine. She is a tough grader. Comes off aggressive.", + "pos": 0.173, + "neu": 0.715, + "neg": 0.112, + "_id": { + "$oid": "6711d47dcd60fca157e5b8d8" + } + }, + { + "text": "Be prepared to speak. A good professor but if you don't conduct the speech her way, you are in the wrong", + "pos": 0.133, + "neu": 0.705, + "neg": 0.162, + "_id": { + "$oid": "6711d47dcd60fca157e5b8d9" + } + }, + { + "text": "As someone who has taken speech twice, Dr. Brookshire's is much easier than the class I took before. That being said, it is a challenging class if you do not do the bare minimum-- as with all speech classes. There is also almost no homework... just comment on a video every week, and she allows flashcards while presenting. Attendance- vital.", + "pos": 0.102, + "neu": 0.868, + "neg": 0.03, + "_id": { + "$oid": "6711d47dcd60fca157e5b8da" + } + }, + { + "text": "I would like to say that this professor was so kind to me in many ways and also she always wanted me to be successful whenever i start to read out loud in class. My professor always says to me to be confident whenever i read out loud to the class and to not be scared at all. I improve in this class as a speaker and reader since i learned in class.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8db" + } + }, + { + "text": "very helpful, patient and gives good advice.", + "pos": 0.545, + "neu": 0.455, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8dc" + } + }, + { + "text": "Professor Brookshire is amazing! When I first came into the class, I ha major issues talking Infront of people. She helped me get over that and gain new confidence throughout the semester.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8dd" + } + }, + { + "text": "Honestly I didn't find her that difficult, it all just matters in preparation to give speeches. I just would prefer had she used blackboard but that's just a personal statement.", + "pos": 0.096, + "neu": 0.849, + "neg": 0.055, + "_id": { + "$oid": "6711d47dcd60fca157e5b8de" + } + }, + { + "text": "Speech heavily matters, and participation are needed for the course.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8df" + } + }, + { + "text": "La Joyce Brookeshire, is an average profesor, they create a good environment and motivates you to speak more. Only critic I could give is she has a strong personality.", + "pos": 0.233, + "neu": 0.701, + "neg": 0.067, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e0" + } + }, + { + "text": "La Joyce is a colorful person. She gives nice feedback after a speech. She is not the worst teacher, but I respect the teaching style, even if i thought it was a bit annoying.", + "pos": 0.196, + "neu": 0.719, + "neg": 0.085, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e1" + } + }, + { + "text": "Not the worst professor just occasionally confusing and sometimes gets off topic. Overall a good course to take and easy just be ready to present speeches in front of the class.", + "pos": 0.296, + "neu": 0.663, + "neg": 0.041, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e2" + } + }, + { + "text": "Brookshire is an ok professor. She id rude sometimes and gets bothered by the little things. She is also a very tough grader when it comes to the 5 speeches. I personally thought I did really well in the class and she gave me a grade I did not expect.", + "pos": 0.081, + "neu": 0.794, + "neg": 0.125, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e3" + } + }, + { + "text": "She's a very solid choice if you're looking to take this class. She is a little strict, but that's only because she wants you to be at your best. There are five speeches that your grade is based on and as long as you practice you should be fine. Also try to avoid saying, \"um\" and \"so\". Overall a very great professor and a decent pick for Speech111.", + "pos": 0.191, + "neu": 0.775, + "neg": 0.034, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e4" + } + }, + { + "text": "She's a decent speech professor, but I wish I had listened to the other reviewers because she made a lot of our class feel uncomfortable with her nosy questions and unwanted comments regarding both academic and personal things. She also has a bad habit of inserting her opinion about health and science whenever she can because she's a doctor.", + "pos": 0.051, + "neu": 0.797, + "neg": 0.152, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e5" + } + }, + { + "text": "Brookshire is very stern and has a HUGE personality. Overall, she does not care how you feel and its her way or the highway. She is a tough grader and only gives 5 assignments which is ridiculous. She has no structure and she is plain annoying. Avoid her at all cost.", + "pos": 0.05, + "neu": 0.724, + "neg": 0.226, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47dcd60fca157e5b8e8" + }, + "professor_name": "Jack Levinson", + "rating": 3.4, + "department": "Sociology department", + "comments": [ + { + "text": "There are only two papers written throughout the whole semester based only on class readings about Marx and Durkheim. Just beware that you won't be receiving feedback on the papers. And final grades won't be available until after the end of the semester.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8e9" + } + }, + { + "text": "I personally really enjoyed having Professor Levinson. It is true he didn't update grades, so it was hard to know how you were doing in class. However, he was super cool, content was very enlightening, asked the class a lot if they had questions about assignment & moved the due dates if students ever needed. Solid class!", + "pos": 0.259, + "neu": 0.717, + "neg": 0.024, + "_id": { + "$oid": "6711d47dcd60fca157e5b8ea" + } + }, + { + "text": "Do NOT take this professor for online classes. There are no assignments on the syllabus, he adds them randomly throughout the semester with vague instructions. His \"lectures\" are him talking for an hour straight with no structure. Despite the effort put in, you will not be graded fairly. One of the worst professors I have ever experienced.", + "pos": 0.03, + "neu": 0.815, + "neg": 0.155, + "_id": { + "$oid": "6711d47dcd60fca157e5b8eb" + } + }, + { + "text": "I am extremely disappointed in Professor Levinson's way of conducting class this semester. The remote learning experience with him made the class structure way difficult and complicated than it needed to be. There were no rubrics or assignments posted along with an unclear syllabus barely referred to or noted. Many students were unfairly graded.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d47dcd60fca157e5b8ec" + } + }, + { + "text": "Unclear grading criteria and awkward classes. He rambles and goes off-topic. Assignments were assigned late throughout the semester. 2 finals due the same day and the first assignment was given to us in Novemeber! Worst part is that he gave out random grades mostly F's and D's. Extremely harsh for someone without a rubric or clear class structure.", + "pos": 0.039, + "neu": 0.794, + "neg": 0.167, + "_id": { + "$oid": "6711d47dcd60fca157e5b8ed" + } + }, + { + "text": "This professor needs to seriously work on his teaching abilities. Head my warning: If you take his class you will not know how you are progressing throughout the semester because he does not grade your work until the end. His class was super boring and there were no notes, he would just ramble.", + "pos": 0.096, + "neu": 0.764, + "neg": 0.14, + "_id": { + "$oid": "6711d47dcd60fca157e5b8ee" + } + }, + { + "text": "CCNY must investigate his teaching abilities. He had given students who have given in all of their assignments F's and WU's. Extremely unprofessional in class, goes on tangents and the assignments are unclear probably written by a 5 year old. Three assignments, no rubric & extremely harsh grader. Very unclear and randomly grades students. The worst", + "pos": 0.029, + "neu": 0.717, + "neg": 0.254, + "_id": { + "$oid": "6711d47dcd60fca157e5b8ef" + } + }, + { + "text": "A syllabus with no grading policy. Three papers that are not graded or returned. The final grade or your progress is a mystery until the end of the semester. No legitimate college course should have you in suspense on your class progress. To add insult to injury, the class is boring. CCNY needs to review this professors practices.", + "pos": 0.081, + "neu": 0.735, + "neg": 0.184, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f0" + } + }, + { + "text": "really nice guy, not so great professor. online at least, he hasn't graded a single thing, so you may be writing papers blind even in finals week. also super vague, writes three sentences on the document for paper expectations which you'll get nothing from in terms of what to do. a little snooty for his own good, and too lazy to be that specific.", + "pos": 0.143, + "neu": 0.72, + "neg": 0.138, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f1" + } + }, + { + "text": "I admire his lectures. He is such a knowledgeable individual. He is so cool too so down to earth, understands humanity and how this world is. So if you have any concern talk to him he understands", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f2" + } + }, + { + "text": "Many of these comments are inaccurate/was not my experience. I took about 3 classes with Levinson and he is great. He really cares about his students and really tries to help them understand the topic. His readings are short but interesting & if the reading is more than 5 pages, he lets his students know. He never gave us tests, just 2 short papers", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f3" + } + }, + { + "text": "Prof. Levinson was hands down one of my favorite professors ever. Doesnt count attendance, interesting readings, intriguing conversations, and overall just learned a lot. 10/10 would recommend! Taking him again for another class next semester", + "pos": 0.145, + "neu": 0.799, + "neg": 0.056, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f4" + } + }, + { + "text": "Chooses who to help and very unprofessional. He looks down anyone who talks about psychology and has a very sarcastic way about people who doesn't agree with him.", + "pos": 0.078, + "neu": 0.692, + "neg": 0.23, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f5" + } + }, + { + "text": "Makes complex topics understandable", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f6" + } + }, + { + "text": "boring but easy A!!!", + "pos": 0.564, + "neu": 0.239, + "neg": 0.197, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f7" + } + }, + { + "text": "AWESOME isn't even the word. TAKE HIM! He is fantastic!", + "pos": 0.53, + "neu": 0.47, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f8" + } + }, + { + "text": "Levinson is awesome! Cares about his students and is willing to help you as much as you can. Does give alot of readings, but will make sure you fully understand them. He is funny. Class is NOT boring. I would def recommend him!", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8f9" + } + }, + { + "text": "Great professor but there's plenty of reading. He assigns articles that are 10-15 pages each nd usually makes you read 3 of them for the next class. Those articles will be on the exam so make sure to familiarize yourself with the article. During the class he discusses the articles he assigned.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d47dcd60fca157e5b8fa" + } + }, + { + "text": "Soc Drugs and Society also Soc Health and Illness great classes. No Books just PDFs. Whatever is said in class and n the readings will be on the exam. Which will be repeated numerous times in numerous classes. His exams are topic based so know the topics and articles to reflect that topic you'll be fine.", + "pos": 0.094, + "neu": 0.828, + "neg": 0.078, + "_id": { + "$oid": "6711d47dcd60fca157e5b8fb" + } + }, + { + "text": "Runs the class like a bad book club. Somehow, this sociology professor deigns to attempt to teach NY-related literature, prefacing most points he makes with \"I'm no expert, but...\" Weekly responses to the reading, but never got any grade. Overall, didn't have to do much, but I didn't enjoy the class at all.", + "pos": 0.03, + "neu": 0.844, + "neg": 0.126, + "_id": { + "$oid": "6711d47dcd60fca157e5b8fc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47ecd60fca157e5b8fe" + }, + "professor_name": "Modou Diene", + "rating": 1.9, + "department": "Mathematics department", + "comments": [ + { + "text": "I've seen a lot of people dislike this professor, but I had him during an accelerated 190 Math Course and honestly he was one of the best professors I've had. He gave me really good tips that I still use now for math and overall he was very helpful in my learning in math in CCNY. He's can seem intimidating but he means well.", + "pos": 0.25, + "neu": 0.682, + "neg": 0.068, + "_id": { + "$oid": "6711d47ecd60fca157e5b8ff" + } + }, + { + "text": "Not understanding/flexible. Rude at times. Not helpful in any kind of way.", + "pos": 0.167, + "neu": 0.675, + "neg": 0.157, + "_id": { + "$oid": "6711d47ecd60fca157e5b900" + } + }, + { + "text": "He's a really tough grader and your grade is depended on those two tests. No curves, no drop. Make sure you do all the homework cuz it counts as 10 percent of your grade. Good luck to you all who are taking it with him. If you do pass, then you have what it takes to pass any classes by now.", + "pos": 0.17, + "neu": 0.773, + "neg": 0.057, + "_id": { + "$oid": "6711d47ecd60fca157e5b901" + } + }, + { + "text": "Worst Professor ever!! He does not care about anything other than getting his paycheck. Your fate will only depend on exam grades. The class and material is fine but the professor is the problem. I am an A student and this is the only class I have ever failed in my life. Do Not Take This Professor!!", + "pos": 0.021, + "neu": 0.777, + "neg": 0.202, + "_id": { + "$oid": "6711d47ecd60fca157e5b902" + } + }, + { + "text": "This is the worst Professor I have ever taken in my life. He does not care about the students. The tests were easy but he makes it hard to pass. Even if you get the answer right he will mark your answers wrong if you used a different method. I don't see how anyone could pass just by exam grades if you are not a good test taker. It is unbelievable.", + "pos": 0.051, + "neu": 0.787, + "neg": 0.162, + "_id": { + "$oid": "6711d47ecd60fca157e5b903" + } + }, + { + "text": "Out of all the classes that I have taken at CUNY, he is by far the worst professor. Attendance is mandatory. He will go over the material, that you have to learn yourself, and will not allow you to ask questions without making you feel stupid for asking them. Don't recommend.", + "pos": 0.022, + "neu": 0.785, + "neg": 0.193, + "_id": { + "$oid": "6711d47ecd60fca157e5b904" + } + }, + { + "text": "please if you see this do not take this class. he offers 0 flexibility for students. you cannot drop an exam, make up an exam and he does not curve. you fate depends on 2 tests which he will grade terribly. it does not matter if you reach the correct answer he will find a reason to take half ur points off. he is terrible.", + "pos": 0.104, + "neu": 0.79, + "neg": 0.106, + "_id": { + "$oid": "6711d47ecd60fca157e5b905" + } + }, + { + "text": "grades like his life depends on it. goes very fast and has no mercy to his students.", + "pos": 0.127, + "neu": 0.765, + "neg": 0.108, + "_id": { + "$oid": "6711d47ecd60fca157e5b906" + } + }, + { + "text": "CALCULUS 1(MATH 201): He does not care if you are failing. He is strong-willed against his ideas of \"if you have the notes, you should be fine.\" He does not curve, he does not give makeups. Understanding is teaching can be very difficult, especially for those who already struggle in math.", + "pos": 0.031, + "neu": 0.782, + "neg": 0.187, + "_id": { + "$oid": "6711d47ecd60fca157e5b907" + } + }, + { + "text": "I'm honestly shocked by the reviews that he gets on here. He is an amazing professor who makes sure that you understand the lesson. I took his acceleratedMATH190 course and while yes he does go fast,it's because he has to. In addition to this,this course assumes that you have seen this stuff before so it should be a review. Hope I get him forMAT201", + "pos": 0.196, + "neu": 0.773, + "neg": 0.031, + "_id": { + "$oid": "6711d47ecd60fca157e5b908" + } + }, + { + "text": "Mr.Diene is a okay teacher/professor. He goes pretty fast in the class/lectures, but that may have been due to the fact it was a cram course. He makes a couple of jokes in every lesson. He goes through the material then makes us do it ourselves, & comes over to help if we ask.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b909" + } + }, + { + "text": "He goes too quick, doesn't explain things too clear. Very few topics are in the actual final exam", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b90a" + } + }, + { + "text": "The experience was not great, explains the lessons too fast, and Final exam was nothing like what everyone studied despite of the teacher sending a video to study and 2 samples review sheets. Very harsh when grading.", + "pos": 0.0, + "neu": 0.798, + "neg": 0.202, + "_id": { + "$oid": "6711d47ecd60fca157e5b90b" + } + }, + { + "text": "I REGRET Not dropping this class. Such a waste of money", + "pos": 0.0, + "neu": 0.587, + "neg": 0.413, + "_id": { + "$oid": "6711d47ecd60fca157e5b90c" + } + }, + { + "text": "Awful JUST AWFUL", + "pos": 0.0, + "neu": 0.129, + "neg": 0.871, + "_id": { + "$oid": "6711d47ecd60fca157e5b90d" + } + }, + { + "text": "SAVE YOURSELF.", + "pos": 0.762, + "neu": 0.238, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b90e" + } + }, + { + "text": "Just Don't take him, if you don't want to suffer, almost half of my classmates dropped from the class. Goes too fast on lectures and grades the paper as if his life depended on it.", + "pos": 0.077, + "neu": 0.89, + "neg": 0.033, + "_id": { + "$oid": "6711d47ecd60fca157e5b90f" + } + }, + { + "text": "This class was harder then it had to be. We had 3 exams that basically determined our fate because one of our exams was cancelled. The professors teaching style was inefficient and could be improved if there was more effort made. Also the math department needs to be better coming semesters because more than half the kids dropped from math.", + "pos": 0.127, + "neu": 0.843, + "neg": 0.03, + "_id": { + "$oid": "6711d47ecd60fca157e5b910" + } + }, + { + "text": "His teaching style is ineffective and I wouldn't advise taking this class with him unless you are really good at math and can keep up quickly. The class is also made up of 3 exams, no homework or quizzes so you have to essentially be exceptionally good at math to have a solid standing in this course.", + "pos": 0.125, + "neu": 0.817, + "neg": 0.058, + "_id": { + "$oid": "6711d47ecd60fca157e5b911" + } + }, + { + "text": "Teaches super fast that we had a few lectures that ended 20-30 minutes early. Your grades are determined by 3 exams and a final but I took 2 exams and a final which makes it even harder to pass since you have to remember more topics.", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b912" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47ecd60fca157e5b914" + }, + "professor_name": "Spencer Bastedo", + "rating": 4.6, + "department": "World Civilizations department", + "comments": [ + { + "text": "Easy grader, assignments are short and not too numerous. Maybe relied too heavily on student presentations, but provided good feedback and seemed to genuinely engage with students' work. Made taking summer classes much less of a pain, honestly might be too lenient. Open-minded and knowledgeable, though the course did suffer from feeling rushed.", + "pos": 0.243, + "neu": 0.633, + "neg": 0.124, + "_id": { + "$oid": "6711d47ecd60fca157e5b915" + } + }, + { + "text": "Professor Bastedo was honestly one of the most caring and understanding professors given the circumstances that we are currently in. He was not a tough grader and he gave us readings that led to group discussions. If you are a freshman or a sophomore thinking about taking this course, definitely choose him!!!!", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b916" + } + }, + { + "text": "Nice professor and very flexible on homework", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b917" + } + }, + { + "text": "The readings he assigned were difficult, to me at least. I also didnt understand some of the assignments he gave us at the beginning of the year. However, he is such a kind and understanding professor and you can tell he is passionate about what he does. He seems to doubt his teaching a lot, but I think hes great! Do the work and youll get an A.", + "pos": 0.135, + "neu": 0.82, + "neg": 0.046, + "_id": { + "$oid": "6711d47ecd60fca157e5b918" + } + }, + { + "text": "Professor Bastedo is amazing... he is very understanding and his class is actually fun. However, this man gives A LOT of readings but I'd still take him because he is very helpful and understands. He changed his entire syllabus and told the class to do journal entries and gave everyone an A and he said he wants to give everyone an A . Take him fr.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b919" + } + }, + { + "text": "such a great professor, one of the nicest I've had so far! he gives amazing lectures and keeps you engaged. the readings he assigns are pretty long but reading them is the key to getting good grades on your assignments. highly recommend him!", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b91a" + } + }, + { + "text": "If you don't past his class with at least a B then your definitely not smart because this class is one of the easiest at CCNY. He takes everything as a good answer. He doesn't force anyone to participate but does expect you to read. Just skim through the readings and you will be fine. He is a easy grader. Lecture heavy. I enjoyed listening to him.", + "pos": 0.208, + "neu": 0.771, + "neg": 0.021, + "_id": { + "$oid": "6711d47ecd60fca157e5b91b" + } + }, + { + "text": "He's an understanding guy, but does give a lot of work when it comes to the readings. He gives feedback on your work and really takes the time to read what you've given him. He also tried to make the class fun to prevent people from falling asleep which is something I really appreciated. Put in the work for his class! He will help you if you ask.", + "pos": 0.181, + "neu": 0.795, + "neg": 0.024, + "_id": { + "$oid": "6711d47ecd60fca157e5b91c" + } + }, + { + "text": "This professor use to be a none stress class but this semester he was like any other hard professor. Need to work hard to get a A , not a easy class at all. Brings other topic to this class that does not suppose to be part of world history. If you love history and just would like a class that just about history , dont take this guy. Not the same", + "pos": 0.164, + "neu": 0.762, + "neg": 0.074, + "_id": { + "$oid": "6711d47ecd60fca157e5b91d" + } + }, + { + "text": "He's so down to earth. You can tell he is really passionate about this. He's also a grad student so he's very understanding. Gives minimal hw and is a lot of reading but its not bad. One of the best professors I have ever had.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b91e" + } + }, + { + "text": "Really great guy, changed his way of teaching this semester. Made it a bit more difficult then the past semesters. He quizzes you on the reading if the Marjory do not read his lessons. He does give a lot to do and read, keep in mind the reading sometimes are 25 pages long. Midterm was a 5 to 6 pages , 4 questions to answer which he did not go over.", + "pos": 0.058, + "neu": 0.906, + "neg": 0.037, + "_id": { + "$oid": "6711d47ecd60fca157e5b91f" + } + }, + { + "text": "By far one of the nicest professors at CCNY. His lectures are interesting and you can tell he's really passionate about what he does. He's INCREDIBLY understanding and his papers are actually fun to write! He gives the exam questions before the actual exam and goes over each one. I would love to take another class with him. Such a nice guy.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b920" + } + }, + { + "text": "Professor Bastedo is a very passionate and genuine professor. He teaches WCIV with dedication and checks with the class to make sure they understand the material. If you show up, do the few writing assignments, participate, and take concise notes, you'll pass the class with an A. He's also available outside of class or via email, so utilize this!", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b921" + } + }, + { + "text": "Honestly amazing. He is one of the most understanding and passionate professors at CCNY. He really loves what he teaches and provokes interesting thoughts and conversations. DEF RECOMMEND", + "pos": 0.467, + "neu": 0.481, + "neg": 0.053, + "_id": { + "$oid": "6711d47ecd60fca157e5b922" + } + }, + { + "text": "HE IS A GIFT FROM GOD. TAKE HIM IF YOU CAN. he is very understanding and is dedicated to history. 10/10 would recommend.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b923" + } + }, + { + "text": "He's a very good professor. He talks a lot but its very informative. he does give a lot of readings but they are mostly interesting. Don't start conversations during his class because he hates it. He's an easy grader and very understanding.", + "pos": 0.185, + "neu": 0.74, + "neg": 0.075, + "_id": { + "$oid": "6711d47ecd60fca157e5b924" + } + }, + { + "text": "One of the best professors CCNY has to offer. Two easy papers, a midterm, and final. He is always there to help and is willing to postpone assignments for you if you still need more time. He is amazing!", + "pos": 0.279, + "neu": 0.683, + "neg": 0.038, + "_id": { + "$oid": "6711d47ecd60fca157e5b925" + } + }, + { + "text": "He was an amazing Professor. He clearly wanted all students to do good and always tried to make it easy. His lectures are also very interesting and made me very interested in the subject.", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b926" + } + }, + { + "text": "This is my favorite professor at CCNY so far. Spencer is also a college student and definitely accommodates to his students because of that. If you show up and participate, do the 2 papers, and pay attention you will pass his fair exams and get an A. Mr. Bastedo gives really nice feedback and tries really hard to make his class interesting.", + "pos": 0.192, + "neu": 0.765, + "neg": 0.043, + "_id": { + "$oid": "6711d47ecd60fca157e5b927" + } + }, + { + "text": "Professor Bastedo is really amazing. You will learn a lot from him! Classes are fun and he shows some cool movies and clips. It is even more fun when everyone participates. He answers his emails, he clarifies everything, and he understands your personal needs. He is really such a great professor and I would definitely take more classes with him!", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b928" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47ecd60fca157e5b92a" + }, + "professor_name": "Esteban Withrington", + "rating": 4.7, + "department": "Philosophy department", + "comments": [ + { + "text": "Such a good professor. Takes the time to help everyone understand the material and offers extra credit if needed. If you don't pay attention then it is extremely easy to fall behind but if you listen the course should be easy.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b92b" + } + }, + { + "text": "Prof Withrington was absolutely amazing! He provided countless exercises to help reinforce concepts. He is very sweet and cares abt students. There is no way you can't pass. He provided a cheat sheet for both final and midterm. Unfortunately, he is no longer teaching this course, but I was fortunate to have him before he left.", + "pos": 0.192, + "neu": 0.704, + "neg": 0.103, + "_id": { + "$oid": "6711d47ecd60fca157e5b92c" + } + }, + { + "text": "He is soo great! I have a new love for philosophy now. He is so kind, helpful, intelligent, and clear. He really encourages you to think outside the box and expand your mind, just like philosophy should be taught. He has a true passion for philosophy and it definitely shows through his amazing teaching! You will miss out if you don't take him!!", + "pos": 0.46, + "neu": 0.523, + "neg": 0.017, + "_id": { + "$oid": "6711d47ecd60fca157e5b92d" + } + }, + { + "text": "He is by far one of the BEST PROFESSORS at CCNY! Only 2 exams and 2 papers. The exams are from the handouts and review questions he gives in class. He goes over the paper requirements clearly and gives you a chance to write a draft. There is no other hw besides the readings to do before the class. His teaching style is great!", + "pos": 0.19, + "neu": 0.781, + "neg": 0.029, + "_id": { + "$oid": "6711d47ecd60fca157e5b92e" + } + }, + { + "text": "He is the kindest, most caring professor i have ever had. He is very nice and sweet. His lectures are very interesting and alot more interesting than other required classes i had to take. TAKE HIM. truly amazing.", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b92f" + } + }, + { + "text": "Professor Withrington is probably the best professor you can get for a philosophy course. He only gives out two exams and two papers. The only homework he gives are the readings. The lectures can get really boring but overall if you read the book you should be good to go.", + "pos": 0.117, + "neu": 0.851, + "neg": 0.033, + "_id": { + "$oid": "6711d47ecd60fca157e5b930" + } + }, + { + "text": "He is such a nice guy, genuinely cares about the students, very good lectures, not at all boring for a mandatory course. He is really knowledgeable, and makes it very easy for students to understand. TAKE HIM", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b931" + } + }, + { + "text": "Professor Withrington is truly a gem in CCNY. He's a philosopher at heart, and he extends that knowledge to his students - even beyond what's in the assigned readings. He plays the devil's advocate often, only to push his students to think beyond first impressions. He's one of the best, and you won't regret taking him!", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b932" + } + }, + { + "text": "He's a great professor. 2 exams (midterm and final) and 2 straight forward essays. His lectures can be a bit long and hard to pay attention, but all you need is his handouts and the study guides. Questions come straight from those two things (multiple choice tests). Overall, it was a great class.", + "pos": 0.195, + "neu": 0.765, + "neg": 0.039, + "_id": { + "$oid": "6711d47ecd60fca157e5b933" + } + }, + { + "text": "Really great professor, very laid back and often times, very funny.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b934" + } + }, + { + "text": "This was my final semester in CCNY and luckily for me I had the opportunity to have Professor Withrington. 2 Exams (Midterm & Final) and 2 Papers, each worth 25% of the grade. Attendance mandatory. Gives handouts and lectures. If you fail the class you clearly didnt pay attention. Professor stays afterwards if you need help and emails. Recommended", + "pos": 0.25, + "neu": 0.701, + "neg": 0.049, + "_id": { + "$oid": "6711d47ecd60fca157e5b935" + } + }, + { + "text": "He's an amazing professors. If you want easy A, then make sure you have all the handouts given in class by him, and answer the study guide from the handouts. He gives two exams from the study guides. Also two essays which he will discuss in details in class. Would take him again.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b936" + } + }, + { + "text": "STUDY his review sheets and you will have a guarantee A in this class. Follow his guidelines for his essays as well. He gives 2 essays and 2 tests (midterm and final)", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b937" + } + }, + { + "text": "He's an amazing and understanding professor to have, even if his lectures are long. He explains the concepts clearly with his handouts and explanations. There are two papers, and two 50 m.c. exams both in which are not cumulative. The only downside is that he taught this class on Saturday mornings. Because of this, he's very lenient with attendance", + "pos": 0.135, + "neu": 0.835, + "neg": 0.03, + "_id": { + "$oid": "6711d47ecd60fca157e5b938" + } + }, + { + "text": "Lectures were long and sometimes boring. Readings are a must. Overall, very passionate about Philosophy. Friendly and happy to explain topics even further if needed. (2) 4-5 page essays. (2) 50 question exams. Final does not include the topics from the beginning (Only includes the topics after the midterm.)", + "pos": 0.183, + "neu": 0.777, + "neg": 0.04, + "_id": { + "$oid": "6711d47ecd60fca157e5b939" + } + }, + { + "text": "He is one of my favorite professors. He is passionate about what he's teaching and very professional. Only two essays, one midterm and one final exam which are 50 multiple choices. Lectures handed out for every topic are very helpful. Really enjoy his class and it inspired me a lot.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b93a" + } + }, + { + "text": "Great class. This professor gave only two essays, a midterm, and a final. Lectured through the entire class period. He's funny, easy to talk to, and used his office hours to help his students. You need to do a LOT of work on your own though, but what else do you expect. Do the readings! Pay attention in class! and you'll pass!", + "pos": 0.135, + "neu": 0.841, + "neg": 0.024, + "_id": { + "$oid": "6711d47ecd60fca157e5b93b" + } + }, + { + "text": "This professor is very passionate about Philosophy. This is a course that should be required for individuals to learn how to defend their views and opens them up to consider opposing views. He presents the material in a clear way that will keep you awake during this long Saturday class. Read the material before class and take note of main points.", + "pos": 0.096, + "neu": 0.904, + "neg": 0.0, + "_id": { + "$oid": "6711d47ecd60fca157e5b93c" + } + }, + { + "text": "This was a very hard class for me because he was not concise with this teaching. I got very lost so eventually I had to drop the class.", + "pos": 0.0, + "neu": 0.797, + "neg": 0.203, + "_id": { + "$oid": "6711d47ecd60fca157e5b93d" + } + }, + { + "text": "Professore Withrington was a good professor overall. His lectures were long and a bit boring. Try to not miss any classes. 2 papers and i midterm and a final.", + "pos": 0.133, + "neu": 0.796, + "neg": 0.07, + "_id": { + "$oid": "6711d47ecd60fca157e5b93e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47fcd60fca157e5b940" + }, + "professor_name": "Stewart Russell", + "rating": 4.4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Russell is a relaxed and a easy grader. As a non-engineering major, I find this class to be very easy. Make sure you take a lot of notes in class and try to practice Solidworks every week. He has a group project, final, midterm, and quizzes every week. His quizzes are very easy if you pay attention in class. Final and midterm are similar. I got A-.", + "pos": 0.194, + "neu": 0.788, + "neg": 0.018, + "_id": { + "$oid": "6711d47fcd60fca157e5b941" + } + }, + { + "text": "Prof. Russell is a funny guy & is very laid-back and lenient. There are quizzes, a midterm, a group project, & a final. The midterm & final are similar - you have to do a part on Solidworks. Half the semester was lecture-based, while the other half was spent working on the reverse engineering project. Seems to favor female students unfortunately.", + "pos": 0.118, + "neu": 0.846, + "neg": 0.036, + "_id": { + "$oid": "6711d47fcd60fca157e5b942" + } + }, + { + "text": "Interesting class. You will take 4 to 6 quizzes and the 2 lowest quizzes will be dropped. One midterm and one final. Last final group project is 20 percent of your grade but it is doable. I think russell is an amazing professor and trust me, he KNOWS his stuff, but at times, he isn't very clear when teaching", + "pos": 0.163, + "neu": 0.767, + "neg": 0.07, + "_id": { + "$oid": "6711d47fcd60fca157e5b943" + } + }, + { + "text": "Very basic statistics course. You'll learn about the different ways to interpret data and samples. Doesn't ever get too complicated. You'll become very familiar with the bell curve. His lectures aren't always clear, but if you look up the topics on your own, or ask for clarification, it should make sense. Take the class with him if you have to.", + "pos": 0.0, + "neu": 0.974, + "neg": 0.026, + "_id": { + "$oid": "6711d47fcd60fca157e5b944" + } + }, + { + "text": "He is entertaining and very laid-back. He gives quizzes, but they're easy if you have notes from the previous lecture. He leaves you to learn SolidWorks on your own, but he will help (w/o being snarky) if you go to him. You will learn enough to feel like the time was worth it, though maybe not a lot compared to other people. Easy A for most.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b945" + } + }, + { + "text": "Russell is extremely helpful. His door is always open for you. This is a class that you would love but find complicated at points when it comes to learning about the SolidWorks software. He loves to say \"a million points for everyone.\"", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b946" + } + }, + { + "text": "He takes attendance quizzes but they're always easy. They're open note and always on the previous lecture. The midterm is easy, and the final is easy. Come to class, learn how to use SolidWorks, and get the final group project completed, and an A awaits.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b947" + } + }, + { + "text": "Very good professor. Keeps the class interested. Lectures are focused on interpreting Engineering Drawings. The CAD software (SolidWorks) is pretty much self taught but since the midterm, final project, and final all require it, you'll become an expert regardless. Quizzes keep you on top of your material but it's simple as long as you review.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b948" + } + }, + { + "text": "Honestly, one of my favorite professors so far. He's corny to a point of hilarity. Does a good job explaining the course material - so long as you pay attention. Most of solid works you have to learn by yourself, but that's what your book is for. It's an easy class, all you have to do is put some work into it, and you'll get good grades for sure!", + "pos": 0.228, + "neu": 0.757, + "neg": 0.015, + "_id": { + "$oid": "6711d47fcd60fca157e5b949" + } + }, + { + "text": "Russell is the best!!!!! I love him. He tries to make every class fun. . He is a great professor and will always answer your questions.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b94a" + } + }, + { + "text": "I took Solidworks with Prof. Russell over the summer, since my home school didn't offer it that session. I am glad I did, because he did a great job keeping an upbeat atmosphere, and a made it easy to get a good grade, with quizzes and a group project. He won't spoonfeed you on how to use the software, but is always willing to answer questions.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b94b" + } + }, + { + "text": "Hilarious guy and really easy.", + "pos": 0.663, + "neu": 0.337, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b94c" + } + }, + { + "text": "Million Points to Everyone! He says this to his students in each quiz day. Actually, he does give million points to everyone. Great teacher, amazing grader, and a good person. Hot!", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b94d" + } + }, + { + "text": "great teacher. Really nice and easy going guy, made the class really enjoyable.", + "pos": 0.601, + "neu": 0.399, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b94e" + } + }, + { + "text": "Sooooooooooooooooo hot! Great teacher too.", + "pos": 0.523, + "neu": 0.477, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b94f" + } + }, + { + "text": "Excellent professor. Teaches with clarity. Could sometimes by corny, but a really funny guy. He isn't mean, but he won't tolerate talking when he is teaching.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b950" + } + }, + { + "text": "Bright person and amazing professor with great teaching skills. I actually had classes of Statistics before, nevertheless I was not bored nor repeating same stuff again. I actually managed to finally link theoretical statistics and real life uses for it, which is awesome. Many thanks.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b951" + } + }, + { + "text": "I would like to Thank you.I would also like to share that at the end of the Final Project I have actually learnt a lot in terms of MIS and I understand how researches are conducted which was one of my wishes with which I started the course.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b952" + } + }, + { + "text": "Very helpful and clear explaining professor. You'll have to use a textbook a lot, and attend to quizzes. At the end of the semester he will help you with the final project a lot, if you couldn't get something.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b953" + } + }, + { + "text": "He is a really funny man and genuinely cares about his students' level of understanding. He is also very helpful and good to talk to if you need guidance in the steps to take in your major or otherwise.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b954" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d47fcd60fca157e5b956" + }, + "professor_name": "Peyman Honarmandi", + "rating": 4.1, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Professor Honarmandi was a very good professor that wanted to make sure his students understood concepts. He encouraged questions and made sure you didn't feel wrong for asking them. Materials was a very difficult class to take over the summer, since there are so many concepts yet he was really helpful and clear. Take if you actually want to learn.", + "pos": 0.272, + "neu": 0.69, + "neg": 0.038, + "_id": { + "$oid": "6711d47fcd60fca157e5b957" + } + }, + { + "text": "He's a nice guy but lacks industry experience and is unreliable as a professor. His grading criteria is completely arbitrary - he does not follow the rubric he gives you. Your effort/work and your final grade has no correlation. The main reason to choose him is that he may let you pick your own project. Don't pick a bad one.", + "pos": 0.087, + "neu": 0.871, + "neg": 0.043, + "_id": { + "$oid": "6711d47fcd60fca157e5b958" + } + }, + { + "text": "What is \"Machine Design\" about in this class? Nothing more than some basic discussions from our curriculum where we have had taken in our previous courses. Nothing really new in this class, as the professor was trying to make it complicated in order to look different. He is just nice in terms of responding to you as \"Hello\" and \"Bye\"! Not mature.", + "pos": 0.047, + "neu": 0.917, + "neg": 0.036, + "_id": { + "$oid": "6711d47fcd60fca157e5b959" + } + }, + { + "text": "Confusing and propagated guidelines, error repetition, a not clear project schedule, and at the end, I did not get what was the main point of taking this course. Just waste of time? But the only thing I could say is that he tries to show his respect to you. He may change his method to make it something fruitful for the student. Hope he would!", + "pos": 0.112, + "neu": 0.796, + "neg": 0.092, + "_id": { + "$oid": "6711d47fcd60fca157e5b95a" + } + }, + { + "text": "For the Senior Design project, I can certainly say that he is not a great experimentalist and hands on-oriented project holder. Very selfish, but tries to show respect. You will not get into almost any real details of the work: why we are taking this course? No strong connection with the industry and promising ideas to see if this course will help.", + "pos": 0.171, + "neu": 0.725, + "neg": 0.104, + "_id": { + "$oid": "6711d47fcd60fca157e5b95b" + } + }, + { + "text": "In Machine Design with Professor Honarmandi you will learn so much. The catch is that there is homework due every week along with two exams throughout the semester. All exams are open notes, but be sure to prepare yourself as you will need to understand the concepts and the ideas of the class. The final exam is very heavily weighted and takes a lot", + "pos": 0.045, + "neu": 0.955, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b95c" + } + }, + { + "text": "He was just writing and we were Just writing with him without being understanding. Exams and quizzes are similar to homework so we felt the life easy but his grading was unfair and tough and weights a lot on final solution. he didnt let us know our grades until the semester finished and that wasnt good. No software like Matlab to apply. No learn.", + "pos": 0.093, + "neu": 0.721, + "neg": 0.186, + "_id": { + "$oid": "6711d47fcd60fca157e5b95d" + } + }, + { + "text": "Professor Peyman is a gift to CCNY students. He is unlike any professor in the ME department. He devotes tons of time to his class, simplifies lectures so EVERYONE understands, and most importantly cares about his students.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b95e" + } + }, + { + "text": "He is an excellent professor. He simplifies everything and like to get the class engaged. Nevertheless, a tough teacher. I recommend taking him if you want to understand the topic rather than just get a grade. I screwed up on the 1st exam but managed to get an ok grade. Decent curve 80 A and 70B etc. Test questions are straight from the book!", + "pos": 0.197, + "neu": 0.757, + "neg": 0.046, + "_id": { + "$oid": "6711d47fcd60fca157e5b95f" + } + }, + { + "text": "He is one of the best at Grove. If I could take him for every engineering course I would. He is incredibly smart, but does not make students feel stupid when they ask questions. His lectures were very very good. He would Lecture from a power point, but then do multiple problems on the board. No surprises. Test for understanding", + "pos": 0.127, + "neu": 0.735, + "neg": 0.138, + "_id": { + "$oid": "6711d47fcd60fca157e5b960" + } + }, + { + "text": "Amazing professor. Really cares about the education of his students. He is very knowledgeable of the material and will try to explain in a way that makes sense. He'll even do little in-class demonstrations by throwing stuff around to see the physics of it. Fair exams, fair grading, HE CURVES USING STANDARD DEVIATION, would take again in a heartbeat", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b961" + } + }, + { + "text": "This has to be one of the best professors in the Mechanical Engineering department. He is clear and easy to understand, even with his accent. If you attend class and pay attention you will actually learn the material, and if you pay special attention to the practice problems done in class and do your homework, you should obtain a decent grade.", + "pos": 0.172, + "neu": 0.751, + "neg": 0.076, + "_id": { + "$oid": "6711d47fcd60fca157e5b962" + } + }, + { + "text": "He's a very good professor. But, it doesn't necessarily mean the class is easy. Paying attention in class is mandatory and doing the homework. You should be fine if you do these two things.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b963" + } + }, + { + "text": "Highly recommended! One of the best I've had so far in the ME department. He is clear and understandable, and really makes sure students understand the material. If you have the chance definitely take him!!", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b964" + } + }, + { + "text": "He is by far one of the best professors in the ME dept. Do all the hw and pay attention to all sample problems he does on the board as he tends to bring them back on quizzes or exams. Good luck on the class.", + "pos": 0.186, + "neu": 0.738, + "neg": 0.076, + "_id": { + "$oid": "6711d47fcd60fca157e5b965" + } + }, + { + "text": "Very helpful professor. Made subject interesting and comprehending. Requires a lot of work. If you willing to put in the time to learn and do the work the grade will come as his tests are very similar to the homework. Just do keep in mind he is a lot of work but one of the nicest professors at CCNY engineering department", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d47fcd60fca157e5b966" + } + }, + { + "text": "He's very student friendly and willing to help. Exams are basically what you did on the HW. Hard class, and lot work. Do not do the project in the last minute.", + "pos": 0.174, + "neu": 0.787, + "neg": 0.039, + "_id": { + "$oid": "6711d47fcd60fca157e5b967" + } + }, + { + "text": "Nice guy and very good professor. Once of the best in city college who actually cares about his students. I failed his class once (my fault of course) but hes still one of the best ones", + "pos": 0.304, + "neu": 0.612, + "neg": 0.084, + "_id": { + "$oid": "6711d47fcd60fca157e5b968" + } + }, + { + "text": "Class is tough. Try to do as many problems as you can. Not all problems are alike. Do the homework and you will almost always do good on tests/quizes. He does go really fast near the end so you have to learn the stuff on your own at some point.", + "pos": 0.089, + "neu": 0.835, + "neg": 0.076, + "_id": { + "$oid": "6711d47fcd60fca157e5b969" + } + }, + { + "text": "If you do the homeworks you can ace the exams. Sometimes the class can get boring, but try not to fall asleep/come late because he will pick you out. He is always available during his office hours and sometimes even after 5.", + "pos": 0.0, + "neu": 0.961, + "neg": 0.039, + "_id": { + "$oid": "6711d47fcd60fca157e5b96a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d480cd60fca157e5b96c" + }, + "professor_name": "Andre Ragnauth", + "rating": 3.7, + "department": "Science department", + "comments": [ + { + "text": "Terrible professor. wasn't sure if i should be abusing drugs or shouldn't be abusing drugs by the end of the class. He was also high every class. Not worth the trouble.", + "pos": 0.12, + "neu": 0.633, + "neg": 0.246, + "_id": { + "$oid": "6711d480cd60fca157e5b96d" + } + }, + { + "text": "This class is a great GPA Booster. Would recommend his class to any of my peers.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b96e" + } + }, + { + "text": "I'm really confused, I got mid-70s on all three online exams and got an 81 on the final, but I just checked my grades and apparently got an A+? I'm shook but I'm not gonna complain lol If the prof just gives As at the end of the semester then take him but I swear I've never heard about him doing this before, no guarantees it'll happen again.", + "pos": 0.035, + "neu": 0.825, + "neg": 0.14, + "_id": { + "$oid": "6711d480cd60fca157e5b96f" + } + }, + { + "text": "I never went to this class, never spent my time learning this course. I did nothing but searching google the answers when I was taking the two take home quizzes and the final, they are all multiple choices. What is interesting is I don't even know what's the gender of my teacher, and what does he/she look like. Finally, I got A+", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b970" + } + }, + { + "text": "Honestly, I didn't show up for class after the first exam. I didn't read any of the articles and still got an A+. If you get lower than an A, what are you even doing. Just google the answer for the online tests and choose the closest answer. All the exams are online and you have multiple tries. If you get lower than an A, Good luck on real classes.", + "pos": 0.114, + "neu": 0.83, + "neg": 0.056, + "_id": { + "$oid": "6711d480cd60fca157e5b971" + } + }, + { + "text": "GPA BOOSTER. EASY A COURSE. Encourages you to work together to do exams. Exams are always floating around so you can get the answers real easily and ensure that 100 or more. Only showed up on the first day of class. At the end of semester even gives you a chance to retake exam 1 and 2. 3 exams NO paper. 3 TRIES, sometimes even more. It was a joke.", + "pos": 0.193, + "neu": 0.771, + "neg": 0.036, + "_id": { + "$oid": "6711d480cd60fca157e5b972" + } + }, + { + "text": "Easiest class I've ever taken. Don't even have to show up or study. Professor is cool but the material is mad boring. Easy A", + "pos": 0.22, + "neu": 0.565, + "neg": 0.215, + "_id": { + "$oid": "6711d480cd60fca157e5b973" + } + }, + { + "text": "The online exams are very tricky, and poorly worded. This class is not worth the additional stress.", + "pos": 0.0, + "neu": 0.688, + "neg": 0.312, + "_id": { + "$oid": "6711d480cd60fca157e5b974" + } + }, + { + "text": "not the best professor at ccny. he will fill your inbox with YouTube videos and articles that are so terribly boring and incomprehensible due to the fact that the material is so difficult for it being an introductory requirement course. Not worth the time or the stress, considering you are only graded on the online exams.", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d480cd60fca157e5b975" + } + }, + { + "text": "If you're trying to get your requirement out of the way, by all means DO NOT take this course. The professor goes WAY into neuroscience which is ridiculous because he should understand that 95% of the students don't understand the material that in depth, they just want to complete the requirement. You're only graded on 3 50-question exams.", + "pos": 0.022, + "neu": 0.936, + "neg": 0.042, + "_id": { + "$oid": "6711d480cd60fca157e5b976" + } + }, + { + "text": "Overall a hilarious and knowledgeable professor. Easy A+ if you take you time with tests online. The only problem is the class goes too heavily into neuroscience.", + "pos": 0.173, + "neu": 0.743, + "neg": 0.084, + "_id": { + "$oid": "6711d480cd60fca157e5b977" + } + }, + { + "text": "Gives you 3 online exams. That's it. Very enjoyable class and everyone can earn good grade. Take it. Professor is cool dude.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b978" + } + }, + { + "text": "This class is about drugs, addiction, abuse. You will come to know why people use drugs to the extent that they will leave everything. You will know that people who abuse drugs are not criminals. Drug addiction is simply biological mishap just like diabetes. Professor will change your perspective on drug users for good. Outstanding Professor.", + "pos": 0.175, + "neu": 0.69, + "neg": 0.135, + "_id": { + "$oid": "6711d480cd60fca157e5b979" + } + }, + { + "text": "This class was super easy!!!!! You don't really need to show up for class. Just read all the online material that he posts and you'll be fine. He assigns 3 online test that determine your grade. Plus NO TEXTBOOK NEEDED!!!! Best class I ever chose to sign up for!", + "pos": 0.229, + "neu": 0.722, + "neg": 0.048, + "_id": { + "$oid": "6711d480cd60fca157e5b97a" + } + }, + { + "text": "Great class, interesting topics, huge lecture hall. Easy A !", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b97b" + } + }, + { + "text": "This class is super easy, you don't even have to show up. Make sure you take your time with the quizzes and test online. Some of the questions could be tricky. All the slides are up on blackboard but you could look everything up on google too. Don't bother trying to email him, he has too many students to keep track, best talk to him after class.", + "pos": 0.188, + "neu": 0.795, + "neg": 0.017, + "_id": { + "$oid": "6711d480cd60fca157e5b97c" + } + }, + { + "text": "Ragnauth is great at teaching hybrid classes. Majority of the work you do is online. You read files online, you take quizzesfinals online. Some quizzes are times some aren't. The class goes waaaaay too heavily into neurosciene. It's not general it's super specific but if you put effort, you'll pass. I skipped a few classes & still got a good grade", + "pos": 0.096, + "neu": 0.873, + "neg": 0.031, + "_id": { + "$oid": "6711d480cd60fca157e5b97d" + } + }, + { + "text": "Professor is kinda weird which kind of makes the class more entertaining. It is a super easy class that you barely ever had to show up for. Most of the notes and readings were online so you had barely any use to show up. All his exams and quizzes are online, with chances to retake all of them. It was also a surprisingly really interesting class !", + "pos": 0.22, + "neu": 0.763, + "neg": 0.018, + "_id": { + "$oid": "6711d480cd60fca157e5b97e" + } + }, + { + "text": "Clear prof great class and useful info", + "pos": 0.706, + "neu": 0.294, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b97f" + } + }, + { + "text": "This class was almost completely online. This professor NEVER replies to his emails. Wants you to join a FB group but what if you don't have one? I had 2 quizzes, 2 tests, 1 term paper, 1 final. Take the tests seriously because thats basically your grade. All the tests are online. Didn't mind the class because it was pretty easy. Worth taking!", + "pos": 0.171, + "neu": 0.801, + "neg": 0.028, + "_id": { + "$oid": "6711d480cd60fca157e5b980" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d480cd60fca157e5b982" + }, + "professor_name": "Yi Sun", + "rating": 3.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "In general it's OK class. Unfortunately it's all dry theory and no examples, real life applications etc. He gives solutions to HW which doesn't really help to understand problems, but helps to copy if you don't know how to do it. HW and attendance mandatory, 2 midterms + final project. Lenient grader - curves a lot.", + "pos": 0.167, + "neu": 0.726, + "neg": 0.106, + "_id": { + "$oid": "6711d480cd60fca157e5b983" + } + }, + { + "text": "Easiest class ever, YI SUN IS THE BEST! EASY TAKE HOME FINAL EXAM WHICH IS JUST GIVE DEFINITIONS FOR 5 THINGS AND DONE EASY A!!!", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b984" + } + }, + { + "text": "He is a good professor. I would have passed this class and got a maximum grade of an A in his EE 31200 class back in the Spring 2022 Semester only in 1 condition, if this class was online instead of in person, I wouldn't have wasted my time traveling back and forth to my internship, class, and home on the same day, and instead be at home studying.", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b985" + } + }, + { + "text": "His lectures are hard to comprehend. You must be willing to read the book and watch videos to understand the concepts. His HW are unnecessary, just copy them, but understand a few. His exams are doable, study the past and know the concepts. Easy Subject in General Communication. I think Electronics & Signal Processing are tough. Keep Studying!", + "pos": 0.067, + "neu": 0.886, + "neg": 0.048, + "_id": { + "$oid": "6711d480cd60fca157e5b986" + } + }, + { + "text": "Gives boring lectures that dont really help. If you know Fourier you should be ok. Test 1 - OK, test 2 - BRUTAL, Final - ok. Exams are pretty bad. No one actually does well but the curve is insane", + "pos": 0.074, + "neu": 0.648, + "neg": 0.278, + "_id": { + "$oid": "6711d480cd60fca157e5b987" + } + }, + { + "text": "Not good in teaching. Book won't help much, you will have study from the lecture. If you get average or above average in the exams you will be fine. This guy doesn't care about students. but he curves at the end.", + "pos": 0.032, + "neu": 0.85, + "neg": 0.118, + "_id": { + "$oid": "6711d480cd60fca157e5b988" + } + }, + { + "text": "Exams are very tough but his curve is awesome! Notes help you understand where formulas come from. However, for exams, make sure you write down the final form of the formulas in your cheat sheet. Knowing trig really helps especially for the first 2 exams. Overall, possible to do well if genuine effort is applied.", + "pos": 0.262, + "neu": 0.664, + "neg": 0.075, + "_id": { + "$oid": "6711d480cd60fca157e5b989" + } + }, + { + "text": "Prof. Sun is not the right choice if you are not going to really participate. You need to read the materials in advance, prepare for pop quiz and do the homework for a good understanding of the whole thing. It is easy to get A since he curved a lot. But you will get TOTALLY LOST if you are not to spend time on the course. A cool and kind Professor", + "pos": 0.138, + "neu": 0.795, + "neg": 0.067, + "_id": { + "$oid": "6711d480cd60fca157e5b98a" + } + }, + { + "text": "Overall, OK professor. His main deficiency is he doesn't provide a lot of examples to clarify the material. The textbook is literally the worst book I've ever read in my life. Thankfully, the bulk of his exams come from the notes. HW is copy+paste. Depending on the class average, curve can be legendary. Summary: better than average EE professor.", + "pos": 0.127, + "neu": 0.812, + "neg": 0.061, + "_id": { + "$oid": "6711d480cd60fca157e5b98b" + } + }, + { + "text": "overall the material is great but unfortunately this guy does not have the ability to provide an example and clarification to the class. Hw is copy and paste which he will provide to you and during the exam he doesn't care whether you're cheating or not as long as your near the average or above the average you'll be guaranteed an B past exams need", + "pos": 0.033, + "neu": 0.785, + "neg": 0.182, + "_id": { + "$oid": "6711d480cd60fca157e5b98c" + } + }, + { + "text": "Very ambiguous grading and takes off points like crazy on exams. Spits formulas on the board with little to no explanation. Can't clearly answers questions and responds with \"you should know this from a past course\" but almost no one knows. Make sure to copy down the final forms of formulas and try to get past exams to practice b/c he's useless.", + "pos": 0.067, + "neu": 0.78, + "neg": 0.154, + "_id": { + "$oid": "6711d480cd60fca157e5b98d" + } + }, + { + "text": "people say its hard to understand him , but for me it seemed like he was clear. Make sure you attend everyclass because if you miss one lecture u will be behind. His lecture notes matter because many stuff on the exam are from his notes. He also carves alot so make sure you do above average and try to do the home works on your own", + "pos": 0.183, + "neu": 0.777, + "neg": 0.04, + "_id": { + "$oid": "6711d480cd60fca157e5b98e" + } + }, + { + "text": "A very poor professor. All he does is throw formulas on the board. He will brush questions off to the side because he has no interest in engaging with students. Exams are very tough, but he puts his head down and does not care if half of the class cheats. Overall, quite a shame since the material is very interesting.", + "pos": 0.076, + "neu": 0.696, + "neg": 0.228, + "_id": { + "$oid": "6711d480cd60fca157e5b98f" + } + }, + { + "text": "Soft speaker. Has a distinct Chinese accent, so slightly more difficult to understand. Ask a question and he will answer it. Teaches by the textbook but is very knowledgeable on the topic. Homeworks are difficult but prepare you for tests. Tests are mixed. Grades tests and homeworks in a very timely manner. No late homework accepted. No calculator.", + "pos": 0.04, + "neu": 0.794, + "neg": 0.167, + "_id": { + "$oid": "6711d480cd60fca157e5b990" + } + }, + { + "text": "Easy class. He curves a lot too.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d480cd60fca157e5b991" + } + }, + { + "text": "He is a nice professor, very helpful,his exams are hard but his purpose is to make students think and feel challenged so they could learn. he gives H.w and pop quizzes and they r easy since they r after the homework due date. Dont worry about the grade , just study hard and u will get a good grade A+ prof", + "pos": 0.179, + "neu": 0.759, + "neg": 0.062, + "_id": { + "$oid": "6711d480cd60fca157e5b992" + } + }, + { + "text": "I took his graduate digital communication systems course. He's a hard professor without a doubt, but he tosses in little jokes, which i enjoyed. you MUST do homework to understand the class. he's very friendly and approachable. he does give BIG curves as well for final grades.", + "pos": 0.268, + "neu": 0.711, + "neg": 0.021, + "_id": { + "$oid": "6711d480cd60fca157e5b993" + } + }, + { + "text": "Prof. Sun is not a great teacher but he leans towards the better side of profs when compared to others in the department. He gives many pop quizzes in the class that can come at any time, but even if you do bad on the quizzes you can still ace the class by doing well on the final. Do the hw cause that's the best way to learn the material.", + "pos": 0.146, + "neu": 0.772, + "neg": 0.082, + "_id": { + "$oid": "6711d480cd60fca157e5b994" + } + }, + { + "text": "He is very smart professor, he knows the material very well, be ready for all the pop quizes and do not miss the class otherwise u miss the quizes and do great in final and u will get A.", + "pos": 0.284, + "neu": 0.683, + "neg": 0.033, + "_id": { + "$oid": "6711d480cd60fca157e5b995" + } + }, + { + "text": "Decent professor. You will think you don't know squat based on the quizzes (pop quizzes, by the way). Study hard for the final and do the homework. The material might seem hard in the beginning, but it really isn't.", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d480cd60fca157e5b996" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d481cd60fca157e5b998" + }, + "professor_name": "Carol Laderman", + "rating": 3.8, + "department": "Anthropology department", + "comments": [ + { + "text": "May she rest in peace:( She will always be missed...", + "pos": 0.255, + "neu": 0.584, + "neg": 0.161, + "_id": { + "$oid": "6711d481cd60fca157e5b999" + } + }, + { + "text": "Easy going professor who is very knowledgeable in the field of anthropology. She shares many personal stories of her research and field experience to accompany the lessons. Her passion for anthropology shows in her lessons. A few short (2p) papers, a longer (4p) book report and two exams which she gives very useful reviews beforehand. Easy A!", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b99a" + } + }, + { + "text": "very easy to get an A also very easy to fall asleep... i love this lil lady though. she has a lectures typed and reads them during class *yawn* but when she has side stories they were fun, nothing difficult about the class and you will learn some stuff....", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b99b" + } + }, + { + "text": "EASY grade, just take notes when she reviews for exams and you'll be fine", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b99c" + } + }, + { + "text": "she is so easy. no need to take notes in class. just do the readings. then she gives you questions based on the readings for you to choose to answer the week before the actual exam day and you are allowed to bring 1 sheet of notes to use on the exam day to guide you to answer the question you chose to write on the exam. I want to take her again", + "pos": 0.065, + "neu": 0.903, + "neg": 0.032, + "_id": { + "$oid": "6711d481cd60fca157e5b99d" + } + }, + { + "text": "shes pretty easy going when it comes to grading...her work isnt that hard...you just need to do it and study for her final", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b99e" + } + }, + { + "text": "Midwives & healers class. Very interesting. The documentaries are very good. It is an easy class. She wants every student to succeed. Lenient grader.", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b99f" + } + }, + { + "text": "the class is boring, but it is easy if you do the work and the reading!", + "pos": 0.209, + "neu": 0.707, + "neg": 0.083, + "_id": { + "$oid": "6711d481cd60fca157e5b9a0" + } + }, + { + "text": "she is a good teacher", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9a1" + } + }, + { + "text": "easy A if you do your work, theres a paper but its real easy", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9a2" + } + }, + { + "text": "Best teacher in the ccny anthropology department.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9a3" + } + }, + { + "text": "A good professor, that has great knowledge of her major. The lectures are boring but the exams and paper are simple.", + "pos": 0.186, + "neu": 0.745, + "neg": 0.068, + "_id": { + "$oid": "6711d481cd60fca157e5b9a4" + } + }, + { + "text": "She is a nice lady and sometimes can be harsh when grading essays. Overall, don't attendance not mandotry and her lectures are really boring! Just read the books and make sure you do read them and not wait until the last minute.", + "pos": 0.104, + "neu": 0.777, + "neg": 0.118, + "_id": { + "$oid": "6711d481cd60fca157e5b9a5" + } + }, + { + "text": "two in class exam (one will be dropped), final, one term paper, and short essays(wont be graded but required). regarding the test, many questions are exactly same from the review. Not really based on text book but lectures. she does not talk loud, she whispers. if you listen closely, it is helpful, you learn something.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9a6" + } + }, + { + "text": "super easy course. she doesnt take attendance, she gives u the due date to her papers the first day of class. i barely showed up to class but did all assignmnts ad passed midterm& final and got an A. she also gave the questions to the midterm and final ahead of time and let us bring notes. u have to be real stupid to fail her class", + "pos": 0.057, + "neu": 0.821, + "neg": 0.122, + "_id": { + "$oid": "6711d481cd60fca157e5b9a7" + } + }, + { + "text": "if you take notes class will be a breeze. she gives the questions and the answers for all tests. there is no way, anyone can get less than an A.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d481cd60fca157e5b9a8" + } + }, + { + "text": "Very easy class, easy and but lectures are very boring, she is sweet though and the tests and papers are very easy.", + "pos": 0.379, + "neu": 0.517, + "neg": 0.103, + "_id": { + "$oid": "6711d481cd60fca157e5b9a9" + } + }, + { + "text": "An excellent professor, her classes are very interesting, a little bit boring though. When she gives her lecture you know that she is prepared and that she knows what she is doing. Assigments and exams are very easy. A great teacher!", + "pos": 0.308, + "neu": 0.655, + "neg": 0.038, + "_id": { + "$oid": "6711d481cd60fca157e5b9aa" + } + }, + { + "text": "Easy A. Her lectures are more condusive to sleep then paying attention. The reading is more important as far as her tests are concerned. HER TESTS ARE EASY. REVIEW = TEST PREVIEW... practically question for question. SAME GOES FOR FINAL!\r Has been in the field for a long time though. give her the respect she deserves and you'll enjoy the class!", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9ab" + } + }, + { + "text": "Woundeful teacher, very sweet and understanding, easy grader. Gives take home final and doesn't care about attendance. Take her if you want to increase your GPA, easy A", + "pos": 0.34, + "neu": 0.589, + "neg": 0.07, + "_id": { + "$oid": "6711d481cd60fca157e5b9ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d481cd60fca157e5b9ae" + }, + "professor_name": "Hansong Tang", + "rating": 2, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Bless his soul for passing me, but he is just not good. Read the textbook as much as you can before class. Do as much hw as possible. He takes off points for the weirdest things and you better pay attention in class since he puts random things into test that were said in class.", + "pos": 0.092, + "neu": 0.796, + "neg": 0.112, + "_id": { + "$oid": "6711d481cd60fca157e5b9af" + } + }, + { + "text": "took this class year ago. a friend just asked me about it. felt like I should really write a review to help others. terrible professor. terrible. avoid any way you can. and I actually did all the reading and liked the material. but, he makes it so boring. he's lazy and a tough grader if you don't show work exactly the way he likes it.", + "pos": 0.141, + "neu": 0.672, + "neg": 0.188, + "_id": { + "$oid": "6711d481cd60fca157e5b9b0" + } + }, + { + "text": "Awful. worst lecturer I have ever had. very......low.......energy. often unprepared for class. strange unpredictable grader. takes massive points off for dumb things and then not-so-tough on other bigger mistakes. find a different professor - maybe if people don't take his class, the department will replace him....we can only hope.", + "pos": 0.048, + "neu": 0.71, + "neg": 0.243, + "_id": { + "$oid": "6711d481cd60fca157e5b9b1" + } + }, + { + "text": "Professor Tang is a nice guy and I do think he wants us to learn. But his class was hard to understand. He didn't explain concepts well and his drawings are hard to follow (though they are often straight from the textbook). No one really understood the project and he grades harshly. But if you do homework and listen in class, you should be fine.", + "pos": 0.077, + "neu": 0.808, + "neg": 0.115, + "_id": { + "$oid": "6711d481cd60fca157e5b9b2" + } + }, + { + "text": "Self teach class. His handwriting is hard to understand but still learn what he wrote in class- Those show up on quizzes. Really do the end of chapters problem, study past exams and read the textbook, know the formulas and inte/diff of them for exams and quizzes. His grading on project is *;takes off points for formatting. Email him draft", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d481cd60fca157e5b9b3" + } + }, + { + "text": "You will be teaching yourself. Theoretical questions on exams, but lightly goes over theory or adequate definitions himself. Definitions and explanations must be similar to his wording on exams. Lectures consist mostly of examples already found in the textbook. All Exams and quizzes frequently contain mistakes on his own. Horrible professor.", + "pos": 0.04, + "neu": 0.823, + "neg": 0.137, + "_id": { + "$oid": "6711d481cd60fca157e5b9b4" + } + }, + { + "text": "You can teach yourself. He is ok. Some people found him good, but I did not like his teaching style. You can teach yourself and then refer to his lectures.", + "pos": 0.06, + "neu": 0.859, + "neg": 0.082, + "_id": { + "$oid": "6711d481cd60fca157e5b9b5" + } + }, + { + "text": "Tries his best to teach and truly cares. He expects you to know the material. Read the textbook before lecture and do the sample problems and you should be fine", + "pos": 0.301, + "neu": 0.631, + "neg": 0.068, + "_id": { + "$oid": "6711d481cd60fca157e5b9b6" + } + }, + { + "text": "Avoid like the plague. I can hardly say anything besides that he doesn't even teach. He gives very few examples in his notes and expects you to teach yourself most of the lessons. Most people failed the first exam and most people dropped the class. And have fun going to his office, he told someone in our class to just switch majors.", + "pos": 0.083, + "neu": 0.834, + "neg": 0.083, + "_id": { + "$oid": "6711d481cd60fca157e5b9b7" + } + }, + { + "text": "He comes off as a nice guy but teaches a boring and difficult course where he does poor job explaining the material and often assigns homework which requires one to go beyond the lecture notes to try and solve. I got the impression in class most students were lost with his style of teaching and many including myself dropped it.", + "pos": 0.077, + "neu": 0.734, + "neg": 0.19, + "_id": { + "$oid": "6711d481cd60fca157e5b9b8" + } + }, + { + "text": "This is actually what happened when I took his class. He teaches the easiest examples and when it get the hard one skip them or says you guys can do do it by your self. Things that he gives a small explanation about with no examples will be on the test with lots of marks.", + "pos": 0.048, + "neu": 0.89, + "neg": 0.062, + "_id": { + "$oid": "6711d481cd60fca157e5b9b9" + } + }, + { + "text": "He's a good professor who expects a lot of his students (fairly so because we are in an engineering graduate program). I work full-time so I don't have much time, but his notes supplemented with some textbook readings is more than enough to pass his course. Supervisors/advisors are rarely perfect outside of academia. Stop complaining.", + "pos": 0.031, + "neu": 0.823, + "neg": 0.145, + "_id": { + "$oid": "6711d481cd60fca157e5b9ba" + } + }, + { + "text": "Tang is not a clear lecturer yet makes his test extremely difficult. Try to avoid", + "pos": 0.0, + "neu": 0.626, + "neg": 0.374, + "_id": { + "$oid": "6711d481cd60fca157e5b9bb" + } + }, + { + "text": "I have never written a review for a professor because i felt i never had to, but this professor deserves some bad reviews. This guy does not like seeing high grades and he will tell you this in class He gives pop quizzes, difficult hw, and tests that are based on maybe 40% of the notes. Take the other professor that offers this class.", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d481cd60fca157e5b9bc" + } + }, + { + "text": "Worst professor in the department. Doesn't fairly evaluate students knowledge of course material. Demands far too much from students. Makes mistakes in class frequently. Is lazy and teaches/gives assignments straight from book. Cuts and pastes partial solutions from instructor manual. Shouldn't be teaching H1000.", + "pos": 0.068, + "neu": 0.718, + "neg": 0.214, + "_id": { + "$oid": "6711d481cd60fca157e5b9bd" + } + }, + { + "text": "the Professor is very helpful. The classes are very interesting. He puts huge effort in his classes and expects that back as well.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9be" + } + }, + { + "text": "Horrible teacher. Just horrible. Horrible grader, but easy exams. I wonder how the people who rated him before came up with such nice words. Probably he changed.", + "pos": 0.208, + "neu": 0.606, + "neg": 0.186, + "_id": { + "$oid": "6711d481cd60fca157e5b9bf" + } + }, + { + "text": "Horrible lectures, forgets the topics in the class, does not have clear knowledge....", + "pos": 0.0, + "neu": 0.659, + "neg": 0.341, + "_id": { + "$oid": "6711d481cd60fca157e5b9c0" + } + }, + { + "text": "He is nice person who are teaching in details. And compared with other professors, this is above the average.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9c1" + } + }, + { + "text": "He is good professor, when compared with other professors who are teaching in this school.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d481cd60fca157e5b9c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d482cd60fca157e5b9c4" + }, + "professor_name": "Sanam Bamshad-Alavi", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "I am finishing up her class at the moment. She is a phenomenal professor. She is very professional and down to the point. Summer session is 4 exams each is 25% of the grade, with room for 3-5% of extra credit through SONA or paper. She is one of the best professors I have had. Get into class do your work, study, take exam, get out - very structured", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9c5" + } + }, + { + "text": "Her class is based on her power point slides and the book, doing an online assignment that counts like around 5% of the final grade, participation and attendance 15% and 4 exams including the final non cumulative. For her exams study from book and the book's webpage quizzes and you'll do fine. Mostly mc questions and two short ans. Must Take notes.", + "pos": 0.067, + "neu": 0.933, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9c6" + } + }, + { + "text": "Little boring at times but fair and easy-going wish she would share her own experiences or thoughts on concepts to get students more comfortable to share their own also", + "pos": 0.415, + "neu": 0.549, + "neg": 0.036, + "_id": { + "$oid": "6711d482cd60fca157e5b9c7" + } + }, + { + "text": "She knows her stuff and is very engaging. She can make comments or give you looks to make you feel stupid if you ask a question she doesn't understand. It makes you not want to participate. Other then that, she's great. Lectures are very interesting, you'll enjoy it.", + "pos": 0.221, + "neu": 0.702, + "neg": 0.077, + "_id": { + "$oid": "6711d482cd60fca157e5b9c8" + } + }, + { + "text": "Awesome professor! She is very knowlegeable, even though still young, and very well prepared She grades the tests very quickly and is a fair grader. Highly recommended to take her class !", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9c9" + } + }, + { + "text": "She was a great professor. She made the class very interesting and exciting. Show up to class, take really good notes and you'll do fine. I got a B in the class because I did bad on her first exam, but otherwise its a good class with a even better professor", + "pos": 0.284, + "neu": 0.68, + "neg": 0.036, + "_id": { + "$oid": "6711d482cd60fca157e5b9ca" + } + }, + { + "text": "She is an awesome professor. She seems a bit intimidating, at first, but if you do what she wants you to do, you'll be fine. Just make sure to go to class, take the quizes and study for the exams. Her exams aren't extremely difficult, if you study that is. Shes very fair and you get what you deserve in this class. Her anecdotes pull you to learn.", + "pos": 0.18, + "neu": 0.795, + "neg": 0.025, + "_id": { + "$oid": "6711d482cd60fca157e5b9cb" + } + }, + { + "text": "Great professor. Take her if u can. Her test are multiple choice. Make sure u read the book and study her powerpoints. Gives extra credit. I took her twice, best professor.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9cc" + } + }, + { + "text": "She is very warm, gives of example about the topic she is discussing. Her class is easy, she gives 4 test that are very easy if you study for them. I would recommand you to take the class.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9cd" + } + }, + { + "text": "She lectures on all the chapters that are needed to go over gives very clear notes and is willing to explain the material more. a quiz is given every week and it really helps with understanding material and also with exams some of the questions are in the exams. She is very strict about attendance and sleeping in class. I would take her again.", + "pos": 0.085, + "neu": 0.915, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9ce" + } + }, + { + "text": "shes a great professor. she knows her stuff and will encourage you to think on your own. she may seem like a tough professor in the beginning, but she goes easier on you as the semester progresses. i got an A+. she doesnt like to fail people. i'd take her class again!", + "pos": 0.225, + "neu": 0.713, + "neg": 0.062, + "_id": { + "$oid": "6711d482cd60fca157e5b9cf" + } + }, + { + "text": "The best professor EVER! Had her twice and loved the fact that she actually knew what she was talking about. She's very knowledgeable and entices students, so you never feel bored in her classes. Her tests are easy if you pay attention and review your notes(The book helps too).you will not regret taking her class! She is the BEST!", + "pos": 0.31, + "neu": 0.671, + "neg": 0.018, + "_id": { + "$oid": "6711d482cd60fca157e5b9d0" + } + }, + { + "text": "loved her. new her material very well. was able to explain the material very clearly. also has a good sense of humor which helps the time go by quicker.", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9d1" + } + }, + { + "text": "she great, easy multiple choice quizes: as long as yuor reading the textboook/paying good attention in class. some of the quizes dont have textbook info on it but textbook questions will apear on the 2 midterms you have. there is no exam during finals week!", + "pos": 0.133, + "neu": 0.811, + "neg": 0.055, + "_id": { + "$oid": "6711d482cd60fca157e5b9d2" + } + }, + { + "text": "Loved her, she doesn't want to see anyone fail, and she's very funny when people just keep going on and on about their boring lives as examples.", + "pos": 0.196, + "neu": 0.609, + "neg": 0.194, + "_id": { + "$oid": "6711d482cd60fca157e5b9d3" + } + }, + { + "text": "She is hard. I dont care what others are saying she is hard & difficult. I found myself doing stuff just to please her & not really learning. To her every single thing is important. She needs to prioritize what is most important, then 2nd, then 3rd. It is difficult to learn when you need to cram everything in and not use it all. AVOID HER!!!", + "pos": 0.08, + "neu": 0.736, + "neg": 0.184, + "_id": { + "$oid": "6711d482cd60fca157e5b9d4" + } + }, + { + "text": "Great TA. She knows what she's doing. And it helps that she's hot.", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9d5" + } + }, + { + "text": "Very smart and funny professor, if you read the book then this class is a easy A", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9d6" + } + }, + { + "text": "She is a very thorough professor, pay attention to the lectures and read the assigned chapters and the class will be a breeze.", + "pos": 0.0, + "neu": 0.93, + "neg": 0.07, + "_id": { + "$oid": "6711d482cd60fca157e5b9d7" + } + }, + { + "text": "Very interesting professor, i wish i had more like her. Very smart and easy A", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9d8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d482cd60fca157e5b9da" + }, + "professor_name": "Saman Reshadi", + "rating": 4.4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Truly inspiring professor, I am honored to have him as my professor. He makes you want to learn and work hard for a good grade. He teaches fluid mechanics very well, so be sure to pay attention and do the work. I believe if you listen to his advice, you will be successful in any work you do.", + "pos": 0.307, + "neu": 0.655, + "neg": 0.038, + "_id": { + "$oid": "6711d482cd60fca157e5b9db" + } + }, + { + "text": "Wonderful professor. Very helpful in and out of the class. Expect homework, you have to do it to pass. Doing the homework helps a lot anyway. The exams are basically questions from the homework. Pay attention and study, you'll get an easy A. Btw u can find the textbook online for free.", + "pos": 0.248, + "neu": 0.73, + "neg": 0.022, + "_id": { + "$oid": "6711d482cd60fca157e5b9dc" + } + }, + { + "text": "Even though he is a tough grader, he sees how much you have learned and completed the work on your own. This is a class that you will utilize as an engineer and the fact that he is tough on us made it that much more interesting. He teaches well even though he goes off topic, it is in relation to becoming successful. Its well worth the stress.", + "pos": 0.164, + "neu": 0.762, + "neg": 0.074, + "_id": { + "$oid": "6711d482cd60fca157e5b9dd" + } + }, + { + "text": "AWESOME PROFESSOR!!! Very helpful! If you ever wonder why we do math then take Professor Reshadi; he will show you with real life examples on how math is applied. Very Very Interesting class", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9de" + } + }, + { + "text": "He's so professional and at the same time he makes students feel confident.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9df" + } + }, + { + "text": "Really good professor who does not only tech you about fluid mechanics, but also enlightens you to the real engineering world.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e0" + } + }, + { + "text": "Professor really takes his time in order to make sure that the students understand the material.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e1" + } + }, + { + "text": "Amazing lecturer, give a lot of homework, mutual respect, participation matters", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e2" + } + }, + { + "text": "This is the best Prof. I ever met. It was a pleasure. If you struggle in the middle of the semester, do not give up, he will help you to raise your performance and to finish the semester with a good grade (not really what you except but the one you deserve).", + "pos": 0.152, + "neu": 0.819, + "neg": 0.029, + "_id": { + "$oid": "6711d482cd60fca157e5b9e3" + } + }, + { + "text": "This professor is amazing! I took calculus one with him and I really enjoyed the class. He knows how to explain the course materials by concepts. He encourages hus students to learn by concepts instead of memorizing what they don't understand. I really learned a lot. I definitely recommend him especially those in engineering. Best Prof. Ever!", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e4" + } + }, + { + "text": "Saman is a great professor. He is punctual in terms of coming late during class, but most of his students arrive earlier than him. Arrive 30 minutes before class. The presentation is what your grade depends on. Do well on the presentation and he'll give you useful tips to do better. There are times when he jokes and they're hilarious. Take him!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e5" + } + }, + { + "text": "Pros: - engaging - helpful - funny - gives good feedback - cares that you actually learn the material Cons: - not clear grading criteria - never received my lab reports back or any feedback - sometimes becomes obsessive about his \"rules\" Textbook needed but get the pdf on CCNY Book Market FB group.", + "pos": 0.16, + "neu": 0.789, + "neg": 0.051, + "_id": { + "$oid": "6711d482cd60fca157e5b9e6" + } + }, + { + "text": "Very good professor but also very strict.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e7" + } + }, + { + "text": "Knowledgeable professor with plenty to teach all around. Doesnt give a lot of quizes but HW is a must to pass.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e8" + } + }, + { + "text": "This professor is great. But you MUST do your work and you MUST study. Very few professors relate what you are doing in class to real life. He is one of the good ones. He wants you to learn at the end of the day, and will grade you fairly.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9e9" + } + }, + { + "text": "Reshadi is a method teacher; he goes by the book. If you have questions he will answer them. I like how he relates the subject to real life. Makes learning interesting.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9ea" + } + }, + { + "text": "Prof is very knowledgeable; It's easy to pass his class do have to do you work.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9eb" + } + }, + { + "text": "Prof. Reshadi is a professor who really care for his students; he is very courteous and respect the student's opinions. Not only does he provide explanation for the theories but also w/ many real life scenarios as well. He does assign ALOT of hw but make sure you do them because it's very helpful for passing the course. Highly Recommended.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d482cd60fca157e5b9ec" + } + }, + { + "text": "Very tough and strict grader. Gives Homework every week and bases his quiz's on the homework given and only gives two tests a midterm and a final. His lectures are very good and will take his time to explain everything. However, if you are not prepared to do a lot of work you will fail this class.", + "pos": 0.051, + "neu": 0.839, + "neg": 0.11, + "_id": { + "$oid": "6711d482cd60fca157e5b9ed" + } + }, + { + "text": "OK professor; will belittle you during presentations, but will explain to you what you did wrong. We had lab reports in the beginning of the semester that he never graded so we did not understand the point of them. Mr Reshadi is very smart, but his teaching style may not be to your liking. He is a very easy professor, just do good on presentations.", + "pos": 0.216, + "neu": 0.71, + "neg": 0.075, + "_id": { + "$oid": "6711d482cd60fca157e5b9ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d483cd60fca157e5b9f0" + }, + "professor_name": "Jeff Brewer", + "rating": 4.5, + "department": "World Humanities department", + "comments": [ + { + "text": "Honestly never did work in his class, besides an easy paper. His class is more of a conversation than a lesson. He rambles off about random things and I mean anything. I didn't learn much but I would take the class again since I got credit for it. He's a funny guy, fair grader, and discusses more life lessons than the education I feel.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9f1" + } + }, + { + "text": "He's an excellent professor, I would recommend taking him for any English class.", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9f2" + } + }, + { + "text": "I love him. Even though I don't like english or anything to do with writing essays, he made me smile and laugh during every class. The coolest professor you will ever take in your college career. Also he is just the nicest person I have ever met. I wish he taught every class.", + "pos": 0.248, + "neu": 0.72, + "neg": 0.032, + "_id": { + "$oid": "6711d483cd60fca157e5b9f3" + } + }, + { + "text": "Amazing professor! He puts the students first and is completely respectful. It was an amazing learning environment. I will definitely take another class of his if I could. Readings are interesting and grading is not too tough. He is mostly interesting in giving ideas and support in how to improve writing. Perfect for a summer course.", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9f4" + } + }, + { + "text": "This class will morph your view of the world and the systems within it. Jeff isn't your standard English professor; his class is more of a conversation on different aspects of life which inspires our own writings. His assigned readings are enjoyable/different (like him) and you'll learn the value of a properly constructed sentence like never before", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9f5" + } + }, + { + "text": "Jeff was my instructor for a summer course. He is eccentric, witty, and completely out of his mind. However, he has an absolute wealth of knowledge, experience, and intellect. Don't get fooled by his seemingly whimsical personality. There is a lot more to him than he let's on. Take his class if you want more than just a creative writing course. A+", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9f6" + } + }, + { + "text": "He is so amazing and inspirational. Talks about serious issues in the world very generous and heartwarming personality. Fun class overall :)", + "pos": 0.571, + "neu": 0.395, + "neg": 0.034, + "_id": { + "$oid": "6711d483cd60fca157e5b9f7" + } + }, + { + "text": "you litterly have to show up to get an A, till now No assignments or anything.", + "pos": 0.0, + "neu": 0.872, + "neg": 0.128, + "_id": { + "$oid": "6711d483cd60fca157e5b9f8" + } + }, + { + "text": "He opens your eyes to many things. His class is more than a class, it's a series of life lessons. He goes out of his way to read your drafts to give you feedback. Whenever he introduces a concept, he does so in a way that connects to something interesting so you won't forget it.", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9f9" + } + }, + { + "text": "Professor Brewer is a genius and comic in one. He's kind of like a hippie. Take his assignments seriously and pay close attention to the notes on your drafts, they make a difference.", + "pos": 0.063, + "neu": 0.85, + "neg": 0.088, + "_id": { + "$oid": "6711d483cd60fca157e5b9fa" + } + }, + { + "text": "Great professor! He is extremely funny and goes off on a lot of interesting tangents; these tangents are always relevant though. I took the creative writing class so there were no tests, everything depended on what we read, created, and work shopped. It was a fun class and then only one I looked foward to; I would take it again if I could.", + "pos": 0.24, + "neu": 0.728, + "neg": 0.032, + "_id": { + "$oid": "6711d483cd60fca157e5b9fb" + } + }, + { + "text": "One of the best instructors I've ever had. He was kind, encouraging, and understanding, and was eager to guide his students to performing their academic bests. He's also HILARIOUS. His classes were always the highlights of my week.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9fc" + } + }, + { + "text": "Jeff is an awesome professor!! He's hilarious, and his stories are entertaining but also related to stuff in class. He's very knowledgeable. He makes everyone feel really comfortable because he's so open and chill. As long you hand in the work, you'll do great.But, he has a strange sense of humor so dont take him if you're easily offended!", + "pos": 0.288, + "neu": 0.65, + "neg": 0.061, + "_id": { + "$oid": "6711d483cd60fca157e5b9fd" + } + }, + { + "text": "What a beautiful person! He kept the class laughing, made it real comfortable where everyone was open to sharing their pieces and we became close as a whole class. He knew exactly what he was talking about as far as material and overall english literature. BUT, if you are too sensitive and cannot take a joke than you CAN'T be in his class :-)", + "pos": 0.164, + "neu": 0.804, + "neg": 0.032, + "_id": { + "$oid": "6711d483cd60fca157e5b9fe" + } + }, + { + "text": "Jeff is fantastic, engaging, interesting, funny, relatable, encouraging, so smart. One of the best classes I've ever had! Completely refreshing!!", + "pos": 0.644, + "neu": 0.356, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5b9ff" + } + }, + { + "text": "Omg. I do not have words to describe Jeff Brewer. Absolutely hilarious, especially when you get his random (and I do mean random) and obscure references. Be prepared for classroom discussions to go awry. Things get pretty interesting very quickly. If you are easily offended, do not take him lol but if you have a good sense of humor, go for it!", + "pos": 0.208, + "neu": 0.747, + "neg": 0.045, + "_id": { + "$oid": "6711d483cd60fca157e5ba00" + } + }, + { + "text": "Jeff is by far one of my favorite people in the World. I took him for a creative writing class and he was GREAT he is reall bright so sometimes he can shift conversation on you but it's totally fine because most all of what he says is interesting he really wants his students to do well and you can tell by the efforts he puts in helping you develop", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba01" + } + }, + { + "text": "Super cool!! A great teacher, puts time and effort into class and helping students!! As long as you do your work and work with him when you need help, you're fine!!", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba02" + } + }, + { + "text": "Mr. Brewer was sooo awesome. First impression you might want to have him committed. But after all the craziness he really opens up your mind artistically and creatively... His only pet peeves are frat guys(nothing personal,& Khaki pants. He has sweet tooth for red velvet anything and shots of expresso.", + "pos": 0.231, + "neu": 0.713, + "neg": 0.056, + "_id": { + "$oid": "6711d483cd60fca157e5ba03" + } + }, + { + "text": "Jeff is the man!!!, He brings life to the classroom and turns philosophy into a very approachable and understandable way. and... Wow I never had a professor more lively than him. Filled with experiences and knowledge that drive you to want to find out more. It brings tears to my eye knowing I might never have another professor like Jeff ever again.", + "pos": 0.165, + "neu": 0.805, + "neg": 0.031, + "_id": { + "$oid": "6711d483cd60fca157e5ba04" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d483cd60fca157e5ba06" + }, + "professor_name": "Rubeen Sharma", + "rating": 4.9, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Rubeen is such a friendly instructor at CCNY. Very knowledgeable and clear explanations of the topic. He will encourage you and help you learn and eventually get a good grade. Glad to have him. Thank you Rubeen!", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba07" + } + }, + { + "text": "Super nice. Just take his class and learn new things. Prof. Sharma explains very clear and to the point. Students love him.", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba08" + } + }, + { + "text": "Young, energetic and dynamic instructor at CCNY. He explains so clear and if you work a bit harder you are guaranteed to grade a good grade. Sharma is a super nice guy.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba09" + } + }, + { + "text": "Multitalented guy. He did explain materials clearly and was very easy going. I wish I had this class in person because it's not easy to do it online. As compared to other professors at CCNY, he definitely stands out. A very lovable personality and I recommend him.", + "pos": 0.299, + "neu": 0.661, + "neg": 0.04, + "_id": { + "$oid": "6711d483cd60fca157e5ba0a" + } + }, + { + "text": "I was excited to have him as a lab instructor because of his positive reviews but he was not present like these reviews say he was. He did explain the CAM material well but that's about it. No clear grading criteria-did not receive any grades until the end of the semester, no guidance with the project,no clear report format.", + "pos": 0.143, + "neu": 0.74, + "neg": 0.117, + "_id": { + "$oid": "6711d483cd60fca157e5ba0b" + } + }, + { + "text": "Prof. Sharma is amazing. The best part of him is the way he explains materials. Very detailed and clear. I hope he teaches more classes. Lots of extra credits and if he finds you that you understand the materials well, he goes easy with grading. This class was fun. Thank you prof. Sharma.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba0c" + } + }, + { + "text": "Available, easy to understand/good at explaining. Very positive and enthusiastic, well organized and kept interest of students. Knows the material.", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba0d" + } + }, + { + "text": "Funny and engaging. Very smart teacher at CCNY. Knows his stuff well and explains pretty well too. Overall a good man.", + "pos": 0.57, + "neu": 0.43, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba0e" + } + }, + { + "text": "Easy A if you pay attention. Average course load and the final project makes you learn a lot. He is an easy going dude but he is amazing at delivering lectures. I was so happy to take his class.", + "pos": 0.309, + "neu": 0.668, + "neg": 0.024, + "_id": { + "$oid": "6711d483cd60fca157e5ba0f" + } + }, + { + "text": "Just show him that you understand his materials pretty well and get an A. He is clear in whatever he explains. This class is so interesting and so much fun. Group project at he end makes you learn a lot. He follows a specific way of writing a report that will eventually help us for future report writing skills. Super cool and calm instructor ever.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba10" + } + }, + { + "text": "Rubeen is the best professor at CCNY. He was very engaging and explains stuff very well. Learned a lot in this class without being too stressed. Pefect balance of a course. Thank you Rubeen!", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba11" + } + }, + { + "text": "Learned a lot from him. He makes things easy to understand and his midterm was a bit tricky for us as compared to other sections. But it was actually easy for me as I understood his materials pretty well. I am so grateful to professor Sharma. Such a gentleman. Thank you Prof. Sharma for making me a bit smarter than I was.", + "pos": 0.314, + "neu": 0.67, + "neg": 0.016, + "_id": { + "$oid": "6711d483cd60fca157e5ba12" + } + }, + { + "text": "He is a great tutor who helped me in Physics 2 at NYU. Funny man and gives tricks to every problem on how to approach them.", + "pos": 0.211, + "neu": 0.663, + "neg": 0.127, + "_id": { + "$oid": "6711d483cd60fca157e5ba13" + } + }, + { + "text": "He was my tutor for Physics. I learned a lot from him. He gives shortcuts to do the problems and he is so funny lol.", + "pos": 0.216, + "neu": 0.698, + "neg": 0.086, + "_id": { + "$oid": "6711d483cd60fca157e5ba14" + } + }, + { + "text": "I swear to god I like his style of teching. Easy going and clear in what he says. He is a singer too. He sings some Bollywood. Sharma is the best at CCNY.", + "pos": 0.336, + "neu": 0.635, + "neg": 0.028, + "_id": { + "$oid": "6711d483cd60fca157e5ba15" + } + }, + { + "text": "He is a man. Soothing lectures and clear understanding of materials.", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba16" + } + }, + { + "text": "Sharma is a very nice guy. Easy to understand and very cool and calm person. Got a B+", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba17" + } + }, + { + "text": "5/5.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba18" + } + }, + { + "text": "Surprisingly amazing and talented guy in the Mechanical Engineering Dept. of CCNY.", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba19" + } + }, + { + "text": "Great class and great teacher. This class was more interesting than other core mechanical classes at CCNY.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba1a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d483cd60fca157e5ba1c" + }, + "professor_name": "Ghasan Yousef", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "Dedicated and caring professor, understanding and willing to accommodate often. Makes the grading criteria and test formats very clear and will tell you what you need to do to succeed in the class. Makes funny jokes and overall makes lectures very engaging and pleasant. Will take time to answer all of your questions. Best math professor.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba1d" + } + }, + { + "text": "Amazing professor! He is genuinely the best math professor I've ever had at this college. Made Calculus 2 very fun to learn. His lectures were super easy to understand to the point I felt Calculus 2 was easier than Calculus 1. I 100% would take again.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba1e" + } + }, + { + "text": "Definitely a tough class to take but Calc 2 with any professor is not a cakewalk. That being said, Professor Yousef is one of the nicest profs out there, curves test scores very generously and is very accessible during office hours. Saved my hopes of continuing my major. Defo recommend to anyone taking Calc 2", + "pos": 0.302, + "neu": 0.68, + "neg": 0.018, + "_id": { + "$oid": "6711d483cd60fca157e5ba1f" + } + }, + { + "text": "One of the better math professors at City. From Day 1 he tells you what he's grading you on. 3 Midterms. the questions are similar to the homework from the textbook so make sure to do them. He does go fast sometimes in lectures but he's always willing to slow down and explain. He also stays after for any questions. Definitely take him if you can.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba20" + } + }, + { + "text": "Pretty good professor. Grades pretty harshly and goes by what's in the textbook alot but he's really good. Do the homework even though it's not required. One of the best professors in the math department.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba21" + } + }, + { + "text": "Mr. Yousef is one of the best math professors around, he cares about his students and makes the hard topics understandable, you would need to put in a lot of effort to pass the class since the topics are hard but Mr Youssef tells you how to study and prepare for tests, overall a really good professor .", + "pos": 0.138, + "neu": 0.824, + "neg": 0.037, + "_id": { + "$oid": "6711d483cd60fca157e5ba22" + } + }, + { + "text": "He's a funny and great teacher. He is clear with his grading, participation, three midterms, and final. He does drop one midterm. The midterm is just the homework sometimes identical or numbers switched up. He does speed through some topics but he stays after class for any students who need help. He does office hours when asked. Great professor.", + "pos": 0.221, + "neu": 0.757, + "neg": 0.022, + "_id": { + "$oid": "6711d483cd60fca157e5ba23" + } + }, + { + "text": "Yousef presents the lessons for Calc2 quickly. Students should expect a few hours on the homework that he provides & reviewing the lessons. Grade is dependent on midterms & finale test scores. Overall good guy, teaches decently.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba24" + } + }, + { + "text": "He's lecture comes from the textbook. Homework from textbook. Exam questions are from homework. Sometimes he goes too fast. Sometimes he doesn't cover everything but they're still on homework. He doesn't grade homework, so grades are only from exams, so never fail any of them. While it's not mandatory, it's better to read the textbook.", + "pos": 0.069, + "neu": 0.858, + "neg": 0.073, + "_id": { + "$oid": "6711d483cd60fca157e5ba25" + } + }, + { + "text": "Professor Yousef is very caring and sweet. He cares about you passing. However you do need to do your part in studying and doing practice questions especially If you arent the best in math. The test are based on web assign questions and the hws dont count but def still do them. Quizez 2 midterms and the final will determine your grade.", + "pos": 0.096, + "neu": 0.871, + "neg": 0.033, + "_id": { + "$oid": "6711d483cd60fca157e5ba26" + } + }, + { + "text": "Honestly he was a great professor although the exams were hard but just try and practice after every class", + "pos": 0.209, + "neu": 0.736, + "neg": 0.055, + "_id": { + "$oid": "6711d483cd60fca157e5ba27" + } + }, + { + "text": "This course is hard, but professor Ghasan is very helpful, kind, and caring. He teaches straight from the textbook, and his exams are based on the homework he provides. He also curves the grade. Be ready to practice a lot. This class had three quizzes, he dropped the lowest. And three exams.", + "pos": 0.278, + "neu": 0.655, + "neg": 0.067, + "_id": { + "$oid": "6711d483cd60fca157e5ba28" + } + }, + { + "text": "I took Math 205 this semester and Pr. Yousef is really good, always open to questions, meticulously explains the material. You don't have to participate at all to fail this class. take notes, pay attention and you will be good. He's very funny and open minded.", + "pos": 0.168, + "neu": 0.743, + "neg": 0.089, + "_id": { + "$oid": "6711d483cd60fca157e5ba29" + } + }, + { + "text": "I took him during COVID as an online class. His lectures are fine and he was helpful during office hours. DO THE HOMEWORK! It doesn't count toward your grade, but all exam questions are taken directly from problems you should have already worked on WebAssign.", + "pos": 0.067, + "neu": 0.855, + "neg": 0.078, + "_id": { + "$oid": "6711d483cd60fca157e5ba2a" + } + }, + { + "text": "Professor Yousef is a very nice professor. This was an online class but his exams were all in person. One thing I HATED so much is that his exams were 9 questions, which means u mess one question up, grade goes down bad. There are 4 exams. Each exam is 20% and final is is 40%. Fail one test ur failing the class. Just practice after every lecture !!", + "pos": 0.023, + "neu": 0.702, + "neg": 0.275, + "_id": { + "$oid": "6711d483cd60fca157e5ba2b" + } + }, + { + "text": "The Best professor ever.", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba2c" + } + }, + { + "text": "Professor Yousef seems like a good person, but he's not that great at teaching. Directly reads off the textbook. Your grade is 100% based off exams. You pay $40 for Webassign for homework that isn't incorporated into you grade, but it's kind of what the tests are based off on. But he posts lectures online in case you missed it.", + "pos": 0.055, + "neu": 0.814, + "neg": 0.131, + "_id": { + "$oid": "6711d483cd60fca157e5ba2d" + } + }, + { + "text": "He gives out 3 tests for the semester and if you do the WebAssign each time you would have a good grasp on them to pass his class. The way how the material is presented at times is a bit confusing, but he tries to help you understand it by going over the problem. He also puts his lectures online for those who miss it which is really thoughtful.", + "pos": 0.118, + "neu": 0.795, + "neg": 0.087, + "_id": { + "$oid": "6711d483cd60fca157e5ba2e" + } + }, + { + "text": "He's a good person, but he definitely isn't the best professor. He just reads off the textbook and expects his students to understand it immediately. He also doesn't offer any assignments to help boost your grade. He had us pay $40 for us to do homework that he doesn't even incorporate into our grade.", + "pos": 0.189, + "neu": 0.719, + "neg": 0.092, + "_id": { + "$oid": "6711d483cd60fca157e5ba2f" + } + }, + { + "text": "He is one of the best professor. Very kind, gentle and helpful person. He helped me so much in this course. If you attend the class and practice all the webassign examples you will get a very good grade. Thank you professor Ghasan.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d483cd60fca157e5ba30" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d484cd60fca157e5ba32" + }, + "professor_name": "Gladys Carro", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "As long as you pay attention in class, do the homework she assigns and study for the quizzes and midterm, you should do good in her class. You have a quiz every week and one midterm. She does ramble on about random stuff in class but it only last a couple of minutes and she's back on the lesson, if you want to improve your grammar, take this class!", + "pos": 0.102, + "neu": 0.881, + "neg": 0.016, + "_id": { + "$oid": "6711d484cd60fca157e5ba33" + } + }, + { + "text": "She's a very happy, cheerful lady. The class aims for a mastery of grammar, so it's great as a refresher course, awful if you're learning it for the first time. The class is point based, and the points are based on the weekly quizzes she gives. Regardless of how much you think you know about grammar, studying (see practice) is mandatory to do well.", + "pos": 0.203, + "neu": 0.758, + "neg": 0.039, + "_id": { + "$oid": "6711d484cd60fca157e5ba34" + } + }, + { + "text": "If you know grammar like the back of your hand and need an easy A then take this class. I left with 8 100's. Some sections can be tricky and it is fun when you have a chance to debate her on her answers and you are right.", + "pos": 0.242, + "neu": 0.73, + "neg": 0.028, + "_id": { + "$oid": "6711d484cd60fca157e5ba35" + } + }, + { + "text": "I took her Advanced Grammar course in 2009. My, I remember she used to bully me until I intimated about it in her office. What a boorish woman!", + "pos": 0.064, + "neu": 0.826, + "neg": 0.111, + "_id": { + "$oid": "6711d484cd60fca157e5ba36" + } + }, + { + "text": "she is a good professor but gets side tracked ALOT ... she did warn us about that at the beginning of the semester though. she suggests going to the extra workshops and so do I. You can come in towards the end of class just for attendance but if you go to the workshops you'll still do well on the weekly exams!", + "pos": 0.075, + "neu": 0.901, + "neg": 0.024, + "_id": { + "$oid": "6711d484cd60fca157e5ba37" + } + }, + { + "text": "Come to class EVERYDAY and study and do well on the quiz. If you get average of 100 on all you quizzes you get A if you get average of 50 you fail. So take if you are badass at grammar or you will study and do well. She is a nice professor, willing to help but has ADHD. Yea I am not kidding. Take her class and watch her ramble. Overall it's a helpful class to take just don't fall behind.", + "pos": 0.136, + "neu": 0.823, + "neg": 0.041, + "_id": { + "$oid": "6711d484cd60fca157e5ba38" + } + }, + { + "text": "Love her.", + "pos": 0.808, + "neu": 0.192, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba39" + } + }, + { + "text": "which advance grammar text book does she use?", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba3a" + } + }, + { + "text": "This is Prof Gladys. I wanted to sign in and let everyone on here know that 342 is not an ESL class. I say this in class and it's written on the syllabus, but still students take it. Some get low grades and then it's my fault. Consider this your first warning :). Attend the extra workshops and you'll do just fine! See you in class. - GC", + "pos": 0.029, + "neu": 0.844, + "neg": 0.127, + "_id": { + "$oid": "6711d484cd60fca157e5ba3b" + } + }, + { + "text": "Much better to learn on your own rather taking class with this professor. She just the worst professor ever!", + "pos": 0.119, + "neu": 0.7, + "neg": 0.181, + "_id": { + "$oid": "6711d484cd60fca157e5ba3c" + } + }, + { + "text": "No other teacher can teach this grammer class. She is very helpfull and class was fun. The class is never easy but it will help for everone who write.", + "pos": 0.168, + "neu": 0.735, + "neg": 0.097, + "_id": { + "$oid": "6711d484cd60fca157e5ba3d" + } + }, + { + "text": "she's very funny and energetic !surprising since its a 9AM MORNING CLASS she walks in with a happy face EVERY DAY. she tells you exactly what she wants so if u study that u'll do well. she even cares to update students about their grades every week AND give back quizzes. she loves telling the class helpful and interesting past experiencesI LOVE HER", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba3e" + } + }, + { + "text": "Prof. Carro is a funny lady, very opinionated and doesn't hold back. Despite her great persona, I didn't learn much about grammar. We take weekly quizzes & her exams have grammar errors on the questions she writes. She didn't know our names or make an effort to. She never writes on the board and all we go over is the homework from the text.", + "pos": 0.042, + "neu": 0.877, + "neg": 0.082, + "_id": { + "$oid": "6711d484cd60fca157e5ba3f" + } + }, + { + "text": "She is cool goofy and curses a lot but I love her!", + "pos": 0.436, + "neu": 0.564, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba40" + } + }, + { + "text": "One of the best professors of CCNY. There is a test every week but its easy. You shouldn't have a problem. I recommend her!", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba41" + } + }, + { + "text": "**** needs to stay off the caffine, for reals.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba42" + } + }, + { + "text": "This prof is straight forward in what she wants. She is very helpful I do advise anyone to take her compare to other english 110 prof she is easy. Just do not get on her bad side.", + "pos": 0.178, + "neu": 0.743, + "neg": 0.079, + "_id": { + "$oid": "6711d484cd60fca157e5ba43" + } + }, + { + "text": "The class was fun and entertaining. Prof. Carro gave straightforward assignments and allowed freedom in choosing writing topics. She also told us where to find tutoring and was always willing to help. I really enjoyed this class. Prof. Carro is great!!", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba44" + } + }, + { + "text": "teacher is energetic, gives a lot or examples, very funny.", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba45" + } + }, + { + "text": "she is a good prof. but gets too excited..", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba46" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d484cd60fca157e5ba48" + }, + "professor_name": "Korey Hughes", + "rating": 4, + "department": "Political Science department", + "comments": [ + { + "text": "I took her winter class in Baruch, Tho she didn't cut the readings in a compressed winter session, you could still get an A if you work hard enough to catch up.", + "pos": 0.055, + "neu": 0.903, + "neg": 0.042, + "_id": { + "$oid": "6711d484cd60fca157e5ba49" + } + }, + { + "text": "Very intelligent, energetic and extremely knowledgeable about her subject. Exams are fair and not too difficult if you go to class and take notes.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba4a" + } + }, + { + "text": "Prof. Hughes is a very great professor. She teaches the course very well , attendance and participation required, all readings on blackboard, gives review sheets for exams, very clear expectations. She makes it easy for you and her lectures and notes are clear and always energetic and ready. Knows a lot about US Politics. - Class was taken @ York.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba4b" + } + }, + { + "text": "Let's be honest; politics can be very boring, but this little lady kept it interesting. She knows her stuff and her lectures were very educational. I was inspired to change my views and care more of what's happening today. There's an extra credit; do it! Show up to class and participate; she makes it easy for you! You have to read; no shocker!", + "pos": 0.298, + "neu": 0.68, + "neg": 0.022, + "_id": { + "$oid": "6711d484cd60fca157e5ba4c" + } + }, + { + "text": "Honestly, i like politics but she also made it really interesting. Like everyone participated. Thought all her tests were beyond fair. Her review sheets literally tell you whats on them. Got an A but studied. Really great teacher. Enjoyed the class a lot.", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba4d" + } + }, + { + "text": "Its crazy how she thinks this an intro class. A lot of people did very bad for her class. She gives 50-100 pages of readings per week, which isnt managable since 80% of her students are full-time taking 14-18 credits. PSC is supposedly the easiest major ever. But she makes it the worst major ever.", + "pos": 0.058, + "neu": 0.789, + "neg": 0.154, + "_id": { + "$oid": "6711d484cd60fca157e5ba4e" + } + }, + { + "text": "Her class is a very hard class. The course is not hard in-itself but she along with her cruel TA's have made this class hard. Don't hope for an A at all. If you are very brilliant then you might be able to get a B, everyone else will get a C or worse. You will have piles of reading, heaps of memorization, laborious tests. So be wary of her class.", + "pos": 0.079, + "neu": 0.743, + "neg": 0.179, + "_id": { + "$oid": "6711d484cd60fca157e5ba4f" + } + }, + { + "text": "Professor Hughes is a very nice person. But her TAs are just harsh graders. My TA gave me a 9/10 on a question cause i didn't explain what a general election was. Tests are very hard. People study hours and yet score Bs on the test. There is no such thing as an A+ for her class. You mess up once ur entire grade is ruined. Get ready to read 50pg wk.", + "pos": 0.061, + "neu": 0.752, + "neg": 0.186, + "_id": { + "$oid": "6711d484cd60fca157e5ba50" + } + }, + { + "text": "She's very intelligent and knows a lot about politics. Her lectures are interesting and her test are not difficult if you study (10 MC, 8 Short Answer). Only negative is she gets easily distracted. We spent 15 min talking about her not being able to drive.... so there's that to look forward to. Other than that I recommended.", + "pos": 0.177, + "neu": 0.735, + "neg": 0.088, + "_id": { + "$oid": "6711d484cd60fca157e5ba51" + } + }, + { + "text": "Absolutely one of the nicest professors. Very intelligent woman and funny too. She isn't the easiest though, I would describe her course as truly \"college level\" shes a fair grader and the tests are reflective of material gone over in class. Good solid course, well taught and had the total pleasure attending her class. Would recommend!", + "pos": 0.372, + "neu": 0.598, + "neg": 0.031, + "_id": { + "$oid": "6711d484cd60fca157e5ba52" + } + }, + { + "text": "Prof. Hughes is amazing! She is very kind & caring, and is very clear with her grading criteria. Lecture notes are important for you to pass! There are 2 exams, a non-cumulative final, & a 5-7 page research paper - each worth 20%. The other 20% is from participation. No textbook needed, she will post everything on BlackBoard. Totally recommend her!", + "pos": 0.278, + "neu": 0.694, + "neg": 0.029, + "_id": { + "$oid": "6711d484cd60fca157e5ba53" + } + }, + { + "text": "She can be boring but she is passionate. Do the readings and this is an easy a", + "pos": 0.351, + "neu": 0.581, + "neg": 0.068, + "_id": { + "$oid": "6711d484cd60fca157e5ba54" + } + }, + { + "text": "Great professor. Highly recommend you take her class. Very knowledgeable about politics. Tells very interesting stories as well. Pay attention and take notes in class and you'll do fine on her tests. Not having to buy a textbook saves a lot of money.", + "pos": 0.264, + "neu": 0.709, + "neg": 0.027, + "_id": { + "$oid": "6711d484cd60fca157e5ba55" + } + }, + { + "text": "She is a very nice teacher and is very laid back. you do not need textbooks and most of the readings are on blackboard. The midterm and final is an essay plus 4 essays hand is up to you. You have a 5 min oral presentation she will give the order. you get quiz. I was happy to have her for the presidency and then for congress she is a great teacher.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba56" + } + }, + { + "text": "Lots of reading. Attendance and participation are mandatory.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d484cd60fca157e5ba57" + } + }, + { + "text": "great teacher and is very helpful. you can hand in the essay anytime throughout the semester. no text book needed all the readings are on blackboard", + "pos": 0.3, + "neu": 0.636, + "neg": 0.064, + "_id": { + "$oid": "6711d484cd60fca157e5ba58" + } + }, + { + "text": "Professor Hughes LOVES political science! No textbook required which is awesome but she puts a ton of reading online. 2 Papers, midterm and final. Not a bad class. Her style is quite intresting.", + "pos": 0.234, + "neu": 0.726, + "neg": 0.04, + "_id": { + "$oid": "6711d484cd60fca157e5ba59" + } + }, + { + "text": "This Professor was the best at what she does. She made this class very interesting and she empathized with the students because she remembered being a student herself. No text books were required she made the readings all available on BB and if you are lost she will take the time to help you find your way. Highly recommended", + "pos": 0.172, + "neu": 0.763, + "neg": 0.065, + "_id": { + "$oid": "6711d484cd60fca157e5ba5a" + } + }, + { + "text": "Judiciary. Hughes is so cute. Her class can be boring, but doing the readings and asking questions always makes things more lively. 3 (3-5pg) papers but u pick when to hand them in. oral presentation is easy an d a final. Sometimes she does a quiz or a short 3pg paper. This class was debate style sometimes. Good Prof. I would recommend u take her.", + "pos": 0.269, + "neu": 0.711, + "neg": 0.02, + "_id": { + "$oid": "6711d484cd60fca157e5ba5b" + } + }, + { + "text": "Presidency. Hughes is sweet heart. you dont have to do the readings. all you have to do is hand in 3 response papers (3-4pg) on the topic ur discussing in class that day. Participating is a plus. if she knows ur name than ur prob doing good. final and oral pres are a breeze. class gets boring sometimes. She writes notes on the board.", + "pos": 0.178, + "neu": 0.791, + "neg": 0.031, + "_id": { + "$oid": "6711d484cd60fca157e5ba5c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d485cd60fca157e5ba5e" + }, + "professor_name": "Julio Reyes", + "rating": 3.3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba5f" + } + }, + { + "text": "He is a good professor but a tough grader when it comes to exams, no matter how much I study and work hard he is really tough when it comes to grading. Should have took Kreminska for 241.", + "pos": 0.047, + "neu": 0.793, + "neg": 0.16, + "_id": { + "$oid": "6711d485cd60fca157e5ba60" + } + }, + { + "text": "Do not listen to the rating below. Reyes is a good choice for Electronics 1.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba61" + } + }, + { + "text": "worst professor ever, skip this class you will not learn anything in his class", + "pos": 0.0, + "neu": 0.76, + "neg": 0.24, + "_id": { + "$oid": "6711d485cd60fca157e5ba62" + } + }, + { + "text": "worst professor in CCNY, you will not learn anything in this class", + "pos": 0.0, + "neu": 0.728, + "neg": 0.272, + "_id": { + "$oid": "6711d485cd60fca157e5ba63" + } + }, + { + "text": "He is a good professor. He teach well. He repeat his exams so i would say just study the previous exams and you will be fine.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba64" + } + }, + { + "text": "This professor is very fast paced but he does go over theory properly. He explains things if you have doubt but if you can't catch on in a timely manner he says to read the textbook. Strong circuits foundation is required. Grades are based on exams so study well. His HW criteria is strange as he may collect few to no hws throughout the semester.", + "pos": 0.099, + "neu": 0.792, + "neg": 0.109, + "_id": { + "$oid": "6711d485cd60fca157e5ba65" + } + }, + { + "text": "Best professor I ever had. Very clear on what will be on the exam and very funny.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba66" + } + }, + { + "text": "I mean very average professor I didn't really understand lectures bec he runs through everything and its all about theory, best thing is just to get past exams and study them. Usually puts one very tricky question that no one really gets so it lowers test scores but then he curves and adds 15 points to each test grade still wish I learned more.", + "pos": 0.088, + "neu": 0.848, + "neg": 0.064, + "_id": { + "$oid": "6711d485cd60fca157e5ba67" + } + }, + { + "text": "I don't understand how anyone can get below a C in this class. It is an easy class if you put effort in. Professor gives hints about the questions that will be on the exam, and sometimes he gives the same exact problems in class. Dont miss a class and just study the class notes and you will be fine. I actually learned a lot from this class", + "pos": 0.084, + "neu": 0.879, + "neg": 0.037, + "_id": { + "$oid": "6711d485cd60fca157e5ba68" + } + }, + { + "text": "This is side job for him, so never responds to emails, no office hours. I had to get help from a professor in South Carolina over email (he was nice enough to help after I explained!) Embarrassing for CUNY. But it was too late. Over 2/3 class fail every \"quiz\". \"Quiz\" are 3 hours literally. I did HW's twice and all txt problems, and did not help.", + "pos": 0.07, + "neu": 0.742, + "neg": 0.187, + "_id": { + "$oid": "6711d485cd60fca157e5ba69" + } + }, + { + "text": "Awesome, pay attention to lecture. He always ask questions as he works out problems or demonstrates new concepts. Exams are very straight forward nothing tricky, not really a harsh grader. First exam, 1/3 of class passed, but curve was +20 pts. 2nd test, avg was 77, +8 ponts. Very doable", + "pos": 0.132, + "neu": 0.811, + "neg": 0.056, + "_id": { + "$oid": "6711d485cd60fca157e5ba6a" + } + }, + { + "text": "Very good professor. Explains loudly and clearly. He will stop and answer any question asked. His exams are based on what you do in class and the homework problems.", + "pos": 0.165, + "neu": 0.698, + "neg": 0.137, + "_id": { + "$oid": "6711d485cd60fca157e5ba6b" + } + }, + { + "text": "His exams are more like Scheinberg's with actual circuits, not the lengthy word problems given in the book (although book examples do help). So study Scheinberg's materials. Those are what helped me pass. If you study and understand his notes, guarantee you will pass the class.", + "pos": 0.144, + "neu": 0.805, + "neg": 0.052, + "_id": { + "$oid": "6711d485cd60fca157e5ba6c" + } + }, + { + "text": "his exam is not homework related and not from class note. you better know everything in order to pass this course. don't take him. half students fail in his class.", + "pos": 0.084, + "neu": 0.814, + "neg": 0.102, + "_id": { + "$oid": "6711d485cd60fca157e5ba6d" + } + }, + { + "text": "This guy is from the industry.He explains well, for Electronics I it's good to go. DON'T TAKE IC WITH HIM, HE USES SLIDES TO EXPLAIN WHICH U CAN'T REALLY LEARN ANYTHING", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba6e" + } + }, + { + "text": "Hard to pass his class. You have to work hard.Dont ever try to cheat on his class. He will kick you out of City College. NO mater how smart you are , he will catch the cheaters and expel them from CCNY.", + "pos": 0.052, + "neu": 0.695, + "neg": 0.253, + "_id": { + "$oid": "6711d485cd60fca157e5ba6f" + } + }, + { + "text": "Really good professor. Explains clearly and will repeat as many times as you like. Cool guy with a good sense of humor. Tests are tough, but some questions are based on HW questions from the book. Harsh grader, but gives everyone +8 to +15 point for exam grades even for final. I recommend him. Had an A+ in his class ^_^", + "pos": 0.198, + "neu": 0.73, + "neg": 0.072, + "_id": { + "$oid": "6711d485cd60fca157e5ba70" + } + }, + { + "text": "One of the best teachers ccny has! Much better than scheinberg!!", + "pos": 0.47, + "neu": 0.53, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba71" + } + }, + { + "text": "Easy A!!! No questions asked. Just take good notes, and review some hw problems.", + "pos": 0.309, + "neu": 0.463, + "neg": 0.227, + "_id": { + "$oid": "6711d485cd60fca157e5ba72" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d485cd60fca157e5ba74" + }, + "professor_name": "Akemi Kudo", + "rating": 3.9, + "department": "Asian Studies department", + "comments": [ + { + "text": "Prof. Kudo is nice enough to give people grace periods to finish their work even after deadlines. She is caring and offers criticism for your work and she does take in your opinions. There are 12 short quizzes, 3 essays, 1 presentation, and 1 final paper in this class. The quizzes are just 2 MCs and 1 question about your thoughts on the readings.", + "pos": 0.123, + "neu": 0.837, + "neg": 0.04, + "_id": { + "$oid": "6711d485cd60fca157e5ba75" + } + }, + { + "text": "Professor Kudo has a lot of guidelines, but she is accommodating. She gave a built-in grace period of up to 10 days throughout the course, and even extended it at the end of the semester. You can also miss up to 6 classes without effect on your grade. She has a sense of humor, but there's definitely a lot of reading and writing assignments.", + "pos": 0.138, + "neu": 0.836, + "neg": 0.026, + "_id": { + "$oid": "6711d485cd60fca157e5ba76" + } + }, + { + "text": "It was my first film class and my first lit class I just think Professor has boxed teaching. It is hard to propose and be to be flexible. Just be sure you are on time and even if you have a request Professor would push her deadlines (sharp.) Also, if you have any spiritual or philosophical opinion it would likely not fit into a \"box\" of hers.", + "pos": 0.059, + "neu": 0.891, + "neg": 0.05, + "_id": { + "$oid": "6711d485cd60fca157e5ba77" + } + }, + { + "text": "Professor Kudo runs a very interactive class, and has interesting study content to accompany this. She has a very friendly attitude, yet is not afraid to offer critical feedback throughout her assignments. There are many short quizzes throughout the semester, and a few comprehensive essays to test your knowledge of the reading, yet it's very doable", + "pos": 0.131, + "neu": 0.832, + "neg": 0.037, + "_id": { + "$oid": "6711d485cd60fca157e5ba78" + } + }, + { + "text": "Professor Kudo is a pretty tough grader, but if you follow all of her directions to the T, you can do well. She isn't super flexible, but her class is not very hard if you do the readings and the work. You will have to work for your A, it will not be handed to you, but it isn't impossible to get an A+. Put effort into the work and it will show!", + "pos": 0.068, + "neu": 0.836, + "neg": 0.097, + "_id": { + "$oid": "6711d485cd60fca157e5ba79" + } + }, + { + "text": "At the beginning of the class, you have two books that you have to buy for Japanese literature. the book and film that you watch will lead to two short response papers. there is also a quiz to test you on your knowledge of the book. last is a final paper where you would have to write a 100 to 1250 word on a topic from the five novels.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba7a" + } + }, + { + "text": "I really enjoyed taking this course with Professor Kudo and would definitely take one of her classes again. You will have to work for your A; attendance is very important, lots of reading outside of class along with weekly quizzes, and participating is in your best favor. Class readings and films are also very engaging/interesting.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba7b" + } + }, + { + "text": "I've taken professor Kudo for four semesters now and I've enjoyed every class with her. You will have to work for your grade, the lectures are very good and humorous and you have to participate. Overall, best Asian Studies professor at City in my opinion.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba7c" + } + }, + { + "text": "A ton of reading for Japanese popular culture, however, I was surprised that we had a test that was on arbitrary stuff in the textbook. She gives a lot of readings and she mostly lectures from her slides. Gives like 2 long papers, 1 midterm 1 final and a test. she is a bad grader on paper if she sees that she is determined to fail you.", + "pos": 0.124, + "neu": 0.786, + "neg": 0.09, + "_id": { + "$oid": "6711d485cd60fca157e5ba7d" + } + }, + { + "text": "Professor Kudo forgets that her students are people too, with obligations and life outside of class. She wont compromise on letting you take tests in advance- so far so good But some of us in CCNY do not have the financial or socio-economic privilege of sticking to her strict schedule. She won't budge and won't trust you to test in advance Awful!", + "pos": 0.081, + "neu": 0.81, + "neg": 0.11, + "_id": { + "$oid": "6711d485cd60fca157e5ba7e" + } + }, + { + "text": "My major was not Asian Studies, so I can say that to me it was more difficult than some of my classmates that had taken her before. But I loved her class, she is very organized. I enjoyed her lectures, but be ready to read, participate, and study for her exams. She will take points out if you are late or absent. She is strict, kind, and very funny", + "pos": 0.256, + "neu": 0.722, + "neg": 0.022, + "_id": { + "$oid": "6711d485cd60fca157e5ba7f" + } + }, + { + "text": "Dr. Kudo is my favorite professor so far. I have taken all 5 of the courses she offers at CUNY CCNY: Japanese Pop Culture, Mod. Chinese Lit., Mod. Japan, Asian Cultures 101, and Japanese Film and Lit.. She is highly knowledgable, gives useful feedback, and is highly intelligent. We have great class discussions too so I never regret attending class.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba80" + } + }, + { + "text": "Very easygoing professor, and cares about the material. Usually quite a bit of reading, test questions can sometimes be very particular (take detailed notes!), and there's a fair amount of writing required, but put in the effort and it will be easy to do well.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba81" + } + }, + { + "text": "Class was pretty easy, until the exams came. The exams are by far the hardest thing about this class. Professor Kudo gives you a list of the topics and power points, so use those to study. The exam is usually on extremely specific topics and super unpredictable. Overall the class was chill and an easy.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba82" + } + }, + { + "text": "Great Professor!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba83" + } + }, + { + "text": "Great teacher. Works hard for her students as long as you put in work. Little bit of a language barrier but she's excited about every class. I learned a lot.", + "pos": 0.166, + "neu": 0.762, + "neg": 0.072, + "_id": { + "$oid": "6711d485cd60fca157e5ba84" + } + }, + { + "text": "A ton of reading for Japanese popular culture, however I was surprised that we had a test that was on arbitrary stuff in the textbook. She gives a lot of readings and she mostly lectures from her slides. Gives like 2 short papers, 2 long papers 1 final and a test. She's also really easy going and nice :).", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba85" + } + }, + { + "text": "I think that she's a good professor. A very dedicated, insightful and hardworking person. Her class is not the easiest but you do learn a lot. .", + "pos": 0.138, + "neu": 0.806, + "neg": 0.056, + "_id": { + "$oid": "6711d485cd60fca157e5ba86" + } + }, + { + "text": "She is very strict, gives about 3 papers and a few take home quizzes. She gives very general directions but expects very detailed answers even though she does not let us know what she is expecting. Be careful of her tests (midterm and finals) because she tests you on the most random things that she don't even really talk about. GOOD LUCK", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d485cd60fca157e5ba87" + } + }, + { + "text": "Kudo was and is basically my favorite Prof. thus far. She has an accent so be prepared. Her exams are not too difficult, nor are they too easy. Her lectures are interesting, she also teaches the best books I've ever read in my life. She's worth your while if you're interested in Asian Culture. However, I'm still haunted by Black Rain.", + "pos": 0.282, + "neu": 0.677, + "neg": 0.04, + "_id": { + "$oid": "6711d485cd60fca157e5ba88" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d486cd60fca157e5ba8a" + }, + "professor_name": "Jorge Medina", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "Very nice professor, well prepared, you just need to be in the class, he will catch your concentration, explains very good, gives many useful but hard hws, but helps to solve the problems, got him in the summer, learnt a lot...Try must to take him.....", + "pos": 0.265, + "neu": 0.643, + "neg": 0.092, + "_id": { + "$oid": "6711d486cd60fca157e5ba8b" + } + }, + { + "text": "Very nice and helpful professor, Must take him if u can, helps a lot in the class and also after the class. Gives a lot of hws and those are little bit hard but he helps to solve the hw problems. DO NOT MISS HIM....", + "pos": 0.24, + "neu": 0.676, + "neg": 0.084, + "_id": { + "$oid": "6711d486cd60fca157e5ba8c" + } + }, + { + "text": "Very good professor, comes very well prepared to class, and he teaches the intuitive idea. 3 Exams and HWs are all mathematical calculation, and each is worth 25%, no drops, no curve, all straight. Just make sure you never miss class, and do HWs before the test, and practice. I learned a lot from him. Thanks prof, Don't change", + "pos": 0.282, + "neu": 0.687, + "neg": 0.031, + "_id": { + "$oid": "6711d486cd60fca157e5ba8d" + } + }, + { + "text": "A very good professor who loves what he's doing. He explains everything very well so that I did not really need to go back to the text and do the readings, but yet you have to pay attention in class. Exams are not that difficult. The worst part of the course is to pay to get access to the website called Aplia for the assignments.", + "pos": 0.116, + "neu": 0.767, + "neg": 0.117, + "_id": { + "$oid": "6711d486cd60fca157e5ba8e" + } + }, + { + "text": "Absolutely a great professor. He is very helpful and explains things clearly. You leave the class actually learning and understanding what was taught. TAKE THIS PROFESSOR", + "pos": 0.305, + "neu": 0.659, + "neg": 0.036, + "_id": { + "$oid": "6711d486cd60fca157e5ba8f" + } + }, + { + "text": "Great professor. His teaching follows the book very closely and lectures are straightforward. For classes that I could not stay awake (summer class with him), I referred to the textbook. Homework assignments were online and were fairly simple if you read the textbook. If he is available to teach this class, go for it!", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5ba90" + } + }, + { + "text": "First off he is not a bad professor. I do agree that he is hard but he teaches quite well. He takes his work seriously and requires you to work hard. He's also very approachable during office hours. You can talk to him about anything.It may seem that he doesn't care about his students but he really does. Work hard or he will fail you.", + "pos": 0.087, + "neu": 0.72, + "neg": 0.193, + "_id": { + "$oid": "6711d486cd60fca157e5ba91" + } + }, + { + "text": "good professor. He gave extra credits on the exam and drop some low hw grades. But the class isn't easy. there are some supplemental materials that you might need. some of them can be found online for free. 1.statistics in plain english. 2.Schaum's outline of theory and problems of business statistics 3. Probability for Risk Management", + "pos": 0.119, + "neu": 0.7, + "neg": 0.181, + "_id": { + "$oid": "6711d486cd60fca157e5ba92" + } + }, + { + "text": "Do not take this Prof. if you have a passion for the subject. He will mess your head up. Does not like to look at topics from any other side other than the text. Worst grader and very, very biased.", + "pos": 0.061, + "neu": 0.709, + "neg": 0.23, + "_id": { + "$oid": "6711d486cd60fca157e5ba93" + } + }, + { + "text": "This professor has to be one of the best professors teaching at City College....Which is rare..Lol....Take him if you want to learn. Dont take him if you want an easy grade...Also, beware of the monotone. LMAO", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5ba94" + } + }, + { + "text": "Best Professor ever, extremely easy. Just practice the questions at the end of each chapter...you will ace it. I learn a lot, he is the best.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5ba95" + } + }, + { + "text": "Good professor, and well set up class. There are three exams and about 6 group hws. If you read the text and listen to the professor the class should be easy, but be warned, he does grades strictly so try to do your work.", + "pos": 0.113, + "neu": 0.832, + "neg": 0.055, + "_id": { + "$oid": "6711d486cd60fca157e5ba96" + } + }, + { + "text": "If u want to get good grade do not take him.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5ba97" + } + }, + { + "text": "Jorge is a good professor. He is a bit monotonous but he explains things thoroughly and will repeat himself if you don't understand something. If you want an A then go to class, read the book, and do the homework.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5ba98" + } + }, + { + "text": "He teaches good, but its a hard class. DOES NOT compromise grades. DOES NOT CURVE. He's clear what he expects, but u gotta do the HWs, all of them. He has no mercy, he doesn't care about ur effort or non of that jazz. He's straitforward NUMBERS. Advise: DO take him cuz u wanna learn, but better work hard, otherwise he's gonna screw u up, and ur GPA", + "pos": 0.073, + "neu": 0.755, + "neg": 0.172, + "_id": { + "$oid": "6711d486cd60fca157e5ba99" + } + }, + { + "text": "not a hard class if your good with math and you will learn in his class grade base on 3 test and hw just study the notes and the book and you should be fine", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5ba9a" + } + }, + { + "text": "Took him for Statistics of Economics... kind of difficult class, depends on how good u r with math... he does go over the material alot n the tests r almost the same problems from the text... curves the grade at the end of year", + "pos": 0.059, + "neu": 0.835, + "neg": 0.106, + "_id": { + "$oid": "6711d486cd60fca157e5ba9b" + } + }, + { + "text": "Overall not a bad professor but the final was much harder than the 1st two exams. At times the material is tricky. Not impossible to pass this class but think twice before taking him.", + "pos": 0.054, + "neu": 0.893, + "neg": 0.053, + "_id": { + "$oid": "6711d486cd60fca157e5ba9c" + } + }, + { + "text": "He's one of the best prof. that the City College Economics Department has. If you really want to learn, TAKE HIM!!! =)", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5ba9d" + } + }, + { + "text": "he is one the best professors in the eco department.he explains everything well as many times as necessary and will stay after class to talk to u about any pro u have with the lecture. His test is a lil hard but once u get the hung of how he sets up the exam, it is pretty easy. He curves and attendance is mandatory.understand the subject well", + "pos": 0.194, + "neu": 0.791, + "neg": 0.016, + "_id": { + "$oid": "6711d486cd60fca157e5ba9e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d486cd60fca157e5baa0" + }, + "professor_name": "Wanlu Li", + "rating": 2.5, + "department": "Chemistry department", + "comments": [ + { + "text": "Worst at teaching. Terrible homework system called ALEKS. Useless recitation. Honestly, only attend recitation for the points, do good in lab, and study like crazy on ALEKS. The lectures are useless and I could never retain a single bit of information because she is not organized with her lectures. I got this B from studying hours on ALEKS.", + "pos": 0.114, + "neu": 0.679, + "neg": 0.207, + "_id": { + "$oid": "6711d486cd60fca157e5baa1" + } + }, + { + "text": "In general, the class was easy because the topics taught were easy to learn. She was difficult to reach outside of the classroom. We were graded by our exams and ALEKS was the only homework given by the department.", + "pos": 0.155, + "neu": 0.788, + "neg": 0.056, + "_id": { + "$oid": "6711d486cd60fca157e5baa2" + } + }, + { + "text": "Lectures are pretty straightforward. She pretty much reads the slides but sometimes explains a little more. Take really good notes because the notes will help you do really well on exams. Also she does give hw, which sometimes has a lot of questions but the hw helps a lot with studying for the the exams. Never miss any labs and do well on the final", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5baa3" + } + }, + { + "text": "Professor is garbage. Gives an homework system called ALEKS which takes forever to do. Exams are nothing like review sessions. Hard chinese accent hard to understand. Recitations useless. Lots of self study. Study ALEKS heavily you should be fine. Attending class and recitation won't do much literally all I did was self study. Do good in lab!", + "pos": 0.074, + "neu": 0.801, + "neg": 0.126, + "_id": { + "$oid": "6711d486cd60fca157e5baa4" + } + }, + { + "text": "She knows her stuff and her lectures are straight to the points. Go to her office hours if you can. She will explain all the questions you have. She also suggests research groups based on your interest.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5baa5" + } + }, + { + "text": "She tries to engage with students on class, such as using Kahoot and drawing about the electron configurations. She cares about students. I would highly recommend speaking to her outside of class, a very personable and easygoing.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5baa6" + } + }, + { + "text": "This general chemistry professor is easygoing, beneficial, reverent and renowned in her class.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5baa7" + } + }, + { + "text": "This professor is extremely intelligent. I would trust her to make medications or to work on reducing the impacts of pollution. However, she's not great at teaching. She is actually really nice and will help you in whatever way she can, but you'll honestly end up doing most of the learning on your own if you take this course.", + "pos": 0.181, + "neu": 0.787, + "neg": 0.032, + "_id": { + "$oid": "6711d486cd60fca157e5baa8" + } + }, + { + "text": "Professor Li is bad at teaching. Shes not clear at all, she dodges all questions in class or responds to them by saying its just math. Shes also not friendly or accesible after class. She tends to be rude and say things such as I dont make mistakes. If you take her, be ready to self study a lot because you wont pass if not.", + "pos": 0.062, + "neu": 0.787, + "neg": 0.151, + "_id": { + "$oid": "6711d486cd60fca157e5baa9" + } + }, + { + "text": "She just read the PowerPoint. If you want to study then do not take her. And she usually give us a wrong grades. And she is not really answering email when I ask her about my grade. The final grade doesnt make sense. The exam doesnt similar to what we learn in class. Not recommended her", + "pos": 0.022, + "neu": 0.898, + "neg": 0.08, + "_id": { + "$oid": "6711d486cd60fca157e5baaa" + } + }, + { + "text": "Not good.", + "pos": 0.0, + "neu": 0.294, + "neg": 0.706, + "_id": { + "$oid": "6711d486cd60fca157e5baab" + } + }, + { + "text": "There is no option to give 0 to this professor, otherwise I would give her a zero. Never seen that worst professor in my life.", + "pos": 0.116, + "neu": 0.807, + "neg": 0.077, + "_id": { + "$oid": "6711d486cd60fca157e5baac" + } + }, + { + "text": "I wish I did not take her class !", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d486cd60fca157e5baad" + } + }, + { + "text": "She is the worst professor ever. I repeat,WORST !!! Doesn't know how to teach. Unorganized, her tests are tough, doesn't help outside of class, says a lot of things in the class which are incorrect most of the times and students dont even understand her lectures.", + "pos": 0.0, + "neu": 0.831, + "neg": 0.169, + "_id": { + "$oid": "6711d486cd60fca157e5baae" + } + }, + { + "text": "I wanted to learn Chemistry but after attending her class, I have no respect for chemistry anymore. Don't take her if you wanna learn and pass in this course.", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d486cd60fca157e5baaf" + } + }, + { + "text": "Well, even she has no idea what she is teaching. She just reads from the PowerPoint slides, says a lot incorrect stuff, doesn't help outside of class, basically I think she doesn't understand what her students ask her ! She is very very unorganized, couldn't finish course materials on time and put the pressure on the students. Dont recommend her", + "pos": 0.032, + "neu": 0.831, + "neg": 0.137, + "_id": { + "$oid": "6711d486cd60fca157e5bab0" + } + }, + { + "text": "She doesnt really teach. All she does is read off of the power point and even then she'll get things wrong and say the incorrect thing. She doesnt really tell you whats going to be on exams so do learn everything you possibly can even if you think its too specific and not really test material.", + "pos": 0.0, + "neu": 0.947, + "neg": 0.053, + "_id": { + "$oid": "6711d486cd60fca157e5bab1" + } + }, + { + "text": "Great Professor! Professor Li has a tough course to teach but makes it easy with a lot of available resources. She has been around to help answer questions when I've had them. If you do your work and are prepared to study you will be fine.", + "pos": 0.264, + "neu": 0.714, + "neg": 0.022, + "_id": { + "$oid": "6711d486cd60fca157e5bab2" + } + }, + { + "text": "This professor makes your life worse. She does not know how to teach and basically reads off of slides prepared by someone else. It is easier to pass her class if you don't go to her lecture. Aleks, the homework website, is basically your actual teacher. It teaches you clearly. Take another professor's class!!!", + "pos": 0.135, + "neu": 0.815, + "neg": 0.051, + "_id": { + "$oid": "6711d486cd60fca157e5bab3" + } + }, + { + "text": "The professor listed for this course should say Aleks, because that's the only thing you'll learn from in this class. All she does is read off of the powerpoint and 'suggest' we read the textbook. Uploads powerpoints to blackboard 2 class sessions later. Chem is easy but she makes it hard", + "pos": 0.037, + "neu": 0.932, + "neg": 0.03, + "_id": { + "$oid": "6711d486cd60fca157e5bab4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d487cd60fca157e5bab6" + }, + "professor_name": "Melanie Danza", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "The teacher makes you responsible for your grade. If you do the reading (which is really good) and do the assignments (a lot of writing and revision) you'll get the grade you deserve. She cares about the student succeeding and guides you on how to write better and think intelligently. The reading was very diverse and interesting, to say the least.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bab7" + } + }, + { + "text": "If you want to get an easy A but waste your time/money take this class. She's a kind prof but you will not learn a single thing. She is very disorganized, she made us buy several books that we didn't use. Then she gave the class a huge booklet full of poems and short stories... like?! 3 essays, one 5-7 pg final.", + "pos": 0.186, + "neu": 0.722, + "neg": 0.091, + "_id": { + "$oid": "6711d487cd60fca157e5bab8" + } + }, + { + "text": "Okay, this professor is SUPER disorganized and she gives a lot of readings. She goes from one topic and then stops in the middle of her sentence and goes to a COMPLETELY different topic. When she gives written assignments it is very unclear on what she wants in the assignment unless she actually writes it out. Ask her to write down the hw !!!!!!!!!", + "pos": 0.123, + "neu": 0.793, + "neg": 0.083, + "_id": { + "$oid": "6711d487cd60fca157e5bab9" + } + }, + { + "text": "Melanie Danza is such a kind-hearted and understanding teacher. She really does care about her students and she wants them to do well in her class. Make sure you show up to class because attendance really does matter to her. Other than that, I think that it is very easy to get an A once you complete all of your assignments.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5baba" + } + }, + { + "text": "Professor Danza was awesome! I took her for the summer session and she was just so understanding with all of us. We wrote one story and one poem in her creative writing class but they had to be meaningful. Definitely take her! She's so cool and almost was like a motherly figure to us.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5babb" + } + }, + { + "text": "Literally all we did in her creative writing class is write one story and one poem for the entire semester. But they required word and dedication. We read the stories of everyone in the class, it was enjoyable.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5babc" + } + }, + { + "text": "The class is actually more confusing, but because she isn't organized, I can claim this: She's kind and she's not a harsh grader. She's willing to help and also will admit that she is wrong at times. I mean she does her job, nothing more nothing less. Disorganized but still, a kind grader.", + "pos": 0.287, + "neu": 0.632, + "neg": 0.081, + "_id": { + "$oid": "6711d487cd60fca157e5babd" + } + }, + { + "text": "this was a strange class to take, she's so used to being an english professor, it reflects in her humanities class. the course description is definitely not what she's teaching in her class. she's very disorganized as well", + "pos": 0.117, + "neu": 0.784, + "neg": 0.099, + "_id": { + "$oid": "6711d487cd60fca157e5babe" + } + }, + { + "text": "I had Danza @ jjay and i honestly enjoyed her class just make sure you are always on time to class and try not to miss class either she told at least half the class to drop it since they were constantly late or absent", + "pos": 0.193, + "neu": 0.767, + "neg": 0.04, + "_id": { + "$oid": "6711d487cd60fca157e5babf" + } + }, + { + "text": "easy A as long as you show up to class on time and do your assignments. Danza was an awesome teacher, she gave everyone a chance to freely express themselves. yes she's a little unorganized, but she means well and wants to see her students do their best and succeed. very caring!", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bac0" + } + }, + { + "text": "she's super disorganized but all in all she is very knowledgable", + "pos": 0.188, + "neu": 0.69, + "neg": 0.123, + "_id": { + "$oid": "6711d487cd60fca157e5bac1" + } + }, + { + "text": "i took her at john jay and honestly even though she makes you read a lot the papers really open your mind. DONT EVER SHOW UP LATE and always come to class she will def like you.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bac2" + } + }, + { + "text": "Although Professor Danza may seem a bit disorganized, she is a great professor. Doesn't really pressure students. Let students to express opinions freely. Down-to-earth type of professor. Take her.", + "pos": 0.251, + "neu": 0.689, + "neg": 0.061, + "_id": { + "$oid": "6711d487cd60fca157e5bac3" + } + }, + { + "text": "I really liked professor Danza. In my opinion she's a really nice person & she's willing to help her students. She lets students use their brains & do the analyzing for themselves. She doesn't bombard the student w/information. The reading was fine[had less than 24 days to read 5 books] Overall, I recommend her she's GREAT & I'm thankful I took her", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bac4" + } + }, + { + "text": "probably the dumbest and least organized teacher I've ever had. i never understood what was going on in the class, not because the material was difficult but because she would go off on completely unrelated topics. she also likes to give assignments through email without any warning in the previous class. all in all she is a terrible teacher AVOID.", + "pos": 0.087, + "neu": 0.748, + "neg": 0.165, + "_id": { + "$oid": "6711d487cd60fca157e5bac5" + } + }, + { + "text": "Danza fails as a writing professor. She grades way too easily, which doesn't improve your writing. She talks and complains about her personal life WAY too much. She also embarrasses students who don't understand words. It's really hard for her to stick to one topic, and says her opinions no matter how irrelevant and cruel they may be.", + "pos": 0.035, + "neu": 0.72, + "neg": 0.246, + "_id": { + "$oid": "6711d487cd60fca157e5bac6" + } + }, + { + "text": "she's good but doesnt help u improve your writing. she talks about herself alot. makes u write alot of papers!!", + "pos": 0.076, + "neu": 0.666, + "neg": 0.258, + "_id": { + "$oid": "6711d487cd60fca157e5bac7" + } + }, + { + "text": "She's great and a easy grader. But she seems to talk ALOT about her personal life. She does help you alot when you need it.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bac8" + } + }, + { + "text": "Although the class is easy, it is very painful to sit through. She doesn't teach you how to write or critique well. She talks about her personal life way too much. She reminds me of an insane hippie. Don't take her you're going to dread going to class everyday to hear her talk about her divorce and her children", + "pos": 0.074, + "neu": 0.795, + "neg": 0.131, + "_id": { + "$oid": "6711d487cd60fca157e5bac9" + } + }, + { + "text": "Great professor. Truly cares about her students and I've always looked forward to going to her class.", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5baca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d487cd60fca157e5bacc" + }, + "professor_name": "Linda Villarosa", + "rating": 4.6, + "department": "Media Arts department", + "comments": [ + { + "text": "I don't get how you can say you teach writing but you don't actually teach writing. Her grading makes no sense at all, what she says in her syllabus and what she says to your face are totally inconsistent. Worst class I've taken", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d487cd60fca157e5bacd" + } + }, + { + "text": "Grades harshly and the assignments don't reflect what taught in class. Rants during lectures about unrelated material.", + "pos": 0.0, + "neu": 0.874, + "neg": 0.126, + "_id": { + "$oid": "6711d487cd60fca157e5bace" + } + }, + { + "text": "She is one of the best professor at CCNY. I took the class thinking that it will be another boring class and boring semester but to my surprise I loved going to class again. We had amazing readings, class discussions, writing assignments. I wish I could take all my classes with her. Also she is welcoming and encouraging. Communicate if you need.", + "pos": 0.331, + "neu": 0.63, + "neg": 0.039, + "_id": { + "$oid": "6711d487cd60fca157e5bacf" + } + }, + { + "text": "The best professor I've ever had. She's always willing to help you in person or through email. She makes every class really engaging , informative and worth going to. Take her!!", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bad0" + } + }, + { + "text": "Prof. Villarosa, is genuinely one of the greatest profs I've ever had, she is so willing to help every individual student, her class is so interesting, and engaging, every paper I wrote, I enjoyed writing, I always look forward to her class as she is so kind and attentive. One of the few prof's that makes you feel sad that class is almost over! :)", + "pos": 0.285, + "neu": 0.678, + "neg": 0.037, + "_id": { + "$oid": "6711d487cd60fca157e5bad1" + } + }, + { + "text": "Villarosa is a true professor. She is so passionate about what she teaches and I was granted the opportunity to learn race and media from her. She really connected with us by sharing her own stories and gave us insightful feedback on our papers. The papers are very short and are free write, so don't sweat it.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bad2" + } + }, + { + "text": "She is amazing. Best professor ever. Yes she makes you work for your grade but its worth it. She gives opportunities for extra credit to bring up your grade and she is always available by email. Do yourself a favor and take a class with her.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bad3" + } + }, + { + "text": "AND THIS IS WHAT A REAL PROFESSOR LOOKS LIKE. DO YOURSELF A FAVOR AND TAKE HER.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bad4" + } + }, + { + "text": "Available by email all the time. Will always make time to meet. Gives individualized feedback and explains clearly what she looks for from you. Is super concerned about student's success and growth. She just cares! Haven't met one person who doesn't love her. She's great!", + "pos": 0.332, + "neu": 0.613, + "neg": 0.054, + "_id": { + "$oid": "6711d487cd60fca157e5bad5" + } + }, + { + "text": "THE BEST", + "pos": 0.808, + "neu": 0.192, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bad6" + } + }, + { + "text": "The best professor I've ever had. Helpful and practical. I can't wait to take her again.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bad7" + } + }, + { + "text": "She is definitely someone I now look up too. She is direct and lets you know what she expects. Her goal is to make every single student in her class a better writer. I appreciated her so much that I wanted her to be my mentor and taking more classes with her. Due to her abilities and knowledge I have a clear idea what I plan to do. INSPIRATIONAL!!!", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bad8" + } + }, + { + "text": "THE BOMB DOT COM. One of my fav professors ever. She is so funny and hates the \"to-be\" verb (even though I just used it.) She cares about her students and wants them to write correctly. I've taken her for 2 different classes and will be taking her again next semester.", + "pos": 0.155, + "neu": 0.732, + "neg": 0.113, + "_id": { + "$oid": "6711d487cd60fca157e5bad9" + } + }, + { + "text": "SHE IS THE BEST! From the very beginning she made it clear what is needed, my writing and grammar continues to improve. Throughout the semester i was entertained by her amazing personality. I loved my SPRING 2014 semester because of her, therefore i'm taking her again this semester for Reporting & Writing. News Quiz everyday, attendance is required", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5bada" + } + }, + { + "text": "Great professor. She has an interest in the material she teaches and has a large knowledge base from working in the industry. For the projects, the grades were a competition, so you need to work to be better than your classmates. I'd give her an A+.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5badb" + } + }, + { + "text": "She is the Best professor I ever had. Not only she is knowledgeable in journalism, she is also a cool person. I recommend any student to take her classes. At the end of the class, you will be a journalist!", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5badc" + } + }, + { + "text": "I LOVE her. I've taken three classes with her already, and she is the reason why I decided to minor in Journalism. She is sweet and down to earth, but beyond that, extremely knowledgeable in her field. There is no textbook use, because everything is learned in class and through the work you're given. She is very helpful, the best prof at CCNY.", + "pos": 0.201, + "neu": 0.762, + "neg": 0.037, + "_id": { + "$oid": "6711d487cd60fca157e5badd" + } + }, + { + "text": "Villarosa is an exceptional prof. She enjoys the work she does & is completely reasonable in every way. Extremely intelligent and is always there to mentor or give advice. I've never had a greater professor at CCNY. Her teaching is profound & it'd be a shame if you missed the opportunity to take a class with her throughout your college experience.", + "pos": 0.134, + "neu": 0.763, + "neg": 0.103, + "_id": { + "$oid": "6711d487cd60fca157e5bade" + } + }, + { + "text": "She is an absolute gem. I have never taken a class that is so interesting and a professor that is so welcoming and orderly, that I actually look forward to attending it each and every time. She doesn't use a textbook which forces students to keep up with current events, and all assignment are 500 words at most and clear. :-)She's the absolute best!", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d487cd60fca157e5badf" + } + }, + { + "text": "Ahh I LOVE this teacher. She is the only teacher at City College so far that has helped guide me in the right direction. Def. Extremely helpful. It isn't an easy A but everything she has taught was so interesting I barely even had to study. I had her for both MCA 101 or 233. Seriously No complaints. She believes in all of her students. Inspiring.", + "pos": 0.207, + "neu": 0.746, + "neg": 0.047, + "_id": { + "$oid": "6711d487cd60fca157e5bae0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d488cd60fca157e5bae2" + }, + "professor_name": "Albi Arapi", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Best professor in the department.", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5bae3" + } + }, + { + "text": "Salutations, the real JD at your service. The lab assignments were fun and interesting no matter how difficult it is. As a graduating senior at City College of New York, he is the best CSC 343 Lab Instructor and is very patient and grants extensions to students who are facing illness like me with the intention to graduate and get job.", + "pos": 0.2, + "neu": 0.715, + "neg": 0.085, + "_id": { + "$oid": "6711d488cd60fca157e5bae4" + } + }, + { + "text": "Salutations fellow classmates *bows and tips fedora* JD at your service! *Feeling like Nobita from Doraemon in terms of shyness and naivety*", + "pos": 0.168, + "neu": 0.742, + "neg": 0.09, + "_id": { + "$oid": "6711d488cd60fca157e5bae5" + } + }, + { + "text": "One of the best professors in CCNY. He actually wants to help you succeed. Do all the work and you will get an A", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5bae6" + } + }, + { + "text": "Honestly a saving grace to supplement thr corequisite CSc 34200. Ensures student understanding and appreciates a joke or two. Great class.", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5bae7" + } + }, + { + "text": "Professor Albi was a great professor and a pleasure to have. He listens to student feedback and questions and responds accordingly. Friendly and likeable!", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5bae8" + } + }, + { + "text": "ALBI IS THE GOAT", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5bae9" + } + }, + { + "text": "He's a great guy and an even better professor. When paired with Gertner as the 342 teacher, Albi was just respite we needed to just be able to get through and he really understands us students and our struggles. He makes sure we understand the topics rather than just blaze thru the topic. Take him, show up, do your work, and crack a few jokes.", + "pos": 0.153, + "neu": 0.813, + "neg": 0.034, + "_id": { + "$oid": "6711d488cd60fca157e5baea" + } + }, + { + "text": "Awesome professor and TA. Just do your work, even showing a effort in your work will get you a fair grade.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baeb" + } + }, + { + "text": "Will kiss the man if I could. One of the best professor/TA in CCNY for CS. Complete your work, ask him questions when you have the chance, and in this course he do accept late submission. Overall, No money no honey. Do all your work and you will get an A, straight up.", + "pos": 0.242, + "neu": 0.723, + "neg": 0.035, + "_id": { + "$oid": "6711d488cd60fca157e5baec" + } + }, + { + "text": "HE IS THE BEST! handsdown! Take him and you wont regret it.", + "pos": 0.44, + "neu": 0.56, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baed" + } + }, + { + "text": "One of the best professor!", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baee" + } + }, + { + "text": "Amazing Professor, understood his students well and graded accordingly!", + "pos": 0.469, + "neu": 0.531, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baef" + } + }, + { + "text": "The best CCNY CS professor that cares about his students, is very considerate. He is fair, if you do all the work and put in the effort, you will receive more than a fair grade.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baf0" + } + }, + { + "text": "Professor Albi's meticulous guidance in the CSC343 online lab is commendable. His detailed explanations and engagement virtually ensure a clear understanding of complex concepts. His dedication to fostering a rich learning environment online is truly appreciated.\n --JD", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baf1" + } + }, + { + "text": "great", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baf2" + } + }, + { + "text": "great professor. very flexible", + "pos": 0.759, + "neu": 0.241, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baf3" + } + }, + { + "text": "This man is one of the best professors I've had. Very understandable of students and accommodates very well. Classes with him are guaranteed to be online except for final project presentations. Teaches us practical, real world topics such as Spring Boot, Android and databases. Highly encourage people to take him if a class is open!", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baf4" + } + }, + { + "text": "He is outstanding!", + "pos": 0.682, + "neu": 0.318, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baf5" + } + }, + { + "text": "Very open to students needs. Will make class online if need be. Classes are relatively easy and he makes sure students understand the topics. Very tech savvy and seems to want to prepare us for the industry. Was taught Git and GitHub even though it was not necessarily on the syllabus. Overall great professor.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5baf6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d488cd60fca157e5baf8" + }, + "professor_name": "Jeff Gitlin", + "rating": 1.6, + "department": "Computer Science department", + "comments": [ + { + "text": "In class the professor read the textbook and would try the practice problems yet would often get them wrong and make up excuses for not doing them correctly. I was able to understand the material only due to extensive outside help. He grades very harshly taking off many points on assignments if it's not exactly how he would do it. Don't take him", + "pos": 0.039, + "neu": 0.876, + "neg": 0.085, + "_id": { + "$oid": "6711d488cd60fca157e5baf9" + } + }, + { + "text": "He is one of the worst CS professors. There's 6 assignments, lab midterm + class midterm, and final. The four projects are doable but last 2 was beyond difficult. The lab midterm counts the most. I think teaches doesn't teach anymore .", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d488cd60fca157e5bafa" + } + }, + { + "text": "He's okay but he has attitude is not good and he drags it with the number of test questions (though they are quite easy).", + "pos": 0.229, + "neu": 0.606, + "neg": 0.165, + "_id": { + "$oid": "6711d488cd60fca157e5bafb" + } + }, + { + "text": "Avoid this professor at any cost, even if u have to wait a semester. (Unless you already know C++)", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d488cd60fca157e5bafc" + } + }, + { + "text": "I love programming and he actually made me hate it for awhile, didn't go to most lectures because they were absolutely worthless, he will stay at his desk writing code at the command line for 50min then leave. If you have 0 exp programming don't take him, also there is a big difference in difficulty each project its absolutely crazy", + "pos": 0.059, + "neu": 0.756, + "neg": 0.185, + "_id": { + "$oid": "6711d488cd60fca157e5bafd" + } + }, + { + "text": "In all honesty... he is extremely, extremely rude and speaks to students with a nasty tone. He will go out of his way to let you know how poorly you are doing without offering up suggestions to become successful in the class. Regret taking him, but it is what it is.", + "pos": 0.079, + "neu": 0.807, + "neg": 0.114, + "_id": { + "$oid": "6711d488cd60fca157e5bafe" + } + }, + { + "text": "If all of your projects are good, even though your exam grades are terrible, you will still pass with a C. Your projects MUST be perfect though.", + "pos": 0.196, + "neu": 0.712, + "neg": 0.092, + "_id": { + "$oid": "6711d488cd60fca157e5baff" + } + }, + { + "text": "If you have no experience in coding, like me, you will be completely lost in his class. He talks as if everyone understands what he is saying and goes off topic talking about a job he once had. His projects are hard because of an unreasonable expectation that the students should already be experts. If you manage to get him, TRANSFER OUT!", + "pos": 0.037, + "neu": 0.866, + "neg": 0.097, + "_id": { + "$oid": "6711d488cd60fca157e5bb00" + } + }, + { + "text": "If you go into this class knowing 0 programming, you're in for a rough ride. He codes on the command line which is something you get used to. Not very clear when he lectures, but his projects are where I learned the most from. Projects rating (4.5/5)", + "pos": 0.0, + "neu": 0.964, + "neg": 0.036, + "_id": { + "$oid": "6711d488cd60fca157e5bb01" + } + }, + { + "text": "the worst professor ever. If you have legit no idea about programming, be aware and don't take him, even if it takes costs you one semester for a better professor do it. This guy doesn't make any sense. Choosing him as my professor was one of the worst thing i ever did. Beware and don't take him. i wish i could give him negative rating.", + "pos": 0.071, + "neu": 0.75, + "neg": 0.179, + "_id": { + "$oid": "6711d488cd60fca157e5bb02" + } + }, + { + "text": "If I didn't know how to program before taking the class I would have dropped. His coding assignments aren't especially difficult, but his instructions are so unclear to the point of being indecipherable. I only attended the class 3-4 times throught the semester. He programs on the command line during class.", + "pos": 0.031, + "neu": 0.906, + "neg": 0.063, + "_id": { + "$oid": "6711d488cd60fca157e5bb03" + } + }, + { + "text": "This professor is the worst, if I did't know anything about coding, I would've drop this class immediately , his lecture have no structure, he is just jumping around topics.", + "pos": 0.0, + "neu": 0.763, + "neg": 0.237, + "_id": { + "$oid": "6711d488cd60fca157e5bb04" + } + }, + { + "text": "Taking this professor implies you're ready for self study. Material of the class is heavy if you haven't code before as professor talks in a technical way. Lectures aren't helpful as professor will talk a lot about non relevant topics if he does, it'll broadly explain. About tests are not that hard but the questions can be difficult to understand.", + "pos": 0.045, + "neu": 0.878, + "neg": 0.077, + "_id": { + "$oid": "6711d488cd60fca157e5bb05" + } + }, + { + "text": "His lectures literally make no sense unless you've read the entire textbook before attending his first class.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d488cd60fca157e5bb06" + } + }, + { + "text": "AVOID AT ALL COSTS!!!! unless you are already professional programmer just wait for another teacher. This guy is a nightmare personified, he doesn't teach just continues babbling about technical terms that you don't need to know. Extremely Confusing and rude, claims he doesn't like to code in front of us because of personal reason. DON'T DO IT!!!!!", + "pos": 0.0, + "neu": 0.82, + "neg": 0.18, + "_id": { + "$oid": "6711d488cd60fca157e5bb07" + } + }, + { + "text": "This guy cannot teach. Do yourself a favor and do not take this class under any circumstances, unless: you are already proficient in C++ or programming, you have time to read ahead in the textbook, or you don't have any other tough classes on your plate. It is honestly better to wait a semester or 2 to take a CS class if he is the only option left.", + "pos": 0.116, + "neu": 0.864, + "neg": 0.02, + "_id": { + "$oid": "6711d488cd60fca157e5bb08" + } + }, + { + "text": "This guy, he doesn't even know what he codes and expects people to code. he also doesn't know how to english", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d488cd60fca157e5bb09" + } + }, + { + "text": "If you don't know ANYTHING about computer science, avoid him unless you read the entire textbook before going to his first class. Even then, his lectures are useless since he repeats from textbook. They are so boring they WILL make you sleep. Labs are easy if you know what to do and how to do it. Homework and quizes are the easiest thing ever.", + "pos": 0.078, + "neu": 0.812, + "neg": 0.11, + "_id": { + "$oid": "6711d488cd60fca157e5bb0a" + } + }, + { + "text": "his pop-up quizzes are easy, his homeworks are easy, but he is not very clear when he lectures. he uses technical words that can confuse you if you are taking the C++ for the first time. His written instructions are so confusing that you need time to understand what he wants from you. overall, you can pass with good grade if you work hard.", + "pos": 0.103, + "neu": 0.76, + "neg": 0.137, + "_id": { + "$oid": "6711d488cd60fca157e5bb0b" + } + }, + { + "text": "He is ever ever ever worst professor. His teaching does not organize and mass up . He just say alway \"just use\" when u study computer sicence, plz plz avold him", + "pos": 0.075, + "neu": 0.807, + "neg": 0.118, + "_id": { + "$oid": "6711d488cd60fca157e5bb0c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d489cd60fca157e5bb0e" + }, + "professor_name": "Dave Miko", + "rating": 3.4, + "department": "Art department", + "comments": [ + { + "text": "This professor was just ok. He has a some sarcastic humor and can be snarky at times. It felt like a beginner class, just there's a lot of work to be done but that's to be expected in art. He gets upset if you forget supplies at home. He's an easy grader though.", + "pos": 0.116, + "neu": 0.765, + "neg": 0.118, + "_id": { + "$oid": "6711d489cd60fca157e5bb0f" + } + }, + { + "text": "Professor Miko was pretty easy. Attendance and participation are super important but you don't have to say much when participating in class. A simple explanation of your work will do. He can be pretty entitled sometimes but as long as you do the work the way he says, then you should be fine. The final was super easy so failing is pretty difficult.", + "pos": 0.335, + "neu": 0.573, + "neg": 0.091, + "_id": { + "$oid": "6711d489cd60fca157e5bb10" + } + }, + { + "text": "He's great and the style he teaches is nice, but do keep in mind this class really is like beginners' art boot camp, it's not a chill art class where you can lazy things, he likes the assignments completed the way he wants and there are plenty of them to do throughout the semester, supplies are also costly and you use every last one of them.", + "pos": 0.154, + "neu": 0.783, + "neg": 0.063, + "_id": { + "$oid": "6711d489cd60fca157e5bb11" + } + }, + { + "text": "Prof. Miko is great. I learned a lot about the basics of art in this class, & the assignments were very simple & fun. The work is very time consuming, so make sure u allot at least a few hours a week for these assignments. The materials needed are quite pricey, costing up to $150 in total, but gotta do what u gotta do. Take him if you can!", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb12" + } + }, + { + "text": "Professor Miko was my first art professor and I was very nervous about how I would preform as an art student before taking his class. I found the professors instruction to be very useful and honestly his class and teaching have encouraged me pursue a creative career. Dont be fooled by the harsh reviews this is a great professor.", + "pos": 0.244, + "neu": 0.685, + "neg": 0.071, + "_id": { + "$oid": "6711d489cd60fca157e5bb13" + } + }, + { + "text": "Surprised no one has mentioned this but you will spend a good amount on the materials for this class, the kit the professor sets up should cost roughly $86 (tax included) and you will also need to eventually purchased 300+ color aide 3x4 paper that costs $50 or so, and possibly a 3/4 wash brush if you don't have one already.", + "pos": 0.082, + "neu": 0.894, + "neg": 0.025, + "_id": { + "$oid": "6711d489cd60fca157e5bb14" + } + }, + { + "text": "Not as bad as these reviews make him out to be. Objective (and lenient) grader, homework assignments can be time consuming (some more than others) but he gives great feedback. He is straight forward, responds quickly to emails in case you have any questions, always go prepared (w/ materials). Attendance and participation are mandatory to succeed.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb15" + } + }, + { + "text": "Whatever you do, try to avoid this professor at all costs. He is extremely entitled, rude, disrespectful and it is all uncalled for. He is an easy grader with art assignments but the littlest and simplest things you do would annoy him and he will be rude to you unnecessarily. Made me feel like I was in high school again, except worse. Toxic.", + "pos": 0.089, + "neu": 0.708, + "neg": 0.203, + "_id": { + "$oid": "6711d489cd60fca157e5bb16" + } + }, + { + "text": "The dude is very rude. His assignments take a lot of time so if youre taking some difficult math and science classes, DONT TAKE THIS CLASS! Also, he literally makes you comes just to take a 5 min final like boi what? He has so much free time but still makes you come. Im someone who loves art but this class and its assignments were SUPER boring", + "pos": 0.191, + "neu": 0.726, + "neg": 0.083, + "_id": { + "$oid": "6711d489cd60fca157e5bb17" + } + }, + { + "text": "It is required to bring your own art supplies to class. You will have to do class assignments and if you forget to bring your art supplies, the professor will mark you absent. You are only allowed to have one or two absences. You will have two writing assignments and one final exam. The professor is strict and he does give a lot of homework.", + "pos": 0.0, + "neu": 0.971, + "neg": 0.029, + "_id": { + "$oid": "6711d489cd60fca157e5bb18" + } + }, + { + "text": "His an easy grader but there was a time I felt he was unprofessional and rude, one time I forgot to bring my brush and paint, and I spoke to him to let him know, and in front of everyone he raised his voice at me and told me that it is not his problem. If students decide to take his class, just know attendance, and participation counts a lot.", + "pos": 0.061, + "neu": 0.832, + "neg": 0.107, + "_id": { + "$oid": "6711d489cd60fca157e5bb19" + } + }, + { + "text": "I found this professor to be sarcastic and unwilling to take the time to help students who were struggling. His class is difficult and he seems to expect you to get it immediately otherwise he comes across as offended. Overall its a tense classroom environment. Long class and no bathroom break.", + "pos": 0.045, + "neu": 0.726, + "neg": 0.229, + "_id": { + "$oid": "6711d489cd60fca157e5bb1a" + } + }, + { + "text": "This professor is great. Overall like 10 assignments for homework throughout the semester. The assignments aren't difficult, but they due take time. He lets you re-do them if you don't like the grade you get. There's a final, but he gives you the questions and answers.", + "pos": 0.116, + "neu": 0.831, + "neg": 0.053, + "_id": { + "$oid": "6711d489cd60fca157e5bb1b" + } + }, + { + "text": "He's a great professor, homework could be a lot and overwhelming sometimes, but it's such a cool class and even cooler professor. He's super nice and really cares about what he's doing. He's also an easy grader as long as he sees that the student did their best. Honestly, God bless that man!", + "pos": 0.477, + "neu": 0.523, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb1c" + } + }, + { + "text": "The key to this teacher is class participation and homework, though the homework can range from easy to intense. A little hard to get use to at first, but otherwise you shouldn't have much problems with Miko.", + "pos": 0.15, + "neu": 0.824, + "neg": 0.026, + "_id": { + "$oid": "6711d489cd60fca157e5bb1d" + } + }, + { + "text": "He is dismissive and strange and seems to have a difficult time connecting with students. I thought many of his comments were inappropriate. This could be a great class with lots of potential for learning, but it's more about jumping through the \"Miko hoops\". Try to find a different teacher.", + "pos": 0.048, + "neu": 0.892, + "neg": 0.06, + "_id": { + "$oid": "6711d489cd60fca157e5bb1e" + } + }, + { + "text": "Awesome professor, I really enjoyed the class. He pays attention to class participation, so make sure you participate. Also COME ON TIME and DON'T IGNORE ATTENDANCE. Easy grader, like many others said: HAND IN ALL YOUR ASSIGNMENTS ON TIME! Overall, You will have fun and learn lots. P.S: materials are not as expensive as you would except . :p", + "pos": 0.323, + "neu": 0.646, + "neg": 0.031, + "_id": { + "$oid": "6711d489cd60fca157e5bb1f" + } + }, + { + "text": "Sometimes I would be afraid of participating because his way of communicating back isn't kind. He has a weird humor too, but very kind grader so if you do the the work it should be ok. Attendance is EVERYTHING, you wont pass if you are absent three times. I did all my work and Aced almost every single thing, and some people cried because of atdance", + "pos": 0.089, + "neu": 0.822, + "neg": 0.089, + "_id": { + "$oid": "6711d489cd60fca157e5bb20" + } + }, + { + "text": "Show up to class everyday and do every single homework assignment. He isn't a tough grader, that's his best quality. Beware when approaching, can be very sarcastic and make you feel stupid. Participate in class, I could tell he hated when no one would speak. Don't be late, I warn you, DON'T be late. Really confusing when explaining certain stuff.", + "pos": 0.103, + "neu": 0.686, + "neg": 0.211, + "_id": { + "$oid": "6711d489cd60fca157e5bb21" + } + }, + { + "text": "Made art very fun. He's knows his stuff and he's funny. Make sure you do all the assignments otherwise you'll suffer from work overload. Overall great professor plus he's really attractive in his own unique way :3", + "pos": 0.356, + "neu": 0.533, + "neg": 0.11, + "_id": { + "$oid": "6711d489cd60fca157e5bb22" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d489cd60fca157e5bb24" + }, + "professor_name": "George Kranc", + "rating": 2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Very easy to pass with an A once you take Kranc. Just do his old exams, he repeats the same problems. Make sure you follow his instructions with the home work presentation, you can copy the solutions, just make sure you hand them in the way he ask you to. Guaranteed to get an A this way", + "pos": 0.191, + "neu": 0.768, + "neg": 0.041, + "_id": { + "$oid": "6711d489cd60fca157e5bb25" + } + }, + { + "text": "Just do the old finals and walk out the room...you won't learn anything in his class. btw he substracts a lot of points of those homeworks..", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb26" + } + }, + { + "text": "He is from the old school, but you can still learn a lot from him if you pay attention and apply yourself. When you ask questions he is extremely helpful and he cares about his students.", + "pos": 0.19, + "neu": 0.772, + "neg": 0.037, + "_id": { + "$oid": "6711d489cd60fca157e5bb27" + } + }, + { + "text": "Oldest professor in CCNY. Explains material poorly, all he does is write stuff on board. HW is collected, 10% of final grade. He gives 2 midterms and drops lowest. Midterm is 40% of grade and final is 50%. Gives same exact problems as his old tests. Understand and know these problems inside-out, and you will ace the class. I got an A+ in his class.", + "pos": 0.0, + "neu": 0.886, + "neg": 0.114, + "_id": { + "$oid": "6711d489cd60fca157e5bb28" + } + }, + { + "text": ":)", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb29" + } + }, + { + "text": "Besides the fact that he's old, writes microscopically small, close-minded, hard of hearing, horrible HW grader, poor communicator, and afraid of chalk dust, he's a good professor.", + "pos": 0.086, + "neu": 0.678, + "neg": 0.236, + "_id": { + "$oid": "6711d489cd60fca157e5bb2a" + } + }, + { + "text": "He's the only one teaching EE205, so if you're an EE or Comp. Engr. major, you're pretty much screwed. Prepare to lose your vision with his chicken-scratch writing on the board. Incomprehensible and O.C.D., you need tremendous patience and motivation to actually pay attention to him. Get copies of old exams to get an A (forget the book).", + "pos": 0.119, + "neu": 0.746, + "neg": 0.135, + "_id": { + "$oid": "6711d489cd60fca157e5bb2b" + } + }, + { + "text": "I think Kranc is one of the worst professors I've had in college ever. I found it very hard to even go to his class because it was so boring. I didn't learn much from his class, partially because I didn't apply myself but, regardless of that if there were another teacher for this class I would have taken them. Just study his old exams, easy A or B", + "pos": 0.052, + "neu": 0.87, + "neg": 0.079, + "_id": { + "$oid": "6711d489cd60fca157e5bb2c" + } + }, + { + "text": "Bring binoculars to class. He writes extremely small on the board, hard to see even if you're in the front row. Tough asking him questions, he tends to get lost if you do. He does the hw for you. Exams haven't changed in years. I doubt many students fail this class, but its not a fun class", + "pos": 0.0, + "neu": 0.814, + "neg": 0.186, + "_id": { + "$oid": "6711d489cd60fca157e5bb2d" + } + }, + { + "text": "rough teacher..", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb2e" + } + }, + { + "text": "Kranc is the world's oldest and worst idiot,ogre, beast,monster.He is very incoherent,incosistent,and vindictive. If he is out to get you, he will.He should be fired without benefits.Grading policy makes no room to pass especially if he has his eye on you.Made me lose total interest in his class. Someone should call the animal to order", + "pos": 0.05, + "neu": 0.759, + "neg": 0.191, + "_id": { + "$oid": "6711d489cd60fca157e5bb2f" + } + }, + { + "text": "Both of the classes I took with him are crucial in my field (EE). Unfortunately, he does not teach well. If a good grade is all you want, take his classes ASAP (before he finally retires). If you really want to learn, skip him and look for someone else (anyone would do it! Kranc is useless).", + "pos": 0.092, + "neu": 0.792, + "neg": 0.116, + "_id": { + "$oid": "6711d489cd60fca157e5bb30" + } + }, + { + "text": "i had 3 classes with this old dude. This is the equation for A.. A = (get past exams) + (show up for the first 10 min so he can mark u present, then leave) + (do well on exams, they dont change, not even since 1990)", + "pos": 0.043, + "neu": 0.932, + "neg": 0.025, + "_id": { + "$oid": "6711d489cd60fca157e5bb31" + } + }, + { + "text": "Should have retired 10 yrs ago. He spoonfeeds you, does the homework for you, and then expects a good result. As far as teaching: mumbles to himself a lot, writes small, nearly deaf, anal-retentive.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb32" + } + }, + { + "text": "He is \"BAD\" He doesn't know the material himself, trust me on this. He does problems on the board from his own notes he is holding and still makes mistakes. If you ask a question he gets ornery and ought right obnoxious in a transparent attempt to hide his own ignorance on the subject.", + "pos": 0.049, + "neu": 0.702, + "neg": 0.249, + "_id": { + "$oid": "6711d489cd60fca157e5bb33" + } + }, + { + "text": "Solid professor, old but still ok. didn't have any problems with him", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb34" + } + }, + { + "text": "He is the worst at CCNY does not give any extra help.Very Hard grading and he has female student preferences.", + "pos": 0.0, + "neu": 0.766, + "neg": 0.234, + "_id": { + "$oid": "6711d489cd60fca157e5bb35" + } + }, + { + "text": "Very bad teacher; he does not explain anything. My advice try to avoid him.", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d489cd60fca157e5bb36" + } + }, + { + "text": "he is the oldest in the CUNY. shouldof retired. he is bad but his TA even worse. taking his TA's class was one of the worst mistakes i have even had. the prof doesnt teach, and TA doesnt no how to teach either. like teacher like student....", + "pos": 0.138, + "neu": 0.624, + "neg": 0.239, + "_id": { + "$oid": "6711d489cd60fca157e5bb37" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d489cd60fca157e5bb38" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d489cd60fca157e5bb3a" + }, + "professor_name": "Diana Belanger", + "rating": 3, + "department": "Biology department", + "comments": [ + { + "text": "She is probably the worst teacher there is. Took her for a 6 week summer course at Quincy college. She told us to study certain things that would be on the test that wasn't. She was the worst! Do not take this lady", + "pos": 0.042, + "neu": 0.791, + "neg": 0.168, + "_id": { + "$oid": "6711d489cd60fca157e5bb3b" + } + }, + { + "text": "she was quiet possibly the worst professor i have ever had in my life. she lied to us telling us that certain things would be on a test and it wouldn't be. when we arrived at class she told us to open our books and read and do excercises. NO TEACHING WHAT SO EVER. DO NOT TAKE HER CLASS. terrible", + "pos": 0.03, + "neu": 0.788, + "neg": 0.182, + "_id": { + "$oid": "6711d489cd60fca157e5bb3c" + } + }, + { + "text": "The worst instructor/prof I ever had in college. She didn't care about the student. She lied to us. Exams are difficult she didn't give a review, she doesn't curve the grades even though no body got a hundred. She also said she would curve the grade at end of the class. No extra credit even though every professor in the department does it.", + "pos": 0.0, + "neu": 0.753, + "neg": 0.247, + "_id": { + "$oid": "6711d489cd60fca157e5bb3d" + } + }, + { + "text": "Ice Queeen. She is so cold, doesn't care how well her students are doing. Does not want to interact with the student.", + "pos": 0.0, + "neu": 0.762, + "neg": 0.238, + "_id": { + "$oid": "6711d489cd60fca157e5bb3e" + } + }, + { + "text": "She taught the bio lab for 207. The final test for that lab was unfair. She gave a practical with thirty questions. She gave us one minute each for question and the thirty seconds the second time around. She's good with her explainations.", + "pos": 0.062, + "neu": 0.872, + "neg": 0.066, + "_id": { + "$oid": "6711d489cd60fca157e5bb3f" + } + }, + { + "text": "Knows the subject and explains things well.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb40" + } + }, + { + "text": "This woman can take her stupid 'bell curve' grading and stuff it where the sun doesn't shine. If you do A work you should get an A regardless of how the rest of the class does.", + "pos": 0.0, + "neu": 0.911, + "neg": 0.089, + "_id": { + "$oid": "6711d489cd60fca157e5bb41" + } + }, + { + "text": "she is very clear and knows what she's doing. her tests weren't too hard, just read the book and study your notes.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb42" + } + }, + { + "text": "Ruined my gpa last semester, do not take her... you were warned!!", + "pos": 0.0, + "neu": 0.634, + "neg": 0.366, + "_id": { + "$oid": "6711d489cd60fca157e5bb43" + } + }, + { + "text": "Yeah...she is tough and her exams are hard hard hard ....but she explains the stuff very well...in fact her exams are based on textbook...if you read a txtbook and know all the stuff from the txtbook you will do fine", + "pos": 0.052, + "neu": 0.832, + "neg": 0.115, + "_id": { + "$oid": "6711d489cd60fca157e5bb44" + } + }, + { + "text": "AHHHH hard hard hard hard! Take Goode or anyone else.. there is no room for error, she has NO extra credit. EVERY OTHER Bio prof has extra credit on their tests... SHE HAS NONE! DOES NOT CARE!", + "pos": 0.107, + "neu": 0.554, + "neg": 0.339, + "_id": { + "$oid": "6711d489cd60fca157e5bb45" + } + }, + { + "text": "I had to drop this class because her tests were so hard. took it with another professor and got an A-. Professor belanger always seem like she's in a rush, and doesn't do any review before the exams. a funny lady but i wouldn't recommend anyone taking her!", + "pos": 0.07, + "neu": 0.817, + "neg": 0.113, + "_id": { + "$oid": "6711d489cd60fca157e5bb46" + } + }, + { + "text": "She is clear about what she wants to get across. But i am not clear on what we need to know for the first exam. A review would b great!", + "pos": 0.206, + "neu": 0.72, + "neg": 0.074, + "_id": { + "$oid": "6711d489cd60fca157e5bb47" + } + }, + { + "text": "everything is clear and understandable.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb48" + } + }, + { + "text": "She explains everything clearly and gets to the point. She also makes sure u understand her and the concepts no matter what.", + "pos": 0.199, + "neu": 0.758, + "neg": 0.043, + "_id": { + "$oid": "6711d489cd60fca157e5bb49" + } + }, + { + "text": "a funny woman and very low key but clear and informing. explains work and information clearly and thoroughly.", + "pos": 0.362, + "neu": 0.569, + "neg": 0.069, + "_id": { + "$oid": "6711d489cd60fca157e5bb4a" + } + }, + { + "text": "She really great at clarifying anything you may need help with and is really good at explaining things.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb4b" + } + }, + { + "text": "She explains things somewhat clearly but goes a little fast for me.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb4c" + } + }, + { + "text": "For the first three labs, she has given alot information and has made the topics as clear as she can. She is very helpful when explaining a topic. she breaks everything down into an easier format to understand.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d489cd60fca157e5bb4d" + } + }, + { + "text": "The first 3 labs have been been good. She is a good teacher, but sometimes she can teach at a very fast pace. If you not up on the terms and readings you will be lost. As for her first test, you have to study your notes very well.", + "pos": 0.127, + "neu": 0.819, + "neg": 0.054, + "_id": { + "$oid": "6711d489cd60fca157e5bb4e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48acd60fca157e5bb50" + }, + "professor_name": "Barbara Zajc", + "rating": 2.7, + "department": "Chemistry department", + "comments": [ + { + "text": "Exam questions are very different from the textbook problems. Grade based only on three exams. No extra credit. Exam average was low each time (40-50%). Despite this, she makes the exams even harder each time. Reads off of the same slides she's been using for the past 40 years. She is paranoid about cheating, does assigned seats for exams.", + "pos": 0.0, + "neu": 0.782, + "neg": 0.218, + "_id": { + "$oid": "6711d48acd60fca157e5bb51" + } + }, + { + "text": "I enjoyed Zajcs class alot. She presents the material in a very clear manner and wants all of her students to succeed. She teaches smaller classes, so it is much easier to ask questions. As long as you study, you will do well on all her exams.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb52" + } + }, + { + "text": "Yeah like anyone cares what the crib masters post here. Those who perform well rarely post reviews here. But go ahead feel good that you did something.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb53" + } + }, + { + "text": "Responds to emails quickly. Takes student's requests into consideration (e.g., allowed a cheat sheet when we asked for it). Exams are all multiple choice and fair, too hard if you don't study, normal and easy if you put in the work. Lectures are boring and she's passive aggressive so be careful with your words. Overall she's a fair prof.", + "pos": 0.161, + "neu": 0.72, + "neg": 0.119, + "_id": { + "$oid": "6711d48acd60fca157e5bb54" + } + }, + { + "text": "First of all, she doesn't record lectures like all other professors. Her lecture are difficult to understand and not enjoyable at all. Make sure you get the lab manual even if it's not mandatory. If you don't pay attention in lecture, don't worry the manual covers most stuff. Labs are quite easy. Make sure you have intext citation in your reports", + "pos": 0.163, + "neu": 0.722, + "neg": 0.114, + "_id": { + "$oid": "6711d48acd60fca157e5bb55" + } + }, + { + "text": "attendance is annoying but the lecture and lab are easy. Writing the lab reports for the last few labs was hard as well as the post-lab. Make sure you do good on the first few labs because that's the easiest part.", + "pos": 0.312, + "neu": 0.624, + "neg": 0.063, + "_id": { + "$oid": "6711d48acd60fca157e5bb56" + } + }, + { + "text": "Unfortunately Zajc is part of the more low quality professors at CCNY. She's eager to give students absences in the case they immediately don't show up or they stay in the online classroom too long after dismissal. She is spiteful when it comes to attendance . She explains things that don't need explaining. She doesn't grade but he TA's do.", + "pos": 0.028, + "neu": 0.888, + "neg": 0.085, + "_id": { + "$oid": "6711d48acd60fca157e5bb57" + } + }, + { + "text": "Worst professor at CCNY", + "pos": 0.0, + "neu": 0.423, + "neg": 0.577, + "_id": { + "$oid": "6711d48acd60fca157e5bb58" + } + }, + { + "text": "Organized. Gives a quiz at the beginning of every other class. She is very paranoid about people cheating and will seat everyone apart, even for quizzes. She has difficulty hearing, so it's hard to ask questions or talk to her. She writes very lightly on the board, so you can't really see what she's writing. Not the worst, but far from the best.", + "pos": 0.11, + "neu": 0.792, + "neg": 0.097, + "_id": { + "$oid": "6711d48acd60fca157e5bb59" + } + }, + { + "text": "As long as you read the procedures and pay attention in class she won't suprise you on the tests.", + "pos": 0.0, + "neu": 0.928, + "neg": 0.072, + "_id": { + "$oid": "6711d48acd60fca157e5bb5a" + } + }, + { + "text": "The professor was very concise and explained the procedure and mechanisms for the labs clearly. Cleared up a lot of fuzzy areas that I had when taking Chem 261 and Chem 263. Exams and quizzes were straightfoward and easy. However, this class largely depends on the TA that you get, who grades the labs. My TA, Paul Thomson, was excellent.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb5b" + } + }, + { + "text": "She seems to be very hardworking techer and she is always prepared for the recitation. She is great in explaining mechanisms of reactions and it was a great deal for me since i was taking orgo 263 at the same time. She is not communicative and you dont feel free asking the questions--you need to repeat it 10 times. Otherwise, she was nice.Easy fina", + "pos": 0.139, + "neu": 0.824, + "neg": 0.037, + "_id": { + "$oid": "6711d48acd60fca157e5bb5c" + } + }, + { + "text": "She does not hear us. Poor teacher too.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb5d" + } + }, + { + "text": "Hardworking instructor, good notes, sometimes she cant hear students. But overall helpful and tries to get the message across. Some students are dumber than a rock in this course and therefore should not blame the instructor.", + "pos": 0.189, + "neu": 0.736, + "neg": 0.075, + "_id": { + "$oid": "6711d48acd60fca157e5bb5e" + } + }, + { + "text": "Good teacher. Cares about students. Try some of the others who dont care!", + "pos": 0.329, + "neu": 0.531, + "neg": 0.14, + "_id": { + "$oid": "6711d48acd60fca157e5bb5f" + } + }, + { + "text": "She tries very hard, gives handouts and available to students. Some students eihter sleep or are not interested. Wake up nothing in life is free-if you dont want to learn get a job.", + "pos": 0.0, + "neu": 0.853, + "neg": 0.147, + "_id": { + "$oid": "6711d48acd60fca157e5bb60" + } + }, + { + "text": "OMG...don't even think about it!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb61" + } + }, + { + "text": "Can't understand her accent. The poorest of the poorest. Her husband is equally pooor teacher.", + "pos": 0.0, + "neu": 0.65, + "neg": 0.35, + "_id": { + "$oid": "6711d48acd60fca157e5bb62" + } + }, + { + "text": "i thought she was a pretty decent teacher...she just doesnt' understand or hear students' questions. to get an A, just know the textbook well and the extra stuff she adds during lecture...be sure u really understand all the problems at the end of each chapter", + "pos": 0.148, + "neu": 0.799, + "neg": 0.053, + "_id": { + "$oid": "6711d48acd60fca157e5bb63" + } + }, + { + "text": "She was horrible. didnt hear class' questions. didnt ask any qustions. Exams were a killer, went outside the scope of the book. Didnt realise that class was lost. When she got mad at the class she just made the exams even harder. Avoid if u can.", + "pos": 0.0, + "neu": 0.726, + "neg": 0.274, + "_id": { + "$oid": "6711d48acd60fca157e5bb64" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48acd60fca157e5bb66" + }, + "professor_name": "Asohan Amarasingham", + "rating": 3.1, + "department": "Mathematics department", + "comments": [ + { + "text": "You can tell he wants to help. I was just too lost. He's a good professor but I guess it just wasn't sticking to me. First exam - I bs'ed the whole thing. Knew I was getting a zero, but he gives you any point he can & I ended up getting 40% when I was sure it would've been a 0. Very thoughtful, but it was tough for me.", + "pos": 0.136, + "neu": 0.821, + "neg": 0.044, + "_id": { + "$oid": "6711d48acd60fca157e5bb67" + } + }, + { + "text": "How to do well in this class -Read the textbook, if you don't understand something (or anything lol), go on YouTube; the Organic Chem tutor and Prof. Leonard are really good. -Keep up with the textbook; don't leave work for later. -Do HW (that's where tests come from) Overall, great prof; very easy-going. Learning is your responsibility though", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb68" + } + }, + { + "text": "This guy is so hard headed, he wont take your struggling as a sign to explain or to slow down. He goes off tangent and his notes are useless. His homeworks are hard and the exams are harder. AVOID HIM. He is horrible in this topic", + "pos": 0.043, + "neu": 0.73, + "neg": 0.228, + "_id": { + "$oid": "6711d48acd60fca157e5bb69" + } + }, + { + "text": "Great prof who knows the subject inside out and doesn't shy away from its philosophy. The class was fully online. Midterms were hard, the final more moderate. Homework is assigned but typically not collected, but he gives quizzes. The book was _not_ good, however. Overall, though, I recommend highly.", + "pos": 0.129, + "neu": 0.793, + "neg": 0.078, + "_id": { + "$oid": "6711d48acd60fca157e5bb6a" + } + }, + { + "text": "It was a really insightful course on probability theory, despite it being online and during the pandemic. I learned a lot. He was generous about grading and just all the pandemic craziness.. Exams were online and there was a lot of cheating -- be aware of that because he curves....", + "pos": 0.058, + "neu": 0.832, + "neg": 0.11, + "_id": { + "$oid": "6711d48acd60fca157e5bb6b" + } + }, + { + "text": "Worst professor I ever seen. Cant teach properly. Teaching easy stuff and giving hard questions in exams.", + "pos": 0.223, + "neu": 0.546, + "neg": 0.231, + "_id": { + "$oid": "6711d48acd60fca157e5bb6c" + } + }, + { + "text": "The material was challenging but interesting, and the lectures were fascinating. The professor really knows the topics. The math is not bad, but what is challenging is implementing those math concepts on the computer (such as python) for homework. You have to make a real effort.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb6d" + } + }, + { + "text": "His problems include 100-dimensional matrices and complex functions. You only have lecture notes to help you. If you browse the internet/various statistics books, you won't find anything similar. He started showing his code to the homework after 2 months which is easy if you are a computer science major. Overall, very difficult class.", + "pos": 0.093, + "neu": 0.812, + "neg": 0.095, + "_id": { + "$oid": "6711d48acd60fca157e5bb6e" + } + }, + { + "text": "His class is torture/soul-crushing experience. You will learn quickly that he is stuck in his own ways. The lectures are mostly abstract and if your programming is not advanced, you won't be able to finish the hw. He will show you the concept of the code and say, \"That is easy. What is so difficult about it?\" without showing any actual code.", + "pos": 0.043, + "neu": 0.854, + "neg": 0.103, + "_id": { + "$oid": "6711d48acd60fca157e5bb6f" + } + }, + { + "text": "This professor's lectures are not clear and helpful. A lot of statistical python questions on the school works in his class are tough.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d48acd60fca157e5bb70" + } + }, + { + "text": "Don't take this class if you have no programming experience! There's no coding prereq for this class yet he forces you to do a lot programming assignments in MATLab. The material is very abstract and vague and he doesn't explain it well. He also lowkey insults students who ask him questions when they have no clue what's going on.", + "pos": 0.0, + "neu": 0.801, + "neg": 0.199, + "_id": { + "$oid": "6711d48acd60fca157e5bb71" + } + }, + { + "text": "He's really knowledgeable and explains the material clearly. He made sure that everyone understood the material before moving on. This backfired towards the end of the semester because he had to speed through the last couple of chapters. He's very helpful during office hours. The material is also interesting which helps and exams are not difficult.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb72" + } + }, + { + "text": "He is amazing. Moderate Easy/Moderate Hard. His HWs are from the book. His quizzes are from the HW 90%. And the final/midterm exam ques are all from HW, quizzes, and notes. You will pass definitely, he helps you understand and pass. By going to every lecture, you will learn and be happy guaranteed.", + "pos": 0.206, + "neu": 0.772, + "neg": 0.023, + "_id": { + "$oid": "6711d48acd60fca157e5bb73" + } + }, + { + "text": "Probably the best professor I had at CCNY.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d48acd60fca157e5bb74" + } + }, + { + "text": "The assignments were too hard and he could have been more accommodating about them. For example, the programming work was sink or swim. (Plenty sank.) But the lectures were beautiful sometimes.", + "pos": 0.15, + "neu": 0.816, + "neg": 0.034, + "_id": { + "$oid": "6711d48acd60fca157e5bb75" + } + }, + { + "text": "the only thing good about this professor is he does not fail students. he is a good mathematician, but not a good teacher.", + "pos": 0.209, + "neu": 0.68, + "neg": 0.111, + "_id": { + "$oid": "6711d48acd60fca157e5bb76" + } + }, + { + "text": "he is hard!", + "pos": 0.0, + "neu": 0.542, + "neg": 0.458, + "_id": { + "$oid": "6711d48acd60fca157e5bb77" + } + }, + { + "text": "Matlab homework(60%) + midterm(20%) + final(20%). His homework assignments & exams are extremely hard. If you are not good with matlab, there is no way you can do well. He is extremely helpful & nice. He does care about his students. You have to spend many hours studying for this class so make sure you don't take too many classes. He curves a lot.", + "pos": 0.184, + "neu": 0.734, + "neg": 0.083, + "_id": { + "$oid": "6711d48acd60fca157e5bb78" + } + }, + { + "text": "Homework & exams are hard. No textbook (his lecture notes are extremely confusing). He often says, \"If you don't understand this, you should drop.\" He knows a lot but can't teach. More than 60% students dropped. If you are not good at math, don't take him. He is rude too. However, he is helpful, and does NOT fail students (he curves a lot).", + "pos": 0.099, + "neu": 0.728, + "neg": 0.173, + "_id": { + "$oid": "6711d48acd60fca157e5bb79" + } + }, + { + "text": "only u have do his home work. HW problems in exams most of time or very similar problems.much better guy comparing with other professors in math depatment.", + "pos": 0.103, + "neu": 0.81, + "neg": 0.087, + "_id": { + "$oid": "6711d48acd60fca157e5bb7a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48bcd60fca157e5bb7c" + }, + "professor_name": "Zajj Daugherty", + "rating": 4.3, + "department": "Mathematics department", + "comments": [ + { + "text": "The course itself is difficult, but Professor Daugherty does the best she can to make sure you know how to do the topics. There is a bit too much hw, a written one (with a hw quiz) and an online one, but the written one is to make sure you know the topic, and she'll give very helpful feedback for points you have trouble with.", + "pos": 0.198, + "neu": 0.736, + "neg": 0.066, + "_id": { + "$oid": "6711d48bcd60fca157e5bb7d" + } + }, + { + "text": "A gem. She gives great feedback on tests and she makes herself accessible outside of class and encourages you to come. The one qualm is that sometimes it's a bit too much, since there is a lot to keep track of in the class(homeworks, async practice+quizzes) it's time consuming, and can hurt your grade if you have other commitments. You will learn.", + "pos": 0.122, + "neu": 0.83, + "neg": 0.049, + "_id": { + "$oid": "6711d48bcd60fca157e5bb7e" + } + }, + { + "text": "Really great professor. Definitely take class with her. Caring and helpful and explains things well. Writes her own lectures (ie, doesn't rely on the publisher's slides or cut-and-paste from the textbook) which adds a lot of energy to the class. In part, because her lectures are incredibly helpful. CCNY is lucky to have her.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d48bcd60fca157e5bb7f" + } + }, + { + "text": "You can tell that she really cares about the success of her students, she is dedicated to her job. Her lectures are easy to follow through and she takes the time to make sure everyone understands the material. The main downside is all the mylab homework she assigns. 20 multi-part questions per week along with homework/quizzes even during exam week.", + "pos": 0.213, + "neu": 0.759, + "neg": 0.028, + "_id": { + "$oid": "6711d48bcd60fca157e5bb80" + } + }, + { + "text": "She was so willingly to help and kind. She was organized and her tests and quizzes were very doable if you studied and did practice questions.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d48bcd60fca157e5bb81" + } + }, + { + "text": "Great professor. The homework is the most difficult part, but she gives you time during class for some problems while she goes around answering questions and encouraging collaboration. If you go to class, the homework problems become pretty easy. Super friendly and does her best to make sure anyone can understand the material.", + "pos": 0.398, + "neu": 0.496, + "neg": 0.106, + "_id": { + "$oid": "6711d48bcd60fca157e5bb82" + } + }, + { + "text": "She is a super friendly prof. However, she gave 7 exercises for the 1st hw due in 1 week. Each exercise has multiple parts, ie. 1st exercise had 24 parts (yes, 24). You need to hand them in after editing them in a required way. It's not easy to find answers online to her problems which are not from the book. She mostly reads of the slides.", + "pos": 0.164, + "neu": 0.771, + "neg": 0.065, + "_id": { + "$oid": "6711d48bcd60fca157e5bb83" + } + }, + { + "text": "Great teacher. Easy to understand and makes sure everyone is on the same page.", + "pos": 0.458, + "neu": 0.542, + "neg": 0.0, + "_id": { + "$oid": "6711d48bcd60fca157e5bb84" + } + }, + { + "text": "She is good, take her! Homework is pretty hard, but she lets you make a cheat sheet on her exams, and you most of the questions on the tests are from the Homework.", + "pos": 0.105, + "neu": 0.752, + "neg": 0.142, + "_id": { + "$oid": "6711d48bcd60fca157e5bb85" + } + }, + { + "text": "One of the best math professors I have taken at CCNY. Her lectures are clear and help with understanding the material. She gives lots of hw so do NOT procrastinate on it, the homework can be challenging at times. Her exams & quizzes reflect the homework, so if you understand the homework you are set to do well.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d48bcd60fca157e5bb86" + } + }, + { + "text": "Best math instructor I've ever had. Attendance is a MUST. Calc 2 is hard, no way around that. 2 mid terms and a final. DO NOT miss the classes before the exams. She gives excellent reiview materials and pretty much tells you how she writes her exams. Very committed to students.", + "pos": 0.239, + "neu": 0.704, + "neg": 0.058, + "_id": { + "$oid": "6711d48bcd60fca157e5bb87" + } + }, + { + "text": "Calc 2 is just nearly impossible here. She also moves very quickly, and is hard to follow. Other than that she's a pretty good professor. I just wouldn't take calc 2 at CCNY.", + "pos": 0.163, + "neu": 0.8, + "neg": 0.037, + "_id": { + "$oid": "6711d48bcd60fca157e5bb88" + } + }, + { + "text": "In general Calc 2 is a very hard course with a lot of tricky concepts and a lot of formulas and trig fuctions involved. Even though she doesn't take attendance, it necessary for you to go class in order to pass and understand the concept well. If you plan on taking her start learning Calc 2 now and when you take the course the material will be ligt", + "pos": 0.03, + "neu": 0.923, + "neg": 0.047, + "_id": { + "$oid": "6711d48bcd60fca157e5bb89" + } + }, + { + "text": "Daugherty is really caring and she is willing to help you when you need it. She cares a lot, and she does her best to make sure everyone understands the material; if you ask a question during lecture, she would come to you to make sure you understand it during practice. However, her lectures are a little tough to follow and she may be a bit too fas", + "pos": 0.224, + "neu": 0.761, + "neg": 0.015, + "_id": { + "$oid": "6711d48bcd60fca157e5bb8a" + } + }, + { + "text": "Calc 2 is HARD. Thankfully, Professor Daugherty's lectures are filled with practice problems that you get to work on so you're able to apply what you learned quickly. I highly recommend going to her office hours if you ever have questions you want to ask her. Practice the past finals on the math page and do as many problems as you can & you'll pass", + "pos": 0.094, + "neu": 0.804, + "neg": 0.103, + "_id": { + "$oid": "6711d48bcd60fca157e5bb8b" + } + }, + { + "text": "She's pretty good. She cares about students and doesn't want them to fail. If you do bad at the inclass exams dont worry just study very hard for the FINAL. And the curve will save u.", + "pos": 0.285, + "neu": 0.523, + "neg": 0.192, + "_id": { + "$oid": "6711d48bcd60fca157e5bb8c" + } + }, + { + "text": "2 Midterms(40%) Hw(15%) Final(40%). This is her grading syllabus. As you can see theres very little room for mistake. Her notes and hws are online which is a plus. First exam was tough 2nd was pretty straightforward. If you studied properly you should have done well. Final was CRAZY hard. I pretty sure everyone is hoping she'll curve like crazy.", + "pos": 0.213, + "neu": 0.648, + "neg": 0.14, + "_id": { + "$oid": "6711d48bcd60fca157e5bb8d" + } + }, + { + "text": "I never dealt with this type of professor ever before. Yes, she's helpful but when you ask for help she still make you unclear about the topic. She may be a good teacher for 365, but she isnt good for Calc 2. Tests are nothing like we have done inclass. She expects you to explain everything when doing a math problem. I regret enrolling in her class", + "pos": 0.132, + "neu": 0.685, + "neg": 0.183, + "_id": { + "$oid": "6711d48bcd60fca157e5bb8e" + } + }, + { + "text": "She is by far the most amazing professor in the math department. Not only does she provide amazing lectures, but her exams are exactly what she teaches in class. If you are looking to truly understand calc 2 and not feel defeated by some of the impossible exams other professors give, this is the class to take.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d48bcd60fca157e5bb8f" + } + }, + { + "text": "While the material itself can be challenging, Professor Daugherty did an amazing job of teaching the material, as well as being concise throughout her lessons. Each lecture covers a significant amount of information- so don't skip any, otherwise you'll fall behind!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d48bcd60fca157e5bb90" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48bcd60fca157e5bb92" + }, + "professor_name": "Julia Kolak", + "rating": 2.8, + "department": "Philosophy department", + "comments": [ + { + "text": "Idk why all of her reviews are horrible, I had Prof. Kolak at NYU for Public Health Ethics and she was amazing. The material is obviously quite nuanced and the readings are not easy, but she does a great job of helping students understand. Super entertaining lecturer and knowledgeable teacher (bonus points for her sense of humor).", + "pos": 0.345, + "neu": 0.59, + "neg": 0.065, + "_id": { + "$oid": "6711d48bcd60fca157e5bb93" + } + }, + { + "text": "Loves to hear herself talk, makes up amusingly implausible medical ethical quandries (taking a well-controlled patient on anti-depressants who is also somehow suicidal while being well controlled, off of their medication for the sake of a trial). Loves to throw in latin phrases for the sake of using latin. We get it. You study philosophy. Chill.", + "pos": 0.211, + "neu": 0.724, + "neg": 0.065, + "_id": { + "$oid": "6711d48bcd60fca157e5bb94" + } + }, + { + "text": "DONT TAKE THIS CLASS if you value ur sanity! Her classes are extremely boring as she spend the whole time lecturing, and rarely pauses to let the class participate. She is also a harsh grader and rarely gives feedback. Assigns multiple 20+ page readings a week and only uses 1 in class. Also have reading quiz and writing assignments each week", + "pos": 0.036, + "neu": 0.876, + "neg": 0.087, + "_id": { + "$oid": "6711d48bcd60fca157e5bb95" + } + }, + { + "text": "Charismatic in group settings but one on one extremely arrogant and made me feel stupid. Its unfortunate because she had helpful information to share but not worth having to face her one-on-one. Professor does not know how to support students in their thinking. Needs a lot more experience teaching in a supportive way.", + "pos": 0.176, + "neu": 0.615, + "neg": 0.21, + "_id": { + "$oid": "6711d48bcd60fca157e5bb96" + } + }, + { + "text": "Readings are kinda dense, but she explains it in lecture. VERY knowledgeable in bioethics, so make sure you know what you're talking about when you answer her questions. You're graded based on a midterm, final, group paper, reading quizzes, discussion questions, mock ethics meeting, and participation. She's SUPER inspirational (and funny lol).", + "pos": 0.305, + "neu": 0.643, + "neg": 0.052, + "_id": { + "$oid": "6711d48bcd60fca157e5bb97" + } + }, + { + "text": "sHE IS BAD THAT'S IT. RUN THE OTHER WAY", + "pos": 0.0, + "neu": 0.654, + "neg": 0.346, + "_id": { + "$oid": "6711d48bcd60fca157e5bb98" + } + }, + { + "text": "Professor Kolak's class, for me, was the most stressful class of the semester. I always felt anxious because of the speed and the complex concepts we would go over. She IS a very caring, charismatic, and knowledgeable person, and welcomes students to her office hours, but this class will be difficult. Weekly quizzes based on long readings.", + "pos": 0.065, + "neu": 0.824, + "neg": 0.112, + "_id": { + "$oid": "6711d48bcd60fca157e5bb99" + } + }, + { + "text": "Please don't listen to the reviews below, many students were caught cheating and expelled this semester during the open book midterm. She was forced to change a lot of the syllabus, yet still allowed for extra credit. She is honestly a good professor, a bit of a tough grader, but enjoys the subject and genuinely wants students to learn.", + "pos": 0.172, + "neu": 0.726, + "neg": 0.102, + "_id": { + "$oid": "6711d48bcd60fca157e5bb9a" + } + }, + { + "text": "She always arrives late to the lectures, doesnt grade anything, and does the bare minimum in actually teaching the material. I have never experienced the nightmare that was the midterm in all my years. She never reviewed once, gave no study guide, and didnt even state what specifically would be on it.", + "pos": 0.0, + "neu": 0.959, + "neg": 0.041, + "_id": { + "$oid": "6711d48bcd60fca157e5bb9b" + } + }, + { + "text": "Dont let Professor Kolak fool you, she may seem cool and charismatic. However, this is not the case, she is genuinely one of (if not) the worst professors at CCNY. She is insufferable and you should not take Biomedical Ethics if she is teaching it. Shes constantly overcompensating for herself and is genuinely a nightmare.", + "pos": 0.092, + "neu": 0.86, + "neg": 0.048, + "_id": { + "$oid": "6711d48bcd60fca157e5bb9c" + } + }, + { + "text": "I felt like crying each day in this class. She goes over material too quickly in her lectures while always going over class time by 10-15 min. With all the teachers I have taken at ccny, this one is by far the most stressful. Never grades things on time and assign too many readings. High expectations from students who have never taken a phil class.", + "pos": 0.035, + "neu": 0.871, + "neg": 0.094, + "_id": { + "$oid": "6711d48bcd60fca157e5bb9d" + } + }, + { + "text": "In the midst of a pandemic, this is the worst professor I've ever had. Starts class 10-15 minutes late AND ends lecture 10-15 minutes late. Does not grade assignments for other sections on time, gives ONE question for the quizzes every week which are worth 10 pts. Not available outside of office hours and did not accommodate all students like said.", + "pos": 0.066, + "neu": 0.872, + "neg": 0.062, + "_id": { + "$oid": "6711d48bcd60fca157e5bb9e" + } + }, + { + "text": "Midterm and final. Readings are confusing but as she says in the first lecture - they're supposed to be! She explains them greatly in lecture and engages students and knows how to relate. May seem harsh but is a softy at heart. May be late posting things on blackboard but makes up for it by extending deadlines. Tries her best. Definitely recommend!", + "pos": 0.263, + "neu": 0.673, + "neg": 0.065, + "_id": { + "$oid": "6711d48bcd60fca157e5bb9f" + } + }, + { + "text": "Professor Kolak can be very intimidating at times, but she is also super sweet. If you want to pass the class you MUST do the readings, or at least pay full attention to her lectures! She gives quizzes and drops the lowest three grades, midterm, paper, and final.", + "pos": 0.184, + "neu": 0.698, + "neg": 0.118, + "_id": { + "$oid": "6711d48bcd60fca157e5bba0" + } + }, + { + "text": "Professor Kolak is okay. She gives weekly quizzes based on things she put up on blackboard. The quizzes could be hard at times because the readings be difficult. Her lectures were confusing. Theres no study guide for midterm or final, so you have to be a good note taker. Theres also a group project so good luck with who you get placed.", + "pos": 0.16, + "neu": 0.732, + "neg": 0.108, + "_id": { + "$oid": "6711d48bcd60fca157e5bba1" + } + }, + { + "text": "One thing I can say about Professor Kolak is that all her lectures are fascinating. She is very passionate about bioethics and after taking her class you can not help but become inspired. She is very young and literally relates everything you are discussing in class to things that are actually going on today.", + "pos": 0.147, + "neu": 0.826, + "neg": 0.027, + "_id": { + "$oid": "6711d48bcd60fca157e5bba2" + } + }, + { + "text": "Prof. Kolaks lectures are EYE openers and quite interesting but organization wise shes a bit of a mess. She requires everyone to READ. dont read you really wont pass. Her quizzes are based off the readings . She drops a couple low grades on the quizzes . Mock ethics committee, 2 papers 1 short / final paper long & Final paper. take at own risk", + "pos": 0.079, + "neu": 0.762, + "neg": 0.158, + "_id": { + "$oid": "6711d48bcd60fca157e5bba3" + } + }, + { + "text": "One of my favorite professors to date. Super passionate about Bioethics and makes the topic interesting and fun to digest. Makes you work for your grade but its worth it. 2 papers (short and long), Mock Bioethics Committee, and a final. Shes the reason I might pursue bioethics as a career. Will always make time for any of her students", + "pos": 0.187, + "neu": 0.76, + "neg": 0.053, + "_id": { + "$oid": "6711d48bcd60fca157e5bba4" + } + }, + { + "text": "Not and easy A but not impossible. She is smart and knows what she is talking about and sometimes her lecturers are interesting. She gives a quiz that is 3/4 questionevery class on readings she assigns for HW. She also has a difficult paper and hard final. participation matters!!! You never know your grade till the end of the semester which sucks.", + "pos": 0.112, + "neu": 0.744, + "neg": 0.144, + "_id": { + "$oid": "6711d48bcd60fca157e5bba5" + } + }, + { + "text": "Get ready to read a lot. It's a relatively easy class if you keep up with the material and participate. Get ready to be able to defend your arguments. This class really made me consider becoming a biomedical ethicist, which I didn't know was a thing and that's because of Prof. Kolak and what I learned in this class.", + "pos": 0.12, + "neu": 0.838, + "neg": 0.041, + "_id": { + "$oid": "6711d48bcd60fca157e5bba6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48ccd60fca157e5bba8" + }, + "professor_name": "Orsini Gonzalez", + "rating": 3.9, + "department": "Speech department", + "comments": [ + { + "text": "EXCELLENT PROFESSOR THE BEST I EVER HAD", + "pos": 0.612, + "neu": 0.388, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bba9" + } + }, + { + "text": "Amazing professor! He's so funny and nice since he waved a lot of the same students to not present since they didn't have their speeches on their day. You would still have to present if you want a grade so don't leave it for the last minute. We would only write comments on the other students speeches, so we hardly took any notes.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbaa" + } + }, + { + "text": "He is such a great professor. He is really passionate about speech which made me interested in the subject as a student. Although, his exercises might look silly they really work!", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbab" + } + }, + { + "text": "Very easy professor and helpful.if you put a little effort an easy A.you just have to show that you improved your speech overtime, an easy A.", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbac" + } + }, + { + "text": "What a great speech professor! But you do have to do 6 speeches and a speech critique (other classes have 4 speeches). He is very helpful and kind, but the amount of work does become a burden towards the end of the semester. Also, i had this class at 8AM, which made it intense.", + "pos": 0.203, + "neu": 0.739, + "neg": 0.058, + "_id": { + "$oid": "6711d48ccd60fca157e5bbad" + } + }, + { + "text": "he talks a lot,until you get so bored you almost fall asleep...Class is very easy though, we did like NO writing at all!! I cant see how somebody could fail this class,not even on purpose! he records some of the speeches and then shows it to the class", + "pos": 0.097, + "neu": 0.732, + "neg": 0.171, + "_id": { + "$oid": "6711d48ccd60fca157e5bbae" + } + }, + { + "text": "Professor Gonzalez is a great teacher. He made us write alot, but it greatly helped and for that I thank you. He seem like he really care for the students.. Thank you again!!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbaf" + } + }, + { + "text": "Dr. Gonzales is an excellent and experienced professor! He is very helpful and understanding, especially when you show respect to him and his work by not eating in class, not being late or absent or talking while he lectures) I believe that if you participate in class, and do your WORK! you should not get less than an A in his class. nice teacher..", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb0" + } + }, + { + "text": "He is probably the worst professor ever very unorganized he will critisize you until your ready to drop the class he is rude thinks he's always right even if it's not about the class gives quizzes every week never returned any back he probably lost track due to his unorganized ways he is very RUDE do not take him", + "pos": 0.035, + "neu": 0.746, + "neg": 0.219, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb1" + } + }, + { + "text": "very comprehensive, helpful, and entertaining.", + "pos": 0.805, + "neu": 0.195, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb2" + } + }, + { + "text": "This guy acts like his speech class is a core class. Quizzes every week,very sarcastic and very repetitive. He sucks!!!", + "pos": 0.095, + "neu": 0.605, + "neg": 0.3, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb3" + } + }, + { + "text": "Take him, he is awesome", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb4" + } + }, + { + "text": "This teacher was awesome. He's really easy going and gave no tests or quizzes. All you need is to write 6 speeches do a research paper and your own your was to an easy A.", + "pos": 0.235, + "neu": 0.714, + "neg": 0.051, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb5" + } + }, + { + "text": "He is very open to different views and interesting to listen to. I'll even say that the class discussions opened and changed my own views. The truth is, no one can make you a better public speaker. He will give you great feedback but it's up to you to force yourself to follow the tips. He is a great example to follow.", + "pos": 0.192, + "neu": 0.786, + "neg": 0.022, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb6" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb7" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb8" + } + }, + { + "text": "He is a very easy-going professor. He didn't give any tests or quizzes this semester, we just had 6 speeches and our final was a research paper. He is very interested in what we have to say, always good feedback, easy A if you do your speeches!", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbb9" + } + }, + { + "text": "not helpful at all.", + "pos": 0.0, + "neu": 0.563, + "neg": 0.437, + "_id": { + "$oid": "6711d48ccd60fca157e5bbba" + } + }, + { + "text": "Excellent class to help you with your fear of public presentations. Very helpful. True about simple quizes and Spring 05 - 6 presentation. Very fun class and easily graded.", + "pos": 0.424, + "neu": 0.503, + "neg": 0.073, + "_id": { + "$oid": "6711d48ccd60fca157e5bbbb" + } + }, + { + "text": "He is good. You have to give 5 presentations which are not hard at all. He also give quizzes that very easy. I never studied for the quizzes. I got A in his class.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbbc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48ccd60fca157e5bbbe" + }, + "professor_name": "William King", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "He was very helpful and available anytime I needed.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbbf" + } + }, + { + "text": "Although he spends almost every class discussing topics that seem un-relatable to the assignments & lectures, do NOT take him for granted. He is sweet & allows paper re-writes. Pay close attention to what he says & ask questions. He grades essays strictly since he wants to know you read the case study & listened to his lessons. Syllabus changes.", + "pos": 0.079, + "neu": 0.899, + "neg": 0.022, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc0" + } + }, + { + "text": "Every lecture is jsut him talking non-stop and it could drive you to sleep so bring coffee. Otherwise tbh its an easyA", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc1" + } + }, + { + "text": "Excellent professor, very knowledgeable in his field, would definitely recommend.", + "pos": 0.56, + "neu": 0.44, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc2" + } + }, + { + "text": "Nice professor, knows the material pretty well, assigns three papers 4-5pgs each and there is no final. Gives opportunity to improve your grade on them, and gives extra work to those who missed class more than 3 or 4 times. You'll learn a lot and if you're interested in getting into the Master's in MHC program, he is the director at CCNY.", + "pos": 0.22, + "neu": 0.721, + "neg": 0.059, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc3" + } + }, + { + "text": "One of the laziest professors I've ever had in my life! He showed us OLD videos basically every week while he checked his phone and took naps. He was monotone and goes on extremely boring tangents that do not relate to the subjects. He was disorganized and his grading criteria and feedback are are mystery. Easy A, I suppose. No learning.", + "pos": 0.041, + "neu": 0.801, + "neg": 0.157, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc4" + } + }, + { + "text": "Professor William King is one of the best professors at CCNY. He has a great sense of humor and his class is easy! only three papers and theyre all based on the book, Love's executioner. do not buy the text book because you dont really need it! he may be dismissive at times and talks a lot so bring a pillow or coffee cuz u will sleep in his class", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc5" + } + }, + { + "text": "He is a nice person and is really helpful.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc6" + } + }, + { + "text": "I learned a lot!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc7" + } + }, + { + "text": "THE BEST ONE.", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc8" + } + }, + { + "text": "King is anecdotal, as some have observed, but mostly he talks because the lazy lumps in the class won't open up and participate, and he warns the class straight up that this is what will happen. DO read the books; he has a lifetime of experience, is a great practitioner, and has selected what really counts for you to read, which he is not going to", + "pos": 0.107, + "neu": 0.828, + "neg": 0.065, + "_id": { + "$oid": "6711d48ccd60fca157e5bbc9" + } + }, + { + "text": "a good professor if you prod him enough with your own questions. he does have an air of a retired & a bit passive shrink, which culminates in him having his own immobile opinions & simplifications, but he's never rude or disinterested. his lectures in a nut sell - help clients talk while you listen w/o judging.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbca" + } + }, + { + "text": "He talks alot about his therapy patients and entire life story...you get really great naps in this class.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbcb" + } + }, + { + "text": "Very laid back, not very demanding but you DO NOT need the book just the novel......I bought it and used it once. But other then that hes a good professor.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbcc" + } + }, + { + "text": "Dr. King is a cool, laid back professor. Expect a lot of talking. Take some notes because there are three short writing assignments. The best part is that there is no final. P.S. don't buy the psychotherapy textbook, only the novel", + "pos": 0.183, + "neu": 0.771, + "neg": 0.046, + "_id": { + "$oid": "6711d48ccd60fca157e5bbcd" + } + }, + { + "text": "very cool professor; very kind ; very knowledgable ; very nice; a pleasure to deal with", + "pos": 0.526, + "neu": 0.474, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbce" + } + }, + { + "text": "all around good guy as well as a fair and interesting professor.", + "pos": 0.556, + "neu": 0.444, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbcf" + } + }, + { + "text": "laid back", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d48ccd60fca157e5bbd0" + } + }, + { + "text": "This professor is well informed about his field. He has a wealth of experience and shares timely information with students. He cares about the students. Is real helpful. Can indeed be boring from time to time. He is more than just a professor. He is a good listener, good advisor and a friend.", + "pos": 0.325, + "neu": 0.641, + "neg": 0.034, + "_id": { + "$oid": "6711d48ccd60fca157e5bbd1" + } + }, + { + "text": "he very helpful and cool and i really enjoy the class but he could be boring from time to time", + "pos": 0.243, + "neu": 0.639, + "neg": 0.118, + "_id": { + "$oid": "6711d48ccd60fca157e5bbd2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48dcd60fca157e5bbd4" + }, + "professor_name": "Kathleen Potts", + "rating": 4.8, + "department": "Speech department", + "comments": [ + { + "text": "She's amazing, her lectures are clear, she provides PowerPoints and notes on blackboard, and even when something is going on outside of class, she respects you and works with you to keep you on track. She's definitely a professor who is there for students.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbd5" + } + }, + { + "text": "She is super understanding and caring. She will give u extensions if u want. I recommend her!", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbd6" + } + }, + { + "text": "Professor Kathleen Potts creatively provided her students with a wealth of information regarding the history of theatre. Assignments were designed to reinforce our understanding of course material. Additionally, she worked closely with me to accommodate my disability issues. I am very thankful for the opportunity to take her class this semester.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbd7" + } + }, + { + "text": "Good prof but the class wasnt for me. TBH I dont know if lectures were mandatory, she never took attendance but we did group work sometimes that she graded us on. Grades are based on 2 papers and group work presentations, so do good on the papers. Shes chill and actually cares to teach, but take the class only if youre interested, can get boring", + "pos": 0.197, + "neu": 0.765, + "neg": 0.038, + "_id": { + "$oid": "6711d48dcd60fca157e5bbd8" + } + }, + { + "text": "A disorganized semester where most discussions were preoccupied with mismanaged conversation on group dynamics. I rated Dr Potts difficult because lacking the clarity and leadership needed for this collaborative course made it hard to succeed, and increased the workload for those interested in making something.", + "pos": 0.229, + "neu": 0.662, + "neg": 0.109, + "_id": { + "$oid": "6711d48dcd60fca157e5bbd9" + } + }, + { + "text": "One of the best profs at CCNY. She is just amazing. Always understands her students and gives great advice. In her class, you will learn a lot and discover a lot of new things for yourself. You will learn a lot about Theater and Acting. She is always happy to help her students outside the class. AMAZING TEACHING METHOD!!!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbda" + } + }, + { + "text": "An absolutely fantastic teacher to work with. Really was a class I looked forward too. She made you really appreciate theater for what it is and I wouldn't have had so much respect for broadway shows if it wasnt for her. She also expects you to watch about 4 plays and one has to be a professionally made play. Great class to be in.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbdb" + } + }, + { + "text": "One of the best professors for music class. Most of the semester had projects and essays, critiquing plays and writing reviews about a play. The final project was to watch a broadway/off-broadway play and then critique. Best teacher for music class.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbdc" + } + }, + { + "text": "I loved taking this class. Professor Potts is an amazing professor. She is genuinely helpful and moderates interesting discussions with the class. Aside from being humorous and kind, she knows how to get the students intrigued by the many aspects of such a niche interest. Professor Potts genuinely has passion for what she does. Easy A.", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbdd" + } + }, + { + "text": "I've already had professor Potts for two different theatre courses and I absolutely love her!! She's funny, is an easy grader but also fair, she gives you clear expectations and is very patient. All in all, I'd recommend her to anyone! For both her classes I got A's. )", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbde" + } + }, + { + "text": "One of those professor's that you just never forget. More than just a professor. I took her history of women's theatre class the first time it was taught having absolutely no background in theatre, and i absolutely loved and enjoyed the class. she is so caring and so willing to help you succeed in her class. highly suggest her :)", + "pos": 0.296, + "neu": 0.671, + "neg": 0.032, + "_id": { + "$oid": "6711d48dcd60fca157e5bbdf" + } + }, + { + "text": "There are 8 quizzes worth 20%. final and midterm worth 30%. two presentations 20%. and Final research paper 7-9 pages worth 30%. paper is not hard she prepares you well. the midterm and final comes from the quizzes exactly so just memorize the quizzes and you will do fine. she is funny and very polite and approachable.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe0" + } + }, + { + "text": "I love professor Potts! I'm taking her again this semester. You do have to do a reasonable amount of work, so don't try to take her class as a blow-off class, but it's by no means difficult.", + "pos": 0.131, + "neu": 0.803, + "neg": 0.066, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe1" + } + }, + { + "text": "Professor Potts is out of this world. I have never met a professor who is so kind and caring about her students. She makes theater history interesting. There is a a lot of coursework but diligence always prevails.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe2" + } + }, + { + "text": "She's really awesome! Very energetic and easy going. If you want to take Theatre History, she's definitely the prof you may want to take it with. She gives take home quizes based on a text book reading which you don't have to buy since the library has a copy of it!", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe3" + } + }, + { + "text": "Professor obviously loves theater, and has knowledge to back it up. This class is a fair amount of work but very doable and plenty of variety in assignments to keep it interesting. Def recommend it--So kind to offer to write recs as well. Great personality. Big thumbs up!", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe4" + } + }, + { + "text": "Take home quizzes, midterm, final and a 10pg paper as well as two presentations. The class is a decent amount of work n effort but not difficult. Prof is very helpful and if you do well she iskind enough to give recommendations. Great class:)", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe5" + } + }, + { + "text": "K.Potts is great!Very knowledgeable,fun,passionate and enthusiastic.She has a wonderful upbeat personality,she's very understanding and helpful.Manages to make class really interesting and fun and to balance theory, creative projects and play reading in a very light,easy to understand manner.Takes into account that this is an intro class.Love her!", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe6" + } + }, + { + "text": "A wonderful and witty professor. We read many classic American plays. She practically gives you the answers to the exams. The paper isn't too bad. I highly recommend her!", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe7" + } + }, + { + "text": "Please take her!!! She is the most vivacious, witty and kind prof ever!!!! Very interested in her subjects, always available and understanding.", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbe8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48dcd60fca157e5bbea" + }, + "professor_name": "Anna Voisard", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "I took Fairy Tales 2023 Fall 10005, It wasn't that bad, but this class made me feel like I was in high school again, make sure u at least meet one friend in this class because there will be \"turn and talks\". I took this class at 8am, if u choose this just make sure u will be there on time. It honestly isn't that bad; I wouldn't take again tho", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbeb" + } + }, + { + "text": "Professor Voisard is truly a great teacher. I took her Fairytales course this fall. She is very understanding and clear in her lessons. Openly accepts feedback and questions from her students and she will always update and post on Blackboard which I found to be very helpful in meeting deadlines. Overall, I would 100% take her class again.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbec" + } + }, + { + "text": "Awesome teacher, not hard I took this class as a freshman in college beware this is a two-part class, you going to have to talk to people great way to make friends, I didn't though lol just make sure you have as least a classmate to talk in turn and talks.", + "pos": 0.239, + "neu": 0.723, + "neg": 0.037, + "_id": { + "$oid": "6711d48dcd60fca157e5bbed" + } + }, + { + "text": "I took her fairy tale class and she was awesome. So laidback abt everything and made sure the stories were interesting. It did not feel like a college class at all. She made it interesting and fun and the final project was an easy group presentation abt a fairy tale. Made me enjoy an 8am class somehow. Def would retake and recommend", + "pos": 0.322, + "neu": 0.652, + "neg": 0.026, + "_id": { + "$oid": "6711d48dcd60fca157e5bbee" + } + }, + { + "text": "I took her fairy tale class and let me tell you the best decision I ever made ,I learn so much and she is so cool and super nice the assignment are super easy of you like fourth tale trust me there not one boring assignment she gives you get to watch short films and her feedback on woke really helps learn more , I would take her again 100%", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbef" + } + }, + { + "text": "Professor Voisard was really helpful, gave really useful assignments and spaced them out throughout the semester so that they were manageable. She sometimes didn't explain them so well but gave us resources and samples enough to figure it out. She's a nice grader and really caring professor.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf0" + } + }, + { + "text": "I took her in LaGuardia Community College. She is an amazing professor. She gives good feedback and has a clear rubric for each of her assignments. Her prompts are very straightforward. If you need to take technical writing, take her for sure. She is also very caring and communicates with all students. I would love to have her again!!", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf1" + } + }, + { + "text": "Very nice professor. Grader for FIQWIS is very nice and great. She is not strict grader, she gives you good feedback. Participate, do good on essays by including evidence, cite, MLA style, and explain thoughtfully and great conclusion and thesis, you will get an easy A. only 4 essays.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf2" + } + }, + { + "text": "Very laid-back. The type of teacher that doesn't often check to see if you're reading you participate. But the readings are short anyway and it usually takes 2-15 minutes to read them. There's a decent workload that won't overwhelm you but is enough to make you realize that you're doing something. If you're a good writer, this is an easy A.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf3" + } + }, + { + "text": "Very easy going professor. She doesn't grade you by grammar mistakes but just on the content, so make sure you got everything shes looking for. Very chill & not hard at all. If you see her on the subway, say hi, she's gonna remember you said hi & get on her good side", + "pos": 0.178, + "neu": 0.793, + "neg": 0.029, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf4" + } + }, + { + "text": "She makes sure that you really understand each assignment to the fullest. She gives you a chance to get a better grade by revising papers and takes time to help you fix your mistake. Easy class and pretty fun. She is nice and pretty easy going.", + "pos": 0.43, + "neu": 0.534, + "neg": 0.037, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf5" + } + }, + { + "text": "Phenomenal professor, very understanding.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf6" + } + }, + { + "text": "Pretty sure you can't get anything below a B+. Very caring a lot of students deserved to get a WD for not attending, but she understanding and won't fail you. Walk in the park B+, Show up every day and do work for an A-, have good grammar skills for the A, as for A+ do everything on point participate everyday and visit her during office hours. :)", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf7" + } + }, + { + "text": "Professor Voisard gives good feedback on your drafts. There are 5 essay assignments and a final group project that you don't get to choose the group members. I personally find the group project the hardest due to the fact that my group members weren't that much of a help. The time she gives us to work on the essay is short so start early!", + "pos": 0.087, + "neu": 0.913, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf8" + } + }, + { + "text": "Honestly an easy A(MINUS). Easy A if you have good grammar skills.", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbf9" + } + }, + { + "text": "Was hoping for an A. But for the amount of workload she give compared with other proffesors she's better. Very nice and fair. Can't go wrong with her.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbfa" + } + }, + { + "text": "You can easily find a PDF of the textbook for this class. Expect about 5 essay assignments but the papers are fairly short and a final group project worth 25% . She offers rewrites for you to boost your grade and gives great feedback on drafts but takes a while to give you back graded papers . Follow the instructions and its an easy A.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbfb" + } + }, + { + "text": "DONT buy the textbook. But you'll only use it 3 times in the semester. Just find a pdf and print it. There were about 5 essay assignments and 1 group project. Was a bit annoyed that she told us that she does rewrites but we had to have them done within 3 days before the semester ends. She's an alright professor nice. Not an easy A but an easy B+.", + "pos": 0.123, + "neu": 0.797, + "neg": 0.08, + "_id": { + "$oid": "6711d48dcd60fca157e5bbfc" + } + }, + { + "text": "Was kind of hoping for that 4.0(A), I know some students consider an A- and A the same thing but I dont. Compared with other CCNY professors teaching this course she is a blessing. The workload for her class is VERY DOABLE. People complain but they shouldn't. Keep up they great work Anna.", + "pos": 0.179, + "neu": 0.75, + "neg": 0.071, + "_id": { + "$oid": "6711d48dcd60fca157e5bbfd" + } + }, + { + "text": "Incredibly nice, I loved her. She gives good feedback on essays and really focuses on the writing aspect of your work rather than picking at your grammar. She's completely understandable and is there if you need her.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d48dcd60fca157e5bbfe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48ecd60fca157e5bc00" + }, + "professor_name": "Jason Kapsack", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "He's the best Professor I ever had. He makes maths easy and simple. A true gentleman he is. Loved his class. He's also very cute. He teaches very well and answers any questions asked to him even if it's elementary math lol. Take him if you can! The best!", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc01" + } + }, + { + "text": "He doesnt use the textbook, but he claims he does. You should always check your test because stuff would be correct and he will mark it incorrect. He doesnt explain stuff clearly, he jumps from one thing to another without clearly explaining the information. If the problems are not done in his way then its correct. He takes 1 week to email back.", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d48ecd60fca157e5bc02" + } + }, + { + "text": "He is an Amazing Professor. I passed pre-calc because he was my Professor. He is very CUTE!!! He teaches very well and clearly. He cares for his students. He is very understanding. He wants his students to pass. He is the Best Professor I ever had! I wish I could take him again.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc03" + } + }, + { + "text": "he's a great professor who takes the time to explain and really cares about the students", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc04" + } + }, + { + "text": "One of the best! Explains material as simple as possible, goes through examples, always willing to offer extra help either during office hours or e-mail. GIves quizzes before and exam - study those and the review sheet, go to his review classes and you'll be good! TAKE HIM IF YOU HAVE THE CHANCE. YOU WON'T REGRET IT.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc05" + } + }, + { + "text": "Professor Kapsack, is great. If anything, I'm embarrassed of how crappy of a student I was. Anything math related requires you to not miss class because once you do, you're doomed. He provides enough work for you to truly grasp the material and be prepared for exams. All in all, he's really great and very good looking... very.", + "pos": 0.232, + "neu": 0.634, + "neg": 0.133, + "_id": { + "$oid": "6711d48ecd60fca157e5bc06" + } + }, + { + "text": "Best professor at CCNY", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc07" + } + }, + { + "text": "He's one of the best professors at ccny. Expect to put work into this course, its tough. However, his exams are fair, but studying is must. Fair in grading and clearly explains the material. simply amazing.", + "pos": 0.338, + "neu": 0.636, + "neg": 0.026, + "_id": { + "$oid": "6711d48ecd60fca157e5bc08" + } + }, + { + "text": "Professor Kapsack is an awesome professor. He really teaches the material, and you can tell he cares about every student understanding it. He is a very fair grader and makes class time enjoyable. One of the best math professors at City. The course is difficult, so expect to put in a fair amount of work- it will be worth it in the end.", + "pos": 0.267, + "neu": 0.701, + "neg": 0.032, + "_id": { + "$oid": "6711d48ecd60fca157e5bc09" + } + }, + { + "text": "Really helpful professor, one of the best professors I've ever had. Clearly explains the material and his testsquizzes are really fair. He wants you to do well and takes out time to explain anything you might be struggling with. Fair easy grader-take him!!!", + "pos": 0.355, + "neu": 0.598, + "neg": 0.048, + "_id": { + "$oid": "6711d48ecd60fca157e5bc0a" + } + }, + { + "text": "Professor Kapsack Jason is a great professor. He's really chilled and understanding and actually cares about whether you understand the material or not. He breaks everything down in a way that you will be able to understand if you pay attention. If you don't pass the class then it's your fault so I would recommend going to class regularly.", + "pos": 0.145, + "neu": 0.795, + "neg": 0.06, + "_id": { + "$oid": "6711d48ecd60fca157e5bc0b" + } + }, + { + "text": "he cares about his students and the exams are fair if you study them well otherwise you will struggle and also gives partial credit. Willing to give his time to students during office hours. does not dropout the lowest grade. although the course is difficult, he tries his best to make the material simple for students to understand.", + "pos": 0.23, + "neu": 0.702, + "neg": 0.067, + "_id": { + "$oid": "6711d48ecd60fca157e5bc0c" + } + }, + { + "text": "Besides his charming looks and corny jokes, he is amazing. He gives 3 in-class exams ans then the final. He does not drop any exam, since the exams are moderately easyhard. He is a fair and well grader. He will help you understand a thousand ways. He teaches by his own methods, not the books, he will show how to do both easy & difficult questions.", + "pos": 0.265, + "neu": 0.704, + "neg": 0.031, + "_id": { + "$oid": "6711d48ecd60fca157e5bc0d" + } + }, + { + "text": "Jason is an awesome professor. He is willing to help people and he is a man dedicated to what he does. If you can do his review, the tests are doable. The Web-Assign HWs are long and hard, but he'll give you an extension whenever you need it. He gives in-depth explanations about a problem or the overall topic. Jason made Calc 201 fun & enjoyable.", + "pos": 0.187, + "neu": 0.752, + "neg": 0.061, + "_id": { + "$oid": "6711d48ecd60fca157e5bc0e" + } + }, + { + "text": "Professor Kapsack is the best professor in City College. If you can do the reviews, you can pass his tests. He gives in-depth explanations to approach a problem or about the overall topic. The Web-Assign questions are long and hard, but he'll give extensions. Highly recommended and this professor will make you love Math", + "pos": 0.175, + "neu": 0.777, + "neg": 0.048, + "_id": { + "$oid": "6711d48ecd60fca157e5bc0f" + } + }, + { + "text": "Awesome math 19500 professor, reasonable with grading.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc10" + } + }, + { + "text": "Professor Jason is awsome that he makes u understand the materials and humerous. Exams are pretty straight forward; so Make sure you do all his Hw and review. Otherwise, you are going to suffer during the test. Willing to give extra credits to people who needs it. Highly recommeded !!!", + "pos": 0.221, + "neu": 0.722, + "neg": 0.057, + "_id": { + "$oid": "6711d48ecd60fca157e5bc11" + } + }, + { + "text": "What an amazing professor! He makes math so easy it is a joke. He really tries to make the subject accessible to students. His test are easy and do not require much work. Also you have to do webassign, which is not hard just time consuming. Most of the answers you could find on Wolfram Alpha. Which is a really helpful tool for math students.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc12" + } + }, + { + "text": "I didn't like college math before I met this guy. I was having difficulty with math before I took this class with him. Very friendly and motivated, takes time to revise for every test and always ready to help. He is also a Phd. student at the school. Definitely recommend him. He should be awarded tenure.", + "pos": 0.278, + "neu": 0.659, + "neg": 0.063, + "_id": { + "$oid": "6711d48ecd60fca157e5bc13" + } + }, + { + "text": "This guy is great, he is incredibly clear and explains everything great. The textbook is really just an online homework website that is required. Do the homeworks, and just ask him if you need help, and your gunna do well. Also he's super chill, i listen to music in one ear almost every class.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc14" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48ecd60fca157e5bc16" + }, + "professor_name": "Mikhal Dekel", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "Boring class, tough grader, makes you buy and read her own book", + "pos": 0.0, + "neu": 0.725, + "neg": 0.275, + "_id": { + "$oid": "6711d48ecd60fca157e5bc17" + } + }, + { + "text": "Very bad experience to say the least", + "pos": 0.0, + "neu": 0.613, + "neg": 0.387, + "_id": { + "$oid": "6711d48ecd60fca157e5bc18" + } + }, + { + "text": "One of the best at CCNY. Super helpful to anyone who is willing to put in the work. Great readings and engaging lectures.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc19" + } + }, + { + "text": "Great teacher & is passionate about her work, content of the class was great but very boring and tedious there are a lot of readings taking place Weekly and pop quizzes they are fairly easy.", + "pos": 0.25, + "neu": 0.674, + "neg": 0.076, + "_id": { + "$oid": "6711d48ecd60fca157e5bc1a" + } + }, + { + "text": "Awesome professor. Did a great job lecturing and engaging class in discussion of readings. Helped make difficult topics/theories easy to understand. Would definitely take another class from Dekel again.", + "pos": 0.388, + "neu": 0.552, + "neg": 0.06, + "_id": { + "$oid": "6711d48ecd60fca157e5bc1b" + } + }, + { + "text": "I love this professor!!", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc1c" + } + }, + { + "text": "Great professor who really seems to understand her students comments, and is able to clarify and add to what students have to say. Very interesting material.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc1d" + } + }, + { + "text": "good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc1e" + } + }, + { + "text": "Smart...Taking her class will be an investment in your future. What Dekel teaches will help come handy in other classes and in life", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc1f" + } + }, + { + "text": "Boring in-class. Sometimes got interesting discussions, but usually she just talked. Just do the few writing assignments, and she grades very leniently.", + "pos": 0.079, + "neu": 0.851, + "neg": 0.07, + "_id": { + "$oid": "6711d48ecd60fca157e5bc20" + } + }, + { + "text": "If you want a better grade, suggest you to take someone else. If there no other instructors, wait until next semester. Do not take her!!! Waste of time and money!!! She doesn't even know how to teach. All she does is to ask student to discuss on their own. She always come un-prepare.", + "pos": 0.131, + "neu": 0.832, + "neg": 0.037, + "_id": { + "$oid": "6711d48ecd60fca157e5bc21" + } + }, + { + "text": "Waste of time!!!!!!!", + "pos": 0.0, + "neu": 0.335, + "neg": 0.665, + "_id": { + "$oid": "6711d48ecd60fca157e5bc22" + } + }, + { + "text": "She's very intelligent and presents a lot of interesting material in addition to a courseload filled with mostly interesting books (though at times too lengthy=lots of hw). Her voice becomes monotone though, so much of her brilliant teaching goes to waste for a significant amount of the class. A fair grader.", + "pos": 0.262, + "neu": 0.694, + "neg": 0.044, + "_id": { + "$oid": "6711d48ecd60fca157e5bc23" + } + }, + { + "text": "She is such a great prof. very thought provoking!!!", + "pos": 0.354, + "neu": 0.498, + "neg": 0.148, + "_id": { + "$oid": "6711d48ecd60fca157e5bc24" + } + }, + { + "text": "She's one of the most intelliegent women I've ever met. She is clear and I really liked what she taught in the class. She's very inspiring.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc25" + } + }, + { + "text": "not too exciting", + "pos": 0.0, + "neu": 0.432, + "neg": 0.568, + "_id": { + "$oid": "6711d48ecd60fca157e5bc26" + } + }, + { + "text": "learned a sufficient amount.She is very clear during discussions and serious. Yet, she doesn't seem all too accepting of your opinions. either way i still enjoyed the class.", + "pos": 0.258, + "neu": 0.704, + "neg": 0.038, + "_id": { + "$oid": "6711d48ecd60fca157e5bc27" + } + }, + { + "text": "took her for english 110 and speech 101, she's very helpful and understanding. participate in class, speak to her after class and write well.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc28" + } + }, + { + "text": "Go to class prepared. She can seem laid back sometimes, but you can tell she knows when the class is unprepared. You have to rise to the standards. She won't hold your hand and she won't sing and dance to entertain you. You have to actually participate and do your work.", + "pos": 0.079, + "neu": 0.86, + "neg": 0.062, + "_id": { + "$oid": "6711d48ecd60fca157e5bc29" + } + }, + { + "text": "shes really nice but her classes are boring..do your work well and on time...come to class and participate..and u'll get that A", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d48ecd60fca157e5bc2a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48fcd60fca157e5bc2c" + }, + "professor_name": "Devid Paolini", + "rating": 4.7, + "department": "Italian department", + "comments": [ + { + "text": "He is not clear enough mostly in the assignments. His explanations of how to do the assignments are very vague, or incomplete and you will pay the price for it.", + "pos": 0.0, + "neu": 0.837, + "neg": 0.163, + "_id": { + "$oid": "6711d48fcd60fca157e5bc2d" + } + }, + { + "text": "He is the best! Funny and friendly, but you have to go to class, pay attention, participate, do your homework!", + "pos": 0.291, + "neu": 0.644, + "neg": 0.064, + "_id": { + "$oid": "6711d48fcd60fca157e5bc2e" + } + }, + { + "text": "Professor Paolini is a great guy, really funny, loves teaching, and would make anyone want to continue learning Italian-- never a dull moment. Read his syllabus because he goes by it, show up to class and take notes, do his assignments ON TIME, and study the notes from lecture; you can't fail.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc2f" + } + }, + { + "text": "He is the best...explains everything in detail and wants you to succeed....highly recommend him...", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc30" + } + }, + { + "text": "He's Awesome!!! He Made Me Love The Launguage even More. Hes Funny, cool and can be mean in a funny way. Doesnt like people coming late much. But he is understanding, but hes not easy to fool! TRUST THAT! and for us spanish speakers; he grades harder concerning spelling lol! TAKE HIM YOU WONT REGRET IT!", + "pos": 0.363, + "neu": 0.577, + "neg": 0.06, + "_id": { + "$oid": "6711d48fcd60fca157e5bc31" + } + }, + { + "text": "Divine Comedy course...amazing prof...definitely worth the time and efforts...learned a lot...", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc32" + } + }, + { + "text": "In you city college life, you will encounter amazing professors like Michio Kaku, Robert Melara, and Prof. Paolini definitely belongs amongst these ranks for his amazing sense of humor. You will have a lot of fun in his class but learn a lot as well. He always provides extra credit opportunities in his exams,so just do your hw and dont be late!!", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc33" + } + }, + { + "text": "Best professor at city.made me love the language even more. very interesting. do hw practice with co-eds and participate in class even if you cant pronunciate a word he will help and you will definitely pass and learn alot too.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc34" + } + }, + { + "text": "AMAZING! I love him!! Super easy class, its true he only speaks in italian, but you can understand the man. and he makes sure you learn italian!", + "pos": 0.429, + "neu": 0.571, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc35" + } + }, + { + "text": "Expects you to know everything from top to bottom didn't really explain the material just expected you to know it automatically however he speaks crystal clear Italian.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc36" + } + }, + { + "text": "speaks very clearly, easy to understand. he is also very helpful and picks interesting topics and material.", + "pos": 0.479, + "neu": 0.521, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc37" + } + }, + { + "text": "Loved professor Paolini. Beautiful person, very helpful, super handsome and enjoys teaching! Take him he's THE BEST!!!!!!!!", + "pos": 0.736, + "neu": 0.264, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc38" + } + }, + { + "text": "Best professor at city college, it looks like he truly enjoys his job. He is very interesting and funny and the things you learn in his class are likely to stick with you even after the class has ended. TAKE HIS CLASS!", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc39" + } + }, + { + "text": "the best professor ive had at city college. he's funny and makes class interesting. he speaks very clearly and speaks solely in italian.", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc3a" + } + }, + { + "text": "He's very helpful and crystal clear. He gives a quiz prior to the exam which is helpful, gives a list of what to expect on exams including the final, very funny and he makes the class interesting and enjoyable. Dont be late! He will put u on the spot! Just pay attention, show interest and study and you'll do great. I highly recommend him!", + "pos": 0.336, + "neu": 0.647, + "neg": 0.017, + "_id": { + "$oid": "6711d48fcd60fca157e5bc3b" + } + }, + { + "text": "I think he is one of the best PROF. i EVER MET IN CITY COLLEGE. HE IS PATIENT AND CONSIDERATE.HIS CLASS IS PRETTY EASY ANDEVEN IF U DON'T STUDY BUT PAY ATTENTION IN CLASS, TRUST ME, AT LEAST YOU CAN GET A B", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc3c" + } + }, + { + "text": "An amazing teacher and VERY cute! Very helpful anyone would be lucky to have him! :)", + "pos": 0.624, + "neu": 0.376, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc3d" + } + }, + { + "text": "Loved him. Cute and funny and patient.", + "pos": 0.71, + "neu": 0.29, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc3e" + } + }, + { + "text": "Good to look at and funny. He is an intresting teacher. show him you are dedicated and it will reflect in his grade. Very easy going personality.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc3f" + } + }, + { + "text": "Great Professor. Extremely funny. Wish all my professors were like him.", + "pos": 0.646, + "neu": 0.354, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc40" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48fcd60fca157e5bc42" + }, + "professor_name": "Gabriel Zapata", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "He really helped me both inside and outside of class with what he taught", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc43" + } + }, + { + "text": "This professor is great. He really cares for all his students. Explains the material very well , if you are having trouble in his class you can ask for tutoring will certainly help you out. I recommend you take this class.", + "pos": 0.321, + "neu": 0.629, + "neg": 0.05, + "_id": { + "$oid": "6711d48fcd60fca157e5bc44" + } + }, + { + "text": "I think Prof. Zapata's class is fine, He tries to explain the materials clear, and he does not want to fail anybody. He also tries to give students extra credits if you did not get a good grade on the tests. Also, he will gives us hints before the test. I think he is a good professor. And you will get an A if you did your works.", + "pos": 0.164, + "neu": 0.789, + "neg": 0.047, + "_id": { + "$oid": "6711d48fcd60fca157e5bc45" + } + }, + { + "text": "The best Professor I ever had. Do all the assigned homework and you will pass with a perfect grade. He also explains the philosopy and history that helps a lot.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc46" + } + }, + { + "text": "I have pass all my math classes before this one, because I always had a good math teacher to break things down so I can understand it. However with this professor's class I would finally fail math. He is a very smart person, i'll give him that, but he just can't teach. He makes many errors that will confuse you and throw you off the whole concept.", + "pos": 0.054, + "neu": 0.842, + "neg": 0.105, + "_id": { + "$oid": "6711d48fcd60fca157e5bc47" + } + }, + { + "text": "I have already taken Pre calc in Highschool but when he went over the same material, he made it seem more confusing. I can understand where he is going, but he uses some methods for the math problem that are not used often by others and makes it harder. Prepare to do all the work and study on your own.", + "pos": 0.0, + "neu": 0.901, + "neg": 0.099, + "_id": { + "$oid": "6711d48fcd60fca157e5bc48" + } + }, + { + "text": "Math is not my major but I had to take this statistics class. At first I thought that I was going to be bored out of my mind. Professor Zapata was awesome! he made the class enjoyable and expanded my cognitive flexibility.", + "pos": 0.241, + "neu": 0.71, + "neg": 0.049, + "_id": { + "$oid": "6711d48fcd60fca157e5bc49" + } + }, + { + "text": "Im taking calculus and doing well because he gave me good intuition in his precalculus. I miss his style of teaching, helpfulness and fairness, wish more teachers were like him. I will definitely take him again... I hope he teaches my cal 2!!!", + "pos": 0.352, + "neu": 0.62, + "neg": 0.028, + "_id": { + "$oid": "6711d48fcd60fca157e5bc4a" + } + }, + { + "text": "This professor is very smart, but cannot explain steps or concepts clearly at all. He may send confusion, and this led to the class asking him to go over things multiple times. He makes up his own terms like \"thingy\" His class didnt prepare me for the finals, It was something you had to learn yourself. Your GPA might be at risk", + "pos": 0.123, + "neu": 0.8, + "neg": 0.076, + "_id": { + "$oid": "6711d48fcd60fca157e5bc4b" + } + }, + { + "text": "He knows what he's teaching but doesn't know how to teach it clearly. He would use terms like \"animals\" and \"thingy\" rather than the actual terms which made it confusing sometimes.", + "pos": 0.183, + "neu": 0.754, + "neg": 0.063, + "_id": { + "$oid": "6711d48fcd60fca157e5bc4c" + } + }, + { + "text": "EXCELLENT professor. He definitely is knowledgable in math and is very willing to help students, just make sure to ask for help. He's a great guy and a good professor! Easy A if you show up, do the homework, and study for his tests.", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc4d" + } + }, + { + "text": "He is a brilliant man and mathematician, however, he cannot explain the concepts clearly. He ends up making the material much more confusing than it really is. If possible, I highly recommend taking this class with another professor. Don't risk your GPA.", + "pos": 0.221, + "neu": 0.736, + "neg": 0.044, + "_id": { + "$oid": "6711d48fcd60fca157e5bc4e" + } + }, + { + "text": "Good Professor. Second time I took this class, and he was much better than my previous professor. If you need help just ask, he's really nice and helpful.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc4f" + } + }, + { + "text": "Awesome professor, really seeks to help students!", + "pos": 0.595, + "neu": 0.405, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc50" + } + }, + { + "text": "He does NOT know how to explain the course material clearly; he ends up making everything a lot more confusing than it actually is! If you can take another professor!", + "pos": 0.098, + "neu": 0.836, + "neg": 0.066, + "_id": { + "$oid": "6711d48fcd60fca157e5bc51" + } + }, + { + "text": "He is a fair professor, he knows what he is talking about and tries to connect every topic to further level math so that you know the connection. Attend his class, do the webassigns, and be respectful and you should be fine in the class.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc52" + } + }, + { + "text": "he doesn't know how to explain things, makes everything complicated and confusing. I'm usually good in math but during his class i'm always lost and dont know what to do.", + "pos": 0.058, + "neu": 0.81, + "neg": 0.132, + "_id": { + "$oid": "6711d48fcd60fca157e5bc53" + } + }, + { + "text": "I don't know what people are talking about!! He's an awesome professor and I would deff take him again. He knows his stuff and really takes out the time to help you. He tries to help you pass how ever he can.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc54" + } + }, + { + "text": "He. Cannot. Teach. Don't get me wrong, he's a very intelligent man-BUT he can't teach for his life. The goal of teaching is to make material simpler so we can understand it. However, he does the opposite of this and speaks about Calc 1 topics from an advanced Calc P.O.V. Instead of teaching how to do stuff, he wastes ALL the time doing proofs.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc55" + } + }, + { + "text": "OMG.. idk where to start. I took math 150 with him and since it was basic math i wasn't really worried because i already knew that stuff. However, he doesn't know how to teach or explain the material! At the end of the semester i felt very confused and even though i got a good grader I had to study a lot on my own to get back on track. Dont take hi", + "pos": 0.068, + "neu": 0.881, + "neg": 0.051, + "_id": { + "$oid": "6711d48fcd60fca157e5bc56" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d48fcd60fca157e5bc58" + }, + "professor_name": "James Myer", + "rating": 3.2, + "department": "Mathematics department", + "comments": [ + { + "text": "The grading for quizzes are confusing. He is all over the place when going over a topic. Better off going to tutoring every day than trying to figure out what he is covering. Quizzes were 3 questions mostly. Good luck. Graded by quiz midterm and final and they are not easy at all. You will not understand what he is talking about. Do not take him.", + "pos": 0.119, + "neu": 0.823, + "neg": 0.058, + "_id": { + "$oid": "6711d48fcd60fca157e5bc59" + } + }, + { + "text": "Unless you want to be confused throughout the whole semester, then I suggest you don't take this course with him. You are teaching yourself, his lectures consisted of writing on a chalkboard with notes all over the place. There were quizzes every week and the grading made no sense whatsoever. He is no help when it comes to the midterm and final.", + "pos": 0.02, + "neu": 0.878, + "neg": 0.102, + "_id": { + "$oid": "6711d48fcd60fca157e5bc5a" + } + }, + { + "text": "Unless you are good at math and have patience take this class. If not stay away. When writing on board all over the place. The grading for quizzes made no sense. Didn't use the book. Provided the textbook. Only good thing about him. Didn't use it once. Wore the same clothes the whole semester. Only graded on quizzes,midterm and final", + "pos": 0.089, + "neu": 0.877, + "neg": 0.034, + "_id": { + "$oid": "6711d48fcd60fca157e5bc5b" + } + }, + { + "text": "He has a different style of teaching where he doesn't follow the book and he does his best to show how topics are derived but everything has a strict method of solving. If you're confused, he will go out of his way to help you. Last topics before both tests were rushed but everything on the exams were on his reviews. Easy quizzes too.", + "pos": 0.175, + "neu": 0.786, + "neg": 0.039, + "_id": { + "$oid": "6711d48fcd60fca157e5bc5c" + } + }, + { + "text": "Beautiful professor with a beautiful mind ;). Lectures could range from surprisingly easy, to pretty rough, but he always took time to ensure all students have a proper chance to grasp the material. He is forgiving when it comes to grading. No curve, but his partial credit is generous. He gives you the textbook and a lot of practice material.", + "pos": 0.352, + "neu": 0.613, + "neg": 0.035, + "_id": { + "$oid": "6711d48fcd60fca157e5bc5d" + } + }, + { + "text": "James Myer is a great professor that give great lectures. I always excelled in the quizzes he gives. I would have passed the class and got a maximum grade of an A in three conditions if this class were 100% online, the midterm was online instead of in person, and all exams including the final being online has the backtracking option.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc5e" + } + }, + { + "text": "Luckily there's a very strict way to go about solving problems in this class and the methods are not very hard. If you learn the material on your own, you can do well. If you learn it from him though, you may struggle because he doesn't explain very well and doesn't give the best examples or hw problems. This class is honestly just \"easier\" calc 2", + "pos": 0.182, + "neu": 0.661, + "neg": 0.157, + "_id": { + "$oid": "6711d48fcd60fca157e5bc5f" + } + }, + { + "text": "He prepares you well enough to do good on his quizzes and midterm but after the midterm he rushed everything, and you will NOT be ready for the final. He skipped a bunch of important stuff and pretty much half-**sed the material. Try to learn the material through other means. Don't depend entirely on him or you will fail. Other than that, he's ok.", + "pos": 0.133, + "neu": 0.769, + "neg": 0.098, + "_id": { + "$oid": "6711d48fcd60fca157e5bc60" + } + }, + { + "text": "Honestly, he's a mid-professor. Not the best, not the worst. I don't think he can lecture very well because he seems like he just wings the lectures. He gives a lot of partial credit on exams and quizzes if you show that you know what you're doing which is the upside to him. Unfortunately, there's no homework so all your grade comes from assesments", + "pos": 0.177, + "neu": 0.72, + "neg": 0.102, + "_id": { + "$oid": "6711d48fcd60fca157e5bc61" + } + }, + { + "text": "Mayer is one of the best, If not the best Math professor at CCNY. Math professors know their stuff but not always can teach what they know. Myers is really passionate about math and he finds the simples way to get you to understand topics. I took differential equations with him and nothing about it was simple but he made it as simple as possible.", + "pos": 0.106, + "neu": 0.863, + "neg": 0.03, + "_id": { + "$oid": "6711d48fcd60fca157e5bc62" + } + }, + { + "text": "If you are passionate about math you will love James. He explains concepts very well. However, he doesn't provide much practice material. So you are on your own when it comes to studying or getting some practice.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc63" + } + }, + { + "text": "to be honest, you'll be very successful in his classes if you have a good background in math since everything carries on. he's very caring and can teach well but he goes fast so you have to make sure you ask questions. his tests aren't too bad but he WILL make you work for your grade!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc64" + } + }, + { + "text": "I would only suggest him if you are good at math or you can study by yourself. Learn everything if you do decide to take him, his review sheets and his tests does not match and there are only 2 tests; the midterm and the final. Thus, if you do take him study a lot.", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc65" + } + }, + { + "text": "Please do not take him, no matter what! I saw that 4.0 and I got extremely hyped but trust me, unless you're very good at math DO NOT TAKE HIM! About good 95% of my class is doing 2nd bachelors or Master's and they know their stuff. But if you're like me and it's your first time, you will fail. Trust me on this", + "pos": 0.271, + "neu": 0.661, + "neg": 0.068, + "_id": { + "$oid": "6711d48fcd60fca157e5bc66" + } + }, + { + "text": "meh! every time he tries to explain something he makes it worse but he is honestly really helpful and is available if you need help. still wouldn't recommend taking him. if you fail the final you WILL fail the class", + "pos": 0.197, + "neu": 0.539, + "neg": 0.264, + "_id": { + "$oid": "6711d48fcd60fca157e5bc67" + } + }, + { + "text": "The course itself is pretty hard. James sped through the not so difficult chapters, so we would have more time on the difficult ones and reviews. Attendance is not mandatory. Hard tests, but theyre very similar to his review sheets. Offers an extra credit assignment based on your major. Really cool and down to earth.", + "pos": 0.194, + "neu": 0.742, + "neg": 0.064, + "_id": { + "$oid": "6711d48fcd60fca157e5bc68" + } + }, + { + "text": "Professor Myer is one of the best professors I have ever had. He is really passionate about math, every lesson has a motivational problem which makes it interesting. Although his tests are relatively hard and he goes fast through the curriculum, he creates good review guides for his tests and always helpful when ask him questions.", + "pos": 0.261, + "neu": 0.681, + "neg": 0.058, + "_id": { + "$oid": "6711d48fcd60fca157e5bc69" + } + }, + { + "text": "This might have been one of the best math classes I've ever taken. James goes above and beyond to explain the material and engage you in it. He even offers extra credit related to topics you find interesting. It's easy to do well if you prepare for the quizzes, ask questions as you have them, and do the extra credit. I learned a lot and enjoyed it.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d48fcd60fca157e5bc6a" + } + }, + { + "text": "Professor Myer knows his stuff but he can be a hard professor sometimes only because he assumes you know how to do the material after he teaches it to you. However, if you don't understand, he will answer your questions. Do the review for the midterms and final and make sure to practice a lot. Take him if you're strong in math though.", + "pos": 0.107, + "neu": 0.87, + "neg": 0.023, + "_id": { + "$oid": "6711d48fcd60fca157e5bc6b" + } + }, + { + "text": "He sped through the curriculum so we had over a month to spend on review for the midterms and final which is FIRE. He grades tests fairly and gives back step-by-step solutions. Gives extra credit opportunities on webwork and even offered an essay that he would give guidelines for. Always stops to answer questions and doesn't give homework. cool guy", + "pos": 0.102, + "neu": 0.799, + "neg": 0.099, + "_id": { + "$oid": "6711d48fcd60fca157e5bc6c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d490cd60fca157e5bc6e" + }, + "professor_name": "Richard Skolnik", + "rating": 3.6, + "department": "History department", + "comments": [ + { + "text": "Richard Skolnick helped me through a difficult time to help me achieve my Masters Degree. It was a difficult study of Puritanism government. I was given a great deal of freedom to accomplish the study. So many years have passed. But, I still think of him.", + "pos": 0.17, + "neu": 0.763, + "neg": 0.067, + "_id": { + "$oid": "6711d490cd60fca157e5bc6f" + } + }, + { + "text": "To all those who think that he is the greatest professor ever, please read his book \"I am the American\". A book that borders on hatred on one's own race and acceptance and adulation of an ignoble person.", + "pos": 0.199, + "neu": 0.713, + "neg": 0.088, + "_id": { + "$oid": "6711d490cd60fca157e5bc70" + } + }, + { + "text": "WORST professor i have ever encountered! not just because he doesn't teach real history, but he also doesn't allow you to think on your own. what try to say that is incompatible with his own opinion is wrong and he won't let you express yourself.tries to impose his political opinions on you.DANGEROUS MAN RUN AWAY! can't believe they let him teach!", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d490cd60fca157e5bc71" + } + }, + { + "text": "Grade based on THREE PAPERS ONLY!!?? His grading is VERY TOUGH! I dunno what I will get for the over all grade but didn't do so well on the papers... (well class in general did pretty bad, so maybe there's curve)?", + "pos": 0.218, + "neu": 0.656, + "neg": 0.125, + "_id": { + "$oid": "6711d490cd60fca157e5bc72" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d490cd60fca157e5bc73" + } + }, + { + "text": "harsh grader, expects us to write every word that comes out of his mouth &then spit it right back on quizzes, or else you get an F. it's impossible to get an A on his two papers. alright lecturer. not accessible at all. he'll comment you if you are absent even once or if you leave the classroom to even go to the bathroom, overall-annoying person.", + "pos": 0.029, + "neu": 0.912, + "neg": 0.059, + "_id": { + "$oid": "6711d490cd60fca157e5bc74" + } + }, + { + "text": "Very relaxed classroom. Suprisingly tough grader and very few graded assignments. Non-confrontational, tenured professor who is winging it.", + "pos": 0.166, + "neu": 0.762, + "neg": 0.071, + "_id": { + "$oid": "6711d490cd60fca157e5bc75" + } + }, + { + "text": "very clear, very witty, very interesting. make life easy. taking his class in the middle of the day is like a break from the stress of college. highly recommended.", + "pos": 0.346, + "neu": 0.583, + "neg": 0.071, + "_id": { + "$oid": "6711d490cd60fca157e5bc76" + } + }, + { + "text": "You really have to take great notes to do well on the quizzes, which are sometimes graded harshly if you didn't take good notes or didn't pay attention. An absence will lower your ability to do well on the quiz. But ultimately, your final grade allows a few poor quizzes. Very interesting teacher. Very engaging. The class is like havng a conversatio", + "pos": 0.248, + "neu": 0.657, + "neg": 0.096, + "_id": { + "$oid": "6711d490cd60fca157e5bc77" + } + }, + { + "text": "he's a good professor. gives you a take home quiz every 2 weeks, optional final [but i recommend that you do take it], 2 essays on 2 books, easy stuff. don't fall asleep during class cause you'll miss out on stuff for the quizes.", + "pos": 0.178, + "neu": 0.785, + "neg": 0.037, + "_id": { + "$oid": "6711d490cd60fca157e5bc78" + } + }, + { + "text": "Great professor. Knows his subjects. Surprisingly harsh essay/quiz grader. \r At the beginning he gives students props for opening their mouth no matter what they say. Eventually, he demands that you say something vaugely well though out.", + "pos": 0.194, + "neu": 0.715, + "neg": 0.092, + "_id": { + "$oid": "6711d490cd60fca157e5bc79" + } + }, + { + "text": "He is very nice prof. I think it's a easy A class. If you go to his class everyday, u will be fine. He is very helpful. The quizzes he give is very easy, right from his lec.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc7a" + } + }, + { + "text": "This guy talks alot but most of his lectures are not a waste of time you actually learn new things. However this semester in Healthcare he wants specific and exact points on them. Alot of ppl dropped his calss cuz he a harsh grader in quizzes. I dont know about US society but healthcare he is hard.", + "pos": 0.048, + "neu": 0.865, + "neg": 0.087, + "_id": { + "$oid": "6711d490cd60fca157e5bc7b" + } + }, + { + "text": "Take home quizes every week (EASY), 2 essays on 2 books (one's a biography he wrote which is very interesting, another's a story about a jewish family coming to america). The final wasn't hard at all either. Class is a little boring, because he's always talking.", + "pos": 0.153, + "neu": 0.809, + "neg": 0.039, + "_id": { + "$oid": "6711d490cd60fca157e5bc7c" + } + }, + { + "text": "Fall asleep? This Prof is great if you want to learn, not just get good grades. He KNOWS what he's doing because he talks extemp, and it is not gibberish. He sheds light on a lot. His book is amazing (I am the American) and his health course is up to date with current issues in today's world.", + "pos": 0.14, + "neu": 0.823, + "neg": 0.037, + "_id": { + "$oid": "6711d490cd60fca157e5bc7d" + } + }, + { + "text": "Skolnik's class was absolutely great!! Not time consuming (if this is an issue for some of you!)! Quizzes are take-home, optional final, and two papers on two texts read and discussed in class!!) Wonderful professor, who is highly into current issues!", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc7e" + } + }, + { + "text": "He's awesome; no textbook - just talks extemporaneously ... take-home quizzes and easy exams.", + "pos": 0.347, + "neu": 0.545, + "neg": 0.109, + "_id": { + "$oid": "6711d490cd60fca157e5bc7f" + } + }, + { + "text": "extremely easy class with easy exams", + "pos": 0.604, + "neu": 0.396, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc80" + } + }, + { + "text": "take home quizzes, 2 papers, optional final. really easy...just have to take notes on his lecture cuz that's where his quizzes come from...doesn't use a textbook...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc81" + } + }, + { + "text": "This guy is the man!! All you have to do is raise ur voice a few times during class and of course take good notes and you will do fine.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc82" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d490cd60fca157e5bc84" + }, + "professor_name": "Danian Hu", + "rating": 3.6, + "department": "Asian Studies department", + "comments": [ + { + "text": "Semi-asynchronous, but kept class hours open for questions. Very well organized, only time I've seen blackboard used well. Lots of documentaries, recorded lectures, textbook readings, and quizzes. All easy, but there are a lot and it can be easy to fall behind. Follow the grading criteria or suffer the consequences. Still fair and very erudite.", + "pos": 0.234, + "neu": 0.699, + "neg": 0.068, + "_id": { + "$oid": "6711d490cd60fca157e5bc85" + } + }, + { + "text": "Only recorded lectures which are boring, heavily based on documentaries. His quizzes are a heavy part of the grade, and it is very easy to do because it is based on a documentary and just search for the answer in the script of the documentary you are good to go. Not a hard grader and seems tough at first, but getting to know him he is kind.", + "pos": 0.133, + "neu": 0.828, + "neg": 0.039, + "_id": { + "$oid": "6711d490cd60fca157e5bc86" + } + }, + { + "text": "I'm sure Professor Hu is wonderful in person. That being said, I strongly disliked his method of asynchronous teaching. Students basically taught themselves with Youtube videos and readings he posted in preparation for quizzes. He gave us one paper, at the end of the semester, which I didn't quite feel prepared for. I just wish we met more :/", + "pos": 0.154, + "neu": 0.742, + "neg": 0.104, + "_id": { + "$oid": "6711d490cd60fca157e5bc87" + } + }, + { + "text": "The best Professor in CCNY. He is the best and always reply to you quickly as he can. Take him if you get the chance!", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc88" + } + }, + { + "text": "2ez.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc89" + } + }, + { + "text": "Professor Hu is great. He gave online quizzes which were easy to get a perfect score on. He gave a research paper that the students needed to come up with the topic for. That's about it. He made the powerpoints available on blackboard. Reading the textbooks was mostly optional.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc8a" + } + }, + { + "text": "I took a hybrid course with Prof Hu and it wasn't that bad. Met only 5 times in the entire semester. Most of the grade is based on the online work, which are due weekly. Gave 1 essay and the final was online where he allowed you to take it twice. Also in class, most of the time he just showed documentaries. Overall easy A type class.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc8b" + } + }, + { + "text": "I took a hybrid class with him he's fine not to verbal may seem a little anti social. He was ok not much to say as long as you get good percentage on the chapter quizzes and inquizitvies (hand them in one time) your good. He only gave one paper and an online final. Take him just do the work and communicate if you have an issue", + "pos": 0.171, + "neu": 0.803, + "neg": 0.026, + "_id": { + "$oid": "6711d490cd60fca157e5bc8c" + } + }, + { + "text": "Not too bad of a class. A lot of power points and videos, which get very mundane and boring. The saving grace of the class are his tests are all online with two tries. The worst part being his final research paper is very demanding AND it's back to back with your final test. Making the last week of class worth roughly 50% of your grade.", + "pos": 0.099, + "neu": 0.785, + "neg": 0.116, + "_id": { + "$oid": "6711d490cd60fca157e5bc8d" + } + }, + { + "text": "I took him, because I needed to boost my GPA. In class I had no chance to participate and he takes away points on participation, most times disorganized. He might be friendly, easy approachable, but not compassionate. I needed an A to stay in the History program. Didn't get it. I don't think he is an easy grader, he was rather harsh to me", + "pos": 0.128, + "neu": 0.735, + "neg": 0.137, + "_id": { + "$oid": "6711d490cd60fca157e5bc8e" + } + }, + { + "text": "pretty easy professor, online quizzes and test and one final research paper, one of the easiest professor at city college", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc8f" + } + }, + { + "text": "this class should be call 20th china on firm you watch ALOT of documentaries if you are interest in history you will enjoy the doc. if not you can sleep in class. grade base on 2 online test(do the reading if you want to do well), powerpoint and final paper not a hard grader the professor is approachable and friendly toward the students", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc90" + } + }, + { + "text": "Lots of documentaries which should be a muss for every History class. Ask for student power point presentation. Have to read the textbook, do not expect him to chew so you can just swallow. Lenient grader. Take him", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc91" + } + }, + { + "text": "class was ok you watch alot of movies(which i like) grade base on 2 online test, 2 powerpoint presentation and final paper. he curves grade if your doing bad in the class overall it was a ok class and the professor's pretty friendly and too lenient when it came to deadlines on presentation", + "pos": 0.237, + "neu": 0.709, + "neg": 0.054, + "_id": { + "$oid": "6711d490cd60fca157e5bc92" + } + }, + { + "text": "i really like this professor class consist of movies(alot like the history channel), presentation from student and lecture from the professor. i really like how the class was setup. grade base on 2 test(take home and online), 2 presentation(easy grade) and a final research paper. ohh yea he sometimes give extra credit work which helps your grade", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc93" + } + }, + { + "text": "good teacher, lots of powerpoint presentations by students. do the reading and you'll do ok. his test are online tests and are easy", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc94" + } + }, + { + "text": "He's a pretty good teacher. His videos are interesting to watch and very helpful. I think he is a great teacher.", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc95" + } + }, + { + "text": "Prof. Hu is an intersting fellow. Class challenging with many readings and a fair number of assignments. Plus 10-12 page research paper. It is true there is alot of video watching and powerpoints which gets boring. He is rather anti-communist, and so for this class he was pretty biased and hardly ever metioned health improvements or such in China.", + "pos": 0.196, + "neu": 0.74, + "neg": 0.064, + "_id": { + "$oid": "6711d490cd60fca157e5bc96" + } + }, + { + "text": "by far the easiest professors. all you do is watch movies. do what he asks you to do and and an easy A. if your looking for a good grade and gpa boost, take him.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc97" + } + }, + { + "text": "Your out of luck if you take Hu. You explain all the assigments while he sits back and relaxes. So please, don't take any of his classes.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d490cd60fca157e5bc98" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d491cd60fca157e5bc9a" + }, + "professor_name": "Marc Palmieri", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Professor Palmieri is incredibly understanding and kind. His knowledge of cinema and theater really helped inform the way he introduced film and screenwriting, and he was always available if there were any questions. There was lot of reading as everyone writes and shares, but he always came with detailed notes, suggestions, and questions.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bc9b" + } + }, + { + "text": "He spent the first couple of weeks going over exactly what scriptwriting looks like. Once we started workshopping everyone's scripts he would give really detailed feedback to everyone and it showed how much care he put into reading every script. He's also pretty funny and relatable, and would frequently tell personal stories.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bc9c" + } + }, + { + "text": "This professor is great. I took his playwright class last semester and now I'm in his screenwriting class. He gives such great constructive criticism of our work that makes our writing improve. There's not a lot of homework for this class. Only two written works (one revision). He's also not a snooze fest which is great!", + "pos": 0.223, + "neu": 0.735, + "neg": 0.042, + "_id": { + "$oid": "6711d491cd60fca157e5bc9d" + } + }, + { + "text": "I have not tried dramatic riding, but I am glad I am taking this course. I am adopting a short story and the professor let you submit the story for your first round so you can get ideas.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bc9e" + } + }, + { + "text": "Professor Palmieri paid attention to the strengths of each student, and helped to make their work more concise and powerful. He broke down why it is important to have the story happening in real time on a stage, what makes the audience involved in the story. His requirements were to write a short play and to critique other students' work.", + "pos": 0.147, + "neu": 0.812, + "neg": 0.041, + "_id": { + "$oid": "6711d491cd60fca157e5bc9f" + } + }, + { + "text": "Professor Palmieri brings the art of Dramatic Storytelling to life. His passion for theater helped me see the possibilities of adapting a story for the stage. Palmieri paid attention to the individual strengths of each student, and in all cases, helped to make their work more concise and powerful. He broke down the key elements in how to create an", + "pos": 0.158, + "neu": 0.801, + "neg": 0.041, + "_id": { + "$oid": "6711d491cd60fca157e5bca0" + } + }, + { + "text": "Really good professor. Good grader and good lectures. he is very understanding. hes a must take professor", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bca1" + } + }, + { + "text": "Learned a lot in this class. He's one of the MFA program teachers so it felt like special treatment. I wrote my first playwrighting script. You get a good grade if you do all the work and in format.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bca2" + } + }, + { + "text": "This professor is not for the students with grammar issues; he referred students to the writing center all the time. He probably didn't know the correct way to use most punctuation himself.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bca3" + } + }, + { + "text": "Took his drama class recently and never really read plays before or saw many. Made the history of the 7 plays we covered very clear and we read a lot of the stuff aloud in the class which was cool and not what I expected. A lot rides on the two essays you have to do there are no tests or quizzes. He was in a commercial google him.", + "pos": 0.095, + "neu": 0.849, + "neg": 0.055, + "_id": { + "$oid": "6711d491cd60fca157e5bca4" + } + }, + { + "text": "He gives a very clear lecture - his biggest strength. I get the impression that he doesn't have a passion for teaching though. He was absent quite a bit during the semester, and he habitually ended class early. The grading was a joke - attendance and participation was 35% of the grade. The other 65% was divided between 2 papers (with no re-writes).", + "pos": 0.142, + "neu": 0.793, + "neg": 0.065, + "_id": { + "$oid": "6711d491cd60fca157e5bca5" + } + }, + { + "text": "DO YOUR HOMEWORK AND PORTFOLIO AND YOU'LL GET AN A.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bca6" + } + }, + { + "text": "He's just that good.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bca7" + } + }, + { + "text": "he is great!", + "pos": 0.687, + "neu": 0.313, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bca8" + } + }, + { + "text": "Fun and cool as long as you attend class and keep up with the reading. Occasional pop quiz got me nervous. Overall, made reading really fun which suprised me alot", + "pos": 0.247, + "neu": 0.697, + "neg": 0.056, + "_id": { + "$oid": "6711d491cd60fca157e5bca9" + } + }, + { + "text": "Does a lot of the reading himself, but you're still required to do some on your own. Really good at teaching to a level of high clarity, but I think it's almost too easy of a class because you don't cover a lot of material. We just did 2 Greek works, Macbeth, and a handful of short stuff. Overall: Great teacher who's enthusiastic about his work.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcaa" + } + }, + { + "text": "Excellent, brilliant, and helpful. Also hilarious", + "pos": 0.867, + "neu": 0.133, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcab" + } + }, + { + "text": "BEST TEACHER EVER!! very funny, makes the class more interesting, very easygoing...not that much homework, NO EXAMS! its not a lot of reading since he reads it himself in the class! I wish I could take all of my classes with him!", + "pos": 0.273, + "neu": 0.674, + "neg": 0.053, + "_id": { + "$oid": "6711d491cd60fca157e5bcac" + } + }, + { + "text": "Best teacher for WHUM101. Cool guy, interested in what he teaches, and is easy on his students. Overall a very likable person. Material isn't hard. Only have to read parts of different books, such as the odyssey, but we read it in class anyway so it's no big deal if you forget. Overall great teacher. Approachable and easy to get along with.", + "pos": 0.242, + "neu": 0.686, + "neg": 0.072, + "_id": { + "$oid": "6711d491cd60fca157e5bcad" + } + }, + { + "text": "Cool!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d491cd60fca157e5bcb0" + }, + "professor_name": "Seiji Shirane", + "rating": 4.2, + "department": "History department", + "comments": [ + { + "text": "prof shirane is a nice guy; the class just requires you to be really on point with your papers, grammar and etc, make sure you do the readings or else you are in trouble lol", + "pos": 0.19, + "neu": 0.745, + "neg": 0.065, + "_id": { + "$oid": "6711d491cd60fca157e5bcb1" + } + }, + { + "text": "Dr. Shirane is alright, but not my cup of tea. He is very obnoxiously pretentious during his lectures and tends to generalize topics. However, I did learn a great deal about Asian history, which opened my eyes to a few things. Nevertheless, he needs to be humbled, if you do not do the readings (1-2 books a week), he will single you out. Be aware.", + "pos": 0.097, + "neu": 0.837, + "neg": 0.066, + "_id": { + "$oid": "6711d491cd60fca157e5bcb2" + } + }, + { + "text": "He requires a lot of pages when reading, be aware. Other than that he is okay, just not that great of a teacher then he is a researcher.", + "pos": 0.061, + "neu": 0.833, + "neg": 0.106, + "_id": { + "$oid": "6711d491cd60fca157e5bcb3" + } + }, + { + "text": "This class is incredibly difficult. He's a harsh grader and pays strong attention to details - bad grammar and citations will not go unnoticed. Still, there are many assignments that build off previous work, and he respects good effort, so there is always an opportunity to get better grades.", + "pos": 0.221, + "neu": 0.637, + "neg": 0.143, + "_id": { + "$oid": "6711d491cd60fca157e5bcb4" + } + }, + { + "text": "I will leave Professor Shirane another review once I am done with this class, but so far it is kind of stress-inducing but with a mix of being light. He expects a lot of mechanics in your writing assignments, so be sure to look at his guidelines and know how to cite your source materials overall he is pretty great though and knowledgable, good prof", + "pos": 0.219, + "neu": 0.767, + "neg": 0.014, + "_id": { + "$oid": "6711d491cd60fca157e5bcb5" + } + }, + { + "text": "Professor Shirane is the best professor I have ever had in college. While he is tough as a grader and makes you work for your grade he is a great lecturer and a wonderfully caring person. His classes completely changed the course of my college study in a positive way. While I no long attend CCNY I am truly grateful to have known professor Shirane.", + "pos": 0.294, + "neu": 0.662, + "neg": 0.044, + "_id": { + "$oid": "6711d491cd60fca157e5bcb6" + } + }, + { + "text": "Prof Shirane has great classes and so much knowledge about Asian history. He care about his students and doesn't make you buy textbooks since he puts all the readings in a packet.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcb7" + } + }, + { + "text": "He gives the reading packets instead of having the students buy textbooks. He gives about 20-30 pages to read per class and may give a pop quiz to see if students have done the readings. Overall, he is a professor that really cares about his students and is accessible outside of class. Do the readings and you should be fine.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcb8" + } + }, + { + "text": "Professor Shirane is a caring and helpful person, who knows a lot about his field of study. His class was my favorite of the semester, mostly due to his seriousness and comitment to actual learning. His demeanor can present as stern, but he is very generous with his guidelines and very clear in his expectations. I greatly enjoyed learning from him.", + "pos": 0.263, + "neu": 0.723, + "neg": 0.015, + "_id": { + "$oid": "6711d491cd60fca157e5bcb9" + } + }, + { + "text": "Professor Shirane gives you all the readings for the course, so money is saved by not buying textbooks. He gives a reading for every class as homework. All the quizzes are from the readings. Midterm and final are composed of what was learned in the readings and lectures. The midterm and final are done in a normal class period.", + "pos": 0.05, + "neu": 0.95, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcba" + } + }, + { + "text": "Professor Shirane assigns many readings, which definitely help you learn the material. All the quizzes are based on the readings. The midterm and final are the same format, using what was learned in the readings and in-class notes. If you are a slow writer, try to practice writing quicker, since the midterm and final need to be done quickly.", + "pos": 0.087, + "neu": 0.913, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcbb" + } + }, + { + "text": "Professor Shirane is a good professor. Make sure to do the readings cause thats where the quizzes come from. Take good notes cause it'll help you with the midterm and final. Not a easy class if your learning Asian history for the first time. His class requires hard work and dedication. He does not have time for lazy students, he will fail you.", + "pos": 0.143, + "neu": 0.727, + "neg": 0.13, + "_id": { + "$oid": "6711d491cd60fca157e5bcbc" + } + }, + { + "text": "DEF ONE OF THE BEST PROF IN CCNY! He knows his stuff so well so if you are interested in Jap history you should definitely take him. Not an easy A but he is fair enough (Not a tough grader for sure). He gives out review sheet before midterm and final. Will take his class again for sure.", + "pos": 0.275, + "neu": 0.701, + "neg": 0.024, + "_id": { + "$oid": "6711d491cd60fca157e5bcbd" + } + }, + { + "text": "He's in an excellent professor that knows his stuff. He knows when you did not read or even looked at the material yet is very understanding. If you like the subject, then you should take his course. If you just want an easy A class, do not take it then youll be in misery and will not learn anything!", + "pos": 0.156, + "neu": 0.79, + "neg": 0.054, + "_id": { + "$oid": "6711d491cd60fca157e5bcbe" + } + }, + { + "text": "He really knows his subject matter and wants his students to be engaged and critical of source materials. He's fairly flexible and available outside of class. You really have to bring your best efforts to the table if you want an A; don't expect him to give you anything for free but you will learn a lot.", + "pos": 0.166, + "neu": 0.808, + "neg": 0.027, + "_id": { + "$oid": "6711d491cd60fca157e5bcbf" + } + }, + { + "text": "He is a great professor! The way he teaches makes everything so easy to remember. He is very nice and is there to always help his students. He is one of the smartest and best professors in CCNY. He is highly recommended!", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcc0" + } + }, + { + "text": "He is awesome! I'm actually taking him again twice for spring! I suck at remembering things, but the way he teaches things makes it much easier for people to remember. Show up to class, do your work, and study. You'll def get an A!", + "pos": 0.142, + "neu": 0.819, + "neg": 0.039, + "_id": { + "$oid": "6711d491cd60fca157e5bcc1" + } + }, + { + "text": "My first hi story professor in city college and he made me want to study Japan more.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcc2" + } + }, + { + "text": "Amazing professor, one of the best in city college!", + "pos": 0.542, + "neu": 0.458, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcc3" + } + }, + { + "text": "very helpful", + "pos": 0.756, + "neu": 0.244, + "neg": 0.0, + "_id": { + "$oid": "6711d491cd60fca157e5bcc4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d492cd60fca157e5bcc6" + }, + "professor_name": "Colin Mullins", + "rating": 5, + "department": "English As A Second Language department", + "comments": [ + { + "text": "Colin is the best teacher I ever have. He is not only an extraordinary educationalist, but also a person, who has a great general knowledge. His sense of humor, understanding for diferent cultures, mind open for new ideas, and endless energy makes studying easy and exciting. I can recommend this teacher to student on every level. His is the one :)", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcc7" + } + }, + { + "text": "A great teacher.", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcc8" + } + }, + { + "text": "The best English teacher I'v ever had!His teaching method, grammar knowledge,everything is remarkable!He knows exactly how to explain things explicitly to all levels of students.His class is truly worth!He has great sense of humor,so nobody can get bored in his class.Thank you Colin for everything.It was really a pleasure to have you as my teacher!", + "pos": 0.239, + "neu": 0.73, + "neg": 0.031, + "_id": { + "$oid": "6711d492cd60fca157e5bcc9" + } + }, + { + "text": "Colin, thank you so much, you are the best teacher i ever had! Hope to see you in the fall!", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcca" + } + }, + { + "text": "I think no more such a professional teachers in New York! We were so lucky, that Colin had been working in CCNY with us before Columbia. Hope he going to come back for the next year! If not we have to work more to pay for classes in Columbia.", + "pos": 0.127, + "neu": 0.804, + "neg": 0.069, + "_id": { + "$oid": "6711d492cd60fca157e5bccb" + } + }, + { + "text": "He is the best teacher that I ever had. His knowledge in grammar is excellent and his teaching skills are very good.\r Thank you Colin for everything, I will waiting for a teacher like you in Chile.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bccc" + } + }, + { + "text": "He has been one the best professors I have ever had", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bccd" + } + }, + { + "text": "The best teacher I ever had. He engage and hold the attention of the students, stablished respect and he has good skills to transmitted his knowledge. In conclusion he love his job.", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcce" + } + }, + { + "text": "fantastic and amazing teacher. he's really awesome. i can't never forget him.", + "pos": 0.554, + "neu": 0.376, + "neg": 0.07, + "_id": { + "$oid": "6711d492cd60fca157e5bccf" + } + }, + { + "text": "Good grammar teacher. Too much repetition of contents in order to make it clear.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd0" + } + }, + { + "text": "Great class, helpful content, he has the patience to explain over and over again. He is respectful and punctual. He is organized and use the best material. Excellent professor.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd1" + } + }, + { + "text": "If you want to know everything about English Grammar, Collin is the right person for it. He gives you a very clear explanation about everything you need to know. He always has time for you and this is very important if you really want to learn English. If you are in his class I can tell you that you definitely are going to speak and write English!!", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd2" + } + }, + { + "text": "This class is really helpful when you need to improve your english skill. Colin motivates students to study hard. I really recommend this class to all ESL students.", + "pos": 0.257, + "neu": 0.702, + "neg": 0.041, + "_id": { + "$oid": "6711d492cd60fca157e5bcd3" + } + }, + { + "text": "The best English teacher in my life!", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd4" + } + }, + { + "text": "I prefer Colin's structure and way of teaching. It's very similar to my way of thinking, understanding and organizing information. He teach English as it is a math, when every rule has own explanation and all part of grammar connecting as in a math formulas. I highly appreciate his abilities and would recommend Colin for all my friends!", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd5" + } + }, + { + "text": "It's a great experience share the same room with Mr. Collins. He's way of teaching is remarkable way different than others techniques I have seen. He makes the least interested subject something that can catch you attention. Excellent Profesor, very professional.", + "pos": 0.262, + "neu": 0.694, + "neg": 0.044, + "_id": { + "$oid": "6711d492cd60fca157e5bcd6" + } + }, + { + "text": "I like his classes, clear and useful.", + "pos": 0.667, + "neu": 0.333, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd7" + } + }, + { + "text": "He is a very good teacher. I know grammar clearly through his classes.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd8" + } + }, + { + "text": "Mr.Mullins is a very humorous, certainly easygoing teacher that I luckily have had the chance to be taught by. In addition to years and years of teaching experience that made him a professional, his personality also brings such a jolly time into the class.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcd9" + } + }, + { + "text": "Awesome", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcda" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d492cd60fca157e5bcdc" + }, + "professor_name": "Megan Skelly", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "The most lenient and chill professor ever\n\nShe is very lenient on late work\n\nOverall very kind and you can just tell she genuinely cares about her students\n\nAttendance did not count towards grade\n\nAnd overall the assignments were very easy\n\nShe responds to emails in a timely manner", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcdd" + } + }, + { + "text": "Great Professor. Should definitely take for english.", + "pos": 0.576, + "neu": 0.424, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcde" + } + }, + { + "text": "Professor Skelly was by far my favorite professor. She is incredibly caring and wants her students to succeed in every way possible. She takes the time to get to know her students and follow up with every matter. Her assignments are doable and straight forward. She also extends assignments and projects as needed.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcdf" + } + }, + { + "text": "Professor Skelly is by far one of the kindest, most compassionate professors at CCNY. She took the time to make sure that everyone was doing well in and outside of the classroom. She also gives really detailed feedback on essays, more than I have ever received before. She is so kind and her lectures are amazing! Take her whenever possible!!", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bce0" + } + }, + { + "text": "She gives a lot of writing but she will give you extensions if you need", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bce1" + } + }, + { + "text": "Professor Skelly is absolutely the best professor I've ever met! Flexible course and easy A.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bce2" + } + }, + { + "text": "Professor Skelly is such an amazing professor, one of the best ones at City! She's down to earth and cares a lot about her students. Her feedback is great, assignments are fun and doable, and sets a respectful environment. You will learn a lot in her class and will not regret it trust me, if you see any available courses under her name take it!", + "pos": 0.289, + "neu": 0.678, + "neg": 0.032, + "_id": { + "$oid": "6711d492cd60fca157e5bce3" + } + }, + { + "text": "I had fun taking this class and thats coming from someone whos not a big writer. She is a great teacher and would definitely recommend. No exams, only papers.", + "pos": 0.325, + "neu": 0.619, + "neg": 0.057, + "_id": { + "$oid": "6711d492cd60fca157e5bce4" + } + }, + { + "text": "Professor Skelly is one of the best! She gives insightful and good feedbacks on drafts. Just Make sure to do all your work. If you like to do breathing exercises, youll love her class.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bce5" + } + }, + { + "text": "Professor Skelly is not a tough grader. She is very understanding and tries to give you as much points as she can. The work is of usual, just do the work and youll get a good grade. Highly recommended!", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bce6" + } + }, + { + "text": "Professor Skelly was amazing! She respects her students and is very engaged. The course work consists of mainly 4 essays with smaller discussion assignments assigned weekly. Although this is a lot of work, she is always available to help you by email and always responds in less than 24 hours. If one of her classes is available, take it!", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bce7" + } + }, + { + "text": "She was an amazing Professor. Even though we had so many papers to write, she gave us extra time to complete them. She was very helpful and friendly.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bce8" + } + }, + { + "text": "I already miss her. She is the best professor I had ever seen, and be sure to take her if you see she is available, because she is soooo understanding and really nice person.", + "pos": 0.233, + "neu": 0.728, + "neg": 0.039, + "_id": { + "$oid": "6711d492cd60fca157e5bce9" + } + }, + { + "text": "She actually respects her students. Give her the same respect in return.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcea" + } + }, + { + "text": "She is one of the greatest professor I have ever had. The papers are alot but you just have them and finishing it does not take your life. She is very nice and will give you feedback that helps you achieve better in papers. If you have any question, just ask her. She also gives out extra credit and accepts students ideas. Overall, great teacher!", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bceb" + } + }, + { + "text": "she is more than amazing. she always ready to help you at any time. she replays to your emails in less than 24 hours. she is so friendly and nice to you. Her class is easy if you doing your work and she gives good and useful feedback. be ready to write a lot but it will be useful at the end. there is some reading not too much. she is fair at gradin", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcec" + } + }, + { + "text": "She is simply amazing! There are no tests, shes extremely laidback and nice, the class is easy, not much reading but expect to write a lot! She is great on feedback and is always willing to help. I definitely recommend taking this course with her.", + "pos": 0.393, + "neu": 0.581, + "neg": 0.026, + "_id": { + "$oid": "6711d492cd60fca157e5bced" + } + }, + { + "text": "Skelly is one of the best instructor in CCNY. She has a clear direction on what to do with the papers. There are over all 4 papers in NO quiz or tests. The paper are easy, only the second one requires lots of research but if you choice your topic wisely, it would be easy to do. She gives a lot of great feedback and she is very nice. Take this class", + "pos": 0.264, + "neu": 0.714, + "neg": 0.022, + "_id": { + "$oid": "6711d492cd60fca157e5bcee" + } + }, + { + "text": "Amazing professor. *NO TEST*, the class was broken down into 4 major writing assignments to make up the majority of our grade. After each draft was due for each assignment, the professor had one on one meetings with each student to discuss what you could do to improve it. She is also very laid back and a overall fun and kind professor to have! 5/5!", + "pos": 0.181, + "neu": 0.778, + "neg": 0.04, + "_id": { + "$oid": "6711d492cd60fca157e5bcef" + } + }, + { + "text": "she barely gives any feedback on rough drafts, and then gives u a mediocre grade on the final draft because of other things that could have been better. How am i supposed to know what to fix if you dont tell me?!", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d492cd60fca157e5bcf0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d493cd60fca157e5bcf2" + }, + "professor_name": ". Green", + "rating": 2, + "department": "Science department", + "comments": [ + { + "text": "Unless you have a background in quantum you will need to do do some hardcore studying after class. He is a little confusing and will focus mainly on the math but he is really helpful and def knows his stuff. Def not for everyone but if you try he will acknowledge that.", + "pos": 0.075, + "neu": 0.902, + "neg": 0.024, + "_id": { + "$oid": "6711d493cd60fca157e5bcf3" + } + }, + { + "text": "You need to always ask questions in class or you will get lost in the equations. It is normal for most of the class to fail as he will say. Tests are roughly half conceptual, half number crunching. You should find time to go to the review session at least once a week because that is the only place he works out problems and you can ask questions.", + "pos": 0.018, + "neu": 0.867, + "neg": 0.115, + "_id": { + "$oid": "6711d493cd60fca157e5bcf4" + } + }, + { + "text": "first of all he is little aged so there always going to be a communication problem. P chem 330 is not meant to be easy but if you stay with him in the class, you will pass it. he is a very knowledgeable and funny man , but he is really can not explain everything clearly. his exams are similar from the notes and he gives a lot of points.", + "pos": 0.081, + "neu": 0.858, + "neg": 0.062, + "_id": { + "$oid": "6711d493cd60fca157e5bcf5" + } + }, + { + "text": "Study a lot outside of class and go to the workshops. The problem with the class is that it is supposed to tie Gen-Chem topics together. But the professor kind of hops between integrals and you aren't quite sure what happened or what you're deriving. And his explanations are vague at best. He knows what he's talking about but can't communicate well", + "pos": 0.081, + "neu": 0.8, + "neg": 0.118, + "_id": { + "$oid": "6711d493cd60fca157e5bcf6" + } + }, + { + "text": "Bad. He really doesnt explain things thoroughly. He rather have his students who have a hard time understanding, spend time with him after class. But there are so many of them that the lines to speak with him are long and outrageous. The projector for the lecture class was a HORRIBLE idea.", + "pos": 0.0, + "neu": 0.783, + "neg": 0.217, + "_id": { + "$oid": "6711d493cd60fca157e5bcf7" + } + }, + { + "text": "dont even think about taking a class with him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d493cd60fca157e5bcf8" + } + }, + { + "text": "This Einstein look-a-like should stop teaching and completely focus on research or something simlar!He displays his graduate and phd knowledge of chemistry in his undergraduate classes by giving irrelevent & extremely hard questions on exams. Even he can't spontaneously solve some of the problems from the text.You learn nothing in his class.", + "pos": 0.041, + "neu": 0.812, + "neg": 0.146, + "_id": { + "$oid": "6711d493cd60fca157e5bcf9" + } + }, + { + "text": "I don't know how this professor was for general chemistry, but i can tell you how he was for physical chemistry. For those of you who think green is not that bad i dare you to take him for physical chemistry (General chem is easy). You will die of how hard his exams are. Absolutely awful teacher and never has time to help you.", + "pos": 0.139, + "neu": 0.72, + "neg": 0.141, + "_id": { + "$oid": "6711d493cd60fca157e5bcfa" + } + }, + { + "text": "As time goes by..you will do better in his class. I dont think his exams are hard..they are average. I didn't even touch the text and is pretty well. So just attend class everyday and you'll do fine. Also don't be late cause he starts right on time and you may miss so useful information.", + "pos": 0.214, + "neu": 0.762, + "neg": 0.025, + "_id": { + "$oid": "6711d493cd60fca157e5bcfb" + } + }, + { + "text": "You can study ad much ad you want but his test are crazy. the averages in the tests were in the 50's.", + "pos": 0.047, + "neu": 0.825, + "neg": 0.128, + "_id": { + "$oid": "6711d493cd60fca157e5bcfc" + } + }, + { + "text": "prof is hard, he's exams are hard, but if you go to class and sit in the front sit and if u can really hear him, then you are fine. hey people did get 97 and 80s in class. so the exams arent out of the world. and if u dont go to class then how do u know he sucks. he's allright. i had fun. :)", + "pos": 0.138, + "neu": 0.789, + "neg": 0.073, + "_id": { + "$oid": "6711d493cd60fca157e5bcfd" + } + }, + { + "text": "HE IS A GOOD PROFESSOR, BUT BORING AS HELL THE MATERIAL IS HARD TO GET BECAUSE HIS VOICE PUTS YOU TO SLEEP. HE CURVES THE GRADES THOUGH AND IF YOU MAKE AN EFFORT HE PULLS YOU GRADE UP, BUT THE CLASS IS BORING. GET YOUR REDBULLS READY IF U WANT TO STAY AWAKE. NOT EVEN THAT WORKS", + "pos": 0.094, + "neu": 0.709, + "neg": 0.197, + "_id": { + "$oid": "6711d493cd60fca157e5bcfe" + } + }, + { + "text": "He isn't that bad as you guys pointed out. His exam are really crazy, I admit that. But he ends up curving alot when he gives you the final grade. Its not true that stuyding for his test is waste of time. Its just that he gives something on the exam that you don't know (LOL), and of course he doesn't pull something off from the moon, it is from th", + "pos": 0.043, + "neu": 0.804, + "neg": 0.153, + "_id": { + "$oid": "6711d493cd60fca157e5bcff" + } + }, + { + "text": "This guy doesnt teach anything that is useful to the students. He is by far the most retarted professor when it comes to teaching a class. Talks to himself in class and makes up his own exams that are out of this world. \"Do not take this moron\". A monkey could teach a class better than him.", + "pos": 0.091, + "neu": 0.85, + "neg": 0.059, + "_id": { + "$oid": "6711d493cd60fca157e5bd00" + } + }, + { + "text": "God... Green is the worst teacher. He don't teach you anything. He's test are so hard that studying would be a waste of your time. Is like he thinks we are his lab partners, and that is why he starts speaking to us in scientific terms. I swear, I barely went to class and i learned later never to take notes; it's a waste of time.", + "pos": 0.06, + "neu": 0.773, + "neg": 0.167, + "_id": { + "$oid": "6711d493cd60fca157e5bd01" + } + }, + { + "text": "i hate this professor ! he is horrible", + "pos": 0.0, + "neu": 0.445, + "neg": 0.555, + "_id": { + "$oid": "6711d493cd60fca157e5bd02" + } + }, + { + "text": "like everyone else said before. this professor is outrageously crazy. He totally goes of the topic and discuss things that aren't relevent to what we are learning, he also does the same when you ask him a question he neverly really answers it. his test are difficult as hell because the way he words his question are so hard to answer.", + "pos": 0.035, + "neu": 0.774, + "neg": 0.191, + "_id": { + "$oid": "6711d493cd60fca157e5bd03" + } + }, + { + "text": "this man is the worst science professor ever! if he changed the way he teaches he will do better ! but this guy thinks his students are chemistry students in grad school or something! i hate this professor ugh he made me have the worst time this semester his tests are horrible why are profeesor like this ! science 103 is not supposetobesohard!ugh", + "pos": 0.062, + "neu": 0.666, + "neg": 0.272, + "_id": { + "$oid": "6711d493cd60fca157e5bd04" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d493cd60fca157e5bd05" + } + }, + { + "text": "oh lord this guy mademe hate science so much! he is so unclear his lecture are boring! he makes the class leave..the book is not hard but the way he teaches is not good at all", + "pos": 0.028, + "neu": 0.744, + "neg": 0.228, + "_id": { + "$oid": "6711d493cd60fca157e5bd06" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d493cd60fca157e5bd08" + }, + "professor_name": "Dave Britton", + "rating": 3.9, + "department": "Psychology department", + "comments": [ + { + "text": "Quizzes (midterm and final) are online, proposal due on the last day of class. I think his class was not intriguing, but if you are looking to take a 200 level liberal art course, take him!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d493cd60fca157e5bd09" + } + }, + { + "text": "Good person, not the best professor, but he is knowledgeable in his field.", + "pos": 0.129, + "neu": 0.727, + "neg": 0.144, + "_id": { + "$oid": "6711d493cd60fca157e5bd0a" + } + }, + { + "text": "He is very nice, approachable and always available to help but unfortunately I really don't feel like I learned much from this class. I'm sorry to say the lectures were very boring. He tends to repeat himself a lot and over explain things. Its an easy class, but if you want to learn and be challenged and if its not a required course don't take it.", + "pos": 0.117, + "neu": 0.723, + "neg": 0.16, + "_id": { + "$oid": "6711d493cd60fca157e5bd0b" + } + }, + { + "text": "Professor Britton is a great guy. He is brilliant and laid-back. He does love to teach but is monotonous and since the material is quite difficult, it can get very hard to listen to him without closing your eyes. Expect a serious pounding at the end of the semester with 2 tests, a final, and a huge group project due at the same time.", + "pos": 0.141, + "neu": 0.763, + "neg": 0.096, + "_id": { + "$oid": "6711d493cd60fca157e5bd0c" + } + }, + { + "text": "This guy is very down to earth, and he knows his subject well. He helps alot when you need it. But i had this class evening time, and his soothing voice made me sleepy. So be aware of that. His tests were kind of hard, but he bases the grades on standard deviation. Basically passing grade is the overall grade of the class. He is a good professor!", + "pos": 0.138, + "neu": 0.835, + "neg": 0.027, + "_id": { + "$oid": "6711d493cd60fca157e5bd0d" + } + }, + { + "text": "His class is interesting. Professor is fun, very clear and jolly guy. He explains everything very well, and takes extra time after class to help if you have any questions. You have to do work, but its not hard. i would definitely recommend him.", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d493cd60fca157e5bd0e" + } + }, + { + "text": "He's a cool teacher, that really goes out of his way to help students. A little too passive for me when there are disruptive students but he's a nice guy and is pretty understanding. If you do the work and act the right way you should get a decent grade.", + "pos": 0.218, + "neu": 0.753, + "neg": 0.028, + "_id": { + "$oid": "6711d493cd60fca157e5bd0f" + } + }, + { + "text": "Prof Britton is a really nice and caring professor. he gives online exams which everyone doesnt do well in and still curves everytime. my grades werent good but i ended up with an A. just show up to class EVERYDAY, do the online exams and a group grant proposal which is fun and u cant get anything below a B+", + "pos": 0.173, + "neu": 0.782, + "neg": 0.045, + "_id": { + "$oid": "6711d493cd60fca157e5bd10" + } + }, + { + "text": "This class is not easy A it does require you to study ok, but Britton definitely cares about his students! Do all your work and you'll do fine.", + "pos": 0.281, + "neu": 0.671, + "neg": 0.048, + "_id": { + "$oid": "6711d493cd60fca157e5bd11" + } + }, + { + "text": "very easy... easy a.. just take exams online and u are ok!", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d493cd60fca157e5bd12" + } + }, + { + "text": "My 'misinterpretation' of the previous ratings below me lead me to take this class for the wrong reasons. This class is not that easy as it does require work. The research proposal you have to write requires work. Professor is fair but does care about attendance and participation (you have to show proof online).", + "pos": 0.1, + "neu": 0.837, + "neg": 0.063, + "_id": { + "$oid": "6711d493cd60fca157e5bd13" + } + }, + { + "text": "Prof. Britton is very kind natured and a fair grader. You can consult him about any issues with the course. His class, however, requires group participation and some writing. He's very technologically savvy, so almost everything is done on his website. His lectures can be a bit boring sometimes, but class participation is much appreciated by him!", + "pos": 0.138, + "neu": 0.836, + "neg": 0.026, + "_id": { + "$oid": "6711d493cd60fca157e5bd14" + } + }, + { + "text": "very easy class. class requires you to take online test. have 2 weeks to do them. do a group research grant proposal. lectures put you to sleep. overall, great teacher and very helpful.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d493cd60fca157e5bd15" + } + }, + { + "text": "This was a fairly easy class, the prof doesn't require participation, attendance or any essays. In order to get a good grade you need to take his exams online, you have 2 weeks to do them (sometimes more) and if you get any of the 4-5 questions wrong, he'll let you know so that you can resubmit another answer. Overall, easy and interesting course.", + "pos": 0.155, + "neu": 0.803, + "neg": 0.042, + "_id": { + "$oid": "6711d493cd60fca157e5bd16" + } + }, + { + "text": "Professor Britton is excellent as far as the exams go. But when you are in the class you get sleepy and want to go to sleep right in front of his face. But when you take the exam online, it's like a piece of cake. But you need to make sure you read what the book says. It is really hard to comprehend so read slowly and carefully.", + "pos": 0.155, + "neu": 0.818, + "neg": 0.027, + "_id": { + "$oid": "6711d493cd60fca157e5bd17" + } + }, + { + "text": "He is a nice guy. He may know a lot about neuroscience, but not good at explaining it. doesn't take attendance, not a hard grader. recommended only for those who really interested in neuroscience, because the reading is complex. must have access to internet!!!", + "pos": 0.198, + "neu": 0.743, + "neg": 0.059, + "_id": { + "$oid": "6711d493cd60fca157e5bd18" + } + }, + { + "text": "Very passionate about the field of neuropsychology, and his lectures are very clear but not very organized. He give you a week to do the exams which are posted online and you can edit them till you get the answer right, he will give you feedback before he grade your question.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d493cd60fca157e5bd19" + } + }, + { + "text": "Really nice guy. He knows his stuff. He's just so incredibly boring. Its hard to figure out why, but he just is. All tests are online, he marks each question, fail, pass or excellent. If you don't get an excellent for a question, you can resubmit until you get an excellent. Its an easy A if you are willing to put in the work.", + "pos": 0.19, + "neu": 0.667, + "neg": 0.143, + "_id": { + "$oid": "6711d493cd60fca157e5bd1a" + } + }, + { + "text": "The previous post describes the class pretty accurately. He is a really nice guy and seems to enjoy the subject. Unfortunately the class lectures are extremely boring. And when I say boring, I mean BORING! Class is a little too laid back, so students that actually come to class kind of just sit there trying to stay awake. Didn't feel he engadged us", + "pos": 0.125, + "neu": 0.736, + "neg": 0.14, + "_id": { + "$oid": "6711d493cd60fca157e5bd1b" + } + }, + { + "text": "no exams, no quizzes, no papers...very relaxed class environment. attendance not required either. everything based online. only 3 very simple, straightforward assignments (answering a few questions) grades very easy based on scale of excellent, pass, and fail. difficult material, but u can get the answers straight from book. great class tho", + "pos": 0.241, + "neu": 0.643, + "neg": 0.116, + "_id": { + "$oid": "6711d493cd60fca157e5bd1c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d494cd60fca157e5bd1e" + }, + "professor_name": "Bhavani Kola", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Kola is the worst, uncaring, fake teacher I've ever met. She doesn't care if you pass or fail, she doesn't help you when you're struggling, she has 8 tests, and soooo much hw. There is no break, no consideration, nothing to help you. It's no wonder her own kids don't ask her for help over their math hw. Save yourself, and take someone else.", + "pos": 0.092, + "neu": 0.613, + "neg": 0.295, + "_id": { + "$oid": "6711d494cd60fca157e5bd1f" + } + }, + { + "text": "She is a teacher who you will feel comfortable to ask for help. Would definitely take her class again. She made the lecture fun and would give us time to do our homework during class to make sure we understood it.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd20" + } + }, + { + "text": "I highly recommend her because is good, and she allows you to solve the work with any method you best understand it in.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd21" + } + }, + { + "text": "Ms. Kola is an AMAZING Instructor.. Her lectures are very clear.. She posts note videos so that u can review it later. If you don't get the material, you can go talk to her in her office, and she'll explain it to you.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd22" + } + }, + { + "text": "This teacher is so AMAZING... If you want a supportive and helpful teacher, look no further cos Ms Kola is the best.", + "pos": 0.472, + "neu": 0.464, + "neg": 0.064, + "_id": { + "$oid": "6711d494cd60fca157e5bd23" + } + }, + { + "text": "She's a very very good teacher... she's nice. She's the BEST", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd24" + } + }, + { + "text": "I love this teacher so much. I wish she was teaching Pre Cal, Calculus 1 and 2 so I could take her again. She's very smart and cares about her students and their grades.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd25" + } + }, + { + "text": "Mrs. Kola is really awesome. Math was already an easy subject for me but she really does do a good job of breaking things down and making sure everyone understands before she moves on. She is always very nice and she makes jokes on the side", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd26" + } + }, + { + "text": "This professor knows her material really well, is very clear and prepares very well. All you need to do is listen, understand and do the work she gives you.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd27" + } + }, + { + "text": "a grad student who teaches way better than many professors. very clear, very helpfull, very generous in grading and extra credit. she will prepare you best for finals and math 202. highly recommended.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd28" + } + }, + { + "text": "take her if ur planning to take math195, she teaches sooooooo good, i love her ..not for her looks but for her style of teaching..she gives quizes every friday, she will prepare u good for cal 1.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd29" + } + }, + { + "text": "Very Nice and very helpful I had her last semester and man i wish i had her his semester not only she is good at teaching but her friendly face and attitude makes the course seem easy and fun. She gets an A+ from me overall", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd2a" + } + }, + { + "text": "she's the BEST!!! got an A+, and i worked for it too.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd2b" + } + }, + { + "text": "the best instructor in city and she is very friendly and funny", + "pos": 0.547, + "neu": 0.453, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd2c" + } + }, + { + "text": "All these people are right she is the best teacher that you can ever have even though you hate math she will make you fall in love with math. I never liked math i always had that question of why math is needed she answered my question she made me fall in love with math i would really recommand you to take her class. specially for those who hates ma", + "pos": 0.147, + "neu": 0.748, + "neg": 0.104, + "_id": { + "$oid": "6711d494cd60fca157e5bd2d" + } + }, + { + "text": "i had her for precalculus and calculus if she was teaching 202 i would take that too she really know what she is teaching and makes sure you know it too she is the best and man she is hooooooooottttttttt......take her.....", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd2e" + } + }, + { + "text": "very beautiful and very very helfull she is very clear and very organised she helps you to learn the course.....you should take her", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd2f" + } + }, + { + "text": "i never liked math before but after i took her class ikinda started to love math take her she is the best .... she make math intresting", + "pos": 0.311, + "neu": 0.644, + "neg": 0.045, + "_id": { + "$oid": "6711d494cd60fca157e5bd30" + } + }, + { + "text": "This professor is really good and shes so beautiful. I had a crush on her when she was my teacher. Take her", + "pos": 0.284, + "neu": 0.66, + "neg": 0.056, + "_id": { + "$oid": "6711d494cd60fca157e5bd31" + } + }, + { + "text": "very helpfull", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd32" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d494cd60fca157e5bd34" + }, + "professor_name": "Raymond Hoobler", + "rating": 3.5, + "department": "Mathematics department", + "comments": [ + { + "text": "Raymond Hoobler is an amazing teacher, he is pretty lenient and makes this class seem pretty easy. He doesn't use Brightspace so grades will not be on there, but he is an easy grader. Attendance is pretty mandatory especially if you want to get the notes and handouts.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd35" + } + }, + { + "text": "i love him", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd36" + } + }, + { + "text": "Mr. Hoobler is a fantastic teacher. As long as he sees that your trying and actually care about the course whether if your are good or terrible at math. He is understanding and lectures are great. He gets right to the point of whats important and what is not. He is not boring and very funny! I would recommend him to anyone.", + "pos": 0.296, + "neu": 0.665, + "neg": 0.039, + "_id": { + "$oid": "6711d494cd60fca157e5bd37" + } + }, + { + "text": "Great Professor. Makes sure all students understand, tells you how you are doing and what your chances are, and extremely nice. If you pay attention in class- you don't need to read the book. A lot of homework- take it as practice!", + "pos": 0.232, + "neu": 0.74, + "neg": 0.028, + "_id": { + "$oid": "6711d494cd60fca157e5bd38" + } + }, + { + "text": "If you have him in an upcoming semester, all I have to say is: bring a pillow. You will not learn anything in his class except good positions for catching some ZZZs. Avoid at all cost.", + "pos": 0.074, + "neu": 0.87, + "neg": 0.056, + "_id": { + "$oid": "6711d494cd60fca157e5bd39" + } + }, + { + "text": "He's a cool guy. He's not mean. He is more than willing to help you extra even after class. He may be a bit unclear in class but he's old, so watdaya expect. Don't be late cuz he will get pissed and embarrass u. Best of luck!", + "pos": 0.213, + "neu": 0.628, + "neg": 0.159, + "_id": { + "$oid": "6711d494cd60fca157e5bd3a" + } + }, + { + "text": "This professor is very helpful and interesting. His teaching approach is to have his students understand rather then memorize. Any mathematically experienced peron will tell you that understanding beats memorizing anyday. He may be hard to understand during class so it is best to visit him during office hours. Practice, study, and it is A A A!", + "pos": 0.166, + "neu": 0.813, + "neg": 0.021, + "_id": { + "$oid": "6711d494cd60fca157e5bd3b" + } + }, + { + "text": "Hey yes he made understanding the work a little harder than it should be but if you are there and you read the text you'll do find. I find that the text is your friend.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd3c" + } + }, + { + "text": "Listen yes he may go around when explaining a problem when the easy way is better but her helps you when you need it and although the book doesn't give much help if you can read and understand any science course you'll understand this course. And the homework problem issues just look at it as practice.", + "pos": 0.138, + "neu": 0.738, + "neg": 0.125, + "_id": { + "$oid": "6711d494cd60fca157e5bd3d" + } + }, + { + "text": "Makes the easiest subjects difficult to understand. The more he explains, the more confused you will get. The textbook does not help either, with its horrible explanations and terrible English. I swear that the people who write Calculus textbooks failed English. Get a study guide and a tutor if you have him.", + "pos": 0.043, + "neu": 0.674, + "neg": 0.283, + "_id": { + "$oid": "6711d494cd60fca157e5bd3e" + } + }, + { + "text": "Hoobler actually performs best while teaching the calc series and diff eq's. He stresses theory perhaps a bit too much, and at the expense of going through many examples. Hoobler is great, even if he does give like a bajillion homework problems.", + "pos": 0.202, + "neu": 0.692, + "neg": 0.107, + "_id": { + "$oid": "6711d494cd60fca157e5bd3f" + } + }, + { + "text": "Ugh. This guy makes simple things far more difficult than necessary. I had to teach myself everything on my own time. Tests were ridiculous, not at all representative of important material. He uses worst case scenario problems. Lucky for us final and quizzes from the department or I would have failed.", + "pos": 0.07, + "neu": 0.654, + "neg": 0.277, + "_id": { + "$oid": "6711d494cd60fca157e5bd40" + } + }, + { + "text": "very good professor", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd41" + } + }, + { + "text": "ok let the bashing begin, he's a good professor, however, he's ponderous, my gosh, dis dude can put a group of candy active 5 yr ols to sleep, dam, i never new boring people such as him existed, the limit to his boringness does not exist!!! talk about digression, he starts to talk about a, b and c, and somehow ends up talkin about elefants and thei", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd42" + } + }, + { + "text": "I think this professor was great. If you don't understand the material during lecture...he is more than willing to help u outside of class. Just work ur a** off, and show interest in the course.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd43" + } + }, + { + "text": "I don't know what you people are talking about Prof. Hoobler is one of the best math professors i have ever had. he rekindled my love of mathematics.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d494cd60fca157e5bd44" + } + }, + { + "text": "I hate math. (Math was my favorite subject). He doesn't go straight to the point.", + "pos": 0.147, + "neu": 0.589, + "neg": 0.263, + "_id": { + "$oid": "6711d494cd60fca157e5bd45" + } + }, + { + "text": "his teaching might not be very clear but i think his tests are. doesnt ask for much on the exams.", + "pos": 0.0, + "neu": 0.918, + "neg": 0.082, + "_id": { + "$oid": "6711d494cd60fca157e5bd46" + } + }, + { + "text": "he made me hate math", + "pos": 0.0, + "neu": 0.519, + "neg": 0.481, + "_id": { + "$oid": "6711d494cd60fca157e5bd47" + } + }, + { + "text": "this professor is the worst professor EVER. He can't teach at all. He is very unclear about what he does, and he doesnt do enough examples. The worst professor ever!! Avoid him.", + "pos": 0.0, + "neu": 0.678, + "neg": 0.322, + "_id": { + "$oid": "6711d494cd60fca157e5bd48" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d495cd60fca157e5bd4a" + }, + "professor_name": "Khalid Bou-Rabee", + "rating": 2.6, + "department": "Mathematics department", + "comments": [ + { + "text": "Unreliable and uncaring about students after class. Little to no email responses. Disorganized HWs, hard to tell what is expected. Makes a false impression of an empathetic teacher by saying \"great question\" to every question but lacks the patience to go through the material at a good pace and with genuine care for the student's understanding.", + "pos": 0.211, + "neu": 0.724, + "neg": 0.064, + "_id": { + "$oid": "6711d495cd60fca157e5bd4b" + } + }, + { + "text": "Nice guy, but terrible teacher. He's unprepared for lectures and randomly pauses in the middle of proofs when he gets lost. Students often had to correct his mistakes. He repeatedly canceled class & office hours without notice, showed up late, and didn't answer email. You'll just have to teach yourself from the book b/c his lectures are worthless.", + "pos": 0.027, + "neu": 0.767, + "neg": 0.205, + "_id": { + "$oid": "6711d495cd60fca157e5bd4c" + } + }, + { + "text": "This was a horrible experience. This professor cant teach hes more of a Teachers assistant than a stand alone professor. His iPad didnt work most of the semester+he cant wait to leave class. I payed for a online course called CalcWorkshop because hes absolutely useless in teaching. Its sad but YouTubers teach better than him. Stingy grading", + "pos": 0.074, + "neu": 0.756, + "neg": 0.17, + "_id": { + "$oid": "6711d495cd60fca157e5bd4d" + } + }, + { + "text": "He is super nice and funny. His exams are around 60 % of your grade, final is 40% of your grade so study but his exams are literally MyMathLab questions. His 4 exams that he gives are easier compared to the final so for the final, you need to practice the previous finals. MML is an extra 10 points to your grade but ask questions if you don't know.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd4e" + } + }, + { + "text": "The only reason you would take him is to avoid some of the other really brutal professors for this class. This prof's grading policy is better than some others that i've seen and it gives you a better chance to pass. It is still very hard though. Lectures alone is not enough. Do your part. Do it well. And you will have a chance.", + "pos": 0.154, + "neu": 0.713, + "neg": 0.133, + "_id": { + "$oid": "6711d495cd60fca157e5bd4f" + } + }, + { + "text": "He's a nice easy-going guy but, you won't learn EVERYTHING you need to from him. You need to do a lot of work on your own if you want to pass. I found the lectures hard to understand sometimes. 4 exams 15% each, final is 40%. HW is 10% extra credit. class exams were similar to hw questions. final was not (b/c of online). overall, hes ok.", + "pos": 0.095, + "neu": 0.883, + "neg": 0.022, + "_id": { + "$oid": "6711d495cd60fca157e5bd50" + } + }, + { + "text": "He is a great professor. He makes sure his students are understanding the concepts. I felt very comfortable asking questions and he replied them with clarity. The grading is mostly based on tests. Be aware, there is NO CURVING. So you better do well on the exams. He gave us a chance to earn bonus points.", + "pos": 0.32, + "neu": 0.64, + "neg": 0.04, + "_id": { + "$oid": "6711d495cd60fca157e5bd51" + } + }, + { + "text": "He explains the difficult concepts of Calculus 2 & 3 in detail and is always open to questions until you understand", + "pos": 0.0, + "neu": 0.889, + "neg": 0.111, + "_id": { + "$oid": "6711d495cd60fca157e5bd52" + } + }, + { + "text": "This guy cannot teach to save his life. He puts students in groups and that's the whole semester for you. He taught nothing and there is no feedback for the assignments that had no connection with what was told during the class. He might be bright but sure does not know how to teach. Waste of time and money. Wouldn't recommend.", + "pos": 0.07, + "neu": 0.768, + "neg": 0.162, + "_id": { + "$oid": "6711d495cd60fca157e5bd53" + } + }, + { + "text": "Hes always in a rush to leave. It felt like the class didnt matter to him at all. The lectures were pretty useless because hes not good at explaining. The homework problems werent based too much on the book; other resources were required. But the final was based off of the homework. Hes a nice guy, but not a good professor. Dont take him.", + "pos": 0.103, + "neu": 0.751, + "neg": 0.146, + "_id": { + "$oid": "6711d495cd60fca157e5bd54" + } + }, + { + "text": "He made everything so difficult. I barely learned anything from him. The problems on the exam are so long. It takes so long to get to the linear algebra part. I regret taking him. -.-", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d495cd60fca157e5bd55" + } + }, + { + "text": "He rushes out of every class and fails to answer questions directly. He is not fair at all on grading and grades very biasely. He gives certain students partial credits and plays favorites. He also threatened us that we cant affect his career because he is Tenure. Stay away from his class at all cost! He honestly doesnt care.", + "pos": 0.174, + "neu": 0.684, + "neg": 0.142, + "_id": { + "$oid": "6711d495cd60fca157e5bd56" + } + }, + { + "text": "Pros: Loves math, beautiful smile + SUPER HOT. Very intelligent. Makes you appreciate math and see cool things about it. Unconventional humor - definitely in his own world. Cons: Made linear algebra WAY more complicated than it had to be. Cheap with partial credit. Too smart to teach. Always in a rush to leave. Midterm 40% Final 40%.", + "pos": 0.412, + "neu": 0.573, + "neg": 0.015, + "_id": { + "$oid": "6711d495cd60fca157e5bd57" + } + }, + { + "text": "He does not prepare you well for the final. Always leaves the class early and doesn't stay to answer any questions. Constantly checks his apple watch for the time like he has somewhere else to be. Take a different professor.", + "pos": 0.059, + "neu": 0.898, + "neg": 0.043, + "_id": { + "$oid": "6711d495cd60fca157e5bd58" + } + }, + { + "text": "Nice guy overall and really funny. I just do not feel that our class was a real concern. He missed like 4 classes in the semester for a math conference in Switzerland. Hes extremely smart but not so good at explaining. I had to do a lot of self teaching. Online Hw is weekly and two exams. Exams are straightforward.I felt prepared for the dep fin.", + "pos": 0.125, + "neu": 0.799, + "neg": 0.076, + "_id": { + "$oid": "6711d495cd60fca157e5bd59" + } + }, + { + "text": "Do all your HW to the best of your ability. See him for help if you need it during office hours. The midterms are extremely basic in terms of content. If you understood the HW, you pass the midterms. I barely put any effort in and managed a B on both midterms. Finals are departmental, takes more effort, but he curves a little. Lectures proofs", + "pos": 0.09, + "neu": 0.91, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd5a" + } + }, + { + "text": "He is one of the best professors if not the best that I've ever had. Explains very clearly, always ready to stop and go over, answers all the questions and sincerely wants to help. He cares about his students and whether they understand the material, so do your work and ask questions and you will do well.", + "pos": 0.28, + "neu": 0.645, + "neg": 0.075, + "_id": { + "$oid": "6711d495cd60fca157e5bd5b" + } + }, + { + "text": "He's honestly the best professor you could have. He gives homework once a week and if you do all your homework and do average on the tests you could get an A. I got a B on the first midterm, a C on the second, and a B on the final and did all my homework and he gave me an A. He curves like crazy and makes sure everyone understands. Hes Also funny", + "pos": 0.175, + "neu": 0.797, + "neg": 0.028, + "_id": { + "$oid": "6711d495cd60fca157e5bd5c" + } + }, + { + "text": "Amazing, nuff said. The class is difficult, especially by the time I got to rings and homeomorphisms, however, explanations are clear. Homework is given weekly. YOU MUST COMMIT YOUR PART of the class. THIS CLASS IS NOT A SHOW UP AND PASS. Office hours are helpful, be careful on exams, and pay attention in lecture! Take notes and ask questions!", + "pos": 0.201, + "neu": 0.744, + "neg": 0.055, + "_id": { + "$oid": "6711d495cd60fca157e5bd5d" + } + }, + { + "text": "A really cool teacher and the homework given isn't too much because he gives you an whole week to do it. He explains the work very clearly and don't have an issue with going over things that are confusing. He is a greaaaatttt professor and keeps you entertain in class", + "pos": 0.141, + "neu": 0.825, + "neg": 0.034, + "_id": { + "$oid": "6711d495cd60fca157e5bd5e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d495cd60fca157e5bd60" + }, + "professor_name": "Brian Neff", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "Awesome class, puts the class in world perspective. Prof. Neff has a genuine passion for the subject. I felt more enlightened after taking the course.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd61" + } + }, + { + "text": "Professor Neff is such a great professor. I truly enjoyed his carefully thought out lectures. He takes the time to make sure his students are truly learning and grasping the material. Ive truly never had a professor as conscientious as him. He is one of a kind !", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd62" + } + }, + { + "text": "Hands down one of the best professors at CCNY. Very intelligent. Lots of experience in the field of psychology. Very warm and open. Eager to help and thoughtful. Absolutely brilliant. 10000000% would take again.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd63" + } + }, + { + "text": "Super sweet, very knowledgable, and very sensitive to different student's needs. Brian was down to stop the lecture just to let everyone voice their reactions and thoughts even though we had a super limited amount of time.", + "pos": 0.23, + "neu": 0.682, + "neg": 0.087, + "_id": { + "$oid": "6711d495cd60fca157e5bd64" + } + }, + { + "text": "One of the best professor I ever had.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd65" + } + }, + { + "text": "Ive had the pleasure of taking an intensive summer course with Professor Neff and he is the best! He presents the material so clearly and makes it so interesting. You will have to work for a good grade but he is not unfair. He is very understanding and shows that he really cares for his students. I would take Professor Neff again.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd66" + } + }, + { + "text": "Really gives his all to the class and is genuinely invested in both the material and in helping his students to grow as both learners and human beings. Prepare to really gain some perspective on the various spheres of mental health conceptualization's.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd67" + } + }, + { + "text": "I love him", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd68" + } + }, + { + "text": "Brian was a great TA for psych! He is very knowledgeable on the topic and makes concepts clear. Gives really great and helpful feedback on papers! He also constantly emailed us reminding us of deadlines and our progress which I really appreciated! Would take him again.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd69" + } + }, + { + "text": "Prof. Brian Neff is a stand up guy! Hes understanding and also a vigorous grader only because he has certain guidelines to follow, overall... he is gives amazing feedback and also tries his best to help his students. You can aleays reach him by email, hes quick responding. Knows a lot about the world of Psychology and if you need help,he clarifys", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd6a" + } + }, + { + "text": "Some professors say they are available outside of class while Neff gives you help even when you don't know you need it and still gives time to all students if they need it. For example, he goes into great detail on why you lost/gained points on an essay by almost giving you a paper on how you did because he truly wants to see his students succeed.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd6b" + } + }, + { + "text": "NEFF is one of the best TA's I have had since arriving at city. He makes the class fun and entertaing by making us really understand the concepts. Always accessible through email or in person. He really cares about his students!", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd6c" + } + }, + { + "text": "Brian is a solid choice for psychology. It will be the best course you have ever taken. He keeps you updated with emails and is very understanding when it comes to struggling with concepts. He clears any confusion. Which is amazing, I am so happy I chose him for psych!", + "pos": 0.249, + "neu": 0.673, + "neg": 0.078, + "_id": { + "$oid": "6711d495cd60fca157e5bd6d" + } + }, + { + "text": "BRIAN IS THE BEST!!! Ive never taken a psychology course in my life and he makes each concept very clear. I wish he could teach my other courses as well. He is very clear on what is expected and what concepts you should pay attention to. He makes psych easy! Trust me, take his course if you can.", + "pos": 0.311, + "neu": 0.671, + "neg": 0.019, + "_id": { + "$oid": "6711d495cd60fca157e5bd6e" + } + }, + { + "text": "Brian Neff is a great professor, who really cares about hes students. He wants his students to succeed as he provides very extensive feedback on all papers assigned. Always available for office hours. As with any course your depends on what you put into it, but he makes the class so enjoyable, that I didnt mind the work.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd6f" + } + }, + { + "text": "10/10 !! I would highly recommend him. He was always accessible outside of class and super accommodating. If you have any problems or concerns, hes easy to talk to. Fair grader and the test/quiz questions were based on what he taught in lecture.", + "pos": 0.235, + "neu": 0.715, + "neg": 0.051, + "_id": { + "$oid": "6711d495cd60fca157e5bd70" + } + }, + { + "text": "Brian is one of THE BEST TAs I have ever had!! He is very understanding and always takes into account students' perspectives with the power that he does have over the Psy102 recitation. He is very lenient and ALWAYS tries to help! He always sends emails to update us on what he knows about lecture. Can't ask for better. So glad I took his section!!!", + "pos": 0.194, + "neu": 0.775, + "neg": 0.031, + "_id": { + "$oid": "6711d495cd60fca157e5bd71" + } + }, + { + "text": "Really good professor! He will make sure you understand the concepts and is there for you when you need clarifications. Will take him again :)", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd72" + } + }, + { + "text": "Neff was really amazing! He gave us all clear expectations & sheets for us to track our progress during the semester. He kept us constantly updated on our grades & always responded to questions via email. Neff was really great at seeing where the class was struggling & adjusting to meet our needs. Hes kind & respectful! Definitely take him!!", + "pos": 0.306, + "neu": 0.659, + "neg": 0.035, + "_id": { + "$oid": "6711d495cd60fca157e5bd73" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d495cd60fca157e5bd75" + }, + "professor_name": "Maria Castellon Ramirez", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "Ignacia is an amazing professor who is incredibly knowledgeable and enthusiastic about sociology. The readings are interesting and relevant, the grading is fair, and the amount of work is appropriate and manageable. The midterm and final were papers. Her class was fun and she keeps it real. Taker her, you won't regret it.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd76" + } + }, + { + "text": "Professor Ramirez is a very good lecturer and does a great job of engaging the class with the subject matter. Her lectures are very interesting and she is obviously very passionate about what she is teaching. There aren't many assignments at all, and if you regularly show up to class and participate in any way, you are good to go.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd77" + } + }, + { + "text": "This professor was very passionate about what she is teaching. I really enjoyed the way she taught the class by writing key concepts on the board. It was definitely more discussion based and participation really matters for your grade! If you pay attention in class, participate, and take good notes you will do great in the class.", + "pos": 0.266, + "neu": 0.714, + "neg": 0.02, + "_id": { + "$oid": "6711d495cd60fca157e5bd78" + } + }, + { + "text": "Professor was so sweet and knowledgable on the subjects. I enjoyed taking her class. Participation is key for success and getting a good grade in this class!", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd79" + } + }, + { + "text": "Took her online class during the winter and she made us read and watch some documentaries and write discusssions and essays on them. The first documentary really interested me and was very thought provoking about the U.S. tatics and another one about climate change. Very interesting and she gives good feedback and is calm with grading. Good choice!", + "pos": 0.21, + "neu": 0.76, + "neg": 0.03, + "_id": { + "$oid": "6711d495cd60fca157e5bd7a" + } + }, + { + "text": "I took an asynchronous class. Professor Ignacia responded to all of my emails within a week of them being sent and was very professional in all of them. She was also understanding and took criticisms well and applied them. Lots of reading! I learned a lot in this class. Would take her again!!", + "pos": 0.053, + "neu": 0.913, + "neg": 0.034, + "_id": { + "$oid": "6711d495cd60fca157e5bd7b" + } + }, + { + "text": "Ignacia is an extraordinary professor. She's deeply knowledgable and full of zeal -- a combination that ignites lively class discussion and a positive learning environment. I highly recommend taking a class with Ignacia!", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd7c" + } + }, + { + "text": "I took Ignacia's class (Fall 2021) at The New School called \"Sociological Imagination\". She pushes her students to think outside of the box. She is hilarious, but also serious and determined. She is kindhearted and understanding. She is passionately informed. A great lecturer. A formidable woman in the social sciences. I'll miss her class! 10/10.", + "pos": 0.228, + "neu": 0.722, + "neg": 0.049, + "_id": { + "$oid": "6711d495cd60fca157e5bd7d" + } + }, + { + "text": "For an asynchronous course, I really learned a lot, and enjoyed this class. Out of all of my classes, this was by far my favorite and the most interesting. Really recommend this class and the professor.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd7e" + } + }, + { + "text": "I looked forward to Ignacia's class each week. Her lectures are informative, and structured in a way that flows really well online. I felt I had a lot of freedom to analyze and have open discussions. We had to write two papers and answer discussion questions each week. The course load was minimal I still feel like I learned a lot. Take her class!", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd7f" + } + }, + { + "text": "Shes incredible! I took two of her courses and Im so happy that I did. The course load is both manageable and worthwhile. If youre considering taking a class of hers, you absolutely should! Not only is she a phenomenal professor but shes also an incredible person! I am beyond appreciative of her caring attitude and kindness toward her students!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd80" + } + }, + { + "text": "She creates a trusted space where you're able to share your ideas and perspective on course readings. She does an excellent job moderating and leading these discussions. If you want to actively engage in course materials and not just absorb a recycled lecture - take her course! I love how each session was unique while still on theme with course.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd81" + } + }, + { + "text": "This professor was great! She held amazing lectures and discussions where she always welcomed questions and encouraged students to share their views. She assigned a good selection of readings throughout the class that helped me expand my knowledge in the topic. The class was conducted very well during the Covid-19 pandemic.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd82" + } + }, + { + "text": "Professor Ramirez is one of the best professors I have had at City College. The professor is engaging, and the topics we talk about are current events, which helped keep me engaged in her class. I learned a lot about the internet, media, and social media and their effects on society by taking her class.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd83" + } + }, + { + "text": "Professor Castellon is one of the best professors I've ever had. She's so passionate about the topics she teaches, and regardless of the lecture subject, it was always interesting & engaging, even with it all online. She not only deeply cares about what she teaches, but the students she teaches. I highly recommend taking her class - she's the best!", + "pos": 0.253, + "neu": 0.721, + "neg": 0.025, + "_id": { + "$oid": "6711d495cd60fca157e5bd84" + } + }, + { + "text": "Prof. Castellon was one of the best teachers I had online this semester. She kept the topics relevant and was able to make complex ideas seem simple. There was a lot of reading, but the way she had the class set up it never felt overwhelming. She cares about how much her students understand the material and is very flexible with due dates.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd85" + } + }, + { + "text": "Ignacia is a very inspirational person. She did the best out of covid year. I took her sociology of mental health course and it was so amazing! I like her emphasis on social constructivism and how passionate she was about Lacan. Some of the readings were difficult but she made it all possible. I recommend her class.", + "pos": 0.23, + "neu": 0.744, + "neg": 0.026, + "_id": { + "$oid": "6711d495cd60fca157e5bd86" + } + }, + { + "text": "Professor Castell\u00f3n is an incredible lecturer! Her course was very interesting and some of the readings are very dense. She can make you understand things otherwise you wouldnt, and gives incredible feedback. I asked her for a recommendation letter and it was the best! Good bless this professor. You will really learn from a compassionate person", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d495cd60fca157e5bd87" + } + }, + { + "text": "took this class bc i needed it for credit requirements. there was no reviews of her & i had no other choice. best thing i ever did, hands down. i never got to attend lecture on zoom due to work, never communicated with her about this, never did the papers, granted it's my fault. but she was understanding of covid and i guess everyone got an A! ily", + "pos": 0.157, + "neu": 0.779, + "neg": 0.064, + "_id": { + "$oid": "6711d495cd60fca157e5bd88" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d496cd60fca157e5bd8a" + }, + "professor_name": "Chika Jenkins", + "rating": 4.9, + "department": "Music department", + "comments": [ + { + "text": "Professor Jenkins is very understanding and a great teacher for an online class. She answers quickly and will go out of her way to help you with assignments, which are usually to learning a short song, due once a week. She is so lovely, treat her with the most kindness!", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd8b" + } + }, + { + "text": "Excellent professor! You'll be assigned a piece to practice for a week. You present it to the professor and then move on to the next piece. Professor will be very patient and gives good feedback. You'll have about 2 weeks to practice the midterm piece, which is more than enough time. You can finish assignments early and finish the syllabus early.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd8c" + } + }, + { + "text": "Professor Jenkins is one of the most caring people and professors I have ever met!!!!!!!! She is so responsible and amazing!!!!!", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd8d" + } + }, + { + "text": "I went into this class forgetting a lot of things related to music theory, but she was patient with me and guided me throughout the entire year with a smile despite how annoyingly bad I was. I appreciate her very much, and she is an amazing teacher.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd8e" + } + }, + { + "text": "Great feedback, super thoughtful and caring. Goes out of her way to help students understand material better.", + "pos": 0.638, + "neu": 0.362, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd8f" + } + }, + { + "text": "she's so nice, go to office hours she will help you. so understandable", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd90" + } + }, + { + "text": "If ur a first timer with piano, i suggest learning the material quickly and practice practice practice.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd91" + } + }, + { + "text": "Learning a new instrument is difficult but this particular professor is extremely professional and helps everyone develop if you truly want to become skilled. I love this class and she should be highly regarded as a good Professor", + "pos": 0.357, + "neu": 0.61, + "neg": 0.033, + "_id": { + "$oid": "6711d496cd60fca157e5bd92" + } + }, + { + "text": "10/10 would take her again. I had never touched a piano before this class, and she made it so easy and was super sweet. If you just show up and play, you'll pass. You're graded on your progress, which she is really helpful with. Absolutely loved her", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd93" + } + }, + { + "text": "she's so sweet! extremely patient with you and doesn't expect perfection. she just wants you to learn and enjoy the class. as long as you show improvement you will be okay", + "pos": 0.287, + "neu": 0.639, + "neg": 0.074, + "_id": { + "$oid": "6711d496cd60fca157e5bd94" + } + }, + { + "text": "She's a sweet heart. You need to put work in this course. you don't have to be perfect but putting time and effort in this course will pay off. This course Is only easy IF you put time in practicing the song (not much time) and other activities such as scales or chord progressions. She's extremely lenient and I love her for it as a STEM student. <3", + "pos": 0.276, + "neu": 0.705, + "neg": 0.019, + "_id": { + "$oid": "6711d496cd60fca157e5bd95" + } + }, + { + "text": "She's one of the best professors I've ever had. She knows everyone is not going to work at the same pace and helps everyone individually. She helps guide each person through the syllabus as much as possible and understands if they are having trouble with the song. The midterms and final are also pretty easy as she reworks them to where you are at.", + "pos": 0.203, + "neu": 0.761, + "neg": 0.035, + "_id": { + "$oid": "6711d496cd60fca157e5bd96" + } + }, + { + "text": "Very sweet and nice. Gives you positive feedback, doesnt discourage you. She points out what you need to work in and you would agree with her comments lol. Overall, you do need to play out loud but dont stress it because almost everyone else is practicing their own piece with their earphones", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd97" + } + }, + { + "text": "She is very nice and patient. Keyboard fundamentals is a very relaxed class, as long as you put your efforts and finish all assigned pieces you will get an easy A. If you fall behind just make a video of you playing pieces and send to her email, then she will let you play the next piece.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd98" + } + }, + { + "text": "She is amazing!", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd99" + } + }, + { + "text": "I fell in love with her. Also, she gets her students are not going to be playing Rachmaninoff by the first few weeks. Her class really built up my skills as a pianist and reinforced the concepts I learned in my other classes.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd9a" + } + }, + { + "text": "This professor is 1 of the best CCNY has to offer. Very understanding, patient and compassionate. She always has time to help her students. The most amazing human being!", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bd9b" + } + }, + { + "text": "She is one of the nicest teachers at ccny! teaches at your pace, and encourages you to do your best. she is always very helpful, and you are also allowed to play a piece of your choice for midterm and final,doesn't go over major scales though so i guess that is a downside.. however if you dont want to be too stressed take her", + "pos": 0.207, + "neu": 0.721, + "neg": 0.072, + "_id": { + "$oid": "6711d496cd60fca157e5bd9c" + } + }, + { + "text": "taking her now, my first time learning to play the piano. she's very helpful and understanding. she taught everyone on their own level, according to their pace which was really helpul and eased the pressure of playing the pieces perfect. you'll get an easy A as lng as you show that you're putting effort. very relaxed class.", + "pos": 0.279, + "neu": 0.69, + "neg": 0.031, + "_id": { + "$oid": "6711d496cd60fca157e5bd9d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d496cd60fca157e5bd9f" + }, + "professor_name": "Patrick Hooper", + "rating": 2.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Take another professor.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bda0" + } + }, + { + "text": "\"Yeah, I don't know...\" is how he finishes explaining every concept. Definitely made me very confident in my understanding of material...", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bda1" + } + }, + { + "text": "If your code does not run perfectly (which is not uncommon) you receive no credit. He makes questions overly complex so it was common to spend many days just trying to figure out what the homework questions are asking. Does not know how to teach/explain. He gave an OUTRAGEOUS final. If you want a miserably hard semester he's the guy for you!", + "pos": 0.018, + "neu": 0.785, + "neg": 0.197, + "_id": { + "$oid": "6711d496cd60fca157e5bda2" + } + }, + { + "text": "This beneficial professor teaches you how to make the mathematical code in python. His teaching skill is okay, but you must study harder for the exams and do your homework all the time in order to good grade on his math class. You will be okay with this professor.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bda3" + } + }, + { + "text": "Do not ever take any proof class with Hooper!!! I am serious! He himself cannot finish half of the proofs he starts. So you should understand that this professor WILL NOT TEACH YOU ANYTHING! Also, he never makes any eye contact with students sitting on the first row which is offensive. This professor should get a degree in Education ASAP!", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d496cd60fca157e5bda4" + } + }, + { + "text": "Take 308 with someone else", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bda5" + } + }, + { + "text": "This professor will introduce a topic. Go through it a bit and then says \"I don't know\" at the end of every explanation. This class is fairly abstract and unfortunately he doesn't give in class examples that expand your understanding. He even says what the flaws are in the textbook, but yet he uses it. Eh, take someone else.", + "pos": 0.027, + "neu": 0.944, + "neg": 0.028, + "_id": { + "$oid": "6711d496cd60fca157e5bda6" + } + }, + { + "text": "He is good but the class is very abstract you need to memorize definitions and know how to solve problems by proof. MAKE sure you do all the homework problems and go over his practice test you will be fine. He also curves if the class average is low on an exam.", + "pos": 0.145, + "neu": 0.703, + "neg": 0.152, + "_id": { + "$oid": "6711d496cd60fca157e5bda7" + } + }, + { + "text": "Dear god just avoid him. He belittles his students and will try his hardest to dock points off your exams and quizes, even if your proof is 100% correct.", + "pos": 0.143, + "neu": 0.79, + "neg": 0.067, + "_id": { + "$oid": "6711d496cd60fca157e5bda8" + } + }, + { + "text": "Tests were way harder than lecture material, and he's super disorganized. People would ask a question and he's stop in the middle and go 'Yeah, I don't know'.", + "pos": 0.177, + "neu": 0.696, + "neg": 0.128, + "_id": { + "$oid": "6711d496cd60fca157e5bda9" + } + }, + { + "text": "If you can avoid 308 with this professor please do. Assigns complex programming assignments without teaching it properly. Assigns homework every week however only grades one problem on each so feedback is very very small and useless. Nearly my entire class failed an exam and he curved only to make everyone's F's into D's", + "pos": 0.037, + "neu": 0.783, + "neg": 0.18, + "_id": { + "$oid": "6711d496cd60fca157e5bdaa" + } + }, + { + "text": "Tough tests, but the homework is based on the tests, and definitions. I'm definitely glad he taught it, but be careful. The class is really abstract. If you take him, be sure to use some supplementary then do the HW with it. Lectures are more relevant in the tests so memorize definitions and the proofs kinda follow from definitions. Overall good.", + "pos": 0.224, + "neu": 0.759, + "neg": 0.017, + "_id": { + "$oid": "6711d496cd60fca157e5bdab" + } + }, + { + "text": "This class is not hard compared to other 300-level math courses, so take it if you are a minor! Professor Hooper doesn't give good examples in class which makes things more confusing than it is. He gives us review sheets which are NOT on the midterms. But just do it for more practice. He also curves if the class average is really low.", + "pos": 0.017, + "neu": 0.883, + "neg": 0.1, + "_id": { + "$oid": "6711d496cd60fca157e5bdac" + } + }, + { + "text": "Very dedicated, and very approachable with any questions you may have. At times a bit incoherent when explaining complex problems. Be warned that his midterms are MUCH, MUCH easier than the departmental final. Although there were a few bumps along the way, Im very glad he taught my class. I wish more CCNY professors were as dedicated as he.", + "pos": 0.21, + "neu": 0.723, + "neg": 0.067, + "_id": { + "$oid": "6711d496cd60fca157e5bdad" + } + }, + { + "text": "Sometimes not very consistent and jumps around but in overall very good professor. Does his best to prepare you for the departmental final. Gives quiz's every week instead of collecting homework.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bdae" + } + }, + { + "text": "Overall excellent instructor. Grades HW and quizes, constant constructive feedback. Always on time for start and end. Respects students and knows everyone by name. Creates original examples which complement the text. Encourages class participation. Makes efficient use of BB to post sols and practice problems. Available at office hrs and by email.", + "pos": 0.252, + "neu": 0.705, + "neg": 0.042, + "_id": { + "$oid": "6711d496cd60fca157e5bdaf" + } + }, + { + "text": "Excellent math professor. Very knowledgeable and always tries to be as clear as possible when explaining. Very attentive with his email. If you do the homework well (like actually work through it), you'll do good on the exams.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d496cd60fca157e5bdb0" + } + }, + { + "text": "He's an excellent professor to have for the advanced courses. Very knowledgeable. Grades fairly. His class is by far easy so you will have to work very hard for your grade but you will definitely learn in his class. Very attentive to his email. Highly recommended.", + "pos": 0.225, + "neu": 0.75, + "neg": 0.025, + "_id": { + "$oid": "6711d496cd60fca157e5bdb1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d497cd60fca157e5bdb3" + }, + "professor_name": "Suzanne Weyn", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "This professor is so helpful and understanding. She is always open to taking questions and is very friendly. I recommend her!", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdb4" + } + }, + { + "text": "Very kind and understanding teacher. The course expectations are clearly outlined in the syllabus and you will precisely follow that so there is no confusion. The work is also very simple and you will enjoy it.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdb5" + } + }, + { + "text": "She's super nice and all you have to do is come to class, listen during class, read one book, pass her easy quizzes, and finish a super easy picture book and you should get an easy A. 100% recommend!", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdb6" + } + }, + { + "text": "Best professor you will ever have. Clear on assignments and feedback. no final exam. She is very sweet and gets to the point during lectures. Had 2 quizzes and one major assignment that was a picture book. the child and literature class was a joint class with another professor that was good as well. recommend taking her class.", + "pos": 0.249, + "neu": 0.72, + "neg": 0.031, + "_id": { + "$oid": "6711d497cd60fca157e5bdb7" + } + }, + { + "text": "Professor Weyn is one of the most kind-hearted individuals you will ever meet. She helped make the transition from high school to college easier and is very lenient. As long as you participate, and do the work, you'll get an A.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdb8" + } + }, + { + "text": "By far my favorite professor yet. Very understanding and caring with clear assignments. As long as you show that you care and are engaged in her class, the course is really great.", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdb9" + } + }, + { + "text": "I was stuck taking her FIQWS Children Literature class because it was the only one left that sounded fine and it was amazing. I'm so glad I had her and the joint professor. She was so nice, so caring and honest. Very simple class to receive an A. Thorough feedback on all essays, no exams and paced learning. INCOMING FRESHMAN SHOULD TAKE THE CLASS.", + "pos": 0.254, + "neu": 0.694, + "neg": 0.052, + "_id": { + "$oid": "6711d497cd60fca157e5bdba" + } + }, + { + "text": "The sweetest person! she is so caring, helps you with anything you need. if you will follow the course and do all work you will get a good great. She provided also information about scholarships and staff. She thought us with inexpensive books so everyone could afford them. She wrote my recommendation letter happily. So sweet, take her!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdbb" + } + }, + { + "text": "An amazing person inside and out. She is caring and if you ever have any problem getting things in on time you can let her know and shell give you an extension. Overall amazing professor.", + "pos": 0.243, + "neu": 0.697, + "neg": 0.061, + "_id": { + "$oid": "6711d497cd60fca157e5bdbc" + } + }, + { + "text": "I can stress how sweet she is! She is super empathetic and shows concern for each and every student. If youre ever having trouble meeting a deadline or any other issue, you can definitely let her know and shell try her best to accommodate you. Such a beautiful person inside and out !", + "pos": 0.294, + "neu": 0.63, + "neg": 0.077, + "_id": { + "$oid": "6711d497cd60fca157e5bdbd" + } + }, + { + "text": "I think shes super sweet! Depending on which class you have, you have to read but its not too much! The final draft of essays is what counts so youll have time review.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdbe" + } + }, + { + "text": "Professor Weyn is great! Although it was online we were all engaged. The readings were interesting. Definitely would take her again.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdbf" + } + }, + { + "text": "Professor Weyn is a very kind person. She would definitely go out of her way to help others. Not too much homework, late to class no problem but attentive. She could be a bit confused about due dates but great person. Forsure, one of the kindest professors.", + "pos": 0.233, + "neu": 0.716, + "neg": 0.052, + "_id": { + "$oid": "6711d497cd60fca157e5bdc0" + } + }, + { + "text": "She is a very kind person. She can be messy sometimes with her schedules and technologies, but she is trying her best to use these technologies. If you just get to know her and sometimes participate, she will give you an A matter what. Easy pass and Easy A class. Just let her know you and you will get an A. She wont be harsh on anyone but helps.", + "pos": 0.273, + "neu": 0.707, + "neg": 0.02, + "_id": { + "$oid": "6711d497cd60fca157e5bdc1" + } + }, + { + "text": "honestly just make the effort. I deserved that B, but if i tried harder I know i could have done better. she is an amazing teacher, so take her class. very understanding", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdc2" + } + }, + { + "text": "once you complete all of the essays and show that you are making an effort you will do just fine. And participation is key! Make yourself known and make the extra effort to talk to her after class. She is one of few professors that are so compassionate and caring. TAKE HER CLASS", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdc3" + } + }, + { + "text": "At first it may seem like she just rambles but in all honesty she wants to be as specific and helpful as possible. If you have any questions she is there to answer to them. And she is never critical of anything and that's saying a lot since many english teachers are. And not only doe she care about the subject but her students as individuals", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdc4" + } + }, + { + "text": "Great professor! Shes great and really sweet!", + "pos": 0.751, + "neu": 0.249, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdc5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d497cd60fca157e5bdc7" + }, + "professor_name": "Adrienne Jones", + "rating": 2.9, + "department": "Political Science department", + "comments": [ + { + "text": "Even though she's not my fav prof, I still passed. She's a very hard teacher and she likes to question and challenge ALL students (so if you're \"shy and quiet\", she won't give a crap). Very clear in lectures and in powerpoints. I passed only because she agreed for the class to work together on exams and quizzes. Overall, not super bad.", + "pos": 0.187, + "neu": 0.689, + "neg": 0.124, + "_id": { + "$oid": "6711d497cd60fca157e5bdc8" + } + }, + { + "text": "Ms.Jones is not a bad proffesor, she's fair, so if youre looking for an easy A this is not it. You can NOT be late, or unprepared or have an electronic device out. She is however VERY helpful and extremely insightful. She challenges the class.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdc9" + } + }, + { + "text": "professor Jones is not as bad as previous raters said! yes she tough and hates cellphones, latness, and unprepared students..but other than that, she nice, helpful. Take her class if you want to actually learn something about law", + "pos": 0.265, + "neu": 0.644, + "neg": 0.091, + "_id": { + "$oid": "6711d497cd60fca157e5bdca" + } + }, + { + "text": "Do not take this class for an easy grade. Do not come late EVER, no phones, no excuses. Don't expect to learn material even though it's a 100level course. If you have no prior knowledge of the law environment, you shouldn't bother trying out for law school anyways. It will be a rough semester. She is serious and not flexible, although some say lazy", + "pos": 0.094, + "neu": 0.77, + "neg": 0.136, + "_id": { + "$oid": "6711d497cd60fca157e5bdcb" + } + }, + { + "text": "god have mercy, just imagine i tried working my ass off for this class and looks like i will fail. those of you who passed prolly kissed this woman ass but sorry not for me. should have dropped it day one. every essay i wrote and had it read by the writing center was a C for her.", + "pos": 0.105, + "neu": 0.769, + "neg": 0.126, + "_id": { + "$oid": "6711d497cd60fca157e5bdcc" + } + }, + { + "text": "I dropped this class the first day. She came into the class with this huge chip on her shoulder. She was going over the requirements for class and all she talked about was how horrible her previous class was pertaining to plagerism, cellphone use and attendance. She is not tolerant of anything. If your not there for attendance your marked absent fo", + "pos": 0.039, + "neu": 0.881, + "neg": 0.079, + "_id": { + "$oid": "6711d497cd60fca157e5bdcd" + } + }, + { + "text": "Professor Jones is a very sharp and professional teacher. The class is on an advanced level..so Into to Legal Process should be taken before this class if you aren't versed on the terms and aspects of the law. But overall, great teacher that expects a lot from her students but does so because she knows what we will be up against! Recommended class", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdce" + } + }, + { + "text": "I love Prof Jones. She's challenging and she expects a lot from you but her class is not impossible, and you learn a lot. DON'T BE LATE, DON'T USE YOUR CELL PHONE. SHE'LL EAT YOU ALIVE. Otherwise, she's pretty great. She loves what she teaches. Participate in class and do the work!", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdcf" + } + }, + { + "text": "Very honest professor. She expect you to do your work and does not tolerate stupid excuses. Overall a very generous grader. she is one of the reason i am interested in Politics and Law. A very serious professor but nice once you got to know her.", + "pos": 0.226, + "neu": 0.75, + "neg": 0.024, + "_id": { + "$oid": "6711d497cd60fca157e5bdd0" + } + }, + { + "text": "She is a terrible teacher. I had Intro to the Legal Process with her and some of my classmates were no longer interested in attending law school after having her class. She is not helpful. She is just infatuated with herself and her personal career goals. Ironically, she is an advisor. Don't take her. She's unorganized and unhelpful.", + "pos": 0.042, + "neu": 0.805, + "neg": 0.153, + "_id": { + "$oid": "6711d497cd60fca157e5bdd1" + } + }, + { + "text": "This class was a waste of my time.This a terrible expierence for me do not make the same mistake as me.", + "pos": 0.0, + "neu": 0.684, + "neg": 0.316, + "_id": { + "$oid": "6711d497cd60fca157e5bdd2" + } + }, + { + "text": "PLEASE READ!!! This woman is hardly a professor. Degrading and rude. Unfair and uneven and could be perverse and insulting. Run for the hills rather than take any class with this woman. She doesn't like students to be unprepared, yet if she was ever prepared for a class, it was a miracle. This is your warning. Dont say I didnt tell you so.", + "pos": 0.106, + "neu": 0.64, + "neg": 0.254, + "_id": { + "$oid": "6711d497cd60fca157e5bdd3" + } + }, + { + "text": "Prof. Jones is extremely unclear. Her lessons seem like she makes it up as she goes. We spent two-three weeks listening to students delivering well-known speeches. She was openly critical of some students. She didn't like lateness, but it depended on who was coming in late. Her office hours are limited;didn't respond to email. I didnt learn a thing", + "pos": 0.028, + "neu": 0.893, + "neg": 0.079, + "_id": { + "$oid": "6711d497cd60fca157e5bdd4" + } + }, + { + "text": "Prof. Jones is a no nonsense powerhouse of knowledge and energy. DO NOT BE LATE TO CLASS! Other than that be engaged in the conversation and do your work(yes there is work) and you can easily make an \"A\". It was a privilege to take her class and if your willing to work I highly recommend her. She will go above and beyond for you if you ask.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdd5" + } + }, + { + "text": "3 reviews ago I gave her a less than favorable review. I still think she can be annoying at times but she's knowledgable of the legal process and in the end you'll receive a fair grade.", + "pos": 0.163, + "neu": 0.791, + "neg": 0.046, + "_id": { + "$oid": "6711d497cd60fca157e5bdd6" + } + }, + { + "text": "Amazing professor, tough, but amazing. Word of caution: She plays no games...;She literally takes no prisoners- she expects ALL of her students to do well and as she says. What you learn in this class will be truly beneficial- especially if you're planning on assisting law school one day (as I am).", + "pos": 0.338, + "neu": 0.605, + "neg": 0.057, + "_id": { + "$oid": "6711d497cd60fca157e5bdd7" + } + }, + { + "text": "She gives a lot of work but if you do it and all your guaranteed to pass with an A. It doesn't require a lot of work or effort, just don't slack off. She's a smart person and encourages you to think critically. She tries her best to help you and wants everyone to do well in her class. What you'll learn is interesting and usefull.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d497cd60fca157e5bdd8" + } + }, + { + "text": "Sarcastic, obnoxious, and a harsh grader. She doesn't make what she wants in assignments and exams clear. She takes off too many points if you don't word the answer the exact way she wants it. Run as far away from this class as possible.", + "pos": 0.051, + "neu": 0.792, + "neg": 0.156, + "_id": { + "$oid": "6711d497cd60fca157e5bdd9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d498cd60fca157e5bddb" + }, + "professor_name": "Vasil Diyamandoglu", + "rating": 2.7, + "department": "Civil Engineering department", + "comments": [ + { + "text": "I graduated in 1993. The guy is crazy, uneven. He threw me out of the lecture because i was smiling happy that day (my birthday). Crazy guy. he gave lectures that had nothing to do with practical examples on his tests. the Grad student never returned our graded HW back in time before tests, CCNY can offer you a better teacher than this guy", + "pos": 0.131, + "neu": 0.804, + "neg": 0.065, + "_id": { + "$oid": "6711d498cd60fca157e5bddc" + } + }, + { + "text": "I found Prof. Diyamandoglu to be pretty tough. Didn't understand his teaching style much and he can come off pretty harsh if you ask the wrong questions. He does like when students participate as long as he sees that you're learning or at least want to learn. Though he comes off tough, he cares about his students and meets outside class if you ask.", + "pos": 0.171, + "neu": 0.712, + "neg": 0.117, + "_id": { + "$oid": "6711d498cd60fca157e5bddd" + } + }, + { + "text": "The exams are always surprises and you will have to get lucky. Long lectures with almost little relevance to the exams. See for yourself", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdde" + } + }, + { + "text": "Terrible professor. will scream at you for asking a question. He will take his breaks during class and scream at you if you dare ask a question right before his breaks. He does not know how to lecture. Very boring very impatient. Does not and will not help you get a good grade if he doesnt like you.", + "pos": 0.041, + "neu": 0.703, + "neg": 0.256, + "_id": { + "$oid": "6711d498cd60fca157e5bddf" + } + }, + { + "text": "Very disorganized. Late with giving out the syllabus and grading. Gets fussy like a child when someone asks a question he doesn't know how to answer. Told us a topic that was on the midterm wouldn't be, had weeks where there would be nothing due followed by a week where we had 3 things due cause he just forgot to assign them. Overall horrible prof.", + "pos": 0.068, + "neu": 0.848, + "neg": 0.083, + "_id": { + "$oid": "6711d498cd60fca157e5bde0" + } + }, + { + "text": "He is a great professor! He is passionate about his stuff and also gives great lectures both in class and during recitation. Be prepared for taking good and long notes. DON'T MISS HIS CLASS. Review conceptual stuff before exams and you will be off to a good start. Like his style of teaching overall! Stay away from Filos.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bde1" + } + }, + { + "text": "He doesnt get enough credit with the reviews posted. Great professor who is passionate about the material, you will actually learn a lot. Good sense of humor for those that arent sensitive and know how to take a joke. The material itself is not difficult. Go to class! Otherwise your your grade suffers. Miss a week and lose a letter grade.", + "pos": 0.22, + "neu": 0.656, + "neg": 0.123, + "_id": { + "$oid": "6711d498cd60fca157e5bde2" + } + }, + { + "text": "Yes he has a bad rep for being... unconventional. I was extremely afraid of taking him my last semester. Heres what u need: whole class to show him respect, STUDY your clear&perfect lecture notes, UNDERSTAND your HW, ask HIM for old exams to practice from, work hard on the term project. After taking Ghosn twice, this guy is pretty fair!", + "pos": 0.164, + "neu": 0.766, + "neg": 0.07, + "_id": { + "$oid": "6711d498cd60fca157e5bde3" + } + }, + { + "text": "Absolutely awful professor. Doesn't know how to teach, grade, and not sure of knowledge in field. Consisently goes off topic, makes inappropriate comments, insults other students and professors. Avoid! Consider taking the class at another university or with other, better professors in department.", + "pos": 0.056, + "neu": 0.739, + "neg": 0.205, + "_id": { + "$oid": "6711d498cd60fca157e5bde4" + } + }, + { + "text": "Unreasonable grader at times. A lot of people were disappointed and surprised at the semester grade. He gets very defensive when you talk to him about how the grades. Lectures are good, just take notes, apply them to the quiz and exam. But still he finds a way to take points off. We never got a lot of our grades back during the semester!", + "pos": 0.073, + "neu": 0.896, + "neg": 0.031, + "_id": { + "$oid": "6711d498cd60fca157e5bde5" + } + }, + { + "text": "Prof Diyamandoglu is very knowledgeable in his field of study. Unfortunately, he doesn't provide a clear grading criteria or any practice questions to help students understand the concepts and equations he gives during his lectures. Students are completely on your own while stuDYING for the midterms and final exam. Tip: Brush up on your chemistry!", + "pos": 0.045, + "neu": 0.873, + "neg": 0.082, + "_id": { + "$oid": "6711d498cd60fca157e5bde6" + } + }, + { + "text": "The professor would like you to learn the material and he will make you work for it. He is not impossible but I had to spend every single weekend doing homework and extra time to prepare for quiz. You definitely need time to devote for this class. The professor is one of the most knowledgeable professors I have had at City College. Fair Grader.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bde7" + } + }, + { + "text": "Bad classes, half of them were him reading a powerpoint he found online. Assignment requirements were not clearcontradictory. His original term paper assignment made no mention of length, but he says 4 pages in class. A week before it's due, he sends out an email that it's actually 20 pages. That's bad communication since I was at every class.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d498cd60fca157e5bde8" + } + }, + { + "text": "Prof. Diyamandoglu is one of those professors who doesn't give a clear indication of what he expects from you. The conceptual part of the course is not a huge deal, but as engineers we have to know how this concept relates to the calculations that we have to do. This makes the class much harder than it needs to be. Not recommended.", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d498cd60fca157e5bde9" + } + }, + { + "text": "His class is very tough. You have to know your material ahead of time for you to do really good, especially chemistry and biology. When I took his class, nobody got an A or A-. However, he is very generous", + "pos": 0.149, + "neu": 0.812, + "neg": 0.039, + "_id": { + "$oid": "6711d498cd60fca157e5bdea" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d498cd60fca157e5bdeb" + } + }, + { + "text": "Great character, very professional and delivers the subject with high initiative. Takes his teaching responsibility as seriously as bringing money to university through research. Always there to help with questions. His class makes you feel that you are attending one of the top rated universities. However you need to work really hard to get an \"A\"", + "pos": 0.137, + "neu": 0.81, + "neg": 0.054, + "_id": { + "$oid": "6711d498cd60fca157e5bdec" + } + }, + { + "text": "Very Good Professor for serious students!", + "pos": 0.397, + "neu": 0.455, + "neg": 0.148, + "_id": { + "$oid": "6711d498cd60fca157e5bded" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d498cd60fca157e5bdef" + }, + "professor_name": "Zhigang Zhu", + "rating": 4.3, + "department": "Computer Science department", + "comments": [ + { + "text": "I took this over the pandemic and I struggled a bit understanding the material with his accent. He is very nice and very helpful tho when you go to office hours.", + "pos": 0.169, + "neu": 0.765, + "neg": 0.066, + "_id": { + "$oid": "6711d498cd60fca157e5bdf0" + } + }, + { + "text": "Great and Knowledgable professor. He wants each and every of his students to do well in his class. Overall there are 6 assignments, 10+ quizzes that are given during class time, and 3 exams. Read the textbook and try to complete the assignments without looking online, it can really prepare you for your future classes.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdf1" + } + }, + { + "text": "Zhu is honestly a gem and will absolutely work with you to help you succeed. He cares a lot about his students even all his years from teaching. Take his class you will be successful. I suggest reading slides & textbook before lectures because it'll really boost your understanding of the concepts", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdf2" + } + }, + { + "text": "really sweet prof that cares. sometimes hes hard to understand but will clarify if u ask him. everything u need is on his website from slides to practice questions. my complaint is that he gives quizzes right when u learn the material, but if u read the book& slides ahead of time ull be fine. the projects help u understand the stuff. take him!", + "pos": 0.141, + "neu": 0.803, + "neg": 0.055, + "_id": { + "$oid": "6711d498cd60fca157e5bdf3" + } + }, + { + "text": "He gives detailed feedback on assignments, not like other professors just give you a score. So you know where to improve. The course was hard for me, lots of math. But just finish every assignment, you will be fine.", + "pos": 0.099, + "neu": 0.835, + "neg": 0.066, + "_id": { + "$oid": "6711d498cd60fca157e5bdf4" + } + }, + { + "text": "He is most likely the best option take for Data Structure at CCNY. 6 coding projects, more than 10 pop up quizzes, 3 exams, just remember to keep up with class every week otherwise, it'll be too hard to catch up. Make sure to study the textbook. Overall, easy to handle this class with him. He is funny too. Good luck.", + "pos": 0.25, + "neu": 0.731, + "neg": 0.019, + "_id": { + "$oid": "6711d498cd60fca157e5bdf5" + } + }, + { + "text": "This school has a tendency to have subpar CS prof and I was glad Zhu was the exception. He actually cares about students and teaches his lectures so that even beginner programmers understand. He does have pop quizzes and 6-7 assignments but if you read the textbook and lectures before hand you should be fine.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdf6" + } + }, + { + "text": "Fantastic professor! Very enthusiastic about teaching young computer scientists. He is a great guy. He presents the course material and his expectations very clearly. The assignments are very fair, and there is great potential to get an A in his class.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdf7" + } + }, + { + "text": "Expect a lot of hard work for the homeworks and project. The exam is harder compared with other courses. But he explained the course materials.", + "pos": 0.0, + "neu": 0.952, + "neg": 0.048, + "_id": { + "$oid": "6711d498cd60fca157e5bdf8" + } + }, + { + "text": "Very nice & helpful professor. Gives assignments every two weeks & a quiz every week. The assignments depend heavily on the book along with the short answers on the exams. Exams consist of multiple choice & short answers. No attendance taken but you never know when a quiz is given, so it's best to attend every lecture. Powerpoint lectures given.", + "pos": 0.152, + "neu": 0.825, + "neg": 0.024, + "_id": { + "$oid": "6711d498cd60fca157e5bdf9" + } + }, + { + "text": "He gives quizzes every other lecture so its very important to attend class. His tests are fair. Assignments are reasonable. He doesn't curve at all so its very important to keep your grades up to pass the class. But he gives you a lot of opportunities to make sure you pass his class", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdfa" + } + }, + { + "text": "Explains the material, and the class is really clear. Read the book, do the assignments, and you'll be fine. Very clear, the exams aren't difficult, and if you allow enough times for the homeworks they're easy as well.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdfb" + } + }, + { + "text": "Grad class. Materials are not very easy, but he explained well. He gives you a lot of help in homework (4 programming). His test was ok as long as you understand the material (and hw). He also gives 1 project, which is usually his research topic. Pick one that you're interested in.", + "pos": 0.205, + "neu": 0.766, + "neg": 0.03, + "_id": { + "$oid": "6711d498cd60fca157e5bdfc" + } + }, + { + "text": "Great professor! Always helpful, explains well. Fair grader - if you study enough you should have no problems with getting an A", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5bdfd" + } + }, + { + "text": "He is the worst. Gives stupid exams. He screwed my up TWICE", + "pos": 0.0, + "neu": 0.457, + "neg": 0.543, + "_id": { + "$oid": "6711d498cd60fca157e5bdfe" + } + }, + { + "text": "Organized teacher. Very fair on grading. His test is flexible; if he thinks students are doing poorly on the first test (he asked us), he made the second test shorter and a bit easier. Make sure you do all the homeworks (all programming), you can even ask for his suggestions, if you're stuck at the assignment.", + "pos": 0.153, + "neu": 0.815, + "neg": 0.032, + "_id": { + "$oid": "6711d498cd60fca157e5bdff" + } + }, + { + "text": "Well, he gives quizzes every day and if we don't read before class and weak in C++, our grades will suffer. My class started with 18 students after the drop date, only 4 students remained", + "pos": 0.05, + "neu": 0.745, + "neg": 0.204, + "_id": { + "$oid": "6711d498cd60fca157e5be00" + } + }, + { + "text": "Very Good Professor. He shows curriculum very clear. He helps you on the homework and quizes. If you do your homework and go to class you will get a good grade on the exam.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be01" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d498cd60fca157e5be03" + }, + "professor_name": "Donald Charlton", + "rating": 4.8, + "department": "Freshman Year Experience department", + "comments": [ + { + "text": "A great W professor he is very caring and wants everyone to pass the class and try to make everything easy for the students and he is very understanding! Warning! if you miss his class one day without reasoning he will yell at you because he is caring.", + "pos": 0.236, + "neu": 0.694, + "neg": 0.071, + "_id": { + "$oid": "6711d498cd60fca157e5be04" + } + }, + { + "text": "The professor is inspiring and caring, with manageable workload and helpful teaching style. He offers exam retakes and homework assignments boost grades. Overall, the reviewer would gladly take his class again.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be05" + } + }, + { + "text": "Genuinely cares about his students and enjoys teaching! Always available to help students and may even offer retakes if you fail an exam. Homework assignments help cushion grade a lot. He's a very kind, inspirational person with many useful lessons both in class and outside of class. Would definitely take again.", + "pos": 0.353, + "neu": 0.597, + "neg": 0.05, + "_id": { + "$oid": "6711d498cd60fca157e5be06" + } + }, + { + "text": "Donald is a gem. his class consists of weekly discussion board and 4 papers on the same topic. he grades very leniently and gives a lot of time to hand in the work. he is easy and caring. easiest A+ I recived", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be07" + } + }, + { + "text": "He is literally a bowl of sunshine! He served as such an inspiration during my freshman year of college, and if you ask me to retake his class, I will do it in a heartbeat. I kid you not his stories are so enamoring the workload is not that bad you only meet him once a week, and he usually lets you leave once he finishes his slides. ONE WORD: AMAZI", + "pos": 0.125, + "neu": 0.86, + "neg": 0.015, + "_id": { + "$oid": "6711d498cd60fca157e5be08" + } + }, + { + "text": "Don is probably one of the best professors at CCNY. He is one of the few teachers that you can tell are passionate about what they teach. The stories he tells are inspiring or funny and interesting. Seeing as our class was once a week, attendance was very important but he dismisses early a lot of the time and his lectures are worth attending!!", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be09" + } + }, + { + "text": "Don is a super nice guy who cares a lot about his students. His lectures can be boring because he talks about his past and stories a lot which can be super boring. When assignments are due it is clear. However what the assignments are cannot be as clear.", + "pos": 0.253, + "neu": 0.641, + "neg": 0.106, + "_id": { + "$oid": "6711d498cd60fca157e5be0a" + } + }, + { + "text": "The lessons that Don taught me are lessons I will implement into my life. Don was an amazing professor. He was kind hearted and very lenient. He genuinely cares about the well being of students.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be0b" + } + }, + { + "text": "Professor Don is phenomenal. Most caring professor you would even encounter. He cares a lot about his students and would go the extra mile to explain if you don't quite get something. On a scale of fries to burgers. He is Burgers with Milkshake.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be0c" + } + }, + { + "text": "He ACTUALLY CARES about his students, a quality most professors don't have. His lectures are interesting and he includes lots of videos, movie clips, etc. Show you put in effort and you'll do amazing.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be0d" + } + }, + { + "text": "His personality and experiences really gives a hands on example of what life can and possibly will be like instead of you just hearing it, this class has alot of homework but each assignment is an easy A, the books are engaging, this class changes your thinking pattern, your drive and view of self will change by month 2.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be0e" + } + }, + { + "text": "Part-time NAVY vet/teacher, full-time motivational speaker. Take his class. Especially as a freshman where youre unsure what college will entail, Don really sets you up for success. His leadership class was refreshing, albeit easy and concepts were obvious and self-explanatory at times. Two BB assignments per week & papers make the class a breeze.", + "pos": 0.111, + "neu": 0.856, + "neg": 0.034, + "_id": { + "$oid": "6711d498cd60fca157e5be0f" + } + }, + { + "text": "A really good Professor who cares about the students and them doing well in the class. Definitely would take him again! There is quite some reading to do btw. But I walked out of his class with a lot more knowledge than I did before. P.S. watch out for the staring lol", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be10" + } + }, + { + "text": "Leaders Who Changed Their Worlds!There are five required books for this course !Summary and Response Essay, Exploratory Essay, Researched Critical Analysis Essay ! EASY CLASS!", + "pos": 0.159, + "neu": 0.764, + "neg": 0.076, + "_id": { + "$oid": "6711d498cd60fca157e5be11" + } + }, + { + "text": "He really cares for the wellbeing of his students. He is very understanding if the homework is late or not printed to turn in.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be12" + } + }, + { + "text": "Best Professor in CCNY. Just makes your freshman semester awesome. Easy A", + "pos": 0.554, + "neu": 0.446, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be13" + } + }, + { + "text": "Easiest A+ you will ever find. This man is simply amazing and I'll never forget him. His will often go off topic and talk about irrelevant things, which is a good thing. He was so easy and he wanted made it extremely possible for EVERYONE to get an A+ all you had to do was the homework he gave and buy the books. BEST PROFESSOR EVER!! Made me happy.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be14" + } + }, + { + "text": "There are books you have to buy in the beginning of the semester but they're all reading books. All of the tests are open book and you can use your notes. There is a research paper at the end of the semester so be prepared for that. Don made my first semester so amazing. He's funny, so smart, and has tons of stories. You'll love going to class", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d498cd60fca157e5be15" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d499cd60fca157e5be17" + }, + "professor_name": "Myriam Sarachik", + "rating": 2.5, + "department": "Physics department", + "comments": [ + { + "text": "DO NOT TAKE CLASS WITH THIS PROFESSOR. She is not clear with her instructions on how she wants her work done. She will make you redo her work as many times as it needs you to get it right by the line. I had to redo an assignment 8 times until she decided to accept it. Assigns homework every class and lectures are very boring. Harsh grader", + "pos": 0.035, + "neu": 0.856, + "neg": 0.108, + "_id": { + "$oid": "6711d499cd60fca157e5be18" + } + }, + { + "text": "MUST STUDY ON YOUR OWN!! In class you'll learn a few things, the bulk of your learning will come from studying on your own time. She's extremely kind, willing to be lenient if you do your work. If you show signs of improvement in the class(i.e participation, test results, etc) she will bump your grade. She's knows her stuff tho.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be19" + } + }, + { + "text": "It is very hard to understand what she specifically wants in her assignments because she's not very clear. She's tough grader and participation really matters if you want an A. She will make you redo an assignment until you finally get it right, no matter how many trials it takes.", + "pos": 0.05, + "neu": 0.821, + "neg": 0.129, + "_id": { + "$oid": "6711d499cd60fca157e5be1a" + } + }, + { + "text": "The course will take up a lot of your time because of the numerous paper assignments. Also it might be hard for some to know what Pr Sarachik is specifically looking for in an assignment. But just because the course is challenging does not necessarily mean it's hard or the professor is bad. I personally liked her as well as the FIQWS subject.", + "pos": 0.113, + "neu": 0.783, + "neg": 0.104, + "_id": { + "$oid": "6711d499cd60fca157e5be1b" + } + }, + { + "text": "In the beginning of the semester she goes slow & at the end she rushes the class through the material. Get ready to get up and make a powerpoint presentation. She will call on you and will make you get up and read your homework. She also handpicked 2 teams to participate in both sides of a debate; defend the pro & then the con ..................", + "pos": 0.037, + "neu": 0.963, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be1c" + } + }, + { + "text": "she was very annoying and boring", + "pos": 0.0, + "neu": 0.419, + "neg": 0.581, + "_id": { + "$oid": "6711d499cd60fca157e5be1d" + } + }, + { + "text": "DO NOT TAKE CLASS WITH HER. She is a terrible professor who does not know how to convey her subject clearly. She makes everything way harder than it is. She is a tough grader and not helpful at all.", + "pos": 0.06, + "neu": 0.784, + "neg": 0.155, + "_id": { + "$oid": "6711d499cd60fca157e5be1e" + } + }, + { + "text": "Don't take this class. She makes a big deal about participating but won't see your efforts when you raise your hand answering her questions or inquiring about her lectures every five minutes. It's difficult to get your point across too at times and she will not take into consideration of your ideas.", + "pos": 0.075, + "neu": 0.869, + "neg": 0.056, + "_id": { + "$oid": "6711d499cd60fca157e5be1f" + } + }, + { + "text": "she makes physics very difficult.I ended up retaking the class with another professor and got an A.Biggest mistake taking her at all.Beware!", + "pos": 0.0, + "neu": 0.886, + "neg": 0.114, + "_id": { + "$oid": "6711d499cd60fca157e5be20" + } + }, + { + "text": "she is horrible. She rush's through chapter even though she check's for homework she should hang upp her gloves in teaching. Never take her plzzz", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d499cd60fca157e5be21" + } + }, + { + "text": "She a very intelligent person! However, in the beginning of the semester she goes to slow and at the end she rushes the class through the material. Her tests consist of only 4 questions. Do one question wrong and guess what you get? Overall she is a very nice professor and willing to help.", + "pos": 0.15, + "neu": 0.8, + "neg": 0.05, + "_id": { + "$oid": "6711d499cd60fca157e5be22" + } + }, + { + "text": "she's a good professor explains clearly", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be23" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d499cd60fca157e5be24" + } + }, + { + "text": "well...she has a nice smile...if that's what you're looking for...knows..her subject ...doesn't convey it well...as a result..you're better of studying more yourself,apart from that...she's a cute old lady.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be25" + } + }, + { + "text": "she was by far the worst professor i encountered. i knew physics was a boring subject but she occasionally put me to sleep during her lectures. she had no energy or enthusiam, i could tell that she knew physics but she just had no way of delivering it to her students.", + "pos": 0.0, + "neu": 0.836, + "neg": 0.164, + "_id": { + "$oid": "6711d499cd60fca157e5be26" + } + }, + { + "text": "sarachik is a misleading professor and the worst that i have encountered for physics...she's does not encourage students..and her teaching technique is so horrible that..when you struggle so hard to catch up..she kicks you to the curve....and does not give room for better performances.", + "pos": 0.05, + "neu": 0.637, + "neg": 0.313, + "_id": { + "$oid": "6711d499cd60fca157e5be27" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d499cd60fca157e5be28" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d499cd60fca157e5be2a" + }, + "professor_name": "Tai-Danae Bradley", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Great professor, very clear lectures. Put in the work and you'll get an A.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be2b" + } + }, + { + "text": "Tai was legit my favorite professor. She's very efficient teacher. VERY accessiblle outside of class. Email her at 10:50 pm and she'll reply in 3 seconds. For the calc class I took with her, she gave 3 hw extensions - use them wisely. If you do the hw, ask ques and pay attention in class , you'll be good.", + "pos": 0.176, + "neu": 0.804, + "neg": 0.021, + "_id": { + "$oid": "6711d499cd60fca157e5be2c" + } + }, + { + "text": "Professor Tai, is an amazing teacher, she made me love math even more. She does give a lot of homework, \"practice makes perfect\". She does give pop quizzes!!! She doesn't only teach her way, but make sure we all understand the problem using many different solutions and tactics to solve \"the big elephant\" as she would say . Highly recommended!!!", + "pos": 0.248, + "neu": 0.704, + "neg": 0.048, + "_id": { + "$oid": "6711d499cd60fca157e5be2d" + } + }, + { + "text": "One of the most caring Professors I ever had. Soft grader and gives many opportunities to her students to pass with at least a B+. If a student fails with her, it's on them. Lectures are clear and lots of homework and practice sheets!", + "pos": 0.174, + "neu": 0.772, + "neg": 0.054, + "_id": { + "$oid": "6711d499cd60fca157e5be2e" + } + }, + { + "text": "Pros: Great human being and good feedback. Cons: Takes 10-15 mins to start the lecture topic and gives an unnecessary background story that makes the topic complicated. Unable to manage time appropriately as result keeps the class 10-15 late. The exam question point and topic distribution is ridiculous one question would worth like 28 points", + "pos": 0.178, + "neu": 0.782, + "neg": 0.039, + "_id": { + "$oid": "6711d499cd60fca157e5be2f" + } + }, + { + "text": "I thought she was one of the best professor that I have had at ccny. She wants you to succeed but you have to work for it. She gave 6 quizzes (dropped 1) and gave 3 exams (dropped 1) and then the final. Take her class but you do have to put in the work.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be30" + } + }, + { + "text": "Best Math professor in CCNY! She takes her time explaining how the math works, not like how these other professors throw equations and expect you to memorize. She is always available and willing to stay after class ensuring you understand. I recommend her 100%!", + "pos": 0.182, + "neu": 0.777, + "neg": 0.041, + "_id": { + "$oid": "6711d499cd60fca157e5be31" + } + }, + { + "text": "One of the best professors at ccny. Teaches pretty slow and makes sure you understand the material. Has extra credit options to make sure you pass.", + "pos": 0.41, + "neu": 0.59, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be32" + } + }, + { + "text": "Tai is such a sweetheart. She gives amazing feedback and she's great at helping students out.", + "pos": 0.545, + "neu": 0.455, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be33" + } + }, + { + "text": "She goes over things several different ways to try and help everyone which was a pain if you understood but great if you didn't. A lot of students in my class struggled on her exams. But she gives great practice and review sheets as well as works with you during and after class. Unless math is a complete foreign language to you, this is an easy A.", + "pos": 0.231, + "neu": 0.707, + "neg": 0.062, + "_id": { + "$oid": "6711d499cd60fca157e5be34" + } + }, + { + "text": "Super tough grader. She explains things multiple times but it isn't always clear. She is a very sweet professor, but her teaching style isn't the best. Also, if you miss quizzes, there are no make ups. The work in class is easy, but her exams are very hard. Take someone else if you can.", + "pos": 0.151, + "neu": 0.633, + "neg": 0.216, + "_id": { + "$oid": "6711d499cd60fca157e5be35" + } + }, + { + "text": "Tai is a good person. She cares for her students. She is available outside of class to help. She also emails you back if you have questions. Tests can be hard but you have to try and study hard. Tai is also cute!", + "pos": 0.202, + "neu": 0.742, + "neg": 0.056, + "_id": { + "$oid": "6711d499cd60fca157e5be36" + } + }, + { + "text": "Math WAS by far my WORSE subject. Professor really worked with me to get me where I needed to be! I took away so much from this class and I *understand* the material. She goes above and BEYOND to make sure her students are prepared for tests and KNOW the material. THE best professor Ive EVER had for math all my life lol! TAKE her !!!", + "pos": 0.16, + "neu": 0.79, + "neg": 0.05, + "_id": { + "$oid": "6711d499cd60fca157e5be37" + } + }, + { + "text": "This is by far the best math professor I had. She takes her time explaining so it will be easy for you to understand. Definitely would take her again if she teaches any upper math class. LOVE HER!", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be38" + } + }, + { + "text": "This has been the best professor I have come across in all of my college years. She is extremely dedicated to helping you understand the material and gives you multiple chances to boost your grade. She is very sweet and answers all of your questions. Tai is always available during office hours and after class as well. Take her! You won't regret it!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be39" + } + }, + { + "text": "Great professor, if you can participate more the better you become.", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d499cd60fca157e5be3a" + } + }, + { + "text": "Tai is such a great teacher for MATH 19000. In my years that I have been here, I have never met a professor so dedicated to teaching her class and make sure they understand the material. Homework is given online and textbook PDF can be found easily. She's very accessible via email or office hours and never hesitates to help after class or office hours", + "pos": 0.194, + "neu": 0.777, + "neg": 0.03, + "_id": { + "$oid": "6711d499cd60fca157e5be3b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49acd60fca157e5be3d" + }, + "professor_name": "Feng Bao Lin", + "rating": 1.9, + "department": "Civil Engineering department", + "comments": [ + { + "text": "For the online classes, exams were given in one hour, despite class time being longer, and for the difficulty of the exam, giving one hour for it was very unreasonable. The exam questions required a lengthy amount of work to do, and there was no partial credit given. In all exams, no one in class was able to finish the whole test in the given time.", + "pos": 0.033, + "neu": 0.843, + "neg": 0.124, + "_id": { + "$oid": "6711d49acd60fca157e5be3e" + } + }, + { + "text": "he does not speak English good. he is ahard grader. In addition, if you ask him for help or question, he will tell u to check the lecture or the book. he does not answer any question back. he will tell u to ask the tech. he explain everything from power point. he does not show any work in board.", + "pos": 0.043, + "neu": 0.919, + "neg": 0.038, + "_id": { + "$oid": "6711d49acd60fca157e5be3f" + } + }, + { + "text": "Not someone you want to take if you have any interest in engineering. With him, that will die off quickly. He has a very heavy accent that you cannot understand at all. Poor teaching skills. Lectures have very little use. Questions on the exam will be much more difficult than anything done in class. Not worth wasting yourself on his class.", + "pos": 0.073, + "neu": 0.751, + "neg": 0.176, + "_id": { + "$oid": "6711d49acd60fca157e5be40" + } + }, + { + "text": "I couldn't understand a word he said in his class. He doesn't speak English so it's almost impossible to understand his lecture. DON'T TAKE HIS CLASS.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be41" + } + }, + { + "text": "no", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d49acd60fca157e5be42" + } + }, + { + "text": "avoid at all cost", + "pos": 0.0, + "neu": 0.577, + "neg": 0.423, + "_id": { + "$oid": "6711d49acd60fca157e5be43" + } + }, + { + "text": "Heard he is horrible however i enjoyed taking statics with Prof. Lin, not as bad as they he is, could be that he has changed. Exams are 4 questions i advise solving last 5 problems from chaptr Q's. Homework was not too difficult no need to buy anything online and NO PROJECT. Read any statics book before semester starts and youll be great", + "pos": 0.209, + "neu": 0.677, + "neg": 0.114, + "_id": { + "$oid": "6711d49acd60fca157e5be44" + } + }, + { + "text": "If you have a plan to study masters in structural engineering in city college, good luck. This professor teaches few core courses at the graduate level and doesn't care if more than half of the class gets C grade.", + "pos": 0.133, + "neu": 0.808, + "neg": 0.059, + "_id": { + "$oid": "6711d49acd60fca157e5be45" + } + }, + { + "text": "Arrogant, and very little partial credit, so he fails 3/4 of the class. Good luck to any who take him. :(", + "pos": 0.26, + "neu": 0.459, + "neg": 0.281, + "_id": { + "$oid": "6711d49acd60fca157e5be46" + } + }, + { + "text": "This professor's teaching skills are downright horrendous. He literally reads from the manufacturer's slides, and has done only...3 \"examples\" (more like drawings with no equations or anything) since the course started about 12 weeks ago. He clearly only cares about his research and not in teaching and inspiring his students. Good thing he curves.", + "pos": 0.211, + "neu": 0.699, + "neg": 0.089, + "_id": { + "$oid": "6711d49acd60fca157e5be47" + } + }, + { + "text": "Lin teaches directly from the publisher's powerpoint slides, if you're someone who prints out slides and write on them then do that. Aside from the usual textbook i suggest you get a copy of an older Hibbeler Statics book and work problems. Sometimes exams can be tough but he curves.", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d49acd60fca157e5be48" + } + }, + { + "text": "I took Prof. Lin for Statics a year ago and I realized how good of a professor he was once I got into Mechanics of Materials for the first time. If you pay attention in class you will learn. He uses ppt slides, but they are easy to follow for the most part. His exams come straight from the book. The class is not as stressful due to the curve.", + "pos": 0.15, + "neu": 0.834, + "neg": 0.015, + "_id": { + "$oid": "6711d49acd60fca157e5be49" + } + }, + { + "text": "Lin is not as bad as everyone says. Although he teaches straight from his powerpoints, they're everything you need to do well in the class. The material is tough to absorb, so do the homework and practice the heck out of the problems. He will usually not throw curve balls so as long as you're studying, you'll pass and get a good grade.", + "pos": 0.137, + "neu": 0.803, + "neg": 0.059, + "_id": { + "$oid": "6711d49acd60fca157e5be4a" + } + }, + { + "text": "Lin was an okay professor. In the beginning of the semester he doesn't really explain much of the material, but as the class goes on he begins to spend more time on the harder stuff where he appears to be more enthusiastic. I just wish that he would not use powerpoints all the time, because we never really saw a problem being solved by him.", + "pos": 0.162, + "neu": 0.786, + "neg": 0.052, + "_id": { + "$oid": "6711d49acd60fca157e5be4b" + } + }, + { + "text": "He does not make the class as hard as Ali does. For his exams, make sure you go over his home works and questions that are in the book.", + "pos": 0.075, + "neu": 0.879, + "neg": 0.046, + "_id": { + "$oid": "6711d49acd60fca157e5be4c" + } + }, + { + "text": "Good Prof, very smart and nice", + "pos": 0.749, + "neu": 0.251, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be4d" + } + }, + { + "text": "For some reason, I don't like his teaching spirit. I think he teaches very badly. And I heard he gives a lot of Masters courses...good luck with that. I feel like he doesn't even know what he teaches for himself..he just goes by his notes and oh! for the matlab part by his grad students!", + "pos": 0.123, + "neu": 0.79, + "neg": 0.087, + "_id": { + "$oid": "6711d49acd60fca157e5be4e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49acd60fca157e5be50" + }, + "professor_name": "G.J. Aldwin Murray", + "rating": 2.1, + "department": "Ethnic Studies department", + "comments": [ + { + "text": "Prof Murray is not a difficult grader. I got an A by coming to class, waiting for him to arrive, taking good notes and writing his papers a couple days before they were due. He does answer his phone on occassion and waltz in late, but hey I take advantage of that extra time to do things (text, e-mail, read). Particpation is a +. Take it!", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be51" + } + }, + { + "text": "what did you guys do that he gave you C? i got an A- and missed about three papers. I did well in the midterm and final, My friend also got an A! WOW...", + "pos": 0.239, + "neu": 0.709, + "neg": 0.052, + "_id": { + "$oid": "6711d49acd60fca157e5be52" + } + }, + { + "text": "Well i believe that the Professor is a very good teacher. He comes on time now and he rarely goes off topic. It is true that he sticks to the book, but he explains it afterwords. He is really fun to hang out with and i enjoy his class.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be53" + } + }, + { + "text": "THIS PROFESSOR IS NOT THAT BAD, YES HE COMES TO CLASS LATE, ANSWERS HIS PHONE IN CLASS AND READS OFF THE TEXTBOOK, BUT HE ONLY GIVES A MIDTERM, FINAL AND WRITING ASSIGNMENTS THAT ARE NOT HARD AT ALL. ATTEND HIS CLASS EVERYDAY, AND DO WHAT IS REQUIRED (U DO NOT HAVE 2 BE A GENIUS) AND U SHOULD GET a GOOD A- OR B+..Believe Me and Dont Worry!!", + "pos": 0.168, + "neu": 0.808, + "neg": 0.024, + "_id": { + "$oid": "6711d49acd60fca157e5be54" + } + }, + { + "text": "Theeee worst teacher at city college hands down! Disrespectful to students during his office hours. He says that all his students are average and the deserve average grades! Writes on the board in script (only he understands) and returns homeworks back a month or two later. Take home midtern and final!", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d49acd60fca157e5be55" + } + }, + { + "text": "He never comes to class on time and spends a majority of the class writing note on the board.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be56" + } + }, + { + "text": "Professor Murray is a very insightful person with a vast array of knowledge. His course and his thorough explanations really helped me grasp the intricacies of American society. He is calm and patient with students, and tries his best to make everyone understand. He is always available if you have questions. Not a tough grader. Highly recommended.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be57" + } + }, + { + "text": "A very poor professor. It is true that he comes late to his own lectures. His greatest lapse in my class was 30 min. He just says everything that is in the book with no clarity or effort. It is BORING. I can't even understand the marks he puts on my homework when I get them back. Makes me regret ever taking Sociology.", + "pos": 0.093, + "neu": 0.755, + "neg": 0.152, + "_id": { + "$oid": "6711d49acd60fca157e5be58" + } + }, + { + "text": "i don't think he is a good professor at all. i haven't gotten my grade yet but i can guess what it may be.Your grade is based on midterm-final-and attendance b.c thats all you do all semester. He comes from teaching at another school so he is NEVER ontime! and he teaches right out of the book. Word for WORD. boring and not helpful!", + "pos": 0.028, + "neu": 0.878, + "neg": 0.094, + "_id": { + "$oid": "6711d49acd60fca157e5be59" + } + }, + { + "text": "Impossible! Stay far away! Change classes if u get stuck with him! He teachers NOTHING and answers his cellphone about 3 times during lectures. He gives midterms based EXACTLY on the book but gave EVERYONE in our class a C-. He doesnt explain anything and is extremely baised and rude. He comes late everyday and cares only about answering his phone!", + "pos": 0.058, + "neu": 0.84, + "neg": 0.102, + "_id": { + "$oid": "6711d49acd60fca157e5be5a" + } + }, + { + "text": "run away from this man!!!! please save yourselves...he just has no clue...he does not teach anything, i learned nothing. the midterm were basica straight foreward answers based on the book, HE GAVE EVERYONE A \"C\"!! the whole class plans on reporting him...stay away from this man!!!", + "pos": 0.162, + "neu": 0.796, + "neg": 0.042, + "_id": { + "$oid": "6711d49acd60fca157e5be5b" + } + }, + { + "text": "he is the WORST WORST WORST professor on the face of the earth. The jury is still out as to how he became a professor at all. He is always tardy, disorganized, and unprofessional. He answers his phone in the middle of writing nonsensical and irrelevant 'notes' on the board. He never sticks to the syllabus & has no real grasp on the course material.", + "pos": 0.0, + "neu": 0.727, + "neg": 0.273, + "_id": { + "$oid": "6711d49acd60fca157e5be5c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d49acd60fca157e5be5d" + } + }, + { + "text": "prof.murray is the worst prof. i ever come in contact with. He is unprofessional,he answers his cell phone in class, never removes his large distracting ear peace, he is never on time, and frankly when you finish his class you havent learned a thing. How did he ever become a professor?", + "pos": 0.061, + "neu": 0.83, + "neg": 0.109, + "_id": { + "$oid": "6711d49acd60fca157e5be5e" + } + }, + { + "text": "Murray is a well-informed and I found his Harlem Community class enlightening. The papers he assigns are not s difficult.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be5f" + } + }, + { + "text": "his class lacks structure and he uses books that were not required for class. students generally do not know anything thats going on in the class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49acd60fca157e5be60" + } + }, + { + "text": "When he shows up on time or at all, his lectures must be for himself alone. He just writes on the board without any explanation, but if you go to the director of the department then he will lecture about who knows what. He'll ask you to buy the assigned books and then lecture from other books.", + "pos": 0.0, + "neu": 0.974, + "neg": 0.026, + "_id": { + "$oid": "6711d49acd60fca157e5be61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49bcd60fca157e5be63" + }, + "professor_name": "Chris Kodila", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "This guy is one of the best def a professor that knows his stuff makes the class worth being in super cool dude you will not be disappointed if you take him", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be64" + } + }, + { + "text": "I love this guy! Only 3 major papers process description essay 5-7 pages, argumentative essay 5-7 pages, and a lab report 7-10 pages. And a few short writings (4 articles, 3 abstracts). He thoroughly went over what he wanted for the essays and even gave examples from students he taught before. Beautiful guy and very nice too. Take him.", + "pos": 0.166, + "neu": 0.797, + "neg": 0.036, + "_id": { + "$oid": "6711d49bcd60fca157e5be65" + } + }, + { + "text": "Beautiful person :)", + "pos": 0.873, + "neu": 0.127, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be66" + } + }, + { + "text": "Cool guy, explains material clearly. Some ppl say he gives lots o work but really the assignmnts rnt as long n demandin as some make it seem, unless its a major paper (then it depends on ur topic). Grade's mainly based on 4 major papers n participation/attendance. so long as u keep up w/ the work, participate, n ur not late to class ur good.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be67" + } + }, + { + "text": "There is a lot of work for Kodila but he is a pretty nice guy. The class engages in some serious debates at times and it makes it fun. There are 4 main papers and a presentation at the end. Its an easy grade if you are willing to commit.", + "pos": 0.327, + "neu": 0.651, + "neg": 0.022, + "_id": { + "$oid": "6711d49bcd60fca157e5be68" + } + }, + { + "text": "gave too much work in so little time, expects a lot in this class and basically if you don't participate, you wont receive an A in the class, 4 major papers, which is time consuming overall, he can be improved", + "pos": 0.074, + "neu": 0.926, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be69" + } + }, + { + "text": "Best Writing for science professor.Hands down.Theres no textbook,no exams no quizzes, only 4 major papers and a few short paragraph assingments. Very straightforward professor, has understandable expectations and very friendly.", + "pos": 0.202, + "neu": 0.683, + "neg": 0.116, + "_id": { + "$oid": "6711d49bcd60fca157e5be6a" + } + }, + { + "text": "He is not helpful.English is my second language but I worked really hard for that course. He did not understand it at all. For the final paper, I even went to him to make sure my paper is good enough and he said it was good. Later on I found out that I got really low grade on that paper. He has his favorite students!", + "pos": 0.189, + "neu": 0.746, + "neg": 0.065, + "_id": { + "$oid": "6711d49bcd60fca157e5be6b" + } + }, + { + "text": "The work is intensive because you will have a lot to read very quickly but the lectures and class discussions are awesome and very interesting. He's a laid back professor, but not an easy A you'll need to do the work. Read and pay attention and failing should be near impossible.", + "pos": 0.149, + "neu": 0.71, + "neg": 0.141, + "_id": { + "$oid": "6711d49bcd60fca157e5be6c" + } + }, + { + "text": "Awesome Professor!!!! He is without a doubt one of the best teachers that City College has to offer!!! He makes you think about the books you read in many different types of ways!!!", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be6d" + } + }, + { + "text": "He is an amazing person!", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be6e" + } + }, + { + "text": "He has you read like 10 books and never really discusses them in ways that are helpful at all.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be6f" + } + }, + { + "text": "I love him SOOOOO Much!", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be70" + } + }, + { + "text": "I love him!", + "pos": 0.692, + "neu": 0.308, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be71" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d49bcd60fca157e5be72" + } + }, + { + "text": "I had Prof. Kodila during my freshman year. He's a very nice guy, couple of papers. Fair grader and gives helpful comments. Must take if you want an A. I got an A-", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be73" + } + }, + { + "text": "Chris is nice and very helpful! Easy to pass the class, and he gives you positive feedback on how to improve your essays.", + "pos": 0.468, + "neu": 0.532, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be74" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49bcd60fca157e5be76" + }, + "professor_name": "Robert Ramos", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Best English professor ever. If you do bad in his class, no one can help you buddy. Amazing feedback. Caring person, knows everyone in his class. Wish every professor was like him.", + "pos": 0.391, + "neu": 0.492, + "neg": 0.117, + "_id": { + "$oid": "6711d49bcd60fca157e5be77" + } + }, + { + "text": "When I took it, there were 4 papers in total, a personal essay type, expository essay, argumentive essay, and a research paper. The papers are pretty easy as long as your able to spend time on them. There's also homework but those are only to see how you're doing on your paper. Make sure to make the corrections in the draft that you submit. Easy.", + "pos": 0.149, + "neu": 0.826, + "neg": 0.024, + "_id": { + "$oid": "6711d49bcd60fca157e5be78" + } + }, + { + "text": "Professor Ramos is one of my favorite professors for far. He is inspirational and gives feedback on your essays and if you are not happy with your grades he gives a chance to do it again for a higher grade. He respects others opinions and tries to help his students. Absences and lateness does count in his class and it can affect your grade.", + "pos": 0.179, + "neu": 0.781, + "neg": 0.04, + "_id": { + "$oid": "6711d49bcd60fca157e5be79" + } + }, + { + "text": "Caring professor. Extremely fair grader and his revisions make it very easy to get an A on all of the essays.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be7a" + } + }, + { + "text": "Professor Ramos is GREAT! One of my Favorite professors so far. He gives you great feedback on your essays and if you didn't get the grade you wanted he will let you do it over for a higher grade. He's caring and his class is super easy if you show up.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be7b" + } + }, + { + "text": "Best English professor.", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be7c" + } + }, + { + "text": "Robert Ramos Is the best professor you could get for your english class! he would give you so many opportunities so you can get the best grade in his class! moreover, he could be your best friend in CCNY! He's always there to help you with any issue. if you take him for any of your english class, you won't regret!!!!!!!!", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be7d" + } + }, + { + "text": "The most impressive professor ever", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be7e" + } + }, + { + "text": "He is a great and interesting professor. He gives good feedback on papers that helps improves writing skills. He is really understanding and extends the deadlines for papers. Although he doesn't give really high grade on your draft, you can rewrite them to get higher grades.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be7f" + } + }, + { + "text": "Prof. Ramos is probably the guy you want to take for science writing class. He is extremely helpful and he gives you good feedback. He cares about the students. He lets you choose the research topic, where you need 3 research papers. They are not hard to do if you follow up with class schedule. Recommend him!!!!!!!!! Be his guest, he will save you", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be80" + } + }, + { + "text": "Professor Ramos is one of the best at city college, even though it was a writing fro science class, he helped his student into understanding the topic being researched in class. He considerate and really CARES about his students, always available by email and office hrs. I recommend you to take his class if you ever need to take writing for science", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be81" + } + }, + { + "text": "Extremely helpful and clear. Really good teacher. Take him!", + "pos": 0.611, + "neu": 0.389, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be82" + } + }, + { + "text": "His class was pretty strait forward, he assigns 4 papers. The thing I didn't like was that it was 6 pages long. He was very understanding when it came to students asking for extensions. He often extended the due date for all the papers.", + "pos": 0.068, + "neu": 0.888, + "neg": 0.045, + "_id": { + "$oid": "6711d49bcd60fca157e5be83" + } + }, + { + "text": "This man is hands down the best English professor at CCNY. Definitely take his class, you will not regret it.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be84" + } + }, + { + "text": "He's a great professor!! I loved taking his class, and he gives a lot of feedback on essays to help you improve. come to class, try your best, and do all the assignments and you'll be good to go! :) i recommend him", + "pos": 0.436, + "neu": 0.564, + "neg": 0.0, + "_id": { + "$oid": "6711d49bcd60fca157e5be85" + } + }, + { + "text": "Great professor ever! You never feel bored in the class. b/c he is a nice professor who tends to try to make the class be more fun and drive people in the class be more talkative. Also, he would meet everyone in the class at the office to discuss about the research paper (final paper)and looking through you drafts to point out the mistakes you made", + "pos": 0.166, + "neu": 0.802, + "neg": 0.033, + "_id": { + "$oid": "6711d49bcd60fca157e5be86" + } + }, + { + "text": "Overall, good teacher. Hard grader who doesn't give many As on papers but gives on final grades. I thought it was pretty easy. He teaches the material and helps if someone doesn't understand. Great professor to take.", + "pos": 0.269, + "neu": 0.618, + "neg": 0.113, + "_id": { + "$oid": "6711d49bcd60fca157e5be87" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49ccd60fca157e5be89" + }, + "professor_name": "Kutay Agardici", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "He is weird. Stay away", + "pos": 0.0, + "neu": 0.702, + "neg": 0.298, + "_id": { + "$oid": "6711d49ccd60fca157e5be8a" + } + }, + { + "text": "Great class you won't regret ! I would have gotten higher but I had things going on! Overall easy class, read and study slides & listen to lectures.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be8b" + } + }, + { + "text": "Best teacher ever, honestly I would've loved to take this class in person. Kutay is a very easy grader, as long as you do the work and it makes sense. The only thing I didn't enjoy was the group work, as everyone knows it can be a hassle. He gives a good amount of work which doesn't feel like work because the content is interesting. I recommend him", + "pos": 0.26, + "neu": 0.685, + "neg": 0.055, + "_id": { + "$oid": "6711d49ccd60fca157e5be8c" + } + }, + { + "text": "I took him for intro to psych and loved his class! Class consists of lecture, 3 media assignments (papers), and 4 exams (lowest grade gets dropped). He really cared for his students and always offered help outside of class. Exams are made out of slideshows. Great class and easy A!", + "pos": 0.27, + "neu": 0.689, + "neg": 0.041, + "_id": { + "$oid": "6711d49ccd60fca157e5be8d" + } + }, + { + "text": "He is very caring and passionate, very empathetic and encouraging. Make sure to prepare for quizzes and participation. I took him in the Winter session, so it was a pretty short time, however, I enjoyed the lectures.", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be8e" + } + }, + { + "text": "Drops the lowest exam which I love, overall easy. TAKE HIM IF YOU HAVE THE CHANCE", + "pos": 0.402, + "neu": 0.491, + "neg": 0.106, + "_id": { + "$oid": "6711d49ccd60fca157e5be8f" + } + }, + { + "text": "You won't regret taking him. This class was genuinely very interesting & fun. I took this class in the winter and it was 4 hours long but not once did I get bored. The topics were interesting. He is very caring !! You get 1 group presentation which was very fun, two essays= 2 pages, and 4 response papers = 1 page with very interesting topics.", + "pos": 0.281, + "neu": 0.688, + "neg": 0.031, + "_id": { + "$oid": "6711d49ccd60fca157e5be90" + } + }, + { + "text": "Great Professor, be prepared to write a good amount of papers in a short amount of time being that this was a 3 week winter session. Not too hard and a good lecturer, would take again.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be91" + } + }, + { + "text": "Professor Kutay was by far the BEST professor I've ever had during my college career. He really tries his hardest to understand the needs of his students and communicates at our level, unlike most professors. I wish most professors take note from him and it's a shame I took him my last semester, wish I'd taken him for more classes. HIGHLY RECOMMEND", + "pos": 0.201, + "neu": 0.758, + "neg": 0.041, + "_id": { + "$oid": "6711d49ccd60fca157e5be92" + } + }, + { + "text": "He is a great Professor. He is always there to help students.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be93" + } + }, + { + "text": "He was an amazing professor he was caring and understating. There was a lot of work but the papers were only one page essays so it was super doable. He was not a tough grader either. 100% would take again", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be94" + } + }, + { + "text": "Professor explain the topics well. His test were very fair and as long as you pay attention in his class, you'll get an easy A.", + "pos": 0.253, + "neu": 0.7, + "neg": 0.047, + "_id": { + "$oid": "6711d49ccd60fca157e5be95" + } + }, + { + "text": "One if the best prof at ccny. There is a group presentation, two papers, two exams and 4 response papers. The exams are very fair, his lectures are very interesting he cares about his students and is very understanding!!! TAKE HIM!!", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be96" + } + }, + { + "text": "I had been wanting to take this class since I was a freshman in 2019 and I was very thankful to take this before I graduate. And I was glad he was our professor because he gave us great slides with information and the assignments were clear. He is also friendly. I would definitely take a class with this professor again!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be97" + } + }, + { + "text": "An amazing professor and encourages thoughtful and provoking dialogue about class material. Super clear explanations about the class material, and even if you don't understand he'll explain it as many times in order for you to understand and won't make you feel dumb about it either. Honestly, there's no way you can leave with less than a B+", + "pos": 0.25, + "neu": 0.637, + "neg": 0.113, + "_id": { + "$oid": "6711d49ccd60fca157e5be98" + } + }, + { + "text": "Super understanding and friendly. Straightforward and cares more about quality of a paper rather than quantity. Provided a safe environment for discussion, especially with sensitive topics.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5be99" + } + }, + { + "text": "He is amazing, Exams come from the slides so you don't even need the textbook. Waited since summer 2020 to take this class and it is so interesting. If you have the chance to take him then do it, you won't regret it. Syllabus looks alittle intimidating b/c of the work but it is very doable and he is a easy/fair grader. He is also cute too", + "pos": 0.158, + "neu": 0.816, + "neg": 0.026, + "_id": { + "$oid": "6711d49ccd60fca157e5be9a" + } + }, + { + "text": "Prof. Kutay is a wonderful professor. I took him for Psy of Murder and he did a phenomenal job administering the class. We had 2 fair exams, 4 response papers, 2 papers on serial killers (one fictional & one real) and a group presentation. Papers were short with clear guidelines. I would take him again.", + "pos": 0.127, + "neu": 0.74, + "neg": 0.133, + "_id": { + "$oid": "6711d49ccd60fca157e5be9b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49ccd60fca157e5be9d" + }, + "professor_name": "Steve Rosenstein", + "rating": 3.6, + "department": "English department", + "comments": [ + { + "text": "Jason is very detailed, which is a very good trait to adapt, and always gives clear guidance on how to improve your work. Following his instructions and staying on top of your work is key. Laziness will never be your best friend in his class. He gives projects with enough time to complete and improve. Taking his class improved my writing abilities", + "pos": 0.278, + "neu": 0.679, + "neg": 0.043, + "_id": { + "$oid": "6711d49ccd60fca157e5be9e" + } + }, + { + "text": "good person had him in Citytech for one class. he sound very strict but once u know him you'll be fine, i don't think so he wants to fail anyone in class long as you be respectful and do his assigned work.", + "pos": 0.16, + "neu": 0.747, + "neg": 0.093, + "_id": { + "$oid": "6711d49ccd60fca157e5be9f" + } + }, + { + "text": "He is hard on attendance and preparation. If you are more than five minutes late, he wont't let you in and will mark you absent. If you don't bring the assigned books for class, you will be marked absent. If you have your phone out in the class at all, even before class starts, you will be told to leave and you will be marked absent.", + "pos": 0.0, + "neu": 0.961, + "neg": 0.039, + "_id": { + "$oid": "6711d49ccd60fca157e5bea0" + } + }, + { + "text": "Attendance is mandatory. Don't expect an \"A\" if you miss more than two classes. Extremely strict and will disregard an entire paper if your heading is not in the correct format. He is approachable and is available outside class hours. After his taking his class, you will know how to format a paper correctly at the very least.", + "pos": 0.022, + "neu": 0.917, + "neg": 0.062, + "_id": { + "$oid": "6711d49ccd60fca157e5bea1" + } + }, + { + "text": "Steve is a great professor! I had him last semester & of course we had our butting heads (in the beginning) but after meeting we sorted out our differences. He truly does care about teaching and making sure that students become better writers. I think all CCNY students need to take him before they graduate if they ever want to get published.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5bea2" + } + }, + { + "text": "His arrogance makes him so hot. He totally had my attentiona and other ladies in the class as well and luckily that helped keep us focus. At times I resented him but it was only because he had his expectations for his students.", + "pos": 0.079, + "neu": 0.835, + "neg": 0.086, + "_id": { + "$oid": "6711d49ccd60fca157e5bea3" + } + }, + { + "text": "Doesn't understand the difference between pushing and discouraging. Will make you annotate and photocopy a whole book for no good reason, and put you on the spot to write a graded essay in class so he can catch up on his work. As the due date for the 10 page paper approaches, he assigns more and more work. Plays favorites. Avoid at all costs.", + "pos": 0.074, + "neu": 0.821, + "neg": 0.104, + "_id": { + "$oid": "6711d49ccd60fca157e5bea4" + } + }, + { + "text": "worst prof at ccny! i LOVE creative writing with a passion but this man must hate his job! his feedback isn't constructive, he is rude, & extremely disrespectful to his students. He makes u write a 25 pg project & then bashes your work down like its garbage and he has better things to do. why is he teaching?! THE WORST! stay away if u love writing", + "pos": 0.218, + "neu": 0.592, + "neg": 0.19, + "_id": { + "$oid": "6711d49ccd60fca157e5bea5" + } + }, + { + "text": "Great professor, just gives a lot of work", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5bea6" + } + }, + { + "text": "Take him if you are preparing for mindless desk job. His choice of literature is mediocre or based on the basic school reading requirements. His strict adherence to MLA only serves as an illusion of competence. He hides behind arbitrary structure because he doesn't know how to grade a paper and/or teach a real English class.", + "pos": 0.0, + "neu": 0.922, + "neg": 0.078, + "_id": { + "$oid": "6711d49ccd60fca157e5bea7" + } + }, + { + "text": "Creative writing. With him its an amazing journey and he is always around. Best there is around. Recommended for life.", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5bea8" + } + }, + { + "text": "One of the toughest classes I've ever taken. A lot of critical writing for a non-critical writing class. I liked Steve a lot, but this class was difficult. I got an A, but it was not an easy grade to get. I would probably take a class with him again.", + "pos": 0.034, + "neu": 0.803, + "neg": 0.163, + "_id": { + "$oid": "6711d49ccd60fca157e5bea9" + } + }, + { + "text": "As everyone said, he looks like a very intimidating professor but actually is very fun to be around and converse with. He keeps the class alive and attentive. He gives a crap load of work and many of his assignments are unclear. His essays are graded with a number score so its unclear how it's actually graded. Overall, it's a hard class-low grades.", + "pos": 0.147, + "neu": 0.692, + "neg": 0.16, + "_id": { + "$oid": "6711d49ccd60fca157e5beaa" + } + }, + { + "text": "As a professor, he likes things done his way, but he treats his students as equals, and often listens to opinions. He explains the assignments very clearly, he livens class up, he makes the topic interesting,students are not afraid to ask questions in his class and he goes out of his way to accommodate a student in need of assistance.", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5beab" + } + }, + { + "text": "ok here is the deal on Steve. When you first meet him he is crazy intimidating but once you get to know him he will seriously change your life. He is an amazing teacher and just a cool guy and trust me during the year i hated him! You will be a better writer and a better student at that. Toatlly recomend him, something i thought i would never say", + "pos": 0.239, + "neu": 0.645, + "neg": 0.116, + "_id": { + "$oid": "6711d49ccd60fca157e5beac" + } + }, + { + "text": "ok here is the deal on Steve. When you first meet him he is crazy intimidating but once you get to know him he will seriously change your life. He is an amazing teacher and just a cool guy and trust me during the year i hated him! You will be a better writer and a better student at that. Toatlly recomend him, something i thought i would never say", + "pos": 0.239, + "neu": 0.645, + "neg": 0.116, + "_id": { + "$oid": "6711d49ccd60fca157e5bead" + } + }, + { + "text": "A little under half the class dropped the course. I would have to say it was was because people did not want to put in the work. He was fair and as long as you put some sort of effort into the work you're guaranteed to get a good grade. If not, you'll get what you deserve.", + "pos": 0.086, + "neu": 0.894, + "neg": 0.02, + "_id": { + "$oid": "6711d49ccd60fca157e5beae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49ccd60fca157e5beb0" + }, + "professor_name": "Stephanie Cheng", + "rating": 3.2, + "department": "Music department", + "comments": [ + { + "text": "Awesome professor! She is really helpful and has such a kind heart. She's very understanding of unexpected issues that come up and will do her best to help you out..but you must show effort on your end. An asset to the department and to city college.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5beb1" + } + }, + { + "text": "She's a very helpful professor and is obviously a very talented pianist. She always tries to put a smile on when talking to you and guides you through playing the piano step by step. Overall a very good instructor.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5beb2" + } + }, + { + "text": "Took in in Fall 08. Great class! She's really sweet and clear and funny...I developed a great appreciation for classical music thanks to her. You'll learn alot. TAKE HER!", + "pos": 0.479, + "neu": 0.521, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5beb3" + } + }, + { + "text": "Very rude. She is very condescending when she is explaining something to a student. She hates when people ask questions, as if it isn't in her job description to answer them. I don't care how decorated or prestigious you are as a pianist, respect your students!", + "pos": 0.057, + "neu": 0.775, + "neg": 0.168, + "_id": { + "$oid": "6711d49ccd60fca157e5beb4" + } + }, + { + "text": "Make sure your on time, hand in papers on time, and take her quizzes, and you should be fine. She even said it, when I took her class, that it was more of a music appreciation course. Most of the class time, she talks. It could get boring but its basically whats in the book.", + "pos": 0.124, + "neu": 0.848, + "neg": 0.028, + "_id": { + "$oid": "6711d49ccd60fca157e5beb5" + } + }, + { + "text": "I agree with everyone who wrote that she thinks she is the best! she thinks she is a musical god!", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5beb6" + } + }, + { + "text": "She is terrible, she thinks she is the best! Please take someone else, do not take her!", + "pos": 0.293, + "neu": 0.579, + "neg": 0.128, + "_id": { + "$oid": "6711d49ccd60fca157e5beb7" + } + }, + { + "text": "Come to class and try the best you can. She will give you a good grade for it. Don't come in late and bring your book! She loves to call you out on it if you do that! I think she's a good professor and takes the time to explain things thoroughly.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5beb8" + } + }, + { + "text": "She's a great Professor..lol..so lucky for not giving a final and get the grades from the 4 papers. it's not that bad just hv to take notes that's all.And she makes the class more interesting than other professors.I enjoy her class, it was fun.XD", + "pos": 0.285, + "neu": 0.679, + "neg": 0.036, + "_id": { + "$oid": "6711d49ccd60fca157e5beb9" + } + }, + { + "text": "If you have an option do not take her, only take her when you have no choice. She is a very biased professor.", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d49ccd60fca157e5beba" + } + }, + { + "text": "She is strict and will call you out if you are doing something inexcusable, such as being late to class. I think she is a good professor and as long as you are punctual, bring your textbook and other necessary materials, and show that you are trying hard, she will give you a good grade. Don't give her a reason to embarrass you!!", + "pos": 0.093, + "neu": 0.855, + "neg": 0.052, + "_id": { + "$oid": "6711d49ccd60fca157e5bebb" + } + }, + { + "text": "i thought she was a fabulous prof, unlike the people below. i have only taken her for an intro class, and she was great, getting even the most reluctant of students interested in the material. she has every right to act like a \"music goddess\" b/c she actually is extremely accomplished, and modest. only 4 papers, laid back grading.", + "pos": 0.223, + "neu": 0.745, + "neg": 0.032, + "_id": { + "$oid": "6711d49ccd60fca157e5bebc" + } + }, + { + "text": "Can we say STRICT again!!..Can't give or speak clearly when it comes down to notes! She expects us to act as if music class is our freaken major. Taking music class is SUPPOSE to be a easy A, not in her case.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d49ccd60fca157e5bebd" + } + }, + { + "text": "She is super strict when it comes to grading. A good suggestion will be never to summit a late paper. If you do summit a late paper don't expect anything greater than a \"C\". I agree with whoever said she thinks she is a music goodness.", + "pos": 0.222, + "neu": 0.74, + "neg": 0.038, + "_id": { + "$oid": "6711d49ccd60fca157e5bebe" + } + }, + { + "text": "She is SUPER strict when it comes to grading. I suggest never summit a late paper. If you do summit a late paper don't expect anything greater than a \"C\". The class grade is divided into 3 parts - Attendance and participation 50%, 4 Essays 20%, and Quizzes 30%. totally agree with whoever said that she thinks she is a musical Goddess.", + "pos": 0.108, + "neu": 0.861, + "neg": 0.031, + "_id": { + "$oid": "6711d49ccd60fca157e5bebf" + } + }, + { + "text": "She is very strict. And is fixated on her rules. Thinks she is a musical Goddess. Bad grader, she herself can't talk properly, and grades unfairly. Boring as well! My least fav. class.", + "pos": 0.053, + "neu": 0.731, + "neg": 0.216, + "_id": { + "$oid": "6711d49ccd60fca157e5bec0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49dcd60fca157e5bec2" + }, + "professor_name": "Mengxiao Sun", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "-Doesn't take attendance so you're able to cut class with no worries at all\n- 'Teaches' the lecture first but doesn't stop for any questions until after she's done with the lecture entirely. Talks as if she's in a rush \n- Says she's available during office hours to help out further, but is never actually after class\nDifficult overall, would not rec", + "pos": 0.109, + "neu": 0.822, + "neg": 0.069, + "_id": { + "$oid": "6711d49dcd60fca157e5bec3" + } + }, + { + "text": "Extremely clear and informative lectures that renders the textbook useless. Her mid-term and final exam reviews are basically the tests, so if you understand them well then youll do well. Shes slightly shy and doesnt speak loud, so try to sit in the front. I got an 84, 97, 97 on the midterms and 91 on Final and got an A. Would highly recommend.", + "pos": 0.137, + "neu": 0.801, + "neg": 0.062, + "_id": { + "$oid": "6711d49dcd60fca157e5bec4" + } + }, + { + "text": "She's so awesome!!", + "pos": 0.713, + "neu": 0.287, + "neg": 0.0, + "_id": { + "$oid": "6711d49dcd60fca157e5bec5" + } + }, + { + "text": "Fantastic professor. Explains concepts clearly, answers questions if you have a misunderstanding, you won't need the textbook. She will upload assignments to blackboard which are from textbook, so you have extra problems to practice. Gives extra credit in advance for each exam, including final. Practice exams like in class exams. Easy to get A", + "pos": 0.214, + "neu": 0.704, + "neg": 0.082, + "_id": { + "$oid": "6711d49dcd60fca157e5bec6" + } + }, + { + "text": "One of the best math professors at CCNY. Displayed a perfect balance between theory and problem solving. I personally felt over-prepared for her exams and the final. Every student is given the chance to do well in her class. Do not mistake her for being easy. A lot of time has to be put into solving the problems. Take her if you get the chance.", + "pos": 0.286, + "neu": 0.65, + "neg": 0.065, + "_id": { + "$oid": "6711d49dcd60fca157e5bec7" + } + }, + { + "text": "Only negative about her is that she doesn't take attendance and they are kids in the course who cut class a lot and get good grades when they are kids who show up every class and stuggle. She should penalize the kids that cut. I just find it unfair. But teaching wise you'll learn. Every test has one curve ball as for the final, PRAY!!", + "pos": 0.141, + "neu": 0.761, + "neg": 0.098, + "_id": { + "$oid": "6711d49dcd60fca157e5bec8" + } + }, + { + "text": "Not an easy A. Its a 300lvl math course. You got to put in the work. Definitely doable. Was dissappointed she did not boost me to an A-. Got a B+ but not complaining. She is laid back but you definitely gotta study for a good amount of hours for her class.", + "pos": 0.184, + "neu": 0.761, + "neg": 0.055, + "_id": { + "$oid": "6711d49dcd60fca157e5bec9" + } + }, + { + "text": "She's amazing. Straightforward lectures, goes over plenty of problems. Extra credit before exams and lots of partial credit. She knows her stuff, and her classes are usually overtallied. Take her and you'll do well. Other professors are terrible (supposedly). And her vibe is really smooth. Laid back. It is diff equations so you need some effort", + "pos": 0.166, + "neu": 0.747, + "neg": 0.087, + "_id": { + "$oid": "6711d49dcd60fca157e5beca" + } + }, + { + "text": "She really made me love the material and I thoroughly enjoyed the course. She was extremely helpful; posting homework online, going over problems in class, posting answers to exams and homework. Best part is she grades the exams really quickly, I got one test grade back 5 hours after I took the exam. She sure does know her stuff!", + "pos": 0.244, + "neu": 0.72, + "neg": 0.037, + "_id": { + "$oid": "6711d49dcd60fca157e5becb" + } + }, + { + "text": "She is the best! Differential equations should be a hard course, I love how she takes the time to explain each step and deals with the concepts in simple terms. She loves to answer any questions either in class or by emails. She's always there.", + "pos": 0.226, + "neu": 0.748, + "neg": 0.026, + "_id": { + "$oid": "6711d49dcd60fca157e5becc" + } + }, + { + "text": "This professor is very helpful. She presents material clearly and answers any of your questions. Her tests are fair and she provides you chances for extra credit. I definitely recommend her.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d49dcd60fca157e5becd" + } + }, + { + "text": "really great professor. if you dont get an A in her class I don't know what to tell you ...", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d49dcd60fca157e5bece" + } + }, + { + "text": "I have her right now, and finals are merely two weeks away! But TBH, she's such a great teacher that I don't find myself worrying too much about Calculus. She makes the subject less imtimidating and makes everything clear-cut. Let's just hope the departmental final doesn't mess me up. I will update when I receive my final grade!", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d49dcd60fca157e5becf" + } + }, + { + "text": "She's honestly the nicest person ever. She explains the topics easily but is a little quiet. Other than that she's great. If you ask her a question during quizzes or tests, she helps so much. No mandatory homework. Would take her again.", + "pos": 0.307, + "neu": 0.66, + "neg": 0.033, + "_id": { + "$oid": "6711d49dcd60fca157e5bed0" + } + }, + { + "text": "AMAZING professor who knows math like its literally her life. Extremely well versed, knows many different approaches to problems so students can find what works for them, and always explains clearly what she does on the board. 10 quizzes, 2 tests, 1 final. Clear cut expectations. Only one problem: She speaks low/doesn't project enough.", + "pos": 0.216, + "neu": 0.674, + "neg": 0.11, + "_id": { + "$oid": "6711d49dcd60fca157e5bed1" + } + }, + { + "text": "First semester taking math at CCNY, this lady was a blessing. She might seem really shy but a week into the semester she opened up. Really clear with he lectures, best grader ever. Gives you partial credit for everything. easy quizzes and 2 easy tests. Really which I could take her for 195.", + "pos": 0.324, + "neu": 0.653, + "neg": 0.023, + "_id": { + "$oid": "6711d49dcd60fca157e5bed2" + } + }, + { + "text": "very clear about whats need to be taught and how to be taught. explains everything perfectly. very helpful and always there.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d49dcd60fca157e5bed3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49dcd60fca157e5bed5" + }, + "professor_name": "Susham Bedi", + "rating": 3.2, + "department": "Hindustani department", + "comments": [ + { + "text": "She's super boring and very monotone, but super credible and smart. She's actually very important in India, so definitely respect her and take advantage of her. She focuses too much on group presentations every time we read a text, and it's super annoying. Not many papers, but she's not that specific on what she wants and she's a tough grader.", + "pos": 0.36, + "neu": 0.56, + "neg": 0.079, + "_id": { + "$oid": "6711d49dcd60fca157e5bed6" + } + }, + { + "text": "Bedi is a sweet old lady. Kinda slow and has an accent. But you'll get used to it. After each reading, there are group presentations. Couple of papers due and oral presentation for midterms and finals. As long as you read the stories, you'll be fine for the class. Easy A in her class.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d49dcd60fca157e5bed7" + } + }, + { + "text": "she's so cute but you will seriously fall asleep in this class! read read and read plus a few presentations in front of the class! but she is very helpful", + "pos": 0.191, + "neu": 0.752, + "neg": 0.057, + "_id": { + "$oid": "6711d49dcd60fca157e5bed8" + } + }, + { + "text": "She has so much attitude. She is incompetent and lazy. She is apparently too busy for everyone and everything.", + "pos": 0.0, + "neu": 0.752, + "neg": 0.248, + "_id": { + "$oid": "6711d49dcd60fca157e5bed9" + } + }, + { + "text": "Boring lectures but superrr easyy. Instead of 4 page essays she let us do drawings instead. Recommend for a easy A", + "pos": 0.265, + "neu": 0.673, + "neg": 0.062, + "_id": { + "$oid": "6711d49dcd60fca157e5beda" + } + }, + { + "text": "Very understanding, sweet old lady. She mainly talks and summarizes throughout class. It is a dull class. However, if you make an effort to pay attention, her lectures are pretty interesting. Talks a lot about feminism. Easy A.", + "pos": 0.251, + "neu": 0.664, + "neg": 0.085, + "_id": { + "$oid": "6711d49dcd60fca157e5bedb" + } + }, + { + "text": "No tests. Mid-term and final are oral presentations. Gives about 5 essays to write but you can draw instead. EXTREMELY EASY A.", + "pos": 0.231, + "neu": 0.712, + "neg": 0.057, + "_id": { + "$oid": "6711d49dcd60fca157e5bedc" + } + }, + { + "text": "Overall, this class was fairly easy. Just two papers of which you choose your own topic plus summaries of the stories you read in class. Plus she recites everything about the story so you understand. The papers are fairly easy and she's not harsh on grading.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d49dcd60fca157e5bedd" + } + }, + { + "text": "She is extremely passionate about her culture and is eager to learn things from your cultural perspective. She enjoys seeing Hindu literature enjoyed She likes summaries to make sure you read, she discusses the readings and only expects two papers on a topic you choose. To keep it simple only someone who is lazy can fail her class. AMAZING 10/10", + "pos": 0.282, + "neu": 0.642, + "neg": 0.076, + "_id": { + "$oid": "6711d49dcd60fca157e5bede" + } + }, + { + "text": "Bad.. I will suggest not to take her, she gives oral quizzes and oral presentation for essay you wrote. Not to be rude, but She doesn't know how to teach properly", + "pos": 0.053, + "neu": 0.879, + "neg": 0.068, + "_id": { + "$oid": "6711d49dcd60fca157e5bedf" + } + }, + { + "text": "Cool class. I learned to read and write basic Hindi. She is really nice. The class suffered from factors beyond her control. A lot of the students were from India; they signed up for an easy grade. Those like me (who knew no Hindi) got drowned. It was frustrating. My advice is to take this class but never hesitate to ask questions to slow her down.", + "pos": 0.129, + "neu": 0.763, + "neg": 0.108, + "_id": { + "$oid": "6711d49dcd60fca157e5bee0" + } + }, + { + "text": "She is a good professor if you can learn fast. I got an A for the class but felt bad for those who did not know hindi at all. I got an A because i am brown and spoke hindi. She yells if you are brown and do not know how to speak or read hindi. She is sweet but demanding. However, with her help i now can somehow read/write hindi.", + "pos": 0.115, + "neu": 0.799, + "neg": 0.086, + "_id": { + "$oid": "6711d49dcd60fca157e5bee1" + } + }, + { + "text": "Prof. Bedi had us speak, read, watch films, act, write essays, use the lab, & converse with each other. She always eavesdropped and paid close attention to our unique problems. She answered my questions even if it was something already covered. Hindi is hard and Prof. Bedi's class made learning fun. Students are lucky to get these opportunities.", + "pos": 0.132, + "neu": 0.805, + "neg": 0.062, + "_id": { + "$oid": "6711d49dcd60fca157e5bee2" + } + }, + { + "text": "Bedi was a terrible prof. she expects ppl who dont know hindi, to understand her when she speaks hindi in class. its ridiculous! idk how she got this job, the only time she taught was when the person came to inspect her skills sat in the class(i forget what theyre called)DONT TAKE THIS CLASS!!", + "pos": 0.0, + "neu": 0.836, + "neg": 0.164, + "_id": { + "$oid": "6711d49dcd60fca157e5bee3" + } + }, + { + "text": "This professor doesn't teach anything. She relies basically on the book and is disorganized. She basically divides the class into 2: beginers and intermediate people. If you don'thindi, your scrwed. But if you do, ur ok. If your looking to actually learn Hindi, don't take this professor by all means. But,if you like her way of teaching, then do so.", + "pos": 0.052, + "neu": 0.923, + "neg": 0.025, + "_id": { + "$oid": "6711d49dcd60fca157e5bee4" + } + }, + { + "text": "This professor thinks that everyone knows Hindi, but they don't. She basically divides the class into 2 groups..And doesnt teach! Expect people who don't know it to know it..A Little Useless", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d49dcd60fca157e5bee5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49ecd60fca157e5bee7" + }, + "professor_name": "Jennifer Morton", + "rating": 3.4, + "department": "Philosophy department", + "comments": [ + { + "text": "Cannot imagine why any1 would give her a bad review as she gave everyone all the tools to do well. Philosophy is not a class I was excited to take but I had to and I'm happy I took it with her. She made old ideals and dense readings more exciting. She literally gave us a whole class period to work on our 2pg final essay. C'mon ppl, this is college!", + "pos": 0.188, + "neu": 0.785, + "neg": 0.027, + "_id": { + "$oid": "6711d49ecd60fca157e5bee8" + } + }, + { + "text": "Couldnt teach. Final paper was a joke, very unclear prompt. Blackboard assignments were unclear and such tough grader . Shes very rude and obnoxious", + "pos": 0.068, + "neu": 0.553, + "neg": 0.379, + "_id": { + "$oid": "6711d49ecd60fca157e5bee9" + } + }, + { + "text": "horrible professor. she cant teach and very pretentious. the final paper assignment was unclear and she was no help outside of class.", + "pos": 0.0, + "neu": 0.71, + "neg": 0.29, + "_id": { + "$oid": "6711d49ecd60fca157e5beea" + } + }, + { + "text": "Readings were interesting and helpful to go over them in the following class. Reading responses were also helpful to engage. Grading method (adding up points) is really nice and gave incentive to students to do well.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d49ecd60fca157e5beeb" + } + }, + { + "text": "She's great. VERY EASY A... best 5 reading responses out of 11, best 5 quizzes out of 7. One paper as a midterm. Final exam based on quizzes and short 5 point essay (there is a review sheet). readings are posted on BB ahead of time. Seriously easy. Lecture could get a bit boring, depends on the topic", + "pos": 0.276, + "neu": 0.671, + "neg": 0.053, + "_id": { + "$oid": "6711d49ecd60fca157e5beec" + } + }, + { + "text": "She's a good professor with really good intentions, she knows what she's teaching very well and gives many examples. Her voice is something that many people find to be a bit mouse-like and it can get annoying but other than that she's pretty fair. Gives 10 assignments and allows you to turn in only 5. she gives out 3 question pop quizzes.", + "pos": 0.183, + "neu": 0.79, + "neg": 0.026, + "_id": { + "$oid": "6711d49ecd60fca157e5beed" + } + }, + { + "text": "I regret taking her class. Reading responses are 40% of your grade so make sure you do them. I did all 5 of mine but because blackboard didn't upload 2 properly I lost a whole letter grade & she refused to take them late. Read the syllabus carefully cause she'll only tell you about it once. Her class is not that interesting and neither is she", + "pos": 0.048, + "neu": 0.81, + "neg": 0.142, + "_id": { + "$oid": "6711d49ecd60fca157e5beee" + } + }, + { + "text": "One of the best Professors at City College. If you are serious and ready for help, she will really help you out. She encouraged me to speak up in class and really helped me improve my ability to speak in front of people.", + "pos": 0.359, + "neu": 0.618, + "neg": 0.023, + "_id": { + "$oid": "6711d49ecd60fca157e5beef" + } + }, + { + "text": "She will confuse you easily. One day, she tells you do this way; in the other day, she tells you that she doesn't like the way your do... I think that she does not track what she say to students. In her class, there are 13 score which accounts on reading response before class. It is extremely unfair for students not from philosophy department.", + "pos": 0.034, + "neu": 0.86, + "neg": 0.106, + "_id": { + "$oid": "6711d49ecd60fca157e5bef0" + } + }, + { + "text": "Knows her stuff really well. She is a fair grader. Doesn't have curve in her dictionary though. If you really wanna learn philosophy, take her. You should also work very very hard to get an A. She is always available during office hours. She is so much abreast with technology. Posts all grades on blackboard.I would recommend her.", + "pos": 0.114, + "neu": 0.855, + "neg": 0.031, + "_id": { + "$oid": "6711d49ecd60fca157e5bef1" + } + }, + { + "text": "Prof Morton is an amazing professor. She's holds a PhD in Philosophy from Princeton, so, she really knows her stuff! Get ready to read! Weekly reading responses, couple of pop quizzes and two major essays. Not an easy A, however her work pushes you to actually think really critically. You will DO philosophy.", + "pos": 0.116, + "neu": 0.843, + "neg": 0.041, + "_id": { + "$oid": "6711d49ecd60fca157e5bef2" + } + }, + { + "text": "Professor Morton is cool, an okay grader and she tries to relate to her students. She does get a little pretentious when students voice their opinions and she has her rude moments but nothing too terrible. She is worth a try,", + "pos": 0.188, + "neu": 0.77, + "neg": 0.043, + "_id": { + "$oid": "6711d49ecd60fca157e5bef3" + } + }, + { + "text": "With a moderate effort you should be able to get an A.Be warned that she spreads out the work evenly through out,so if you take 4 other classes you need to take that into account.I reccommend her for serious philosophy students;the paper was based on articles by a contemporary philosopher. Plus shes cute. And sounds like Quin from Daria lol.", + "pos": 0.124, + "neu": 0.825, + "neg": 0.051, + "_id": { + "$oid": "6711d49ecd60fca157e5bef4" + } + }, + { + "text": "She knows her stuff...harsh grader...dont expect an easy A...she does not give out a lot of As...expects a lot...she makes the material easy...a lot of reading and writing but definitely worth it...no final exam...", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d49ecd60fca157e5bef5" + } + }, + { + "text": "Starts out the class telling students that you should not expect an A and that you have to go above and beyond to achieve such a grade. You do learn a lot and she tries to get students to understand the topics, which are not easy. Not very helpful when it comes to the writing workshops and expects the students to help you out rather than herself.", + "pos": 0.038, + "neu": 0.893, + "neg": 0.069, + "_id": { + "$oid": "6711d49ecd60fca157e5bef6" + } + }, + { + "text": "This was a very challegning class.I think the professor tries her best to let the students undertand the lesson,but it seems that she did not prepare the lesson prior to class.She is will to go over a topic inorder to make you understand it better. She gives two exam,4-5 pages paper and every two week you have to write a response to a reading.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d49ecd60fca157e5bef7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49ecd60fca157e5bef9" + }, + "professor_name": "John Lee", + "rating": 1.8, + "department": "Biology department", + "comments": [ + { + "text": "Consistently shows up late. His lectures are boring, impossible to hear and don't help in the slightest for his 5 page reports. Has odd mood swings from time to time and his grading is ridiculous. No clear grading criteria or rubric and no positive or concise feedback when he gives back your graded reports.", + "pos": 0.0, + "neu": 0.768, + "neg": 0.232, + "_id": { + "$oid": "6711d49ecd60fca157e5befa" + } + }, + { + "text": "Takes half an hour or longer to even start the class. Assigns 5 page papers which he grades harshly on what he teaches. He whispers and reads really slowly off of a PowerPoint slide. One time he asked If I knew where his briefcase was when he walked in an hour late because he was stuck in the elevator, then left to look for it again. Boring as hell", + "pos": 0.0, + "neu": 0.881, + "neg": 0.119, + "_id": { + "$oid": "6711d49ecd60fca157e5befb" + } + }, + { + "text": "Super old (high 70s). Forgets topics he teaches. Uses ghetto MS word docs instead of textbooks. Powerpoints are just pictures. You'll be googling lots. Curves between 5-20 points. Tells you exam topics but doesn't stick to them because he forgets what he teaches so you study stuff in vain. ALOT to memorize for exams. Somewhat nice off-class.", + "pos": 0.09, + "neu": 0.852, + "neg": 0.058, + "_id": { + "$oid": "6711d49ecd60fca157e5befc" + } + }, + { + "text": "Unclear, unorganized, and rude to questions. Took Exam 1 today and felt half of the stuff tested was not clear in his notes. He required level of specificity not apparent or emphasized in his notes. Says no need to memorize something and he ends up testing you on whether you memorized it. Avoid at all costs.", + "pos": 0.0, + "neu": 0.815, + "neg": 0.185, + "_id": { + "$oid": "6711d49ecd60fca157e5befd" + } + }, + { + "text": "He is hard to get used to in the beginning but once you get hang of him youll be fine. Just make sure you study just what he goes over in class and you will do fine in the exams.", + "pos": 0.165, + "neu": 0.808, + "neg": 0.027, + "_id": { + "$oid": "6711d49ecd60fca157e5befe" + } + }, + { + "text": "His lectures are alright; the tests aren't easy, and you really need to attend the lectures the know what's on the tests (like the question on how cheese is made). Janakiraman teaches half the lectures, and they don't curve. At all. But Morgan taught the lab, and it kinda rocked.", + "pos": 0.063, + "neu": 0.905, + "neg": 0.033, + "_id": { + "$oid": "6711d49ecd60fca157e5beff" + } + }, + { + "text": "I regret taking his class and did not enjoy it at all. I would advise you to never take him. He also made me lost interest in Biology because he unclear with his teaching.", + "pos": 0.072, + "neu": 0.695, + "neg": 0.233, + "_id": { + "$oid": "6711d49ecd60fca157e5bf00" + } + }, + { + "text": "Good professor, I took grad course in microbiology. Fare exams, however, you have to read book in order to be able to answer all exam questions. I learned a lot from his class. Classes were fun, probably because i love biology!!", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d49ecd60fca157e5bf01" + } + }, + { + "text": "Not the BEST out there,he is really boring.....NEVER BUY a textbook..and if you try to talk to him he will scream at you and blame you for everything...JUST RUN IF U CAN", + "pos": 0.0, + "neu": 0.763, + "neg": 0.237, + "_id": { + "$oid": "6711d49ecd60fca157e5bf02" + } + }, + { + "text": "BORRINNNNNN", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49ecd60fca157e5bf03" + } + }, + { + "text": "Don't take him, i dont have an idea what he is talking about, slides are ok, but long, he gives mutliple choice exams. I didnt learn a single thing in that class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49ecd60fca157e5bf04" + } + }, + { + "text": "Not good, at all! Don't take him. You wouldn't learn anything! No other comment! Except, he will make you HATE BIO. :(", + "pos": 0.062, + "neu": 0.59, + "neg": 0.348, + "_id": { + "$oid": "6711d49ecd60fca157e5bf05" + } + }, + { + "text": "I give lee an overall zero on his clarity, lecture and student understanding. Everything is right from the book, so if you don't understand the book you won't understand him. Try not to take his class (waste of money you will withdraw.)", + "pos": 0.059, + "neu": 0.879, + "neg": 0.062, + "_id": { + "$oid": "6711d49ecd60fca157e5bf06" + } + }, + { + "text": "very very boring, it makes no sense for you to go to class because all he does is repeats exactly whats on the blackboard, he is of no help. he does not teach he just reads. do not take him if u can help it.", + "pos": 0.053, + "neu": 0.803, + "neg": 0.144, + "_id": { + "$oid": "6711d49ecd60fca157e5bf07" + } + }, + { + "text": "He is the worst professor I have had. His lectures are boring, and he takes them straight out of the book. He also teaches like he is in a speed competition. If you do not understand the book, he does not make it any clearer.", + "pos": 0.085, + "neu": 0.792, + "neg": 0.124, + "_id": { + "$oid": "6711d49ecd60fca157e5bf08" + } + }, + { + "text": "His lectures are a waste of time, all he does is read what's on the slides that are provided to him by the textbook. If you are someone who can read the textbook and understand the material, you will do great in his class.", + "pos": 0.084, + "neu": 0.859, + "neg": 0.057, + "_id": { + "$oid": "6711d49ecd60fca157e5bf09" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49fcd60fca157e5bf0b" + }, + "professor_name": "Marie Rose Mukeni Beya", + "rating": 3.1, + "department": "Psychology department", + "comments": [ + { + "text": "One of the best professors in CCNY. Very helpful and extremely easy! I recommend her.", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf0c" + } + }, + { + "text": "AWFUL! She contradicts herself A LOT. So if an assignment is given write her instructions word for word or have some kind of proof because she will go back on her word in the future. MAKE USE OF YOUR BOOK, her slides are incorrect with information, she doesn't explain herself well sometimes, & she has a heavy accent and mispronounces words often", + "pos": 0.0, + "neu": 0.877, + "neg": 0.123, + "_id": { + "$oid": "6711d49fcd60fca157e5bf0d" + } + }, + { + "text": "she is very nice, but contradicts herself a lot and has a very strong accent. Ignore her slides and just read the text book, because you will be confused! her tests are difficult and very long- you also have to write 3 papers but she gives extra credit. She has a beautiful personality though and lives adolescents", + "pos": 0.204, + "neu": 0.626, + "neg": 0.17, + "_id": { + "$oid": "6711d49fcd60fca157e5bf0e" + } + }, + { + "text": "Good professor, she will help you patiently if you ask. Very nice professor!! YOu will learn lots", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf0f" + } + }, + { + "text": "Highly recommended", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf10" + } + }, + { + "text": "Great Course. Nice professor. Read the text book. Study the slides. Highly recommended", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf11" + } + }, + { + "text": "She has thick accent and she goes very fast. She doesnt understand student's questions. She relies on her powerpoints&textbook to teach. This class is hard but i still got an A by reading the textbook before class, study for fill ins and multiple choice exams(100 questions), complete her 2 page essays, and attend every lecture. No reviews for test.", + "pos": 0.0, + "neu": 0.934, + "neg": 0.066, + "_id": { + "$oid": "6711d49fcd60fca157e5bf12" + } + }, + { + "text": "her midterm and final exams are extremely difficult!!!! the questions are WAYYY TOOOOO DETAILED!!!! there's 3 papers which she basically gives everyone an A on and many extra credits.", + "pos": 0.075, + "neu": 0.807, + "neg": 0.118, + "_id": { + "$oid": "6711d49fcd60fca157e5bf13" + } + }, + { + "text": "GREAT!!!!!!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf14" + } + }, + { + "text": "Honestly, I have no idea what these reviewers are talking about. She is a very nice professor. Sure she is a little incomprehensible sometimes due to her accent and the Powerpoints and exams are a little on the Engrish side but if you show interest in the material and even skim the textbook, you're guaranteed an A.", + "pos": 0.155, + "neu": 0.82, + "neg": 0.025, + "_id": { + "$oid": "6711d49fcd60fca157e5bf15" + } + }, + { + "text": "She is rude. she also cramps too much information in one day. 3 papers, presentation, midterm and a final", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d49fcd60fca157e5bf16" + } + }, + { + "text": "EASY COURSE. EASY PROFESSOR.READ YOUR BOOKS, READ YOUR NOTES, READ THE SLIDES.IT IS EASY TO GET AN A on THE EXAMS, THE PAPER IS A PIECE OF CAKE.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf17" + } + }, + { + "text": "Nice Prof. Easy course. Just do the reading. you will do just fine.", + "pos": 0.429, + "neu": 0.571, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf18" + } + }, + { + "text": "I wouldnt recommend. Her teaching is pointless bcz you need to read the chapters for her exam but shes big on attendance which is annoying. She fails at listening to her students when you tell her stuff. Nice but annoying, papers are done through safeassignment & she doesnt understand certain things..dont recommend but its doable..", + "pos": 0.1, + "neu": 0.69, + "neg": 0.21, + "_id": { + "$oid": "6711d49fcd60fca157e5bf19" + } + }, + { + "text": "She is completely dismissive of every complaint or criticism the class may have. Even if the whole class says there was something wrong with what she did, she will believe the class is wrong. I am only half way through the semester and I already wish i hadn't taken the class.", + "pos": 0.045, + "neu": 0.767, + "neg": 0.188, + "_id": { + "$oid": "6711d49fcd60fca157e5bf1a" + } + }, + { + "text": "HORRIBLE PROFESSOR! She loved humiliating students, did not take time to explain material, cramped massive material and expected students to know every detail. Save yourself the headache and stress and just avoid this professor. Very picky grader, just awful!", + "pos": 0.131, + "neu": 0.591, + "neg": 0.277, + "_id": { + "$oid": "6711d49fcd60fca157e5bf1b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49fcd60fca157e5bf1d" + }, + "professor_name": "Melissa Zavala", + "rating": 2.6, + "department": "Anthropology department", + "comments": [ + { + "text": "Would definitely recommend her. Easy A professor. All her tests are based on the book definitions. Make sure to get the book and read it. Her surprise quizzes are 15 true and false questions. There are no papers/essays to write. Makes you watch 2-3 movies in class. She's a sweet person who is available outside class. Strict about email etiquettes.", + "pos": 0.252, + "neu": 0.717, + "neg": 0.03, + "_id": { + "$oid": "6711d49fcd60fca157e5bf1e" + } + }, + { + "text": "The professor is a real sweetheart, I can't lie, but the class... absolutely disorganized. The class was 3 hours long, once a week, and she missed like 3 of those sessions, and we spent one of them watching Indiana Jones, which had nothing to do with the course. The final was literally just definitions taken straight out of the textbook.", + "pos": 0.119, + "neu": 0.794, + "neg": 0.087, + "_id": { + "$oid": "6711d49fcd60fca157e5bf1f" + } + }, + { + "text": "So many extra credit opportunities in this class, it is almost impossible to not get an A. Gives three exams, participation earns you extra credit, all multiple choice has extra credit at the end. A lot of reading though, learn the definitions and you're fine. Minimal effort needed for good grade as long as you cram the review sheet.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf20" + } + }, + { + "text": "Get ready to CRAM. This class was all about studying boring definitions from textbook/power points..I was quite disappointed. For exams, she picks a lot of TINY details from extremely boring articles (often 20 pages long), make sure you study those carefully. If you study before exams you can get an A even without much effort or regular attendance.", + "pos": 0.095, + "neu": 0.781, + "neg": 0.124, + "_id": { + "$oid": "6711d49fcd60fca157e5bf21" + } + }, + { + "text": "Hm. She wasnt the worse but not the best. Her lectures are dry and you could barely hear what she was saying. She never used a mic in that large classroom. It's easy if you just read the textbook. You honestly do not need to show up for her class just read the chapters that will be on the test and you'll pass.", + "pos": 0.132, + "neu": 0.806, + "neg": 0.062, + "_id": { + "$oid": "6711d49fcd60fca157e5bf22" + } + }, + { + "text": "I DO NOT LIKE THIS PROFESSOR. ALL SHE DOES IS READ HER SLIDES. SOMETIMES UNPREPARED FOR CLASS AND CONSTANTLY FIXING EXAMS BECAUSE SHE MAKES THEM AS RARE A PINK GLITTER UNICORN. DO NOT TAKE HER . RUN LIKE FORREST.", + "pos": 0.075, + "neu": 0.863, + "neg": 0.062, + "_id": { + "$oid": "6711d49fcd60fca157e5bf23" + } + }, + { + "text": "Professor Zavala's class is really straightforward. Just read and study from the textbook and take notes during the lecture and you'll do well. Her exams average 50 questions plus extra credit, but they're so easy if you take the time to memorize the knowledge needed to pass the exam. She's also really understanding if you have personal problems.", + "pos": 0.128, + "neu": 0.818, + "neg": 0.054, + "_id": { + "$oid": "6711d49fcd60fca157e5bf24" + } + }, + { + "text": "Do not take her classes if you are looking for an easy elective. Especially if anthro is not your major. -Many readings every week. - Requires you to spend more time than average for a 3 credit level 200 course. - Prepare to do research assignments, which will make up alot for your grade. -limited office hours", + "pos": 0.09, + "neu": 0.879, + "neg": 0.031, + "_id": { + "$oid": "6711d49fcd60fca157e5bf25" + } + }, + { + "text": "Lectures are literally her talking at you for an hour. No interaction and expects you to be an expert in an intro course. No way to gain points on anything because there are no quizzes/assignments or class work only a midterm and a final. I earned my first F in that course retook with SOMEONE ELSE and earned a A+, you should do the same.", + "pos": 0.048, + "neu": 0.859, + "neg": 0.093, + "_id": { + "$oid": "6711d49fcd60fca157e5bf26" + } + }, + { + "text": "DON'T TAKE AS AN ELECTIVE! 1 of the worst professors I've had in CCNY. Very inconsiderate. Does not allow you to take notes with your laptop in class and does not post powerpoints on blackboard. Her class is extremely boring. She gives 3 long test of 50+ questions. Bottom line, If you don't want to drop your GPA, stay away from this class!", + "pos": 0.025, + "neu": 0.79, + "neg": 0.185, + "_id": { + "$oid": "6711d49fcd60fca157e5bf27" + } + }, + { + "text": "Worst class I ever had at CCNY. The class operates like a BIO lecture. There are only 3 exams that you are graded on and the exams are extremely difficult. We learned about monkeys until the last 2 weeks of class, and then we finally got into human beings. It was beyond boring and beyond useless information. I learned absolutely nothing.", + "pos": 0.035, + "neu": 0.794, + "neg": 0.17, + "_id": { + "$oid": "6711d49fcd60fca157e5bf28" + } + }, + { + "text": "I took this class in my first semester of my freshmen year. Huge mistake, failed a classed for the 1st time. Basically you have to read the entire textbook. Only a midterm and a final. Each worth 50% of your final grade. If you are not a great test-taker or not prepared for all the reading please avoid it.", + "pos": 0.092, + "neu": 0.725, + "neg": 0.183, + "_id": { + "$oid": "6711d49fcd60fca157e5bf29" + } + }, + { + "text": "Do the reading and pay attention. If you're texting during lecture you'll definitely miss something important. Take her study guide and memorize everything. see her during her office hours sometime and you'll be fine. I'm sure she doesn't curve as much as other professors at CCNY.", + "pos": 0.167, + "neu": 0.775, + "neg": 0.058, + "_id": { + "$oid": "6711d49fcd60fca157e5bf2a" + } + }, + { + "text": "She grades on attendence, exams and participation so yes you HAVE to be there. The no hw thing is kinda cool until you get a C on your first exam. HW would really help for studying purposes. She uses big words in her lecture, it sounds super un-smart, like shes trying too hard plus being freshly out of highschool, I had no idea what she was saying.", + "pos": 0.187, + "neu": 0.74, + "neg": 0.073, + "_id": { + "$oid": "6711d49fcd60fca157e5bf2b" + } + }, + { + "text": "easy class, easy A. just pay attention in class, try not to fall asleep. graded on participation, tests (mid and final), and attendance. no hw, no quizzes, and she even offers extra credit. she is really a pushover, sometimes i feel bad for her. some lectures are good, some ehh. Not the best class, but if youre lazy and trying to get credits", + "pos": 0.165, + "neu": 0.695, + "neg": 0.14, + "_id": { + "$oid": "6711d49fcd60fca157e5bf2c" + } + }, + { + "text": "One of the worst professor in the school!! I took this anthropology class because I thought it would be an easy A since it was only an introductory class, I was wrong. No matter how much effort you put in the class she will not notice it. She is such a tough grader and her class is super boring! She gives A LOT of work! I wish I never took her! :(", + "pos": 0.135, + "neu": 0.715, + "neg": 0.15, + "_id": { + "$oid": "6711d49fcd60fca157e5bf2d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d49fcd60fca157e5bf2f" + }, + "professor_name": "Derek Ludovici", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "A very easy-going professor!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf30" + } + }, + { + "text": "An amazing professor, easy assignments, and clear instructions.", + "pos": 0.65, + "neu": 0.35, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf31" + } + }, + { + "text": "If you see his name, definitely take him. This was an asynchronous online course, and it was only graded by a couple of exams, but they were really easy. The answers were easily found in the textbook.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf32" + } + }, + { + "text": "TOOK HIS ONLINE WINTER CLASS, SO EASY, SUCH A BREEZE, I LOVE HIM EVEN IF I HAVEN'T SEEN HIM. EASIEST CLASS EVER AND I ACTUALLY LEARNED. I COULD TAKE HIM A MILLION TIMES", + "pos": 0.197, + "neu": 0.745, + "neg": 0.058, + "_id": { + "$oid": "6711d49fcd60fca157e5bf33" + } + }, + { + "text": "Professor Ludovici is a wonderful person and he's so accommodating with everything. The assignments are easy to follow and as long as you read and submit the things required of you, it will be a breeze!", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf34" + } + }, + { + "text": "He is an amazing profesor at CCNY. He has been so nice and flexible to students. I learned a lot with BB posts and his real life lectures. No hardtime. Totally recommended", + "pos": 0.286, + "neu": 0.661, + "neg": 0.054, + "_id": { + "$oid": "6711d49fcd60fca157e5bf35" + } + }, + { + "text": "I really enjoyed this course over the summer. The readings were interesting and I learned a lot.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf36" + } + }, + { + "text": "Such a good and understanding teacher. Took online class with him, it was good, took one midterm, final and daily response, and one short project.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf37" + } + }, + { + "text": "You better take this class. A quiz (7 overall) every week or two all open notes and he drops the lowest two. Midterm and final, half the questions are quiz questions half are straight from notes. Very simple, and offers extra credit on tests. Loved this class.", + "pos": 0.202, + "neu": 0.751, + "neg": 0.047, + "_id": { + "$oid": "6711d49fcd60fca157e5bf38" + } + }, + { + "text": "Take his class, you won't regret.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf39" + } + }, + { + "text": "I had him in Anthropology at Lehman. Hes young so he understands the struggles of college. He very caring! He wants you to get an A. He wants people to participate. He reviews everything in class. You can tell hes very passionate about what he teaches. Never canceled class. A lot of reading. Only test is the midterm and final.", + "pos": 0.112, + "neu": 0.851, + "neg": 0.037, + "_id": { + "$oid": "6711d49fcd60fca157e5bf3a" + } + }, + { + "text": "HE'S GREAT, please take his class!", + "pos": 0.65, + "neu": 0.35, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf3b" + } + }, + { + "text": "Everything you need to know about grading is in the syllabus. There are 4 response papers, a group presentation, take home midterm and final paper. No final exam which is great! In the class he lectures for a bit about the topic for that week then the class has an open discussion. Very chilled. Always open to helping students. Great professor!", + "pos": 0.157, + "neu": 0.812, + "neg": 0.031, + "_id": { + "$oid": "6711d49fcd60fca157e5bf3c" + } + }, + { + "text": "He is really clear about what he expects in the class. It's as simple as if you do the work you will pass. And if you need help, he will find a way to help you. He has a take home midterm, group presentation, response papers and final paper. Do the work and you honestly won't have a problem. Just a bit of reading. but He gives u the readings", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf3d" + } + }, + { + "text": "Professor Ludovici class is full of film screenings, lots of readings, one midterm (take-home and open book) plus final, and a group presentation on selected readings. His lecture is really interesting and he gets you to think differently. He's also super helpful when you ask him to clarify. All the readings were online, no book.", + "pos": 0.154, + "neu": 0.811, + "neg": 0.035, + "_id": { + "$oid": "6711d49fcd60fca157e5bf3e" + } + }, + { + "text": "Take Him", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d49fcd60fca157e5bf3f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a0cd60fca157e5bf41" + }, + "professor_name": "David Goodman", + "rating": 4.4, + "department": "World Civilizations department", + "comments": [ + { + "text": "Absolutely brilliant. One of the best professors ive ever had. U might initially think he is crazy, but you'll end up loving his enthusiastic nature. And he'll make your life miserable if you dont have the textbook", + "pos": 0.286, + "neu": 0.598, + "neg": 0.116, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf42" + } + }, + { + "text": "Professor is Goodman is simple awesome. He is very knowledgeable and enthusiastic person. He's one of the best history teacher.He's very friendly with his students. he's class requires tons of reading but as long as you read the TEXT, do the responses and do well on his papers, you'll do great in his class. overall, PROFESSOR GOODMAN IS THE BEST!!!", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf43" + } + }, + { + "text": "Professor Goodman has been one of the best teachers I've ever had. He may come off as kind of crazy to most students who don't understand his eccentric humor, but he is a very intelligent man. He gives a lot of work to challenge you and is always there to help you. He's very approchable in and out of class. I laughed and learned a lot in his class!", + "pos": 0.219, + "neu": 0.759, + "neg": 0.023, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf44" + } + }, + { + "text": "One of the best ever!!!He does give alot of work but it's worth every assignment. 4 essays and critical responses for each chapter 10-21. 2-3 pages each.", + "pos": 0.178, + "neu": 0.732, + "neg": 0.09, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf45" + } + }, + { + "text": "One of the absolute best! He gives a lot of work, but he is enthusiastic and really a great professor. I know now why there is a \"learned more than expected\" option in their evaluation, this man truly teaches more than expected. Helpful, kind and not only a brilliant teacher but also a great person.", + "pos": 0.381, + "neu": 0.569, + "neg": 0.05, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf46" + } + }, + { + "text": "One of a kind. The future of this country is steadily but surely going downhill unless science clones this man and puts him into every classroom across this massive continent. Only idiots drop his classes.", + "pos": 0.149, + "neu": 0.786, + "neg": 0.065, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf47" + } + }, + { + "text": "Incredible professor. Loves what he is doing and it shows when he teaches. He has strict rules but he is a great guy, smart and hilarious beyond belief!! (and has a cool accent) anyways he is one of the best professors at city and you wont think your learning because your laughing so much, but trust me youll remember more than you think", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf48" + } + }, + { + "text": "Awesome professor. he makes history interesting and repeats everything that he deems important which is really helpful for the final. he is probably one of the coolest professors I've had at city and hes EXTREMELY smart.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf49" + } + }, + { + "text": "Loved his class!! Definitely recommend taking him, he makes the class interesting and fun. He is helpful and a lenient grader.", + "pos": 0.595, + "neu": 0.405, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf4a" + } + }, + { + "text": "Although he cannot complete a thought, he has so much energy! I love him. Makes a boring subject interesting. Take him!!! Gives chapter summaries, 5 papers and final (2essays, short answer). Seems like a lot but he's a darn easy grader. He's good looking too. And funny =D", + "pos": 0.392, + "neu": 0.584, + "neg": 0.025, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf4b" + } + }, + { + "text": "FREAKING LOVE HIM... The best Professor in the entire school. Anyone that wants to love history and appreciate it to the fullest take Prof. Goodman. he is knowledgeable very smart,FUNNY, keeps it very real, interesting anf very understanding. Since i had him i want all my other professors to be like him. he is just inspirational. Takehim! Awesome!", + "pos": 0.374, + "neu": 0.583, + "neg": 0.043, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf4c" + } + }, + { + "text": "I LOVED HIM! He is very inspiring, really encouraging, has a sense of humor, however he is very strict and has specific rules which he will go over with you first day of class. But still, he is an amazingly educated professor that knows where he stands, and i personally appreciate his effort into the students! He is great, take him!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf4d" + } + }, + { + "text": "Professor goodman is an outstanding professor he even jus recently recieved an award. If you need any sort of help he will be more than happy to help. The class is fun and full of happy laughters to his charmful remarks. Not a hard grader but loves participation", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf4e" + } + }, + { + "text": "Professor Goodman is an amazing professor, and whoever applied themselves for the work (which usually meant reading a chapter every week and typing a small review), got great grades. You just have to put yourself forward so you can get there. Spend roughly 3 hours on the course outside, and you'll get an A.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf4f" + } + }, + { + "text": "Lectures can get a little off topic from the text but are interesting at times, but overall all his assignment/tests are written no multiple choice. Pretty open to ideas and is available after class. Decent professor not the greatest but definitely not the worst.", + "pos": 0.259, + "neu": 0.621, + "neg": 0.12, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf50" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a0cd60fca157e5bf52" + }, + "professor_name": "Judith Escalona", + "rating": 3.7, + "department": "Film department", + "comments": [ + { + "text": "She has a tendency to snap at any moment, and it may take a while to get use to her. Other than that, she is great! She is funny, and teaches very well. Stay on her good side :)", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf53" + } + }, + { + "text": "no comment.", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf54" + } + }, + { + "text": "Excellent professor with plenty of experience to share. She always involves students in discussions. No one but me read the textbook. Ha, ha! I'm taking her next class and her next one after that!", + "pos": 0.122, + "neu": 0.835, + "neg": 0.043, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf55" + } + }, + { + "text": "Worst teacher i've ever had, always busy doing work on her own films and neglecting her obligations to the students. Most likely bi-polar; one day i'll hate her, the next she'll be tolerable. She has alot of man bashing comments, that at the beginning of the semester i though were just a joke, but i'm not so sure they were. Easy class bad teache", + "pos": 0.071, + "neu": 0.739, + "neg": 0.191, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf56" + } + }, + { + "text": "She is good. the work is hard but the exams are very EZ! I recomend her. her lectures are clear and and her grading is not bad if you do the work!", + "pos": 0.25, + "neu": 0.72, + "neg": 0.031, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf57" + } + }, + { + "text": "She's great. One of the best in the department.", + "pos": 0.542, + "neu": 0.458, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf58" + } + }, + { + "text": "Loved her discussions about film. She is a filmmaker who has a lot to share. She supported me through rough times and offered a tough love. She seems hard but is actually very easy going and deeply committed to her students. I learned a lot and had a lot of fun.", + "pos": 0.312, + "neu": 0.65, + "neg": 0.038, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf59" + } + }, + { + "text": "She's very easy, professional, etc. She never slaped anyone from my class (fall'05) so I don't know what are you people talking about.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf5a" + } + }, + { + "text": "Easy professor but like everyone has said she does tend to snap, but she seems to take an intrest in the class which is always a great thing.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf5b" + } + }, + { + "text": "she is eccentric person but as professor is quite votalie which can be scary at first then become annoying. Otherwise she is a decent Professor!", + "pos": 0.0, + "neu": 0.739, + "neg": 0.261, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf5c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf5d" + } + }, + { + "text": "this professor is clueless and unprofessional", + "pos": 0.0, + "neu": 0.408, + "neg": 0.592, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf5e" + } + }, + { + "text": "Escalona is ok. At times, she will just ramble on endlessly, and will stronly criticize anyone who thinks differently from her. Her exams are EZ, which kinda makes up for her everything.", + "pos": 0.0, + "neu": 0.923, + "neg": 0.077, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf5f" + } + }, + { + "text": "Tends to snap unexpectedly at any moment. Other than that, a fine teacher.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf60" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a0cd60fca157e5bf61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a1cd60fca157e5bf63" + }, + "professor_name": "Julia Castello", + "rating": 4.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Professor Castello is one of the best professors I have had. As in any organic chemistry class, the material is difficult, but Prof. Castello makes the class interesting and fun. She puts together powerpoints that are helpful in learning and studying the material and is always available if students have questions or concerns. 10/10 professor!!", + "pos": 0.223, + "neu": 0.75, + "neg": 0.026, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf64" + } + }, + { + "text": "Her organic chem class was pretty fair. Make sure you're prepared to learn because it is a lot of material being covered. She knows what she is talking about and is very well-rounded as a professor. Don't be afraid to visit her office hours or ask a question, she's super kind and you definitely won't regret it! I'd definitely take the class again.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf65" + } + }, + { + "text": "With Organic Chemistry being a class that strikes fear in a lot of students' hearts; Julia makes the course doable and understandable. She is available outside of class and is great at explaining concepts. Her powerpoint slides are all you need.", + "pos": 0.164, + "neu": 0.724, + "neg": 0.112, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf66" + } + }, + { + "text": "Professor Castello is definitely one of those rare college professors that truly care about the students and is willing to go the extra mile to help you as long as you ask for it. If she sees that you are putting the work in she will do anything in her power to help you understand the material. Overall a great professor.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf67" + } + }, + { + "text": "Julia is an amazing person. She is really emphatic, and wants you to do well. Please take her!! You will love Organic Chemistry! She is a very good teacher and wants you to pass. Her exams are fair. She also give quizzes which helps. Just use her slides and do practice questions and you'll be fine. Meet her after classes because she will help you.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf68" + } + }, + { + "text": "Professor Castello is amazing. She believes in you and makes you work for your grades. She made me love organic chemistry. Everyone talks about how scary this course is, but having her as a professor changed everything for me. She made the material relatable and presented it in a way that was not abstract. I would definitely take it again with her!", + "pos": 0.128, + "neu": 0.841, + "neg": 0.03, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf69" + } + }, + { + "text": "Great and understanding professor. Gives extra points on exams and gives you benefit of the doubt.", + "pos": 0.314, + "neu": 0.575, + "neg": 0.111, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf6a" + } + }, + { + "text": "Professor Castello is an amazing professor. She is so understanding and clearly wants to help students succeed. She is a good hearted person and can explain things in a way that make sense. BEST PROFESSOR EVER!!!!!!!!!!!!!!!!!!!!!!!!!", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf6b" + } + }, + { + "text": "Very understanding and helpful teacher. She tries to help you pass the course, not fail it like some professors. She is also very easy to reach out to for help, and is always willing to go over exams/questions thoroughly with you 1 on 1. Exams are also very fair and she doesn't try to trick you and out any questions that you haven't seen before.", + "pos": 0.252, + "neu": 0.721, + "neg": 0.027, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf6c" + } + }, + { + "text": "Julia is a very caring professor and wants her students to do well. The class was not the easiest and you really had to put in the work but at the end, you get the grade that you deserve. Julia is understanding and very flexible with her course. She will listen to your concerns.", + "pos": 0.113, + "neu": 0.858, + "neg": 0.029, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf6d" + } + }, + { + "text": "Julia is simply an amazing professor. She made Organic Chemistry a joy to take. Keep in mind that you certainly have to put in the time to understand the material by paying attention in class and completing the problem sets. But the ride is definitely much smoother with Julia. She's flexible, understanding, and relatable.", + "pos": 0.199, + "neu": 0.771, + "neg": 0.03, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf6e" + } + }, + { + "text": "I loved having Professor Castello as a professor. She presents all the information to you, goes a little fast, but is always willing to explain more if you ask. She really cares that students don't over-stress, and genuinely wants everyone to do well. Listen to her, do practice problems, and you will do well in her class.", + "pos": 0.18, + "neu": 0.768, + "neg": 0.052, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf6f" + } + }, + { + "text": "Professor Castello is great. She's very kind and is always willing to help. She explains concepts really well one on one, so if you don't understand something from lecture, definitely go to her office hours. Her exams are lecture based, so make sure you read through her slides and use practice questions to practice for her tests.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf70" + } + }, + { + "text": "Definitely go more in-depth with the textbook than what she goes over for this class, but other than that having Castello as a professor is a good time. She is a very considerate individual, always accessible by email and office hours.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf71" + } + }, + { + "text": "She's great. Wants you to know how to apply concepts in many situations. Just practice using the questions she recommends, use her slides and quizzes as guides on what to focus. Communicate with her. She is really kind, clear, and reasonable.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf72" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a1cd60fca157e5bf74" + }, + "professor_name": "Kevin Gardner", + "rating": 4.4, + "department": "Chemistry department", + "comments": [ + { + "text": "This class is definitely not an easy A you definitely have to work and put in the effort but Gardner provides you with everything you need. watch the lecture recording and put a lot of effort in the group assignments.", + "pos": 0.087, + "neu": 0.873, + "neg": 0.04, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf75" + } + }, + { + "text": "Professor Gardner is a very caring professor as he makes it very easy to do well in the class. Additionally, he records all of his lectures which is super helpful considering everything that we get tested on is in the lectures.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf76" + } + }, + { + "text": "Prof. Gardner is a gem- his lectures are clear and his class format makes it easy to do well. He is generous with extra credit and his lectures are engaging. Highly recommend. Those being sticklers about detail on exams-- it's all in the slides and mentioned in lecture. Watch all lectures, attend office hours, & prep for exams a week in advance = A", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf77" + } + }, + { + "text": "Professor Gardner is a genuinely kind person who went out of his way for his students and is accessible during office hours. However, his lectures were obscure, verbose, and very hard to understand. I really wish that he got to the meat of the material instead of focusing heavily on minute details that became very difficult to follow.", + "pos": 0.099, + "neu": 0.832, + "neg": 0.069, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf78" + } + }, + { + "text": "Even though the material is dense, Gardner does a fantastic job at explaining it in an engaging way. Very transparent with his expectations for the course and is easily accessible through email/office hours for any questions. Provides extra credit and his 4 exams are only worth 40%. Really good for MCAT prep!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf79" + } + }, + { + "text": "Honestly he is amazing, I just did not study much. He takes off points on the paper for bs reasons which was annoying but he is an amazing professor. I wish he drops lowest exam but a C is not bad considering I barely know any BioChem at all. His grade breakdown blessed, if you arent good at exams then take him! Exams only 40%", + "pos": 0.26, + "neu": 0.644, + "neg": 0.096, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf7a" + } + }, + { + "text": "Professor Gardner is one of the best professors I've had. After taking this class, biochem has become one of my favorite subjects. The content is not easy but he makes it enjoyable. If youre planning on taking the MCAT or going to PA/Med school i would highly recommend taking his class. His exams are fair and he gives extra credit.", + "pos": 0.236, + "neu": 0.74, + "neg": 0.024, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf7b" + } + }, + { + "text": "Prof Gardner made me actually interested in a subject I never thought I would be. It's difficult material, but he managed to make it enjoyable even in an online setting. He is very easy to talk to and accessible during his office hours, etc. His exams are very fair and he gives lots of extra credit.", + "pos": 0.245, + "neu": 0.73, + "neg": 0.026, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf7c" + } + }, + { + "text": "Really fantastic professor. I'm not a chem person at all but Professor Gardner made the course material accessible. He often checked to make sure everyone was understanding the lecture and answered any questions. It was an online course, but he was very engaging and interactive. Very fair grader with lots of extra credit opportunities.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf7d" + } + }, + { + "text": "This opinion is as unbiased as it gets because I did not get an A in this class nor did I fail. This professor is arguably one of the best professors I have had in my entire academic career. He cares about his students and he genuinely wants his students to do well. His lectures are clear and concise. his exams are tricky but totally fair. TAke him", + "pos": 0.174, + "neu": 0.775, + "neg": 0.051, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf7e" + } + }, + { + "text": "Worst professor I ever took. Avoid his class at all costs. AVOID AT ALL COSTS. He assigns a text book that sucks. Then gives cryptic lectures. The way to ace this class is to just learn practice exams and copy them verbatim onto test note card", + "pos": 0.0, + "neu": 0.782, + "neg": 0.218, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf7f" + } + }, + { + "text": "Arguably the best professor at CCNY, certainly in the science departments. Has amazing credentials from teaching MD schools and running a lab. Exams are hard but fair - don't focus on memorizing details, but instead on why things are set up the way they are and how they change under different conditions. Generous office hours and extra credit, too.", + "pos": 0.228, + "neu": 0.733, + "neg": 0.039, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf80" + } + }, + { + "text": "Biochem is never easy but with him you will learn a lot. His teaching method is very unique. He always understands his students and gives a lot of opportunities to bust your grade us. Exams requires a lot critical thinking but based on everything that he covers in class. Great personality and amazing sense of humor. Just PERFECT Best prof. at ccny", + "pos": 0.33, + "neu": 0.617, + "neg": 0.053, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf81" + } + }, + { + "text": "He is a noble and highly respectful professor who offers an extra credit report to boost your final grade. His lectures are engaging and in-depth. The exams are strongly critical thinking based, similar to medical school tests. To succeed, it's vital to read the textbook and/or his slides and to thoroughly understand the concepts he presents.", + "pos": 0.304, + "neu": 0.664, + "neg": 0.032, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf82" + } + }, + { + "text": "Great Professor! Would definitely recommend to those who want to learn. Hard tests, but prepares for med school. Has experience teaching med students. Understanding, a must take!! Curves tests to make the average at least 72. Very smart!", + "pos": 0.273, + "neu": 0.701, + "neg": 0.026, + "_id": { + "$oid": "6711d4a1cd60fca157e5bf83" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a2cd60fca157e5bf85" + }, + "professor_name": "Miranda Fedock", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "Expectations and outline of the course are extremely clear. Loved how organized it was. Definitely needed because the work was heavy. Recorded lectures, readings, audio listenings, discussion boards, quizzes, essays, group discussions. Prof cares about the subject and is very open to helping. Also gave extra credit!", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf86" + } + }, + { + "text": "I would absolutely recommend taking Professor Fedock. She is a very caring individual and is accessible outside of class. Her grading criteria is clear and offers many ways to earn points for credit. If you are looking for an easy class to take and enjoy learning about music, I would take this course with her. Overall great professor and experience", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf87" + } + }, + { + "text": "Terrible professor. Assigns lots of bromidic work, and despite the class being asynchronous, you have to do group work weekly. She is exceptionally passive-aggressive despite trying to appear friendly. The class is easy; however, if you want a genuinely respectable professor and an actual asynchronous class, this is not the right one for you.", + "pos": 0.165, + "neu": 0.785, + "neg": 0.05, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf88" + } + }, + { + "text": "I liked her class this semester because it was asynchronous. However, I did feel like most of the work she assigned was a bit tedious. She assigns different assignments every week and there is more than enough time to submit them. She is super generous and can adjust anything if you just let her know in advance.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf89" + } + }, + { + "text": "Caring & understanding professor. Class was completely asynchronous. Assignments due every week. In total: 5 quizzes, 3 large assignments, 30 small assignments (journals, group work, discussions). The work can get overwhelming, but she's a lenient grader, and the assignments are not always that difficult. Easy extra credits available.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf8a" + } + }, + { + "text": "Took her back in Fall 2019 in person, I loved her as a professor and loved the course, super interesting. You gotta put in work for an A but it is pretty easy.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf8b" + } + }, + { + "text": "She's fantastic. Definitely one of the best professors that I've had in this school. I had her half online and half in person and the switch was very good. Her lectures are really interesting and got me interested in more genres around the world. Definitely take her. She's awesome.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf8c" + } + }, + { + "text": "Super interesting course, this class is non-synchronous so you really have to be on top of everything but you have a couple of days to watch the lectures. Quizzes are easy (2 chances to take it). There are also a couple of extra-credit opportunities! A music class like no other.", + "pos": 0.294, + "neu": 0.662, + "neg": 0.044, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf8d" + } + }, + { + "text": "She's great! Take her, she makes this class SO interesting. She always encourages you to take care of yourself. She gave us a lot of time to complete our work, and gives you good feedback on assignments. You will learn a lot!", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf8e" + } + }, + { + "text": "Loved this class! If you need the creative expression section for pathways take her! She's a fair grader and gives you a good amount of time to complete the work. She's always accessible and she's very understanding. I learned a lot from her being that it was an asynchronous class. If you do all the work, it's an easy A. Also gives extra credit.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf8f" + } + }, + { + "text": "I absolutely loved her, she was very understanding with the pandemic as well. She gives a lot of work, but as long as you do it you really will get a good grade. Quizzes can be difficult but as long as you study, even just a little, you will do fine. Opportunities for extra credit and easy to reach. She is really a nice and passionate professor.", + "pos": 0.341, + "neu": 0.622, + "neg": 0.036, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf90" + } + }, + { + "text": "She is very understanding and amazing at explaining world music history. She goes over things quick, clear, and interesting. Her quizzes are based on the lectures in class and the notes you take. As long as you take good notes in her class you'll do great. Her passion for music is amazing which makes the class more interesting", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf91" + } + }, + { + "text": "Honestly, I never enjoyed music until this class. She is very understanding if you let her know in advance, I highly recommend this class. It is not an easy A but if you study and do all the work, you will get the A, lots of extra credit opportunities.", + "pos": 0.187, + "neu": 0.751, + "neg": 0.062, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf92" + } + }, + { + "text": "best prof ever! she's so nice and class is seriously so easy if you just show up and do the work", + "pos": 0.388, + "neu": 0.556, + "neg": 0.056, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf93" + } + }, + { + "text": "Tbh She gives a lot of work and you really have to know the stuff to do well. Then only the tests will be easy for you. But she really wants her students to do well and gives a lot of extra credit for you to lift the grade. Attendance is very important in this class!", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf94" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a2cd60fca157e5bf96" + }, + "professor_name": "Farruhjon Yodgorov", + "rating": 4.9, + "department": "Chemistry department", + "comments": [ + { + "text": "Very easy grader and really helpful with advice and instructions during lab. He is patient so ask as many questions as you need!", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf97" + } + }, + { + "text": "He is quite literally the best lab instructor for Chemistry you can possibly get. His grading is very lenient, even grading your work as a 100, even if your answer is quite a bit off. His teaching style is very laid-back, and he helps everyone to the best of his ability. Also a very patient guy who will repeat steps constantly if needed. Easy A.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf98" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf99" + } + }, + { + "text": "Yodgorov is a fantastic lab professor! His labs are easy, fair, and engaging. He also has a great understanding of the subject, and he breaks things down and easily explains things. And he doesn't give HW!!!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf9a" + } + }, + { + "text": "Easy and chill lab instructor!!! 100% recommend him", + "pos": 0.511, + "neu": 0.489, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf9b" + } + }, + { + "text": "Highly recommend him!!! He demonstrates the experiments and explains all of the steps thoroughly, including the calculations. He also drops one lab.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf9c" + } + }, + { + "text": "I mean, not much to say since he just runs the labs. The labs were easy and you leave early every time. However, he is kind of rude and condescending at times and treats you like a high school teacher would. The good thing is you don't have to show up to one of the labs since your lowest lab grade gets dropped.", + "pos": 0.115, + "neu": 0.787, + "neg": 0.098, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf9d" + } + }, + { + "text": "Professor Farruhjon is an amazing teacher! He explains exactly what he wants from us for each lab, and he helps out with everything we would need help with. The grading criteria is incredibly simple, just show up, do the lab properly, and that's it. He is an awesome teacher.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf9e" + } + }, + { + "text": "HE'S THE BEST LAB PROFESSOR FOR GEN CHEM, TAKE HIM He is really understanding with his students and makes sure we understand all his labs properly. Pretty easy class! (2)", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bf9f" + } + }, + { + "text": "HE'S THE BEST LAB PROFESSOR FOR GEN CHEM, TAKE HIM\n\nHe is really understanding with his students and makes sure we understand all his labs properly. Pretty easy class!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bfa0" + } + }, + { + "text": "Professor Yodgorov is a chill professor but gets serious if you mess up. Which makes sense in a chemistry lab. He tells you how everything is gonna be graded clearly, & answers any questions in detail. He doesn't mind if you did your experiment incorrectly, just wants you to explain what could've went wrong during the experiment.", + "pos": 0.054, + "neu": 0.81, + "neg": 0.135, + "_id": { + "$oid": "6711d4a2cd60fca157e5bfa1" + } + }, + { + "text": "Yodgorov is a truly amazing lab professor! He has an amazing understanding of Chemistry and explains things in a manner which makes them seem like common sense afterwards. His labs were easy, fair, and engaging. He also doesn't believe in wasting time with pointless assignments if you don't truly understand questions.", + "pos": 0.343, + "neu": 0.622, + "neg": 0.036, + "_id": { + "$oid": "6711d4a2cd60fca157e5bfa2" + } + }, + { + "text": "Highly recommend taking his class. He is incredibly knowledgeable and explains the material thoroughly, making it easy to understand. Also, punctuality is essential for his class, so be sure to arrive on time. Overall, you won't regret taking his class.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bfa3" + } + }, + { + "text": "Take his class! You won't regret it! HE is an Easy and Chill professor that understands that we have a life outside of school. He likes it when you ask him questions after class, so make sure to do that for a possible letter of Recommendation. Also, come to class on time. Punctuality and Preparation are key to success in his class!", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d4a2cd60fca157e5bfa4" + } + }, + { + "text": "Professor Yodgorov is one of a kind Chemistry Professor at City College. I liked how we didn't take any work home in his class, everything was completed in class. He is a caring individual with a huge heart. He helped me understand the concept that I was struggling with and he kept inspiring me to chase my dreams of one day becoming a physician. TY", + "pos": 0.296, + "neu": 0.67, + "neg": 0.034, + "_id": { + "$oid": "6711d4a2cd60fca157e5bfa5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a3cd60fca157e5bfa7" + }, + "professor_name": "Amy Weiss", + "rating": 3.4, + "department": "History department", + "comments": [ + { + "text": "Super easy class to pass, she gives fair test and quizzes and gives you a review sheets for all the test.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfa8" + } + }, + { + "text": "She is a professor that truly cares about what you learn from her. Gives specific and clear instructions on her assignments and quizzes. Gives review sheet for all 3 quizzes and midterm and the final. There is an online pdf for the textbook so no need to buy. Gotta read many primary sources for the class but that's pretty simple.", + "pos": 0.15, + "neu": 0.821, + "neg": 0.029, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfa9" + } + }, + { + "text": "Good professor overall. Gives three quizzes, each has their own review sheet, and drops the lowest one. A lot of reading from the textbook and primary sources. Professor Weiss will help you as long as you reach out to her.", + "pos": 0.148, + "neu": 0.795, + "neg": 0.057, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfaa" + } + }, + { + "text": "she's ok. she gives u too much info during class that's not on the test or quizzes grades HARSHLY. She grades papers like an English teacher.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfab" + } + }, + { + "text": "Easy A class. She literally feeds you the material and is very kind. I definitely recommend her. The textbook is required but you don't really need to read it.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfac" + } + }, + { + "text": "Her class felt like a high school history class. If you do the bare minimum of reading over notes or her optional readings you should be fine during tests. Has a paper pretty easy. Her lectures are clear and she's pretty understanding. Definitely an easy professor", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfad" + } + }, + { + "text": "She teaches well, although she sometimes can get too specific rather than give over the information in a more general concise way. Exams are generally pretty average as long as you study. If you've taken previous US history courses, it's a very very simple class.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfae" + } + }, + { + "text": "Best professor for usso in Ccny she is a great instructor and you need to study in order to pass but the class environment makes up for it essays are extremely easy to accomplish and she only gives 4 quizzes and drops the lowest grade overall shes a great professor", + "pos": 0.288, + "neu": 0.661, + "neg": 0.051, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfaf" + } + }, + { + "text": "i regret taking her, she grades like an english teacher... she grades every little thing on papers including spelling, margins, titles, citations etc... her lectures are deathly boring and she puts everyone to sleep. this class was too hard for a history class and def dont recommend. dont do it you were warned", + "pos": 0.042, + "neu": 0.781, + "neg": 0.178, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb0" + } + }, + { + "text": "i took her thinking it was going to be simple bc i know my history. turns out she really complicates things for absolutely no reason. It can all be so simple but she tries to make it hard bc shes a historian. i tried talking to her after hours but she has a nasty attitude as well. dont do it to yourself and i dont recommend at all.", + "pos": 0.035, + "neu": 0.823, + "neg": 0.143, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb1" + } + }, + { + "text": "She goes over the class in a mediocre manner but expects a lot from students. Class is easy but she complicates the grading system which ends up having a less grade.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb2" + } + }, + { + "text": "Nice professor but lectures are pretty dry. Class feels more like a High School history class. Textbook required and assigns readings but never goes over them (so don't even bother buying it). Three papers based on books (do buy those!) and 5 quizzes (multiple choice) and a final consisting of short essays and topics of her choosing. I recommend .", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb3" + } + }, + { + "text": "Worked too hard in a MHC Seminar not related to my major for a A-. 3-4 papers and final project is a online podcast on any topic really. Very harsh grader on papers. Took like 2 trips, but other than that, lectures were usually stale and drawn out. Participation matters for a great grade, and good attendance helps (was late often + missed 5-6 days)", + "pos": 0.2, + "neu": 0.721, + "neg": 0.079, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb4" + } + }, + { + "text": "Great professor! Really cares about her students. Expect to do some reading for her class (which she ended up reducing anyway after asking for feedback) and 2-3 page response papers. Final project was a research paper and podcast. Got to go to the Tenement Museum during the beginning of the semester.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb5" + } + }, + { + "text": "Easy class as long as you read some of the material or had prior knowledge of US history. Test are mutiple choice and are really easy plus she tells you what erms are on it so you just study those terms and then easy A. Only three papers during the semester but they are easy", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb8" + }, + "professor_name": "Reza Farahani", + "rating": 2.4, + "department": "Psychology department", + "comments": [ + { + "text": "decent prof", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfb9" + } + }, + { + "text": "I like this professor! If you dont understand something, ask him!!! he is willing to help you!! if u think u r not doing well, speak to him. he gives extra credit. he tells jokes sometimes. I tool him twice, A+ and A", + "pos": 0.216, + "neu": 0.748, + "neg": 0.036, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfba" + } + }, + { + "text": "He always speaks in a monotone voice....he uses notecards and speaks directly from them...i had to sit in front of his class to not fall asleep but overall this class was an easy A...you have to memorize everything though but when don't you have to? take extremely good notes, memorize them and especially the vocabulary...", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfbb" + } + }, + { + "text": "He breaks down the math and steps needed to solve problems so well that anyone can understand it. The homework was challenging but the exams were much easier. The department final was way easier than anything done in class. I don't know why his reviews on here are so bad, I thought he was a good professor :)", + "pos": 0.256, + "neu": 0.639, + "neg": 0.105, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfbc" + } + }, + { + "text": "He is the most boring and unfair professor. You don't understand a word he is saying. I knew I was failing his class and I asked him to give me an F. He refused to give me the F and instead gave me the D. I cannot take the class over to fix the grade because it will not give me credit or count.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfbd" + } + }, + { + "text": "The thought of this teacher brings lugubrious memories of awful lectures and a useless teacher. I literally had to teach myself statistics because I felt, seriously, that I knew more about stats than he did. Teaches off post cards and is extremely monotone and unclear in his speech. Avoid at all cost.", + "pos": 0.0, + "neu": 0.753, + "neg": 0.247, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfbe" + } + }, + { + "text": "Terrible professor, should be avoided at all costs! He actually tests you on in-text citations in the text-book that's how low he would go to screw your grade!!!", + "pos": 0.0, + "neu": 0.702, + "neg": 0.298, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfbf" + } + }, + { + "text": "Your grade is based on homework and three exams. He is not a good professor at all. He doesn't use the dept. exam for the final. He dislikes going over the homework, dismisses the class early, and still doesn' take time to talk to you after class.", + "pos": 0.0, + "neu": 0.898, + "neg": 0.102, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfc0" + } + }, + { + "text": "oh god ..that all...bad accent and boring", + "pos": 0.223, + "neu": 0.532, + "neg": 0.245, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfc1" + } + }, + { + "text": "He's very boring (monotone), can put you to sleep. However, he's an easy teacher. NO HW, 3 tests, and a paper. The tests are very straightforward from the textbook (and it's not cumulative). Can't exactly say you will have fun in the class, but i can say that you will be happy when you see your grade.", + "pos": 0.141, + "neu": 0.801, + "neg": 0.058, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfc2" + } + }, + { + "text": "this guy is a true jerk, he changes his policies in the middle of the semester, and gives really tough exams. Doesn't drop the lowest grade, doesn't curve the exams, and classes are packed with boring lectures. no presentations, one paper, three exams.", + "pos": 0.132, + "neu": 0.699, + "neg": 0.169, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfc3" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfc4" + } + }, + { + "text": "I think he is a nice professor. Yes, he uses note cards during his lecture but if you pay close attention they are interesting. Although sometimes its hard to understand what he is saying. His test are multiple choices (its kind of hard). Just read the text book, try to pay close attention and study really hard.", + "pos": 0.112, + "neu": 0.752, + "neg": 0.136, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfc5" + } + }, + { + "text": "Boring!!! has a huge accent, talks really low and in a monotone voice. One can hardly understand what he says!!! teaches right from his note- cards...boring, boring, boring!", + "pos": 0.064, + "neu": 0.643, + "neg": 0.293, + "_id": { + "$oid": "6711d4a3cd60fca157e5bfc6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a4cd60fca157e5bfc8" + }, + "professor_name": "Meir Gal", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Years of observation and study lead Gal to create a class that teaches\r students how to deconstruct and understand the world through film,\r philosophy, art, and history. City College is lucky to have him. Meir\r has high expectations of his students and promotes self expression. He\r gives students his full attention and the respect they deserve.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfc9" + } + }, + { + "text": "Professor Gal is definitely one of the best professors I've ever had. He realizes the importance of teacher-student relationships and does his best to get to know his students beyond the classroom. This really helps with opening and maintaining class discussions. You WILL leave his class looking at things differently. Fun class, Excellent Prof.!", + "pos": 0.335, + "neu": 0.648, + "neg": 0.017, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfca" + } + }, + { + "text": "Professor Gal is one of best professors I've had at SVA. His lectures were very beneficial and conveyed his extensive knowledge of art.He made me personally look at things like I never have looked at them before. The course load is slighty heavy you are guaranteed to get something out of his class. I recommend taking his class, he is the greatest!", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfcb" + } + }, + { + "text": "Meir Gal is the professor you dream of getting; not only does he nurture your curiosity, but he directs it, so that you learn to become aware of the world you occupy. It isn't the easiest course load, but you remain engaged because he makes the class so intriguing. His students strive to learn for the sake of learning and not solely for an A+.", + "pos": 0.095, + "neu": 0.862, + "neg": 0.042, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfcc" + } + }, + { + "text": "Take his calss. Professor Gal is one of the best professors that I ever took at SVA. I really like his teaching style. He make us aware of the world issues which is very important to art students, who will be out there creating arts for others.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfcd" + } + }, + { + "text": "Professor Gal is one of the best professors at SVA. I really enjoy is style of teaching. He makes us aware of what is happening in the world today. I totally recommend taking his class.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfce" + } + }, + { + "text": "Meir is a terrific teacher. He includes many outside texts to enrich the program, and while his class is challenging, his primary requirement is that you learn and grow- not that you torture yourself with huge piles of work. I took his class while he was at SVA and wish I could have taken more classes with him.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfcf" + } + }, + { + "text": "Mr. Gal really brings a lot to the table when he teaches, from the textbook to films and articles from both the past and the present. He brings the modern world into the classroom and shows how everything we live in or with today is associated with the past and with art! I absolutely loved his class and recommend it to all! I took his class at SVA.", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd0" + } + }, + { + "text": "Meir pushes the envelope in teaching and really goes outside the box. Instead of being taught straight from the pages of a textbook, Meir really brings his own personal knowledge and opinion to the table. His lectures/discussions really force us as students to look at the big picture. His class truly was a life changing experience!", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd1" + } + }, + { + "text": "Professor Gal is one of the greatest teachers at City College. BEWARE! He might change your life! His class is the rabbit hole. His classes are an absolute must for all students. I couldn't imagine leaving City College without the knowledge and perspective he has enabled me to attain.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd2" + } + }, + { + "text": "Prof Gal made me aware of the world I was living in before I attempted to photograph anything.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd3" + } + }, + { + "text": "the absolute best professor any new photo. student could ask for. take his class to not only learn a wonderful form of art but also to learn a lot about your self. He's the Best. Take His Classes!!!!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd4" + } + }, + { + "text": "Professor Gal is a GREAT professor. All he wants to see is you trying and he helps you along the way. As long as YOU finished the final project and showed you learned something from it, you're guranteed an A. Great class!!! Take his class, totally recommended.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd5" + } + }, + { + "text": "Prof. Gal gets pretty philosophically deep for photo 1. The requirements for the class are pretty lax and its basically up to you to complete them. Only real requirement is final project, unlike alot of profs who give you a bunch of small projects. He may influnce your outlook on the world, or not.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd8" + }, + "professor_name": "Jameel Haque", + "rating": 4.4, + "department": "History department", + "comments": [ + { + "text": "I loved Jameel! He's super funny, engaging, and seems to genuinely care whether or not we learn anything from his course. He's sort of adorable, honestly, and extremely easy to talk to. He's very scatterbrained, though, and the class was the little all over the place, but all of the homework involved the textbook exclusively, so I wasn't worried.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfd9" + } + }, + { + "text": "BEST PROFESSOR HANDS DOWN!!!! extremely easy. no tests, just weekly in class quizzes which are super easy. 2 papers. one short presentation. one final optional. attendance is mandatory. his lectures are so interesting and make you actually want to listen. I hate history but he made this course worth taking.", + "pos": 0.284, + "neu": 0.649, + "neg": 0.066, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfda" + } + }, + { + "text": "one of the best professors iv had. he will make you think about how history is written and from whos perspective. overall he is a eeasy grader just go to class pay attention and do good on the quizes every week. there is a midterm and a final but not that hard. and the final is take home essay", + "pos": 0.096, + "neu": 0.884, + "neg": 0.019, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfdb" + } + }, + { + "text": "He is one of the best professors of City College! I don't really care for history but he really made the class worthwhile and fun. He uses the textbook but really makes you think about history and current events. By far the one of the greatest professors I have ever had. Plus he is hilarious.", + "pos": 0.28, + "neu": 0.693, + "neg": 0.027, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfdc" + } + }, + { + "text": "This class was easy.He gives a quiz every week , but his quizzes are so easy, its a one question that should be answered in less than 1 page. Compared to other professors he is way easier than them+ his final is the easiest I have ever had, to get an A just attend the class and do the HW, the A is guaranteed. Very recommended.(its 3 hour Friday", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfdd" + } + }, + { + "text": "Ok,this professor is not as easy as other students wrote in the previous comments. I hated the way he graded our paper; we did not get any feedback from him about how we did in the paper. Be aware!!!", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfde" + } + }, + { + "text": "Reminds me of Paul Giamati. Awesome", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfdf" + } + }, + { + "text": "I actually looked forward to coming to his class, now that's saying something. Not only is he funny but he actually teaches and you can actually learn! He is without a doubt, one of the best professors city has to offer and I highly recommend him. Take him while you can and I guarantee that you will have no regrets...", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe0" + } + }, + { + "text": "HE IS THE BEST! The class was easy, his quizzes were easy, and he only assigned 2 papers. Instead of a final exam, he only told us to write a 1-2 page paper and emailed it to him.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe1" + } + }, + { + "text": "Extrmly Helpful, Funny, EasyA Highly Recomended", + "pos": 0.588, + "neu": 0.412, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe2" + } + }, + { + "text": "he's kinda adorable and funny. sometimes he gets lost in his thoughts but overall, his notes are good. easy quizes, papers. you've gotta take him, it'll be the easiest A u'll get", + "pos": 0.354, + "neu": 0.607, + "neg": 0.039, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe3" + } + }, + { + "text": "Professor Haque is such an awesome person! His class is extremely easy. The quizzes are very easy as long as you look at the notes and the papers he assigns are also easy. He's really down to earth and knows the material. He doesn't really use the textbooks too much but you will need it for the papers and very rarely for the quizzes.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe4" + } + }, + { + "text": "He's a really cool teacher. I had his class once a week and we started out with a five question quiz about the previous weeks lecture-really simple. No tests and two essays based on movies. MUST TAKE CLASS.", + "pos": 0.064, + "neu": 0.883, + "neg": 0.054, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe5" + } + }, + { + "text": "Funny guy, easy grader!", + "pos": 0.753, + "neu": 0.247, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe8" + }, + "professor_name": "Rose Tomassi", + "rating": 3.8, + "department": "World Humanities department", + "comments": [ + { + "text": "she's a great professor overall, but expect lots of homework.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfe9" + } + }, + { + "text": "Pretty simple. Prof. Tomassi gives you the grade you worked for.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfea" + } + }, + { + "text": "Ms. Tomassi is an exceptional teacher. She goes above and beyond to challenge you as a student to do your very best. Also makes you want to do better for yourself. Makes class extremely interesting and provokes critical thinking . THE BEST. One of my favorite professors of all time !", + "pos": 0.312, + "neu": 0.617, + "neg": 0.071, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfeb" + } + }, + { + "text": "Class isn't easy, but you learn a lot. Very helpful in and out of the classroom. The grade you get is what you deserve.", + "pos": 0.149, + "neu": 0.79, + "neg": 0.061, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfec" + } + }, + { + "text": "Maaan, she's awesome. Very hard class, but boy the things you learn... She's also kind of hot.", + "pos": 0.135, + "neu": 0.794, + "neg": 0.071, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfed" + } + }, + { + "text": "I took Rose for the honors world humanities class. There were a lot of books that were semi difficult to read, but once she explained them they were actually pretty cool. The class is more about literature than about history and cultures. It was kind of like a book club.", + "pos": 0.207, + "neu": 0.763, + "neg": 0.03, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfee" + } + }, + { + "text": "Trust me deff not class you want to take, a lot of work unless your a lit or hum major. Very boring, books are cheap, harsh grader. If your just trying to get WHUM over with as a req deff someone you don't want to take only suck ups get good grades in her class and papers are either hit or miss. Sparknotes wont help so goodluck", + "pos": 0.078, + "neu": 0.733, + "neg": 0.189, + "_id": { + "$oid": "6711d4a4cd60fca157e5bfef" + } + }, + { + "text": "Whatever grade you received, is the grade you earned. She was definitely willing to help the students out however she could. It's quite simple really, you work hard and you'll do well. Yes, the course wasn't particularly easy, however how can you expect to gain anything beneficial from being spoon-fed & babied? This is college, in case you forgot.", + "pos": 0.23, + "neu": 0.71, + "neg": 0.06, + "_id": { + "$oid": "6711d4a4cd60fca157e5bff0" + } + }, + { + "text": "Anyone saying \"GPA killer\" just didn't put in effort. Just complete the reading and pay attention. If you're struggling, she's ALWAYS willing to help. Very passionate about the subject & cares about the students, but if you don't want to read and actually spend time on your assignments this isn't the class for you. I got an A, you can too.", + "pos": 0.092, + "neu": 0.803, + "neg": 0.105, + "_id": { + "$oid": "6711d4a4cd60fca157e5bff1" + } + }, + { + "text": "This class is hard. But, shes interesting, she engages the class, and students participate. There's a lot of reading, and you cant get away with Sparknotes with this prof. IF YOU hate humanities but have to take WHUM101, dont take with her. IF YOU like lit and want to learn read and write well, this prof is for you! Tough grader-expect to work", + "pos": 0.179, + "neu": 0.717, + "neg": 0.104, + "_id": { + "$oid": "6711d4a4cd60fca157e5bff2" + } + }, + { + "text": "She is really good with letting you participate and everything. She loves humanities and fails to understand that students do not. She was really good until the final. she gives ALOT of stuff to do that is not even required for anyone's major. A harsh as a grader !!! could kill your GPA. Beware.", + "pos": 0.145, + "neu": 0.689, + "neg": 0.166, + "_id": { + "$oid": "6711d4a4cd60fca157e5bff3" + } + }, + { + "text": "She is really good with letting you participate and everything. She loves humanities and fails to understand that other people do not. She was really good until the final. she gives ALOT of stuff to do that is not even required for anyone's major. she is good as a person but really harsh as a grader !!! could kill your GPA. Beware.", + "pos": 0.112, + "neu": 0.712, + "neg": 0.176, + "_id": { + "$oid": "6711d4a4cd60fca157e5bff4" + } + }, + { + "text": "PLEASE AVOID this professor by any means. For an intro class she treats and grades it like a 3000 level class. She KILLED my gpa. Dont take her its not worth it. definitely not an easy class", + "pos": 0.111, + "neu": 0.6, + "neg": 0.29, + "_id": { + "$oid": "6711d4a4cd60fca157e5bff5" + } + }, + { + "text": "One of the worst professors ever!!! GPA killer. majority of the class got C's. for freshman class grades as if a 300/400 classes. very hard i recommended u avoid at all costssss!!!!", + "pos": 0.049, + "neu": 0.635, + "neg": 0.317, + "_id": { + "$oid": "6711d4a4cd60fca157e5bff6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a5cd60fca157e5bff8" + }, + "professor_name": "Lawrence Bank", + "rating": 4.7, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He is a good professor and teaches well. Wants his students to do well and is open to ask questions. Do not try to cheat in this class as he has two proctors walking around at all times in addition to himself. Study hard and attend lectures and dont fall behind the material. Statics is hard and many students fail, but this professor wants u to pass", + "pos": 0.095, + "neu": 0.84, + "neg": 0.065, + "_id": { + "$oid": "6711d4a5cd60fca157e5bff9" + } + }, + { + "text": "Professor Bank is one of the most respected, inspirational, and kind professor you will ever have the pleasure of meeting. He is very committed to students learning the fundamentals in statics. You will not only gain engineering knowledge but life lessons as well. You get the grade you work for. Best CE Professor!!!", + "pos": 0.3, + "neu": 0.672, + "neg": 0.028, + "_id": { + "$oid": "6711d4a5cd60fca157e5bffa" + } + }, + { + "text": "Professor Bank is one of the most caring and well-respected professors at CCNY. He designs his lectures to not only teach you the skills necessary for this course, but also how to apply them to seemingly infinite kinds of problems. The course could be very challenging at times, but you will definitely get the grade you deserve.", + "pos": 0.126, + "neu": 0.819, + "neg": 0.055, + "_id": { + "$oid": "6711d4a5cd60fca157e5bffb" + } + }, + { + "text": "An amazing professor that manages to make an otherwise difficult course a breeze. He offers THE best explanations of the most fundamental concepts of structural engineering, all while saturating the class with his passion for both teaching and engineering. One of the rare professors who are truly inspirational educators as well.", + "pos": 0.293, + "neu": 0.669, + "neg": 0.038, + "_id": { + "$oid": "6711d4a5cd60fca157e5bffc" + } + }, + { + "text": "I have learned so much from this professor than I thought I would. as long as you understand the homeworks and the practice quizzes there is no doubt you will ace his exams. He allows a cheat sheet during class which is even better and doesnt put anything that he hasnt gone over in class. overall amazing professor.", + "pos": 0.134, + "neu": 0.821, + "neg": 0.046, + "_id": { + "$oid": "6711d4a5cd60fca157e5bffd" + } + }, + { + "text": "Throughout your curriculum, you will find professors that inspire you and those that discourage you. Professor Bank not only inspires his students but promotes a sense of urgency and love for the material. Be ready to work, however! Also, be ready to receive the grade that you worked for. EXCELLENT PROFESSOR!", + "pos": 0.344, + "neu": 0.605, + "neg": 0.051, + "_id": { + "$oid": "6711d4a5cd60fca157e5bffe" + } + }, + { + "text": "Great professor, amazing lecturer, overall would absolutely take him again.", + "pos": 0.497, + "neu": 0.503, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5bfff" + } + }, + { + "text": "Professor Bank's is a great professor. He really cares about his students--sending periodical emails to tell you how you are doing. He also responds quickly to emails. His tests are pretty straight-forward ( a few short answers from his slides and 3 questions from the textbook questions ). He isn't difficult at all. Try to be at least above a 60.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c000" + } + }, + { + "text": "Lectures are interesting and helpful at the same time. He is misleading with grading though. He will say if you manage above 80's on exams that he would give you an A and end up giving you a B. For the most part he is fast with emails and available in his office hours. Overall I cant complain much, regardless he is better than other profs for 231!", + "pos": 0.169, + "neu": 0.796, + "neg": 0.035, + "_id": { + "$oid": "6711d4a5cd60fca157e5c001" + } + }, + { + "text": "To be a good engineer, you need to have a strong foundation in basics. And Professor bank does just that. He is very fair in his grading, makes sure that you know exactly what you need to know. couldn't ask for a better statics professor", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c002" + } + }, + { + "text": "Prof. Bank is one of the best professors I've taken.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c003" + } + }, + { + "text": "He is an amazing professor that truly cares about his students. He wants everyone to pass so he tries his best to make sure everyone understands and does well. He can always be reached outside of class via email. He responds extremely fast with clarity and politeness. His exams are like his HW's but there are some theory questions on definitions", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c004" + } + }, + { + "text": "If you plan to be a good engineer, He is one of the best professor you should have in your curriculum.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c005" + } + }, + { + "text": "Professor Bank is one of the best instructors I have ever had. I love how he would send us technical papers from research on a topic he explained. If you take him you should be able to learn and understand the material not only in the theoretical sense but how it is applied in engineering.", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c006" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a5cd60fca157e5c008" + }, + "professor_name": "Carolee Bongiorno", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "She is the sweetest thing! She expects attendance every day and DO NOT BE LATE!!!! Other than that, smooth sailing. She expects everyone to participate and some readings are required. Above all, I enjoyed our class so much and when it ended she threw a celebration for us. She genuinely loves her students and I hope our paths cross again. 10/10!!", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c009" + } + }, + { + "text": "Professor Bongiorno is truly the best professor I have ever had!!! She is a sweetheart and a ray of sunshine. She had helped me endlessly!! She goes the extra mile for her students. Bongiorno is one of those rare people that you meet and are unforgettable and by far the best professor ever! You will remember her forever as the best professor ever!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c00a" + } + }, + { + "text": "Professor Bongiorno is so sweet and really cares about her students. Make sure you do the readings and participate and you'll pass. She's older, so if she says she hasn't gotten your assignments just resend them and she'll give you your grade. She's lenient and gives you time to complete assignments. Great professor!!!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c00b" + } + }, + { + "text": "This professor Is so good at engaging students. Do not skip this class, she calls on everybody. Participation matters, but because I was so engaged and interested in the readings, I looked forward to speaking when she called on me. The homework assignments are so easy and my other classmates were engaged as well. A lot of insightful conversations.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c00c" + } + }, + { + "text": "She brightened my semester with this class! I am not even an education major and took this class as an elective never expecting it to be so amazing!!! She is so caring and attentive. Ive never participated in no other class as I do in this one. You can walk in the class moody and have this for sure she will make you smile and want to participate.", + "pos": 0.254, + "neu": 0.717, + "neg": 0.03, + "_id": { + "$oid": "6711d4a5cd60fca157e5c00d" + } + }, + { + "text": "Carolee Bongiorno goes beyond her role as a professor, she inspires greatness, and prepares you for being the best educator you can be. Her class are informative, valuable and memorable. Everything she taught in class I applied as a teacher.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c00e" + } + }, + { + "text": "Professor Bongiorno is one of the best professor's I've ever taken at CCNY. She is caring and kind towards her students. She gives great feedback.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c00f" + } + }, + { + "text": "She is very caring, super helpful, and very knowledgeable. She is always more than willing to help in any way that she can. She is very strict with attendance. DO NOT come in late or miss class. Be prepared to complete all four tasks for the edTPA. Be ware its A LOT of work. You need to be very responsible and manage your time properly.", + "pos": 0.231, + "neu": 0.748, + "neg": 0.021, + "_id": { + "$oid": "6711d4a5cd60fca157e5c010" + } + }, + { + "text": "She is an excellent person and professor. She is always there for her students.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c011" + } + }, + { + "text": "Professor Bongiorno is a wonderful professor. I learned so many different strategies that I can use in my classroom. she is available outside her class to give us support and genuinely cares about her students.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c012" + } + }, + { + "text": "attendance is mandatory!!!!!! which is annoying and makes u participate alot. less homework she gives out. final is a lesson plan and alot of articles to read then the next day we talk aout in the class. if ur not participating ur grade goes down and she calls u out. easy AAAA", + "pos": 0.094, + "neu": 0.859, + "neg": 0.047, + "_id": { + "$oid": "6711d4a5cd60fca157e5c013" + } + }, + { + "text": "I love her!! An amazing professor with a big heart. She genuinely cares about you and your success in her class. Even if you're not an education major, this is a great class to serve as an elective because it's just so fun!", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c014" + } + }, + { + "text": "Not an education major but I took this class thinking it would be fun and I never expected it to be this amazing! The teacher is amazing and class is interesting every time. She truly cares about every student. If you can take this class then do it!!!", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c015" + } + }, + { + "text": "She is a great professor. Enjoyed open conversations about topics you don't usually talk about in certain classroom settings. Topics such as race, gender, culture, and more. She prepares you to teach your future students about these topics by using an anti-bias curriculum. She cares about her students. Complete your short reading response papers.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d4a5cd60fca157e5c016" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a6cd60fca157e5c018" + }, + "professor_name": "Elvine Andjembe", + "rating": 3.1, + "department": "Psychology department", + "comments": [ + { + "text": "She is a nice person but her work is alot! She does give good lectures but the assignments were too much! Her grading on exams is tough and takes alot of points! If you want to pass just study really hard and pray!", + "pos": 0.223, + "neu": 0.705, + "neg": 0.072, + "_id": { + "$oid": "6711d4a6cd60fca157e5c019" + } + }, + { + "text": "Professor Elvibe is very kind and caring towards her students. She wants everyone to succeed in the course, and is willing to help you as long as you put in the effort to do well. Lots of quizzes and homework assignments, but they all are based off of the lectures. 4 exams, one big department final at the end. Show up for lectures!!", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c01a" + } + }, + { + "text": "If you care about your GPA, don't do it.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c01b" + } + }, + { + "text": "I honestly love Professor Elvine! I dont really enjoy anything that has to do with math, but she made statistics real fun! I would definitely take her, shes very open minded and understanding. Loved the way she taught class :) But do study and pay attention !", + "pos": 0.349, + "neu": 0.597, + "neg": 0.054, + "_id": { + "$oid": "6711d4a6cd60fca157e5c01c" + } + }, + { + "text": "She makes you work a lot for your grade. She answers emails. She is not clear in her lectures which includes the pictures from the textbooks and long lectures and tangents. She holds mediocre knowledge at best. She is a nice person inside and outside of class. Her style of teaching psychology is centered around lectures and heavy exams.", + "pos": 0.107, + "neu": 0.859, + "neg": 0.034, + "_id": { + "$oid": "6711d4a6cd60fca157e5c01d" + } + }, + { + "text": "Dont do it to your GPA. Shes the worst Stats teacher at City College. She reads a makeshift PowerPoint for two and a half hours, and gets angry if anyone asks for explanations of anything. She stages the class as a competition. Exams have trick questions to mess you up even if you know the formulas. She enjoys watching students struggle and fail.", + "pos": 0.043, + "neu": 0.735, + "neg": 0.222, + "_id": { + "$oid": "6711d4a6cd60fca157e5c01e" + } + }, + { + "text": "Let's be honest, she does have to run through things quickly, and it's alot to memorize in the long class that we have (it's 4 hours), 4 days a week. She does try to liven up the class and make us laugh, and she does care about how we do in class. Do your hw, 3 tests, and a paper plus EC. She cared about how her students do so work for your grade!", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c01f" + } + }, + { + "text": "If u are not willing to put in the work, then this class is not for u. Theres 4 exams (1 dropped), HW on Aplia, Quizzes every week, Dept final (20%). Attend class, participate, do HW, go to tutoring (+5 points on exams)& u should be fine. Professor Elvine is reachable and she cares about her students. Remember, its a 4 crd class & stats isnt easy!", + "pos": 0.071, + "neu": 0.895, + "neg": 0.034, + "_id": { + "$oid": "6711d4a6cd60fca157e5c020" + } + }, + { + "text": "She's a great professor! You have to work for your grade tho! overall the class is fun if you're interested in the subject.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c021" + } + }, + { + "text": "Her class is easy as long as you study the textbook! Tests are multiple choice and she gives extra credit! (Recommended )", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c022" + } + }, + { + "text": "I should teach the class, she reads from the slides, she used the textbook's powerpoints and I dont think she knows what she is talking about. I dont even think she makes the exams. She takes forever to upload the class slides and review sheets but shes quick to upload the grades.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c023" + } + }, + { + "text": "The tests arent consistent, the first one is super easy and they just get harder and harder.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c024" + } + }, + { + "text": "This teacher went on vacation over the weekend before an exam and completely forgot to upload the review sheet for the exam. The exam was out FINAL EXAM and it covered 5 chapters and she uploads the review sheet on Sunday night when the test is on Tuesday. If that isnt careless... idk what is", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c025" + } + }, + { + "text": "Not the best professor, she's slow to upload class slides and review sheets. She reads directly from the slides. She doesn't read the term paper properly so she will take off points for information that she claims isn't in the paper. She's not one to compromise to what she says is final. have fun!", + "pos": 0.056, + "neu": 0.882, + "neg": 0.062, + "_id": { + "$oid": "6711d4a6cd60fca157e5c026" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a6cd60fca157e5c028" + }, + "professor_name": "Serhiy Metenko", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "HES A GREAT PROFESSOR I JUST TOOK HIM FOR WHUM AND HES VERY LAID BACK AND KIND. ONLY DOWNFALL ABOUT HIM IS THAT HE HAS THE TENDENCY TO GRADE HARSHLY ON PAPERS INCLUDING WHEN YOUR ABSENT HE TAKES 25 POINTS OFF YOUR GRADE EACH TIME YOUR ABSENT SO MAKE SURE YOU ATTEND ALL HIS CLASSES OR YOUR GRADE WILL BE DROP.", + "pos": 0.178, + "neu": 0.783, + "neg": 0.039, + "_id": { + "$oid": "6711d4a6cd60fca157e5c029" + } + }, + { + "text": "Professor Metenko is really funny and gives great feedback! He is accessible outside of class and is willing to help you whenever you need it. He clearly outlines and explains everything that you will be graded on in your essays. Make sure not to procrastinate on some of the longer essays though. I highly recommend him!", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c02a" + } + }, + { + "text": "This dude is pretty boring and thinks his jokes are funny but overall a nice guy. He kinda critiques your papers too much on little things but other than that the class was an easy A.", + "pos": 0.293, + "neu": 0.67, + "neg": 0.037, + "_id": { + "$oid": "6711d4a6cd60fca157e5c02b" + } + }, + { + "text": "He's a good prof & very nice. He's flexible with revisions and is clear on what needs to be done. Gives great feedback and the papers are ok. One group assignment, puts up grades on BB. He's pretty funny but his lectures are a bit boring. 2 papers + lab report & some reading responses. Few quizzes + no tests + no final & he's chill with attendance.", + "pos": 0.174, + "neu": 0.72, + "neg": 0.106, + "_id": { + "$oid": "6711d4a6cd60fca157e5c02c" + } + }, + { + "text": "Very great instructor. While he is a tough grader, there are ample revisions for everything. Just do the revisions and your grade with be fine. He also has good humor and shows enthusiasm while teaching. There is a lot of group work and assignment involved in this course. Just do everything and the revisions and you should be fine.", + "pos": 0.229, + "neu": 0.749, + "neg": 0.022, + "_id": { + "$oid": "6711d4a6cd60fca157e5c02d" + } + }, + { + "text": "One of the toughest grader I have ever seen. Gives a lot of homework and gives Cs a lot. Be aware!", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d4a6cd60fca157e5c02e" + } + }, + { + "text": "Professor Metenko is great and he cares about his students. Though he is awkward at times, he breaks down every essay during lecture and he gives plenty of time to make up your work and he likes memes! His lectures can get a little boring and he is sometimes disorganized but wants the best for students overall. Good if you want a GPA raise :)", + "pos": 0.269, + "neu": 0.677, + "neg": 0.054, + "_id": { + "$oid": "6711d4a6cd60fca157e5c02f" + } + }, + { + "text": "Professor Serhiy is literally the best professor ive taken in ccny! He lets you revise all of your assignments and breaks everything down for you. The assignments are fairly easy and he gives many chances to improve on your writing. DEFINETELY TAKE HIM IF YOU WANT TO RAISE YOUR GPA", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c030" + } + }, + { + "text": "One of the best professors I took as a freshmen in college. Gives a lot of chances to improve your assignments.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c031" + } + }, + { + "text": "He grades very fairly. Pay attention to the readings and lecture that he gives in class to format your essays. You should be fine from there. If you need help, he's only an email away! His humor is nice and makes the class a little more enjoyful.", + "pos": 0.182, + "neu": 0.787, + "neg": 0.031, + "_id": { + "$oid": "6711d4a6cd60fca157e5c032" + } + }, + { + "text": "Professor Metenko is definitely the best professor in the English dept. He really cares about their students growth as writers and he also gives numerous opportunities to students to do good in his class", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c033" + } + }, + { + "text": "Definitely a good teacher who genuinely cares about the academic growth of his students.", + "pos": 0.528, + "neu": 0.472, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c034" + } + }, + { + "text": "Serhiy was a good professor. He genuinely cared about the academic growth of his students and gave good feedback on essays. As long as you attend his class and put effort forth in your work, you should pass the class.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d4a6cd60fca157e5c035" + } + }, + { + "text": "Overall, Serhiy is a good professor. He gives ample opportunities to do well in his class and to improve an undesirable grade. He genuinely cares about the growth of his students during his class and he is not an unreasonable grader.", + "pos": 0.304, + "neu": 0.642, + "neg": 0.055, + "_id": { + "$oid": "6711d4a6cd60fca157e5c036" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a7cd60fca157e5c038" + }, + "professor_name": "James Armstrong", + "rating": 4.6, + "department": "Theater department", + "comments": [ + { + "text": "Prof. Armstrong is probably my top 5 teacher in CCNY, funny, and considerate. Just be punctual and study your material.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c039" + } + }, + { + "text": "DO NOT TRUST THE OTHER REVIEWS. This professor is genuinley awful. There is a quiz nearly every class. If you are late by FIVE MINUTES you missed the quiz and have to make it up. His grading is attrocious and makes no sense. Even if you make the SMALLEST mistake, your grade will drop by an entire letter. He provides a rubric but does not follow it.", + "pos": 0.0, + "neu": 0.852, + "neg": 0.148, + "_id": { + "$oid": "6711d4a7cd60fca157e5c03a" + } + }, + { + "text": "I had him last semester and he was an amazing professor! He's very caring and his workload isn't intense, only 3 papers, the rest of the assignments are Q&As and short quizzes. He's funny, too, and his lectures were never boring. I'm not even a theatre major either. Take him! You won't regret it! You'll love his class.", + "pos": 0.273, + "neu": 0.71, + "neg": 0.017, + "_id": { + "$oid": "6711d4a7cd60fca157e5c03b" + } + }, + { + "text": "As a person, he is very caring for his students. As a professor, he gives lots of papers to read. You will work for the A grade, nothing got easy.", + "pos": 0.103, + "neu": 0.826, + "neg": 0.071, + "_id": { + "$oid": "6711d4a7cd60fca157e5c03c" + } + }, + { + "text": "Too many readings, but a nice professor.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c03d" + } + }, + { + "text": "Really nice dude and very entertaining lectures. If you genuinely enjoy reading or theatre this is a great class to take. HOWEVER if your like me and don't fit either of those categories I would take caution. The work load is reasonable and not difficult if you keep up with the readings. Just don't go into it expecting a free A.", + "pos": 0.281, + "neu": 0.692, + "neg": 0.028, + "_id": { + "$oid": "6711d4a7cd60fca157e5c03e" + } + }, + { + "text": "Professor Armstrong keeps it lighthearted and gives you the most important info on a play where you cant get lost. He loves what he does and it was great taking his class!", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c03f" + } + }, + { + "text": "Many readings to do in the class and although you may be inclined to just read a summary online, it won't help you much when you eventually have to write papers regarding them. So, if you do the readings and show up to class, no reason you shouldn't get an A. Sprinkles in bits of comedy in his lessons and overall, a really great professor!", + "pos": 0.099, + "neu": 0.84, + "neg": 0.061, + "_id": { + "$oid": "6711d4a7cd60fca157e5c040" + } + }, + { + "text": "Take him! It's so easy to pass, and I learned a lot about theater. He is very nice and understanding. There is homeowork every class but it's literally just reading and answering one word questions", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c041" + } + }, + { + "text": "Literally the most amazing person ever. I have no interest in theater but i legit enjoyed his class. I woulda given him a higher rating but thats not allowed \ufffd\ufffd", + "pos": 0.196, + "neu": 0.756, + "neg": 0.049, + "_id": { + "$oid": "6711d4a7cd60fca157e5c042" + } + }, + { + "text": "He is super nice. He knows a lot about theater. take him . it is an easy A", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c043" + } + }, + { + "text": "He is super nice and gives many chances to do extra credit. There are weekly quizzes but they are 5 fill in the blank questions with all of the answer choices at the bottom, so as long as you read, you are okay. The class itself is a little boring (not his fault) but he does his best to make it fun and entertaining !", + "pos": 0.314, + "neu": 0.656, + "neg": 0.03, + "_id": { + "$oid": "6711d4a7cd60fca157e5c044" + } + }, + { + "text": "Excellent! All you have to do is read the papers he gives you (packets of 8-10 pages each) to help you study for his once-a-week quizzes, which are easy and are definitions with word banks. Two 3 page papers where you write your own versions of plays. The group project is acting out a play scene. The final is mainly definitions too. Easy A!", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c045" + } + }, + { + "text": "He is the BEST!!! I liked theater because of him. His class was fun and enjoyable.", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c046" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a7cd60fca157e5c048" + }, + "professor_name": "Carole Berger", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "she is a nice prof. you will learn alot by taking her class but besure to hand in all the assignments on time..she has this small book with her and she marks each and everythng and tend to remember all the things abt her students. not an easy A but not a hard one either", + "pos": 0.124, + "neu": 0.826, + "neg": 0.05, + "_id": { + "$oid": "6711d4a7cd60fca157e5c049" + } + }, + { + "text": "this professor is very nice and helpful", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c04a" + } + }, + { + "text": "i DON'T KNOW what 2 say about her. She is fake to me and I don't know but I feel that she show you who she is not. Her lectures are boring and almost force students to talk in class. Hard grader and don't care if you don't write well. A lot of work and writing. Don't take her if you can.", + "pos": 0.0, + "neu": 0.823, + "neg": 0.177, + "_id": { + "$oid": "6711d4a7cd60fca157e5c04b" + } + }, + { + "text": "I agree on the grading and on the lots of material. But regardless of that I did learn a lot and think she was a good professor. I wouldn't be doing good if she had not been my teacher.", + "pos": 0.125, + "neu": 0.805, + "neg": 0.07, + "_id": { + "$oid": "6711d4a7cd60fca157e5c04c" + } + }, + { + "text": "She is a real Prof. She listens to her students and always willing to help you. She always gives useful handouts to her students I recommend Students to take her class.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d4a7cd60fca157e5c04d" + } + }, + { + "text": "not hot at all! she was gonna fail me although i did pretty well on the final exam! old, should retire soon, otherwise everyone in her class will go crazy! also, gives lots of homework to do. she lowers your mark if u hand them in late! if you are an esl student, do not ever take her, try somebody else so that you can have a life...", + "pos": 0.122, + "neu": 0.784, + "neg": 0.094, + "_id": { + "$oid": "6711d4a7cd60fca157e5c04e" + } + }, + { + "text": "She is kind. But she gives lots of work to do, and not very easy to get good grade.", + "pos": 0.237, + "neu": 0.628, + "neg": 0.135, + "_id": { + "$oid": "6711d4a7cd60fca157e5c04f" + } + }, + { + "text": "She is kind. But she gives lots of work to do, and not very easy to get good grade.", + "pos": 0.237, + "neu": 0.628, + "neg": 0.135, + "_id": { + "$oid": "6711d4a7cd60fca157e5c050" + } + }, + { + "text": "do ever take her course, if you do not want to waste your time and money.", + "pos": 0.133, + "neu": 0.798, + "neg": 0.07, + "_id": { + "$oid": "6711d4a7cd60fca157e5c051" + } + }, + { + "text": "she is a good teacher, and vey helpful. The only problem is that she give a lot of homework", + "pos": 0.234, + "neu": 0.656, + "neg": 0.111, + "_id": { + "$oid": "6711d4a7cd60fca157e5c052" + } + }, + { + "text": "She is kind, teach well. A lot of homeworks in her courses, but you do not have to hand in them at due time. If you take her, be sure that you will learn important things", + "pos": 0.205, + "neu": 0.715, + "neg": 0.079, + "_id": { + "$oid": "6711d4a7cd60fca157e5c053" + } + }, + { + "text": "This prof. teaches ESL only because SHE IS A NATIVE SPEAKER. That's it. She doesn't know how to and what to teach. She's emotional and easy to get mad. Do not take her for your English and grade. However, she is (only) good at teaching how to pass the ACT. You will feel like nightmare in the class.", + "pos": 0.15, + "neu": 0.802, + "neg": 0.048, + "_id": { + "$oid": "6711d4a7cd60fca157e5c054" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a7cd60fca157e5c055" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a7cd60fca157e5c056" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a8cd60fca157e5c058" + }, + "professor_name": "Harriet Senie", + "rating": 3.1, + "department": "Art History department", + "comments": [ + { + "text": "Professor Senie is experienced with the subject matter of the courses she teaches, especially museology and public art. She wants you to think and write critically. She replies promptly via email and she is very helpful during her office hours. Follow instructions and take her criticism into consideration and her class will be a breeze.", + "pos": 0.071, + "neu": 0.88, + "neg": 0.049, + "_id": { + "$oid": "6711d4a8cd60fca157e5c059" + } + }, + { + "text": "Professor Senie is excellent. The class included an average amount of work with very interesting readings, field trips and discussions. Highly recommended!", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c05a" + } + }, + { + "text": "Love this professor! She is extremely helpful and supportive. A tough grader and a great, great teacher!!", + "pos": 0.601, + "neu": 0.351, + "neg": 0.048, + "_id": { + "$oid": "6711d4a8cd60fca157e5c05b" + } + }, + { + "text": "People complain about her, but I don't know why. This class is required, so I appreciated how straightforward it was: learn about a concept, experience it in person, then a short reflection (or creative project). The cultural events journal was a fun aspect of the class! Very nice, pretty easy A.", + "pos": 0.367, + "neu": 0.608, + "neg": 0.024, + "_id": { + "$oid": "6711d4a8cd60fca157e5c05c" + } + }, + { + "text": "This class is extremely easy. Though it is not as fun as the other CHC 101 class taught by Judell, her class was still pretty good.", + "pos": 0.273, + "neu": 0.647, + "neg": 0.079, + "_id": { + "$oid": "6711d4a8cd60fca157e5c05d" + } + }, + { + "text": "You will def. notice public art after taking this class. She is nice and the class is fairly easy but boring at times.", + "pos": 0.144, + "neu": 0.746, + "neg": 0.11, + "_id": { + "$oid": "6711d4a8cd60fca157e5c05e" + } + }, + { + "text": "i wish that i could say something nice about professor senie. but, honestly, she is full of herself, unhelpful and makes you read a bunch of readings that we never even discuss. what's more: her tone is straight up AWFUL. she verges on flat out mean sometimes or like she is annoyed she actually has to talk to you.", + "pos": 0.171, + "neu": 0.713, + "neg": 0.117, + "_id": { + "$oid": "6711d4a8cd60fca157e5c05f" + } + }, + { + "text": "Her MA in Museum Studies/Art History program is a demanding waste of dedication by students. (How many actually finish?) Critical Marxist outlook but no consideration of alternatives.Total hypocrisy re. status quo when it comes to supplying museums/galleries w/ interns. AVOID this MA program!", + "pos": 0.0, + "neu": 0.76, + "neg": 0.24, + "_id": { + "$oid": "6711d4a8cd60fca157e5c060" + } + }, + { + "text": "As mentioned, supposed to be a relatively easy and enjoyable class, she's a bit to heavy on the writing assignments for a CHC. Very well connected in the fine art community, but unfortunately little focus on performance art. I expected much more out of the class.", + "pos": 0.137, + "neu": 0.802, + "neg": 0.061, + "_id": { + "$oid": "6711d4a8cd60fca157e5c061" + } + }, + { + "text": "She knows her stuff, and is very involved in the art world (esp. public art), but the class was exceeding boring and not particularly involving. Especially compared to what Judell's class was doing. We learned about public art almost every week, whereas they were exposed to many different aspects of NYC art (and he shares his free tix with them!)", + "pos": 0.111, + "neu": 0.824, + "neg": 0.065, + "_id": { + "$oid": "6711d4a8cd60fca157e5c062" + } + }, + { + "text": "This class was supposed to be enjoyable for us, but really turned out to be a burden. She just killed it by making us write a million papers and research projects. I learnt stuff but not worth it. It wasted a lot of time. She's a harsh grader. Take Professor Judel, you will actually have fun in class.", + "pos": 0.082, + "neu": 0.657, + "neg": 0.261, + "_id": { + "$oid": "6711d4a8cd60fca157e5c063" + } + }, + { + "text": "This was an outstanding class overall. I highly recommend it to any grad student who is interested in museums and willing to work hard. Slackers beware!", + "pos": 0.295, + "neu": 0.663, + "neg": 0.042, + "_id": { + "$oid": "6711d4a8cd60fca157e5c064" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a8cd60fca157e5c065" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4a8cd60fca157e5c066" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a8cd60fca157e5c068" + }, + "professor_name": "Jan Valle", + "rating": 4.8, + "department": "Education department", + "comments": [ + { + "text": "To understand what neurodiversity is, and the many ways that people are \"othered\" in our society, read the works of Dr. Jan W. Valle and do your best to take a course/s with her. Students need to learn how individuals \"become\" or are labeled as disabled by societal structures based on race, ability, language, gender, socio-economic status, gender", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c069" + } + }, + { + "text": "I cant say enough good things about this professor. Class wasn't boring at all. It was a discussion. The class is about accessibility. Its incredibly inspiring and interesting. Prof V tailors her class to make sure you succeed. It's all about getting it done the best way we know how. And she is SUCH a joy. Prof V if you ever read this you are LOVED", + "pos": 0.306, + "neu": 0.666, + "neg": 0.028, + "_id": { + "$oid": "6711d4a8cd60fca157e5c06a" + } + }, + { + "text": "Prof. Valle is deeply invested in students and the profession of teaching. The course content is relevant and useful. A year later, I still use the textbooks! The course is thoughtfully organized and she is responsive to student needs and feedback. Her classes are centered on student learning and growth. I left feeling energized about teaching.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c06b" + } + }, + { + "text": "Professor Valle is easily one of the best professors out there. Her feedback is top notch and incredibly useful. Her subject matter expertise is very impressive. I would strongly recommend taking any class with her. You will not be disappointed.", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c06c" + } + }, + { + "text": "Jan Valle is by far my favorite EDCE professor at City. I could go on and on on why she is just the best. She cares for each of her students as individuals. Shes easy to talk to and cares about you and your needs. She is extremely knowledgeable on disabilty and inclusive practices. She is inspiring and loving. You will WANT to be a better teacher", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c06d" + } + }, + { + "text": "She has a fun and caring way about her that I appreciated. Her attention to detail may seem monotonous and she does assign busy work both in and out of class, but she is very helpful when it comes to your writing and analysis in the one or two papers she gives. She is extremely approachable outside of class, and is a very fair grader to boot.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c06e" + } + }, + { + "text": "Although she may give lots of reading, she is a great Professor. She will give you great feedback in your writing and if she can she will help you with your writing. Does give a bit of extension for assignments. Overall great Professor but lots of work.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c06f" + } + }, + { + "text": "She is one of the most inspirational teachers. I have never felt more understood as a student or a person than in her class. She makes every student feel special.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c070" + } + }, + { + "text": "She is an absolute sweetheart. Amazing professor, very kind, understanding, and knowledgeable. Her love for teaching is insane - she is a master at it. You will LOVE her class. One thing, if you are absent more than twice, you're in trouble. BE ON TIME.", + "pos": 0.325, + "neu": 0.591, + "neg": 0.084, + "_id": { + "$oid": "6711d4a8cd60fca157e5c071" + } + }, + { + "text": "You cannot find better than Prof. Valle in Childhood Ed. She is there for her students. she is adorable. She understand her students and knows her stuff. You will fall in love with especial education when taking her class. You learn a lot. I think there is NO student that does not LOVE her! If I had a chance i would take another class with her.", + "pos": 0.123, + "neu": 0.76, + "neg": 0.117, + "_id": { + "$oid": "6711d4a8cd60fca157e5c072" + } + }, + { + "text": "I took her course almost by mistake when I had no special interest in Disability Studies. I signed up for another course with her and now consider myself a knowledgable Disabilities advocate. She really knows her subject. She's fun too,", + "pos": 0.071, + "neu": 0.78, + "neg": 0.149, + "_id": { + "$oid": "6711d4a8cd60fca157e5c073" + } + }, + { + "text": "Prof. Valle is great! She really tries to help her students out and her class relates to real life situations. I would definitely take another class with her if I have the chance.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c074" + } + }, + { + "text": "Jan is wonderful, and her work si beyond poignant. Her classes are interesting, fun and sophisticated. She is truly a gem at City College and for that demands respect. Beyond anything else she is real with studenst, entertaining and fantastically suited as", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c075" + } + }, + { + "text": "great!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4a8cd60fca157e5c076" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a9cd60fca157e5c078" + }, + "professor_name": "Millicent Roth", + "rating": 1.8, + "department": "Science department", + "comments": [ + { + "text": "You're better off doing pre- med at suny than this lady making you feel worthless. I got acceptance to multiple different sunys. I only recommend CCNY to take classes at affordable price and then transfer to a better school that sees potential in you. Any student that feels hurt, you're better than City College. Advising @ CCNY is a nightmare", + "pos": 0.193, + "neu": 0.721, + "neg": 0.086, + "_id": { + "$oid": "6711d4a9cd60fca157e5c079" + } + }, + { + "text": "Horrible", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d4a9cd60fca157e5c07a" + } + }, + { + "text": "Called saying she wasn't going to be available time of my appt & shell cal when she gets in, NEVER did. I waited HOURS. I call her biggest attitude,told me to wait bcs she was busy. My appt was at 10 am I called at 1pm.Very dismissive and BULLY-like.Advising was to remove a hold had to call 2x after the meeting because she never did.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4a9cd60fca157e5c07b" + } + }, + { + "text": "she is so rude . she is so deceivable, so don't believe her. she like to disrespect student's thoughts .", + "pos": 0.096, + "neu": 0.65, + "neg": 0.255, + "_id": { + "$oid": "6711d4a9cd60fca157e5c07c" + } + }, + { + "text": "Dr. Roth is the most egotistical, rude, and discouraging person in the pre-med department. This woman has zero compassion and zero patience as an educator. For three straight years she told me I would never make it, yet here I am with 11 med school acceptances and scholarships.", + "pos": 0.131, + "neu": 0.724, + "neg": 0.144, + "_id": { + "$oid": "6711d4a9cd60fca157e5c07d" + } + }, + { + "text": "This lady is very passive-aggressive. Stay away from her. I would not recommend her as a professor, advisor, friend, or anything. FUTILE", + "pos": 0.115, + "neu": 0.68, + "neg": 0.206, + "_id": { + "$oid": "6711d4a9cd60fca157e5c07e" + } + }, + { + "text": "Dr. Roth is the best person I have met in College. While many at the pre-med office doubted me, she saw my potential and fought for me. She is very direct, and if you don't have what it takes or don't seem serious she will let you know. I would not be where I am today without her support.", + "pos": 0.082, + "neu": 0.817, + "neg": 0.101, + "_id": { + "$oid": "6711d4a9cd60fca157e5c07f" + } + }, + { + "text": "Skips/cancels appointments w/o explanation; very indirect. Shows apathy towards sacrificed time/money/struggle thus far. She is paid to kick students out of the science dept., not further their growth. Upon the last visit, no referral to the next adviser. Exceptionally demoralizing. Get the Dean involved if you care about your future! #Karen", + "pos": 0.056, + "neu": 0.82, + "neg": 0.125, + "_id": { + "$oid": "6711d4a9cd60fca157e5c080" + } + }, + { + "text": "This lady is very discouraging. Be careful if you get chosen to be advised by her, she will tear you down. Very rude.", + "pos": 0.066, + "neu": 0.705, + "neg": 0.229, + "_id": { + "$oid": "6711d4a9cd60fca157e5c081" + } + }, + { + "text": "Was not helpful in anyway. Even after my graduation.", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d4a9cd60fca157e5c082" + } + }, + { + "text": "She is rude and has absolutely no compassion or sense of dignity. You should never talk to her for advice and, if you do, make sure you are willing to stand your ground.", + "pos": 0.157, + "neu": 0.699, + "neg": 0.144, + "_id": { + "$oid": "6711d4a9cd60fca157e5c083" + } + }, + { + "text": "she is extremely helpful and straightforward aldy, she will not misguide you like other advisors, she has answers to all you queries, she is arrogant and sounds rude but atleast will never misguide you", + "pos": 0.054, + "neu": 0.796, + "neg": 0.15, + "_id": { + "$oid": "6711d4a9cd60fca157e5c084" + } + }, + { + "text": "One of the more questionable advisors (and she's the gatekeeper between science majors and a diploma). If you don't get it in writing (something special), it never happened - like substitutions of prereqs and such. Happened to me. Had to take a damn extra class b/c someone didn't remember what she told me.", + "pos": 0.046, + "neu": 0.83, + "neg": 0.124, + "_id": { + "$oid": "6711d4a9cd60fca157e5c085" + } + }, + { + "text": "I truly want to be a doctor but she really brought down my self-esteem. I had a 2.6 average from my FIRST semester at the college and because of that she told me I needed a career change. :(", + "pos": 0.072, + "neu": 0.838, + "neg": 0.09, + "_id": { + "$oid": "6711d4a9cd60fca157e5c086" + } + }, + { + "text": "she is the worst person that you are able to talk to she is not helpful she runs the office very poorly and her stuff is not helpful at all.", + "pos": 0.0, + "neu": 0.755, + "neg": 0.245, + "_id": { + "$oid": "6711d4a9cd60fca157e5c087" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a9cd60fca157e5c089" + }, + "professor_name": "Jorge Gonzalez-Cruz", + "rating": 1.8, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "This professor is very knowledgeable about HVAC. Where he loses points is as a teacher. His handwriting is terrible to the point where you cant differentiate between 1 and 2. If you ask him he will explain though. If you have any questions, go after him. Before every exam, he goes over the hardest problem that will probably be in the exam.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d4a9cd60fca157e5c08a" + } + }, + { + "text": "He is a very good professor. You will learn a lot from his course. The HVAC course is one of the best courses at CCNY. Ask him via email/in class if u have any questions and he will answer u. If u want to take an energy course with him, make sure that u are very good at Matlab because he doesnt teach code. He gives solutions After ur submission.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d4a9cd60fca157e5c08b" + } + }, + { + "text": "he does not know how to be a professor. no pedagogy skills. he may be a nice person and a a good scientist, but ti has nothing to do with his ability to teach. very disappointing that he has a high standard for students but not for himself.", + "pos": 0.121, + "neu": 0.766, + "neg": 0.113, + "_id": { + "$oid": "6711d4a9cd60fca157e5c08c" + } + }, + { + "text": "Probably the worst professor Ive had it city. He gets upset when people ask questions and His lectures are not helpful at all. Hes a really bad mumbler so its very hard to understand what he saying", + "pos": 0.0, + "neu": 0.684, + "neg": 0.316, + "_id": { + "$oid": "6711d4a9cd60fca157e5c08d" + } + }, + { + "text": "Probably the worst professor in the department, and I am not exaggerating. He does not know how to teach, exams are hard, questions are so long with not enough time. If looking for a design elective pick Kawaji he is much easier, forgivable, and reasonable, I have took both. I have never experienced a prof as worse as Gonzalez.", + "pos": 0.102, + "neu": 0.772, + "neg": 0.125, + "_id": { + "$oid": "6711d4a9cd60fca157e5c08e" + } + }, + { + "text": "WORST professor EVER. DONT TAKE HIS CLASSES. He cant communicate the course materials at all. You basically have to study from the book if you wanna pass the exams. Besides, his accent is a bit hard to understand. His exam questions are very long and he does not give students enough time for it. He cant also answer student's question properly.", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d4a9cd60fca157e5c08f" + } + }, + { + "text": "This professor makes you assume many variables for his projects and tests and if you thought that you could use the textbook to pass the class, think again because the textbook is really terrible too. This is the only review I have ever posted for a professor. If that doesn't tell you enough, then good luck.", + "pos": 0.095, + "neu": 0.851, + "neg": 0.054, + "_id": { + "$oid": "6711d4a9cd60fca157e5c090" + } + }, + { + "text": "I thought I've seen everything in my 4 years of college, and then I decided to take HVAC. The material isn't communicated at all and is highly unorganized. His example problems are always wrong because he uses incorrect conversions and prematurely rounds. He's very intelligent and distinguished but is a terrible teacher. Avoid if you can.", + "pos": 0.034, + "neu": 0.797, + "neg": 0.17, + "_id": { + "$oid": "6711d4a9cd60fca157e5c091" + } + }, + { + "text": "Practically lifts materials from Heating and Cooling of Buildings Design for efficiency Third Edition and also from Heating, Ventilating and Air Conditioning. Get past materials, tests and quizzes and you should be fine. He knows his stuff in his own way but generally a very bad teacher and instructor.", + "pos": 0.058, + "neu": 0.847, + "neg": 0.096, + "_id": { + "$oid": "6711d4a9cd60fca157e5c092" + } + }, + { + "text": "Quite simply the worst professor at City College. His handwriting is atrocious; refuses to answer questions in class. And responds by saying: \"You should know this.\" Largely inaudible beyond the 3rd row & doesn't make any effort to teach! He may be a brilliant individual, but is certainly a failure as an instructor. CCNY should have quality control", + "pos": 0.063, + "neu": 0.824, + "neg": 0.113, + "_id": { + "$oid": "6711d4a9cd60fca157e5c093" + } + }, + { + "text": "This class was really tough compared to others. He does assign a lot of homework from material we are yet to cover. Lectures are a MUST go. I didn't find him helpful outside of class. Class avg was around a 60, he said if u average there it's a C+/-B, and B is mid 70s. He rushed the last two chapters and assigned 2 projects 2 weeks before finals.", + "pos": 0.0, + "neu": 0.942, + "neg": 0.058, + "_id": { + "$oid": "6711d4a9cd60fca157e5c094" + } + }, + { + "text": "He is just a person with no teaching skills. He assigns hw from future chapters almost for every class, so you have to study it by your own. Grading is SUPER strict. Lectures are very not helpful because mostly he is talking some general stuff without focusing on important parts. 4 projects in addition to 15 home work assignments is too much. AVOID", + "pos": 0.064, + "neu": 0.806, + "neg": 0.13, + "_id": { + "$oid": "6711d4a9cd60fca157e5c095" + } + }, + { + "text": "He's a nice guy and the pizza on the final was a nice gesture. However, he is not a teacher and doesn't know how to teach. His notes are everywhere and he is not very clear. He also inflates grades for class exams like crazy, but screws everyone when handing out the final grade. Nice guy, but not a good teacher or grader.", + "pos": 0.126, + "neu": 0.751, + "neg": 0.123, + "_id": { + "$oid": "6711d4a9cd60fca157e5c096" + } + }, + { + "text": "Tough accent, very nice guy bought the class pizza for the final. Sort of absent minded as he focuses on software we will never use in class but grades fairly. Both the book or his class notes can be followed and used easily on exams.", + "pos": 0.106, + "neu": 0.868, + "neg": 0.026, + "_id": { + "$oid": "6711d4a9cd60fca157e5c097" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4a9cd60fca157e5c099" + }, + "professor_name": "Maria Lucciola", + "rating": 3.8, + "department": "Italian department", + "comments": [ + { + "text": "Professor Lucciola really cares about having us students learn Italian. She's funny and every class after a quiz or exam, she takes the time to explain what we've gotten wrong. She's a stickler about being on time so BE ON TIME! It may seem like she picks on you at first but it's really only because she cares and she wants YOU to care as well.", + "pos": 0.219, + "neu": 0.755, + "neg": 0.026, + "_id": { + "$oid": "6711d4a9cd60fca157e5c09a" + } + }, + { + "text": "does not let you NOT participate. Is very annoying and doesn't let you learn at your pace. Gives tons of homework and lacks compassion. If you miss she fails you.", + "pos": 0.082, + "neu": 0.714, + "neg": 0.203, + "_id": { + "$oid": "6711d4a9cd60fca157e5c09b" + } + }, + { + "text": "Professor Lucciola has a bad temper and no patience to be teaching a language. She gave asyn homework, online homewor, quizzes, and presentations all due sometimes in the same week! It was very overwhelming. As if that weren't enough she called on you in class and if you were wrong she would get upset instead of helping you understand the concept.", + "pos": 0.031, + "neu": 0.767, + "neg": 0.202, + "_id": { + "$oid": "6711d4a9cd60fca157e5c09c" + } + }, + { + "text": "This professor is over the top for a language class and if she does not like you good luck. Tends to be easy on guys. Gets mad if you type/chat replies instead of using your microphone. Gets mad that cameras arent on. Makes rude remarks if she doesnt like you. Has long exams and homework after every session (counter productive to learning).", + "pos": 0.134, + "neu": 0.695, + "neg": 0.171, + "_id": { + "$oid": "6711d4a9cd60fca157e5c09d" + } + }, + { + "text": "Professor Lucciola is a caring and knowledgeable teacher. Her class demands attendance, heavy participation, lots of homework, but above all the capacity for simple memorization. I only know English and do not memorize things well without any application so participate and take advantage of ny tuttoring is you can. She is very understanding!!!", + "pos": 0.095, + "neu": 0.867, + "neg": 0.038, + "_id": { + "$oid": "6711d4a9cd60fca157e5c09e" + } + }, + { + "text": "I can guarantee You would love taking a class with Prof. Lucciola. She's a sweetheart and clear when explaining any doubts and very comprehensive. If you want to pass her class, always show up on time and PARTICIPATE. Definitely, I would take her again.", + "pos": 0.337, + "neu": 0.625, + "neg": 0.038, + "_id": { + "$oid": "6711d4a9cd60fca157e5c09f" + } + }, + { + "text": "She's amazing, so interesting and fun. She makes alot of jokes, but cares alot about attendance... you get 5 absences doubt u need more than that. She gives test every couple weeks but they're not very hard do the homework on myITALAB and youll be fine. Would deffinately take her again", + "pos": 0.262, + "neu": 0.686, + "neg": 0.052, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a0" + } + }, + { + "text": "Do not take her if you don't have spanish or any of the romance languages as your native language. You'll have a hard time. She teaches the class based on assuming the students have prior knowledge of spanish. Shes not that open minded either.", + "pos": 0.077, + "neu": 0.894, + "neg": 0.03, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a1" + } + }, + { + "text": "she is the best!! Just do your work and you will be fine! absolutely love her !", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a2" + } + }, + { + "text": "One of the most enthusiastic and funny prof.", + "pos": 0.526, + "neu": 0.474, + "neg": 0.0, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a3" + } + }, + { + "text": "Very good professor", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a4" + } + }, + { + "text": "Great Professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a5" + } + }, + { + "text": "Professor Lucciola is an awesome professor! She's very understanding and helpful. If any student has the audacity to complain, they probably just do not do the work she asks from them. All she wants is effort from her students. If you do your work and engage yourself, you will do well. Really sparked my interest for the language! :)", + "pos": 0.254, + "neu": 0.712, + "neg": 0.034, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a6" + } + }, + { + "text": "She's a great professor, but she can be very difficult if you don't put in any effort. She just wants you to do well. If you show up on time, do the homework, participate regularly, and study for the exams, she'll love you. If you don't work hard, she can be mean to you.", + "pos": 0.191, + "neu": 0.752, + "neg": 0.057, + "_id": { + "$oid": "6711d4a9cd60fca157e5c0a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4aacd60fca157e5c0a9" + }, + "professor_name": "Jane Schmidt", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "A great Professor knows how to conduct a lecture, she's funny and cool.\nThe only downside is that you have to write a bunch of long discussion posts during the semester, along with 2 long essays.\nThis class was very time-consuming for me, if you don't like to write this class will be a nightmare.", + "pos": 0.147, + "neu": 0.789, + "neg": 0.065, + "_id": { + "$oid": "6711d4aacd60fca157e5c0aa" + } + }, + { + "text": "One of the best professors at CCNY. Thought I would hate the class but she made it really enjoyable. her lectures were interesting and if you send her an essay draft before it's due she sends you great feedback (and shes a night owl which is a plus)", + "pos": 0.262, + "neu": 0.7, + "neg": 0.038, + "_id": { + "$oid": "6711d4aacd60fca157e5c0ab" + } + }, + { + "text": "She's very passionate and well organized. Her teaching method is very good to the point anyone can learn and enjoy literature. Not a big fan of reading, but she made me want to read and showed how English can be fun. You have to read the assingments which are online. She walks you through every step to the point you get an A+. Just have to be willi", + "pos": 0.184, + "neu": 0.796, + "neg": 0.019, + "_id": { + "$oid": "6711d4aacd60fca157e5c0ac" + } + }, + { + "text": "She is hands down the most amazing professor and person I have ever met.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0ad" + } + }, + { + "text": "She is very organized. She teaches very well and makes the lessons fun and exciting. She is very nice, funny and friendly and encourages you give your input on things. She was always aware of what was going on in the class and was very considerate. She is overall an amazing professor. I am not exactly sure about my grade yet but I loved the class.", + "pos": 0.298, + "neu": 0.684, + "neg": 0.018, + "_id": { + "$oid": "6711d4aacd60fca157e5c0ae" + } + }, + { + "text": "Totally amazing. You can tell that she really likes what she does and that is very important. She's a very nice person and is very funny in class; I would totally recommend taking her class if you really want to enjoy the literature she teaches, 10/10.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0af" + } + }, + { + "text": "She's cute, funny, and smart... wait this isn't match dot com. I would def take her again, easy as long as you do the work which is not hard. There is a homework every week and papers like three of them through the semester. Expect to read and participate in class. I mostly downloaded the books unto my iPhone.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b0" + } + }, + { + "text": "Schmidt is very passionate about literature and it shows in her teaching. Every time she teaches she just lights up the room. Very understanding as well. Not to mention she's hot in every sense of the word. TAKE HER CLASS.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b1" + } + }, + { + "text": "she is one of the best professors I ever had... very helpful and understanding... the atmosphere in her classes were always very friendly and positive...", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b2" + } + }, + { + "text": "Really really helpful prof. She makes literature sound fun and entertaining! Definitely a wonderful class. Though...no one can prove her wrong with her thesis!", + "pos": 0.44, + "neu": 0.478, + "neg": 0.082, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b3" + } + }, + { + "text": "She is very passionate about literature and that comes out in the way she teaches it. I learned to look at literature in an entirely different way with her. Love her and i wish i had all of my english classes with her.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b4" + } + }, + { + "text": "The best prof I have had.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b5" + } + }, + { + "text": "She is very sweet and compassionate about literature and makes the class so very interesting, loved it, and miss her!", + "pos": 0.471, + "neu": 0.478, + "neg": 0.051, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b6" + } + }, + { + "text": "Prof. Schmidt is very thorough, and mighty when it comes to literature.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0b7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4aacd60fca157e5c0b9" + }, + "professor_name": "Anu Janakiraman", + "rating": 3.1, + "department": "Biology department", + "comments": [ + { + "text": "Professor J is a great professor. She made the class very fair and try to help everyone. There were two papers and one presentation and attendance was mandatory. She grades harsh but if you show her that you care then she will help you. Overall great course and solid professor.", + "pos": 0.346, + "neu": 0.624, + "neg": 0.03, + "_id": { + "$oid": "6711d4aacd60fca157e5c0ba" + } + }, + { + "text": "Study, study, study and STUDY some more. She's rational, caring and she takes students concerns into account.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0bb" + } + }, + { + "text": "maybe she was good once... that time has passed. very disappointing", + "pos": 0.188, + "neu": 0.585, + "neg": 0.227, + "_id": { + "$oid": "6711d4aacd60fca157e5c0bc" + } + }, + { + "text": "It was the hardest class ever . The only good part is the TA for lab", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0bd" + } + }, + { + "text": "The worst professor", + "pos": 0.0, + "neu": 0.328, + "neg": 0.672, + "_id": { + "$oid": "6711d4aacd60fca157e5c0be" + } + }, + { + "text": "It was a great learning experience for me that I would like to never repeat again. Maybe don't take her if you don't want to be fooled into thinking that she cares about her students learning just to find out that she just wants to look good for her department.", + "pos": 0.207, + "neu": 0.729, + "neg": 0.063, + "_id": { + "$oid": "6711d4aacd60fca157e5c0bf" + } + }, + { + "text": "Anu is incredibly smart and a great lecturer, she also takes into consideration your effort. Show her that you actually care about the class, participate, it's huge for her! Her exams are difficult but it is an \"adv microbio\" class study vigorously and don't give up! p.s ur head WILL hurt and u'll want to die but so does everyone else in the class", + "pos": 0.146, + "neu": 0.698, + "neg": 0.156, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c0" + } + }, + { + "text": "If you did GREAT on 229 and Genetics, then take her bc most of the topics would be based on concepts seen on those classes. Her exams are HARD, really HARD bc it is short answers and she is looking for specific words. If it is an elective and you can take another course, then take something else. 50% lecture nad 50 % lab.", + "pos": 0.069, + "neu": 0.867, + "neg": 0.065, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c1" + } + }, + { + "text": "2 articles plus lecture slides every week that will all be on the exam. This class requires a bunch of time that nobody has. It's not a hard class, just a lot of studying. The first class average was about 50. Her exams prepare you for the first level though. But I'm sure you will encounter other classes that will also so if no time, don't take!", + "pos": 0.061, + "neu": 0.894, + "neg": 0.045, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c2" + } + }, + { + "text": "Janakiraman is an amazing professor, her exams however are a force to be reckoned with. She gave a study guide and every single teeny tiny detail imaginable from that study guide was on the exam. Point is, study EVERYTHING.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c3" + } + }, + { + "text": "Dr. J is a phenomenal professor and she is truly a great educator in terms of her assistance and clarity on the subject. Her exams are not TOO hard BUT her grading is borderline frightening. She is extremely picky about the answers she expects but she is fair nonetheless, Take her if you want to Learn....", + "pos": 0.182, + "neu": 0.752, + "neg": 0.066, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c4" + } + }, + { + "text": "Awesome professor. Fair in grading, if you get something wrong on the exam you will know exactly why it was incorrect. Amazing teacher.", + "pos": 0.316, + "neu": 0.588, + "neg": 0.096, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c5" + } + }, + { + "text": "difficult but excellent and very hot!!!", + "pos": 0.508, + "neu": 0.343, + "neg": 0.15, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c6" + } + }, + { + "text": "Good speaker, harsh grader. Lectures could stand to be more...contextual. Be prepared to study like you're in med school. She also showed this 'undergrad-ese' slide that was in questionable taste. Doesn't curve AT ALL.", + "pos": 0.176, + "neu": 0.7, + "neg": 0.123, + "_id": { + "$oid": "6711d4aacd60fca157e5c0c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4abcd60fca157e5c0c9" + }, + "professor_name": "Alison Conway", + "rating": 3.9, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Had Prof Conway for CE101. She made the class very simple to understand, organized, and even interesting. There were almost no hw and a few group projects. It was an interesting class. I haven't actually got her in one of her transportation classes but if I can, I will.", + "pos": 0.072, + "neu": 0.899, + "neg": 0.028, + "_id": { + "$oid": "6711d4abcd60fca157e5c0ca" + } + }, + { + "text": "Material is pretty straightforward and interesting. This class is not to overwhelm but she really just cares that you're learning. Assignments are very relevant and applicable to the real world - designing intersections, creating maps, etc. Exams aren't too hard. Pay attention in class and she'll give you the slides and review sheets to review.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0cb" + } + }, + { + "text": "Professor Conway is a great educator. She knows a ton and is happy to help students understand both in and out of class. Material is not too difficult if you're paying attention in class and doing the homework. She uses class time pretty efficiently and gives her slide decks and review sheets before exams. One group project but not too intense.", + "pos": 0.181, + "neu": 0.799, + "neg": 0.02, + "_id": { + "$oid": "6711d4abcd60fca157e5c0cc" + } + }, + { + "text": "Very knowledgeable in transportation. Personally found the lectures dry being I was not a transportation major.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0cd" + } + }, + { + "text": "Greatly disappointed by her. She is a by the book type of professor, no creativity or sense of experience except for textbook theory. She acts as if she cares but is extremely rude and disrespectful if you ask a question and only cares for her research. She is always nervous and seems unsure during her lectures, but at least she knows the textbook.", + "pos": 0.08, + "neu": 0.743, + "neg": 0.177, + "_id": { + "$oid": "6711d4abcd60fca157e5c0ce" + } + }, + { + "text": "Dr. Conway is a smart Researcher but a poor Instructor. Her teaching reflects high level theory but very rarely ties into real world application. Too much work for an introductory class.", + "pos": 0.053, + "neu": 0.829, + "neg": 0.119, + "_id": { + "$oid": "6711d4abcd60fca157e5c0cf" + } + }, + { + "text": "Glad I was able to take her for 327!!!!", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d0" + } + }, + { + "text": "Prof. Conway is definitely one of the best at CCNY. CE326 itself is interesting and she teaches the course very well. Homeworks are straight forward based on lecture examples, exams are combined theory and calculation based. Almost convinced me to be a transportation major!", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d1" + } + }, + { + "text": "I had great expectations enrolling in Dr. Conway's class but was greatly disappointed. While she might demonstrate \"book smarts,\" she has no real world experience. She absolutely RESENTS when a student discusses his or her real world experience tied to a lecture topic. I received an \"A\" but that was after learning to keep my mouth shut in class!", + "pos": 0.083, + "neu": 0.75, + "neg": 0.167, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d2" + } + }, + { + "text": "Gives good lectures, but could improve the learning experience with more discussion. Very approachable and knowledgeable in her field. Her assignments are always useful and help you learn the material (no busywork).", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d3" + } + }, + { + "text": "She is the best female professor in the CE department. Love the way she teaches and presents everything.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d4" + } + }, + { + "text": "Pay attention in class to how examples are solved. Read and understand everything in slides because exams are half multiple choice/short answer questions and the other half is problem solving/calculations.", + "pos": 0.063, + "neu": 0.813, + "neg": 0.123, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d5" + } + }, + { + "text": "327 is relatively more difficult than 326 but everything is doable. The final was a little more difficult and lengthy than the two in-class exams. No curves in her class if you wanted to know.", + "pos": 0.0, + "neu": 0.801, + "neg": 0.199, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d6" + } + }, + { + "text": "She does examples in class and goes through most of them step by step. Exams are similar to what she teaches in class and homework. Homework assignments are not difficult, and make sure you follow her project formats. She is a very nice and generous professor.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0d7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4abcd60fca157e5c0d9" + }, + "professor_name": "Susan D'Aloia", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "had her this past semester at pbsc. she is a great professor, very passionate, grades fairly and provides great feedback on your writing.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0da" + } + }, + { + "text": "She had good techniques when it came to teaching writing and speech but she tended to use the class as her political soapbox.Very opinionated and did not welcome debate or dissent if you disagreed with her.Most of the students in her class never really challenged her for fear they would receive a lesser grade.I however wasn't.Still got an A.", + "pos": 0.055, + "neu": 0.792, + "neg": 0.154, + "_id": { + "$oid": "6711d4abcd60fca157e5c0db" + } + }, + { + "text": "great.......", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0dc" + } + }, + { + "text": "She is absolutely the best. She makes you want to come to class. She keeps the classroom discussions based on your opinions, which are primarily based on current events. Her assignments are easy and interesting. She is the greatest...you will love her too.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0dd" + } + }, + { + "text": "the besssssssssssssssst teacher EVER .....she makes speech come alive and really appreciates everyones opinion in the class even if ur views are different...she's great", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0de" + } + }, + { + "text": "i really leared alot in this class. she is extreamly nice, intresting, passionate..she is just the best teacher i had all sem.. if u hate speech..if u r afraid...u should really take her she is gr8!", + "pos": 0.235, + "neu": 0.685, + "neg": 0.079, + "_id": { + "$oid": "6711d4abcd60fca157e5c0df" + } + }, + { + "text": "great professor. very passionate about issues that we see today", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e0" + } + }, + { + "text": "Extremely good teacher. Very passionate about the class and social issues. You will come away having learnt a lot.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e1" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e2" + } + }, + { + "text": "recommended", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e3" + } + }, + { + "text": "not helpful with the projects, puts all burden on you.", + "pos": 0.0, + "neu": 0.605, + "neg": 0.395, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e4" + } + }, + { + "text": "Great Teacher!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e5" + } + }, + { + "text": "Wonderful professor. She kept the class very interesting, and was incredibly organized. I learned so much from her class. Be prepared to work hard though - she doesn't tolerate slackers.", + "pos": 0.239, + "neu": 0.722, + "neg": 0.039, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4abcd60fca157e5c0e8" + }, + "professor_name": "William Stone", + "rating": 4.7, + "department": "Education department", + "comments": [ + { + "text": "Professor Stone now mentors student teachers - his experience in the classroom gives him an expertise to mentor student teachers. He is always available and ready with suggestions and helpful hints to make me a better teacher and student", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0e9" + } + }, + { + "text": "Professor Stone was very helpful, when I had an emergency, he was willing to give me a meaningful alternative assignment. He is a teacher who cares about his students, has vast knowledge about the New York City school system, and kinda makes learning fun! Good guy, good teacher.", + "pos": 0.287, + "neu": 0.671, + "neg": 0.043, + "_id": { + "$oid": "6711d4abcd60fca157e5c0ea" + } + }, + { + "text": "Knows his stuff - can go off on tangents but related to the class work. very approachable and shows true concern for his students. Wish he taught more classes - this guy is a winner!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0eb" + } + }, + { + "text": "Great professor - I wish he taugh t different classes - He is a winner. Classes are interesting and fun - starts each class with an activity that ties to the lesson.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0ec" + } + }, + { + "text": "Professor Stone is extremely knowledgable and is willing to share what he knows. He has no airs about him. Keeps the class interesting and can tell you some very interesting stories about the DOE", + "pos": 0.197, + "neu": 0.748, + "neg": 0.055, + "_id": { + "$oid": "6711d4abcd60fca157e5c0ed" + } + }, + { + "text": "Professor Stone created a relaxed atmosphere in his classroom thus actively engaging his students in learning. His insights were eye-opening and his lessons were never boring. I would take another class with him anytime!", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0ee" + } + }, + { + "text": "Professor Stone teaches differentiation of instruction, and does just that throughout the course, shows videos, has activities, uses power-points. He addresses the learning style of the students. It is a shame the class is a late one: 7:30 - 10;00", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d4abcd60fca157e5c0ef" + } + }, + { + "text": "Shows videos and does activities that help you understand. Nice Guy - very enthusiastic and knowledgeble", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0f0" + } + }, + { + "text": "Professor Stone helped me out when I had a problem - allowed me to take an incomplete and then made sure I finished up. He is very accessable and answers his emails extremely quickly. He also allows tiem for re-writes and resubmissions", + "pos": 0.051, + "neu": 0.889, + "neg": 0.06, + "_id": { + "$oid": "6711d4abcd60fca157e5c0f1" + } + }, + { + "text": "4 projects to do but worth the effort as Bill pulls everything together at the end", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0f2" + } + }, + { + "text": "Great guy- extremely friendly and very accessible. Cares about his students, Very knowledgeable about Differentiation of Instruction. Will not give you direct answers turns questions around and makes you think of the answer for yourself.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0f3" + } + }, + { + "text": "Professor Stone's class is one of the most meaningful classes I have taken. He is a caring, concerned human being who facilitates your learning and looks to make sure you don't just try to teach students, but to look to see how students learn. He shows videos a lot.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d4abcd60fca157e5c0f4" + } + }, + { + "text": "Prof. Stone was one of the nicest professors I ever had. He truly cared about each student's learning. He's kind of a jerk when it comes to attending class, but if you're there and pay attention, it's hard to not get at least a B+ in the class. He is a MUST TAKE!", + "pos": 0.107, + "neu": 0.808, + "neg": 0.084, + "_id": { + "$oid": "6711d4abcd60fca157e5c0f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4accd60fca157e5c0f7" + }, + "professor_name": "Katisha Thompson", + "rating": 2.9, + "department": "Education department", + "comments": [ + { + "text": "I completely regret taking this course! Trust me, she begins to semester seeming okay but then everything goes downhill. She is so unclear on what she wants, gets upset when you ask questions about assignments, never brings in examples she says she will and is never available after class. She also never answers emails or uses bb.", + "pos": 0.056, + "neu": 0.803, + "neg": 0.141, + "_id": { + "$oid": "6711d4accd60fca157e5c0f8" + } + }, + { + "text": "I'm so sorry but im traumatized after her class, I don't even know how to start a lesson plan and thats what her class was all about.", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d4accd60fca157e5c0f9" + } + }, + { + "text": "She gives too much work!!! She doesn't use blackboard. She gets upset when you ask clarifying questions. I regret taking her in all honesty!", + "pos": 0.104, + "neu": 0.683, + "neg": 0.213, + "_id": { + "$oid": "6711d4accd60fca157e5c0fa" + } + }, + { + "text": "She is amazing and the way she teaches is by example, which for teaching teachers is a huge plus. This was the most useful class I have ever taken at CCNY for undergrad and graduate studies. You WILL learn in her class!", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d4accd60fca157e5c0fb" + } + }, + { + "text": "She can be all over the place, but trust me, all the lesson plans you do, will be helpful for the edTPA !!! FOR SURE! take advantage.", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d4accd60fca157e5c0fc" + } + }, + { + "text": "Worst ever! Doesnt know how to teach. Gets annoyed when you dont understand something. I regret taking her class.", + "pos": 0.0, + "neu": 0.62, + "neg": 0.38, + "_id": { + "$oid": "6711d4accd60fca157e5c0fd" + } + }, + { + "text": "This is my 2nd class with her and I must say the 2nd time was much better than the 1st time. I think she got more lenient this time, the 1st time I had her there was A LOT of work. I appreciated that this time she understood her students and gave doable work. I was happy and would take her again. ThankGod the textbook wasn't a huge deal this time.", + "pos": 0.153, + "neu": 0.822, + "neg": 0.024, + "_id": { + "$oid": "6711d4accd60fca157e5c0fe" + } + }, + { + "text": "Her class was all over the place and she often forgot what we had spoke about the class prior but all in all she is a great professor. BEWARE OF SYLLABUS -- you must stay on top of your sh*t so you don't get lost. It sucks that she doesn't provide her powerpoints on Blackboard because they could be extremely helpful for a reference check.", + "pos": 0.186, + "neu": 0.772, + "neg": 0.042, + "_id": { + "$oid": "6711d4accd60fca157e5c0ff" + } + }, + { + "text": "Prof. Thompson is a great professor. She is very clear and very helpful. Her class is fun and very hands on. She understood us as students. I would take her class again if I could.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d4accd60fca157e5c100" + } + }, + { + "text": "Pretty easy class, a few assignments but manageable. She doesn't really respond to email so if thats your thing... yeah. She lets you redo work so no reason to fail.", + "pos": 0.17, + "neu": 0.619, + "neg": 0.212, + "_id": { + "$oid": "6711d4accd60fca157e5c101" + } + }, + { + "text": "started giving all the work at the end. not a good way to plan things and did not really explain much. so disappointed", + "pos": 0.083, + "neu": 0.695, + "neg": 0.222, + "_id": { + "$oid": "6711d4accd60fca157e5c102" + } + }, + { + "text": "I found Professor Thompson to be extremely accesible and adequately clear. I am not to sure what class the person above took, but I was more than satisfied with this class. Her collaborative style may not be right for everyone, but was appropriate and enhanced the course.", + "pos": 0.115, + "neu": 0.856, + "neg": 0.029, + "_id": { + "$oid": "6711d4accd60fca157e5c103" + } + }, + { + "text": "I do not know why on the world CCNY thought she would be a good proefessor. She was probably prepared for 2 classes the entire semester and we only met once a week. She did not go over her own syllabus as we would inform her of what was on the paperwork and she would sem surprised. She is rude and cuts people off when answering.", + "pos": 0.092, + "neu": 0.837, + "neg": 0.071, + "_id": { + "$oid": "6711d4accd60fca157e5c104" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4accd60fca157e5c106" + }, + "professor_name": "Kai Gilchrist", + "rating": 3.9, + "department": "Psychology department", + "comments": [ + { + "text": "really sweet professor, she's young so she can relate to us a lot. She's a big talker which honestly isn't too bad but it can feel like forever sometimes. It's an easy class if you study and she's very nice when it comes to grading. We mostly got short quizzes and only did one main paper, the other paper was extra credit and 2 exams.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d4accd60fca157e5c107" + } + }, + { + "text": "The subject is difficult for sure, but she makes it easier to understand by giving us practice problems at the end of the class. The class consists of 4 exams, the lowest is dropped, and the final. There are three labs. Fair grader, just make sure you attend the class for the practice problems and you should pass! Gives us extra points for tutoring", + "pos": 0.179, + "neu": 0.672, + "neg": 0.15, + "_id": { + "$oid": "6711d4accd60fca157e5c108" + } + }, + { + "text": "She does practice problems to help us understand the concepts, so show up to class! She cares and gives us homework, making it easier for us to practice the problems. She lets us know what will be on the exams and an example of the open-ended but with different numbers. She makes it easy to pass. An amazing kind professor for a v difficult subject!", + "pos": 0.241, + "neu": 0.675, + "neg": 0.084, + "_id": { + "$oid": "6711d4accd60fca157e5c109" + } + }, + { + "text": "This professor is very unprofessional, I took an online class with her and we never saw her face. She just read through the slides very fast and she had 100 of slide per day. I consider that she does not even know what she is teaching.", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d4accd60fca157e5c10a" + } + }, + { + "text": "Professor Gilchrist is great! She's caring and understanding. Her slides can have too much information but she will tell you what's important for the quizzes and what's not. She's not a strict grader and she tries her best to make sure the students understand the concepts. Overall, she is amazing.", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d4accd60fca157e5c10b" + } + }, + { + "text": "Even though the professor teaches higher level and difficult material, She a great professor that cares and breaks down the concept of everything well. Interesting Extra Credits, Explanation videos on labs. Take her she's awesome.", + "pos": 0.378, + "neu": 0.571, + "neg": 0.051, + "_id": { + "$oid": "6711d4accd60fca157e5c10c" + } + }, + { + "text": "she super nice, always cracking jokes, not a hard class tbh, thought this would be a regular psy class nah this real statistics lol,tbh didnt really pay attention to her lectures it was just too much info but the practice problems she does after each chap were super helpful, hws were easy, 4 test (1 drop) plus final, final was not it we all did bad", + "pos": 0.242, + "neu": 0.619, + "neg": 0.139, + "_id": { + "$oid": "6711d4accd60fca157e5c10d" + } + }, + { + "text": "She was somewhat lenient with homework, the only extra credit she allowed was going to the tutoring center for 5 hours in total for only like only 2 points. Class was held online and it was hard more me to focus and retain information. Pay attention and study as hard as you can if you want to do well on the tests. Tests were difficult", + "pos": 0.144, + "neu": 0.764, + "neg": 0.091, + "_id": { + "$oid": "6711d4accd60fca157e5c10e" + } + }, + { + "text": "Professor Kai was incredibly helpful and was readily available if need be even outside of class. Put in the work and you won't fail. Would definitely take again if possible!", + "pos": 0.176, + "neu": 0.761, + "neg": 0.064, + "_id": { + "$oid": "6711d4accd60fca157e5c10f" + } + }, + { + "text": "Professor Gilchirst is a wonderful person but her teaching methods are not the best. Most of the lectures consisted of her reading off the slides while giving us an immense amount of information in a short span of time. Her exams are hard because they tend to be very content dense. First exam had 7 chapters and it was the most stressful experience.", + "pos": 0.073, + "neu": 0.779, + "neg": 0.148, + "_id": { + "$oid": "6711d4accd60fca157e5c110" + } + }, + { + "text": "She was a very respectful professor, although her way of teaching this course was honestly not the best. She was mostly reading off the presentation slides and it was hard to study for her exams because she never really gave mini quizzes or specified what she wanted us to study.", + "pos": 0.11, + "neu": 0.806, + "neg": 0.084, + "_id": { + "$oid": "6711d4accd60fca157e5c111" + } + }, + { + "text": "She is a very kind and caring professor, but the way that her lectures are structured is not the best. Never in my years of college did I have to cram 4 chapters worth of information for a single exam. The lecture consists of her reading slides and not much interaction was present. Not many extra credit opportunities were given but 1.", + "pos": 0.14, + "neu": 0.76, + "neg": 0.099, + "_id": { + "$oid": "6711d4accd60fca157e5c112" + } + }, + { + "text": "Shes great! Tries her best to help everyone! Will take her again if there is a possibility!", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d4accd60fca157e5c113" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4adcd60fca157e5c115" + }, + "professor_name": "Meyken Barreto", + "rating": 3.4, + "department": "Art department", + "comments": [ + { + "text": "Don't take this class if you expect something exciting to say the least. She is tolerable from time to time but she can sometimes be passive-aggressive and nit picky. Gives quizzes every week so be sure to familiarize yourself with material posted on BB. Her way of teaching is boring and is a snooze fest so don't expect her class to be fun.", + "pos": 0.138, + "neu": 0.821, + "neg": 0.041, + "_id": { + "$oid": "6711d4adcd60fca157e5c116" + } + }, + { + "text": "This professor doesn't have any attitude. She's pretty nice. Make sure to occasionally participate and pass the quizzes that she'll give.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c117" + } + }, + { + "text": "Professor Meyken Barreto is nice but she gives too many tests. If you do not pay attention to her slides and lectures you would not know what is going on, I thought this was an easy class... Overall, I do not recommend taking this class as an elective course but if you are passionate about art then take it.", + "pos": 0.172, + "neu": 0.789, + "neg": 0.039, + "_id": { + "$oid": "6711d4adcd60fca157e5c118" + } + }, + { + "text": "It was a good class, but I wont lie it is pretty boring but this is just an intro class. She gives weekly quizzes but trust they are not that hard at all, she always posts the slides from class on BB so you can view it there. Midterms and finals were also not that hard, just make sure to study. Also don't buy or rent the textbook, never used it.", + "pos": 0.198, + "neu": 0.767, + "neg": 0.035, + "_id": { + "$oid": "6711d4adcd60fca157e5c119" + } + }, + { + "text": "not as fun as expected, ruined my interest in art", + "pos": 0.19, + "neu": 0.443, + "neg": 0.367, + "_id": { + "$oid": "6711d4adcd60fca157e5c11a" + } + }, + { + "text": "I took Professor Barreto class in Spring 2022 semester. She's a great and amazing professor and the work is really simple. Just do the papers, quizzes and tests online and you'll do great. In the end, it's all worth it. Pay attention, study and work hard!", + "pos": 0.249, + "neu": 0.702, + "neg": 0.049, + "_id": { + "$oid": "6711d4adcd60fca157e5c11b" + } + }, + { + "text": "She's a very good choice if you're looking to take this class. She give us discussion boards and quizzes that are very easy as long as you use the textbook and the PowerPoint slides she sends. There are three papers for this class that are very simple as well. In general, she is a very good professor and I would recommend her.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c11c" + } + }, + { + "text": "She was a very nice professor. The HW she gives is based on the lectures and powerpoints but she gives you copies of the PowerPoint with the HW. You will have to do short 10 question multiple choice quizzes and discussion boards every week. There are 3 papers in total and they aren't difficult.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c11d" + } + }, + { + "text": "We had a discussion board & a quiz every week, but she chose the best 10 of each to grade you by. Each quiz had less than 7 questions, & was easy if you did the readings, watched the videos, & read the slides. We had some essays, but it was not too difficult. She is very kind & this was a great class. Would take her again if I could.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c11e" + } + }, + { + "text": "she gives weekly modules for reading, watching videos, quiz and discussion post. there's two essays for analyzing art too. She's really passionate about art and is willing to help with essay assignments. sometimes answers emails slow though, but aside from that she's really sweet", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c11f" + } + }, + { + "text": "She puts up the slides on BB so that can help you with the discussion board and quiz that is given every week. You have a week to do them which isnt bad because sometimes the quiz is only like 3-4 questions and its multiple choice. Overall I recommend the class.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c120" + } + }, + { + "text": "Most of the information given during classes are posted on Blackboard if you were to miss anything. She is very serious in terms of analytical thinking, so reading the books required would help in the process. For her class, you would have to be comfortable with traveling to other places as you have to do outside research to do some assignments.", + "pos": 0.091, + "neu": 0.861, + "neg": 0.048, + "_id": { + "$oid": "6711d4adcd60fca157e5c121" + } + }, + { + "text": "DO NOT TAKE HER!!!! She is one of the most unorganized and confusing professors I have ever had. All she does in lecture is talk talk talk; and then complains that no one participates, but she does not give you the chance to. She does not do midterm or final reviews, so get ready to memorize over 100 works of art. The worse!!", + "pos": 0.084, + "neu": 0.776, + "neg": 0.14, + "_id": { + "$oid": "6711d4adcd60fca157e5c122" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4adcd60fca157e5c124" + }, + "professor_name": "Nathan Fetherolf", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He's good but try to find another teacher, he's stingy with essay grades and the pop quizzes (3 with one makeup) are annoying. If you can't find a better teacher/online class just take him.", + "pos": 0.046, + "neu": 0.714, + "neg": 0.239, + "_id": { + "$oid": "6711d4adcd60fca157e5c125" + } + }, + { + "text": "Put in the work and you'll do good in the class. Nice lectures and homework's are easy", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c126" + } + }, + { + "text": "He does his best to help you pass and excel in his class, he gives pop quizzes and has 3 essays but he made it so that you couldn't procrastinate which I and others appreciate in my class. He is very lenient and understanding of certain situations.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c127" + } + }, + { + "text": "One of the best English professors. 10 homework's for the semester meaning one per week. Three essays that are honestly not hard none required citations. There are pop quizzes but very easy to pass if you read. He doesn't lecture he does discussions. And the reading he assigns are fun, interesting or humorous.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c128" + } + }, + { + "text": "This professor is honestly one of my favorites. Very understanding, and tries to makes the assignments easier for you. I will say there were pop up quizzes, but, as long as you did the readings you'll be okay.If you do need help,I encourage you to go to his office hours! You should also participate even if it's something simple,I wish I did!", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c129" + } + }, + { + "text": "Failed this class three times before taking it with this professor.\nReally nice guy, treats you like a human being. If you have problems with your assignment or need extra time try talking to him. Very understanding!", + "pos": 0.125, + "neu": 0.735, + "neg": 0.14, + "_id": { + "$oid": "6711d4adcd60fca157e5c12a" + } + }, + { + "text": "This is one of the best English teachers I have ever had, he actually gives back AMAZING feedback to his students and puts in the work when grading your papers. I recommend him if you are an incoming freshman or need to take ENGL110, he is a real gem and doesn't lecture, rather he does discussions, IMO is so much more interesting. TAKE HIM!", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c12b" + } + }, + { + "text": "He's one of the greatest. His lectures were very inspirational, and really did help my writing skills. Highly recommend him. He has a great personality and very much lightens the class during the online classes.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c12c" + } + }, + { + "text": "Nathan was hands down best teacher Ive ever had, if not one of the most humble and kind human beings I have ever met. He really cares for his students and its not hard to tell. He is so understanding and does not penalize you for any late assignments, he really has your back. Cant say Ive ever met a professor as amazing as him.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c12d" + } + }, + { + "text": "Absolutely one of the greatest instructors I've ever had in my entire life as a student. Not only does he make ways for the shy to participate without feeling left out, he leaves you with a feeling of happiness as you walk out every lecture because he legitimately makes you feel accomplished. THIS is what a real professor is like. TAKE HIM.", + "pos": 0.201, + "neu": 0.753, + "neg": 0.046, + "_id": { + "$oid": "6711d4adcd60fca157e5c12e" + } + }, + { + "text": "Writing this right after I had the class for the last time ever. I feel like a new man, completely enlightened as a human being after this class. Very understanding and interacts with students unlike many other professors.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c12f" + } + }, + { + "text": "A very good professor that fives good feedback when it comes to essays. He will always write what you can improve on to write a better essay and is always available after class for any questions you may have. Participation in class makes it more interesting, he creates an environment in which whatever is said there stays there. Would take again.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c130" + } + }, + { + "text": "One of the best professors ive had. Taking his class was a good experience because he teachers well, gives good feedback, gives a lot of opportunities for extra credit, and cares about his students. He is also very understanding, just overall it was a pleasure bring in his class.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c131" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4adcd60fca157e5c133" + }, + "professor_name": "Wayne Cotton", + "rating": 4, + "department": "Sociology department", + "comments": [ + { + "text": "He was a great professor who help instill confidence in my academic prowess. He was available after class to confer with students and made one feel welcomed. A kind man with a trenchant wit.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c134" + } + }, + { + "text": "He is the reason I even have a degree. He never gives up on you, we give up on ourselves. Saw him recently still in NYC same humor. Wonderful educator and did any of you people learn anything, I did. Thanks Prof Cotton", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c135" + } + }, + { + "text": "He was not only a great professor and advisor but a wonderful human being!", + "pos": 0.274, + "neu": 0.616, + "neg": 0.11, + "_id": { + "$oid": "6711d4adcd60fca157e5c136" + } + }, + { + "text": "not exciting. you wont learn anything new. very generalized and not up to date materials. i dont recommend. his handwritings are very hard to read.", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d4adcd60fca157e5c137" + } + }, + { + "text": "Great person, great teacher and has been around the block with many stories to tell. He makes his classes very easy as long as you pay attention and learn. I had him in three different courses. -J Ibanez-", + "pos": 0.234, + "neu": 0.678, + "neg": 0.088, + "_id": { + "$oid": "6711d4adcd60fca157e5c138" + } + }, + { + "text": "Funny, witty, very smart.", + "pos": 0.747, + "neu": 0.253, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c139" + } + }, + { + "text": "cool", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c13a" + } + }, + { + "text": "Great teacher!!! I highly recommend Prof. Cotton. If you get less than a B in one of his courses, you're an idiot.", + "pos": 0.258, + "neu": 0.632, + "neg": 0.11, + "_id": { + "$oid": "6711d4adcd60fca157e5c13b" + } + }, + { + "text": "Excellent teacher. You will learn and also get an easy A in the class. Whoever has him make sure you participate because it makes a +/- difference in the final grades :).", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c13c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4adcd60fca157e5c13d" + } + }, + { + "text": "EXCELLENT PROFESSOR!! A+++ MAKE SURE YOU PARTICIPATE IN CLASS DISCUSSIONS!! EASY TESTS AND DUMB EASY FINALS!!!", + "pos": 0.476, + "neu": 0.403, + "neg": 0.121, + "_id": { + "$oid": "6711d4adcd60fca157e5c13e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4adcd60fca157e5c13f" + } + }, + { + "text": "Excellent professor. Clear, easy tests, easy class!!! A+++", + "pos": 0.764, + "neu": 0.236, + "neg": 0.0, + "_id": { + "$oid": "6711d4adcd60fca157e5c140" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4aecd60fca157e5c142" + }, + "professor_name": "Beth Baron", + "rating": 4, + "department": "History department", + "comments": [ + { + "text": "Professor Baron and her TA Professor Kestinian made my online semester very enjoyable. They are both very knowledgeable and teach the course in a way that ensures we are able to grasp the info. There was a midterm, final, and final paper. You will be prepared for all of them. If you have the chance, take this professor!", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c143" + } + }, + { + "text": "I thought this class was fantastic. It was definitely my favorite class this semester. I thought the course matter was interesting and professor Baron's topics were very engaging. I enjoyed our trip to the Medical Museum. The class consists of a midterm, research paper, and a final. Definitely recommend this class to other students.", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c144" + } + }, + { + "text": "The Modern Middle East was co-facilitated by Professor Baron and a teaching assistant, but she had medical issues. So, the TA took over for the rest of the semester. The class is very easy since your midterm and final come straight from the lectures. Also, there are three very easy primary source assignments. Easy A in my opinion.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c145" + } + }, + { + "text": "Prof. Baron is one of ccny best professors. I really enjoy her class. She is very knowledgeable and down to earth. Thank you.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c146" + } + }, + { + "text": "She is intelligent,helpful, and flexible with the attendance. There are three papers, do the readings, participate a little and get an A. Learned a lot from this class but I wished she involved other books in the discussion too. One thing I didn't like was that she didn't involve Pakistan much that is very essential region. Overall great class!!:)", + "pos": 0.116, + "neu": 0.844, + "neg": 0.04, + "_id": { + "$oid": "6711d4aecd60fca157e5c147" + } + }, + { + "text": "The professor has a PhD. Very good in her Middle East history with some bias. Sometimes very confused. Easy to work with. Just attend and do the work and participate.", + "pos": 0.175, + "neu": 0.715, + "neg": 0.11, + "_id": { + "$oid": "6711d4aecd60fca157e5c148" + } + }, + { + "text": "The professor is a nice person, but the lectures don't help. You must read a lot if you are not familar with the topic, even though it is a intro class. You'll be reading over 150 page a week and 6 books. Plus 3 essays. Way too much work, I had to drop the class. Not congruous with a full time student.", + "pos": 0.029, + "neu": 0.888, + "neg": 0.083, + "_id": { + "$oid": "6711d4aecd60fca157e5c149" + } + }, + { + "text": "very nice person..lotssss of reading", + "pos": 0.436, + "neu": 0.564, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c14a" + } + }, + { + "text": "i totally disagree with the previous reviewer. she's really cool, and good at creating class discussion.", + "pos": 0.348, + "neu": 0.525, + "neg": 0.127, + "_id": { + "$oid": "6711d4aecd60fca157e5c14b" + } + }, + { + "text": "She talks and talks and talks!(Get the picture!)Very boring!", + "pos": 0.0, + "neu": 0.716, + "neg": 0.284, + "_id": { + "$oid": "6711d4aecd60fca157e5c14c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4aecd60fca157e5c14d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4aecd60fca157e5c14e" + } + }, + { + "text": "Excellent Prof. Brings the entire class into the discussion. Makes the class very friendly and fun to be in. Field trips and very interesting reading materials. Her students always take her classes and have formed very close relationships.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c14f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4aecd60fca157e5c151" + }, + "professor_name": "John Lombardi", + "rating": 3.5, + "department": "Chemistry department", + "comments": [ + { + "text": "Several years ago, I took this class. very smart professor. \nNo textbook . Provide 5 questions but you need to sit down and figure out if you are patience. If you figure out these 5 questions, you would get A.", + "pos": 0.048, + "neu": 0.911, + "neg": 0.042, + "_id": { + "$oid": "6711d4aecd60fca157e5c152" + } + }, + { + "text": "I dont know why he is still teaching. Since this course is online, I barely see what he wrote on his white board. He always rush at the end of the lecture, I dont feel like he cares about students. His exams are very hard. I dont know how grade will be like. Dont take him", + "pos": 0.09, + "neu": 0.848, + "neg": 0.062, + "_id": { + "$oid": "6711d4aecd60fca157e5c153" + } + }, + { + "text": "Prof Lombardi is an amazing lecturer. I took his class over 7 years ago and remember it fondly. He made thermodynamics fun and interesting. His test are TOUGH and grading ends up curved . The tests are not made easier to meet the abilities of the class but meant to test a true mastery of the subject. My average was likely in the 80s, I got an A.", + "pos": 0.176, + "neu": 0.781, + "neg": 0.043, + "_id": { + "$oid": "6711d4aecd60fca157e5c154" + } + }, + { + "text": "Skip class? You won't pass! Amazing lecturer about physical chem. He really want you to learn but you have to put worth a whole hearted effort. The subject matter is tough but if you think critically about what you are being taught and then apply that to the hw and exams you get the grade you deserve. Hope for the averages of the exams be low. GL!", + "pos": 0.122, + "neu": 0.793, + "neg": 0.085, + "_id": { + "$oid": "6711d4aecd60fca157e5c155" + } + }, + { + "text": "If this man did not grade on a curve, his entire class will fail. He is a very tough grader, so the class average will be well below passing. Only problem I have with him is that he expects us to know how to solve problems when we've never learned how. There is no textbook, so tests are generated from lecture notes and problem sets.", + "pos": 0.051, + "neu": 0.745, + "neg": 0.204, + "_id": { + "$oid": "6711d4aecd60fca157e5c156" + } + }, + { + "text": "great professor, learned a lot. exams are straightforward if you know the equations and how to apply them. high standards, he won't hold your hand or give you answers - he makes you work for it", + "pos": 0.101, + "neu": 0.835, + "neg": 0.065, + "_id": { + "$oid": "6711d4aecd60fca157e5c157" + } + }, + { + "text": "Dr. Lombardi is the greatest! The lectures are fantastic. If you don't attend lectures though, you're screwed because the class is entirely based on lectures, no books. The tests are heavy on conceptual questions, that is, questions which appear impossible to answer but which are actually rather simple when you understand what is being asked.", + "pos": 0.087, + "neu": 0.852, + "neg": 0.062, + "_id": { + "$oid": "6711d4aecd60fca157e5c158" + } + }, + { + "text": "You have to study your butt off for his class. Although he gives homewoks, don't expect exam questions to be similar. You need to understand, I repeat, you need to thoroughly UNDERSTAND thermodynamics concepts to do well in his class. don't think having covered thermodynamic laws in physics courses will suffice. you need to be a good notes takes", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c159" + } + }, + { + "text": "Attendance is not mand.,but he doesn't follow a book for much of material so notes should be taken and only place to refer to are notes. Open book tests. HW sets are given, but you need to attend them at your own time, and if you don't do the HW he won't help you at all. If asked to provide additional HW problems, he refuses.I Don't recommend him.", + "pos": 0.0, + "neu": 0.877, + "neg": 0.123, + "_id": { + "$oid": "6711d4aecd60fca157e5c15a" + } + }, + { + "text": "He's nice but very boring to listen to. The majority of the class go to Salame class since both classes are basically the same. Drops a test. One test is 15%. final is 30%. Homework is somewhat easy. Quizzes are 10%. Because the questions isn't asking much, the point deduction is large. I once got 70% off for missing a minus sign. Expecting an A-", + "pos": 0.073, + "neu": 0.841, + "neg": 0.085, + "_id": { + "$oid": "6711d4aecd60fca157e5c15b" + } + }, + { + "text": "Good but not easy. He teaches out of his own notes, which means attendance is indirectly mandatory. Open book exams. He does curve, so for as long as your grades are above the class average you will pass. Best advice: do the problems and organize your notes so that you wont waste time searching during the exam. Highly recommended class.", + "pos": 0.199, + "neu": 0.711, + "neg": 0.089, + "_id": { + "$oid": "6711d4aecd60fca157e5c15c" + } + }, + { + "text": "Awesome professor, he challenges you to know the material before you ask a question.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d4aecd60fca157e5c15d" + } + }, + { + "text": "This guy has an amazing and irreverent ability to explain very difficult subjects. I highly recommend him.", + "pos": 0.36, + "neu": 0.527, + "neg": 0.113, + "_id": { + "$oid": "6711d4aecd60fca157e5c15e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4afcd60fca157e5c160" + }, + "professor_name": "Heriberto Moran", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "No order in class. He reads off the slides, it's hard to hear him, lets every student interrupt with questions which is distracting. He also dives straight into practice problems without explaining how concepts are connected. His lectures are not helpful, you have to teach yourself. I wish he had better slides. Cons outweigh pros :(", + "pos": 0.108, + "neu": 0.661, + "neg": 0.232, + "_id": { + "$oid": "6711d4afcd60fca157e5c161" + } + }, + { + "text": "This class is very tough and the lectures are a complete waste of time. He is a very boring and unclear lecturer, and I didn't get anything out of going to lectures. Attendance was not mandatory and was not taken, so I ended up skipping lecture and teaching myself the material. Tests are very tough but basically ripped off of quizlets online.", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d4afcd60fca157e5c162" + } + }, + { + "text": "Nice professor, make sure you study the textbook and watch videos!!", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c163" + } + }, + { + "text": "Professor Moran is very kind and truly cares about students understanding material and doing well. Exams are multiple choice and not too hard as he also provides review sheets and practice questions. You need to read the textbook and learn the material mostly on your own. He provides various extra credit opportunities and is a generous grader.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c164" + } + }, + { + "text": "Easiest A+ of my life.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c165" + } + }, + { + "text": "Kind professor, very lenient with assignments, and doesn't assign too much hw. He always addressed and resolved students' complaints with their lab instructors. He will answer any question you may have thoroughly. Tests are fair. However, he reads through the slides word by word and I wish he digested the material further. Overall, great professor.", + "pos": 0.25, + "neu": 0.711, + "neg": 0.04, + "_id": { + "$oid": "6711d4afcd60fca157e5c166" + } + }, + { + "text": "he is so nice, he curved my grade so much. just do your pre-reading and top hat quizzes (extra credit) and you should be set", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c167" + } + }, + { + "text": "Most of the knowledge that you need for this class comes from the textbooks. The tests are a little hard but Prof Moran uses a curve. He also uses TopHat for extra credit (trust me...do all the extra credit), it will usually bump up your final grade to one letter grade higher. Official Text: OpenStax Biology2e ; Preferred Text: Campbell's Bio (11e)", + "pos": 0.16, + "neu": 0.825, + "neg": 0.015, + "_id": { + "$oid": "6711d4afcd60fca157e5c168" + } + }, + { + "text": "Professor Moran is a pretty good professor, and he's a really nice guy too. He offers extra credit to boost your grade, and he curves for each exam and the final grade. His exams are very though though, so you do need to put in a lot of time to study. Other than that, he's a good instructor for the course and I would recommend you take him.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c169" + } + }, + { + "text": "Professor Moran is great. Exams were straightforward questions from the readings. He also gives extra credits if you ask", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c16a" + } + }, + { + "text": "I had Heriberto back when he was teaching for bio lab. He is so sweet, compassionate and helpful, he genuinely made me enjoy coming to lab regardless of the class being a nightmare itself. He's teaching bio lecture now but he is truly the best, take him if you can!", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c16b" + } + }, + { + "text": "His exams are easy. Take him if you want easy grade", + "pos": 0.47, + "neu": 0.53, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c16c" + } + }, + { + "text": "He is a good professor. Clear about what you need to focus on", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c16d" + } + }, + { + "text": "Prof. Moran was a really good professor. Curved a lot on the exams, lectures are a bit disorganized but just read his study guide and you should be good.", + "pos": 0.177, + "neu": 0.775, + "neg": 0.048, + "_id": { + "$oid": "6711d4afcd60fca157e5c16e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4afcd60fca157e5c170" + }, + "professor_name": "Thomas Barber", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Awesome Professor who teaches technical skills in a easy and fun way. We had weekly quizzes based on assigned readings by Professor, and he dropped lowest 2 quizzes. Every assignment was easy, and the best thing you can improve your grades by submitting your assignments again and again. Very cooperative and helping Professor. Easy A if you do work.", + "pos": 0.328, + "neu": 0.639, + "neg": 0.033, + "_id": { + "$oid": "6711d4afcd60fca157e5c171" + } + }, + { + "text": "Professor Barber is very nice and gives very good explanations in class about what is expected. He goes over the assignments very well and records them so you can come back to them later. He answers any questions you may have and is always available for office hours.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c172" + } + }, + { + "text": "I loved Professor Bs class. He is very helpful and an excellent professor. He constantly gives constructive and good feedbacks. He is also very fair when grading. He doesnt put any extra pressure and gives good amount of time to hand in the assignments. I loved his class because he is very inspirational and responsive.", + "pos": 0.413, + "neu": 0.559, + "neg": 0.028, + "_id": { + "$oid": "6711d4afcd60fca157e5c173" + } + }, + { + "text": "he was very flexible during covid and gave great feedback on papers. really engaging in class, gave simple quizzes every class to see if you did the readings, which are simple. the assignments really prepare you for professional documents. follow his handouts and you'll get a good grade on your papers. funny and helpful, highly recommend him", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c174" + } + }, + { + "text": "Professor Barber give great feedback on all of your assignments and is very understanding. He really respects his students and is committed to their success. Overall a great professor, and a great guy.", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c175" + } + }, + { + "text": "Best professor ever! He helped me to trust myself. Gave good feedbacks. If you need extra time at the end of the class, he'll give you!", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c176" + } + }, + { + "text": "The best. Seriously, the best!! Very inspirational and understanding. Very clear with his assignments. He's just great. You can easily get an A if you put effort in the assignments.", + "pos": 0.471, + "neu": 0.493, + "neg": 0.036, + "_id": { + "$oid": "6711d4afcd60fca157e5c177" + } + }, + { + "text": "Very organized, stimulating, present. His fiction workshop actually changed my life. He's very accessible and believes in all of his students, but meets them where they are. He's been helpful to me even after taking his class because he knows how valuable his insight is to me and he's teaching in order to provide something meaningful to students.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c178" + } + }, + { + "text": "I love him !!! I wish I could tell him though ! I wonder if he is into men ? Anyways, He's the best professor ever . Take him you won't regret", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c179" + } + }, + { + "text": "Very good professor. Cares about his students. Only gave 3-4 papers and provided guidance and advice for all papers which was very helpful. Requires 2 textbooks which were barely used and easily found online.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c17a" + } + }, + { + "text": "Do what you need to do and you'll get an A. I took him in the summer and thank God because he was so good and understanding. He's clear on what he wants and he's a funny dude. Would deff take him again.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c17b" + } + }, + { + "text": "Great teacher; gives good feedback on papers and it helps you to improve a lot.", + "pos": 0.532, + "neu": 0.468, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c17c" + } + }, + { + "text": "Amazing class. Had Professor Barber for Fiction Workshop and it was a great class. I had to workshop twice in his class and he was super helpful with his comments towards your writing pieces. He is willing to meet with you when you need help at any given time. Easy A if you do the work and participate.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c17d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4afcd60fca157e5c17f" + }, + "professor_name": "Vitaly Sukharenko", + "rating": 3.7, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He was ok for Engr 10300. The best thing to do is to save the formulas and methods to your MATLAB file and learn how to make/use functions. That way, you don't have to worry about the actual math or theory behind the topics.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c180" + } + }, + { + "text": "very good teacher, knows his stuff, tries to make curriculum relevant to the real world, pretty challenging but you always seem to figure it out so it's awesome. He's not a \"teacher\" because I think he's teaching as a way to give back to the school or community but just a hunch.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c181" + } + }, + { + "text": "One of the best classes I've taken. However, some assignments were a bit difficult which we had to figure out ourselves. Read the textbook to help with the homework. His lectures are not very helpful but his recitations are.", + "pos": 0.104, + "neu": 0.814, + "neg": 0.082, + "_id": { + "$oid": "6711d4afcd60fca157e5c182" + } + }, + { + "text": "He is a good professor and he makes the material very relevant with real applications. Throughout the class, your are asked to solve various challenges which were rarely easy but I had so much fun doing them that I would say it was one of the best classes I've ever taken. Bring your creative problem solving for this class because you'll need it.", + "pos": 0.272, + "neu": 0.664, + "neg": 0.065, + "_id": { + "$oid": "6711d4afcd60fca157e5c183" + } + }, + { + "text": "Fav professor I've had at CCNY so far. Knows his stuff and actually treats the students like adults. Goes through lecture quickly, but every other class is recitation-style. 1 HW per week, graded only on completeness. Multiple choice quiz every other week. Midterm and final were very straightforward if you understand the material. Class was curved.", + "pos": 0.065, + "neu": 0.935, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c184" + } + }, + { + "text": "One of the best teachers to grace this college. He is so good at teaching and if you ask a question during the lectures, he will know the answer. His quizzes are super tricky and will easily drop your grade. Midterm and final are easy if you study the textbook problems.", + "pos": 0.292, + "neu": 0.615, + "neg": 0.094, + "_id": { + "$oid": "6711d4afcd60fca157e5c185" + } + }, + { + "text": "1 homework per week, 3-4short questions from the text. The PDF is easy to find. The semester is cut into 2 parts/tests. 1st half is Ch. 1-4 2nd is Ch 5-8. During the 2nd part, he will assign little circuit simulations. I used LOGISIM. Quizzes are common, 3 multiple choice each quiz (some r tricky). Skimming the text helps. 1 Group Project (wasFun).", + "pos": 0.081, + "neu": 0.865, + "neg": 0.054, + "_id": { + "$oid": "6711d4afcd60fca157e5c186" + } + }, + { + "text": "the lectures don't help much but the recitations does, the exams are straight forward If you read the book or you get the slides from other classes which will help. As a professor he doesn't seem to give alot of interest to this class; sometimes he makes this class hard although it should not be. make sure you do the homework,quiz and projects.", + "pos": 0.136, + "neu": 0.785, + "neg": 0.078, + "_id": { + "$oid": "6711d4afcd60fca157e5c187" + } + }, + { + "text": "not recommend to take him if you don't read the book. Actually he points out the important stuff in about half hours usually(the class is 1 hour and 15 mins), the rest is learning by yourself. Homework is important and two extra credits if you want to do. 1 midterm and final. you need to practice a lot because it is easy to make mistake", + "pos": 0.141, + "neu": 0.797, + "neg": 0.062, + "_id": { + "$oid": "6711d4afcd60fca157e5c188" + } + }, + { + "text": "He is a pretty good prof. He is only confusing if you don't read the chapter a little before going to class. I loved this class and I will totally take it again. Oh, and his exams are super easy, just know your stuff and you'll be in good shape. strict cheating policy too. Just do all the assignments and extra cred and you will be in good shape.", + "pos": 0.257, + "neu": 0.681, + "neg": 0.062, + "_id": { + "$oid": "6711d4afcd60fca157e5c189" + } + }, + { + "text": "he will help you after class, if you have questions. his lectures are fast and always in rush. pretty much have to teach yourself most of the stuff. its possible to get an A if you do better than average cuz he curves.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d4afcd60fca157e5c18a" + } + }, + { + "text": "Concepts are easy to understand if you put some time into it. Professor is horrible and made concepts so much harder to understand. Test were easy provided you read the book and understand whats going on. Take if you have no choice cause there are other professors that are better.", + "pos": 0.146, + "neu": 0.758, + "neg": 0.096, + "_id": { + "$oid": "6711d4afcd60fca157e5c18b" + } + }, + { + "text": "He is not that helpful. lectures are not very helpful. Its better to study by yourself. his policy is 40% home work 25% midterm and 35% final. gives two extra credit to replace lowest homework grade. attendance matters. the class itself is not that hard. if you study you have a chance to get easy A", + "pos": 0.193, + "neu": 0.696, + "neg": 0.111, + "_id": { + "$oid": "6711d4afcd60fca157e5c18c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b0cd60fca157e5c18e" + }, + "professor_name": "Jianguo Ji", + "rating": 4, + "department": "Asian Studies department", + "comments": [ + { + "text": "A best professors I can still recall, 6 years after I got my Masters in International Relations at CCNY. Insightfully humorous. Making you think holistically. No mechanical memorization, but a lot of facts to analyze, and unexpected questions to answer,but it is fun. Learned a lot without knowing it. Take him if you really want to enrich yourself.", + "pos": 0.164, + "neu": 0.811, + "neg": 0.024, + "_id": { + "$oid": "6711d4b0cd60fca157e5c18f" + } + }, + { + "text": "Humorous, knowledgeable, friendly, guiding, and sometimes with very challenging questions for you to think about related issues.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c190" + } + }, + { + "text": "good prof. help out students. it is a kind of independent study in his class. if you want to learn, you got to do your own research. A++++ teacher.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c191" + } + }, + { + "text": "I like his Unique approach; interesting class. Less work and it is an easy A for those who do the very few, but comprehensive assignmnets that he gives.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c192" + } + }, + { + "text": "very good prof. no finals nor quiz. you must take him. A+++", + "pos": 0.204, + "neu": 0.639, + "neg": 0.157, + "_id": { + "$oid": "6711d4b0cd60fca157e5c193" + } + }, + { + "text": "one of the best prof in City College. gives out A easily. understanding students. he tryed all his effort to make it easy for you. he is very smart at history. even in the language class, you can still hear him lecturing about the China-America Relationship. extremely good teacher. A++", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c194" + } + }, + { + "text": "very good, easy A. must take him.", + "pos": 0.56, + "neu": 0.44, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c195" + } + }, + { + "text": "Easy \"A\". Take the class you'll love it. Saw \"Hero\" a year before it came to America. Put up with the Red Chinese parade film in the first two classes and you won't regret it. Don't bother buying the books. He doesn't usae them. Watch the movie, write a page review and collect 3 credits. Has trouble with the projector.", + "pos": 0.24, + "neu": 0.723, + "neg": 0.037, + "_id": { + "$oid": "6711d4b0cd60fca157e5c196" + } + }, + { + "text": "Ji is not very helpful. His teaching style is awful. He was the cause of poor attendance in the class. It was a very painful experience.", + "pos": 0.0, + "neu": 0.65, + "neg": 0.35, + "_id": { + "$oid": "6711d4b0cd60fca157e5c197" + } + }, + { + "text": "He is probabaly one of the best Prof. at CCNY. He has great knowledge. He is patient when students ask question. He always find a way to make students to learn from his lectures. Make students to think deep beyond what he tries to teach.He's friendly and always open the door for students whenever they need help.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c198" + } + }, + { + "text": "Very nice person. His classes are very easy, but not very intellectually stimulating, and he is not very good at teaching. Unless getting easy A's is your only goal, you shouldn't take his class.", + "pos": 0.175, + "neu": 0.612, + "neg": 0.213, + "_id": { + "$oid": "6711d4b0cd60fca157e5c199" + } + }, + { + "text": "had him for chinese film class. Easy class, never gave an exam only had to write review about the movies we saw. I got an A- probably becasue i didn't participate and i was absent a few times.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c19a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b0cd60fca157e5c19c" + }, + "professor_name": "Rebekka Rudin", + "rating": 2, + "department": "Art History department", + "comments": [ + { + "text": "subtracted point fromthe final for common letter, lack of apostrophes and \"BC\"", + "pos": 0.0, + "neu": 0.827, + "neg": 0.173, + "_id": { + "$oid": "6711d4b0cd60fca157e5c19d" + } + }, + { + "text": "I love art history and this lady made me fear it. She is extremely technical and you can tell she studied art because it was the only thing she could memorize and not because she loved it. This lady is stale and anal. She is like the antagonist in Terminator 2, what's his name T1000..Don't listen to anyone who says she is good, she's Crazy!", + "pos": 0.121, + "neu": 0.729, + "neg": 0.15, + "_id": { + "$oid": "6711d4b0cd60fca157e5c19e" + } + }, + { + "text": "She is very good and very helpful. I like her alot. I don't know why people say that kin dof stuff.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c19f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a0" + } + }, + { + "text": "Professional and experienced. Demanding. Clear and coherent while explaining art terminology. Disciplined and highly educated. She has perfest studying methods that will help student to do well while studying at leading U.S. Universities such as Harvard, Yale, and Columbia.", + "pos": 0.167, + "neu": 0.79, + "neg": 0.043, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a1" + } + }, + { + "text": "Rudin does demand a lot of MEMORIZATION for the midterm and the finals but the museum papers are not that demanding and she gives opportunities for re-writes She seems a bit inexperienced but I havent seen her bad attitude that everyone complains about. Just get on her good side and you'll be fine!!", + "pos": 0.238, + "neu": 0.692, + "neg": 0.07, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a2" + } + }, + { + "text": "I HATE HER...SHE IS CRAZY...THE LADY IS PSYCHO...WE WANNA EGG HER CAR (i doubt we actually will though) MY GOD SHE IS A HORRIBLE LADY", + "pos": 0.081, + "neu": 0.6, + "neg": 0.319, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a3" + } + }, + { + "text": "Things may seem to start off nicely enough, but asks for too much work to memorize, can get VERY cranky, and tries to overcompensate for her inexperience", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a4" + } + }, + { + "text": "She's a very inexperienced professor, very unhelpful and extremely boring. She's not clear about the assignments and there is not many of them so it's hard to get a decent grade. Too demanding for the intro art class.", + "pos": 0.0, + "neu": 0.803, + "neg": 0.197, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a5" + } + }, + { + "text": "Shes a sexy prof but her looks do not make her interesting boring class and the way she teaches it is even worse i doubt you could ever stay awake in her class she is so boring grades you on little work so its hard to pass beware of her moodyness also and hopefully you never call her mrs. shes prof.", + "pos": 0.074, + "neu": 0.68, + "neg": 0.247, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a6" + } + }, + { + "text": "bad attitude doesnt help out students grades to harsh too many useless things to memorize", + "pos": 0.0, + "neu": 0.49, + "neg": 0.51, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a7" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4b0cd60fca157e5c1a8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b1cd60fca157e5c1aa" + }, + "professor_name": "Norma Anderson", + "rating": 3.8, + "department": "Sociology department", + "comments": [ + { + "text": "As long as you attend all the lectures and keep up with the readings, you will be fine. Very devoted to her teaching.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1ab" + } + }, + { + "text": "I didn't think I'd like this class because it's not my area but I really did. Interesting material, prof not boring at all, good discussions. And she responded to emails and helped me out.", + "pos": 0.245, + "neu": 0.717, + "neg": 0.037, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1ac" + } + }, + { + "text": "If u are SOC majors u should minor in Anthropology. It's very similar to N can help wit UR SOC field. Anthropology studys all about humans N U can better understand more broadly about people N relate it 2 SOC if u hate bio, archeology avoid ANT classes related to those and try to take classes related to Cultural ANT cuz dat field is more like SOC", + "pos": 0.11, + "neu": 0.813, + "neg": 0.077, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1ad" + } + }, + { + "text": "She's a little laid back when it comes to work. Pretty easy assignments, almost an easy A. 3 papers, 2 tests.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1ae" + } + }, + { + "text": "She's a fair teacher. You don't have to buy a textbook for this class. Instead she post readings from the textbook on to blackboard. She's not tough on attendance at all so mines was about 70%. As long as you do all the readings the class is easy.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1af" + } + }, + { + "text": "Great teacher, Interesting ideas. Her exams are easy its just that their a lot of thinking and you have to write essays from it. Her research papers are interesting and makes you look into the world like you normally wouldn't do. She does expect a lot if you want an \"A.\" But its worth it cause you learn so much.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b0" + } + }, + { + "text": "Very Interesting Class, Learn A LOT of new ideas and helps you think of the real world in more detail. She does assigns plenty of reading. I sorta feel like this was a \"English\" class more than a \"Sociology\" class. Anyways, if you don't like reading don't take her. Otherwise, She's pretty helpful. I her 4-5 because she didn't have any office hour.", + "pos": 0.189, + "neu": 0.782, + "neg": 0.029, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b1" + } + }, + { + "text": "great professor. she is young and interesting. teaches you a lot about the real world. i loved this class.", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b2" + } + }, + { + "text": "She is tough and expects a lot but I went to her for help and she was really helpful and fair. I like her and learn a lot in the class. The assignments are interesting and not hard.", + "pos": 0.374, + "neu": 0.602, + "neg": 0.024, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b3" + } + }, + { + "text": "GPA Killer!!!", + "pos": 0.0, + "neu": 0.162, + "neg": 0.838, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b4" + } + }, + { + "text": "Grade is based on 3 RESEARCH Papers (50), 2 test (40), and Presentation (10). There is A LOT of reading in her class. You have to read them because she ask short answer/multiple choice questions about them on her test. She doesn't take off a whole lot of points for mistakes, but it is definitely HARD to get A's in her class.", + "pos": 0.053, + "neu": 0.881, + "neg": 0.066, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b5" + } + }, + { + "text": "Hard Grader. Everything you do Counts, No Dropping. Assigns HW Articles (30+ Pages) every class and then Test you in Detail using the \"Sociological Perspective\", Three papers in which you must Research. Take another professor, she makes you do a lot of work for an \"Introductory\" class in which more than 50% of the class are NOT SOCIOLOGY Majors.", + "pos": 0.0, + "neu": 0.941, + "neg": 0.059, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b8" + }, + "professor_name": "Peter Brinkmann", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "He is super clear, a very good professor and his tests are not too easy not too hard. However, he is very strict when grading. Also, he won't be available out of class.", + "pos": 0.265, + "neu": 0.676, + "neg": 0.058, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1b9" + } + }, + { + "text": "Great professor!! teaches very clear!!", + "pos": 0.731, + "neu": 0.269, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1ba" + } + }, + { + "text": "He is a great proffesor. He cares about his students learning the material and does everything he can to help you. His exams are difficult, but fair.", + "pos": 0.282, + "neu": 0.665, + "neg": 0.053, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1bb" + } + }, + { + "text": "He is a great professor, and a really smart one in this field. He came to class with just an attandent sheet and a box of CaCO3. All notes and questions and answers are in his mind during teaching. He is also a passionate and patient teacher. If you well-prepare and take all his class, nothing in the textbook will be hard to you.", + "pos": 0.146, + "neu": 0.835, + "neg": 0.019, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1bc" + } + }, + { + "text": "I found him to be a not only interesting professor, but a helpful one. However, dont expect an easy A. His lectures can get intense but his tests are usually example he has done before. Strongly recommend", + "pos": 0.236, + "neu": 0.663, + "neg": 0.101, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1bd" + } + }, + { + "text": "What a guy?! He is patient, thoughtful, explains in detail even basic math as a supplement, organized, talks to you after class or in office to show you stuff from bottom up on your level, he cares, I recommend him supremely, CCNY great job getting this guy from UIUC or Germany. Sets standard how every professor should be.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1be" + } + }, + { + "text": "Helpful, patient, explains well, has office hours to talk to you even covering basic stuff, organized, knows his stuff, thoughtful, proff, keep up the good job. CCNY, great job getting this man from UIUC or Germany.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1bf" + } + }, + { + "text": "He's a great professor. Very understanding. Very helpful. His test is fair if you study. He has recommend problems set. When he will collect, it he'll tell you before.", + "pos": 0.315, + "neu": 0.616, + "neg": 0.069, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1c0" + } + }, + { + "text": "easy test if you read the book. he might be hard at explaning stuff, the book can supplements", + "pos": 0.143, + "neu": 0.788, + "neg": 0.069, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1c1" + } + }, + { + "text": "He's GREAT!", + "pos": 0.837, + "neu": 0.163, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1c2" + } + }, + { + "text": "excellent professors one of the best in ccny they really hit the jackpot when they hired this man, tests are very fair, he has a lot of patience when it comes to asking questions", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1c3" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4b1cd60fca157e5c1c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b2cd60fca157e5c1c6" + }, + "professor_name": "Ashna Ali", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "If you're looking for an easy A keep looking. She require you to do a lot of work and she gives out complicated reading assignments that is hard to understand (even for her) and the questions are not as straight forward. The writing assignments are intense. She wants you to write a specific kind of way but never discusses \"her way of writing.\"", + "pos": 0.048, + "neu": 0.913, + "neg": 0.039, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1c7" + } + }, + { + "text": "extremely helpfull! so considerate! show up, do well on essays and get A", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1c8" + } + }, + { + "text": "Everything you learned about how to write essays in highschool is wrong according to her. Its supposed to be a world humanities class I didnt know we were supposed to be journalists. She barely even teaches \"her\" writing style. Don't let her tell you that you're not a good writer. Worked so hard on my papers and she gave me a C smh. Avoid!!!", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1c9" + } + }, + { + "text": "LOVED HER, awesome professor,very helpful when it came to papers and encouraging as well. Will definitely recommend! This class has helped me greatly when it came to writing papers for other classes.", + "pos": 0.474, + "neu": 0.526, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1ca" + } + }, + { + "text": "Not only did I waste my money on the useless text, Ali could barely give clear explanations on directions. For an INTRO class, she made it very difficult demanding skilled papers when she strategically cancelled classes to avoid teaching. Yes, at first I thought she was attractive, but that soon ended b/c of her condescending comments. AVOID HER.", + "pos": 0.081, + "neu": 0.709, + "neg": 0.211, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1cb" + } + }, + { + "text": "THE BEST PROFESSOR EVER!! She is hands down the most down to earth professor you will ever have. Her class discussions are never boring and you learn a lot. She is a tough grader, but everything else makes up for it. She is always willing to help you no matter what. Just read the books and do the weekly journals and participat and you'll do amazing", + "pos": 0.181, + "neu": 0.788, + "neg": 0.031, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1cc" + } + }, + { + "text": "SHE IS AWESOME! one of the best professors I ever had. She is lovely. Just be on time, attend, do your papers, participate and if you need help just ask her. She will actually tell you what you need to work on and focus on you getting better on that!", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1cd" + } + }, + { + "text": "ALWAYS BE ON TIME! She does not do the grace period everyone at CCNY is aware of. Just show up, read, and do two paper (she is very demanding)", + "pos": 0.0, + "neu": 0.849, + "neg": 0.151, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1ce" + } + }, + { + "text": "Awesome professor she is very helpful in class and by email. gives you extra help if she thinks you need it.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1cf" + } + }, + { + "text": "please be on time and of course be there everyday shes really strict with attendance and also participate a lot she will adore you,Other than that shes ok i mean after all this is a writing class there will be lots of writing and yes you will get the grade you deserve on papers so try your best. she is also flexible with the due dates.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d0" + } + }, + { + "text": "She is a very good professor. Don't be late she would mark you absent. No Midterm, or Finals, just papers. Do your papers, be on time, and try to participate and you'll do GREAT.", + "pos": 0.195, + "neu": 0.752, + "neg": 0.053, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d1" + } + }, + { + "text": "DO NOT BE LATE! She will take points off... she is very undrestanding and a very good professor! No midterm!!! No final!!! Just attend the class, participate and do your paper", + "pos": 0.17, + "neu": 0.763, + "neg": 0.067, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d4" + }, + "professor_name": "Gokce Sargut", + "rating": 3.7, + "department": "Economics department", + "comments": [ + { + "text": "Took him on the graduate level. He is intelligent, down to earth, and very willing to help. He has a wealth of knowledge and is relate able, unlike most of the rest of the department. But of course, as the chairperson, yozzi berechman does, hes screwing students over by firing this wonderful professor. it will be a big loss for the students.", + "pos": 0.161, + "neu": 0.728, + "neg": 0.111, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d5" + } + }, + { + "text": "Great guy. Knows his stuff. Class was pretty interesting and useful. Very straightforward. Learned a lot in his class. A lot of group work.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d6" + } + }, + { + "text": "I neither liked him nor hated him. Tests are tricky but even if you screw up on an exam you can make up your grade with an extra credit quiz. There is a presentation and group project. It's possible to get a B or higher but it requires hard work.", + "pos": 0.1, + "neu": 0.789, + "neg": 0.111, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d7" + } + }, + { + "text": "He is a good professor, gives many extra credits and the calss is very helpful.", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d8" + } + }, + { + "text": "hez very good professor.i got and A on his class.lots of extra points.he doesnt take attendence.just make sure u know the materials of his class and exams are very easy.i recommend this professor.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1d9" + } + }, + { + "text": "he is a good teacher but boring. i had him for marketing and all he did was PP presentation every classes. take attendance every day. dont try to get sb else to sign in for u bc he does look sometimes. one midterm and final. multiple choices though. also a lot of extra-credit hw and one group presentation.", + "pos": 0.032, + "neu": 0.92, + "neg": 0.048, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1da" + } + }, + { + "text": "Great Professor.Very clear, and helpful.Highly recommended.Do the work and get the good grade.Stays away from the boring book.", + "pos": 0.371, + "neu": 0.541, + "neg": 0.089, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1db" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1dc" + } + }, + { + "text": "i got nothing out of the class... he doesent know how to teach...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1dd" + } + }, + { + "text": "Really nice guy but very boring and can be deceiving at times. Lots of presentations that help you learn nothing and dont bother participating because it seems like it wont affect your grade at all. You can sit there and take a few multipple choice exams and do well and you will get an A regardless of how much you participate. Nice guy though.", + "pos": 0.19, + "neu": 0.701, + "neg": 0.108, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1de" + } + }, + { + "text": "Easy going guy, take him if you can, but be prepeared for class presentation during the second half of the semester.It takes a lot of your time for other courses though,its okay but maybe reduce the number of presentations.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1df" + } + }, + { + "text": "Two exams. Two extra credit assignments. One group project which includes a 15 min presentation and a 20-30 page paper. Everything is straigtforward. Good social skills. Very helpful. Lectures are boring, but that probably has more to do with the material. marketing is pretty boring if you ask me", + "pos": 0.175, + "neu": 0.745, + "neg": 0.08, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e2" + }, + "professor_name": "Justin Turner", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "He's a nice professor. He's sarcastic sometimes. If you ask for help, he helps. He assigns Journals, papers and group projects. No finals from his class but a final essay is there.", + "pos": 0.156, + "neu": 0.757, + "neg": 0.087, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e3" + } + }, + { + "text": "great professor very clear", + "pos": 0.778, + "neu": 0.222, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e4" + } + }, + { + "text": "Justin is a wonderful professor. He's very laid back and has a great sense of humor. His class was a lot more entertaining than other English classes I've taken. Not only is he enthusiastic about the subject matter, but he's also well informed. I would recommend that you take his class!", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e5" + } + }, + { + "text": "Even though he was clear on what he wanted, his class was definitely not easy. It was very hard. He gave us two essays (3 pages each), two quizzes, and a final. I got As on my essays and A+ on the final but Bs on my quizzes. He lets you bring your notes to use but they do not help much because he asks for a LOT. Just, TALK ALOT...he's wonderful. :)", + "pos": 0.15, + "neu": 0.78, + "neg": 0.07, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e6" + } + }, + { + "text": "Science Fiction class was fantastic and I couldn't have asked for a better professor. Such a great professor, knowledgeable, very helpful and friendly. Hand in things early if you can for feedback and a better grade! Hope you teach again in the future!", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e7" + } + }, + { + "text": "he is an easy grader and if you participate you will do fine BUT he is so rude while doing it. he is so sarcastic and thinks that because he is lenient he can get away with anything. he was never clear and very unorganized. he was also very cruel during class and even via email. if you can deal with him during the semester than take the course.", + "pos": 0.07, + "neu": 0.728, + "neg": 0.201, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e8" + } + }, + { + "text": "HE TRIES TO KEEP YOU INTERESTED AND DISCUSSING THE TEXT. IF YOU PARTICIPATE, READ OR AT LEAST KNOW WHAT YOU ARE TALKING ABOUT YOU WILL PASSS. BOOKS ARE REQUIRED THOUGH.WHETHER EBOOKS OR HARD COVER BUT USUALLY SIMILAR VERSION REQUIRED.", + "pos": 0.046, + "neu": 0.924, + "neg": 0.03, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1e9" + } + }, + { + "text": "Good sense of humor, replies back to emails fast enough, loves class discussions so it's important to read the books and know what they are about. You'll pass if you participate and do the work.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1ea" + } + }, + { + "text": "Interesting class and good book choices for the course. Very clear and passionate about the subject.Make sure you complete all his assignments- papers and the readings.He enjoys class discussions. Keep in mind if you don't answer his questions, he won't answer yours. Tends to laugh at his own jokes but a very down to earth prof.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1eb" + } + }, + { + "text": "Once you get past the unusual comments and directness Tuner's classes are pretty good and interesting. Hand in all the assignments early and participate in class. It isn't rocket science. He is direct about what he want and how he wants it.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1ec" + } + }, + { + "text": "this professor is very good, funny, interesting, understanding and honest.", + "pos": 0.678, + "neu": 0.322, + "neg": 0.0, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1ed" + } + }, + { + "text": "Uptight, tough grader, rude, avoid him if you can, weird sense of humor, AVOID !!!", + "pos": 0.084, + "neu": 0.321, + "neg": 0.595, + "_id": { + "$oid": "6711d4b2cd60fca157e5c1ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f0" + }, + "professor_name": "Matthew McMurray", + "rating": 3.1, + "department": "World Civilizations department", + "comments": [ + { + "text": "Possibly, the best professor I have ever had. Very approachable; goes the extra mile. Clear, concise, detailed & organized. He's your teacher. He is supposed to quiz / test you & assign homework. You are still in school. What he is doing is the definition of school.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f1" + } + }, + { + "text": "this s the worst professor i ever had. even though i passed his class, please dont ever ever take this professor. HORRIBLE.", + "pos": 0.078, + "neu": 0.641, + "neg": 0.281, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f2" + } + }, + { + "text": "This guy is absolutly horrible!!!! He knows nothing about history whatsoever. He is all over the place and doesnt talk or test you on history! You have to read all of these books that have nothing to do with history. FIRE THIS GUY!", + "pos": 0.0, + "neu": 0.84, + "neg": 0.16, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f3" + } + }, + { + "text": "goes on tangents, took this course after reading his previous reviews here...hard grader on papers, makes you buy unnecessary books. Course should be renamed to China", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f4" + } + }, + { + "text": "Take the class with a different teacher, he makes it much harder than it needs to be. He is very unorganized and doesn't follow the syllabus.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f5" + } + }, + { + "text": "Just take this class with a different teacher. He isn't organized, not helpful, and a hard paper grader.", + "pos": 0.102, + "neu": 0.825, + "neg": 0.072, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f6" + } + }, + { + "text": "Horrible!! Please don't take him.", + "pos": 0.245, + "neu": 0.32, + "neg": 0.435, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f7" + } + }, + { + "text": "Super approachable. Dry, witty humor. Insightful and entertaining. Show up and do the easy work and you'll ace the course.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f8" + } + }, + { + "text": "He was absolutely amazing. Graded everything fairly, and class was always entertaining and somewhat thought provoking. Loved going to this class.", + "pos": 0.365, + "neu": 0.583, + "neg": 0.052, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1f9" + } + }, + { + "text": "Here is the secrete : He acts like he is a tough grader. But, Trust me , When you see your final grade, you will be surprised to get an A+ . I had a D average and my final grade was A- . Some idiots drop his class , thinking he will be tough. I am telling you : McMurray is the best of best professor I have ever had.An EASY A gurrented .", + "pos": 0.259, + "neu": 0.682, + "neg": 0.058, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1fa" + } + }, + { + "text": "This professor was awesome! The class was fun, and he was extremely helpful! I'm glad I was able to take a course with him. Just to remind you : He says many things in the first week. You might think, he is gonna be tough. Trust me , he is really easy in grading. This is the only class I had A+ . If you want to BOOST your GPA then take him. A++++", + "pos": 0.278, + "neu": 0.706, + "neg": 0.016, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1fb" + } + }, + { + "text": "Very Very Very easy . Easy A . No Paper. Just one midterm and one final. Thats it. The review he gives before midterm and final covers everything. Dont take attendance.", + "pos": 0.186, + "neu": 0.755, + "neg": 0.059, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1fc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b3cd60fca157e5c1fe" + }, + "professor_name": "Laura Gannon", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Professor Gannon is very nice and she is helpful but you have to read everything she tells you to read , random quiz and you will be lost if you do not ask questions. Overall long class but very nice professor", + "pos": 0.168, + "neu": 0.77, + "neg": 0.061, + "_id": { + "$oid": "6711d4b3cd60fca157e5c1ff" + } + }, + { + "text": "I did not take her class in NYC. I took her my very first semester in SCCC & she was very helpful, not sure if she is still teaching but I just wanted to say she is awesome.", + "pos": 0.174, + "neu": 0.79, + "neg": 0.036, + "_id": { + "$oid": "6711d4b3cd60fca157e5c200" + } + }, + { + "text": "This professor is an ideal example of a classical boring, unhelpful, monotone, professor. Paper may have a few extra bits of info. and she burns your grade for it; without warning of that in class. She takes forever to give back papers, so you cant see your mistakes until you hand in the other papers. felt like its impossible to get more than a B+.", + "pos": 0.178, + "neu": 0.791, + "neg": 0.031, + "_id": { + "$oid": "6711d4b3cd60fca157e5c201" + } + }, + { + "text": "Nice teacher. Gives you a reader so you don't have to buy the book. Readings are pretty interesting as well as class discussions. Not a hard class at all. You get a chance to revise each paper you hand in and they're all fairly short assignments. Very possible to get an A.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c202" + } + }, + { + "text": "Great Professor, doesn't make you buy the book, instead she compiled a reader that she gives out for free (this alone is a great sign of a teacher that cares), class time is pointless but that's the same for any writing class, the point is the writing, assignments are fare and if you know english and put in a normal amount of effort its an eazy A.", + "pos": 0.127, + "neu": 0.851, + "neg": 0.022, + "_id": { + "$oid": "6711d4b3cd60fca157e5c203" + } + }, + { + "text": "It's not an easy A as others prof for this class, but you still can get a very fair grade. A lot of work, she never satisfies with your writing, but is very nice person.", + "pos": 0.174, + "neu": 0.717, + "neg": 0.109, + "_id": { + "$oid": "6711d4b3cd60fca157e5c204" + } + }, + { + "text": "She is one of these good professors who are serious about their job. Very helpful, answers every email from her students, clear, be prepared that her class requires a lot of writing.", + "pos": 0.27, + "neu": 0.696, + "neg": 0.034, + "_id": { + "$oid": "6711d4b3cd60fca157e5c205" + } + }, + { + "text": "She gives alot of writing assignments and there is alot of peer editing. She is very nice and will help you if you have a problem. Her class discussions are very interesting and she is a mild grader. I highly recommend her. She is excellent. If you get less than a B, its your own fault. Take her!", + "pos": 0.216, + "neu": 0.709, + "neg": 0.075, + "_id": { + "$oid": "6711d4b3cd60fca157e5c206" + } + }, + { + "text": "Great feedback on assignments. Lots of writing, but it is a writing course. My writing improved greatly by the end of the course. Overall, I'd say take the course with her.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c207" + } + }, + { + "text": "well organized, gives a syllabus/calendar at the beginning of the semester. not too difficult, but lots of writing. peer review is helpful, and two drafts for bigger papers. overall pretty solid.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c208" + } + }, + { + "text": "Took 210.07 (Writing For Engineers). Enjoyed the class, but expect to do a lot of writing.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c209" + } + }, + { + "text": "I can only say, \"She's the best\"", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d4b3cd60fca157e5c20a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b4cd60fca157e5c20c" + }, + "professor_name": "Aidong Shen", + "rating": 3.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "This professor is alright in terms of going over the material and then expects us to use the slides to guide us through the HWs, important note, he does not give away actual solutions but rather the concepts and steps, which is ideal for partial in his exams, exams are straightforward from the HW's and maybe example slides. Effort matters!", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c20d" + } + }, + { + "text": "Hes better than manassah, first exams were not bad but the final was brutal and the wording of the questions was very complex. His curve is dependent on the highest grades so if someone does really well then there is no curve. Luckily we got a curve, ask him to show examples on the board because the class is very theoretical and slides skip steps!", + "pos": 0.089, + "neu": 0.754, + "neg": 0.157, + "_id": { + "$oid": "6711d4b4cd60fca157e5c20e" + } + }, + { + "text": "I like him but anyone but Manasseh wouldve been great. Aidong has a harsh accent and he is impatient when answering questions. Do your absolute best to attend his office hours because he does not give homework answers in detail in class which is extremely important since the exams depend on it. Dont copy, keep studying, youll be fine.", + "pos": 0.235, + "neu": 0.678, + "neg": 0.087, + "_id": { + "$oid": "6711d4b4cd60fca157e5c20f" + } + }, + { + "text": "Overall solid choice for Semiconductors. He tries his hardest to explain the subject and listens to all questions. He is overall a very nice person but his exams can be tricky. Final was brutal this year as we didn't have enough time and the exam was long.", + "pos": 0.062, + "neu": 0.798, + "neg": 0.14, + "_id": { + "$oid": "6711d4b4cd60fca157e5c210" + } + }, + { + "text": "horrible professor", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d4b4cd60fca157e5c211" + } + }, + { + "text": "His lectures are precise. However, he teaches monotonously and disinterestedly, almost robotically. His final exam was 95% the sam as the previous one. So, you can study hard all the semester and get a good grade, or you can just get a previous final exam, get somebody to do it for you and remember the solution by heart. Not quite fair..", + "pos": 0.136, + "neu": 0.812, + "neg": 0.052, + "_id": { + "$oid": "6711d4b4cd60fca157e5c212" + } + }, + { + "text": "He's a decent professor. All of the material is taught very clearly in lecture and its obvious that he cares whether or not students understand. HWs are very tough, but they highly resemble the exams. Unfortunately he gives very little feedback - HWs are never returned and he only provides you with your exam grade.", + "pos": 0.067, + "neu": 0.857, + "neg": 0.076, + "_id": { + "$oid": "6711d4b4cd60fca157e5c213" + } + }, + { + "text": "he is good professor but his exams are tricky and hard. he takes alot points off small calculation mistakes. study from the lecture notes and the hw because the 60% of the hw comes out on exam.", + "pos": 0.047, + "neu": 0.791, + "neg": 0.162, + "_id": { + "$oid": "6711d4b4cd60fca157e5c214" + } + }, + { + "text": "PLEASE DISCARD THE RIGHT BEFORE COMMENT.. IT WAS NOT FOR PROF. SHEN..", + "pos": 0.161, + "neu": 0.699, + "neg": 0.14, + "_id": { + "$oid": "6711d4b4cd60fca157e5c215" + } + }, + { + "text": "U will not understand what he says. Just read the book and solve hw's. Follow what TA teaches. Have clear the concepts. He takes 3 exams (he drops the worst of the first two exams) but just counts 2. Problems are straightforward if u have clear the concepts. Easy A", + "pos": 0.173, + "neu": 0.727, + "neg": 0.101, + "_id": { + "$oid": "6711d4b4cd60fca157e5c216" + } + }, + { + "text": "One one best professors I ever had.You have to study to get a good grade.Although he teaches from his own powerpoint slides, his exam questions are also based on basic concepts from the book.80% questions are from the hw, but the other 20% are very basic.And make sure you do all the hw's but don copy them exactly from other's.he knows what u r doin", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c217" + } + }, + { + "text": "Good guy all around. Teaches well. He made the course slightly more difficult after he learned that many students were cheating in previous semesters. Very few get an A in his course and although he claims he doesn't curve, there might be a slight one.", + "pos": 0.096, + "neu": 0.787, + "neg": 0.117, + "_id": { + "$oid": "6711d4b4cd60fca157e5c218" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b4cd60fca157e5c21a" + }, + "professor_name": "Lane Gilchrist", + "rating": 3.2, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Professor Gilchrist was very helpful and his lectures were good. He gave two individual projects, one with VMD and the other one with Python. I have learned a lot new things. He was available in his office hours and offered help to download and work on VMD/Pyhton. He curved our grades at the end and the class was hybrid.Would take his course again.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c21b" + } + }, + { + "text": "He is one of the great professors in the department. Learnt a lot in this class as well in CHE 33000. He explains material to the point and easy to understand. He is always helpful and I would definitely take him again.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c21c" + } + }, + { + "text": "two semesters of learning from the text book.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c21d" + } + }, + { + "text": "Great class! Small correction the attendance is MANDATORY ! Plus if you actually want to learn something come to class.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c21e" + } + }, + { + "text": "This guy knows his stuff and I don't mean just boring formula derivations. He teaches real engineering! I truly enjoyed both of his classes, thermo2 and unit1. His lectures are very interesting they make you fal in love with the subject: like for example even the very first lecture of the Separation class made me want to go and design a unit or smt", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c21f" + } + }, + { + "text": "Great guy but a bit disorganized. Will help students who are struggling with material. Extremely approachable. Genuinely loves what he does. Excellent with partial credit. No curves.", + "pos": 0.414, + "neu": 0.393, + "neg": 0.193, + "_id": { + "$oid": "6711d4b4cd60fca157e5c220" + } + }, + { + "text": "Very nice outside of class but useless professor. Had to learn thermo 2 all on my own. entire class struggled. gave us a take home exam during holiday time for us to do and never replied back to his emails on time. very useless and sad really wasting my intersession on stupid coding exam that is barely do-able", + "pos": 0.07, + "neu": 0.628, + "neg": 0.302, + "_id": { + "$oid": "6711d4b4cd60fca157e5c221" + } + }, + { + "text": "As a human, very nice person. He understands students difficulties more than any other professor in the faculty. He doesn't pick on students or gives special favors. He gives research opportunities to all students regardless of grades. Whenever you have problem, talk to him! I'm sure he will help you as he can from professor's and human perspective", + "pos": 0.222, + "neu": 0.708, + "neg": 0.069, + "_id": { + "$oid": "6711d4b4cd60fca157e5c222" + } + }, + { + "text": "I was expecting so much out of this class. What ended up happening was that he gave out a lot of material not given in the textbook and we learned close to nothing useful.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d4b4cd60fca157e5c223" + } + }, + { + "text": "He's a good Professor.I learnt a lot from this class.Just do the homeworks and try to understand the textbook and you'll do just fine.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c224" + } + }, + { + "text": "Really bad, copied from the textbook, which was also horrible.", + "pos": 0.0, + "neu": 0.523, + "neg": 0.477, + "_id": { + "$oid": "6711d4b4cd60fca157e5c225" + } + }, + { + "text": "This course was his first time teaching it. So it seems he was learning as we were too. Not strict then.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c226" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b4cd60fca157e5c228" + }, + "professor_name": "Joon Park", + "rating": 4.1, + "department": "Economics department", + "comments": [ + { + "text": "Prof. Park was personally one of the most challenged professors I have had in my scholar life. He is very knowledgeable, but it takes a minute to get to his teaching speed. Once you get there, you will feel very accomplished and will learn a years worth of content. Thiss not an easy class, but if you put in the effort, you will be compensated!", + "pos": 0.096, + "neu": 0.843, + "neg": 0.062, + "_id": { + "$oid": "6711d4b4cd60fca157e5c229" + } + }, + { + "text": "AHA, he is a good professor. I love his class. Graphs and mathematic models helped a lot to understand economics concepts. Since I am international student, I still need to overcome language barrier. with the help of mathematical analysis, I won't get lost.", + "pos": 0.229, + "neu": 0.741, + "neg": 0.029, + "_id": { + "$oid": "6711d4b4cd60fca157e5c22a" + } + }, + { + "text": "He is a great Professor, if you like studying hard. If you want an easy A this is not the right class. You really have to put a lot of effort in his class, but at the end of the semester you will feel prepared for a more advance Micro class. The class is heavy in Math and he show a lot of graphics to explain theories.", + "pos": 0.136, + "neu": 0.848, + "neg": 0.017, + "_id": { + "$oid": "6711d4b4cd60fca157e5c22b" + } + }, + { + "text": "Joon(John) Park is one of the hardest professors ive ever had at city college. With that being said, its the material thats hard. Very math heavy, but the man can teach VERY WELL! His style of teaching kind of motivates you to learn. I received a B but its the hardest grade i worked for this semester. Take him if you really want to learn.", + "pos": 0.106, + "neu": 0.877, + "neg": 0.017, + "_id": { + "$oid": "6711d4b4cd60fca157e5c22c" + } + }, + { + "text": "He is one of the hardest Professors. Everyone in the class cheats because its so hard. Even though he encourages to ask questions, no one knows what is going on in the class. Would not take again.", + "pos": 0.068, + "neu": 0.772, + "neg": 0.161, + "_id": { + "$oid": "6711d4b4cd60fca157e5c22d" + } + }, + { + "text": "I will gladly take this professor again. He teaches really well. The only reason why students don't like it is because the course is very mathy. One can argue he should compensate but this course requires Calc 1 so it isn't a good argument. Copy whatever he writes on the board. His notes help so much with the quizzes and the exams.", + "pos": 0.135, + "neu": 0.775, + "neg": 0.09, + "_id": { + "$oid": "6711d4b4cd60fca157e5c22e" + } + }, + { + "text": "Micro Econ is a technical subject but Prof. Park is a wonderful professor and keeps you engaged throughout his lectures. I recommend taking him if you actually have a desire to learn. His exams can be tough but doable. I would definitely retake him if I had the chance.", + "pos": 0.329, + "neu": 0.644, + "neg": 0.027, + "_id": { + "$oid": "6711d4b4cd60fca157e5c22f" + } + }, + { + "text": "Gave him the benefit of the doubt but this class is a waste of time. Not one student gets the material. Midterm AVG was a 29/100 and Park doesn't see anything wrong with his teaching. All he does is draw the same graphs over and over instead of prepping us for the final (which is sure to have a low average). Don't know why he teaches. He's Meh...", + "pos": 0.105, + "neu": 0.774, + "neg": 0.121, + "_id": { + "$oid": "6711d4b4cd60fca157e5c230" + } + }, + { + "text": "Midterm + Final + Quizzes Flexible with grading criteria ( given specific circumstances ) - Great lecturer; good sense of humor; willing to help students; MAKES SURE STUDENTS UNDERSTAND TOPICS before continuing; problem sets are there for your benefit; practice and you will get an A", + "pos": 0.327, + "neu": 0.629, + "neg": 0.045, + "_id": { + "$oid": "6711d4b4cd60fca157e5c231" + } + }, + { + "text": "Joon (John) Park lets his students know what to expect throughout the semester. His tests and optional home-works deal with numerical calculations AND reasoning. He tries his best to engage his students in his class and tries to explain all the questions his students have. He prefers to be called by his first name rather than \"professor\"", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c232" + } + }, + { + "text": "Professor Park is by far the best professor I have ever seen in the Economics department. He will do anything he can to help you out to understand the material. He makes it feel like he is a student himself and understands what we go through. Prepares study guides before the exam. Easy \"A\" if you know material from study guides.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d4b4cd60fca157e5c233" + } + }, + { + "text": "I enjoyed taking his class because he was willing to teach. He has 4 quizes, one of which you can drop. He has one midterm and one final exam. He actually posts problem sets and solutions. He really wants his students to understand the material and he will help you. His attitude will make you want to learn and work hard.", + "pos": 0.13, + "neu": 0.78, + "neg": 0.09, + "_id": { + "$oid": "6711d4b4cd60fca157e5c234" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b5cd60fca157e5c236" + }, + "professor_name": "Ana Carnaval", + "rating": 3.5, + "department": "Biology department", + "comments": [ + { + "text": "Professor Carnaval is super nice. However the whole class is pointless. Labs are unnecessarily long and useless. All we do in lab is sit in front of computers. They assign pointless work. Lecture looks easy but the professor made the exams super tough and refused to curve even though more than half the class failed. I would say avoid her.", + "pos": 0.153, + "neu": 0.668, + "neg": 0.179, + "_id": { + "$oid": "6711d4b5cd60fca157e5c237" + } + }, + { + "text": "Nice lady, bad instructor. She makes up her own exam & makes it harder to understand. She kept coming in during exam to \"explain\" what she meant by question so&so. This course lacks substance they had to makeup nonsensical work for our grade. We even had to find ungrammatical sentences on Twitter and rewrote them. I've never hated a course so much.", + "pos": 0.107, + "neu": 0.842, + "neg": 0.051, + "_id": { + "$oid": "6711d4b5cd60fca157e5c238" + } + }, + { + "text": "nice character, but bad exams.", + "pos": 0.197, + "neu": 0.311, + "neg": 0.492, + "_id": { + "$oid": "6711d4b5cd60fca157e5c239" + } + }, + { + "text": "Prof. Carnaval is very kind, but she's unnecessarily very tough. She makes her lectures very simple & cute, and you leave the lecture thinking you're going to ace the exams & get an A+. But no, her exams will slap you on the face. Her exams are difficult & complicated compared to how simple the material is. Also, her questions are not ESL-friendly!", + "pos": 0.123, + "neu": 0.784, + "neg": 0.093, + "_id": { + "$oid": "6711d4b5cd60fca157e5c23a" + } + }, + { + "text": "She is a very sweet professor. Her lectures are very interactive and you can learn a lot, especially being in person. Her exams are often based on lectures, with a few questions going deep. She drops one exam out of 3 and the final is cumulative. She really wants everyone to do their best. Definitely take her if possible.", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c23b" + } + }, + { + "text": "Excellent professor. The class was really enjoyable, and the exams were very fair. We had many opportunities to improve our grades because she gave extra credit assignments every week.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c23c" + } + }, + { + "text": "Bio485 evol: easy grader, go to class cuz weekly quiz on 1-2 articles + participation (raise hand, answer/ask questions once every 2-3 wks) 65%, 25% from grp prj, 10% curve everyone gets. Focus on main ideas over details; set deadlines for grp prj, ditch slackers after 2+ wks of no work, dont let them do almost nothing and still get B+", + "pos": 0.092, + "neu": 0.875, + "neg": 0.033, + "_id": { + "$oid": "6711d4b5cd60fca157e5c23d" + } + }, + { + "text": "Take her!! she is AMAZING and one of the best biology professors at CCNY, because she is clear and her exams are straight forward. There were no textbooks and if she wanted the class to read she will upload the pdf. She enjoys teaching and I wish every bio professor was as great as she is.", + "pos": 0.323, + "neu": 0.648, + "neg": 0.03, + "_id": { + "$oid": "6711d4b5cd60fca157e5c23e" + } + }, + { + "text": "She is Amazing! I absolutely love her! Very straightforward and clear about what is going to be in the exam! No textbook just the slides! Don't listen to the negative comments here, if little effort was put into this class, it would be the easiest A for a Bio class. DEFFENETLY RECOMMENDED!! //", + "pos": 0.254, + "neu": 0.661, + "neg": 0.085, + "_id": { + "$oid": "6711d4b5cd60fca157e5c23f" + } + }, + { + "text": "If you love memorizing slides this is the professor for you. All her test are based on her slides and she's very unclear in her questions. Would never take her again", + "pos": 0.118, + "neu": 0.817, + "neg": 0.065, + "_id": { + "$oid": "6711d4b5cd60fca157e5c240" + } + }, + { + "text": "Professor Carnaval is AMAZING. She makes the class so interesting and enjoyable that it is impossible to fail. The exams are straight forward. She tests 3-4 PPTs worth of material per exam. Make sure to read the material and come prepared for class. Also, make sure to focus in the lab portion because it is 50% of the grade. Definitely recommend!", + "pos": 0.335, + "neu": 0.621, + "neg": 0.043, + "_id": { + "$oid": "6711d4b5cd60fca157e5c241" + } + }, + { + "text": "The subject she teaches is easy, if read it once you can get a good grade, very straight forward test. She will give extra credit questions on the test and an extra credit little game in class for students who are not doing well to get more points. Wonderful professor, very clear and helpful. Definitely recommend!!!!!", + "pos": 0.387, + "neu": 0.59, + "neg": 0.024, + "_id": { + "$oid": "6711d4b5cd60fca157e5c242" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b5cd60fca157e5c244" + }, + "professor_name": "Adam Goodell", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "Mr. Goodell is awesome, he is such a great guy and he knows his stuff, i never wanted to miss a class... and he is cute :) he gave like 10 extra assignments so that u could improve ur grade... HE IS AMAZING!", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c245" + } + }, + { + "text": "Mr. Goodal is cute, let me say this!!! He expects u to read his assignment, which r easy. he gives quizzes, which r easy. i think there was one in-class assignment, which was okay. every weekend u have to write a paper. one is the first draft, the next one is the second draft. he talks well... his class has structure. and he's funny and interesting", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c246" + } + }, + { + "text": "You should take his class, it's fun to have a crush on the teacher...", + "pos": 0.195, + "neu": 0.71, + "neg": 0.095, + "_id": { + "$oid": "6711d4b5cd60fca157e5c247" + } + }, + { + "text": "cool professor, really helps you understand by relating to everyday life situations", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c248" + } + }, + { + "text": "ehhh, sometimes he talks to much.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c249" + } + }, + { + "text": "Highly recommended. Fun and easy to understand.", + "pos": 0.682, + "neu": 0.318, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c24a" + } + }, + { + "text": "I love Prof Goodell. He is fun, easy, and makes me laugh!", + "pos": 0.641, + "neu": 0.359, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c24b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4b5cd60fca157e5c24c" + } + }, + { + "text": "ITs fun easy going but to the point u learn something from that class take it if u r bad in writing .", + "pos": 0.142, + "neu": 0.693, + "neg": 0.165, + "_id": { + "$oid": "6711d4b5cd60fca157e5c24d" + } + }, + { + "text": "cool, easygoing, young, wears clothes from the 70's and 80's", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c24e" + } + }, + { + "text": "This professor has got to be one of the best. He's only in his late 20's, he used to skate, he's down to earth, and very helpful. Never did i think an english class could be so much fun. Take his class if you can, he's a really cool professor. LETS GO YANKEES", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d4b5cd60fca157e5c24f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b6cd60fca157e5c251" + }, + "professor_name": "William (bill) Askins", + "rating": 4.6, + "department": "Anthropology department", + "comments": [ + { + "text": "Professor Askins is great! A lot of work but all very doable, fun and pretty easy. It can be hard to keep up for some but if you do things on time you'll be fine. Museum visits and in class videos. Gives great study guides for tests. Great class totally recommend.", + "pos": 0.431, + "neu": 0.548, + "neg": 0.021, + "_id": { + "$oid": "6711d4b6cd60fca157e5c252" + } + }, + { + "text": "Dr. Bill Askins is the epitome of a professor. He is knowledgeable, kind, makes class interesting with museum visits and in class videos and is very passionate about anthropology. He covers a lot of material over the duration of the course. Take good notes and keep up with the reading. Clearly defined syllabus", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c253" + } + }, + { + "text": "Exceptional professor! I had Dr. Askins for Intro to Anthro. and Cross Cultural Perspectives. He is extremely knowledgable in not only anthro but various other topics. He is also very helpful for anyone that needs extra clarification. He grades fairly. Make sure to keep up with the reading!", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c254" + } + }, + { + "text": "I had high hopes for this class but i was very disappointed. He will give you a study guide prior to each exam but he runs through the coursework with lighting speed. He loves to hear himself speak yet doesn't allow for much class participation and won't answer too many questions during the lecture.", + "pos": 0.109, + "neu": 0.787, + "neg": 0.104, + "_id": { + "$oid": "6711d4b6cd60fca157e5c255" + } + }, + { + "text": "Prof. Askins is the best. Knowledgeable, accessible, friendly and engaging. He's got great energy when he lectures.", + "pos": 0.571, + "neu": 0.429, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c256" + } + }, + { + "text": "If all Prof. were like Dr. Askins. It would be a beautiful world. If you are ready to learn, take his class. He is very, very smart. He is the best. And if gives extra credit work.", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c257" + } + }, + { + "text": "This is an edit of my above comment. The option to comment on easiness (above) has been erroneously reversed. Thus, hard was registered as easy. Anyway, it's up to you. After 3 classes, my words to describe this teacher are RESPECT, KINDNESS, PATIENCE, & MUCH KNOWLEDGE. An excellent professor! Give it a shot; you'll learn alot.", + "pos": 0.249, + "neu": 0.73, + "neg": 0.02, + "_id": { + "$oid": "6711d4b6cd60fca157e5c258" + } + }, + { + "text": "This is an excellent professor. As with most classes, you will get back what you put in. Respect, kindness, patience, and much knowledge are the words for this professor.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c259" + } + }, + { + "text": "Dr. Askin is expert on his subject, it is not an easy course but he made it so interesting for me to remember and learn. He's a dedicated professor and helped student to understand--detailed descriptions, and write essay for exams, also long research papers. Kind and Interesting Professor!", + "pos": 0.278, + "neu": 0.695, + "neg": 0.028, + "_id": { + "$oid": "6711d4b6cd60fca157e5c25a" + } + }, + { + "text": "i had this professor for 3 different of anthopology classes,each unique and an independant study.He is the best.When he is done teaching you you know the work.He made me fall in love with anthropology.He listens to your comments,if you are off he tells you how to look at what you said and what is said about the topic.There is no archeaolist like hi", + "pos": 0.061, + "neu": 0.876, + "neg": 0.063, + "_id": { + "$oid": "6711d4b6cd60fca157e5c25b" + } + }, + { + "text": "All I know is, the professor knows his stuff. Very informative. Be prepared to take-in much information. Allows students to earn extra credit. One of my favorite professors.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c25c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b6cd60fca157e5c25e" + }, + "professor_name": "Roger Perry-Stoval", + "rating": 4.8, + "department": "Mathematics department", + "comments": [ + { + "text": "An amazing man! Take his class!", + "pos": 0.467, + "neu": 0.533, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c25f" + } + }, + { + "text": "Rodge is very good teacher,Nah He the BEST Pofessor that I have met At CCNY. He Is so cool becuse you can ask he anything about his personal life and he don't mind tellin you. So Our class got a privlege to know more about him this year. It too bad he will not be teaching math at CCNY Man I WILL MISS U. Whover have him should be happy", + "pos": 0.175, + "neu": 0.756, + "neg": 0.069, + "_id": { + "$oid": "6711d4b6cd60fca157e5c260" + } + }, + { + "text": "Dude... he's like the coolest teacher out there in the whole math department. Who ever has him will be a very lucky person!", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c261" + } + }, + { + "text": "he is the best math teacher that I know, he explain the problems in really easy way.", + "pos": 0.307, + "neu": 0.581, + "neg": 0.112, + "_id": { + "$oid": "6711d4b6cd60fca157e5c262" + } + }, + { + "text": "Yeah Roger's an ill teacher, math is wack but he makes it as good as it possibly can be.", + "pos": 0.233, + "neu": 0.685, + "neg": 0.081, + "_id": { + "$oid": "6711d4b6cd60fca157e5c263" + } + }, + { + "text": "THE BEST MATH TEACHER AT CCNY", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c264" + } + }, + { + "text": "Really good proffesor, explains concepts well, gives quizes which really help ensure you know just what will be on the tests and definetly prepares you for finals. He is also a cool/nice guy as though he was your friend.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c265" + } + }, + { + "text": "He is the best teacher ever for math. All his concepts are so easy to understand also his teaching methods are excellent. If you want to get ahead in math then Roger is the best math teacher ever.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c266" + } + }, + { + "text": "He makes math very interesting. More than thathe is HOT!!!", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c267" + } + }, + { + "text": "he is great. his class was eeezzzzzzz, not to mention he is gorgeous. he made class fun,gave individual attention to all students. i recommend him to everybody, not to mention he is gorgeous!", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c268" + } + }, + { + "text": "He makes everything easy.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c269" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b6cd60fca157e5c26b" + }, + "professor_name": "Yasser Hassebo", + "rating": 4.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Got a B in his class. This guy has a major attitude problem, never answer your questions or willing to help. Can't explain himself but ready to snap at u for asking to repeat himself. I Don't think he knows anything about MAE103 and just got stuck teaching it. Rethink before taking his class he WILL stress you out. Good luck!", + "pos": 0.176, + "neu": 0.716, + "neg": 0.109, + "_id": { + "$oid": "6711d4b6cd60fca157e5c26c" + } + }, + { + "text": "In a word, he is one of the best professor in City College who makes the students to understand the materials vividly and who is friendly to the students and who likes to give students good grade.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c26d" + } + }, + { + "text": "he gives very clear and complete notes. But if you dont keep up with the class, it really piles up in the end because the final is cumulative. If you do the homework, you'll do good in the exams.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c26e" + } + }, + { + "text": "Knows the subject well and teaches it very well. Communicates with students has has a way of making hard concepts easy. If City College had some professors with such teching skill, we'd be set.", + "pos": 0.191, + "neu": 0.773, + "neg": 0.036, + "_id": { + "$oid": "6711d4b6cd60fca157e5c26f" + } + }, + { + "text": "Very good teaching style. He's a Doctorate student but teaches better than a lot of other professors. Very helpful, fair and thorough.", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c270" + } + }, + { + "text": "The BEST graduate student TA I have had. He knows his stuff, he knows how to teach it. Be sure to arrive in class well on time: 1) the best seats fill up quickly, and 2) if you miss the beginning, you might not understand much. He is VERY helpful and very PATIENT, and he gives students a feel for the material, rather than just bunches of equations.", + "pos": 0.214, + "neu": 0.766, + "neg": 0.02, + "_id": { + "$oid": "6711d4b6cd60fca157e5c271" + } + }, + { + "text": "His notes are very neat and organized, he also explains everything clearly. He is fair with the class, tests are similar to the HW that prepares u for the exams. He is very helpful and always available during his office hours. Very nice Professor, would take him in any course. If all Professors were a like him, city college would be much better.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c272" + } + }, + { + "text": "For anyone without a very good background for this course, this is the professor that you want. He simplifies every thing for you so there is no need for a textbook (which is quite expensive). Take this class with Prof. Hassebo and you will be glad you did.", + "pos": 0.081, + "neu": 0.824, + "neg": 0.095, + "_id": { + "$oid": "6711d4b6cd60fca157e5c273" + } + }, + { + "text": "Great professor, very organized, cool & welcomes questions. Exams are very fair and he lets you know what to expect. He doesnt like to just stand there and lecture, he likes to have a discussion. Just have an opinion, even if its wrong as long as you just dont sit there daydreaming. Very interesting if you pay attention. Take him! 100% Recommended!", + "pos": 0.256, + "neu": 0.66, + "neg": 0.084, + "_id": { + "$oid": "6711d4b6cd60fca157e5c274" + } + }, + { + "text": "Excellent Professor! Knows what he is doing. Challenges you to thing. Do not underestimate him and say is easy. Course needs continuous studying. Do your hm study the lectures and you are going to be just fine.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d4b6cd60fca157e5c275" + } + }, + { + "text": "He is very helpful professor; I love his teaching and explanation way. He really knows what he is doing. He always gives us challenge problems to make us thinking deeper in his class. Also he updates us with our grads and our behavior during the class. The main thing I lick, he doesn't go on to the", + "pos": 0.134, + "neu": 0.824, + "neg": 0.042, + "_id": { + "$oid": "6711d4b6cd60fca157e5c276" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b7cd60fca157e5c278" + }, + "professor_name": "Wilma Borrelli", + "rating": 3.8, + "department": "Political Science department", + "comments": [ + { + "text": "She is tough but she is fare. Her exams are based on the readings and lectures are very interesting. bottom line the grade that you get the amount of work that you put in.", + "pos": 0.107, + "neu": 0.859, + "neg": 0.034, + "_id": { + "$oid": "6711d4b7cd60fca157e5c279" + } + }, + { + "text": "Professor is very well-spoken. Each class is very lecture-heavy. Her class is interesting but her thoughts are sometimes not organized. You need to show up to class and read. You can tell she is very passionate about the topic", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c27a" + } + }, + { + "text": "I took Borrelli at Lehman. At first I wasn't very fond of her but she grew on me and so did the course. Readings and attendance are mandatory. There aren't any exams just papers ! If you miss two classes you won't pass. The lectures are long and her thoughts aren't very organized. However, she's there for you should you need help", + "pos": 0.079, + "neu": 0.866, + "neg": 0.055, + "_id": { + "$oid": "6711d4b7cd60fca157e5c27b" + } + }, + { + "text": "Professor Borrelli is an excellent teacher! She impart's valuable informati to her students beyond her disciplinary knowledge. If you really want to learn and improve your writing abilities, then this is the class for you. Be ready to read, and engage in intellectual discussions. I will certainly take another class with her if I had the opportunity", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c27c" + } + }, + { + "text": "Prof Borrelli is a great teacher. Incredibly knowledgable and very good at explaining theory. It's a tough class, a lot of reading and writing. But very, very good.", + "pos": 0.27, + "neu": 0.694, + "neg": 0.036, + "_id": { + "$oid": "6711d4b7cd60fca157e5c27d" + } + }, + { + "text": "Great Prof wish I could fit another of her courses into my schedule. She'll challenge you, you'll learn a lot -- she's like a combination dictionary and encyclopedia, but is very nice and really wants you to learn. I took the course she teaches on Social Movements and am now looking to join one LOL.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c27e" + } + }, + { + "text": "When she sees that you are making the effort, she will help you. Do not be mean. After all she doesn't lose anything. Just be submissive and willing to read a lot", + "pos": 0.137, + "neu": 0.8, + "neg": 0.063, + "_id": { + "$oid": "6711d4b7cd60fca157e5c27f" + } + }, + { + "text": "She's A good teacher, a little repetitive, but if you're having trouble thats good.", + "pos": 0.28, + "neu": 0.483, + "neg": 0.237, + "_id": { + "$oid": "6711d4b7cd60fca157e5c280" + } + }, + { + "text": "Professor Borrelli is highly intelligent and very knowledgeable in the areas of sociology and political science. She speaks eloquently. I really believe I enhanced my vocabulary just listening to her lecture. In her class, you will be responsible for a great deal of reading and short response papers. Not too bad. All around a solid professor.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c281" + } + }, + { + "text": "I really liked this Prof. She's super sharp and very passionate about teaching, and especially about social movements. And, she went out of her way to help me make up class time I missed because of an illness. If you want to get your money's worth out of a course then take her classes; I learned a LOT! useful information.", + "pos": 0.261, + "neu": 0.674, + "neg": 0.065, + "_id": { + "$oid": "6711d4b7cd60fca157e5c282" + } + }, + { + "text": "Wilma Borrelli is impartial and unfair. She will make an assumption of students based on her own collective view. She will downgrade and undervalue a student for any given reason that seems appropriate to her and will make a public spectacle of any student she deems unable to stand up for themselves. Her expectations and reading rqrmts are alot.", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d4b7cd60fca157e5c283" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b7cd60fca157e5c285" + }, + "professor_name": "Grace John", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Picking only 3 tags to describe this professor is tough. Professor John is an amazing professor who cares about her field more than anything. She is very clear on what she wants and works with students for whatever they need. I considered leaving city college before I took her glass but glad I didn't. She is one of the best.", + "pos": 0.226, + "neu": 0.756, + "neg": 0.018, + "_id": { + "$oid": "6711d4b7cd60fca157e5c286" + } + }, + { + "text": "Amazing professor she really help you if you need anything.", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c287" + } + }, + { + "text": "One of the best professor in CCNY. Honestly you can't go wrong with her. many people drop first week of class because she comes off very strong. I felt bad for those people. She was so easy and so understanding. you will thank me later! TAKE HER!!!!!!!!. 2 Exams were multiple choice, 3 reaction papers.", + "pos": 0.283, + "neu": 0.641, + "neg": 0.076, + "_id": { + "$oid": "6711d4b7cd60fca157e5c288" + } + }, + { + "text": "I loved her! You really need to read bc all her lectures follow the questions on the reading you did. I used a review book to condense the info rather than the textbook, which really helped. Shes funny and loves to talk about her cat. She knows her subject and will really help you understand it. Also, the hw is super easy, you can do it in one go.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c289" + } + }, + { + "text": "At first I thought this class was going to be tough, but Grace is an amazing professor. Her lectures are on point, she answers questions thoroughly and responds to emails quickly. She really knows how to teach! There's no way you could get a low score in this class. She is the best professor I have ever had. Would recommend her any day!", + "pos": 0.228, + "neu": 0.689, + "neg": 0.082, + "_id": { + "$oid": "6711d4b7cd60fca157e5c28a" + } + }, + { + "text": "I was nervous about taking this class during the summer because of all the reading and information it contains. But I am happy that I did. Grace is a great professor she definitely knows her stuff. She knows how to TEACH which some professors do not.There was a midterm, final paper, and final. The reviews were on point If you can take it with her.", + "pos": 0.226, + "neu": 0.755, + "neg": 0.019, + "_id": { + "$oid": "6711d4b7cd60fca157e5c28b" + } + }, + { + "text": "I felt like the syllabus was a litte bit unclear about homework and what was due when, also, tests were frequently pushed back which was confusing. Overall though, she was a great teacher and I learned a lot. I wish the class had focused more on psychological disorders than characteristics of the brain but it was still really interesting.", + "pos": 0.178, + "neu": 0.777, + "neg": 0.044, + "_id": { + "$oid": "6711d4b7cd60fca157e5c28c" + } + }, + { + "text": "Possibly the best professor I will ever encounter in college. She responds to emails within hours, makes funny comments that ease the duration of the class, is very flexible with hw& tests. Answers all questions&is very clear. Tests are straightforward, no hidden tricks. Takes students into consideration", + "pos": 0.276, + "neu": 0.687, + "neg": 0.038, + "_id": { + "$oid": "6711d4b7cd60fca157e5c28d" + } + }, + { + "text": "Possibly the best professor I will ever encounter in college. She responds to emails within hours, makes funny comments which eases the duration of the class, very flexible regarding homework& testing. Answers all questions & is very clear with material. Tests are straightforward, no hidden tricks. Takes students into consideration", + "pos": 0.26, + "neu": 0.704, + "neg": 0.036, + "_id": { + "$oid": "6711d4b7cd60fca157e5c28e" + } + }, + { + "text": "I like how she is engaged in the topic and answers questions thoroughly with in depth analysis.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c28f" + } + }, + { + "text": "Helpful with assignments and lectures always clear.", + "pos": 0.519, + "neu": 0.481, + "neg": 0.0, + "_id": { + "$oid": "6711d4b7cd60fca157e5c290" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b8cd60fca157e5c292" + }, + "professor_name": "Devin Kelly", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Hands to the best and youngest professor at city college. Take him, you will love your life, very nice funny cool amazing guy! He taught me so many things... wish I can take this guy again!", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c293" + } + }, + { + "text": "Professor Kelly is very caring and he is very good at what he does.", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c294" + } + }, + { + "text": "The best English professor! He cares a lot about this course and gives great feedbacks in your essays.", + "pos": 0.436, + "neu": 0.564, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c295" + } + }, + { + "text": "You can tell he cares a lot about the class and everyone in it. Sometimes his jokes are funny but its funnier when theyre not.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c296" + } + }, + { + "text": "Great professor! He really cares about his students and gives good feedback on your work. Super chill & funny. Discussions can be interesting if you participate. 11/10 recommend.", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c297" + } + }, + { + "text": "TAKE HIM!!! and dont get a B- honestly the best English professor there is to offer just get used to cursing. Hes caring and makes lectures interesting", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c298" + } + }, + { + "text": "He's the best English professor there is to offer. Class discussions can get really lively as we talk about a variety of things. Lectures are very concise and instructional, which of course are the key ingredients to write well. You won't regret taking him.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c299" + } + }, + { + "text": "Great guy though he tends to curse a lot so if you don't like that then don't take his class", + "pos": 0.154, + "neu": 0.636, + "neg": 0.21, + "_id": { + "$oid": "6711d4b8cd60fca157e5c29a" + } + }, + { + "text": "He was a really cool professor. He gave out interesting essay topics and made sure that he graded them fairly for each student. He said he wanted each student to succeed and he really stuck to that. He also gave the best lectures.", + "pos": 0.276, + "neu": 0.682, + "neg": 0.042, + "_id": { + "$oid": "6711d4b8cd60fca157e5c29b" + } + }, + { + "text": "I came into class without much interest in the subject and as not a great writer. Professor Devin was kind to all of us, very caring and fair, and really inspirational and funny. I was surprised how much I loved the class. You should take him any chance you get.", + "pos": 0.344, + "neu": 0.573, + "neg": 0.083, + "_id": { + "$oid": "6711d4b8cd60fca157e5c29c" + } + }, + { + "text": "Pretty chill class. He was very flexible when it came to assignments, and was pretty timely when it came to grading. Honestly if you just did all of your assignments, there was no way to fail. We barely had homework. We had a lot of time to turn in our assignments. If you're absent, you don't lose anything but he does remember when you're gone lol", + "pos": 0.175, + "neu": 0.774, + "neg": 0.051, + "_id": { + "$oid": "6711d4b8cd60fca157e5c29d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b8cd60fca157e5c29f" + }, + "professor_name": "Rosemary Mealy", + "rating": 3.8, + "department": "Not Specified department", + "comments": [ + { + "text": "Although I never met Mealy in person I did receive great feedback from her. I felt the connection through her online course with her students. She is passionate about laws and her courses. If you are looking to attain a master's degree in the future then this professor will definitely prepare you for graduate-level work.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a0" + } + }, + { + "text": "Professor Mealy is wonderful. We had homework due every week... just watch a couple videos or readings than there will be questions you will need to answer. Also, respond to two of your classmates. One midterm paper, and one final project which is just a power point. Class materials overall are very interesting. Loved it. Just do your work!!!", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a1" + } + }, + { + "text": "EXCELLENT PROFESSOR!!!! I cant rave enough about how much I have enjoyed this professor. I took her class 3 times. Now on my 4th class with her. I wish she has on-site classes so I could sit in and discuss so many interesting topics with her. She is the kind of professor you would want to sit and have tea with and just listen to her life story!", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a2" + } + }, + { + "text": "Professor Mealy is very knowledgeable about the topics she teaches. Gives current events that are related to the class and it helps students see what we learn applies to real life. She is understanding if you email her in advance about things but, her grading is tough she expects discussions to have proper citations and references in every post.", + "pos": 0.03, + "neu": 0.941, + "neg": 0.029, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a3" + } + }, + { + "text": "Professor Mealy is a great professor. I have never been preferred to take online course but I am glad I took it and with the right professor. Her feedback inspires you take further interest in your subject. I have been more interested than ever before, might as well they persuaded me to the point where I want to volunteer and make a difference.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a4" + } + }, + { + "text": "Didn't not like her grading style. Seems like if you miss one assignment, your grade drops dramatically. Won't take her classes again", + "pos": 0.173, + "neu": 0.762, + "neg": 0.064, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a5" + } + }, + { + "text": "Great Professor.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a6" + } + }, + { + "text": "Very passionate yet understanding.", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a7" + } + }, + { + "text": "She knows her history and very passionate about her work. Likes every student to learn from her class.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a8" + } + }, + { + "text": "Excellent Professor. Be ready to learn", + "pos": 0.608, + "neu": 0.392, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2a9" + } + }, + { + "text": "She is very cool and easy going!", + "pos": 0.547, + "neu": 0.453, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b8cd60fca157e5c2ac" + }, + "professor_name": "Arnaud Gerspacher", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Great professor. Was super lenient and understanding and was always available whenever you had a question. Interesting lectures but notes were necessary to take in order to get a decent grade in the class.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2ad" + } + }, + { + "text": "In his role as a professor, he is understanding of his students' needs. However, he gives his students in-depth assignments that involve long readings and analyses of multiple chapters. I wouldn't recommend taking his class if you are not fully ready to engage in readings and contribute thoughtfully to extensive discussion boards every day.", + "pos": 0.09, + "neu": 0.836, + "neg": 0.074, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2ae" + } + }, + { + "text": "A very knowledgeable professor, class conversations are always interesting. Clearly cares for students, and is lenient, Classes run smoothly. No complaints.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2af" + } + }, + { + "text": "I'm not into participatory art personally, but he was definitely a professor I enjoyed listening to in lectures and he made things engaging for everyone. One of the most laidback writing intensives I've had so far. No heavy assignments, 100% clear instructions and the final paper was only 5-7 pages", + "pos": 0.261, + "neu": 0.689, + "neg": 0.05, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b0" + } + }, + { + "text": "Easygoing, shortens class and makes up for it with recorded lectures every week. Hw is just writing a paragraph on your thoughts of the lecture or additional readings. Class time is just a group presenting a project on the topic for said week. Only have to present once. Final is either a paper or a virtual exhibition you can make. You learn stuff.", + "pos": 0.036, + "neu": 0.964, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b1" + } + }, + { + "text": "All his lectures were recorded and posted on Sunday and you had until Friday to comment on them. That was your participation grade. There was no midterm or final. The textbook was not needed to get. You also have for your final project to build a website. Also, do a Powerpoint and present it on a time period he gives you. Overall, good professor!", + "pos": 0.047, + "neu": 0.92, + "neg": 0.033, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b2" + } + }, + { + "text": "He's one of my favorite professors when I took him for Art 10000! Even though the class teaches mostly art history, it was very fascinating. He does require participation but I mean all classes do. He's very chill, though the class may get drowsy for some. There is an exam but it's not so hard if you're able to remember dates, names, and meanings.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b3" + } + }, + { + "text": "Attendance, exhibition paper, midterm, final. Youre pretty much guaranteed an A- so long u show effort", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b4" + } + }, + { + "text": "great professor. do the readings, one exhibition paper, one midterm, one final. participate!! you're gold", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b5" + } + }, + { + "text": "Great professor! take him if you have the chance. Participate, one paper, one midterm, and a final. do what you're asked and you'll be good.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b6" + } + }, + { + "text": "One of the best professors I have encountered. Gives a very good lecture and makes me interested in the field of Art like never before. He is hands down one of the best lecturer and also gives clear grading criteria to every work. Just participate and listen you learnt alot of things. No memorizing needed, just know the art and period and u r good.", + "pos": 0.274, + "neu": 0.699, + "neg": 0.027, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b7" + } + }, + { + "text": "He is simply one of the best proffesors, I have ever had. As an Engineering student, I never liked art and this guy made me love it. He dives into the materials with his analysis and makes everything interesting. His grading policy is very clear, midterm, and a final 8 from a poll of 30 works, he gives before the test, and one paper.", + "pos": 0.186, + "neu": 0.783, + "neg": 0.031, + "_id": { + "$oid": "6711d4b8cd60fca157e5c2b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b9cd60fca157e5c2ba" + }, + "professor_name": "Diana Greenwald", + "rating": 4.6, + "department": "Political Science department", + "comments": [ + { + "text": "One of the best professor anyone could ever have! Her class very easy and she is very lenient when it comes to grading. Wish she taught more classes at CCNY.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2bb" + } + }, + { + "text": "Professor Greenwald is one of the best in the poli dept. She knows how to TEACH which many professors struggle with. I wish we had more professors like her at CCNY. Your grade is based on 3 in-class writing assignment, 1 group webcast project instead of a midterm, daily inquisitive quizzes, and 1 final exam. 10/10 would recommend taking her class.", + "pos": 0.195, + "neu": 0.773, + "neg": 0.032, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2bc" + } + }, + { + "text": "Prof. Greenwald is the GOAT. One of my favorite political science classes... if you are interested in political economy and global development, you will absolutely love this class. Not too much workload, but some readings are challenging. Topics range from studying theories of development to learning how to make charts with World Bank data.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2bd" + } + }, + { + "text": "She's a good professor and very lenient grader. However her slideshows are dense. She puts whole essays up on the screen and expects us to take notes on that. I hope she learns how to use a little something called bullet points. Other than that, great class!", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2be" + } + }, + { + "text": "Professor Greenwald is very passionate and knowledgeable about the subject. She encourages everyone to share their views and brings guest lecturers to class so students get to learn about current events. I found her class very easy and she is very lenient when it comes to grading. If you put in the work, you'll pass.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2bf" + } + }, + { + "text": "I can tell nothing but I loved her lectures and her way of teaching. Other professors must learn how to teach their classes from her because she is awesome. All of her assignments makes you learn something. Be ready to read, listen, and enjoy learning from her. Just do what students suppose to do and youll be OK.", + "pos": 0.185, + "neu": 0.756, + "neg": 0.059, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c0" + } + }, + { + "text": "Not specific in what they want.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c1" + } + }, + { + "text": "The class material was difficult and there are many readings. The professor is caring and understanding. She was always available by email or office hours. Powerpoints were always uploaded after classes which was helpful.", + "pos": 0.152, + "neu": 0.785, + "neg": 0.063, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c2" + } + }, + { + "text": "Professor Greenwald is a very straightforward professor who works with her students. Do everything thats asked of you and you'll get an A. Not a harsh grader in the slightest, and a very nice and sweet woman to work with throughout a semester.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c3" + } + }, + { + "text": "Political Econ. of Development was a great class with prof Greenwald and she does an excellent job of structuring her class. 3 pop quizzes on readings (lowest dropped), midterm, several take home assignments and one large final paper/presentation assignment. Show up, participate, show her you're invested and you will do just fine. Deff taking again", + "pos": 0.152, + "neu": 0.807, + "neg": 0.041, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c4" + } + }, + { + "text": "Middle East politics/gov was one of the most challenging courses ive taken as a political science student but prof Greenwald is very straightforward with her expectations and is a generous grader. You must be willing to put in the work because you will not do well without doing readings, participating and truly learning the info from slides", + "pos": 0.15, + "neu": 0.816, + "neg": 0.034, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c7" + }, + "professor_name": "Claude Brathwaite", + "rating": 2.8, + "department": "African-American Studies department", + "comments": [ + { + "text": "If you want to pass, dont take him. He is obsessed with organic chemistry. he teaches org. chem in gen. chem course. he doesn't give notes. he expects you to read the book and know everything for the exam. he doesn't give partial credit. you either get full or credit no credit on 10 or 15 point ques. he is one the worst professor i've met.", + "pos": 0.053, + "neu": 0.81, + "neg": 0.137, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c8" + } + }, + { + "text": "I recently posted and made a typo. *You can spend a week working on a 10 page paper and get like a C, not an A* he is way too picky", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2c9" + } + }, + { + "text": "Like someone posted before, gives way tooooomuch work. Doesn't consider what we have to do in other classes. Makes us write multiple papers, a few of 10 pages + and is really picky grading. You can spend a week working on a paper and see yourself getting an A.On a good note, he is knowledgable of what he talks about.", + "pos": 0.085, + "neu": 0.915, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2ca" + } + }, + { + "text": "He causes me to stop and think before rushing in to tackle a difficult problem. As a result, I learn to approach problems from the correct angle (through analysis, observation and investigation). In other words, because of his method of teaching, I learned to think critically; a skill needed for adulthood. I will forever be thankful! Other ins", + "pos": 0.055, + "neu": 0.79, + "neg": 0.155, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2cb" + } + }, + { + "text": "I am a graduate student and I have a message for all you undergrads... As a general rule, college instructors do\r not spoon-feed information; rather they\r focus on student responsibility for solving\r problems, digging for the information,and\r researching for understanding. He has been a wonderful mentor and an excellent teacher!", + "pos": 0.172, + "neu": 0.782, + "neg": 0.046, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2cc" + } + }, + { + "text": "Got an A+ from this prof in orgo I in the summer, dunno if i should complain", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2cd" + } + }, + { + "text": "He is a really hard orgo teacher. His exams are hard and he doesn't explain clearly. More than half the class withdrew", + "pos": 0.0, + "neu": 0.78, + "neg": 0.22, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2ce" + } + }, + { + "text": "Excellent course for those interested in Chemisty but need an into course. Dr. Brathwaite is an excellent prof. he knows his stuff, is very caring that students are successful, he will worl with students that need extra help.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2cf" + } + }, + { + "text": "The instructor is 2nd-tier teaching staff. He does not have complete mastery of the subject matter. He has a phD from CUNY and a rude person. He has condescending attitude in the lectures.", + "pos": 0.031, + "neu": 0.883, + "neg": 0.085, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2d0" + } + }, + { + "text": "Extremely boring and disorganize lectures.", + "pos": 0.0, + "neu": 0.607, + "neg": 0.393, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2d1" + } + }, + { + "text": "Run as fast as u can, i only attended the first day of class but it was enough to scare me. he seems like a smart professor but he gives toooooo much work: 4 papers: (1st 4 pages) (2nd 8 pages), (3rd and 4th 10 pages) and a research paper (10 pages), you'll also have to do inclass writings and debates. he also want research from books not internet.", + "pos": 0.106, + "neu": 0.838, + "neg": 0.055, + "_id": { + "$oid": "6711d4b9cd60fca157e5c2d2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bacd60fca157e5c2d4" + }, + "professor_name": "Andrea Ariza Garcia", + "rating": 3.7, + "department": "Anthropology department", + "comments": [ + { + "text": "She is very nice and a real human she is very talkative and amazing lectures, tbh i got a +A and i didnt even put my full 100% in the class", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2d5" + } + }, + { + "text": "the professor tries to make the class chill but lectures & readings were a bit boring. she posts her slides if asked. midterm (10 MCQ) was open book and didn't have a time limit. 4 discussion assignments and 2 group projects, one being the research paper final/presentation. she is very understanding is always ready to answer questions and emails.", + "pos": 0.051, + "neu": 0.902, + "neg": 0.047, + "_id": { + "$oid": "6711d4bacd60fca157e5c2d6" + } + }, + { + "text": "just pay attention and you are chillin", + "pos": 0.0, + "neu": 0.811, + "neg": 0.189, + "_id": { + "$oid": "6711d4bacd60fca157e5c2d7" + } + }, + { + "text": "This does not feel like an introductory course. Lectures are very boring, just reading from slides. She assigns very long scholarly papers to read. Final project is a group project but she does not give clear, specific instructions. Midterm is short and open note but the questions are so hyper-specific. I would not take again.", + "pos": 0.0, + "neu": 0.895, + "neg": 0.105, + "_id": { + "$oid": "6711d4bacd60fca157e5c2d8" + } + }, + { + "text": "so. much. reading. also, tests questions were super specific and pretty hard even though she made them all open notes in the end. take this one with someone else if you can, unless you happen to really enjoy analyzing western society through an extremely critical lens. i found the lectures boring and did other classes work during class time", + "pos": 0.152, + "neu": 0.758, + "neg": 0.09, + "_id": { + "$oid": "6711d4bacd60fca157e5c2d9" + } + }, + { + "text": "alright, just too many text", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2da" + } + }, + { + "text": "Learning from Andrea was an exceptional experience. She is a calibrated instructor who effortlessly integrated videos, blog posts, books, and scholarly articles into her curriculum. Grades in this course were based on 10 discussion board posts, 3 response papers, and 1 long, research-based paper. I highly recommend her.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2db" + } + }, + { + "text": "For the three major papers of this class 2 were done as a group project which can be difficult depending on whos in your group but overall her class was good. One thing I liked about her was that if you ever had any difficulties with an assignment or a reading you could reach out to her and shed respond pretty quickly.", + "pos": 0.177, + "neu": 0.761, + "neg": 0.062, + "_id": { + "$oid": "6711d4bacd60fca157e5c2dc" + } + }, + { + "text": "This professor doesn't know how to articulate herself. No clear guidelines are given for assignments and discussion board post. Syllabus is riddled with mistakes and is just generally confusing. Stay away from her if you care about your GPA.", + "pos": 0.071, + "neu": 0.782, + "neg": 0.147, + "_id": { + "$oid": "6711d4bacd60fca157e5c2dd" + } + }, + { + "text": "Newer prof - very cool, very smart, laid-back. Lots of weekly readings that are quite advanced (scholarly papers) - which I liked but it was challenging to keep up. Very caring and wants to hear from students - share your thoughts/ideas, esp in class discussions. FP was interesting - pretend conference presentations. I recommend Prof Ariza Garcia!", + "pos": 0.331, + "neu": 0.647, + "neg": 0.022, + "_id": { + "$oid": "6711d4bacd60fca157e5c2de" + } + }, + { + "text": "You can tell she is a new professor because she was testing out a few things in our class. She is very smart and knows what she's talking about. She assigns a lot of readings and discusses them in class. She also assigns work only in groups. In other words, everything is group work which makes it easier!", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2df" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bacd60fca157e5c2e1" + }, + "professor_name": "Elga Ramos", + "rating": 4.1, + "department": "International Studies department", + "comments": [ + { + "text": "Course grading is based on attendance, two quizzes, two papers, a midterm and a final exam, 80% of which are multiple-choice. She does reviews before each exam. If you know a little bit of history and look at the textbook you can easily pass this class.", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e2" + } + }, + { + "text": "Very nice teacher, cares for her students and is always open for questions and discussions. Just be prepared to listen and understand her lectures because you may easily get lost in the discussion. Overall totally recommended teacher for everyone.", + "pos": 0.265, + "neu": 0.687, + "neg": 0.048, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e3" + } + }, + { + "text": "reallyy nice professor. you need a book but u can find it online. there wasn't any powerpoint or anything to follow in her class which I didn't like. it like purely lecture. workload wasn't heavy it was manageable.", + "pos": 0.045, + "neu": 0.829, + "neg": 0.126, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e4" + } + }, + { + "text": "She is a good professor but I feel if she try to understand that students get nervous when in wrong. This makes me feel unworthy and hurt because I am sensitive to her criticism. Her class work is manageable overall but connecting better with students help with my confidence and more enjoyable.", + "pos": 0.228, + "neu": 0.529, + "neg": 0.243, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e5" + } + }, + { + "text": "She has a light workload. Make sure to be at class, it matters for her and some questions during tests etc, refer to class discussions. She isnt a pushover just because its an easy class. Just be there and be semi alert during class, youll do well. Tests and papers are relatively easy as well.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e6" + } + }, + { + "text": "She is very nice and understanding but also has a lot going on in her personal life. If you want an easy A just show up, participate and let her know you're interested in what she has to say. This class wasn't really informative more like a socratic seminar with 1 quiz , a mid term , final and a little essay assignment.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e7" + } + }, + { + "text": "Im not going to be mean because a lot of the issues i had with her i think are just in her nature. The class itself is an easy A. But she adds nothing to the course. Her lectures are a convoluted mess and you rarely leave her classes feeling like you learned anything. Honestly youll probably hv a more engaging experience with any other professor", + "pos": 0.202, + "neu": 0.757, + "neg": 0.042, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e8" + } + }, + { + "text": "She is amazing!!!! She only requires 2 quizzes, a midterm, a final, and a short written assignment. Attendance is important but if you miss a class you can watch the recording. She is always available for office hours and encouraging her students to ask questions. THIS CLASS IS AN EASY PASS !!!! ONE OF THE BEST PROFESSORS IN CCNY.", + "pos": 0.281, + "neu": 0.694, + "neg": 0.025, + "_id": { + "$oid": "6711d4bacd60fca157e5c2e9" + } + }, + { + "text": "She's really sweet but if you're taking her online, she does have trouble with technology. The lectures are kind of long-winded. But if you do the work and just take the tests/quizzes you will get an easy A.", + "pos": 0.135, + "neu": 0.786, + "neg": 0.08, + "_id": { + "$oid": "6711d4bacd60fca157e5c2ea" + } + }, + { + "text": "She is so accomodating! You take two small papers, two quizzes, midterm, and final. You need to look at the textbook and listen to her lectures to pass the quizzes and exams but they aren't hard. MAKE A GROUP because you will need it! If you are struggling, she is willing to help out.", + "pos": 0.093, + "neu": 0.846, + "neg": 0.061, + "_id": { + "$oid": "6711d4bacd60fca157e5c2eb" + } + }, + { + "text": "Great professor with easy A class. Class and quizzes depend on that one textbook, but that can be found online with the pdf version. 2 quizzes withvery simple questions to answer, a midterm and final and Two easy written assignments. A good class to boost your gpa. Very chill professor,though lectures can get boring. Gives 1 extra credit at the end", + "pos": 0.252, + "neu": 0.71, + "neg": 0.039, + "_id": { + "$oid": "6711d4bacd60fca157e5c2ec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bacd60fca157e5c2ee" + }, + "professor_name": "Marilyn Gunner", + "rating": 3.3, + "department": "Physics department", + "comments": [ + { + "text": "she's an amazing professor, very caring about her students and just wants you to learn. Be prepared that if you're not a phys student you might find the topics boring, but just learn about your protein and you'll be fine.", + "pos": 0.185, + "neu": 0.779, + "neg": 0.037, + "_id": { + "$oid": "6711d4bacd60fca157e5c2ef" + } + }, + { + "text": "Professor Gunner is an amazing professor. We had many papers throughout the semester but she gave so many days/even weeks to hand them in. She even stays back to help you with whatever you need. She is a very kind professor who I would gladly take again.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f0" + } + }, + { + "text": "So I am a graduate student at CCNY, I signed up under V3800 for Biophysics. There were a mix of undergraduates and graduates from different backgrounds. The core of this class revolves around doing your HW and handing it on time. Make sure your folder contains the HW. Then work on your project at the end of the year to present.", + "pos": 0.037, + "neu": 0.963, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f1" + } + }, + { + "text": "Perhaps the nicest professor you will ever meet ever. Very understanding and caring. She responds to every email right away and takes her time to go through your work. You'll learn about proteins and write a paper about it. This class is def not for phys students (as i am) but it's still interesting if you enjoy all physical sciences.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f2" + } + }, + { + "text": "she is ok", + "pos": 0.524, + "neu": 0.476, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f3" + } + }, + { + "text": "Horrible, difficult and boring. Avoid if not interested in Physics, b/c she will make it more uninteresting. Horrible attitude.", + "pos": 0.0, + "neu": 0.44, + "neg": 0.56, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f4" + } + }, + { + "text": "Not very good", + "pos": 0.0, + "neu": 0.433, + "neg": 0.567, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f5" + } + }, + { + "text": "Very nice woman. Willing to individually help students who are having trouble understanding the material. Homeworks are long, but not particularly hard.", + "pos": 0.222, + "neu": 0.705, + "neg": 0.073, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f6" + } + }, + { + "text": "She is one of the most boring teachers ever, and one of the most difficult ever. Gives long hw and then has her grad students grade them. She gives long test, (8 questions, most Profs give 4-5) and has grad students grade them, has no energy in her teaching method, most students are failing her.", + "pos": 0.056, + "neu": 0.777, + "neg": 0.167, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f7" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f8" + } + }, + { + "text": "A real educator. Interested in the material and the students. Willing to help the students in any practical way. A very down-to-earth approach. The lectures were crystal clear. Adept at presenting the concept in several ways so that students could get it.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d4bacd60fca157e5c2f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bbcd60fca157e5c2fb" + }, + "professor_name": "Amber Hernandez", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I took Professor Hernandez course, and she was awesome. She taught me so much during this course and her delivery of assignments were delicately structured. I will always be thankful to her as she has provided the initial foundation to accomplishing so many of my other writings. 10 out of 10 with her!", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c2fc" + } + }, + { + "text": "I would recommend Professor Hernandez to anyone. She is so inspiring and dedicated, she spends time with you when needed. She will set time to go through assignments. Professor Hernandez is very supportive and as I continue to further my education, I will always remember her class and her caring nature.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c2fd" + } + }, + { + "text": "One of the best professors in CCNY. She is very understanding and helpful. Easy A if you do the assignments on time. Even if you can't do them on time, she gives you another chance to send them in. Multiple short assignments add up to a big paper. Just don't let them stack up.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c2fe" + } + }, + { + "text": "Professor Hernandez was by far one of the nicest professors I have ever had. She takes the time to explain things and is always available to assist with any questions. I am happy that I signed up for her course, I feel confident enough to work on my future assignments. I am looking forward to my next semester.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c2ff" + } + }, + { + "text": "Miss. Hernandez was AMAZING. She truly cares about what she teaches. The time spent in this course taught me so much about my writing. I will always remember this professor because she cares and makes every effort to support us. Looking forward to my next semester at City College.", + "pos": 0.266, + "neu": 0.708, + "neg": 0.026, + "_id": { + "$oid": "6711d4bbcd60fca157e5c300" + } + }, + { + "text": "I rate professor Hernandez an A+++. This summer course was great and fast. She made sure to work closely with me and her class was great.\nI wish she taught another class because I would sign up again.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c301" + } + }, + { + "text": "This course was the best. I learned so much this summer. Professor Hernandez is very relaxed but keeps on top of all the assignments. I enjoyed her wisdom, she is ready each day and encourages us all. She always responses to emails or before/after class.", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c302" + } + }, + { + "text": "This professor is literally a very understandable person. I go to college and I also work but she keeps me updated with all the assignments. Mrs. Hernandez is always responding through class, emails and also available at her office after class. I appreciate her because she wants us to be prepared and guides us as she sees needed.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c303" + } + }, + { + "text": "She is literally the best professor I had this spring semester. She understandable if you come 5-7 mins late or can't come to class, just always let her know by an email. She also understanding if you work outside of school and can't complete the homework or reading she will give you another deadline and her feedback is amazing for essays.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c304" + } + }, + { + "text": "This professor is nice and gives great feedback, I appreciate the time I spend in this course. I learned so much and the overall experience was awesome because I understood all the assignments that were asked of me.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c305" + } + }, + { + "text": "Mrs. Hernandez class was great and inspiring. She is well organized and always ready.", + "pos": 0.535, + "neu": 0.465, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c306" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bbcd60fca157e5c308" + }, + "professor_name": "Cori Gabbard", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "First of all, if you want to revise your paper over and over again you can take her. She's very intelligent and nice but she keeps talking through the whole class and if you wanna say something you need to fight for it. Going back to essay it's either her way or the highway. You will keep re-writing your essay until the last day of class.", + "pos": 0.075, + "neu": 0.877, + "neg": 0.048, + "_id": { + "$oid": "6711d4bbcd60fca157e5c309" + } + }, + { + "text": "This teacher is fabulous. It is not a boring class. She informs us of what needs to be done and to be on time. If you do your work on time, she takes notice. She is intelligent and lets you speak on behalf of the topics. Great class and great teacher!", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c30a" + } + }, + { + "text": "Excellent class to boost your GPA. Easy assignment. Small writing prompts. But the class is so long that she can put you to sleep.Very distracting when she lectures. Always saying\"umm\" in every sentence. But take it if you want an easy A.", + "pos": 0.254, + "neu": 0.69, + "neg": 0.055, + "_id": { + "$oid": "6711d4bbcd60fca157e5c30b" + } + }, + { + "text": "So boring. She just talks on and on andddd onnn saying the same things over and over. This class was so easy I pretty much slept through it every time or cracked a lot of jokes to not keep from going insane. It's so easy and boring I just screwed around so much that I didn't get an A and I ended up with a B. She is a bad teacher.", + "pos": 0.139, + "neu": 0.697, + "neg": 0.164, + "_id": { + "$oid": "6711d4bbcd60fca157e5c30c" + } + }, + { + "text": "She's really nice, and is great when it comes to improving your essay writing. At first I didn't like the idea of grammar pop quizzes but after a while you begin to get used to them and you can do well on them as long as you do the grammar hw she assigns. Just take a lot of notes during in class discussion and you'll do really well on her essays.", + "pos": 0.155, + "neu": 0.825, + "neg": 0.02, + "_id": { + "$oid": "6711d4bbcd60fca157e5c30d" + } + }, + { + "text": "Cori is pretty decent and its not her teaching that makes her teaching, its how she teaches it which most of the time tedious (chocolate or Harry Potter). Overall shes fairly easily with her 5th grade quizzes, and just do her papers (which are fairly easy cause the topics always relevant to what you think about what is being discussed). Easy A!!", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c30e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4bbcd60fca157e5c30f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4bbcd60fca157e5c310" + } + }, + { + "text": "She is a good professor. I took her class long time ago but I still go to her if I need help. Gori is very friendly and very dedicated. I've learnt a lot from her. You should take her.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c311" + } + }, + { + "text": "she's great very intelligente bring up great views and make class fun. She's very skilled and creative (I loved the switch gender the debate we had i was really able to see men's side of the story) but i still tnik there scums like Dave Barry says.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d4bbcd60fca157e5c312" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bccd60fca157e5c314" + }, + "professor_name": "Ian Fiedorek", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He is an Amazinf professor. He is the best I ever had.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c315" + } + }, + { + "text": "would take him again", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c316" + } + }, + { + "text": "This is a professor that actual seeks to connect with his students. He encourages excellence and good student ethics , such as being on time. He will take the time out to help you with your paper, which is great and give you good feed back. His class is fun, he encourage student creativity , group learning and connecting with each other. Excellent", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c317" + } + }, + { + "text": "Best professor I've ever been taught by. He really helped me understand why I was writing instead of just telling me what to write. His classes are hilarious and he is so chill. Classes were much more conversational than just lectures. Taking good notes during the classes will make writing the papers so much easier. Take his class!", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c318" + } + }, + { + "text": "I had Ian as a professor at Hostos CC for two classes ENG 110 and 111. He is an awesome professor. He really inspires you to want to write more. He also gives great feedback which is so important for a writing professor. He chooses great material to read and discuss in class. Make sure you come to class and on time, he is strict on attendance.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c319" + } + }, + { + "text": "Great professor with a good sense of humor love him..... He really cares for his student and he is very clear about his work and how he wants it to be done. just Participate, be on time, essay on time you'll be fine.", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c31a" + } + }, + { + "text": "I had Professor Ian in Hostos, and I will said he is the kindess, funiest Professor I met, he cares about is student and his resectful and understand life, his work is fair, class work and homework is easy and fair. just come to class on time, participate, hand in work on time, and you get an A.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c31b" + } + }, + { + "text": "It's a lot of papers but most of them are pretty open so you can choose to write about something you're interested in. He gives good feedback on rough drafts so as long as you follow it & ask questions you should be fine. And he gives more than enough time to finish everything. Also he's hilarious, especially if you have a fun class", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c31c" + } + }, + { + "text": "Ian is awesome!!! His class was interesting. Everybody was involved in that class. A lot of interesting discussions. You will never regret taking his class.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c31d" + } + }, + { + "text": "great class, amazing teacher. ian was really entertaining and very helpful. definitely take him, you won't regret it.", + "pos": 0.619, + "neu": 0.381, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c31e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bccd60fca157e5c320" + }, + "professor_name": "Thomas Thayer", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "Thayer is very helpful and teaches you a lot, especially if you have no prior knowledge on how to draw. However, he's not an easy grader at all. Do not take this class if you want an easy A. You will absolutely learn how to draw by the end of this course. He is extremely helpful, very nice. But his grading is specific. Not an easy A class!!!!!!", + "pos": 0.137, + "neu": 0.78, + "neg": 0.083, + "_id": { + "$oid": "6711d4bccd60fca157e5c321" + } + }, + { + "text": "Like the typical person, I took this class hoping for an easy A, but this is not the case. I got an A- BUT I redid most of my pieces for a better grade, spent hours during breaks even on days I didn't have the class to work on my art, thus not an easy grade. He gives great feedback and when you look back at your work, you'll be amazed you created", + "pos": 0.243, + "neu": 0.722, + "neg": 0.035, + "_id": { + "$oid": "6711d4bccd60fca157e5c322" + } + }, + { + "text": "i would never take this professor again. he is way too difficult for no reason. he compares his course to a math class and says \"you won't get a good grade in a math course for just trying, you have to do well.. same applies to my class\" like come on.. it's art. this is not an easy a course! but if you want to challenge yourself, go for it", + "pos": 0.082, + "neu": 0.824, + "neg": 0.094, + "_id": { + "$oid": "6711d4bccd60fca157e5c323" + } + }, + { + "text": "He compares everyone's work in class. Therefore, if you suck at drawing and there this dude that totally knows what heshe is doing, you are, doomed? I am actually pretty good at drawing, however, compared to the best ones in class I am pretty bad. I was so excited for this teacher, and now I feel so discouraged especially because I'm an art major", + "pos": 0.194, + "neu": 0.642, + "neg": 0.164, + "_id": { + "$oid": "6711d4bccd60fca157e5c324" + } + }, + { + "text": "He grades based on how the rest of the class does. I am not an artist and I obviously took this class because I wanted an easy A but I ended up finishing with a B-. Im not a terrible artist, but I've taken art in high school before and I know that there are always steps to drawing. He demonstrates but literally doesn't teach how.", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c325" + } + }, + { + "text": "Love him! Awesome professor =) Really teaches you how to draw and is a super fair grader. Other than the final, he allows you to redo any of your drawings for a better grade. Plus he's really nice. Take him if you want an great class in where you actually learn.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c326" + } + }, + { + "text": "Good professor. He is really clear, patient, and fair. He gives good feedback too! I enjoyed his class and learned a lot. Take your time to do each assignment in class and give your final your all and you'll do good in this class.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c327" + } + }, + { + "text": "A few of the supplies were not used. He's clearly an expert at his craft. He's concise, available, and awesome. Focus throughout the semester on your drawings, but for the final project, give it ALL you have & more.", + "pos": 0.062, + "neu": 0.899, + "neg": 0.04, + "_id": { + "$oid": "6711d4bccd60fca157e5c328" + } + }, + { + "text": "cool guy. a very fair grader, he gives you a chance to redo your work if you're not happy with the grade. and be prepared to spend a lot on art supplies you probably wont use.", + "pos": 0.205, + "neu": 0.724, + "neg": 0.07, + "_id": { + "$oid": "6711d4bccd60fca157e5c329" + } + }, + { + "text": "Tom is a really awesome teacher! He physically shows you how to make your drawings, and how to improve them. If you learn from example, his are the best. I recommend him as an intro to drawing professor.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c32a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bccd60fca157e5c32c" + }, + "professor_name": "Federica Raia", + "rating": 3.8, + "department": "Chemistry department", + "comments": [ + { + "text": "Hot, take her class ;)", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c32d" + } + }, + { + "text": "I really liked her purpose for teaching, she wanted students to understand methods and concepts rather than terms and definitions. Her exams are pretty difficult but participation matters a lot. So speak up in class. She is really charismatic also, you can't fall asleep in the class. So take her, she is recommended!", + "pos": 0.135, + "neu": 0.834, + "neg": 0.03, + "_id": { + "$oid": "6711d4bccd60fca157e5c32e" + } + }, + { + "text": "Very good professor, recommend highly. You got to read the book, if so u'll do great", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c32f" + } + }, + { + "text": "Cool professor! Loved the class and she is great!", + "pos": 0.645, + "neu": 0.355, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c330" + } + }, + { + "text": "Great Professor! Knowledgeable, smart, funny, and incredible approachable. I never felt more comfortable asking questions and being so active in the class. She encourages students to think and participate in the class. One of the best and most interesting classes I?ve ever taken!", + "pos": 0.386, + "neu": 0.566, + "neg": 0.047, + "_id": { + "$oid": "6711d4bccd60fca157e5c331" + } + }, + { + "text": "Fun class, lots of intersting scientific ideas are applied made tangible. Very useful report writings and presentation skills.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c332" + } + }, + { + "text": "I learned a lot from this class as far as content knowledge goes. Needs a little bit more focus towards teacher preparation. The science papers were tough to work on, but a great learning process. The other class activities were very interesting too. I would recommend this for all earth science teachers.", + "pos": 0.207, + "neu": 0.772, + "neg": 0.02, + "_id": { + "$oid": "6711d4bccd60fca157e5c333" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4bccd60fca157e5c334" + } + }, + { + "text": "She is very unclear and confused with explaining things.The class is chaotic because she can simply not talk interestingly and thus the students are loud throughout the entire class time!", + "pos": 0.0, + "neu": 0.71, + "neg": 0.29, + "_id": { + "$oid": "6711d4bccd60fca157e5c335" + } + }, + { + "text": "She is very concerned that students learn. Very easy grader and an easy A if you do your homework. Good to raise your GPA. Highly recommend, you learn alot and it is an easy class", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d4bccd60fca157e5c336" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bdcd60fca157e5c338" + }, + "professor_name": "Gwendolyn Dordick", + "rating": 2.8, + "department": "Sociology department", + "comments": [ + { + "text": "I just started the fall 2024 semester and decided to give this teacher a chance, I had to drop the class because of the way she talks to her students. I don't think I would ever take a class that this professor teachers, good luck if u still decide to take her.", + "pos": 0.136, + "neu": 0.828, + "neg": 0.036, + "_id": { + "$oid": "6711d4bdcd60fca157e5c339" + } + }, + { + "text": "She very sassy don't say I didn't told yall lol", + "pos": 0.0, + "neu": 0.794, + "neg": 0.206, + "_id": { + "$oid": "6711d4bdcd60fca157e5c33a" + } + }, + { + "text": "I honestly wouldn't take her class I took \"seductions of crime\" and although the material was very interesting, she is very rude, there was many times she cuts me off and other students, she's really harsh on her students. You will need a textbook for this class, if you want an interesting topic why not? but the teacher isn't it because she is rude", + "pos": 0.094, + "neu": 0.742, + "neg": 0.163, + "_id": { + "$oid": "6711d4bdcd60fca157e5c33b" + } + }, + { + "text": "I took Professor Dordick's Intro to Sociology class in the spring 2022 semester. I liked her teaching style and her passion for what she taught. I would absolutely take another class with her again if I could.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c33c" + } + }, + { + "text": "The lectures were fun and interesting. Lots of reading, if you don't buy the textbook, it's going to be really stressful to do well. She makes you do group work, two midterms, and a final. Random pop quizzes but those are just added points to your exams.", + "pos": 0.109, + "neu": 0.846, + "neg": 0.045, + "_id": { + "$oid": "6711d4bdcd60fca157e5c33d" + } + }, + { + "text": "She was a lovely professor she would at times make the class laugh. But if you don't like reading I don't recommend you take this class. She would give you a weekly reading assignment you would have to read she gives random pop quizzes. She gives you 2 midterms and 1 final and discussion circles which are done in class.", + "pos": 0.071, + "neu": 0.848, + "neg": 0.081, + "_id": { + "$oid": "6711d4bdcd60fca157e5c33e" + } + }, + { + "text": "She's a great Sociology instructor. There were three in person exams, two papers, pop quizzes (add points to exams), and discussion circles/groups. As long as you read the textbook and assigned readings. This class should be a piece of cake. Not reading the textbook and readings may impact your performance on exams and papers.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c33f" + } + }, + { + "text": "Literally requires us to do 2/4 essays midterm, and final and you an pass", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c340" + } + }, + { + "text": "Sociology is a core class sometimes depending on your major, though for mine it was. She is by far the worst professor in the universe. Especially a freshman coming in she is like in the slap on the face. Making you read an impossible amount of work. She is sometimes rude to the student depending on her mood. I warn you DO NOT TAKE HER!!", + "pos": 0.056, + "neu": 0.82, + "neg": 0.124, + "_id": { + "$oid": "6711d4bdcd60fca157e5c341" + } + }, + { + "text": "It's been 1+ yrs since I took intro to sociology but I still recall the experiments we discussed in class. Best skill to focus on in this course is a birds-eye view of the world around you. I think she encourages you to be yourself and that's the best way to learn. Also, group projects are a great way to make friends as freshmen. You got this!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c342" + } + }, + { + "text": "She's an interesting person but I think that she isn't the best professor. She wasn't caring nor attentive to her students' needs, and while her job may only be to lecture, it helps when a prof. can actually make students want to come to class not just b/c attendance is mandatory. Made me less interested in sociology which sucks.", + "pos": 0.153, + "neu": 0.694, + "neg": 0.153, + "_id": { + "$oid": "6711d4bdcd60fca157e5c343" + } + }, + { + "text": "I don't understand why people do not like her. She is very clear with what she wants from us. She said that the textbook was necessary but we only had 3 readings from the textbook, everything else was on BB. Gives good feedback. 2 projects (papers), midterm and final. Pretty straightforward. Would take again.", + "pos": 0.164, + "neu": 0.811, + "neg": 0.025, + "_id": { + "$oid": "6711d4bdcd60fca157e5c344" + } + }, + { + "text": "This professor is an extremely hard grader. She made a couple mistake on my midterm and marked other questions wrong so my grade remained the same. Unbelievable I do not recommend her.", + "pos": 0.047, + "neu": 0.709, + "neg": 0.244, + "_id": { + "$oid": "6711d4bdcd60fca157e5c345" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bdcd60fca157e5c347" + }, + "professor_name": "Alexander Stas", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "I have taken Prof AJ twice now, and his teaching method is exactly the same. He is very in-depth when it comes to lectures, giving lots of examples. He stops to see if any students have questions all the time. He is willing to help all the time. He doesn't check hw but make sure you're doing them for practice. Gives review sheets for every exam", + "pos": 0.093, + "neu": 0.888, + "neg": 0.019, + "_id": { + "$oid": "6711d4bdcd60fca157e5c348" + } + }, + { + "text": "BEST PROFESSOR EVER IN CCNY! Think about taking him? Don't even think just put his class into your schedule! 3 exams 1 final and homework online. Exams are honestly easy if you attend lectures and review sessions because he gives clear understanding examples. Curves grades as well! Homework system is useless but good for the extra points. Best prof", + "pos": 0.282, + "neu": 0.692, + "neg": 0.026, + "_id": { + "$oid": "6711d4bdcd60fca157e5c349" + } + }, + { + "text": "One of the best in CCNY, with very engaging lectures. Review days are the best. AJ wants best for the students. Funny too.", + "pos": 0.503, + "neu": 0.497, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c34a" + } + }, + { + "text": "He honestly is really great for a math course. He doesn't continue unless he's sure everyone in the class understands the topic. He will do a lot of examples and review sessions before exams. There's three exams and a final. If you do practice exams and go over the review it's easy to get an A. Definitely will recommend him.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c34b" + } + }, + { + "text": "Really great notes, fair grading, gives 3 exams + final (based on past department finals found on CCNY math department website)always answer your questions during class, gives a lot of homework for practice. Available for office hours. Great professor (basically out in the work and you will pass)", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c34c" + } + }, + { + "text": "AJ is a good professor. Reason: - Helpful review sessions before his exams and finals - Slows down lectures if you are confused - Gives a lot of examples", + "pos": 0.168, + "neu": 0.765, + "neg": 0.068, + "_id": { + "$oid": "6711d4bdcd60fca157e5c34d" + } + }, + { + "text": "Horrible professor, while he is a nice guy he cannot teach. Was completely and utterly confused and dreaded going to his class. His method of teaching is very textbook which does not help simplify things at all. Wanted to withdrawal but missed deadline.", + "pos": 0.059, + "neu": 0.719, + "neg": 0.222, + "_id": { + "$oid": "6711d4bdcd60fca157e5c34e" + } + }, + { + "text": "I took Professor Stas for math 190 and he was great. He taught the material in a way that is easily understandable. He is a fair grader so the work you put in is what you'll get.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c34f" + } + }, + { + "text": "AJ is a very clear professor who goes over exactly what you need to know for the course. He doesn't continue on with the lesson until he's sure that everyone understands. Always available outside of class. I would meet up with him 9 AM each morning to go over homework. He gives a quiz every week or so straight out of the hw so make sure you do it!", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d4bdcd60fca157e5c350" + } + }, + { + "text": "Stas is a good guy and fair professor. That being said, Calc II is not an easy course. Do ALL the homework. If you're still not comfortable with the section do it again. He makes himself available after class and during office hrs which is a big plus. Show up to class, put in sufficient effort, don't fall behind on HW and you will pass.", + "pos": 0.073, + "neu": 0.855, + "neg": 0.072, + "_id": { + "$oid": "6711d4bdcd60fca157e5c351" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bdcd60fca157e5c353" + }, + "professor_name": "Adanna Alexander", + "rating": 1, + "department": "Biology department", + "comments": [ + { + "text": "Emphasis on TOUGH GRADER like when I tell you guys its honestly ridiculous how meticulous this lady is, like you can never catch a break with this lady. She may seem all fun but when it comes down to the work youre in for it. Be very precise when answering questions theres no in between with this lady.", + "pos": 0.118, + "neu": 0.787, + "neg": 0.095, + "_id": { + "$oid": "6711d4bdcd60fca157e5c354" + } + }, + { + "text": "I took her for the second part of genetics class. The 1st part we had a different professor. She is just horrible. She didnt go by the assigned textbook, she took her slides from somewhere else, and they werent clear at all. Seems like she doesnt know anything. The only sunshine during the exams was the presence of our 1st professor, hes a lamb", + "pos": 0.08, + "neu": 0.841, + "neg": 0.08, + "_id": { + "$oid": "6711d4bdcd60fca157e5c355" + } + }, + { + "text": "She's horrible, my hard work from the 1st 1/2 of the semester just went to the trash after she took over. Her PPt are useless, sometimes I was so confused about which chapter we were and if someone asked her a question she behaved like you were stupid or like you were bothering and taking her time. Her exams are extremely difficult, don't take her.", + "pos": 0.062, + "neu": 0.696, + "neg": 0.242, + "_id": { + "$oid": "6711d4bdcd60fca157e5c356" + } + }, + { + "text": "Terrible. Her lectures and the practice problems will not prepare you at ALL for her exams. Claims her exams will be similar to what is done in class and will make them way more complicated. Dont do it to yourself! Only reason I did well in this class is because we had another professor half of the semester and got to drop one of her exams", + "pos": 0.029, + "neu": 0.858, + "neg": 0.113, + "_id": { + "$oid": "6711d4bdcd60fca157e5c357" + } + }, + { + "text": "Exams are difficult, nothing like the practice problems, even the recitation leaders have a tough time answering the practice problems which are easy in comparison to her exams. She doesn't know how to teach", + "pos": 0.068, + "neu": 0.66, + "neg": 0.271, + "_id": { + "$oid": "6711d4bdcd60fca157e5c358" + } + }, + { + "text": "Worst professor. Her practice questions before exams are just to mess with you and give you hope for the exams. The exams are very different from whatever garbage she gives you. Go over her slides, youll get atleast a 50. Idk how shes teaching genetics. She spends so much time making corny jokes and complains when you need help. Not clear at all", + "pos": 0.101, + "neu": 0.73, + "neg": 0.17, + "_id": { + "$oid": "6711d4bdcd60fca157e5c359" + } + }, + { + "text": "She's unclear about grading criteria. No matter the amount of hours you put it it's just hard to get a good grade on her exams when the questions are ridiculous that even the recitation leaders had hard time. She can't teach, doesn't know what's on her slide, tries to make her own questions but they are always flawed.", + "pos": 0.031, + "neu": 0.8, + "neg": 0.17, + "_id": { + "$oid": "6711d4bdcd60fca157e5c35a" + } + }, + { + "text": "She went too fast. Didnt really ask if people understood the content, she just kept on going. She does answer student questions but I was still confused. She did give chances for extra credit and everything was in groups. The only thing that was independent was the tests which were hard (only 25 questions for 3-4 chapters). No rubric provided.", + "pos": 0.082, + "neu": 0.809, + "neg": 0.108, + "_id": { + "$oid": "6711d4bdcd60fca157e5c35b" + } + }, + { + "text": "Shes literally the WORST professor ever. Took her for Genetics over the summer and that was the WORST idea everrrrr. She acts like she doesnt care about anyone and makes racist jokes in class. She tries to act funny and i feel like she spent more effort aiming to look cool than teaching the course. DONT TAKE", + "pos": 0.159, + "neu": 0.628, + "neg": 0.213, + "_id": { + "$oid": "6711d4bdcd60fca157e5c35c" + } + }, + { + "text": "She claims that her tests are based off her lectures, but she doesn't even know what's on her slides. Every test was tough and tricky and she didn't even bother to make sure we understood the material. Granted that it was a summer class, I definitely did not learn the material properly no matter how much I studied on my own time. TOUGH GRADER!!!", + "pos": 0.163, + "neu": 0.736, + "neg": 0.1, + "_id": { + "$oid": "6711d4bdcd60fca157e5c35d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4becd60fca157e5c35f" + }, + "professor_name": "Hidetaka Hirota", + "rating": 4.1, + "department": "History department", + "comments": [ + { + "text": "Similar to other City College professors, Hirota was a disappointment; therefore, it is no wonder I withdrew from his course in the Spring semester. I understand City isn't exactly a high caliber school, but I wish they could try to make the professors have higher standards in their comportment. He does give a lot of work, tho it is interesting.", + "pos": 0.106, + "neu": 0.838, + "neg": 0.056, + "_id": { + "$oid": "6711d4becd60fca157e5c360" + } + }, + { + "text": "He gives lot of reading and expects you to memorize all of his notes. He never gives terms for the midterm or final exam. He is an easy grader. But participation matters a lot. He only gives one extra credit in the entire semester. He is not the best but good. He is friendly and willing to help you with your history paper.", + "pos": 0.231, + "neu": 0.711, + "neg": 0.058, + "_id": { + "$oid": "6711d4becd60fca157e5c361" + } + }, + { + "text": "Professor Hirota is obviously passionate about immigration history, and made sure the class was by the end of the semester. He led class discussions on one of the many readings on a weekly basis, and engaged students by doing so. For the lectures, he mostly kept to the slides, reading them off 1 by 1, which can become tedious, but meant easy notes!", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c362" + } + }, + { + "text": "Lots of reading, but manageable if you take your time out to schedule yourself. The reading matters, you will need it for the tests and essays and final. Pay attention whatever he teaches you will need to remember for the final. But overall he is fair.", + "pos": 0.084, + "neu": 0.883, + "neg": 0.033, + "_id": { + "$oid": "6711d4becd60fca157e5c363" + } + }, + { + "text": "Professor Hirota is a genuine and sweet professor. He cares for students understanding and opinions and tries to help helps you out a lot with papers. He gave 3 papers and weekly quizzes and a final. You will not regret taking this professor. You will leave his courses with deep understanding.", + "pos": 0.228, + "neu": 0.752, + "neg": 0.02, + "_id": { + "$oid": "6711d4becd60fca157e5c364" + } + }, + { + "text": "He is very nice and like to hear what students has to say. 3 papers and a final. Quizzes every week based on readings. Very manageable class. He is also nice and very knowledgeable.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c365" + } + }, + { + "text": "Better than average teacher. He has an accent and stumbles on his words. However good note taking is a must for his final. It is loads of reading some of which will have a quiz the day of. Papers are graded by him and a grader; overall grading is very lenient.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c366" + } + }, + { + "text": "Great professor. If you do not participate, you get an F for the course. He just wants to hear you say something and stay engaged. 3 essays and a midterm. Very easy course and you learn so much. Quizzes every week or 2x a week based on readings. Very open to students' ideas and thoughts. I highly recommend.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c367" + } + }, + { + "text": "lots to read, 3 whole books quiz one a week for sure (based on readings) slight accent but not a particular hard class for someone that enjoys the topic.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c368" + } + }, + { + "text": "Class can be a bit boring. Quiz at least once a week. He is a good instructor though. He doesn't shoot down anyone's ideas and he isn't a particulary strict grader.", + "pos": 0.14, + "neu": 0.795, + "neg": 0.065, + "_id": { + "$oid": "6711d4becd60fca157e5c369" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4becd60fca157e5c36b" + }, + "professor_name": "Jose Peralta Genao", + "rating": 4, + "department": "Spanish department", + "comments": [ + { + "text": "i took spanish 3 and attendance was very mandatory we met 3 times a week. prof peralta is helpful, polite and willing to work with students. his lectures are clear and easy to understand. there are a few exams and frequent quizzes, as well as many assignments on the virtual textbook which is expensive. content was easy", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c36c" + } + }, + { + "text": "The lecturer is fantastic; he is passionate about his work. In addition, you will gain lots of knowledge in class. His assignment is not hard, but be ready to read.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c36d" + } + }, + { + "text": "By far one of the best teachers at city college! He demonstrates true understanding of the text, curse and topic while also challenging his students to think deeper. Brings up interesting POVs in class that forces students to think deeper about each subject without pushing his own all in order to help you develop your POV. i highly respect him.", + "pos": 0.238, + "neu": 0.714, + "neg": 0.047, + "_id": { + "$oid": "6711d4becd60fca157e5c36e" + } + }, + { + "text": "Professor Peralta is an amazing professor. He is caring and respected. There is a lot of homework that you have to complete but the homework will help you to prepare for midterm and final. He is willing to help you if you ask for it. TAKE HIM if you can.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c36f" + } + }, + { + "text": "HIGHLY RECOMMEND buying the multiple-semester code, includes textbook & MySpanishLab. He doesn't really teach anything, just reads off the textbook during lecture. Take him if you don't care to learn Spanish but need the language credit. Use Google Translate. You do all assignments on MySpanishLab. Hw 3-4 times a week, 2 oral exams, Midterm & Final", + "pos": 0.099, + "neu": 0.871, + "neg": 0.03, + "_id": { + "$oid": "6711d4becd60fca157e5c370" + } + }, + { + "text": "This professor gives ZERO feedback and basically lets you do everything on your own. There is lots of homework on MySpanishLab and since the classes are not mandatory which he specifically states at the beginning of class, you'll be lost unless you specifically ask for help. He does not give you a syllabus so always check MySpanishLab! Horrible!!!", + "pos": 0.042, + "neu": 0.832, + "neg": 0.126, + "_id": { + "$oid": "6711d4becd60fca157e5c371" + } + }, + { + "text": "I don't like this man. I had him during the Covid Era, and he said in the first class that he will not have any lecture planned. I refuse to waste my time showing up to a lecture that is not organized, and he only makes certain announcements in Zoom. If you make something optional I should get announcements somewhere else through email or BB.", + "pos": 0.03, + "neu": 0.869, + "neg": 0.101, + "_id": { + "$oid": "6711d4becd60fca157e5c372" + } + }, + { + "text": "Very straight forward will take all questions when teaching, cares about the students and really helps them get into Spanish. Speaks in both english and Spanish when teaching which was very helpful. Only problem is that there is a lot of homework for the class and you have to pay for a pearson course for homework and quizzes.", + "pos": 0.166, + "neu": 0.77, + "neg": 0.065, + "_id": { + "$oid": "6711d4becd60fca157e5c373" + } + }, + { + "text": "Great Professor! I learned a lot! Just do your HW and study for exams unlike me. He's very nice and even accepted my late work. I think you're allowed 3 absences.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d4becd60fca157e5c374" + } + }, + { + "text": "Spoke entire class in Spanish but was really easy going. Homework (done online) was due at the end of the week on Saturday by 11:59pm. One midterm, 1 final, 4 online quizzes, and 2 oral presentations make up your entire grade. Just be careful with online quizzes & homework b/c if you spell a word wrong or miss an accent, it is marked wrong.", + "pos": 0.082, + "neu": 0.783, + "neg": 0.135, + "_id": { + "$oid": "6711d4becd60fca157e5c375" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bfcd60fca157e5c377" + }, + "professor_name": "Cody Melcher", + "rating": 3.9, + "department": "Sociology department", + "comments": [ + { + "text": "He is genuinely the most impactful professor I have ever had. He is very knowledgeable and chooses readings that are truly engaging. His class has completely shifted my perspectives on society, race, and even my purpose. He is a very fair grader and if you actually make an effort, your grade will reflect that. Very inspiring and I recommend!", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c378" + } + }, + { + "text": "He comes off as a nice guy but in reality, he is not understanding and expects you to know everything. He is a tough grader, and not understanding at all.", + "pos": 0.06, + "neu": 0.885, + "neg": 0.055, + "_id": { + "$oid": "6711d4bfcd60fca157e5c379" + } + }, + { + "text": "Not understanding strict guy", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c37a" + } + }, + { + "text": "one of my favorite professors and classes I've taken. he makes his lectures really short and easy to understand, he was also always happy to answer emails with a lot of information and resources. it helps to make your discussion boards/notes detailed so when papers come around it's easier to find information. definitely take him!!", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c37b" + } + }, + { + "text": "one of the best professor I have taken so far at ccny. Short and informative recorded lecture. Just do the readings, and watch the recorder lectures, and you should be good to go.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c37c" + } + }, + { + "text": "All classes were asynchronous. We had discussion posts for every recorded lecture, the usual respond to two classmates, 8 reading responses, 1 midterm paper, and 1 final paper. Super interesting course, we learned how capitalism affects literally everything, creating the inequalities we see today. 10/10 would recommend :)", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c37d" + } + }, + { + "text": "Professor Melcher is definitely one of the best professors at CCNY. Hes so informative, he understands what we as students want to take away from a class that teaches capitalism a subject that can be hard to understand but he makes it very clear and relates it to the world around us. Overall, genuinely one of the best professors!", + "pos": 0.223, + "neu": 0.76, + "neg": 0.017, + "_id": { + "$oid": "6711d4bfcd60fca157e5c37e" + } + }, + { + "text": "If you are into poverty, racism, and gentrification, he is your professor. Attendance is mandatory and readings are around 30 pages per week. The tone of the class is a bit serious and strict.", + "pos": 0.033, + "neu": 0.75, + "neg": 0.217, + "_id": { + "$oid": "6711d4bfcd60fca157e5c37f" + } + }, + { + "text": "great professor, great class. You could tell he genuinely cared about making the material interesting and comprehensible to everyone. Great attitude about teaching, highly recommended.", + "pos": 0.511, + "neu": 0.489, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c380" + } + }, + { + "text": "The class is worth taking in order to gain another persepective that other professors will not treat. He is super passionate about the topic and very kind with the comments and answers emails efficently", + "pos": 0.35, + "neu": 0.601, + "neg": 0.049, + "_id": { + "$oid": "6711d4bfcd60fca157e5c381" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4bfcd60fca157e5c383" + }, + "professor_name": "Yiannis Andreopolous", + "rating": 2.1, + "department": "Engineering department", + "comments": [ + { + "text": "His lectures are not well explained.", + "pos": 0.0, + "neu": 0.734, + "neg": 0.266, + "_id": { + "$oid": "6711d4bfcd60fca157e5c384" + } + }, + { + "text": "There is no logic behind his gradings. Fuzzy lectures. Lack of intrest to answer any questions. No time office. No reply emails. Thick accent. Not generous in teaching.", + "pos": 0.0, + "neu": 0.665, + "neg": 0.335, + "_id": { + "$oid": "6711d4bfcd60fca157e5c385" + } + }, + { + "text": "Useless professor , uses students to solve his own problems he cannot do him self. Highly disrespectful and arrogant ,Don't take anything with him unless you have no other choice -good luck !", + "pos": 0.171, + "neu": 0.576, + "neg": 0.254, + "_id": { + "$oid": "6711d4bfcd60fca157e5c386" + } + }, + { + "text": "Professor is little bit funny during lecture. He knows what he is doing but do not know how to deliver the knowledge to students at all. Poor Grading & Judgment style. He is not help full at all I tried to ask for help (For Home Works) several time he answered its my job to figure out.", + "pos": 0.082, + "neu": 0.81, + "neg": 0.108, + "_id": { + "$oid": "6711d4bfcd60fca157e5c387" + } + }, + { + "text": "He is a decent professor, but never really teaches anything in a structured manner. He usually sent a grad student to take his place. Overall, he is knowlegable, but not a great professor.", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d4bfcd60fca157e5c388" + } + }, + { + "text": "He didn't show up to class most of the time - just sent a grad student. On his rare appearances, he wasn't a terribly good teacher.", + "pos": 0.1, + "neu": 0.818, + "neg": 0.082, + "_id": { + "$oid": "6711d4bfcd60fca157e5c389" + } + }, + { + "text": "This professor exists in his own world.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c38a" + } + }, + { + "text": "Teaching skills practically non-existent. For an Applied Fluids course, serious lack of practical applications. No help with course software. If you need a professor that is structured, clear, and teaches more than just theory, he's not the professor for you.", + "pos": 0.058, + "neu": 0.81, + "neg": 0.132, + "_id": { + "$oid": "6711d4bfcd60fca157e5c38b" + } + }, + { + "text": "great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4bfcd60fca157e5c38c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4bfcd60fca157e5c38d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c0cd60fca157e5c38f" + }, + "professor_name": "Roger Dorsinville", + "rating": 2.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Reads off slides and packs a lot of information into each lesson. Covers a lot of material. Reviewing problems from slides is essential for exams, but is no substitution for reading the textbook and understanding concepts. You have to write a 10 page paper on electromagnetics to go along with 3 Exams and a Final. Final is cumulative.", + "pos": 0.0, + "neu": 0.923, + "neg": 0.077, + "_id": { + "$oid": "6711d4c0cd60fca157e5c390" + } + }, + { + "text": "what i expected in the test, was totally different. so many concepts to grasp in a very short period of time !!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c391" + } + }, + { + "text": "Could be an excellent professor because he knows his field very well. However, power point (ppt) slides presented with little explanation is not the best way to pass knowledge on. Anyone can do a PPT presentation, but few can really teach. He lacks the passion to teach.", + "pos": 0.151, + "neu": 0.808, + "neg": 0.041, + "_id": { + "$oid": "6711d4c0cd60fca157e5c392" + } + }, + { + "text": "Outstanding Professor. The homework is hard but leads you in a way of self discovery. The material is very hard and requires a lot of work but the professor TEACHES very well. Don't expect to be spoon fed, but you will learn.", + "pos": 0.119, + "neu": 0.811, + "neg": 0.069, + "_id": { + "$oid": "6711d4c0cd60fca157e5c393" + } + }, + { + "text": "not that good of a professor. only wrote out formulas", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d4c0cd60fca157e5c394" + } + }, + { + "text": "no clue what he talking about!", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d4c0cd60fca157e5c395" + } + }, + { + "text": "Bad proffesor", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d4c0cd60fca157e5c396" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4c0cd60fca157e5c397" + } + }, + { + "text": "His class is indeed tough, but you actually LEARN something. His exams and homework assignments are fair and so is his grading.", + "pos": 0.122, + "neu": 0.826, + "neg": 0.052, + "_id": { + "$oid": "6711d4c0cd60fca157e5c398" + } + }, + { + "text": "Very tough professor, very tough class. You may hate how tough he is, but in the end, if you do the work, you will actually learn something. He does a Good job at giving us a tough educational kick in the pants.", + "pos": 0.139, + "neu": 0.699, + "neg": 0.163, + "_id": { + "$oid": "6711d4c0cd60fca157e5c399" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c0cd60fca157e5c39b" + }, + "professor_name": "Nikoletta Moschidi", + "rating": 3.9, + "department": "Art department", + "comments": [ + { + "text": "left this class with the same amount of knowledge I had before", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c39c" + } + }, + { + "text": "I was very disappointed to be honest. She wasnt necessarily a bad teacher and being limited to online learning she wasnt bad but I put a lot of effort into this class and we had to technically learn some of the drawing techniques ourselves so the fact that I received a B in this class made it not worth it.", + "pos": 0.091, + "neu": 0.823, + "neg": 0.086, + "_id": { + "$oid": "6711d4c0cd60fca157e5c39d" + } + }, + { + "text": "Prof. Moschidi is an amazing human being first of all. She is a wonderful professor. She walks around to give feedback to everyone around the class. She does not judge and is only concerned with helping you to better your drawing no matter your level. Your final grade is more about your effort and your evolution since the beginning. Take her!!!!", + "pos": 0.194, + "neu": 0.79, + "neg": 0.015, + "_id": { + "$oid": "6711d4c0cd60fca157e5c39e" + } + }, + { + "text": "She is very understanding and kind, but don't take her for granted. You don't have to be an art major to take this class or be good at drawing. She just cares that you really tried. She lets you redo the homework if you didn't like the grade you recieved. The final was all the work you've done from the class and one last drawing.", + "pos": 0.168, + "neu": 0.796, + "neg": 0.035, + "_id": { + "$oid": "6711d4c0cd60fca157e5c39f" + } + }, + { + "text": "Awesome professor, she really is here to help. I came a long way thanks to her, and I am not an art major. She grades you on the effort you put in and also on the subject the assignment is about, If you put in the work you will get an A easy.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a0" + } + }, + { + "text": "I drew stick people & smiley faces because I never learned to draw. She taught me how. She's OUTSTANDING! She meets you at your skill level then elevates you. I'm grateful & could cry because I can finally draw. Always thought artists were born. Didn't know they're taught too. She's really talented but doesn't show it much-just uses it to teach us.", + "pos": 0.136, + "neu": 0.834, + "neg": 0.03, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a1" + } + }, + { + "text": "the class is really organized and she lets you hand things in late. shes really nice and helpful and lets you work on the projects for weeks as long as you try, shell give you a good grade. definetely recommended!!!", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a2" + } + }, + { + "text": "For someone who's never taken drawing before, I thought the structure of the class was really helpful in me learning how to draw. Invest in your work, she can tell crap from hard work. If you want to learn the skills to draw, she's a great teacher in guiding you. If you're serious about your work, I recommend her.", + "pos": 0.161, + "neu": 0.761, + "neg": 0.078, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a3" + } + }, + { + "text": "If you have taken drawing previously,you are ahead of the game in this class. Extremely structured.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a4" + } + }, + { + "text": "She was ok, kind of a hard grader. Attend every class. And prepare to be pretty bored since for some reason NO one ever talked(someone else i knew said their class was the same way with her). Overall ok, but if possible take someone else", + "pos": 0.044, + "neu": 0.857, + "neg": 0.099, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a7" + }, + "professor_name": "Sasanthi Peiris", + "rating": 4.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "I took ENS 220, and Sasanthi was one of the most excellent professors I've had. She knows the subject very well. If you follow the lectures and attend class, it is very easy to pass this class. I would retake her!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a8" + } + }, + { + "text": "Dr. sasanthi peiris is the best professor at CSI, she has good talent to explain everything in details for the students, she cares a lot about her students. She has a beautiful heart. Please if you want to learn and good a good grade for ENS 336, you have to take her.", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3a9" + } + }, + { + "text": "Sasanthi was one of the greatest professors I've had. She took care of everyone's grades generously and made sure to teach slowly, using many examples so that every student could follow along. At first she may come off as a bit serious but she's really a total sweetheart and will joke around a bit if the class engages her. Best option-no doubt.", + "pos": 0.317, + "neu": 0.63, + "neg": 0.053, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3aa" + } + }, + { + "text": "Professor Peiris is an amazing professor. She is so sweet and caring. She really does go out her way to make sure you understand the concepts really well. She tries to make things easier for us and that is so great, especially when you are taking a winter class.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3ab" + } + }, + { + "text": "She is a great professor! If you come to class, pay attention, take very well notes and study hard. You will do great in this class! I also had her for lab, she wasn't much help for lab, but the labs were still do-able.", + "pos": 0.149, + "neu": 0.769, + "neg": 0.082, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3ac" + } + }, + { + "text": "If u want to learn the material and understand it u gotta to show up to class. Small curve. If your around the average it is considered a B.", + "pos": 0.044, + "neu": 0.956, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3ad" + } + }, + { + "text": "Teaching wise she is a 10 out of 10. You won't find any other professor that teaches as good as her. The class itself is tough and not her fault of the difficult of the course. The university needs to keep her. She needs to be a CCNY professor rather than a College of Staten Island professor.", + "pos": 0.129, + "neu": 0.809, + "neg": 0.062, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3ae" + } + }, + { + "text": "Teaching wise she is the best!!. Only take her if your EE or CpE. She is the only professor that teaches the entire book and teaches in a way that makes circuits easy to understand. Right now students are just praying the curve will save us as she has the hardest exams and quizzes. Her quiz questions are other professors midterm/final questions", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3af" + } + }, + { + "text": "She's a decent professor but she moves through the the material extremely fast and expects you to understand things quickly. Tests and quizzes are hard but they're open book. The grading criteria is laid out in the syllabus but she's unclear as to how she curves, which can be annoying or scary if you need to drop the class.", + "pos": 0.0, + "neu": 0.787, + "neg": 0.213, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3b0" + } + }, + { + "text": "She is a good professor who is willing to help students. The exam questions resemble problems she does in class and assigns for homework. She is the best option for this class since her exams are no really too bad and you get a lot of practice in class.", + "pos": 0.159, + "neu": 0.699, + "neg": 0.141, + "_id": { + "$oid": "6711d4c0cd60fca157e5c3b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c1cd60fca157e5c3b3" + }, + "professor_name": "Jian Shen", + "rating": 3.6, + "department": "Philosophy department", + "comments": [ + { + "text": "Professor Shen was great at teaching and keeping the class interested. Even though a lot of students think he was quite strict, I don't think that was the case apart from his essays. He was pretty lenient for grading the other assignments as long as you tried your best. He is also understanding if you are absent for a while.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3b4" + } + }, + { + "text": "Professor Shen is the epitome of a philosophy professor. His lectures are long but they will definitely draw you in. If youre religious remember to enter this class with an open mind and try not to get deterred from your beliefs because remember, this IS a philosophy class and professor Shen WILL question everything. Overall, I do recommend him.", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3b5" + } + }, + { + "text": "Philosophy 20100/Logic Reasoning. Professor Shen gives 10 homework assignments and it due every Sunday by 11:59 pm. The hw is 10 multiple choice questions based on the chapter reading. He sends a link for the textbook through dropbox(textbook is free). After 5 absences you get a F in the class. Class is boring. 1 group assignment. Curves final/mid", + "pos": 0.054, + "neu": 0.909, + "neg": 0.037, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3b6" + } + }, + { + "text": "His class can be boring sometimes but overall, it's interesting. Gives readings weekly and you have to write a small report on them when are very easy. Only thing that I have against him is that his grading is tough when is comes to papers. (10 reading reports, 3 papers and a final Up to 3 absences allowed before it affects final grade)", + "pos": 0.112, + "neu": 0.84, + "neg": 0.048, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3b7" + } + }, + { + "text": "Amazing philosophy professor! Take him if you get the chance to. Weekly readings(10 in all) that are not too long followed by a few (usually 3) questions about the reading. Three essays (flexible topics) and a final. Very doable. Lectures are interesting as long as you engage in them. Inspired me to pursue a minor in philosophy!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3b8" + } + }, + { + "text": "I took this Professor for philosophy so you dont have to. Miserably painful. The best part was that he randomly takes attendance so I barely showed up those dry window-less long lectures.", + "pos": 0.175, + "neu": 0.75, + "neg": 0.075, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3b9" + } + }, + { + "text": "If you are ready to be questioned on everything you may think you know then prepare yourself because this proffesor will make you question a lot ! Theres essays due every week but they are pretty straight foward. He speaks very low so sit in the front . And whatever you do trust me read ! He knows when you are using other sources that arent his.", + "pos": 0.171, + "neu": 0.775, + "neg": 0.054, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3ba" + } + }, + { + "text": "Jian is the best. This class is so difficult and it wasn't my area of expertise but Jian made it really interesting. He is the smartest guy ever. We had some annoying people in the class but he handled them like an expert. He keeps it interesting and I can't say enough good things about him. What a gem. IDK what other reviewers are talking about.", + "pos": 0.216, + "neu": 0.652, + "neg": 0.131, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3bb" + } + }, + { + "text": "He likes to be called Gill. He is an ok professor. It is just that his lectures feel very long, but when we discuss a topic as a class it can get interesting. He will give extra credit if you talk about your papers with him. Sit on the first seats of the class because he talks really low. Everything is possed on a webpage and he has a clear grading", + "pos": 0.169, + "neu": 0.793, + "neg": 0.038, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3bc" + } + }, + { + "text": "Worst Professor ever. DO NOT TAKE HIM. He reads off powerpoint slides of past we read and by that time, we are on the next readings. Weekly responses, accepts late papers but grades them harsher. Oh yeah pop quizzes are a thing, but you can use your computer to google the answers. Ask him what philosophy is, and he says he doesn't know. DO NOT TAKE", + "pos": 0.061, + "neu": 0.846, + "neg": 0.093, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3bd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c1cd60fca157e5c3bf" + }, + "professor_name": "Mohammed Shibli", + "rating": 2.3, + "department": "Computer Science department", + "comments": [ + { + "text": "Despite what others say, he is usually late. The biggest flaw he has in teaching is that he doesn't even grade your assignments, it's determined by RNG; people who don't submit homeworks can still get an 85, the default grade. He doesn't know what he is teaching. He doesn't even read the slides and won't upload them.", + "pos": 0.041, + "neu": 0.959, + "neg": 0.0, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c0" + } + }, + { + "text": "I am lucky to have a class with him.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c1" + } + }, + { + "text": "absolutely horrible. worst teacher in the entire school. he has no idea what he is teaching. doesnt know the material he suppose to teach. his grading makes no sense. u can do all the work correctly and still get an 80. his class is a joke!!! BEWARE OF THIS TEACHER!", + "pos": 0.036, + "neu": 0.738, + "neg": 0.225, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c2" + } + }, + { + "text": "This guy does not teach anything. He literally comes into class to waste time by asking dumb things. He'll open up a slide for 10 mins and skims through it. All of his assignments and projects are copied from another professor. He himself does not know whats going on. YOU WILL LEARN NOTHING. you will spend a lot of time teaching yourself everything", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c3" + } + }, + { + "text": "He may be a tough professor, but he is a well-respected man.", + "pos": 0.0, + "neu": 0.898, + "neg": 0.102, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c4" + } + }, + { + "text": "This prof is by far the worst professor at CCNY. If you have any question about the material,just google it. This guy has no understanding on the fundamentals of programming or JAVA. He has admitted countless time that he just started learning about material the day off class. How do you expect a person who knows nothing to teach a class of student", + "pos": 0.021, + "neu": 0.886, + "neg": 0.093, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c5" + } + }, + { + "text": "Good sense of humor. Articulated and punctual.", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c6" + } + }, + { + "text": "I'd never been so disappointed at a prof before, but geeez, this has been my worst prof at CCNY! CS Dept: you did bad hiring him. UNCLEAR grading criteria. He doesn't explain anything, and I'm pretty sure he doesn't know what he's \"teaching\". Everyone complied with hw reqs and .. you get 80s for doing exactly the hw requested? AVOID HIM.", + "pos": 0.088, + "neu": 0.659, + "neg": 0.252, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c7" + } + }, + { + "text": "He cares students and pays attention to every student. Try hard to make the topic clear.", + "pos": 0.28, + "neu": 0.65, + "neg": 0.07, + "_id": { + "$oid": "6711d4c1cd60fca157e5c3c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c2cd60fca157e5c3ca" + }, + "professor_name": "Edward Hohenstein", + "rating": 2.2, + "department": "Chemistry department", + "comments": [ + { + "text": "Teaching style was not very easy to follow. It felt as if he was asking rhetorical questions for most of the semester . Lectures were very boring. the class was very uninteresting. I think he should teach another subject.", + "pos": 0.0, + "neu": 0.876, + "neg": 0.124, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3cb" + } + }, + { + "text": "AVOID at at all costs! He is a terrible professor. His exams were very hard and unclear, you will be handing in blank pages no matter how much you studied. If you have no other choice you can try to ride the curve to pass. Lectures are theory, theory, theory, won't even do an example for the class to save his life.", + "pos": 0.045, + "neu": 0.766, + "neg": 0.189, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3cc" + } + }, + { + "text": "He's a theorist, so make sure you know all the theory behind each lab. You cannot be lazy if you want to take his class. Lab calculations are hard and not clear, so you have to constantly go see him or Kowach. I learn a lot from this lab, the struggle was worth it.", + "pos": 0.13, + "neu": 0.773, + "neg": 0.097, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3cd" + } + }, + { + "text": "In order to pass you will have to thoroughly read the textbook as his lecture will not teach you anything. I did well but only because I thought myself. Do his homework, and do the textbook problems he assigns and that should be enough to pass. Majority of people fail the all the exams, so if you're above average the curve works in your favor.", + "pos": 0.069, + "neu": 0.82, + "neg": 0.112, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3ce" + } + }, + { + "text": "He was a first year teacher and he wasn't that great. You have to read all the chapters to pass because his lectures and slides are not helpful at all. I was pretty thankful for my recitation class which helped alot more than his lecture.", + "pos": 0.129, + "neu": 0.766, + "neg": 0.105, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3cf" + } + }, + { + "text": "As a sophomore myself, i had never seen a professor who don't pick up a pencil to teach. The tests are straight forward; all you need to do is do all his HW and textbook problems that he posts on blackboard. (curve will make up ) Lecture is completley useless; but don't cut. bc there are lot of people not do so well because they cut lecture.", + "pos": 0.098, + "neu": 0.817, + "neg": 0.086, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d0" + } + }, + { + "text": "New chem professor, so his lectures aren't really helpful. Too much concept explaining instead of going over examples. If you self-study, you will do well. Got a B+ only because I did bad on the finals. Three tests, lowest one is dropped. 5% homework with EC. 15% lab. 5% workshop attendance. 5% workshop quiz. The rests are testsfinals.", + "pos": 0.032, + "neu": 0.834, + "neg": 0.134, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d1" + } + }, + { + "text": "Not hard to get a good grade if you self-teach and get the most out of workshop. If you depend solely on his lectures, you will fail. He doesn't do enough problems in class. His curves are godly so just make sure you get above the class average and you'll get a decent grade. Uncurved, I was at about a D average and ended up with a B in the class.", + "pos": 0.115, + "neu": 0.841, + "neg": 0.045, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d2" + } + }, + { + "text": "it is his first year teaching in ccny. Although i don't blame him for poor teaching skill; but his lecture notes are very random that they are all copied from the textbook. HW are copied from the other professors' previous exams; but his tests are very straight forward. if you are bad at chem; avoid him if possible, or study on ur own.", + "pos": 0.06, + "neu": 0.807, + "neg": 0.134, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d5" + }, + "professor_name": "Alexios Polychronakos", + "rating": 4.8, + "department": "Physics department", + "comments": [ + { + "text": "Amazing professor, lectures are informative and not simple repeats of the textbook. The homeworks are intentionally difficult, and the expectation is that after the completion of the homeworks you will learn a great deal.", + "pos": 0.191, + "neu": 0.749, + "neg": 0.06, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d6" + } + }, + { + "text": "You are in luck if you are reading this review, it means you have or will have the Poly Kracken. He's the absolute best professor ever. He's not easy but every homework he writes is a masterpiece. You will actually learn physics. Good luck!", + "pos": 0.317, + "neu": 0.654, + "neg": 0.029, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d7" + } + }, + { + "text": "Simply, HE IS THE BEST. Quantum mech is a extremely hard course, but this guy teaches it in a easy way. He will not fail anybody, but he wants to see ur effort. He's Extremely smart prof, he loves his field and he is very kind and respectful", + "pos": 0.413, + "neu": 0.568, + "neg": 0.019, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d8" + } + }, + { + "text": "You'd be lucky if you get this professor for any physics class, he really knows how to teach. I have been through every professor in this department and i can say he is up there. Study hard somehow he will see your efforts. He won't try to kill you with the exams, but he will challenge you. Don't take for granted the lectures, that's the key.", + "pos": 0.082, + "neu": 0.871, + "neg": 0.047, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3d9" + } + }, + { + "text": "Really Great!!", + "pos": 0.833, + "neu": 0.167, + "neg": 0.0, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3da" + } + }, + { + "text": "Very motivated and clear professor. Exams are very challenging, but he grades fairly. Helps you really understand physics. It's too bad he's not teaching any of my other Physics courses.", + "pos": 0.231, + "neu": 0.646, + "neg": 0.123, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3db" + } + }, + { + "text": "He taught the honors section introductory physics course (note that I am not an honors student). Extremely passionate about the subject, and very clear when presenting the material. Expect to be challenged, but you will really learn physics in his class. 1-2 semesters of calculus wouldn't hurt either.", + "pos": 0.183, + "neu": 0.761, + "neg": 0.055, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3dc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3dd" + } + }, + { + "text": "analytic mechanics- its such a jam packed course, basically all of mechanics with hamiltonian and lagrangian formalism. He so passionate about the subject and like to point out connections between classical and quantum mechanics. take him if you want a very entusiastic and motivated prof.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e0" + }, + "professor_name": "Stephanie Devries", + "rating": 4.8, + "department": "Science department", + "comments": [ + { + "text": "She knows how to make interest in the class, uses a lot of other online resources that really helpful. One big project at the end of the semester and a group presentation. Very easy grader, gives many extra point opportunities. Very clear and gives 2 easy mid terms. No Final. Try To Take Her.", + "pos": 0.264, + "neu": 0.703, + "neg": 0.033, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e1" + } + }, + { + "text": "She's nice and helpful. Her lectures consist of powerpoint presentation, all well organized and spoken. She lets you keep track of your grade and offers fair level of work. This was EXTREMELY BORING because she just talked and talked and, omg, talked! Interesting topic made very boring. Heavy use of blackboard.", + "pos": 0.204, + "neu": 0.691, + "neg": 0.105, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e2" + } + }, + { + "text": "She is very straight forward and very kind. she's always willing to help students even after class. she also gives a lot of extra credit", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e3" + } + }, + { + "text": "She made the class worthwhile. She made things clear, easy to understand and made herself readily available. Had it not been for her, I highly doubt that I'd have passed.", + "pos": 0.215, + "neu": 0.709, + "neg": 0.076, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e4" + } + }, + { + "text": "Very clear, knowledgeable, high expectations. Explains theory completely before each lab. Will answer questions or direct you to answer. Labs need to be 100% complete. Was a lot of work, but learned a lot. Overall very happy.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e5" + } + }, + { + "text": "This is a 100-level course, so it's pretty basic, however, you will learn a ton from the lab, and have some fun in the process. Highly recommend.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e6" + } + }, + { + "text": "I don't know about the other comments from before but she is a crystal clear professor. I really like her for lab. The lab reports are easy and the final is easier. You learn more in her lab class in one day than you do in lecture the entire semester. She knows her material really well and is extremely organized. Highly recommended!", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e7" + } + }, + { + "text": "I had her for EAS Lab. She is a good teacher. Gives good greats for effort.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e8" + } + }, + { + "text": "I am taking her this semester and I could tell you she definitely works you. There are four quizzes and it is extremely hard, you have to study in order to pass and she has to two projects you have to complete. she gives mini quizzes online and also homework!So be prepared this is not a lecture where you just sit in and think you are going to pass!", + "pos": 0.071, + "neu": 0.906, + "neg": 0.023, + "_id": { + "$oid": "6711d4c2cd60fca157e5c3e9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c3cd60fca157e5c3eb" + }, + "professor_name": "Andrew Lucchesi", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He is supportive for all of his students", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3ec" + } + }, + { + "text": "Best Professor for freshman composition course! Projects are fun and no test! The class is interesting so please go without hesitating.", + "pos": 0.479, + "neu": 0.454, + "neg": 0.067, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3ed" + } + }, + { + "text": "He is one of the best professors I've had in my 3 years of college! He meets with you if you need help, he assigns readings with profound ideas, and he understands that his class is not your only class. He explains everything thoroughly and I always loved doing in class group discussions. A perfect intro English class :)", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3ee" + } + }, + { + "text": "Very friendly and passionate professor. Explains all the class projects thoroughly. Has high expectations for the final portfolio. Overall a very enjoyable class.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3ef" + } + }, + { + "text": "One of the best professors I've had so far at CCNY. He is very enthusiastic about his subject and is willing to put aside time to help you with your writing. He doesn't rely on test scores to give you you're grade, so as long as you put some effort into the writing assignments, its an easy A. Take him for writing for engineering if you can.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f0" + } + }, + { + "text": "really great professor, always readily available outside of class. made material easy to understand. also he understood that we are taking other classes besides his. Very Helpful! would take again!", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f1" + } + }, + { + "text": "Andrew makes English 110 interesting and interactive while keeping the heavy workload to a minimum. He encouraged experimentation and creativity when it came to learning how to write within the sciences. He isn't too restrictive because he wants you to see writing the way he sees it: a medium of expression. A passionate professor all throughout!", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f2" + } + }, + { + "text": "Very passionate about writing and you actually learn a lot about writing techniques in this class. His lessons are organized and straightforward. He assigns a lot of little assignments that really help with the big projects. For some pieces, he requires small or no word limit as he cares more about quality than quantity. Absolutely great teacher.", + "pos": 0.206, + "neu": 0.762, + "neg": 0.032, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f3" + } + }, + { + "text": "Outstanding instructor and human being. Class is formatted and organized to the minute. He gives incredibly helpful feedback and knows the strengths and weaknesses of all his students. Willing to help you with anything. Absolutely amazing.", + "pos": 0.338, + "neu": 0.611, + "neg": 0.051, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f6" + }, + "professor_name": "Blenkell Baah-Williams", + "rating": 3.7, + "department": "Mathematics department", + "comments": [ + { + "text": "He's a very good at teaching the materials. Lectures are clear and gives review sheets for exams. This is a calculus class so you should attend every classes or else you'll be lost.", + "pos": 0.152, + "neu": 0.788, + "neg": 0.06, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f7" + } + }, + { + "text": "His lectures are clear , he gives you everything you need to study for exams. Fair graider. Always helps students to understand the material or At least tries his best to explain something complicated. Very funny and respectful. Curves.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f8" + } + }, + { + "text": "Made us laugh and was very clear with his lectures ! Tough grader test 40% final 40% so if you fail the final your grade is pretty much doomed! over all good class. Makes alot of jokes and makes time go by faster. Over all good class wish he can teach all of my other math classes!", + "pos": 0.272, + "neu": 0.606, + "neg": 0.122, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3f9" + } + }, + { + "text": "He's straightforward with everything. He teaches from the book but he does examples on the board to break it down for those who don't really learn from reading alone. He's lenient and will work with you to give you the grade you want, as long as you show up and are respectful, he's more than willing to give a good grade. Easy tests and quizzes.", + "pos": 0.204, + "neu": 0.763, + "neg": 0.032, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3fa" + } + }, + { + "text": "Professor Williams makes the class very easy for those who know the material. He finished the course a week ahead and we reviewed for final last 2 classes. Before each test he gives us examples of the questions on the test, he literally gave us the exact topic of the questions, and he drops the lowest test grade.", + "pos": 0.052, + "neu": 0.906, + "neg": 0.042, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3fb" + } + }, + { + "text": "An a good professor.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3fc" + } + }, + { + "text": "Excellent teacher. Helps you understand very complex problems, would take another class taught by him.", + "pos": 0.296, + "neu": 0.564, + "neg": 0.14, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3fd" + } + }, + { + "text": "Either you know everything when you start the class or you don't. It's an easy A for people who know the material beforehand but for someone who doesn't, it's a waste of time he's not clear and class seems to just drag on.", + "pos": 0.061, + "neu": 0.799, + "neg": 0.14, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3fe" + } + }, + { + "text": "If you know Math but if you have a couple breaks between high school and college and need tutoring don't. He seems nice butdoesn't have much teaching experience. He needs to work on his clarity b/c all he does is copy theme and definitions on the board from the book. You need something he says READ THE BOOK! (why are prof? getting paid again?", + "pos": 0.061, + "neu": 0.896, + "neg": 0.043, + "_id": { + "$oid": "6711d4c3cd60fca157e5c3ff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c4cd60fca157e5c401" + }, + "professor_name": "Waleed Khalid", + "rating": 4.4, + "department": "Biology department", + "comments": [ + { + "text": "Dr. Khalid is an exceptional TA and instructor. While other TAs work for paychecks, Dr. Khalid genuinely furnishes interest in the subject matter to the extent that his classes are always replete with 100% attendance. Needless to say, he is a model instructor for others at this institution.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c402" + } + }, + { + "text": "Exceptional TA who really wants his students to understand the material fully. He goes into great detail with any questions students may ask and gives out straightforward quizzes. He would be a much better lecturer than Kemeny.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c403" + } + }, + { + "text": "Waleed was my Genetics TA. He is probably one of the best TAs I ever had the pleasure of taking a class with. Very informative, polite, and caring.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c404" + } + }, + { + "text": "Prof. Walid was the best professor I had this fall 2021. He made me understand things that I struggled with. He made me feel appreciated. He acknowledged my presence and my capabilities. He reminded me how important educators are in our lives, and the impact that they can give each individual. It inspires me to one day have that effect on others.", + "pos": 0.17, + "neu": 0.796, + "neg": 0.034, + "_id": { + "$oid": "6711d4c4cd60fca157e5c405" + } + }, + { + "text": "professor is always cared about students. He is always there to help. This class was a little difficult for me even though I cant complaint of my grade.", + "pos": 0.22, + "neu": 0.714, + "neg": 0.066, + "_id": { + "$oid": "6711d4c4cd60fca157e5c406" + } + }, + { + "text": "waleed is definately the best bio TA ever, he sets aside office hours to help you understand what he wants and is very extremely helpful, TAKE HIM if you have the option, you wont regret. i had another TA for bio 2 and i didnt realize how good i had it, he's honestly the best.", + "pos": 0.282, + "neu": 0.684, + "neg": 0.034, + "_id": { + "$oid": "6711d4c4cd60fca157e5c407" + } + }, + { + "text": "Quizzes and homework every week, he basically has control over your grade. Harsh grader, expects very specific answers. Also does not prepare you for the lecture exam.", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d4c4cd60fca157e5c408" + } + }, + { + "text": "The best TA for Bio206 recitation. Really cares about the students and will take his time to make sure we understand the material. Is an advocate for the students and wants us to succeed.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c409" + } + }, + { + "text": "Great TA for Genetics, always willing to stay and work through any problems you have. Always quickly responds to email inquiries. This genetics class itself is far from easy, but his attempt to get the class to understand is refreshing, especially given the limited time frame he has to work. I would highly recommend him as your TA for Genetics.", + "pos": 0.121, + "neu": 0.811, + "neg": 0.068, + "_id": { + "$oid": "6711d4c4cd60fca157e5c40a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c4cd60fca157e5c40c" + }, + "professor_name": "Mofizur Rahman", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "One of the best professor I had as a CS Major. Would recommend 10/10", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c40d" + } + }, + { + "text": "Inspirational.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c40e" + } + }, + { + "text": "BEST PROF EVER !!!!", + "pos": 0.67, + "neu": 0.33, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c40f" + } + }, + { + "text": "I didn't fall asleep in his class because his lectures are very interesting. He seems like a nice professor, very understanding. As long as you make the effort to show up to class and learn your grades won't suffer.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c410" + } + }, + { + "text": "Amazing guy!", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c411" + } + }, + { + "text": "just Great", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c412" + } + }, + { + "text": "awesome!!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c413" + } + }, + { + "text": "BEST PROF EVER!!!!", + "pos": 0.729, + "neu": 0.271, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c414" + } + }, + { + "text": "First Professor Ever in CCNY if anyone want to learn about computer science just take his class and you are good to go. He can be tough on you sometimes but he is super funny. If you pay attention you would actually learn something his class. To all CCNY CS major I recommend Prof Rahman.", + "pos": 0.239, + "neu": 0.718, + "neg": 0.043, + "_id": { + "$oid": "6711d4c4cd60fca157e5c415" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c4cd60fca157e5c417" + }, + "professor_name": "Edward Ecock", + "rating": 4.8, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Amazing Professor, \n\nGoes over thermodynamic basics and gives insight into real world application of powerplant system problems This enhanced my knowledge in thermodynamics. The group project depends heavily on the team, pick a GOOD team. Do all the homework and practice using the mollier chart alot, professor assists in this too.", + "pos": 0.128, + "neu": 0.826, + "neg": 0.046, + "_id": { + "$oid": "6711d4c4cd60fca157e5c418" + } + }, + { + "text": "One of the best professor in the ME department. This class brushed up on many of the important thermo concepts. The lectures were comprehensive and up to date, which can be attributed to the professors industry background. Exams are straight forward and easy. The class project isn't too bad since the professor provides step by step guidance.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c419" + } + }, + { + "text": "Best Professor in the ME department by far. If you see his section, do everything you can to get it.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c41a" + } + }, + { + "text": "Best professor by far in City College.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c41b" + } + }, + { + "text": "Professor Ecock is one of the best professors I've had in CCNY. And believe me, there aren't many good teachers in CCNY GSOE. He teaches very well. He is fair in his exams and quizzes. As long as you pay attention, you will not only do well in the class but also learn a lot from him. There should be more teachers like him in CCNY!", + "pos": 0.135, + "neu": 0.806, + "neg": 0.059, + "_id": { + "$oid": "6711d4c4cd60fca157e5c41c" + } + }, + { + "text": "Lectures are clear and concise. Weekly Homeworks on the week's contents. Exams have calculation problems from Homeworks and MCQs from lectures. Group project at the end with presentation and final tech report. Respectful, and accessible outside. Thoroughly attends the presentation and reads your report. Gives feedback. The best professor I had", + "pos": 0.165, + "neu": 0.79, + "neg": 0.045, + "_id": { + "$oid": "6711d4c4cd60fca157e5c41d" + } + }, + { + "text": "OK KIND.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c4cd60fca157e5c41e" + } + }, + { + "text": "Grading criteria is 10% Attendance, 30% each 2 tests, 15% HW, and the rest the final. There is 1 tough group design project Total 12 HW, 1 hw each week. Open book and notes. Grades within a week and extremely generous. Lectures a bit boring but the prof is great. Helps any student who has a question and doesn't mind doing more examples. Great guy", + "pos": 0.22, + "neu": 0.744, + "neg": 0.037, + "_id": { + "$oid": "6711d4c4cd60fca157e5c41f" + } + }, + { + "text": "Great Professor who truly loves what he does. He is extremely knowledgeable in his field. Class was very long and got boring but the information portrayed was interesting.", + "pos": 0.297, + "neu": 0.656, + "neg": 0.047, + "_id": { + "$oid": "6711d4c4cd60fca157e5c420" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c5cd60fca157e5c422" + }, + "professor_name": "Sebastian Franco", + "rating": 4.7, + "department": "Physics department", + "comments": [ + { + "text": "All lectures were just reading off of slides, but it's a packed course so I don't think it's Dr. Franco's fault. The recitations he offered were great and he made sure students understood the concepts. He came across a little impatient sometimes but he was a pretty great professor. tip: use the Wiley Plus HW to study.", + "pos": 0.246, + "neu": 0.676, + "neg": 0.078, + "_id": { + "$oid": "6711d4c5cd60fca157e5c423" + } + }, + { + "text": "Very GOOD !! I strongly recommend taking his class", + "pos": 0.603, + "neu": 0.397, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c424" + } + }, + { + "text": "He is a very smart man and gives good notes during lectures. However he lectures a little to fast and erases the other side of the board a little too soon lol. However he is a solid choice for a Physics professor for any class. I think he curved the final grades for Mechanics of physics since I dont think i did too well in the midterm and final.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c425" + } + }, + { + "text": "I took Professor Franco's class over the summer and it was a great experience! He explains things in an easy to understand way and is willing to walk you through problems in class. He grades extremely fairly and will give credit where credit is due. Reviews before midterms are very helpful.", + "pos": 0.246, + "neu": 0.711, + "neg": 0.043, + "_id": { + "$oid": "6711d4c5cd60fca157e5c426" + } + }, + { + "text": "Professor Franco is a good teacher. He grades fairly and is generous with partial credit. His lectures are fun and all in all he makes physics fun.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c427" + } + }, + { + "text": "His lectures are okay but to understand those you have to study beforehand. If you don't do good in both midterms then you won't be able to do get a good overall grade. He is generous and curves the grade. Practice his recitation problems. Understand the concept while doing the hw problems because it will help you in the exams. He always helps.", + "pos": 0.204, + "neu": 0.671, + "neg": 0.125, + "_id": { + "$oid": "6711d4c5cd60fca157e5c428" + } + }, + { + "text": "I took Professor Franco during the summer semester. He's a great teacher who goes over the material clearly and also does examples during recitation. He's very lenient with grading the exams, and the exams themselves aren't too difficult. I would definitely recommend taking his class.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c429" + } + }, + { + "text": "This physics professor is good. You must study for the midterm and final exams in order to pass the course.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c42a" + } + }, + { + "text": "This dude is incredible. He's a good lecturer and clearly knows what he's talking about, His tests were fair and as long as you put in the effort, you got a good grade. If you have the option to take him, you absolutely should. (Took him in the summer btw)", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c42b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c5cd60fca157e5c42d" + }, + "professor_name": "Bryce Gollobit", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "He is very chill. Just do your homework , quizzes and exams. Overall his class is not that bad. he takes in students comments and tries his best to make sure his students understand.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c42e" + } + }, + { + "text": "He has definitely improved his teaching method a lot. Explains pretty well. You can also talk to him before or after the class if needed. Uploads his own notes which is amazing. Never opened the book at all. Exams are a little hard but will prepare you for the final. Apparently, the attendance quizzes don't count to the final grade. Fair curve!", + "pos": 0.191, + "neu": 0.794, + "neg": 0.015, + "_id": { + "$oid": "6711d4c5cd60fca157e5c42f" + } + }, + { + "text": "The class is 4 exams and with quizzes every class. His quizzes don't prepare you well for the exam so looking back at notes and doing extra questions from the textbook would be helpful. He does curve when the class does badly which is a plus. Overall his class would have been better if he wasn't so unclear with what grade a student has.", + "pos": 0.11, + "neu": 0.822, + "neg": 0.068, + "_id": { + "$oid": "6711d4c5cd60fca157e5c430" + } + }, + { + "text": "Soooo many quizzes, and they're all really hard!", + "pos": 0.0, + "neu": 0.779, + "neg": 0.221, + "_id": { + "$oid": "6711d4c5cd60fca157e5c431" + } + }, + { + "text": "He is a great professor. He is very caring and tries his best to make sure you understand. Make sure you attend every class because what he teaches is what will appear on the exams and may not necessarily follow the textbook. As any other math class STUDY!", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c432" + } + }, + { + "text": "Pretty straight forward Professor for calc 3", + "pos": 0.505, + "neu": 0.495, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c433" + } + }, + { + "text": "I had him for calculus 3. Compared to other professors, he is able to teach but he isn't the best. This was his second semester teaching and first semester teaching calc 3. although his exams and quizes were easy, they weren't enough for the final. Review the previous finals and you'll be fine. He's veeerrryy nice.", + "pos": 0.147, + "neu": 0.784, + "neg": 0.069, + "_id": { + "$oid": "6711d4c5cd60fca157e5c434" + } + }, + { + "text": "Knows his material and sometimes doubts himself, but clears up after thinking about how to explain. Dont be afraid to ask questions in front of the class because he doesnt care and will help you understand. He also stayed after class and retaught topics that were challenging to some. He drops lowest quiz. His quarterly exams arent that extreme.", + "pos": 0.101, + "neu": 0.776, + "neg": 0.124, + "_id": { + "$oid": "6711d4c5cd60fca157e5c435" + } + }, + { + "text": "New Professor. Knows his math but speaks pretty low and you cannot hear him if you happen to sit in the back. fair grader. responds to emails in the same day. he is pretty young but that's not a big deal", + "pos": 0.226, + "neu": 0.723, + "neg": 0.052, + "_id": { + "$oid": "6711d4c5cd60fca157e5c436" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c5cd60fca157e5c438" + }, + "professor_name": "David Jaffee", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "Dave is contradictory: he is a real head case and at the same time he is without doubt a genius. Brilliant just doesn't do it, GENIUS! If you can handle the experience, his course is well worth taking. The rewards are amazingly on-going, a real experience.", + "pos": 0.239, + "neu": 0.718, + "neg": 0.043, + "_id": { + "$oid": "6711d4c5cd60fca157e5c439" + } + }, + { + "text": "He gives a ton of homework but all the reading is very interesting. The class is very fun and he's a nice guy, just make sure you do your homework. He's not the easiest grader but, if you get a B or below, he'll usually let you rewrite a paper. He's one of the best prof. in City College!", + "pos": 0.279, + "neu": 0.683, + "neg": 0.039, + "_id": { + "$oid": "6711d4c5cd60fca157e5c43a" + } + }, + { + "text": "Great teacher - interesting classes", + "pos": 0.694, + "neu": 0.306, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c43b" + } + }, + { + "text": "Great Teacher, Will encourage Students and is serious about his profession", + "pos": 0.443, + "neu": 0.479, + "neg": 0.078, + "_id": { + "$oid": "6711d4c5cd60fca157e5c43c" + } + }, + { + "text": "Great Prof. Knows his stuff backwards and forwrds. Expert in his field. Gives tons of work, but if you like the subject, who cares? Great reading selections. Should be head of Department.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c43d" + } + }, + { + "text": "Professor Jaffe is a great person. He cares about history and wants you to get a clear understanding of the material. The reading is quite much, but still manageable. The books he assigns are good and read well.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c43e" + } + }, + { + "text": "Smart,clear,nice, he cares", + "pos": 0.6, + "neu": 0.4, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c43f" + } + }, + { + "text": "He is nice he has a website for the class where he has virtual images of history and real documents and pics. He uses the text and real documents to teach history.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c440" + } + }, + { + "text": "He's very nice and very helpful. He will show you different and fun ways of learning history.", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d4c5cd60fca157e5c441" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c6cd60fca157e5c443" + }, + "professor_name": "Harriot Alonso", + "rating": 4.9, + "department": "History department", + "comments": [ + { + "text": "She is the absolute best!!! Love her and her classes to death! All you have to do to get an A is: come to class, do the readings, take advantage of the fact that you get the midterm and final questions before hand (first day of class to be exact), and have fun with your assigned presentation! I will miss her though, she's going on sabbatical.", + "pos": 0.219, + "neu": 0.715, + "neg": 0.067, + "_id": { + "$oid": "6711d4c6cd60fca157e5c444" + } + }, + { + "text": "She is so sweet! Midterm & a Final & a presentation BUTTTTT for midterm and the final, the question is already in the syllabus and she allows a page of notes for you to use for the essay. Presentation just has to be fun and interesting. Available for advice during office hours and sends emails reminding you of midterm/final. AMAZING professor!", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c445" + } + }, + { + "text": "Had her for US History ll at Fitchburg State around 1990. I ended up going to graduate school for history after her class sparked an interest I hadn't. Known was there. Wonderful person and teacher.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c446" + } + }, + { + "text": "SHE IS SUCH A SWEETHEART! AS LONG AS YOU PAY ATTENTION IN CLASS AND TAKE GOOD NOTES YOULL DO OK IN HER MIDTERM AND FINAL,,,SHE LIKES TO DO PRESENTATIONS TOO SO JUST BE CREATIVE! IF YOU MISS ONE OF HER EXAMS THERE'S AN OPTION TO MAKE IT UP BUT THE HIGHEST GRADE YOU CAN GET IS A \"C\",,,SO IT'S BETTER THAT YOU TAKE IT WHEN ASSIGNED BC ITS OPEN BOOK!!", + "pos": 0.191, + "neu": 0.778, + "neg": 0.031, + "_id": { + "$oid": "6711d4c6cd60fca157e5c447" + } + }, + { + "text": "Extremely helpful professor! Be sure to put a little effort into her essays and you will get an easy A. One of the best professors in ccny!Influenced me to major in history myself =]", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c448" + } + }, + { + "text": "Great teacher, really helpful and interesting. She goes out of her way for students and really wants you to take away something from the class. She grades a bit harshly (grammar) but expect to get a good grade in her class if you do your work. Very easy to approach when it comes to questions. Very helpful.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c449" + } + }, + { + "text": "she is one of the best professors i ever had...she was the reason why i became a history major..", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c44a" + } + }, + { + "text": "Prof. Alonso made this class fun. She's the coolest history professor and I highly recommend her.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c44b" + } + }, + { + "text": "Prof. Alonso is a great professor; not to be taken lightly though. You will walk out of her classroom knowing U.S. History. Before walking into her class, polish your essay writing skills. You WILL need them a lot; in fact, your grade will depend on it.", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c44c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c6cd60fca157e5c44e" + }, + "professor_name": "Andy Podell", + "rating": 4.9, + "department": "Engineering department", + "comments": [ + { + "text": "Podell is a great professor. He taught the evening section for Engr 101. He made a late night class interesting and something to look forward to. Being a retired Electrical Engineer gave Podell work experience and many stories to tell. This year is his last year and the Spring 2013 Engr 101 was cancelled due to lack of students. He will be missed.", + "pos": 0.095, + "neu": 0.813, + "neg": 0.091, + "_id": { + "$oid": "6711d4c6cd60fca157e5c44f" + } + }, + { + "text": "Often funny but sometimes gets mad at seemingly small things. Learned many other interesting details in his class including why women must have invented mathematics. Apparently because unlike men they have ten fingers.", + "pos": 0.138, + "neu": 0.754, + "neg": 0.108, + "_id": { + "$oid": "6711d4c6cd60fca157e5c450" + } + }, + { + "text": "OMG. I LOVE THIS MAN.", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c451" + } + }, + { + "text": "This professor is very enthusiastic about engineering. Funny guy and explains things in a way that is comprehensible. Must do his homework though, or you will lose points in class.", + "pos": 0.177, + "neu": 0.748, + "neg": 0.075, + "_id": { + "$oid": "6711d4c6cd60fca157e5c452" + } + }, + { + "text": "Good professor. Gives a 1min quiz on every lab, but they're very easy questions. Good. Take him.", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c453" + } + }, + { + "text": "Take this professor, his two question quizzes are easy, he explains everything you need to do on the labs, and his criticism on the presentations are sincere and helpful. His life stories of past jobs and experiences, opinions on US history and presidents, and advices for the future are very helpful and interesting. Not to mention,pretty funny guy.", + "pos": 0.204, + "neu": 0.721, + "neg": 0.075, + "_id": { + "$oid": "6711d4c6cd60fca157e5c454" + } + }, + { + "text": "Take This Professor", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c455" + } + }, + { + "text": "Very cool professor. Provides you with all the info you need to do the labs and projects. He can tell some interesting stories too. Two-question quizzes are easy points if you do some quick reading in the book. Highly recommend this prof!!", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c456" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4c6cd60fca157e5c457" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c6cd60fca157e5c459" + }, + "professor_name": "Michelle Di Ionno", + "rating": 4.8, + "department": "Economics department", + "comments": [ + { + "text": "Her class is best on Aplia. If you do well on the Hw you pass the class. Don't do the hw last minute because is a lot. Review her notes. She is very helpful and knowledgeable. Also attendance is required so you should come to class every day. One of the best professor at ccny.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c45a" + } + }, + { + "text": "I don't usually write reviews.. but she is one amazing professor. Took her in the summer and she made every penny I spent on the class count. More professors should learn to be like her. She is a professor that actually cares that her students understand.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c45b" + } + }, + { + "text": "I wish she could teach all classes at City College.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c45c" + } + }, + { + "text": "She teaches so well that I think she took education classes. I wish she could teach all classes at City College. One of the best professors I've ever seen in my whole college experience.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c45d" + } + }, + { + "text": "I wish she could teach all classes at City College. One of the best professors I've ever seen in my whole college experience.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c45e" + } + }, + { + "text": "She is truly amazing. Very knowledgeable of the material and always there when you need help (office hours and quick email responses). Makes the class very interesting. 60% Online HW, 20% final, 20% attendance. Attend her classes, show your face, ask questions, do the HW and you will get an A.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c45f" + } + }, + { + "text": "Great professor! You won't regret taking her. Homework was 50% of the class grade, you shouldn't get any less than a B in this class.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c460" + } + }, + { + "text": "She gives clear lectures fast in the short amount of time she gets. She is going to have a good future as a professor.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c461" + } + }, + { + "text": "hws 40%, 2 take home midterms and a final 20% each. In her class you basically get the grade you deserve. Do all the hws because that brings up your grade lots higher than those who barely does them also she gives a huge and yes a huge curve on the midterms depending on how the class did overall. so just know your stuffs and you will be good", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d4c6cd60fca157e5c462" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c7cd60fca157e5c464" + }, + "professor_name": "Julian Silverman", + "rating": 2.9, + "department": "Chemistry department", + "comments": [ + { + "text": "Avoid him he is not a good professor He's actually quite rude and if you email him you might not even get a reply back. His tests are nothing like the final so you basically feel so unprepared. Just avoid him and take someone else", + "pos": 0.0, + "neu": 0.762, + "neg": 0.238, + "_id": { + "$oid": "6711d4c7cd60fca157e5c465" + } + }, + { + "text": "He looks nice but gave very weird exam, always something you haven't seen before. Sometimes, even if you work hard, you still fail the class", + "pos": 0.06, + "neu": 0.662, + "neg": 0.279, + "_id": { + "$oid": "6711d4c7cd60fca157e5c466" + } + }, + { + "text": "Professor Silverman is great at teaching chem 103 in general, although I do agree with the students that he talks a bit too fast. His lectures are straight to the points and he posts his powerpoint slides on tumblr. He gives three regular exams and a final, he drops the lowest of the three exams. Overall he's one of the better chem 103 professors.", + "pos": 0.156, + "neu": 0.808, + "neg": 0.036, + "_id": { + "$oid": "6711d4c7cd60fca157e5c467" + } + }, + { + "text": "He is a rookie for Chemistry 103. He talks too fast and you hardly understand anything. He does not fully answer students in class and skip your questions. The main thing is that he is struggling to teach Chemistry and it will probably take him years to learn teach intro Chemistry! Read the book and memorize the notes on your own from day 1.", + "pos": 0.0, + "neu": 0.953, + "neg": 0.047, + "_id": { + "$oid": "6711d4c7cd60fca157e5c468" + } + }, + { + "text": "when i took him a saw many good reviews, but if you look closely . all of the good feedback was when he use to be a lab instructor, now as a professor he is really bad very complicated test,please do not take him , test are hard because the questions are very random, not like the department test , he makes his own which complicates everything.", + "pos": 0.075, + "neu": 0.798, + "neg": 0.127, + "_id": { + "$oid": "6711d4c7cd60fca157e5c469" + } + }, + { + "text": "avoid. lecture is useless and my grades went up when i stopped going. he says thing like \"oh yeah, i remember x topic\" and then moves without explanation. review the slides online. test aren't crazy hard, but they're random and unlike the textbook problems. gives out major test hints if you go to office hours. study on your own with khan academy.", + "pos": 0.088, + "neu": 0.788, + "neg": 0.124, + "_id": { + "$oid": "6711d4c7cd60fca157e5c46a" + } + }, + { + "text": "Julian is an unflappable, enthusiastic, all around awesome lab instructor. He is by far the best lab instructor I've had at City College. His suggestions in the lab reports were helpful and thoughtful. Trying to make sure a room full of dummies don't fill a room with toxic gas or burn their faces off can't be easy, but he did it with pizzazz!", + "pos": 0.183, + "neu": 0.793, + "neg": 0.024, + "_id": { + "$oid": "6711d4c7cd60fca157e5c46b" + } + }, + { + "text": "He is the best lab professor EVER! his lab exams are so easy and he is the coolest down to earth chemistry Professor you'll ever meet, HE PLAYS MUSIC IN LAB!! Take Him, you wont regret it", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d4c7cd60fca157e5c46c" + } + }, + { + "text": "he is a super good lab instructor and never feel tired about answering students questions.he often goes around to make sure if everyone understand what they support to do. during experience, dont feel shy to ask him questions or let him go through your lab set-up. he is so sweet!!!", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d4c7cd60fca157e5c46d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c7cd60fca157e5c46f" + }, + "professor_name": "Cheryl Sterling", + "rating": 2.8, + "department": "African-American Studies department", + "comments": [ + { + "text": "Unapproachable. The whole class was a bunch of \"What is going on?\" She never mentions assignments, you have to remember the syllabus and dates. Just don't stress yourself out even more", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d4c7cd60fca157e5c470" + } + }, + { + "text": "Cheryl Sterling is the best professor I've ever had. She sets the class up for graduate level studies by allowing us to lead our own discussions with minimal guidance, which I highly enjoy. You must read in order to do well and the writing is do-able. I leave each class with my mind blown and wanting to learn more about post-colonial lit/theory.", + "pos": 0.142, + "neu": 0.841, + "neg": 0.017, + "_id": { + "$oid": "6711d4c7cd60fca157e5c471" + } + }, + { + "text": "Agree with the other other on some things. Very unorganized did not use blackboard to do assignments when she states that in the beginning of the semester. She has so much going on it does make it a chaotic class. She does have knowledge of African Literature (I'll give her that). She's also a nice person.", + "pos": 0.086, + "neu": 0.862, + "neg": 0.052, + "_id": { + "$oid": "6711d4c7cd60fca157e5c472" + } + }, + { + "text": "Worst professor I've had. African Lit class structure was a chaotic nightmare. She gives WAY too much (difficult) reading, is unclear about assignments, disorganized, and has such a condescending attitude. She hardly address ANYONE by name, she said my name wrong and looked around the room.. Really? It's May. AVOID her if possible.", + "pos": 0.0, + "neu": 0.694, + "neg": 0.306, + "_id": { + "$oid": "6711d4c7cd60fca157e5c473" + } + }, + { + "text": "Her wealth of knowledge is amazing. She is a professor who loves to have discussions as long as you did the readings and is very engaging. A class to take if you're a bit of an intellectual.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d4c7cd60fca157e5c474" + } + }, + { + "text": "Don't take this class unless you know how to write. She critiques students way too harshly. She tell students straight up \"you don't know how to write.\" The structure of her class is terrible. She assigns way too many readings for a 101 class and if you tell her she will say stuff like \"Well, you're in college now and etc.\"", + "pos": 0.098, + "neu": 0.856, + "neg": 0.047, + "_id": { + "$oid": "6711d4c7cd60fca157e5c475" + } + }, + { + "text": "As the new Director of the Blst Department she acts like a boss. She just came to our school and making it difficult for students. Her self of being over educated is getting a whole of her. Students responses are not enough or seems to be nonesense in her opinion by the way she respond back. I believe she is lonely and miserable in her life.", + "pos": 0.034, + "neu": 0.853, + "neg": 0.113, + "_id": { + "$oid": "6711d4c7cd60fca157e5c476" + } + }, + { + "text": "Professor Sterling is an AMAZING professor. Not only is she very knowledgable in the subject but also is willing to take various approaches to learning. So far, she has used film, poetry, essays, audio and plays. And she does not talk down to students! Her final essay isnt that long n the reading are interesting. Do the work, it will pay off!", + "pos": 0.136, + "neu": 0.841, + "neg": 0.023, + "_id": { + "$oid": "6711d4c7cd60fca157e5c477" + } + }, + { + "text": "Dr. Sterling gives wayyyy to much work for a 101 liberal arts class! There is a ton of reading a take home midterm, short essay question type final, a 2 pg paper, and a research paper. First day of class I knew I wanted to drop it right away she is a harsh grader and talks down to her students. She thinks she is a genius", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d4c7cd60fca157e5c478" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c8cd60fca157e5c47a" + }, + "professor_name": "Anthony Betancourt", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Good info learned but as a female I was very uncomfortable around him", + "pos": 0.116, + "neu": 0.655, + "neg": 0.229, + "_id": { + "$oid": "6711d4c8cd60fca157e5c47b" + } + }, + { + "text": "Makes female", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c47c" + } + }, + { + "text": "Really awesome class! Straightforward and clear. We had mc exams and papers. There was also extra credit by reviewing a movie. Super easy! and fun!", + "pos": 0.52, + "neu": 0.48, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c47d" + } + }, + { + "text": "Great teacher helps you understand the concept well!", + "pos": 0.645, + "neu": 0.355, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c47e" + } + }, + { + "text": "He is AWESOME, the class is great and you will not regret taking it! Quizzes are 60% of the grade they are multiple choice and are straightforward, just read the book and go over the lecture slides & 40% papers Going to lecture would be an interesting experience, because he can show videos or movies that talk about the topics you need for the test.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c47f" + } + }, + { + "text": "Interesting class. Little to no use of textbooks. Class based on NETFLIX/HBO videos. Course material is relatable in daily lives. At the end of the day the moral of whole course is \"you do what that makes you feel good about yourselves.\"", + "pos": 0.12, + "neu": 0.838, + "neg": 0.041, + "_id": { + "$oid": "6711d4c8cd60fca157e5c480" + } + }, + { + "text": "This class was a breeze especially for a winter course. The Prof made the class very enjoyable and interesting. Exams were easy and the paper was quite fair. 3 exams and one paper and assigned an extra credit. Great prof.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c481" + } + }, + { + "text": "Social psych class is more like Anti-American Propaganda class. Goes on rants about religion, politics, racism. Class is really easy though, but he can be offensive. If you enjoy letting a professor's ideas influence you, instead of thinking for yourself, then take this class. This class is not what I expected, very unfortunate.", + "pos": 0.123, + "neu": 0.666, + "neg": 0.211, + "_id": { + "$oid": "6711d4c8cd60fca157e5c482" + } + }, + { + "text": "Prof. Betancourt is just AWESOME. 3 tests, one paper, and one extra credit paper. He gives clear lectures and also mixes in some hillarious story or rant (because social psych is something that everybody can relate to). You should read the textbook as well though; this isn't some b.s. class. But getting an A is definitely possible. TAKE HIM!", + "pos": 0.179, + "neu": 0.796, + "neg": 0.026, + "_id": { + "$oid": "6711d4c8cd60fca157e5c483" + } + }, + { + "text": "Class seems easy but you must read the slides and the book.He gives extra credit paper, 4 test and drops lowest grade.He also give practice quizzes and go over it in class. Very nice professor but do not be late for final because he wont let you take it!", + "pos": 0.168, + "neu": 0.773, + "neg": 0.058, + "_id": { + "$oid": "6711d4c8cd60fca157e5c484" + } + }, + { + "text": "Really cool professor. Very straightforward and clear with his powerpoint slides. Repeats the important material that will be on the test. Highly recommend.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c485" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c8cd60fca157e5c487" + }, + "professor_name": "Patrice Okpo", + "rating": 3.4, + "department": "Mathematics department", + "comments": [ + { + "text": "Such an amazing Professor! Go over the material very precisely and always asks if you understand if you don't he will go over the material as many times as needed. Such a sweet and caring person", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c488" + } + }, + { + "text": "Get ready to work hard for practically nothing. Frequent long online homework, he speeds through material, doesn't go over much and gives hard exams. without much partial credit.", + "pos": 0.079, + "neu": 0.762, + "neg": 0.158, + "_id": { + "$oid": "6711d4c8cd60fca157e5c489" + } + }, + { + "text": "he makes sure you understand the course work. very excellent", + "pos": 0.44, + "neu": 0.56, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c48a" + } + }, + { + "text": "He is always helpful to the students whenever they needed help. He would also ask the class if he was going to fast in his lectures. His tests and quizzes are hard but he did give us a take home test which was nice of him.", + "pos": 0.147, + "neu": 0.829, + "neg": 0.024, + "_id": { + "$oid": "6711d4c8cd60fca157e5c48b" + } + }, + { + "text": "Very easy and down to earth person, if you do not study and follow directions, no teacher will be good for you. He is good, you need to be good serious enough to do well, not his fault.", + "pos": 0.327, + "neu": 0.603, + "neg": 0.07, + "_id": { + "$oid": "6711d4c8cd60fca157e5c48c" + } + }, + { + "text": "He does have an accent that is sometimes hard to understand but he usually is very clear. He teaches very well, and actually does give lots of examples. He will always ask if he is going to fast, don't be afraid to say yes. He is helpful in and out of class. quiz every week or two, usually gives two homework assignments per class.", + "pos": 0.191, + "neu": 0.793, + "neg": 0.016, + "_id": { + "$oid": "6711d4c8cd60fca157e5c48d" + } + }, + { + "text": "He has a thick accent so its hard to understand what he says. He flies through his lectures, and he gives little examples for a new topic. His tests are on another level. He gives problems that are related to the topic, but INSANELY HARD to solve bc you've never seen anything like it.", + "pos": 0.037, + "neu": 0.82, + "neg": 0.143, + "_id": { + "$oid": "6711d4c8cd60fca157e5c48e" + } + }, + { + "text": "His accent can make it pretty hard to understand and he can sometimes speed through lessons, but not all too bad once you get the hang of the work", + "pos": 0.178, + "neu": 0.786, + "neg": 0.036, + "_id": { + "$oid": "6711d4c8cd60fca157e5c48f" + } + }, + { + "text": "He has a really thick accent, making it hard for students to understand anything he's saying. Plus, he literally FLIES through EVERYTHING he is teaching!!! He makes the most simple math problem BEYOND COMPLICATED.", + "pos": 0.0, + "neu": 0.859, + "neg": 0.141, + "_id": { + "$oid": "6711d4c8cd60fca157e5c490" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c8cd60fca157e5c492" + }, + "professor_name": "Zaid Al-Mashhadani", + "rating": 4.9, + "department": "Computer Science department", + "comments": [ + { + "text": "Take it.\nNo need to show up at all. Literally. Even exams online.\nJust team up on exams on discord and you will nail it.\nHe is cool professor.", + "pos": 0.069, + "neu": 0.783, + "neg": 0.148, + "_id": { + "$oid": "6711d4c8cd60fca157e5c493" + } + }, + { + "text": "Professor Al-Mashhadani was a great professor and taught operating systems very well. The slides were very informative and he has a great understanding of the topic and does not hesitate to help students who are having difficulty understanding. He will always explain questions thoroughly while providing examples. I would recommend him to anyone!", + "pos": 0.231, + "neu": 0.698, + "neg": 0.071, + "_id": { + "$oid": "6711d4c8cd60fca157e5c494" + } + }, + { + "text": "Look, this is guy is straightforward. Study adequately and complete the labs and assignments and you will get an A. Also don't sweat on his final because he gives extra credit assignments that boost your final exam's grade.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c495" + } + }, + { + "text": "He is just perfect! It's a shame he doesnt teach more classes. I will miss him.", + "pos": 0.171, + "neu": 0.599, + "neg": 0.23, + "_id": { + "$oid": "6711d4c8cd60fca157e5c496" + } + }, + { + "text": "We all thought the professor did a wonderful job teaching this semester despite the COVID situation. He has a passion for teaching and it shows in his lecture. Exams are fair. Labs can be a lot of work at times, but they really hammer down the material. Would definitely take again.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c497" + } + }, + { + "text": "Really nice professor and one of the best. Teaches with passion and always has a smile on his face. One group project to create a Shell, 4 HW's, 6 -7 labs. Wish all professor were like him", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c498" + } + }, + { + "text": "Funny guy, makes the material understandable and is very clear on grading. Lots of areas to get extra credit and attendance isnt mandatory. All slides are sent up to blackboard so skipping a class is not the end of the world.", + "pos": 0.18, + "neu": 0.794, + "neg": 0.026, + "_id": { + "$oid": "6711d4c8cd60fca157e5c499" + } + }, + { + "text": "Really good professor, responds quickly to questions via email, grades assignments really quick, understandable to every students situation and is lenient with deadlines if applicable. Tests are concise as to what he tells you will be on it, projects are more than doable.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d4c8cd60fca157e5c49a" + } + }, + { + "text": "The grading criteria was super clear. Nothing surprising on the midterm and final. The best thing about Professor Al-Mashhandani was his accessibility outside of class. Super quick replies to emails. Would recommend for anyone to take him.", + "pos": 0.343, + "neu": 0.621, + "neg": 0.036, + "_id": { + "$oid": "6711d4c8cd60fca157e5c49b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c9cd60fca157e5c49d" + }, + "professor_name": "Randy Rosenthal", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "If you are committed to learning how to write and are willing to put in the work, I would definitely choose Professor Rosenthal's courses.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c49e" + } + }, + { + "text": "Professor Rosenthal's approach is systematic and organized. Lectures are well structured. Clear and specific instructions. Extremely valuable and helpful advice. His class also allows us to build connections with other class members.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c49f" + } + }, + { + "text": "One of the best professors I have had in-terms of improving my academic writing skills. The class structure is designed for students to write response papers every week, and he gives extremely meticulous feedback on every paper that is turned in, ranging from synatx errors to illogical flow of ideas. Definitely recommend.", + "pos": 0.198, + "neu": 0.763, + "neg": 0.039, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a0" + } + }, + { + "text": "Professor Rosenthall is an accomplished writer and an energetic teacher. His class is informative and interactive. I'm only 4 weeks into his course and I already feel my time has been well spent. Don't let his syllabus scare you and miss out on a great experience!", + "pos": 0.215, + "neu": 0.701, + "neg": 0.084, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a1" + } + }, + { + "text": "Great to be in his class! helps in real world", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a2" + } + }, + { + "text": "This was one of the most valuable classes i've ever taken, and the little textbook: Rules for Writers is more valuable than gold! If you attend his classes, read the book I just mentioned, and do his assignments with the intent of LEARNING, you'll have an invaluable skill for the rest of your life.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a3" + } + }, + { + "text": "I think the professor is a nice guy and if you just pay attention, you'll be fine. If you have a question, he'll be sure to ask it, but at the same time he's a grad student...so yeah.", + "pos": 0.185, + "neu": 0.787, + "neg": 0.029, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a4" + } + }, + { + "text": "He's the most annoying person i have ever encountered,his assignments make no sense, they have no relevance to the class, its so much busy work, he grades unfairly,he is useless.", + "pos": 0.0, + "neu": 0.718, + "neg": 0.282, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a5" + } + }, + { + "text": "yo this teacher be trippin, dunt take his class...its so freaking annnoying! be prepared to write mad papers...", + "pos": 0.079, + "neu": 0.625, + "neg": 0.296, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a8" + }, + "professor_name": "Luz Amaya", + "rating": 2.7, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "The assignments are tedious and gets progressively difficult, make sure to start working on them early. 75% of the grade are exams make sure to do plenty of practice problems from textbook in addition to the hw. Personally I used formulas from textbook instead of Ganatos, since they were much clearer. She allows formula sheet on exam.", + "pos": 0.073, + "neu": 0.844, + "neg": 0.083, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4a9" + } + }, + { + "text": "I have no doubt Amaya is an intelligent person. As a teacher, she is absolutely horrible. She doesn't give clear directions on how to compute codes. Expects u to be perfect or a master. Every week the class chatrooms is filled with depressed, sleep deprived students trying to disciper her lectures. If you take her, get ready to teach yourself...", + "pos": 0.149, + "neu": 0.687, + "neg": 0.164, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4aa" + } + }, + { + "text": "Professor Amaya;it is very helpful professor. she knows her stuff :)", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4ab" + } + }, + { + "text": "Best instructor ever!", + "pos": 0.692, + "neu": 0.308, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4ac" + } + }, + { + "text": "If you have to take this class, this professor's input is minimal, so be prepared to do everything on your own. Read each chapter twice, including the introduction to the section then go thru all the examples, then the homework questions, keep good notes and last but not least get a study partner early(someone who understands the material).", + "pos": 0.059, + "neu": 0.941, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4ad" + } + }, + { + "text": "In my personal experience this is one of the worst ever teacher I had.....she may be a good student in her class but cann't be a good teacher for sure....if u ever have a choice stay away from taking her.", + "pos": 0.044, + "neu": 0.829, + "neg": 0.127, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4ae" + } + }, + { + "text": "i have no idea how this woman still has her job. she has no use to students.", + "pos": 0.0, + "neu": 0.773, + "neg": 0.227, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4af" + } + }, + { + "text": "by far one of the worst teachers i have come across. she just gives problems w/o any explanation and expects u to master it fast. she herself has hit road blocks in matlab and she teaches it!! how does she expect a student to be perfect? stay away from her at all costs. the university should really get rid of her", + "pos": 0.053, + "neu": 0.814, + "neg": 0.133, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4b0" + } + }, + { + "text": "Took Her In BMCC. Best teacher ever !", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d4c9cd60fca157e5c4b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cacd60fca157e5c4b3" + }, + "professor_name": "Ana Zevallos", + "rating": 1.9, + "department": "Freshman Year Experience department", + "comments": [ + { + "text": "I feel bad for you if this is your advisor.", + "pos": 0.0, + "neu": 0.72, + "neg": 0.28, + "_id": { + "$oid": "6711d4cacd60fca157e5c4b4" + } + }, + { + "text": "I would not recommend this advisor to anyone. She is selfish and cares to only talk about herself and kids, anytime you meet with her. There is no point of scheduling appointments with her since she always has excuses such as her being out on a sick day. Choose anyone but her. ANYONE !", + "pos": 0.034, + "neu": 0.836, + "neg": 0.13, + "_id": { + "$oid": "6711d4cacd60fca157e5c4b5" + } + }, + { + "text": "She is a wonderful person if you give her the chance to show you. She cares and thats why she is hard on you. She will treat you like an adult, and not a child. So if you need someone to cuddle you don't take her. She does give you an essay to write because she wants to see where you wanna go and how she can help you get there. She is amazing.", + "pos": 0.232, + "neu": 0.752, + "neg": 0.016, + "_id": { + "$oid": "6711d4cacd60fca157e5c4b6" + } + }, + { + "text": "I was a freshman and she didn't feel welcoming at all. She sounded so smug, and it was scary to ask her questions because she was definitely my least approachable teacher when I was in my first year. She requires you to do homework and project to a class that will give you zero credit... ZERO CREDIT! She also sounded unenthusiastic.", + "pos": 0.157, + "neu": 0.765, + "neg": 0.078, + "_id": { + "$oid": "6711d4cacd60fca157e5c4b7" + } + }, + { + "text": "She is always busy and never with students. Difficult to get an appointment because shes busy?That's her job but doesn't enjoy talking with us.", + "pos": 0.058, + "neu": 0.815, + "neg": 0.127, + "_id": { + "$oid": "6711d4cacd60fca157e5c4b8" + } + }, + { + "text": "Classes can be boring. All I wanted to do was sleep. Didn't really liked that I had HW for a class I'm not even going to get credit for. Even more so because no other NSS professor was giving HW.", + "pos": 0.105, + "neu": 0.735, + "neg": 0.16, + "_id": { + "$oid": "6711d4cacd60fca157e5c4b9" + } + }, + { + "text": "Great adviser and motivates her students", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4ba" + } + }, + { + "text": "Because of her she made me transferred to a different school and said that \"I cannot make into life\". When Someone says that to you prove them wrong, now I own a deli in NYC and making millions. She said \"I am not going anywhere and my grades are not good.\" She can crush people's dream and I was a Electrical Engineering major. Disappointing.", + "pos": 0.028, + "neu": 0.824, + "neg": 0.148, + "_id": { + "$oid": "6711d4cacd60fca157e5c4bb" + } + }, + { + "text": "Boring NSS class but she helps you and is very inspirational as a counselor.", + "pos": 0.396, + "neu": 0.525, + "neg": 0.079, + "_id": { + "$oid": "6711d4cacd60fca157e5c4bc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cacd60fca157e5c4be" + }, + "professor_name": "Frank Melendez", + "rating": 2.8, + "department": "Architecture department", + "comments": [ + { + "text": "inept administrator, dry and unenthusiastic, has good eye for good design. Bottom ofc.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4bf" + } + }, + { + "text": "Tough grader!", + "pos": 0.0, + "neu": 0.358, + "neg": 0.642, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c0" + } + }, + { + "text": "Dont have charisma to teach. Very boring.", + "pos": 0.0, + "neu": 0.698, + "neg": 0.302, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c1" + } + }, + { + "text": "don't take him if you don't have to.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c2" + } + }, + { + "text": "Professor Melendez is very smart and clearly a successful person, however his classes are slightly boring and he is very intense and sometimes not super understanding, but still a pretty good teacher", + "pos": 0.365, + "neu": 0.553, + "neg": 0.082, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c3" + } + }, + { + "text": "Loved visual studies. Learned a ton from him. The workload is heavy, but challenging and enjoyable. Only thing that got me was the tough grading. He's very nitpicky and loves perfection... But you definitely get out what you put in.", + "pos": 0.39, + "neu": 0.579, + "neg": 0.031, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c4" + } + }, + { + "text": "Amazing professor, very helpful and knowledgeable! Don't expect to half ass projects and slack off or miss class. Follow assignment directions carefully. Make sure your work is Perfect if your want an A. PERFECTION PERFECTION PERFECTION its all about PERFECTION.", + "pos": 0.505, + "neu": 0.419, + "neg": 0.076, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c5" + } + }, + { + "text": "Really knows his stuff but his lectures are long and very boring. Almost fell asleep in most of the classes but he is the only teacher that teaches this course as of now. The homework is actually pretty interesting and challenging though so overall it was not too bad. Definitely learned a lot about the different programs.", + "pos": 0.191, + "neu": 0.72, + "neg": 0.089, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c6" + } + }, + { + "text": "GREAT PROFESSOR GIVES A LOT OF FEEDBACK YOU MUST READ IN ORDER TO PASS THE FINAL AND MIDTERM I SUGGEST YOU TAKE HIM IN THE AFTERNOON EITHER MONDAYS OR WEDNESDAY", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cacd60fca157e5c4c9" + }, + "professor_name": "Slobodan Mitrovic", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He is hands down the best professor I've had. Hes incredibly easy going and relaxed. He wants the class to read to engage in discussions (it's actually fun though) but that's the extent of it. Consider yourself incredibly lucky if you have him.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4ca" + } + }, + { + "text": "This guy's on our side, one of the nicest professors ever.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4cb" + } + }, + { + "text": "One of the best classes I took as a freshman. The professor was very welcoming and more intelligent than my classmates might of realized. He is very passionate about this subject. It's an easy A if you put in a little effort and participate. One paper, one final presentation, some quizzes and a few readings. Would highly recommend.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4cc" + } + }, + { + "text": "The class was great, the lectures and discussions in class are based on the readings that he assigns, so reading the material is a must. Participation is the best way to get a high grade in the class. Aside from the 2 papers we had to complete, there were a few quizzes based on the reading. Best professor in my first semester", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4cd" + } + }, + { + "text": "He didn't offer much more outside the class, usually just some reading. There are few quizzes, but he told us the class before it, and they were only about the text that was read for that day, and were open notes.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4ce" + } + }, + { + "text": "He's the best professor I've taken. He's hilarious! Really relaxed professor, and doesn't take much to get an A in his class. He doesn't give much work, but he does assign readings weekly, but they're interesting. He'll throw a pop quiz here or there, but they're usually short, and he allows you to use the text for it. Great guy.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4cf" + } + }, + { + "text": "he was awesome", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d4cacd60fca157e5c4d0" + } + }, + { + "text": "I freaking love this guy! He has amazing lectures. His topics are engrossing! All he wants you to really do is be engaged in his conversation through the articles he tell you to read! The BEST !!!! He doesn't give a lot of homework, just make sure you read it , it may be time consuming but it is worth it to not have a quiz because you didn't read", + "pos": 0.188, + "neu": 0.789, + "neg": 0.024, + "_id": { + "$oid": "6711d4cacd60fca157e5c4d1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cbcd60fca157e5c4d3" + }, + "professor_name": "Matthew Longo", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He's a fair grader! He's very lenient and he's very helpful. He goes over lot of grammar problems (which is very useful) He'll give you good grade as long as you try your best. LOTTA PAPERS TO WRITE!", + "pos": 0.356, + "neu": 0.592, + "neg": 0.052, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4d4" + } + }, + { + "text": "Very helpful and gives grammar and thesis lessons that will improve your writing. You'll write A LOT in this class and he gives helpful feedback. He's funny, not a harsh grader, and sweet. You will receive a lot of handouts that will relate to science and he will help you with resumes and cover letters. I always looked forward to this class.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4d5" + } + }, + { + "text": "Great teacher. Definitely take his class. Very fair grader. Will do his best to help you do well in the class. Answers all questions well. Makes the class interesting. Cool guy. Gives way too many handouts.", + "pos": 0.486, + "neu": 0.514, + "neg": 0.0, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4d6" + } + }, + { + "text": "he is really great. has 20 min lessons on grammar. Explains the assignments clearly. a lot of handouts, so expect to read articles, and do grammar questions. he is a very fair grader. if he is teaching a class defiantly take him.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4d7" + } + }, + { + "text": "Very good looking, helps with such a boring class. Teaches correct grammar usage mostly. Causes the killing of 12423095uy34000.001 trees lol (many handouts) Might also be the prodigal son of the Writing Center haha. You're gonna write a lot in this course anyways, might as well learn grammar and have a good looking prof too. I highly recommend.", + "pos": 0.261, + "neu": 0.65, + "neg": 0.089, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4d8" + } + }, + { + "text": "his pretty clear... significantly easy... and beautiful...lol", + "pos": 0.685, + "neu": 0.315, + "neg": 0.0, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4d9" + } + }, + { + "text": "He's super interested in what he's teaching and spends a lot of time in his students. Great teacher and really HOT too :D", + "pos": 0.441, + "neu": 0.559, + "neg": 0.0, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4da" + } + }, + { + "text": "Extremely helpful professor. If you don't like writing then you will have a hard time in his class, but the assignments are pretty easy anyway. He does these grammar workshops for the freshman writing class and that will be difference between an \"A\" and a \"B\" on your papers. He is always available to help whether it is office hours or by email.", + "pos": 0.187, + "neu": 0.775, + "neg": 0.037, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4db" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cbcd60fca157e5c4dd" + }, + "professor_name": "Sabina Pieslak", + "rating": 2.7, + "department": "Music department", + "comments": [ + { + "text": "She is a great lecturer whose review sheets cover everything on the exam. In order to do good, you just need to show up on time, pay attention and study hard for her tests. Only reason people say she's hard is because you have to actually try in her class. The course is really interesting to learn about and personally, I loved it.", + "pos": 0.188, + "neu": 0.756, + "neg": 0.057, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4de" + } + }, + { + "text": "Professor Pieslak is incredibly caring and fair. She gives review sheets before every exam that clearly highlight what you need to study, pure memorization. 1 paper, 2 quizzes, 2 exams and optional attendance (it was a lecture class). This is an easy A if you study. Aside from that, the class is just really enjoyable and interesting in itself.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4df" + } + }, + { + "text": "Attend for the \"learning\" experience, she wont teach much if someone takes out their phone so good luck. Does not make it easy, the textbook will be needed to pass. Not the easy A you look for, work hard for grade.", + "pos": 0.143, + "neu": 0.731, + "neg": 0.126, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4e0" + } + }, + { + "text": "Not an easy A, don't go near her, she makes an entry level course into a workload coming form an advanced course. Gets posed off when students don't pay attention and take out electronics. Scolded us more than actually teach.", + "pos": 0.077, + "neu": 0.866, + "neg": 0.056, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4e1" + } + }, + { + "text": "If your looking for an A skip her class. This is the worst music class ever. Written an esay in music class wowww. She did not acknowledge your effort no matter how hard you've tried. Stay away from her.", + "pos": 0.0, + "neu": 0.846, + "neg": 0.154, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4e2" + } + }, + { + "text": "The worst! :(", + "pos": 0.0, + "neu": 0.121, + "neg": 0.879, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4e3" + } + }, + { + "text": "She is a very sweet lady. She makes powerpoints with all the notes and posts them to blackboard after so its easy to look back on anything you missed. She does not allow electronics in class ever. Two quizzes, easy if you study. She always gives study guides! Midterm was tricky. WIll have one presentation. and a final. you must have the textbook!", + "pos": 0.137, + "neu": 0.787, + "neg": 0.075, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4e4" + } + }, + { + "text": "This class was more difficult than it should of been. The exams are fair but the final is difficult. This is not an easy A class, if that is what you are looking for. If you decide to take it, be ready to be bored out of your mind.", + "pos": 0.083, + "neu": 0.731, + "neg": 0.185, + "_id": { + "$oid": "6711d4cbcd60fca157e5c4e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cccd60fca157e5c4e7" + }, + "professor_name": "Elizabeth Biddinger", + "rating": 2.2, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "The professor is fair. The lectures are organized and example problems are worked out in class. A tip for students: 432 is a hard class to catch up on if you fall behind, so try to catch up/go to office hrs asap", + "pos": 0.051, + "neu": 0.859, + "neg": 0.09, + "_id": { + "$oid": "6711d4cccd60fca157e5c4e8" + } + }, + { + "text": "Honestly, even though her teaching style was extremely boring and we did not like her for who she was, at the end of the day she did her job and she did give multiple opportunities for extra points, and she made sure to clarify our questions with her \"muddiest point\" days. Points added in the end of the semester were very lenient and fair as well.", + "pos": 0.193, + "neu": 0.747, + "neg": 0.061, + "_id": { + "$oid": "6711d4cccd60fca157e5c4e9" + } + }, + { + "text": "Avoid at all costs. She doesn't have the depth of knowledge and understanding of the material. How did they allow her to become a professor?", + "pos": 0.07, + "neu": 0.849, + "neg": 0.081, + "_id": { + "$oid": "6711d4cccd60fca157e5c4ea" + } + }, + { + "text": "Her teaching is very organized and clear. She gives a lot of work (11 hws 2 projects 2 exams and 1 final) I almost felt like I was taking two classes. But I learned a lot from her. To pass, do every hw (including bonus) and practice problems from class. Most importantly, practice with old exams! She will go over those during office hours.", + "pos": 0.161, + "neu": 0.792, + "neg": 0.048, + "_id": { + "$oid": "6711d4cccd60fca157e5c4eb" + } + }, + { + "text": "Professor Elizabeth Biddinger gives a great load of homework. She does not care for her students and sets them up for failure. I would avoid her class at all costs, but unfortunately she is the only one who teaches this class. She also has an attitude when you ask her questions.", + "pos": 0.045, + "neu": 0.804, + "neg": 0.151, + "_id": { + "$oid": "6711d4cccd60fca157e5c4ec" + } + }, + { + "text": "Professor Biddinger gives a lot of work, she purposefully assigned the due date for our project the same day and time as our Design project. She gives a lot of homework and assignments even though this is a three credit class. Her lectures are helpful because she does example problems. If you're late, you're absent! No excuses.", + "pos": 0.09, + "neu": 0.833, + "neg": 0.077, + "_id": { + "$oid": "6711d4cccd60fca157e5c4ed" + } + }, + { + "text": "I cant believe that the semester ended 6 weeks ago and this mess of a professor is now sending feedback about a project that was assigned 3 months ago. I have no words. Goodluck class of 2020 :)", + "pos": 0.07, + "neu": 0.813, + "neg": 0.118, + "_id": { + "$oid": "6711d4cccd60fca157e5c4ee" + } + }, + { + "text": "Kinetics 2017. Toughest grader in the department on both tests and homeworks. Assigns HW same week as tests or projects. Will make you jump through hurdles for grade changes and no late homeworks accepted. If you are 1 min late you are absent. She will stress and imply certain topics will be on the test when they wont making you waste time AVOID", + "pos": 0.091, + "neu": 0.78, + "neg": 0.129, + "_id": { + "$oid": "6711d4cccd60fca157e5c4ef" + } + }, + { + "text": "I took ionic liquids with her.Her teaching style is vague and disorganized.She made us work very hard and graded us very unfairly for our efforts.I can understand having high expectations from students but hers were exceedingly high and unreasonable at some point of time.Avoid taking courses offered by her if possible.", + "pos": 0.0, + "neu": 0.951, + "neg": 0.049, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cccd60fca157e5c4f2" + }, + "professor_name": "Austin Givens", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "If you're not lazy, easy A. If you are more on the lazy side, A- He lets you redo papers for higher grades but ain't nobody got time for that.", + "pos": 0.048, + "neu": 0.84, + "neg": 0.112, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f3" + } + }, + { + "text": "Took him for my freshman composition class and i definitely had a lot of fun. He's really chill and teaches clearly. He gives papers and lets you rewrite it if you're not satisfied with the grade that you got. Also gives feedback.", + "pos": 0.177, + "neu": 0.775, + "neg": 0.048, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f4" + } + }, + { + "text": "Cool guy, semester gets tougher as time progresses. Grades very nice. Funny. Sometimes direction is a bit ambiguous, but for the most part you know what to do. Take him if you want to have a fun time in class. Would recommend him to anyone!", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f5" + } + }, + { + "text": "Mr. Givens is an awesome professor! I'm halfway through my semester with him right now and he is nothing but helpful. He assigns 3 mini essays then helps you with a position paper given for another class. He's super funny also. You'll enjoy your semester with him.", + "pos": 0.31, + "neu": 0.643, + "neg": 0.047, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f6" + } + }, + { + "text": "Excellent professor, take him you will learn a lot. Very lenient.", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f7" + } + }, + { + "text": "Mr. Givens is an awesome professor! He is clear and straightforward. Gives easy homework. Class discussions are interesting. He loves Bob Dylan. There are five papers in the course, with the final one (the research) paper being the most important one. He allows rewrites & is always available via email in person. My favorite class this semester!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f8" + } + }, + { + "text": "Amazing Teacher. I'm one of those students that literally hates english class and i enjoyed this class over all my classes this year. He cares about his students and is willing to work with you. he gives good explanations of what he is looking for. You do hve regular assignments but you hve more than reasonable time to finish. &he allows revisions", + "pos": 0.126, + "neu": 0.845, + "neg": 0.029, + "_id": { + "$oid": "6711d4cccd60fca157e5c4f9" + } + }, + { + "text": "Excellent professor! He's young and still enthusiastic, so he'll try to get everyone involved in classroom discussions as much as possible. Assignments aren't overwhelming and he is a pretty lenient grader (he needs to get meaner). Very approachable and willing to help with any questions or issues. I'm glad he was my professor!", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d4cccd60fca157e5c4fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cccd60fca157e5c4fc" + }, + "professor_name": "Jonathan Platkiewicz", + "rating": 1.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Changed grading policy repeatedly was very unclear about he would calculate grades. Gave final that was harder than any other exam he gave in class. unpredictable exams that are copied and pasted from other CCNY professors and random exams online from other schools. Also not good at explaining concepts.", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d4cccd60fca157e5c4fd" + } + }, + { + "text": "doesn't know how to teach and I don't think he understands probability as a subject.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4cccd60fca157e5c4fe" + } + }, + { + "text": "I would not take this professor again.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4cccd60fca157e5c4ff" + } + }, + { + "text": "He might very smart but he has no business no teaching. Very unfair grader.", + "pos": 0.199, + "neu": 0.46, + "neg": 0.34, + "_id": { + "$oid": "6711d4cccd60fca157e5c500" + } + }, + { + "text": "Terrible professor. Changed grading policy about three times. Gave extra credit that he never checked. Mind blowing difficult final. One of the worse professors at city avoid at all cost.", + "pos": 0.068, + "neu": 0.649, + "neg": 0.283, + "_id": { + "$oid": "6711d4cccd60fca157e5c501" + } + }, + { + "text": "He started off a bit on the rough side, but as the semester progressed he got better. His European accent make take a while getting used to. Overall a really good guy. Take full advantage of his office hours ,do the homework and ask questions. Not an easy class so don't expect an easy B/A", + "pos": 0.159, + "neu": 0.748, + "neg": 0.093, + "_id": { + "$oid": "6711d4cccd60fca157e5c502" + } + }, + { + "text": "I hate to say this because Mr Platkiewicz is a highly intelligent person who is able to take complex problems and put them into a fairly relatable context. It's just his teaching style is unorganized. I don't expect him to hold our hand, but I would have liked for him to organize his materials in a way for better time management.", + "pos": 0.166, + "neu": 0.775, + "neg": 0.059, + "_id": { + "$oid": "6711d4cccd60fca157e5c503" + } + }, + { + "text": "pros- 1- he helps you when asked 2- he is a nice person cons- 1- hard to understand, because he is a European (German polish) 2- his exam are unpredictable-(hard) 3.-nearly not enough time on a test 4. hw counts (online)", + "pos": 0.121, + "neu": 0.848, + "neg": 0.031, + "_id": { + "$oid": "6711d4cccd60fca157e5c504" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cdcd60fca157e5c506" + }, + "professor_name": "Dan Carillo", + "rating": 3.6, + "department": "Music department", + "comments": [ + { + "text": "Wonderful class, often times jazz instructors make jazz music very academic, this is not that class. Dan Carillo's teaching style is about how to learn bebop language and implement it, turn it into music. This was honestly one of the best classes I've taken in my life in terms of my musical development.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d4cdcd60fca157e5c507" + } + }, + { + "text": "Very organized. the content is not collage level. Sometime he spent so many time for non-jazz harmony content, it is completely waste of time to study harmony. He is not nice, whenever I asked about something beyond the class but he never answer even after class or office hour.", + "pos": 0.071, + "neu": 0.859, + "neg": 0.071, + "_id": { + "$oid": "6711d4cdcd60fca157e5c508" + } + }, + { + "text": "Very knowledgeable about harmony and music in general, has a lot of performing and teaching experience. Keen technical insights. Encourages student discussion and participation.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d4cdcd60fca157e5c509" + } + }, + { + "text": "He is friendly and fun professor.He always tries to give a chance to even new students. I guess that he has good ear and fine view.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d4cdcd60fca157e5c50a" + } + }, + { + "text": "not a nice guy. very bitter.", + "pos": 0.0, + "neu": 0.424, + "neg": 0.576, + "_id": { + "$oid": "6711d4cdcd60fca157e5c50b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4cdcd60fca157e5c50c" + } + }, + { + "text": "Sometimes boring, but very kind and helpful. It's a nice person and that is reflected in his classes. Very good.", + "pos": 0.507, + "neu": 0.444, + "neg": 0.049, + "_id": { + "$oid": "6711d4cdcd60fca157e5c50d" + } + }, + { + "text": "Mr. Carillo is a bitter man who obviously doesn't want to be a teacher. Very unprofessional. I've had him for a few semesters now and none of us can stand him.", + "pos": 0.0, + "neu": 0.786, + "neg": 0.214, + "_id": { + "$oid": "6711d4cdcd60fca157e5c50e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cdcd60fca157e5c510" + }, + "professor_name": "Denise Choi", + "rating": 3.6, + "department": "Psychology department", + "comments": [ + { + "text": "She's a great professor. She's hard to get in touch with but, she doesn't penalise students for it. She's understanding to every student if you talk to her. If you read the textbook and her presentations her class shouldn't be a hassle.", + "pos": 0.058, + "neu": 0.914, + "neg": 0.027, + "_id": { + "$oid": "6711d4cdcd60fca157e5c511" + } + }, + { + "text": "The professor is nice. The subject is interesting. However, the class gets really boring at times. You must read the book to pass the exams. There is so much context in the book that it is harder to remember some times.", + "pos": 0.119, + "neu": 0.824, + "neg": 0.056, + "_id": { + "$oid": "6711d4cdcd60fca157e5c512" + } + }, + { + "text": "She is good as a person, but as a professor she is not that great!!! Really hard to get in touch with her. My advise, do not take her...", + "pos": 0.055, + "neu": 0.736, + "neg": 0.208, + "_id": { + "$oid": "6711d4cdcd60fca157e5c513" + } + }, + { + "text": "Tough class, but fair. As long as you do the reading, pay attention in class and put effort into it you will do well. Duh, right? But, not always easy to get in touch with.", + "pos": 0.135, + "neu": 0.722, + "neg": 0.143, + "_id": { + "$oid": "6711d4cdcd60fca157e5c514" + } + }, + { + "text": "She gave 3 exams; each exam 35 multiple choice (2 points each) and 3 long responses (10 points each) and an additional response that you pick for 5 extra points! And she gave a final paper that was fair about an intervention program of your choice. Her class was interesting as a subject, just her lectures were at times boring but still a good class", + "pos": 0.109, + "neu": 0.868, + "neg": 0.023, + "_id": { + "$oid": "6711d4cdcd60fca157e5c515" + } + }, + { + "text": "She is a good person but her exams are extremely hard. You need to read the book. Don't just rely on her slides ......read read and read. .....she gives a one time extra credit for 1pt....ADVICE if you dedicate yourself to her class best of luck", + "pos": 0.26, + "neu": 0.705, + "neg": 0.035, + "_id": { + "$oid": "6711d4cdcd60fca157e5c516" + } + }, + { + "text": "Good professor. Her exams are basically based off the slides that she presents which she uploads. Requires a short response every week which were not too hard. I'd recommend taking her. I got an A- but was just short of an A by 1 point.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d4cdcd60fca157e5c517" + } + }, + { + "text": "She's nice, but her exams are tough. You need to know the material really well and cannot just rely on her slides. 3 exams ( 35 m/c questions 2 pts each and 3 short answers 10 pts each and 1 for extra credit) and a 7-10 pg research final paper on whatever you found interesting in class. 1 1-2pg response on the chapter or article of the week.", + "pos": 0.156, + "neu": 0.821, + "neg": 0.023, + "_id": { + "$oid": "6711d4cdcd60fca157e5c518" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cdcd60fca157e5c51a" + }, + "professor_name": "Talha Issevenler", + "rating": 4.8, + "department": "Sociology department", + "comments": [ + { + "text": "I think my only issue with this class was that the assignment due dates were unclear, which made the course a little more confusing, but its an overall easy class. It can just get a little boring or confusing during discussion, he sort of rambles a bit, even when you're really engaged.", + "pos": 0.128, + "neu": 0.751, + "neg": 0.121, + "_id": { + "$oid": "6711d4cdcd60fca157e5c51b" + } + }, + { + "text": "Incredible professor, very inspiring and knowledgable, great/unique variety of readings. The grade is on three papers and a final essay, he gives feedback on all and lets you get as introspective as you want. Attendance not mandatory but you'd be doing yourself a disservice to take this class and not do the readings/participate in discussion.", + "pos": 0.059, + "neu": 0.921, + "neg": 0.02, + "_id": { + "$oid": "6711d4cdcd60fca157e5c51c" + } + }, + { + "text": "This was the best class I've ever taken. I learned so much about an incredible variety of subjects (history, politics, class warfare etc). I deeply enjoyed but this class is essentially a two hour lecture every day on assigned reading, could be difficult to get through if you don't enjoy lectures.", + "pos": 0.083, + "neu": 0.777, + "neg": 0.14, + "_id": { + "$oid": "6711d4cdcd60fca157e5c51d" + } + }, + { + "text": "The class is mostly reading and discussion-heavy so just keep up with the readings (which he has on BB so no textbook cost). The professor is pretty down-to-earth and funny, good class environment.", + "pos": 0.22, + "neu": 0.71, + "neg": 0.07, + "_id": { + "$oid": "6711d4cdcd60fca157e5c51e" + } + }, + { + "text": "Talha is a great prof, sociology in general is a subject I struggle with because it feels pretty abstract, but he has a really good grasp on the subject and really tried to help you understand. Super accessible outside of class via email. A lot of readings so if you do them as soon as they're assigned, you should be in good shape.", + "pos": 0.277, + "neu": 0.702, + "neg": 0.021, + "_id": { + "$oid": "6711d4cdcd60fca157e5c51f" + } + }, + { + "text": "Main homework consists of questions and interests regarding the readings for each week. Professor is great at discussing readings and topics, and has a good sense of humor to help keep the class engaging.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d4cdcd60fca157e5c520" + } + }, + { + "text": "Lots to read before meetings but it's all very topical. He is great at discussing new perspectives on readings. Can be a little abstract but easy to ace class if you do what is asked of you.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d4cdcd60fca157e5c521" + } + }, + { + "text": "You'll pass with an A as long as you submit all your assignments which are pretty clear.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d4cdcd60fca157e5c522" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cecd60fca157e5c524" + }, + "professor_name": "Anil Agrawal", + "rating": 3.1, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Prof Agrawal knows a lot but can be very hard to understand because of his thick accent. I learned mostly from the textbook and homework and the TA, Deepak, who is super helpful. What I really liked is that the lecture notes, homework, and exams are very aligned. So if you do the homework then that should prepare you pretty well for the exams.", + "pos": 0.251, + "neu": 0.723, + "neg": 0.025, + "_id": { + "$oid": "6711d4cecd60fca157e5c525" + } + }, + { + "text": "No effort in his teaching, reads off slides. Dont expect him to do anything the ta will be running class. Often unprepared and lazy", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d4cecd60fca157e5c526" + } + }, + { + "text": "So beside the fact that the class is essentially physics II and doesn't even cover anything related to structures until the last week, Professor Agrawal puts no effort into the class. Worse yet it's pretty clear that he can't do the problems he assigned us. This led to him pulling questions directly from the textbook which were too long to finish.", + "pos": 0.116, + "neu": 0.807, + "neg": 0.076, + "_id": { + "$oid": "6711d4cecd60fca157e5c527" + } + }, + { + "text": "Dynamics is just dynamics but you need to work really hard in this class for a decent grade. Exams are 7-8 questions with 1hr30 mins to complete it so theres really no time to think in exams.", + "pos": 0.074, + "neu": 0.79, + "neg": 0.136, + "_id": { + "$oid": "6711d4cecd60fca157e5c528" + } + }, + { + "text": "For Finite Element Analysis, this is the professor you need. Homeworks an take up to 15+ pages and and get ready to work on those exams (There's only so much your programmable calculator can do). His lectures are really good especially when he's telling stories.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d4cecd60fca157e5c529" + } + }, + { + "text": "Very knowledgeable but you have to study material yourself. Lectures heavily based on textbook, but tests very time and labor consuming and based on homework assignments. Always ready to help and explain material, although difficult to catch in his office. In general if you want to get a good grade, you have to put a lot of effort in this class.", + "pos": 0.17, + "neu": 0.785, + "neg": 0.046, + "_id": { + "$oid": "6711d4cecd60fca157e5c52a" + } + }, + { + "text": "He is only good when he is ready for the class - otherwise he is nightmare. Most of the time he gives the exams on the stuff that was never covered in class, because he constantly talks about something else than lecturing on the material. In general, good guy but doesn't want to teach a lot and uses textbook insded of lecturing in his own way.", + "pos": 0.082, + "neu": 0.899, + "neg": 0.019, + "_id": { + "$oid": "6711d4cecd60fca157e5c52b" + } + }, + { + "text": "Difficult only if you don't pay attention. Otherwise, one of the best around in the CE department. Pick him as your advisor and you will never go wrong.", + "pos": 0.233, + "neu": 0.695, + "neg": 0.072, + "_id": { + "$oid": "6711d4cecd60fca157e5c52c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cecd60fca157e5c52e" + }, + "professor_name": "Inigo Sanz-Pena", + "rating": 3.4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "hw is just uploading class notes free 15%. exams/quizzes are fair, he grades very lenient gives a bunch of partial credit. accessible outside of class and gives lots of resources/tutorials/extra practice problems, literally spoon feeds us. gives great lectures as well and does lots of problems by hand in class which is very helpful. final 50% MT20%", + "pos": 0.306, + "neu": 0.623, + "neg": 0.072, + "_id": { + "$oid": "6711d4cecd60fca157e5c52f" + } + }, + { + "text": "I wish he solved the problems by hand rather than read the solution from the slides. Quizzes were okay and the exams were quite difficult and tedious. His first semester teaching here so hopefully he gets better with making homework, quizzes and exams and with his lectures. I learned more from YouTube than his lectures.", + "pos": 0.265, + "neu": 0.656, + "neg": 0.078, + "_id": { + "$oid": "6711d4cecd60fca157e5c530" + } + }, + { + "text": "Tis was professor's first ever semester teaching and he can only get better. And he was pretty good already, particularly when compared to CCNY's all-star cast of professors. Fully graded by quizzes and tests, solution process is more important than correct answer. Gives high 80s as long as you can show thought process and utilize concepts learned.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d4cecd60fca157e5c531" + } + }, + { + "text": "Started off by being a slide reader, but then he started to derive equations & solve problems. Only graded by quizzes, midterm, final. Super accessible thru office/email, he tries to help. His test-making skills have improved too. He didnt say he would curve but he ended up curving. Disregard the first few negative reviews. Dynamics is tough.", + "pos": 0.227, + "neu": 0.608, + "neg": 0.165, + "_id": { + "$oid": "6711d4cecd60fca157e5c532" + } + }, + { + "text": "ME247 is a difficult course no matter how you slice it, but Prof Sanz-Pena made himself very accessible in office hours and was accommodating with make-ups. He put on a serious demeanor during the semester (minus his unforgettable smile :) but ended up curving very generously at the end. You must do the (optional) worksheets to learn. He's good.", + "pos": 0.213, + "neu": 0.728, + "neg": 0.059, + "_id": { + "$oid": "6711d4cecd60fca157e5c533" + } + }, + { + "text": "Class is packed with super dense content that's hard to tackle in the regular time slot. The quizzes are tough, but the professor gives extra time and office hour choices to take them if you can justify. Grading criteria makes sense and follows the syllabus but is not flexible. Midterm is very difficult but follows the book problems.", + "pos": 0.037, + "neu": 0.786, + "neg": 0.177, + "_id": { + "$oid": "6711d4cecd60fca157e5c534" + } + }, + { + "text": "Avoid him even if you have to take this class and he's the only one teaching. Doesn't care about students, thinks he's so smart, and has a very low voice you can't even understand what he saying. Reads off slides and lectures are just a waste of time. CCNY be hiring people randomly, don't know how he is a professor really.", + "pos": 0.05, + "neu": 0.806, + "neg": 0.144, + "_id": { + "$oid": "6711d4cecd60fca157e5c535" + } + }, + { + "text": "This professor literally reads off the board and does not know how to explain a concept clearly to his students. You being in class is the same as you not being there because you learn nothing from his lectures. You literally have to teach yourself everything. His test are worth a lot. Avoid him at all cost.", + "pos": 0.076, + "neu": 0.888, + "neg": 0.036, + "_id": { + "$oid": "6711d4cecd60fca157e5c536" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cfcd60fca157e5c538" + }, + "professor_name": "Carmen Marrero", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "She is an amazing professor who pushes all of her students to pass her class. She very helpful and wants to see her students win! I would recommend for anyone to take her she is one of my favorite professors.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c539" + } + }, + { + "text": "Professional and respectful.", + "pos": 0.6, + "neu": 0.4, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c53a" + } + }, + { + "text": "Excellent professional. Communication is fast and effective. She gives feedback that favors your performance and the guidance to complete the work is excellent. Professor is fair in the way of grading. I would definitely take a second class with her.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c53b" + } + }, + { + "text": "Professor was always willing to provide clarity on assignments. Professor is very understanding.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c53c" + } + }, + { + "text": "The materials and assignments are very practical.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c53d" + } + }, + { + "text": "Resourceful in supporting teachers professional growth.", + "pos": 0.579, + "neu": 0.421, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c53e" + } + }, + { + "text": "Professor Marrero's class way to start of my grad school journey. Her classes are very straightforward and easy to follow. She gives you and your group members time to do work in class and submit assignments to her for feedback. If you every need any type of support, she will offer that too.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c53f" + } + }, + { + "text": "She was very helpful!", + "pos": 0.53, + "neu": 0.47, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c540" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4cfcd60fca157e5c542" + }, + "professor_name": "Anthony Bridget", + "rating": 3.8, + "department": "Speech department", + "comments": [ + { + "text": "Professor Anthony was an excellent instructor for our speech course. She provided insightful and constructive feedback, which greatly helped in improving our speaking skills. As long as you go to class, complete your assignments on time, and participate regularly, you will do well in her class.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c543" + } + }, + { + "text": "I took her for acting 1. My experience can be described as demoralizing, and ego-crushing. The scenes that we had to perform were beyond archaic., It was about domestic violence. She also tried to defend her choices by saying to \"let go using the abusive character.\" SHe is not a therapist and frankly, shouldn't even be a professor. DOnt take", + "pos": 0.0, + "neu": 0.875, + "neg": 0.125, + "_id": { + "$oid": "6711d4cfcd60fca157e5c544" + } + }, + { + "text": "She taught my acting class and I must say that she is a great teacher. She works on getting you comfortable and creating a safe environment. I had a lot of fun in class! You must come to class everyday and participate in order to get a good grade.\n\nWe need more Prof like her.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c545" + } + }, + { + "text": "Anthony is a good professor. She's super understanding and caring. she really intends to improve ur public speaking skills and tries to make everyone as comfortable as possible. she's an easy professor!!", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c546" + } + }, + { + "text": "She really improved my public speaking skills. When you're speaking, she goes to every length to protect you from distractions. You'll see rapid changes as you move from Name--Informative--Debate--Persuasive Speech. Not a harsh grader. Just be punctual and serious with the speeches. You'll do good. I'll miss her class though!!", + "pos": 0.199, + "neu": 0.719, + "neg": 0.082, + "_id": { + "$oid": "6711d4cfcd60fca157e5c547" + } + }, + { + "text": "She is actually really nice if she likes the class. Thankfully, she liked my class and we had lots of fun. She is funny and adjusts to any changes you guys want. The only thing I would say is that she does kind of embarrass you in front of the class if you're not standing straight or fidgeting to make a speech.", + "pos": 0.249, + "neu": 0.696, + "neg": 0.055, + "_id": { + "$oid": "6711d4cfcd60fca157e5c548" + } + }, + { + "text": "Awesome professor. Her class is so easy and she's a nice person. Only a few major speech assignments are given and you can make them about anything you want and still have fun with it as well! Easy A", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d4cfcd60fca157e5c549" + } + }, + { + "text": "Very disorganized and confusing, changes her syllabus in a major way throughout the semester, cancels assignments on the day they are due. However, if you do what she asks you to do, you'll be fine. Don't bother buying the textbook, she never used it. Pet peeve: lateness.", + "pos": 0.073, + "neu": 0.802, + "neg": 0.125, + "_id": { + "$oid": "6711d4cfcd60fca157e5c54a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d0cd60fca157e5c54c" + }, + "professor_name": "Edwin Lamboy", + "rating": 5, + "department": "Spanish department", + "comments": [ + { + "text": "Excellent Professor!", + "pos": 0.8, + "neu": 0.2, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c54d" + } + }, + { + "text": "He grades fairly, so students's need to show and give their best effort in order to do well in this class.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c54e" + } + }, + { + "text": "For this class you are required to use the text book. Sometimes he provided study guides of a certain chapter to review for a quiz or test. But when I took his class he only provided two study guides. He pushes his students to study in order to improve their grades in his class. He makes us laugh, to make the class environment not so stressful.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c54f" + } + }, + { + "text": "Best education course I've ever taken. All the information you learn is so useful and he breaks it down for you. He is very serious and responsible with his job but during lectures he is a clown; he'll make you laugh and learn at the same time. Extra: You will also enjoy the view of his hazel eyes as they change colors everyday.", + "pos": 0.215, + "neu": 0.768, + "neg": 0.017, + "_id": { + "$oid": "6711d4d0cd60fca157e5c550" + } + }, + { + "text": "Dr. Lamboy is an amazing professor, very fair and very friendly. The course is extremely difficult but he helps us push ourselves. Great class for those who don't mind putting in the hard work.", + "pos": 0.337, + "neu": 0.587, + "neg": 0.076, + "_id": { + "$oid": "6711d4d0cd60fca157e5c551" + } + }, + { + "text": "If you haven't his student, you haven't met a real spanish teacher. He is the best teacher and a wonderful person.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c552" + } + }, + { + "text": "AWESOME PROFESSOR! HE IS ONE TO REALLY CARE ABOUT HIS STUDENTS. AS SOON AS HE WALKS IN TO CLASS HE ASKS HOW YOUR DOING. AND NOT ONLY THAT, BUT HE IS ALSO A GREAT EDUCATOR. CANT SAY THE CLASS IS EASY, BECAUSE IS NOT. BUT IF YOU DO ALL YOUR WORK, HE WILL NOTICE AND GIVE YOU THE GRADE YOU DESERVE. HE DOES NOT FORGET HIS STUDENTS BECAUSE THE TERM FINIS", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c553" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d0cd60fca157e5c555" + }, + "professor_name": "Katherine Ritchie", + "rating": 4.1, + "department": "Philosophy department", + "comments": [ + { + "text": "She not only preaches philosophy, but she practices it as well. A genuine human being and a genius scholar. Work hard on everything she assigns and you'll be rewarded with a good grade and invaluable knowledge. She's the best.", + "pos": 0.318, + "neu": 0.651, + "neg": 0.031, + "_id": { + "$oid": "6711d4d0cd60fca157e5c556" + } + }, + { + "text": "All of her lessons are based on her powerpoint presentations and the (many) assigned readings. A lot of weight is placed on papers and exams, but if you memorize and understand the ideas she teaches in class you'll do well. I learned a lot about the logical sequence of an argument which I apply to my other classes. Just be wary of her pop quizzes.", + "pos": 0.038, + "neu": 0.914, + "neg": 0.047, + "_id": { + "$oid": "6711d4d0cd60fca157e5c557" + } + }, + { + "text": "Such a great philosophy teacher. A lot of readings but they are interesting. 2 short papers (2pgs) 2 exams, 1 final, some pop quizzes on the readings so make sure you read. Her test are easy if you do the study sheet she provides. i recommend her", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c558" + } + }, + { + "text": "Easily one of the best professors in Philosophy. Has lectures and readings available online so no need to buy any books and always challenging our conventional way of thinking. Would recommend her to anyone taking philosophy.", + "pos": 0.24, + "neu": 0.696, + "neg": 0.064, + "_id": { + "$oid": "6711d4d0cd60fca157e5c559" + } + }, + { + "text": "Good prof. who has a good personality and cares about her students' learning the material. Tries to be as clear as possible with her lectures. Always available during office hours. However, she is so dependent on her numerical grading system and so she doesn't know such a thing that she can curve the grade. Don't be late, try to take all quiz on ti", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c55a" + } + }, + { + "text": "One of the kindest professors! She's awesome. Her grading is a little tough though. Make sure you really understand the material before the exams. Before you hand in your papers, show her before for feedback so you don't lose too many points. I never participated but still received a 100 for participation. Take her, she's great compared to others!", + "pos": 0.209, + "neu": 0.775, + "neg": 0.016, + "_id": { + "$oid": "6711d4d0cd60fca157e5c55b" + } + }, + { + "text": "She's a nice person overall, but is very tough when it comes to grading. A lot of weight is put on her midterm and final paper. If you mess up one of those, even the extra credit and other assignments won't help your grade very much. If you love philosophy and like to participate in heated discussions, then this is your class. If not, avoid.", + "pos": 0.203, + "neu": 0.695, + "neg": 0.102, + "_id": { + "$oid": "6711d4d0cd60fca157e5c55c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d0cd60fca157e5c55e" + }, + "professor_name": "Mark Arend", + "rating": 3.1, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "This is one of the best professors I have ever had. He is very clear. His tests are challenging but I really learned a lot from him. You should take him!", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c55f" + } + }, + { + "text": "He is one of the best at CCNY. Very clear and knows wgat he talks about", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c560" + } + }, + { + "text": "It seems like he doesnt know what he teaches. However, his exams are not that hard and you will be able to pass the class. So if u want to learn, take another professor but if you just want to get a decent grade w/o suffering so much, then take him", + "pos": 0.101, + "neu": 0.825, + "neg": 0.074, + "_id": { + "$oid": "6711d4d0cd60fca157e5c561" + } + }, + { + "text": "if you have any intantin to learn from a professor do not even think of taking him. it seems like he does not know any thing. he suckes", + "pos": 0.085, + "neu": 0.915, + "neg": 0.0, + "_id": { + "$oid": "6711d4d0cd60fca157e5c562" + } + }, + { + "text": "He sucks beyond belief. Don't even think abt taking his class unless you want a good nap. He is going to give you a really hard final. BEWARE!!", + "pos": 0.145, + "neu": 0.728, + "neg": 0.127, + "_id": { + "$oid": "6711d4d0cd60fca157e5c563" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4d0cd60fca157e5c564" + } + }, + { + "text": "Good and friendly prof. Uses the book very well, good explainations. Exams not too hard, but sometimes demanding. Nice course athmosphere", + "pos": 0.437, + "neu": 0.482, + "neg": 0.081, + "_id": { + "$oid": "6711d4d0cd60fca157e5c565" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d1cd60fca157e5c567" + }, + "professor_name": "Robert Robinson", + "rating": 1.9, + "department": "Philosophy department", + "comments": [ + { + "text": "He listens to requests. Get ready to teach yourself. Within his classes, he goes through the problems at a very speaking rapid pace. Additionally, the book is the actual professor. He will just show up and go over the problems. The tests are hard and long and are majority of your grade.", + "pos": 0.044, + "neu": 0.838, + "neg": 0.119, + "_id": { + "$oid": "6711d4d1cd60fca157e5c568" + } + }, + { + "text": "It's made more complicated than it needs to be.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c569" + } + }, + { + "text": "Do not take his class. You will not learn anything from attending his classes and you basically have to teach yourself about how to do his work. Does not know how to slow down and explain things properly, which often leads to more confusion or him getting confused himself.", + "pos": 0.0, + "neu": 0.907, + "neg": 0.093, + "_id": { + "$oid": "6711d4d1cd60fca157e5c56a" + } + }, + { + "text": "His exam was RIDICULOUS! Crazy unorganized and super unrealistic. Have a question on the material? Prepare to have your mind blown. His answers will make you forget your question. So unclear, so vague and SO not the class you were hoping for. If you like mind games and puzzles, he is your guy.", + "pos": 0.138, + "neu": 0.673, + "neg": 0.189, + "_id": { + "$oid": "6711d4d1cd60fca157e5c56b" + } + }, + { + "text": "rarely takes attendance, papers are easy with the help of sparknotes and other websites to explain the readings because the text and his lectures won't help, they'll only make things worse. exams are unclear, essay based. you'll pass if you just memorize the philosophies, don't attempt to actually understand them. he's fair and lenient", + "pos": 0.155, + "neu": 0.73, + "neg": 0.114, + "_id": { + "$oid": "6711d4d1cd60fca157e5c56c" + } + }, + { + "text": "The professor was very hard to understand and very disorganized. We were supposed to have 10 quizzes and we ended up only having 3. the lectures are unclear and he doesn't give good explanations on the readings. He even stated throughout most of the lectures that he didn't understand the readings. Exams don't come from the readings-disorganized.", + "pos": 0.0, + "neu": 0.861, + "neg": 0.139, + "_id": { + "$oid": "6711d4d1cd60fca157e5c56d" + } + }, + { + "text": "At first you think its easy but then he starts to lecture. His lectures are so unclear. I used sparknotes and google to explain the philosophy docs for me because he just doesnt make sense sometimes. He speaks in circles and his exams were ridiculously un-organized.", + "pos": 0.038, + "neu": 0.835, + "neg": 0.127, + "_id": { + "$oid": "6711d4d1cd60fca157e5c56e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d1cd60fca157e5c570" + }, + "professor_name": "Mateo Duque", + "rating": 4.9, + "department": "Philosophy department", + "comments": [ + { + "text": "He is one cool professor who really loves what is really teaching. He cares about students and wants everybody to get the best grade as possible. Do what he tells you to and you will be fine, be aware of pop quizzes on the reading, there was a midterm, media diet paper, final paper, weekly blogs, and that's all.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c571" + } + }, + { + "text": "Prof Duque is so nice and he cares so much about his students! He's a young guy so he's very chill and funny. Can be cheesy and corny sometimes, but he's such a good guy and really wants his students to succeed. The only non-great thing is the daily readings that are somewhat long but sometimes interesting.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c572" + } + }, + { + "text": "Mateo Fuqua is one of the best professor at CCNY. He really cares about his students and introduces fundamental concepts of philosophy throughout our the semester. There is a lot of reading and they can be difficult to understand. But, you will learn a lot from him.", + "pos": 0.094, + "neu": 0.871, + "neg": 0.035, + "_id": { + "$oid": "6711d4d1cd60fca157e5c573" + } + }, + { + "text": "He is truly one of the best professors at CCNY with my experience so far. Although there is a lot to read, you can easily search up the summaries and actually understand the readings. He gives awesome feedbacks and you can tell he is very passionate about philosophy. This class was absolutely mind-blowing and beginners will definitely enjoy!!", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c574" + } + }, + { + "text": "Prof. Duque is an amazing professor, he's really caring and wants his students to succeed. Every class is thought provoking and his lectures can really inspire you to think in ways you haven't thought before. He makes philosophy easier to understand for people who are new to it, but can still challenge you to think deeper about certain things.", + "pos": 0.213, + "neu": 0.766, + "neg": 0.021, + "_id": { + "$oid": "6711d4d1cd60fca157e5c575" + } + }, + { + "text": "Mr. Duque is an amazing professor to have and I highly recommend taking him if given the chance. Just gotta do the readings and be ready for some reading assessments otherwise I think this class was great!", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c576" + } + }, + { + "text": "Thought I was gonna fail bc the readings are hard if you don't read it more than one and fully delve into them. Turns out, I passed with an A+ and got a 100 on my final paper! Duque is a really caring prof and you can tell how much he loves philosophy. As long as you do the readings, UNDERSTAND THEM, + do blog posts as expected, it's a fun class!", + "pos": 0.133, + "neu": 0.807, + "neg": 0.059, + "_id": { + "$oid": "6711d4d1cd60fca157e5c577" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d1cd60fca157e5c579" + }, + "professor_name": "Christine Suwendy", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Christine was such a great teacher. She had us do many drafts of essays and personally met with us to discuss what we could do to improve. Her insight and individual help was very compelling and really aided me in achieving a great grasp of the material we learned. She was really funny too. One of the best teachers I've had so far.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c57a" + } + }, + { + "text": "Great teacher with a good sense of humor!!", + "pos": 0.659, + "neu": 0.341, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c57b" + } + }, + { + "text": "she's a mad cool person. (she's so tiny, she doesn't even look like she is a professor) Her class is an easy class, if you keep up with your work. I would recommend her, if she is still teaching next semester.", + "pos": 0.157, + "neu": 0.735, + "neg": 0.108, + "_id": { + "$oid": "6711d4d1cd60fca157e5c57c" + } + }, + { + "text": "good teacher. she teaches very well, although not my fav class, she still makes it worthwhile 2 attend", + "pos": 0.318, + "neu": 0.579, + "neg": 0.103, + "_id": { + "$oid": "6711d4d1cd60fca157e5c57d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4d1cd60fca157e5c57e" + } + }, + { + "text": "She is very nice and always willing to help students with their academics. Prof Suwendy would always ensure that everyone understood whatever she taught in class. I hereby recommend her for everyone.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d4d1cd60fca157e5c57f" + } + }, + { + "text": "It's a standard literature course. You read books, discuss them in class, write papers....nothing unusual. She makes even boring books bearable. good sense of humor. Keep up with the reading, memorize basic info in the books (you will be quizzed), and actually put effort into papers and you'll be fine.", + "pos": 0.123, + "neu": 0.835, + "neg": 0.042, + "_id": { + "$oid": "6711d4d1cd60fca157e5c580" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d2cd60fca157e5c582" + }, + "professor_name": "Karen Langsam", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "do not take her class, she's a nice professor but if you don't have a background of business or Psychology you will have to work extra hard. gives you tones of work. she's a tough grader and papers has to be perfect.", + "pos": 0.144, + "neu": 0.787, + "neg": 0.069, + "_id": { + "$oid": "6711d4d2cd60fca157e5c583" + } + }, + { + "text": "if you're into the business&psychology world take all her classes. I did. Def prepared me for real life after graduation. very inspiring, passionate, but also demanding a lot from students. You take her class-you will have to work hard. Paper, quizzes, exams, presentations. Ton of work, but as you do it, you realize that it's mostly for yourself", + "pos": 0.093, + "neu": 0.844, + "neg": 0.063, + "_id": { + "$oid": "6711d4d2cd60fca157e5c584" + } + }, + { + "text": "Langsam is an amazing professor. She follows the syllabus 98% of the time, and is very organized. She gives a decent amount of work, but it never felt overwhelming because she properly prepares you for everything.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c585" + } + }, + { + "text": "She is very nice and always willing to help. Her test questions sometime can be tricky if you did not take good notes and/or read the textbook. Knowledgeable and would definitely take her again.", + "pos": 0.205, + "neu": 0.699, + "neg": 0.097, + "_id": { + "$oid": "6711d4d2cd60fca157e5c586" + } + }, + { + "text": "Prof Langsam is one of the best at CCNY. If you're in the psych department, I highly recommend taking her classes within the applied psych track. She understands that the work is time consuming and difficult at times but she encourages and helps the whole class throughout the semester. Very inspirational and passionate about what she teaches", + "pos": 0.279, + "neu": 0.697, + "neg": 0.024, + "_id": { + "$oid": "6711d4d2cd60fca157e5c587" + } + }, + { + "text": "AMAZING professor ! One of the best. She is very clear, organized, and approachable. Very knowledgeable. Makes sure we are feeling well, and reminds us that we are going through it together. Long class since it requires a lot of work. You conduct your very own research project. 5 quizzes,3 papers, final exam & presentation. You're in good hands!", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c588" + } + }, + { + "text": "Clear in her lectures, but does not post power points. A lot of Work 3 papers, 3 exams, and a 80 questions final. she gives extra credit, come prepared to participate and on time. Overall interesting and lively class and its a class you can relate to your everyday lives. No math involves has to do with consumer behavior. Take if your ready", + "pos": 0.236, + "neu": 0.727, + "neg": 0.036, + "_id": { + "$oid": "6711d4d2cd60fca157e5c589" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d2cd60fca157e5c58b" + }, + "professor_name": "Alicia Evans", + "rating": 4.6, + "department": "Media Arts department", + "comments": [ + { + "text": "Prof. Evans one of the few professors in the program who teaches a skill set that can be useful outside of agency life. She can be direct with her feedback while also remaining respectful to each student as an individual. The workload is reasonable. Just read the slides and scroll for social media news before class and you'll pass.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c58c" + } + }, + { + "text": "Prof. Evans really cares about students. She spends extra time and is clear and super funny. She did a great job converting classes online. A fantastic professor! One-of-a-kind! Amazing. She knows her material and knows how to explain it clearly.", + "pos": 0.462, + "neu": 0.538, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c58d" + } + }, + { + "text": "She was honestly a great professor at the beginning of the semester. But as the semester progressed she was never proactive with emails. I would submit my assignments on time but she never double-checked her inbox, which resulted in me sending the assignments again and receiving a grade I didn't deserve because it was \"late.\"", + "pos": 0.076, + "neu": 0.873, + "neg": 0.05, + "_id": { + "$oid": "6711d4d2cd60fca157e5c58e" + } + }, + { + "text": "THE BEST PROFESSOR EVER!! TAKE HER. YOU WILL NOT REGRET IT. You will regret, however, that she doesn't teach more courses!!!!! She's truly a gem. Be prepared to learn a lot and laugh even more. She makes the class THAT enjoyable.", + "pos": 0.358, + "neu": 0.593, + "neg": 0.049, + "_id": { + "$oid": "6711d4d2cd60fca157e5c58f" + } + }, + { + "text": "Professor Evans is the best teacher you'll ever have. Clear cut, concise, and funny to boast, she has great credentials. Loved her PRWriting class so much, planning on taking her Social Media Strategies. She is seriously that good. She is hilarious and is always looking for the \"news\" aspect. Coursework is decent, but she will build you to PR pros.", + "pos": 0.219, + "neu": 0.739, + "neg": 0.042, + "_id": { + "$oid": "6711d4d2cd60fca157e5c590" + } + }, + { + "text": "WHERE ARE ALL THE ALICIA EVANS IN THE MCA PROGRAM? BEST PROFESSOR EVER. Flexible but will not take crap from you. Take good notes and enjoy her class. its a breeze and she will stick on you like glue.", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c591" + } + }, + { + "text": "Im sorry but im not sure if Amy is her name. Anyways she's one of the best professor I had this semester. She makes the class very interesting and funny. Just read the chapters she assigns you to read.Take her if you have the chance.", + "pos": 0.28, + "neu": 0.66, + "neg": 0.061, + "_id": { + "$oid": "6711d4d2cd60fca157e5c592" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d2cd60fca157e5c594" + }, + "professor_name": "Mohamed Ali", + "rating": 4.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "No words for this professor very hard-working. He is the best one in the Staten Island", + "pos": 0.206, + "neu": 0.686, + "neg": 0.108, + "_id": { + "$oid": "6711d4d2cd60fca157e5c595" + } + }, + { + "text": "The most hardworking Professor in the all New York. I am a litle old and i have heart problems and he accommodate me the way i needet it. Thank you very much. I would take him again and again", + "pos": 0.148, + "neu": 0.793, + "neg": 0.059, + "_id": { + "$oid": "6711d4d2cd60fca157e5c596" + } + }, + { + "text": "Dr. Ali is a very caring professor who really is on the side of the students. He knows his subject so well, and is very passionate about spreading his knowledge of the subject. I would definitely take his course again.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c597" + } + }, + { + "text": "Wow, First day in class he YELL at all of for coming to see him early for Senior Design. Throughout the semester, he YELL at us. O man, get ready to work when you take senior design with him.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c598" + } + }, + { + "text": "He was really really cool", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c599" + } + }, + { + "text": "An excellent professor; it really shows that he loves what he does. He teaches from hiw knowledge not from the books. One of the few \"self-respecting\" professors that I have gotten the pleasure to know.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d4d2cd60fca157e5c59a" + } + }, + { + "text": "Tough Proffessor", + "pos": 0.0, + "neu": 0.4, + "neg": 0.6, + "_id": { + "$oid": "6711d4d2cd60fca157e5c59b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d3cd60fca157e5c59d" + }, + "professor_name": "Erin Siodmak", + "rating": 2.9, + "department": "Sociology department", + "comments": [ + { + "text": "Professor Siodmak is a great teacher. Shes very nice and caring, not intimidating at all. The class was really interesting, and her lectures help to simplify and explain some of the complex concepts. There is a lot of reading but its interesting. Make sure to take good notes because almost everything is on the final/midterm and its hard.", + "pos": 0.314, + "neu": 0.664, + "neg": 0.022, + "_id": { + "$oid": "6711d4d3cd60fca157e5c59e" + } + }, + { + "text": "70% of class is listening to her ramble about politics, her personal life, and everything wrong with the world. Any information that you retain is from cramming the book the night before a test. She will extensively attack you for being late, using your phone, or talking. But she does give out review sheets. Easy A but torturous semester. Avoid.", + "pos": 0.054, + "neu": 0.777, + "neg": 0.169, + "_id": { + "$oid": "6711d4d3cd60fca157e5c59f" + } + }, + { + "text": "She's average. Gets off topic during lecture & rushes through slides. Attendance not mandatory since she doesn't take it half the time. Everything is on Blackboard & the textbook which will help you with the 2 exams. Discussion board posts & 1 final paper and some pop quizzes. Lots of extra credit. Do the work and easy A.", + "pos": 0.129, + "neu": 0.851, + "neg": 0.019, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a0" + } + }, + { + "text": "Good professor. For you to do well in the class you should definitely read the textbook and go over her slides. You're graded by two exams (all multiple choice), critical analysis essay, discussion post and participation. Gives a good job at explaining sociological topics but she can get off track for a while sometimes. Overall good professor.", + "pos": 0.175, + "neu": 0.799, + "neg": 0.026, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a1" + } + }, + { + "text": "She's not that great. She constantly gets off topic and rushes through the slides once she realizes that she spent too much time talking about something. No good test reviews and you have to teach yourself. At least she's very organized on Blackboard. The textbook and the slides she puts up are your best friends for this class.", + "pos": 0.109, + "neu": 0.806, + "neg": 0.085, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a2" + } + }, + { + "text": "Listen taking this course was by far the most stressful ever. Her teaching is style is vague. I learned on my own rather than in class . Rushes through PowerPoint slides. Gets off track with students for almost the entire periods. Poor reviewing for exams . Shes a nice teacher but nice doesnt cut it when it comes to the course. Dont bother .", + "pos": 0.142, + "neu": 0.782, + "neg": 0.076, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a3" + } + }, + { + "text": "For an honors class, she made it a breeze! Homework consists of readings and movies/documentaries that we then discuss in class. Only 2 tests (no final). Very open-arms and welcoming, but don't take that as an excuse to step all over her. Almost everyone in the class got an A, definitely recommend :)", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a6" + }, + "professor_name": "Darwin Deen", + "rating": 4.3, + "department": "Medicine department", + "comments": [ + { + "text": "He is truly a prime definition of a caring physician and professor. The way he speaks, lectures, and explains material is so soothing and enjoyable. He is also extremely funny so his lectures are not boring. Yes, there are take-home points but as long as you don't wait last minute they are not hard to do at all.", + "pos": 0.203, + "neu": 0.772, + "neg": 0.025, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a7" + } + }, + { + "text": "This man is a legend. I love going to his lectures because not only is he extremely funny with the examples he provides but I can tell he genuinely cares about the students and he was kind enough to give me extensions with my assignments.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a8" + } + }, + { + "text": "Those who rate Dr. Deen poorly are usually students who do not attend his lectures or do not ask questions; it is unfair and not reliable. All my classmates including myself who attend his lectures know he is clear when answering students' questions and he follows his syllabus to the tea which is helpful because it allows students to work ahead.", + "pos": 0.081, + "neu": 0.872, + "neg": 0.047, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5a9" + } + }, + { + "text": "It was an ABSOLUTE pleasure to learn from Dr. Deen. His lectures are informative and insightful. He always encourages us to think outside of the box. His personality, humour and patience for students are beyond exceptional. Seriously he is genuinely a jewel in Sophie Davis and if you have him, you're lucky. So so grateful to learn from Dr. Deen.", + "pos": 0.252, + "neu": 0.72, + "neg": 0.027, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5aa" + } + }, + { + "text": "Dr. Deen is seriously one of the greatest professors I have ever had. Unlike many other medical lectures, Dr Deen's lectures are enjoyable, fun, and humorous. He speaks to us not like medical students but like people; that's how it should be. When he had questions, he answers clearly and gives excellent examples. Being a student of his is an honor.", + "pos": 0.314, + "neu": 0.649, + "neg": 0.037, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5ab" + } + }, + { + "text": "Not the best professor out there, but he tries to keep us up to date on what is happening with nutrition and wellness in the world right now. I'm not sure what his grading criteria is for some assignments because he grades pretty hard on some. If you come to class on time, don't use technology, and do hw, you'll be fine.", + "pos": 0.143, + "neu": 0.772, + "neg": 0.086, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5ac" + } + }, + { + "text": "Unclear grading criteria, you will not know how you are doing until the end of the semester when he tells you that you failed or passed. You can attend all his lectures and actively participate in homework and discussions, but still fail. He does not take his class seriously and expects you too. If I had a choice I WOULD NOT take him ever again.", + "pos": 0.023, + "neu": 0.832, + "neg": 0.145, + "_id": { + "$oid": "6711d4d3cd60fca157e5c5ad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d4cd60fca157e5c5af" + }, + "professor_name": "Alex Maurice", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Nice Prof. Easy and willing to help. No Midterm No Final No Tests just lab reports. Gives Extra credit projects but don't really have to do them because its an easy A. YOU CANT FAIL HIS CLASS. All you have to do is 5 lab reports and that is it!", + "pos": 0.31, + "neu": 0.664, + "neg": 0.026, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b0" + } + }, + { + "text": "Awsome Prof. will highly recommend him! i took this class with 2 other professor he is the best!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b1" + } + }, + { + "text": "really nice good prof knows his stuff :) highly recommended !", + "pos": 0.625, + "neu": 0.375, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b2" + } + }, + { + "text": "He's awesome. Just go to class and write your papers. He's so laid back and approachable. He's very clear up front with what he expects...you can't go wrong.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b3" + } + }, + { + "text": "this prof., is gr8, he really helps to understand the papers and makes them less intimidating, he is laid back and makes class interesting, he knows alot about everything, i would recommend to take his class, i wish he were teaching another class so i can take it, Alex u ROCK", + "pos": 0.233, + "neu": 0.725, + "neg": 0.042, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b4" + } + }, + { + "text": "Great as a teacher and advisor. Very easy-going. No exams! But does require 4 essays, each worth 20% of your grade.", + "pos": 0.208, + "neu": 0.722, + "neg": 0.07, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b5" + } + }, + { + "text": "Mr. M is a laid back guy, he'll let you hand in a paper or two late but not outrageously late. He's an easy grader and helpful in all areas, he can even advise you in course selection. You have to write four papers over the sem., so don't take if you hate writing. He's one of my favorite teachers...", + "pos": 0.213, + "neu": 0.72, + "neg": 0.067, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b8" + }, + "professor_name": "Laura Callahan", + "rating": 4.4, + "department": "Spanish department", + "comments": [ + { + "text": "She's fair, if you do the work your grade will reflect it. This class is so easy she gives you the assignment, you write a draft, she gives it back to you with corrections, and then finally you hand in the final draft! How can you mess that up?", + "pos": 0.167, + "neu": 0.789, + "neg": 0.044, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5b9" + } + }, + { + "text": "She is fare,and very nice.she never made you feel bad.excellent", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5ba" + } + }, + { + "text": "I have learned so much with her.. I also have an interest for the class so this makes it easier, however there are some professors that make you regret it. she doesn't! I recommend. she is strict but that is how professors should be. not in an annoying way", + "pos": 0.13, + "neu": 0.807, + "neg": 0.063, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5bb" + } + }, + { + "text": "She's one of the better Spanish professors out there. She doesn't always go by the book, instead - she encourages us to speak more, rather than just understanding the rules. Exam is easy as well, she'll give you the questions beforehand, so there's no reason for you to fail the class.", + "pos": 0.175, + "neu": 0.728, + "neg": 0.097, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5bc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5bd" + } + }, + { + "text": "She's a very good professor. You do group activities to help you understand the concepts better. But all in all this class was easy. She's one of the best spanish professors I've ever had. I'm ok at the subject and this was my 4th semester taking it, and for the first time I got a \"B.\" She's really good, I recommend everyone in spanish take her.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5be" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5bf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c1" + }, + "professor_name": "Luis Zambrano", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "I would like to state my strong recommendation for Luis Zambrano. He is a highly intelligent and an excellent teacher.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c2" + } + }, + { + "text": "great professor, explains very clear if don't understand with him you will never get lots of help.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c3" + } + }, + { + "text": "Hes a nice/good teacher. refers to food a lot Funny. understanding and leniant in LAGCC didn't like the class due to the fact that it is on educosoft, and online math site. was not aware before the class. test, quizzes, homework, practice were all online. did give paper tests to the end which was better. gives 2-3 extra credit projects (short).", + "pos": 0.124, + "neu": 0.844, + "neg": 0.031, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c4" + } + }, + { + "text": "Great professor. He kept me motivated at all times. He is very helpful. This class is great if you have taken calculus before. Friendly professor, I would recommend him.", + "pos": 0.465, + "neu": 0.535, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c5" + } + }, + { + "text": "If you know the material already he really supplements what you know. Sometimes he's hard to follow but he's more than willing to see you after class. He's a fair grader and drops the lowest quiz. Easy class if you've taken calculus before.", + "pos": 0.135, + "neu": 0.774, + "neg": 0.091, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c6" + } + }, + { + "text": "I lost him at the end of the semster, i had no clue what he was saying. he doesnt check hw, but its for your own good to do it cuz his quizzes r mostly based on hw questions. he would go over questions you HAVE n dont understand. i messed up badly -_- he very nice and friendly lol", + "pos": 0.242, + "neu": 0.664, + "neg": 0.094, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c7" + } + }, + { + "text": "He is a good professor & will explain over & over again the lesson if you ask him to.\r his tests are extremely FAIR (he gives study guides similar to tests) & he gives alot of homeowrk however he never collects them.A very understanding professor", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d4d4cd60fca157e5c5c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d5cd60fca157e5c5ca" + }, + "professor_name": "Myrah Green", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "Dr. Green is outstanding. She is the most helpful professor you will ever have if you show her respect. She treats you as an equal and genuinely cares about your success. She knows what she is doing, and is confident because she should be. I definitely recommend her class.", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5cb" + } + }, + { + "text": "This Professor has a HUGE attitude. She goes off about the smallest little things, even if you have a soda out or interupt her when she is talking.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5cc" + } + }, + { + "text": "Had her last year when I was a freshman. This woman has a huge attitude and expects you to know everything about the class when it's only the first or second day. Her supplies are very specific and can be expensive. Don't take this class, she was a nightmare.", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5cd" + } + }, + { + "text": "Prof. Green is outstanding. She is respectful towards her students and expects the same in return. She has a wealth of art knowledge to share. She deviates from the syllabus to the students? advantage. Quilting is a very interesting course, Prof Green makes it so. In FIQUS classes two Professors determine final grade.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5ce" + } + }, + { + "text": "Good teacher. Believes she is a \"Diva\" and queen diva at that. Don't try to make yourself seem superior or she will attack. Easily distracted when she talks about her kids and their achievements. doesn't follow syllabus. If your on her good side, your good for the semester.", + "pos": 0.239, + "neu": 0.671, + "neg": 0.09, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5cf" + } + }, + { + "text": "Really nice teacher but the first impression that you make with her is the one she keeps all semester. Doesn't like people talking during her class and will bite your head off. She has a lot of info to give but gets easily distracted during class times. Many times you have to go to her office for help on your quilt for it to be done.", + "pos": 0.144, + "neu": 0.781, + "neg": 0.075, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d0" + } + }, + { + "text": "She is an okay professor. She is never absent. Alot of the times, the class went over time because she likes for people to present things to the class. Her assignments are not hard and she is kind. She does not hurt peoples feelings. She is understanding due to her own personal life experiences.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d3" + }, + "professor_name": "Stephane Zaborowski", + "rating": 4.6, + "department": "Art department", + "comments": [ + { + "text": "I took his 3 hour Saturday class. I must say he really knows art and probably could answer any questions you ask. He is a easy professor, very lenient. Do all he asks which isn't much and get a A. But don't ever be late, he stares at you with hand gestures during class when you walk in late.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d4" + } + }, + { + "text": "He class is easy to understand. One midterm, and a final. For both he is going to tell the the slides that are going to come. Study them and you get a good grade. For the papers, there is one Museum visit paper and a term paper. Gives you chance to correct the papers and then updates the grades. Easy A if you follow.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d5" + } + }, + { + "text": "I hate this class. Hard to understand what he is saying. Pointless to go to class when only a midterm two papers and a final count. Wouldn't take him again.", + "pos": 0.0, + "neu": 0.846, + "neg": 0.154, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d6" + } + }, + { + "text": "TAKEEE HIM.Def worth it even though it is a SAT.class. much better than all the other ART prof, no need to search Ratings for the other prof. grade=midterm,final 2 papers. exams many ppl cheat, but its easy! since he tell u the slides to o know. Class is actually fun, i wish i wasnt late so many times -__- i actu. appreciated class& he hates u late", + "pos": 0.234, + "neu": 0.679, + "neg": 0.087, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d7" + } + }, + { + "text": "Amazing professor!", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d8" + } + }, + { + "text": "One of the top and invaluable classes I've taken. Im a science major but I feel everyone should take an art history class. Learning about the history of how our civilizations developed and how all the elements of art developed-especially first what they are!-will give you a deeper appreciation of everything you see in life! Great professor!", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5d9" + } + }, + { + "text": "No use reading the textbook unless you miss class, which you should never do. Never come late, he hates it. Take good notes. He says a lot of information and it's possible to catch it all, so I suggest typing. One 3pg paper and one 7pg comparative research paper. For finals and midterm he tells you beforehand what pieces you'll be writing about.", + "pos": 0.042, + "neu": 0.86, + "neg": 0.098, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5da" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d5cd60fca157e5c5dc" + }, + "professor_name": "Denis Khryashchev", + "rating": 4.9, + "department": "Computer Science department", + "comments": [ + { + "text": "Online-synch lectures, recorded to watch later if needed. Only needed to attend 50% of lecture for attendance. Uses zybooks for homework, which is very easy. Final project is a group project building an application with GUI. Overall very simple and easy would recommend.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5dd" + } + }, + { + "text": "He is the best professor in the CS dept and makes sure you understand the material! He is very organized and has all the slides/lectures on a google drive. If one student votes to move the exam or ask for an extension, he will give it to you if necessary. For exams, he gives an outline of what will be on the exam which is like a study guide!", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5de" + } + }, + { + "text": "One of the better professors I've had in CS. He really cares about his students and considers their situation and adjusts to it. His exams is open notebook and not difficult. He explains the concepts very well in lecture, so make sure you listen or rewatch recordings. Overall, I would take his class again.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5df" + } + }, + { + "text": "the best csc professor ever. I mean, of course you have to study to pass. but I must tell you he is the most caring, loving and understanding professor in the entire CCNY. as long as you do your weekly assignments, there's no reason you won't get an A. He will work with you and help you in every step. Please take him.", + "pos": 0.247, + "neu": 0.718, + "neg": 0.035, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5e0" + } + }, + { + "text": "Really great professor. I started this class having no programming experience and finished, really quite interested in the topic (I've continued to teach myself programming on the side). I think part of this was also Professor Khryashchev's really patient approach to everything. I think he really enjoys teaching and it shows.", + "pos": 0.186, + "neu": 0.777, + "neg": 0.036, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5e1" + } + }, + { + "text": "I took this professor this semester and I feel like I could not have picked a better professor. He provides us with the materials he uses for each class so if you missed something you can look back at it. He makes his lectures so fun with his puzzle breaks which really makes u think. He is also very understanding. OVERALL good professor!", + "pos": 0.178, + "neu": 0.788, + "neg": 0.033, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5e2" + } + }, + { + "text": "Profesor Khryashchev is great. His lectures are clear & straightforward, & he goes out of his way to explain things & even helps you with the labs if you're stuck (he will sometimes even fix your mistakes & get you full credit for you). Very straightforward. HW due every Sunday but its not hard. One final group project, no tests. he makes it easy!", + "pos": 0.181, + "neu": 0.737, + "neg": 0.081, + "_id": { + "$oid": "6711d4d5cd60fca157e5c5e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d6cd60fca157e5c5e5" + }, + "professor_name": "Tariq Hamami", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "His lectures are top tier and he is very knowledgeable about theater. Every assignment was easy. The quizzes u can easily pass by just reading summaries online. The exams are take home and he literally gives u the answers on a review sheet. And 2 papers u have to watch 2 plays on ccny, so be prepared to spend like $5 on each", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5e6" + } + }, + { + "text": "Professor Hamami was an amazing professor. There is no way you can fail this class as long as you pay attention, read the material he gives and pass the quizzes. Make sure to participate and the group projects were actually pretty fun. For the midterms and final he does in class reviews which is extremely helpful", + "pos": 0.222, + "neu": 0.678, + "neg": 0.1, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5e7" + } + }, + { + "text": "Great teacher does not give a lot of work and gives a lot of time to get the work done", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5e8" + } + }, + { + "text": "Professor Hamami is an amazing professor. His class is fun. Quizzes, Midterm, final, and two essays. He does offer extra credit. But a lot of quizzes. Try to participate because it will help you. TAKE HIM if you can.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5e9" + } + }, + { + "text": "Professor Hamami is really awesome and really great at teaching theater. His lectures are really engaging and makes you want to participate. His exams are super easy and his assignments/projects are fun. His grading is also really good. Personally, I recommend taking his class.", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5ea" + } + }, + { + "text": "If you have the chance to take him, do so. He is a amazing professor. And he is a great teacher supper fun classes. His the only fun class I have like I love him. Your going to have 2 group projects, 2 paper, one mindterm, 4 quizzes, and a final.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5eb" + } + }, + { + "text": "Great professor. Very charismatic & entertaining. The textbook is useless if you pay close attention & take notes in class. He is very clear about assignments and gives accurate reviews for the tests/quizzes. Only bad thing is the emphasis on so many group projects. Easy material & many extra credit opportunities. Be mindful of show dates for HW.", + "pos": 0.244, + "neu": 0.654, + "neg": 0.103, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5ec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d6cd60fca157e5c5ee" + }, + "professor_name": "Marian Melnyk", + "rating": 1.4, + "department": "Business department", + "comments": [ + { + "text": "BRUTAL", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5ef" + } + }, + { + "text": "Hard to understand and can't teach", + "pos": 0.0, + "neu": 0.781, + "neg": 0.219, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5f0" + } + }, + { + "text": "Very confusing and hard to understand his explanations. youtube helps more than him", + "pos": 0.158, + "neu": 0.608, + "neg": 0.234, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5f1" + } + }, + { + "text": "He's really bad at teaching, he should not be allowed to teach. Lazy, inconsiderate, and not caring. Stuff is never posted or graded on time. He knows all the materials but cannot translate it into teaching. You will not learn anything from him whether its in person or online. Please save yourselves the trouble and DO NOT take him.", + "pos": 0.103, + "neu": 0.735, + "neg": 0.162, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5f2" + } + }, + { + "text": "hard to understand", + "pos": 0.0, + "neu": 0.588, + "neg": 0.412, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5f3" + } + }, + { + "text": "He takes forever to answer your email, he took a week to answer mine. His lectures are not clear and something that I heavily dislike about him is that he does not go over your quizzes so whatever Blackboard gives you, is what you get. I know there have been times when I got the answer correct but Blackboard was being annoying and he never checks.", + "pos": 0.0, + "neu": 0.901, + "neg": 0.099, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5f4" + } + }, + { + "text": "This is a horrible professor. He is good at math but not at teaching. I have learned more from tutoring and youtube than from the actual class. Lots of material and little explanation both in person and online. The online study material are just as bad as him. I would never take a class by him and genuinely hope no one else does as well.REALLY BAD", + "pos": 0.071, + "neu": 0.737, + "neg": 0.192, + "_id": { + "$oid": "6711d4d6cd60fca157e5c5f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d7cd60fca157e5c5f7" + }, + "professor_name": "Sherry Hamlet", + "rating": 3.6, + "department": "English department", + "comments": [ + { + "text": "A decent professor who you should pass with no problems as long as you do the major assignments correctly and on time but many times the criteria and requirements for them are pretty vague. She sometimes takes points off for minor issues she finds and doesn't really give much feedback on how to fix them. Also, prepare for a lot of group work.", + "pos": 0.088, + "neu": 0.889, + "neg": 0.024, + "_id": { + "$oid": "6711d4d7cd60fca157e5c5f8" + } + }, + { + "text": "The professor's nice and makes the grading criteria and assignments clear. For lectures she reads directly off the powerpoint and it gets boring but you still have to go. There are 4 major assignments that make up most of your grade, and you need to do an extra credit assignment to get an A. However I didnt do extra credit but still got an A lol", + "pos": 0.144, + "neu": 0.798, + "neg": 0.059, + "_id": { + "$oid": "6711d4d7cd60fca157e5c5f9" + } + }, + { + "text": "Bad with communication, super picky grader, getting an A+ is almost impossible in this course. Be aware of peer reviews if you don't complete the feedback letters correctly, she deducts points. Unclear with homework directions most of the time. Provides poor feedback on assignments you're assigned. This course needs improvement in a lot of areas.", + "pos": 0.105, + "neu": 0.763, + "neg": 0.131, + "_id": { + "$oid": "6711d4d7cd60fca157e5c5fa" + } + }, + { + "text": "Her class is excellent, she does a great job teaching students about the elements of creative writing, using literary elements such as imagery, figurative language, and plot. This class helped me excel in writing my poetry, prose fiction, and non fiction papers.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d4d7cd60fca157e5c5fb" + } + }, + { + "text": "Nightmare", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4d7cd60fca157e5c5fc" + } + }, + { + "text": "Sherry Hamlet was a very nice professor. The class was based on 4 major assignments and the professor explains clearly what is necessary to get A. She also does one by one meeting before the end of semester so that she can explain where you are and which assignments you need to hand it. Overall one of the best English professor in City College.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d4d7cd60fca157e5c5fd" + } + }, + { + "text": "Professor Hamlet is very good. Lectures are mandatory. There are 4 major essays throughout the semester. Groupwork is a big component in this class. She makes helpful comments on essays and is understanding of situations. There is an \"A\" option which makes 2 essays a couple pages longer. Definitely a doable option. Essays can get challenging though", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d4d7cd60fca157e5c5fe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d7cd60fca157e5c600" + }, + "professor_name": "Amal AlMansour", + "rating": 3.1, + "department": "Computer Science department", + "comments": [ + { + "text": "Its a difficult course and she doesnt really curve. However, she is good professor and seems to care for her students.", + "pos": 0.229, + "neu": 0.677, + "neg": 0.094, + "_id": { + "$oid": "6711d4d7cd60fca157e5c601" + } + }, + { + "text": "The exams were way too difficult and she did not take our emails into consideration. But she always tried her best to teach us everyhting in a simple manner. Shes not the best but she is definitely one of the better computer science professors out there.", + "pos": 0.218, + "neu": 0.678, + "neg": 0.104, + "_id": { + "$oid": "6711d4d7cd60fca157e5c602" + } + }, + { + "text": "She seems like a really nice person and asks for the student's opinions when explaining difficult topics. However, she went way too fast through her lectures and the exams were crazy hard. The majority of the students failed the midterm and she did not curve -- but it was her first time teaching so I think she will curve for later semesters.", + "pos": 0.057, + "neu": 0.841, + "neg": 0.102, + "_id": { + "$oid": "6711d4d7cd60fca157e5c603" + } + }, + { + "text": "It was her first time teaching. Fast-paced lectures of her reading off of another prof's slides, no syllabus, and didn't curve although the majority of the class failed the midterm. An extreme amount of questions for both exams that are weighed equally. She's nice and does ask for students' input continuously throughout class, though.", + "pos": 0.047, + "neu": 0.86, + "neg": 0.093, + "_id": { + "$oid": "6711d4d7cd60fca157e5c604" + } + }, + { + "text": "She was a horrible professor. For the midterm, she gave ALOT of questions with a little bit of time. Almost every single student failed. She promised to give a curve but didn't and just submitted the final grades into Cunyfirst. And she ignored all emails. Try getting someone better, her class will definitely drop your GPA.", + "pos": 0.134, + "neu": 0.719, + "neg": 0.147, + "_id": { + "$oid": "6711d4d7cd60fca157e5c605" + } + }, + { + "text": "She's a good professor, but she was too fast and doesn't really pace herself. The students had to stop her a lot and had to talk about the topic at hand in order for her to explain it slowly. Also, since she's new, there were a lot of difficulties, which resulted in only 1 midterm with a lot of questions, and same for finals, which is too much.", + "pos": 0.082, + "neu": 0.844, + "neg": 0.074, + "_id": { + "$oid": "6711d4d7cd60fca157e5c606" + } + }, + { + "text": "She's pretty good at explaining but does stumble over her words often and goes way too quickly sometimes. She tries her best to teach us in a way where it comes easy to us and she respects our decisions and inquiries. But her exams have too many questions for the time given so it makes it very difficult for the students to perform well.", + "pos": 0.231, + "neu": 0.723, + "neg": 0.047, + "_id": { + "$oid": "6711d4d7cd60fca157e5c607" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d7cd60fca157e5c609" + }, + "professor_name": "Ahmed Mohamed", + "rating": 4.9, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Pay extra attention to the problems he goes over on the board and the questions from the HW. A lot of those questions are super similar to whats on the exams! Just a few number changes and one new problem from out of nowhere but everything else should be familiar. An A is possible is going over them", + "pos": 0.058, + "neu": 0.858, + "neg": 0.084, + "_id": { + "$oid": "6711d4d7cd60fca157e5c60a" + } + }, + { + "text": "2 exams, 9 homeworks, and an extra credit project if the class average is low. Great professor who teaches the material really well, copy every problem he puts on the board for transmission lines and load flow as they are question very similar on the exams.", + "pos": 0.166, + "neu": 0.747, + "neg": 0.087, + "_id": { + "$oid": "6711d4d7cd60fca157e5c60b" + } + }, + { + "text": "Professor Ahmed is a decent professor compared to other at CCNY. However, the class is somehow heavy. Exam problems are very long and he gives very little time to what he expects being done. Problems contain multiple steps and a lot of complex math. It's not an easy A class. If you want an A, get ready to spend 20-30h to prepare for every exam.", + "pos": 0.053, + "neu": 0.838, + "neg": 0.109, + "_id": { + "$oid": "6711d4d7cd60fca157e5c60c" + } + }, + { + "text": "One of the best professor in the electrical engineering dept. Always there to help, always available to help, reply's quick to emails, gives good feed back, gives exams similar to hw problems.", + "pos": 0.296, + "neu": 0.64, + "neg": 0.064, + "_id": { + "$oid": "6711d4d7cd60fca157e5c60d" + } + }, + { + "text": "This is the greatest course with the most amazing, enthusiastic professor! Connects theoretical applications with Real-world scenarios. Truly cares about the students understanding and is encouraging! GREATEST PROFESSOR AT CCNY! If you like Power engineering at all, take this course! You will fall further in love with it! Thank you Prof. Ahmed!", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d4d7cd60fca157e5c60e" + } + }, + { + "text": "He explains concepts with great clarity and depth. He is a very nice person and respects everyone's questions and contributions to class discussion. Exams are tough in the sense that all the work must be done perfectly to receive points. So, do practice problems to increase your odds of doing well. If you are really into power, then take him.", + "pos": 0.274, + "neu": 0.671, + "neg": 0.055, + "_id": { + "$oid": "6711d4d7cd60fca157e5c60f" + } + }, + { + "text": "He is one of the few professors came to class early. He really want to see students ace his class. Don't be afraid to answer/ask question. Exams are fair but don't except to pass the class without practicing. Average work load: 7 hours per HW(include reading)+12 hours to prepare each exam. Read, understand, and PRACTICE!", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d4d7cd60fca157e5c610" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d8cd60fca157e5c612" + }, + "professor_name": "Christopher Yawn", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "Amazing professor. Very understanding and fair.", + "pos": 0.614, + "neu": 0.386, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c613" + } + }, + { + "text": "Professor Yawn helped me get through some difficult times both inside and outside of his classroom during my first year as a grad student and a teacher. I was not his best or worst student but he always made me feel like I was so important. He will not let you fail if you do not fail yourself. He will model trying hard until you get it. THE BEST!!!", + "pos": 0.241, + "neu": 0.669, + "neg": 0.09, + "_id": { + "$oid": "6711d4d8cd60fca157e5c614" + } + }, + { + "text": "Awesome professor best one Ive had at city college. Gives quizzes weekly so u have opportunity to get a good great . Very helpful. Knowledgeable, and engaging. Take this class won't be disappointed .", + "pos": 0.504, + "neu": 0.496, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c615" + } + }, + { + "text": "This is professor hotness, but beside being sooo good looking, he is truly invested in his students and has vast knowledge of his field. I recommend taking the class with him. The hotness is a plus!!!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c616" + } + }, + { + "text": "OMG!!!! LOVE THIS GUY! HE IS VERY HELPFUL. HE ANSWERS EMAILS VERY FAST AND IS ALWAYS IN HIS OFFICE IF YOU NEED HELP WITH ANYTHING FROM THE COURSE. WEEKLY QUIZES SO MAKE SURE YOU READ. I MAJOR PROJECT, BUT HE HELPS YOU ALONG THE WAY! TAKE THIS MAN, YOU WONT REGRET IT ;)", + "pos": 0.294, + "neu": 0.677, + "neg": 0.029, + "_id": { + "$oid": "6711d4d8cd60fca157e5c617" + } + }, + { + "text": "Really into his work and into his students. Does answer emails pretty quick. I enjoyed his class. Easy on the eyes to. Only issue I had was the fact that he makes you buy a subscription for Task Stream.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c618" + } + }, + { + "text": "Really invested in students. Will go out of his way to assist in something if the student seeks out assistance and it is related to something education wise.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c619" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d8cd60fca157e5c61b" + }, + "professor_name": "Eva Velasco-Pe\u00f1a", + "rating": 2.2, + "department": "Spanish department", + "comments": [ + { + "text": "Does a bad job with Span explanations. The book's \ufffd\ufffd. The first 3 classes she wasted everyone's time with 1-1 conversations about something she could've emailed. Always shows up to online class 5mins late. Sometimes arrived with only 30 or even 10mins left of class time, doesn't cancel class and still takes attendance. Wanted to learn Span, didn't.", + "pos": 0.027, + "neu": 0.867, + "neg": 0.106, + "_id": { + "$oid": "6711d4d8cd60fca157e5c61c" + } + }, + { + "text": "We never given feedback on the assignment or tests. I am very frustrated about this because, even though I can see my grade and that I did well, it means nothing to me. pay tuition so that I can learn and not so that I can get a grade. I have emailed the professor and have not received a response.", + "pos": 0.053, + "neu": 0.889, + "neg": 0.058, + "_id": { + "$oid": "6711d4d8cd60fca157e5c61d" + } + }, + { + "text": "If you can avoid taking this class do you teach yourself, she just assigns homework, you read the textbook and you show up and just read the homework. Extremely Passive aggressive and sometimes just straight up aggressive. I wish I could go back and take anyone else. shes not a bad person just an obnoxious professor.", + "pos": 0.144, + "neu": 0.725, + "neg": 0.131, + "_id": { + "$oid": "6711d4d8cd60fca157e5c61e" + } + }, + { + "text": "She is nice but is very strict. She gives HW every class and walks around the room to check it the next day. Quizzes are online but she makes you takes them in class and makes everyone turn the chairs around. Read straight from textbook. Spoke entirely in Spanish. She also post online HW a day before it's due. Thankful for CUNY CR policy.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c61f" + } + }, + { + "text": "She is a good professor. The class, Span 22600 is a difficult class, no matter who you take it with. She cares about her students' and explains her expectations thoroughly. Grades will likely be low in her class, but apparently that is normal. As a professor, she grew on me as the semester went along. She even took us on a trip to the MET!", + "pos": 0.058, + "neu": 0.875, + "neg": 0.067, + "_id": { + "$oid": "6711d4d8cd60fca157e5c620" + } + }, + { + "text": "If you value your time or have other work load heavy courses , I wouldn't take her for Spanish 123 . Down to earth but very strict and teaches her lectures in Spanish and has high expectations with your performance", + "pos": 0.042, + "neu": 0.958, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c621" + } + }, + { + "text": "1) Show up to class ON-TIME (ADVISE ARRIVING EARLY TO CLASS TO AVOID BEING LATE) 2) DO YOUR HW BEFORE CLASS (HW isn't that bad, and is very helpful) 3)STUDY STUDY STUDY (conjugations & using them properly will be important) 4)Participate if possible and you'll be fine! SHE AN AMAZING SWEETHEART! HIGHLY RECOMMEND HER!", + "pos": 0.331, + "neu": 0.629, + "neg": 0.04, + "_id": { + "$oid": "6711d4d8cd60fca157e5c622" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d8cd60fca157e5c624" + }, + "professor_name": "Trevor Jockims", + "rating": 4.5, + "department": "World Humanities department", + "comments": [ + { + "text": "Professor Jockims is that best!! hes very nice..verrrry laid back and his test are straightforward. Reading is needed bc on his test he use specific quotes from the text..take notes n you will get an A easy", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c625" + } + }, + { + "text": "Majority of the books assigned are interesting and I enjoyed the discussions in class. Definitely knows what he's talking about. Exams are focused on the main ideas emphasized in class. I would recommend reading the books despite the easy access of sparknotes", + "pos": 0.264, + "neu": 0.69, + "neg": 0.046, + "_id": { + "$oid": "6711d4d8cd60fca157e5c626" + } + }, + { + "text": "great teacher. he's very laid back, just go to class and read or sparknote it cause there's always class discussion. overall cool guy. Oh and has a great beard =]", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c627" + } + }, + { + "text": "he is a really good professor..never read the book i just used sparknotes and got a really good grade. he does take attendance so just go.. he is REALLY REALLY laid back doesnt really assign hw just a short essay once in a while and he looks just like jesus with his beard =)definite plus", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c628" + } + }, + { + "text": "hes pretty easy, he has this beard that makes him look like jesus, so its kind of comforting lol. participate & u will do fine. I didnt buy one book. sparknoted it all the way and got an A. hes laid back n cool.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c629" + } + }, + { + "text": "an intelligent and easy-going teacher who is flexible (towards his students)as well", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d4d8cd60fca157e5c62a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d9cd60fca157e5c62c" + }, + "professor_name": "Katie Payne", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "She Was Awesome I Had Her My Freshman Year For My FIQWS Course. I Must Say She Was Phenomenal, I Believe We Had 3 Papers And Weekly Journal Entries Which Were Preety Interesting. In Summary, SHE ROCKSSSS !!!", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c62d" + } + }, + { + "text": "Really hot....classes are intresting...gives a lot of assignment but are really engaging...attend the class...participate and that's it easy grade", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c62e" + } + }, + { + "text": "She is AWESOME!", + "pos": 0.719, + "neu": 0.281, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c62f" + } + }, + { + "text": "SHE DOES ROCK! SHE'S AWESOME, SWEET, KIND, GENEROUS. SHE IS SO CONSIDERATE AND TRIES TO HELP YOU AS MUCH AS SHE CAN! BEST PROFESSOR YOU WILL EVERY HAVE! WORK WASN'T HARD, THERE'S WRITING BUT WHAT DO YOU EXPECT IT IS A WRITING COURSE. I AM NOT THE ONLY ONE WHO FEELS THIS WAY EVERYONE WHO WAS IN HER CLASS WITH ME AGREED. IF YOU FAILED YOU NEVER WENT.", + "pos": 0.246, + "neu": 0.7, + "neg": 0.054, + "_id": { + "$oid": "6711d4d9cd60fca157e5c630" + } + }, + { + "text": "This is the best teacher ever. i agree with you She rocksssss", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c631" + } + }, + { + "text": "SHE ROCKS!!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c632" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4d9cd60fca157e5c634" + }, + "professor_name": "J. Vimo", + "rating": 4.9, + "department": "Political Science department", + "comments": [ + { + "text": "Theories of Immigration -- She's awesome and knows a lot about theory. Just read (gives reading every class) and participate and you'll do well. She has 2 papers and a final.. not bad for a PSC prof! take her!!", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c635" + } + }, + { + "text": "Extremely knowledgeable and well read. She is able to pull real world or hypothetical examples into the discussion to help the class understand the text. She is more than willing to help her students, not to mention she is very attractive. An enormous amount of reading though. Plato, Machiavelli, Sophocles, King, Kant, Rousseau, Marx, Nietzsche etc", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c636" + } + }, + { + "text": "I really really liked her teaching style, she was an adjuct to Professor Disalvo, and with both of them i the subject matter became clear, interesting, and applicable to daily life, i definitly recomend her! (pS. make sure to read everything and participate!!)", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c637" + } + }, + { + "text": "'Theories of Democracy' was a great course. Prof. Vimo assigned great readings and her lectures were clear and extremely well informed.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c638" + } + }, + { + "text": "Very good professor, very organized. Lots of readings make sure you keep up with those if you take her class. I would recommend her highly though.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c639" + } + }, + { + "text": "she is one of the greatest psc professors @ CCNY!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d4d9cd60fca157e5c63a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dacd60fca157e5c63c" + }, + "professor_name": "Reem Aliessa", + "rating": 4.2, + "department": "Music department", + "comments": [ + { + "text": "OMG she's so mean she made fun of my bald head in front of everyone and when I asked her one question she spit out her Sprite all over me ugh. Highly recommended!", + "pos": 0.148, + "neu": 0.78, + "neg": 0.073, + "_id": { + "$oid": "6711d4dacd60fca157e5c63d" + } + }, + { + "text": "I have 3 classmates, Yahya tahsin and robert, who learn about south yemeni voice. i learn too. Shes real good looking. I recommend greatly. She taught me to redeem my intelligence.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d4dacd60fca157e5c63e" + } + }, + { + "text": "Professor Reem is undoubtedly an intellectual professor. She knows how to tech her students effectively and dynamically. I have taken North and South Yemen vocal class with her.Her teaching has been so effective that I came to forget my original vocal. Every time I talk I sound like a person from North and South Yemen. She changed my life.", + "pos": 0.245, + "neu": 0.728, + "neg": 0.027, + "_id": { + "$oid": "6711d4dacd60fca157e5c63f" + } + }, + { + "text": "Professor Aliessa taught me the techniques that I would need to succeed in my chosen field.. a capella miming. Due to the exceptional dedication to her students and her willingness to provide one-on-one instruction after school hours, I was finally able to overcome my fear of silence and large confused crowds. She changed my life. Recommended.", + "pos": 0.112, + "neu": 0.802, + "neg": 0.086, + "_id": { + "$oid": "6711d4dacd60fca157e5c640" + } + }, + { + "text": "When Reem teaches voice, she teaches us to vocalize saying EU!!!!!!!! it helps us learn about the sovereign rights of our vocal chords before it gets infringed on with the junkfood we eat that ruin our singing!", + "pos": 0.061, + "neu": 0.822, + "neg": 0.117, + "_id": { + "$oid": "6711d4dacd60fca157e5c641" + } + }, + { + "text": "When reem tch class, she spk well, i rlly learned lots. I was real nervous, but she teach me victory of brotherhood chorus. I learned to sing that song, and then got a B. Highly recommended", + "pos": 0.108, + "neu": 0.852, + "neg": 0.04, + "_id": { + "$oid": "6711d4dacd60fca157e5c642" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dacd60fca157e5c644" + }, + "professor_name": "Svetlana Bashkova", + "rating": 3.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Does an excellent job showing the class how chemistry is involved within our daily activities such as driving or drinking water out of the tap.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d4dacd60fca157e5c645" + } + }, + { + "text": "An awful lot of work for a one credit course. She is a very tough grader and she is not very reasonable. Makes mistakes and refuses to correct them. Every other chem lab teacher gives decent grades, many people have dropped out of my class because of poor grades.", + "pos": 0.045, + "neu": 0.768, + "neg": 0.186, + "_id": { + "$oid": "6711d4dacd60fca157e5c646" + } + }, + { + "text": "Hard grader for 25% of the total grade. lab report due every week. quiz every lab.", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d4dacd60fca157e5c647" + } + }, + { + "text": "Prof Bashkova is a reasonable and fair professor. If the material seems difficult, it is best to see her during office hours because she will make you understand to the fullest. Recommended to take her.", + "pos": 0.199, + "neu": 0.742, + "neg": 0.06, + "_id": { + "$oid": "6711d4dacd60fca157e5c648" + } + }, + { + "text": "Bashkova was extremely nice, despite first impressions. She was very reasonable with her tests, and if you study and do the homework, there should be no problem doing well in this class.", + "pos": 0.201, + "neu": 0.754, + "neg": 0.045, + "_id": { + "$oid": "6711d4dacd60fca157e5c649" + } + }, + { + "text": "She is a nice lady, but she is confusing. she makes a lot of mistakes, often doesn't clarify things before we need it-- she does it only after we've failed it. then she is uber strict with the answering on the hw (which, to be honest i understand that the rules apply) but they are still pretty tight. just take he in a full semester and not summer.", + "pos": 0.129, + "neu": 0.75, + "neg": 0.122, + "_id": { + "$oid": "6711d4dacd60fca157e5c64a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dacd60fca157e5c64c" + }, + "professor_name": "Rebekah Schiller", + "rating": 2.3, + "department": "Science department", + "comments": [ + { + "text": "The first class the syllabus will make it look overwhelming because the class basically depends on the midterm and final. She eventually lets you do corrections for the midterm for extra points. The final wasn't too hard. Honestly the only thing that sucked was how long the class lecture. Take her class its really not that bad.", + "pos": 0.07, + "neu": 0.843, + "neg": 0.087, + "_id": { + "$oid": "6711d4dacd60fca157e5c64d" + } + }, + { + "text": "Do no take this professor! She is the worse professor from ccny. She's not helpful at all. Her teaching techniques didn't help me learn the material. She goes too quickly in lectures and this will make you fail her tests. Your hard work doesn't count. You have to pass her tests or else she'll fail you or give you a bad grade.", + "pos": 0.0, + "neu": 0.71, + "neg": 0.29, + "_id": { + "$oid": "6711d4dacd60fca157e5c64e" + } + }, + { + "text": "This professor is not available outside class. She didn't offered her office hours nor appointments. She doesn't give you any feedback nor helps you in any type of way. It's like she doesn't care about her students. She doesn't take in consideration your hard work. She doesn't give you the grade you deserve.", + "pos": 0.043, + "neu": 0.849, + "neg": 0.108, + "_id": { + "$oid": "6711d4dacd60fca157e5c64f" + } + }, + { + "text": "I enjoyed taking this class, she made sure we had an in-depth understanding about the subjects we spoke about. The midterm and final are fair as they're based on everything she reviews during class.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d4dacd60fca157e5c650" + } + }, + { + "text": "She isn't a bad professor. You have to go to class every meeting otherwise you won't pass because there isn't a lot of homework. The tests are based on the classwork. She also puts a lot of weight on the midterm and final. But overall, she's a ver sweet and timid lady", + "pos": 0.103, + "neu": 0.853, + "neg": 0.044, + "_id": { + "$oid": "6711d4dacd60fca157e5c651" + } + }, + { + "text": "Really tough grader and loved to make difficult quizzes I regret taking her class.", + "pos": 0.186, + "neu": 0.476, + "neg": 0.338, + "_id": { + "$oid": "6711d4dacd60fca157e5c652" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dbcd60fca157e5c654" + }, + "professor_name": "Ivo Vigan", + "rating": 3.9, + "department": "Computer Science department", + "comments": [ + { + "text": "The material were hard but he really is helpful. You can ask him any type of question and he will help you as long as it takes. Sad that he is just a lab professor he is a lot better than some professors when it comes to explaining things..", + "pos": 0.189, + "neu": 0.723, + "neg": 0.088, + "_id": { + "$oid": "6711d4dbcd60fca157e5c655" + } + }, + { + "text": "Very helpful lab professor.", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d4dbcd60fca157e5c656" + } + }, + { + "text": "He was my lab professor and generally just watched the class unless they had questions. If there were no questions, everyone either left or worked on their homework/project. Pretty laid back guy. Never took attendance so as long as you showed up if there was a quiz/test, you'll be fine never going to lab class.", + "pos": 0.084, + "neu": 0.878, + "neg": 0.037, + "_id": { + "$oid": "6711d4dbcd60fca157e5c657" + } + }, + { + "text": "Agree with the 2 comments below. Ivo is a grad student so he tries his best. well each class he writes notes on the board, pages. they are from the textbook, but he just wrote them in his own ways. the textbook sucks so don't make sure u attend the class and get his notes first. do the hw, usually 3-6 problems. make sure u give 100% for this class", + "pos": 0.109, + "neu": 0.773, + "neg": 0.118, + "_id": { + "$oid": "6711d4dbcd60fca157e5c658" + } + }, + { + "text": "Cool guy, knows what he's talking about, material is pretty hard", + "pos": 0.369, + "neu": 0.537, + "neg": 0.094, + "_id": { + "$oid": "6711d4dbcd60fca157e5c659" + } + }, + { + "text": "Despite the hard material, he did a good job teaching the class as a first time professor. He gives two pop quizzes that only count if you do good, a midterm, and a final and all of them are open note. The class average was mainly in the 60s but he curves.", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d4dbcd60fca157e5c65a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dbcd60fca157e5c65c" + }, + "professor_name": "Joe Heissan", + "rating": 1.9, + "department": "Theater department", + "comments": [ + { + "text": "Not to be rude, but hes a bad professor. Unclear directions, unorganized lectures, and contradicts himself all the time. He emphasizes unimportant information and barely touches on the stuff you are tested on. Boring, uninteresting lectures and expects you to read large plays within two days.", + "pos": 0.071, + "neu": 0.656, + "neg": 0.273, + "_id": { + "$oid": "6711d4dbcd60fca157e5c65d" + } + }, + { + "text": "Requires to much from students when presenting what he asks for. For example when students are given work and explains it to the best of there abilities he still finds a way to find flaws in there work", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d4dbcd60fca157e5c65e" + } + }, + { + "text": "Joe Heissan is arguably one of the worst teachers I've ever had. Extremely boring. And hardly ever lets the students be correct, he'll literally take your answer, say you're not right, put it in his own words, and say he's right. If you can avoid him, do so.", + "pos": 0.0, + "neu": 0.802, + "neg": 0.198, + "_id": { + "$oid": "6711d4dbcd60fca157e5c65f" + } + }, + { + "text": "Quizzes go by the readings assigned for hw....attendance is a must....class is not soo interesting unless you really enjoy theatre and history", + "pos": 0.136, + "neu": 0.777, + "neg": 0.088, + "_id": { + "$oid": "6711d4dbcd60fca157e5c660" + } + }, + { + "text": "Attendance mandatory. Quizzes based on HW. Nice enough guy. Encourages you to participate. Not an easy grader. Got a B.", + "pos": 0.276, + "neu": 0.63, + "neg": 0.095, + "_id": { + "$oid": "6711d4dbcd60fca157e5c661" + } + }, + { + "text": "worst teacher ever", + "pos": 0.0, + "neu": 0.328, + "neg": 0.672, + "_id": { + "$oid": "6711d4dbcd60fca157e5c662" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dbcd60fca157e5c664" + }, + "professor_name": "Callum MacRae", + "rating": 4.8, + "department": "Philosophy department", + "comments": [ + { + "text": "It was really easy to do well in this class. He checked in with you to make sure that you understood the concepts in the class and made sure that you had everything you needed to do write a good final paper and answered questions etc. However, this class was boooring. There is a price for this \"easy A\"", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d4dbcd60fca157e5c665" + } + }, + { + "text": "Solid choice for students who don't enjoy writting pages and pages. He is very organized, and you will definitely learn something with him. He gives lots of homeworks but its great since you won't need studying for the exams if you do them. 1 midterm and 1 final. He also review problems with you. The class is not an easy A but it's not hard to get", + "pos": 0.13, + "neu": 0.762, + "neg": 0.108, + "_id": { + "$oid": "6711d4dbcd60fca157e5c666" + } + }, + { + "text": "Amazing lectures, good sense of humor, and very engaging. Makes grading criteria clear so you can plan to get an A+. Provides amazing feedback to tell you how to get an A on all assignments. Accessible outside of class too.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d4dbcd60fca157e5c667" + } + }, + { + "text": "A real gem of a professor. Clear and comprehensive lectures designed to reinforce the reading material (which is assigned in very digestible chunks). Always accessible outside of class during office hours or via email for individual instruction on any particular topic. Very fair grader as well, who always has his students best interests at heart.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d4dbcd60fca157e5c668" + } + }, + { + "text": "One of my favorite professors. Very understanding. Has the reading material, syllabus, and other assignments all on a website, which just makes everything easy to follow and very organized. His lectures are interesting and he encourages class debates which are usually the highlight of the class. Honestly, no complaints. Also, nice British accent.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d4dbcd60fca157e5c669" + } + }, + { + "text": "he's a sweetheart. so nice and laidback. even though philosophy can sometimes be confusing he makes it as interesting as possible with class debates and vivid explanations. he's funny too. glad I took his class.", + "pos": 0.379, + "neu": 0.581, + "neg": 0.039, + "_id": { + "$oid": "6711d4dbcd60fca157e5c66a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dccd60fca157e5c66c" + }, + "professor_name": "Hazel Hankin", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "Very contradicting between syllabus and lecture. A lot of work in lab outside of class hours (If you work full-time, this class isnt for you). 3 hour class, she will talk for 2. Expect to pay around $450 for supplies, especially film rolls and photo paper. The work is fun once she not around.", + "pos": 0.057, + "neu": 0.875, + "neg": 0.068, + "_id": { + "$oid": "6711d4dccd60fca157e5c66d" + } + }, + { + "text": "She is knowledgeable about the subject, but she tends to lecture more on photography rather than show. She can be a bit boring. However, she gives great feedback for improvement and she's nice. As long as you do all the assignments (HW/Projects) and apply what you learn during class and lab hours you'll get an A. Photography is a lot of work!", + "pos": 0.183, + "neu": 0.778, + "neg": 0.04, + "_id": { + "$oid": "6711d4dccd60fca157e5c66e" + } + }, + { + "text": "Made up the class as she went along. Very disorganized, gave alot of Homework and critisized everyones work. Tough grader on exams made up last minute and although you would give a correct answer, she wanted you to word it the way she would. Very annoying and particular, would talk talk talk the whole 3 hrs. Avoid! Unless u breath photography.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d4dccd60fca157e5c66f" + } + }, + { + "text": "Very nice person, but if you don't do your work, don't expect to get an A in her class. She don't give away A's...", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d4dccd60fca157e5c670" + } + }, + { + "text": "Too much work! Very knowledgeable! Nice!", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d4dccd60fca157e5c671" + } + }, + { + "text": "really good teacher.. she's very interested in you really mastering the material. however the class is a little hard despite it being art, and you'll spend so much money on supplies, also the class requires alot of work.", + "pos": 0.146, + "neu": 0.828, + "neg": 0.026, + "_id": { + "$oid": "6711d4dccd60fca157e5c672" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dccd60fca157e5c674" + }, + "professor_name": "Elaine Sexton", + "rating": 1.7, + "department": "English department", + "comments": [ + { + "text": "It's pretty much exactly how everyone describes her. She makes you read a poem/story and then makes you create something exactly like it. She limits your creativity and doesn't listen to any feedback from students. shes pretty closed minded when it comes to writing about specific subjects. I honestly learned nothing and it wasn't even enjoyable.", + "pos": 0.244, + "neu": 0.721, + "neg": 0.035, + "_id": { + "$oid": "6711d4dccd60fca157e5c675" + } + }, + { + "text": "At first, she seems like a good professor with her demeanor but she isn't all that cracked up to be. She limits your creative writing by mimicking assignments from other writers work. Its not fun at all. Her feedback is not strong either(you won't even understand what she says. SO nit-picky with grading. gave me a B- on the portfolio. do not take.", + "pos": 0.104, + "neu": 0.798, + "neg": 0.098, + "_id": { + "$oid": "6711d4dccd60fca157e5c676" + } + }, + { + "text": "Creative writing class isn't very creative. She makes you replicate other writer's work. New drafts or assignments every session with little/no feedback on previous drafts. Also unless you're that student that speaks as much as the professor, she'll insist you're not participating in class yet she still didn't remember students' names.", + "pos": 0.053, + "neu": 0.899, + "neg": 0.048, + "_id": { + "$oid": "6711d4dccd60fca157e5c677" + } + }, + { + "text": "-Easy A class but certainly not with her. -She gave me 7 absences when I only missed class 3 times. While taking attendance, shell look me in the eye and mark me present while also seeing my hand in the air- yet still mark me absent. Then said she cant do anything about it..... -Very rude and not clear -Participations crucial", + "pos": 0.126, + "neu": 0.74, + "neg": 0.135, + "_id": { + "$oid": "6711d4dccd60fca157e5c678" + } + }, + { + "text": "Elaine gives you someone's work and makes you write exactly in that style. She does not fully explain assignments. She tells you what she thinks you mean about your work. There are journals that are kept of what you write about other classmates work that she grades. There is a final portfolio of 5 pieces of work that you wrote during the semester.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4dccd60fca157e5c679" + } + }, + { + "text": "Professor Elaine isn't the best professor to be taking a Creative Writing course. She hands out readings by other authors and wants her students to base their writing precisely on their work. It is not really creative at all. I felt like my creativity and imagination was limited when applying it on paper. I would suggest NOT taking her class.", + "pos": 0.114, + "neu": 0.773, + "neg": 0.113, + "_id": { + "$oid": "6711d4dccd60fca157e5c67a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ddcd60fca157e5c67c" + }, + "professor_name": "Reade Bryan", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "He gave the class work to do every week, but they were pretty easy and simple to do. He is really into critiques and encourages those who don't talk much to talk during critiques. One thing that I found difficult was the final group project. It was interesting to do but it cost too much. However he really took care of his students and I loved it!!", + "pos": 0.293, + "neu": 0.671, + "neg": 0.036, + "_id": { + "$oid": "6711d4ddcd60fca157e5c67d" + } + }, + { + "text": "the sweetest professor ever! we have around 3 projects, the materials are pretty cheap. super helpful and kind. take him. also, he is a famous artist btw", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c67e" + } + }, + { + "text": "This professor is really cool. He helps you with anything you need. Be prepared to work during workshop hours because you wont have enough time to finish projects in class. He really cares about how much effort you put in. We worked on a 3D hand made of wires and a 3D cube.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c67f" + } + }, + { + "text": "He is a very chill professor and gives really good feedback. He knows what he's doing so def take his advice. He is also super hot and young. Great artist too.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c680" + } + }, + { + "text": "Very laid back and straight forward prof. He knows what he's talking about and he's an artist too. Young and cute too!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c681" + } + }, + { + "text": "he's very easy , as you long as you do what you gotta do .", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c682" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ddcd60fca157e5c684" + }, + "professor_name": "Marjorine Henriquez-Castillo", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "She's great! Approachable and caring towards her students and their situation. The class was entertaining, her grading was based on the two papers we did, the weekly discussion questions, the weekly labs, and the tests. She gave us the opportunity for extra credit and an extra 5 points if we did the presentation for one of the papers.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c685" + } + }, + { + "text": "Fav prof ever! Approachable and caring. If you do the readings and assignments, you'll do very well. Grades participation, short weekly reading reactions (a few sentences due Sunday nights), 2 papers (2-3 pgs each), small group project, and a take home final. Ample time given for all assignments. Her class has changed my perspective on education!", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c686" + } + }, + { + "text": "A real gem of a professor and person. She truly wants to see all of her students succeed. She is warm, sympthetic and easy to approach! She makes it so easy to feel comfortable in her classroom. Weekly readings due on Sunday, one take home midterm, final, one paper and and a presentation with plenty of time to complete all of these assignments.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c687" + } + }, + { + "text": "Shes amazing. Only thing I had against her was the group projects, I tend to detest them. Otherwise, everything is given to you in the beginning of the semester. Including dates, shes really nice but dont sleep on her especially with her papers!", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c688" + } + }, + { + "text": "She's a newer teacher who is working on getting her Ph.D. Her class is pretty easy, and straightforward, you just have to do the work, and it's not hard work at all. This class was designed for transfer students, so it's either a secure A for most CCNY students or just a taste of what CCNY academics look like.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c689" + } + }, + { + "text": "Professor Castillo is one of the best professors at CCNY! This course was BY FAR my favorite course. There are no exams. There are a few papers that she assigns but thats it. Class participation is ideal as she likes to engage in discussions. Overall its a course that challenges you to change your perspective on what education means to you.", + "pos": 0.242, + "neu": 0.736, + "neg": 0.022, + "_id": { + "$oid": "6711d4ddcd60fca157e5c68a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ddcd60fca157e5c68c" + }, + "professor_name": "Halla Rezgul", + "rating": 4, + "department": "Earth Science department", + "comments": [ + { + "text": "I had Halla for my EAS104 lab section. If you take the time and put effort into your labs, you'll be fine! Don't write too much though. Keep your work simple and straight to the point. She isn't the best at explaining things, but the questions are easy to understand.", + "pos": 0.127, + "neu": 0.834, + "neg": 0.04, + "_id": { + "$oid": "6711d4ddcd60fca157e5c68d" + } + }, + { + "text": "She's okay, she gives confusing instructions but she gives good grades, but does grade the labs late. She was understanding as she did give extensions. Not the worse, you'll pass if you do the work. Some may be found online.", + "pos": 0.187, + "neu": 0.781, + "neg": 0.031, + "_id": { + "$oid": "6711d4ddcd60fca157e5c68e" + } + }, + { + "text": "Just show up on time, do your work for at least 1.5 hrs and you can finish the rest at home (unless the assignment requires class materials). She's very easy-going and you can easily get 10/10 on the lab reports as long as you complete the questions. If it's a more difficult lab, she'll tell you some/all of the answers (stick around till the end!).", + "pos": 0.035, + "neu": 0.92, + "neg": 0.045, + "_id": { + "$oid": "6711d4ddcd60fca157e5c68f" + } + }, + { + "text": "Professor Halla is amazing, smart and hard working", + "pos": 0.504, + "neu": 0.388, + "neg": 0.109, + "_id": { + "$oid": "6711d4ddcd60fca157e5c690" + } + }, + { + "text": "She is a good professor and her instructions are very clear!", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c691" + } + }, + { + "text": "He is okay as a professor but he needs to slow down a lot and make sure that the students are understanding the subject.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d4ddcd60fca157e5c692" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4decd60fca157e5c694" + }, + "professor_name": "Paula Horii", + "rating": 3.9, + "department": "Communication department", + "comments": [ + { + "text": "Horii is one of the most easygoing professors that you'll ever encounter in the field. She lays out the work you'll have to do, and as long as you do it, it's an easy A. She's really nice, not demanding, conversational (not a lecture type), and so not boring! I would recommend her for MCA 10100 to anyone.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c695" + } + }, + { + "text": "101-Very nice person and knowledgeable in the field. Students are always kept aware of what is expected for each class. Follows the syllabus. Two quizzes and a final. As long as you attend class and pay attention, the exams are an easy A. Time goes by relatively fast in this class. Material covered is from the textbook but has interesting content.", + "pos": 0.113, + "neu": 0.869, + "neg": 0.018, + "_id": { + "$oid": "6711d4decd60fca157e5c696" + } + }, + { + "text": "Horii is very laid back. Her class is pretty easy going and she let out early from time to time. There were about two papers a month which culminated into a portfolio (good for interviews). My only gripe is that she didn't provide much feedback. She would simply write your grade and occasionally reference you to a section in the textbook.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c697" + } + }, + { + "text": "Prof Horii is the easiest professor ever! she is very nice but boring. as long as you come to class and do assignment, which is very little, you will get an \"A\" but if you wanna learn something, don't take her, because you'll find that you already learned everything from intro class.", + "pos": 0.075, + "neu": 0.866, + "neg": 0.059, + "_id": { + "$oid": "6711d4decd60fca157e5c698" + } + }, + { + "text": "I think the person below me is probably the type that finds every class boring. Having said that,I think Professor Horii is a great Professor!!She's nice and sweet and knows what she talks about. She's clear with what she wants and is easy to understand. You will learn a lot about the media if you take her. Overall she's an A++ :)", + "pos": 0.249, + "neu": 0.721, + "neg": 0.03, + "_id": { + "$oid": "6711d4decd60fca157e5c699" + } + }, + { + "text": "She's an extremely nice woman but is soooooo boring and rambles on and on and on!!!!", + "pos": 0.101, + "neu": 0.694, + "neg": 0.204, + "_id": { + "$oid": "6711d4decd60fca157e5c69a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4decd60fca157e5c69c" + }, + "professor_name": "Mark Lekarew", + "rating": 2.9, + "department": "Philosophy department", + "comments": [ + { + "text": "If you work in his class, you will receive A. Participation is important. Not hard grader.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c69d" + } + }, + { + "text": "Took his class in brooklyn college. 2 papers and 2 exams only. Very tough exams and very tough papers. You really have to be interested in philosophy, arguing, epistemology, existence of God, etc. Don't take this class for a easy A. It requires lots of your own ideas and arguments.", + "pos": 0.128, + "neu": 0.717, + "neg": 0.155, + "_id": { + "$oid": "6711d4decd60fca157e5c69e" + } + }, + { + "text": "Extremely boring, I fell asleep every class. Atleast one reading due before EVERY class, and he will force participation and to have the text in front of you (Buy/Rent the older version it has all but 2 readings on his syllabus). This isn't a hard class but it wasn't a class I looked forward to going to either.", + "pos": 0.024, + "neu": 0.945, + "neg": 0.03, + "_id": { + "$oid": "6711d4decd60fca157e5c69f" + } + }, + { + "text": "Less discussion and mostly long lectures. Loves to hear himself talk and you will never be right. No one could really understand where he was going and exactly what questions he was asking. Just google the readings. You won't have to work hard for the A but he's so boring. Plus your marked absent for going to the bathroom. Don't waste your time.", + "pos": 0.097, + "neu": 0.829, + "neg": 0.074, + "_id": { + "$oid": "6711d4decd60fca157e5c6a0" + } + }, + { + "text": "This professor is eccentric with what he teaches and encourages students to participate. However, he can be condescending once you participate, and his lectures are sometimes boring so bring your laptop. Your grade is based on attendance, one paper, one midterm, one final exam. Not the greatest professor but not the worst either.", + "pos": 0.108, + "neu": 0.827, + "neg": 0.065, + "_id": { + "$oid": "6711d4decd60fca157e5c6a1" + } + }, + { + "text": "Make sure you go to class so that when you do take the test you can answer the questions. The exams are straight foreword. Just put some effort into your papers and you'll be okay. It is just a very slow lecture especially when we don't know what's going on in the reading and he is expecting us to participate.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c6a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4decd60fca157e5c6a4" + }, + "professor_name": "Omar Hammad", + "rating": 5, + "department": "Engineering department", + "comments": [ + { + "text": "Great professor and really helps his students understand the material. He is very knowledgable in the field and gives a lot of great advice. Very helpful too with understanding the career of an environmental engineer. Overall great professor with easy work definitely recommend his class!", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c6a5" + } + }, + { + "text": "His class is too hard. But good class. He teaches stuff from his field and he knows stuff. He helps students with their resume too.", + "pos": 0.238, + "neu": 0.722, + "neg": 0.039, + "_id": { + "$oid": "6711d4decd60fca157e5c6a6" + } + }, + { + "text": "Professor Omar is an amazing professor and one of the best. He is understandable, helpful, respectful, and caring. He also works in the field and has knowledge about the environmental engineering field. I recommend taking him, and I think CCNY needs to hire professors such as professor Omar.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c6a7" + } + }, + { + "text": "Even though his class was very challenging, it was worth it", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c6a8" + } + }, + { + "text": "Tough class, but good lecturer. Showed us how resumes could look like. That is useful as well.", + "pos": 0.507, + "neu": 0.447, + "neg": 0.047, + "_id": { + "$oid": "6711d4decd60fca157e5c6a9" + } + }, + { + "text": "The professor works in the field and so he has an understanding of environmental engineering. I really liked that. He also talked to us about real world stuff and his work which I thought was good to give us an idea of what is after school.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d4decd60fca157e5c6aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dfcd60fca157e5c6ac" + }, + "professor_name": "Rachele Rameau", + "rating": 2, + "department": "Biology department", + "comments": [ + { + "text": "She runs a horrible lab. It was constantly running over time by at least 30-40 minutes. Her grading is extremely inconsistent (I would gain/lose 10 points on an assignment based on her mood), and she did not respond to emails.", + "pos": 0.0, + "neu": 0.918, + "neg": 0.082, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6ad" + } + }, + { + "text": "I had her for lab class. She always explained things but her grading did not match what she would tell you in class. Her grading is not consistent and she would decrease my grade based on the smallest things. If you do not do it completely perfect and her way, then good luck..", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6ae" + } + }, + { + "text": "She never explains the material clearly, extremely slow when responding to emails, and is inconsistent with grading lab assignments. She made things way more stressful than they had to be.", + "pos": 0.079, + "neu": 0.816, + "neg": 0.105, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6af" + } + }, + { + "text": "This professor takes forever to reply to emails, usually replies the day before the assignment is due or does not reply at all. Her grading is also so inconsistent. She has a heavy accent which makes it a bit hard to understand.", + "pos": 0.0, + "neu": 0.967, + "neg": 0.033, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b0" + } + }, + { + "text": "She is hard to understand, doesn't give good feedback, and takes forever to answer emails. She gave the lowest grades out of all the lab professors. Would have gotten an A, but lab brought my grade down to an A-.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b1" + } + }, + { + "text": "I took Professor Rameau for Bio Lab in Brooklyn College. She is very caring and tries to make sure you're participating and understand. Her quizzes are challenging but she does give out a review sheet. One of the best bio lab Professors in BC.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b4" + }, + "professor_name": "Marcie Revens", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "Class can often be boring or long, $$$ class. Weekly homework readings and practice pictures, a lot to keep up with. But if you have a good class and you get along in that environment it is exciting to look at photos others have worked on and to share your own and discuss. Very understanding prof, and will help you out whenever you need it.", + "pos": 0.19, + "neu": 0.788, + "neg": 0.022, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b5" + } + }, + { + "text": "Prof Revens was a very pleasant teacher to have as a beginner in photography. I took this class knowing not much about cameras but left feeling like I have the potential to create a good portfolio outside of class. Revens provides a safe environment for her students to help each other get better while being supportive and understanding.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b6" + } + }, + { + "text": "If you are passionate about film photo she will match you. Great teacher and pretty flexible as long as you're vocal. Lectures are pretty long & stoic but in person very personable. Finish your film rolls when you can!! Time management is all on you. Not a brutal grader for late work as long as you provide all she asked for. Most fun when critiquin", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b7" + } + }, + { + "text": "Had her for PVP. A professional right here. She gives good feedback on your work and really tries to help you improve your skills. Very chill professor but just need to get your hws done. A very friendly and nice professor, don't be afraid of any problems or concerns if you have, just ask her. Make sure to show up in class and go out to shoot.", + "pos": 0.212, + "neu": 0.708, + "neg": 0.08, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b8" + } + }, + { + "text": "Prof. Revens isn't so bad and if you enjoy photography, then you'd definitely like the class. She reads from a powerpoint slide and but can be kinda boring. Her assignments aren't difficult but can be a drag when she keeps adding on more to do. I'd take her for just the easiness of the class. She's not strict or anything.", + "pos": 0.198, + "neu": 0.733, + "neg": 0.069, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6b9" + } + }, + { + "text": "Her class is not difficult and she gives great feedback if she sees that you actually care about the work youre making. Ask her questions, shell help you a ton. Marcie teachers photo 1 and studio lighting and really cares about her practice.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d4dfcd60fca157e5c6ba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e0cd60fca157e5c6bc" + }, + "professor_name": "Jason Lobell", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Professor Lobell is a great professor. He seems to actually care about other peoples opinions and gives great feedback for writing and our assignments. He's easy to communicate with and easily accessible outside of class via email or setting up time in his office. Overall 5/5 would recommend and would definitely take his class again.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6bd" + } + }, + { + "text": "Professor Lobell is one of the most caring professors I've ever encountered. He is nice and gives clear feedback, a clear grading criteria and is really flexible. He's really accessible outside of class and really comprehensive, you just have to communicate with him.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6be" + } + }, + { + "text": "Amazing teacher. He was super understanding and kind to me when it was needed and overall felt his genuineness when he would talk. An easy A+ if you do all his readings and work which was easy, especially since you could've written in any style you wanted and graded based on your effort.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6bf" + } + }, + { + "text": "Professor Lobell is really great. He is very clear with his requirements and expectations.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c0" + } + }, + { + "text": "He's a great professor and genuinely wants you to succeed in his class. Although he gives out a lot of assignments, they are fairly easy and shouldn't take that long to do in my opinion. You should only be focusing on the 4 major essay assignments which he gives you a fair amount of time to do. You can always communicate with him if you need help.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c1" + } + }, + { + "text": "Caring, super kind, and easy to contact outside of class. Be prepared to do a lot of writing. You should get at least a B if you do the daily assignments but they are easy. He is very welcoming towards students of different backgrounds and emphasizes that he grades based on effort and not on proper use of English. I really recommend his class.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c4" + }, + "professor_name": "Rafael Munia", + "rating": 3.5, + "department": "Anthropology department", + "comments": [ + { + "text": "The best class I have ever taken in ccny. The readings are a bit tough but he goes over it every class to make sure you understand.The lectures are a bit boring but the professor is amzing and is clealry knowledgeable in the topics. Class itself was lightwork, only 2 essays(midterm/final) and an online test(final pt.2).Definitly recomend taking him", + "pos": 0.086, + "neu": 0.849, + "neg": 0.065, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c5" + } + }, + { + "text": "Do not take his online course. He seemed like a nice person, but he is bad at teaching. It seemed like he didn't enjoy teaching or put in any effort compared to other online classes I have taken. Also, his English was sloppy, so had a hard time understanding his long hours of talking.", + "pos": 0.106, + "neu": 0.737, + "neg": 0.157, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c6" + } + }, + { + "text": "it was 2 tests and a final paper, the tests can be very hard only because there is a lot to read, even in the final paper. Overall its a decent class", + "pos": 0.0, + "neu": 0.948, + "neg": 0.052, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c7" + } + }, + { + "text": "ANTH201- turned out to be one of my favorite classes. Classes are content-heavy & to do well it's imperative that you pay attention & take good notes. Assigns lengthy, challenging readings but covers everything in the readings thoroughly during lectures. He is very knowledgeable and everything discussed is super interesting. Highly recommend.", + "pos": 0.3, + "neu": 0.681, + "neg": 0.019, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c8" + } + }, + { + "text": "If you show up to class and take notes actively you'll be fine. He really explains the texts and basically gives you answers to his exams in them. Go to the class you pay for and you'll be fine.", + "pos": 0.139, + "neu": 0.827, + "neg": 0.033, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6c9" + } + }, + { + "text": "Class can be boring. 2 two page essays,Midterm and Final are only short answers based on the class readings. No power points. You need to take your own notes he does not write much on the board. Each reading which is 40 pages and more sometimes three readings a night. Takes long to grade. If you care about your GPA do not take this class.", + "pos": 0.046, + "neu": 0.89, + "neg": 0.065, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e0cd60fca157e5c6cc" + }, + "professor_name": "Nikolas Drosos", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "Nikolas is a great professor! His lectures were really engaging and clear to follow. He also has a great sense of humor which makes the lectures even better. He provided lots of clarification for assignments and exams and allowed us to do take-home exams for online exams which was amazing as a commuter. He also provided lots of study resources.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6cd" + } + }, + { + "text": "Be on time & use textbook. However, I would recommend another teacher because he doesn't like to answer questions, comes off as rude at times and is more involved with his opinions rather than your own. Communications skills with students needs to improve. Teachers should never make comments about their students life. That's crossing a boundary.", + "pos": 0.086, + "neu": 0.832, + "neg": 0.082, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6ce" + } + }, + { + "text": "He is great!!!! He knows what he is talking about and makes the class so interesting. I took it and it was a Friday morning class, 3 hours. I never fell asleep. He really inspired me to pursue a Art History Major. BE ON TIME for the class! -- if you have a chance, the his class (even though he said he will leave NY for a yr starting next Fall).", + "pos": 0.175, + "neu": 0.81, + "neg": 0.015, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6cf" + } + }, + { + "text": "You will absolutely pass this class by coming to class everytime, and doing the work. There is not much to be done but three papers which is easy work. The midterm and finals r easy, you just need to learn how to analyze art and memorize art descriptions. I slept through his whole class but still get A's in his exams. Take his class no regrets!", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6d0" + } + }, + { + "text": "The class is very boring but even he admits that introductory Art classes are highly difficult to make interesting. You can sleep through the class and still do well like I did as long as you have analytical skills and can write halfway decently. He only gives a final that is not heavily weighed and a handful of papers.", + "pos": 0.173, + "neu": 0.749, + "neg": 0.078, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6d1" + } + }, + { + "text": "He knows how to teach art. You can tell he's very passionate about it, so the class isn't boring. Take his class, you'll love it!", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d4e0cd60fca157e5c6d2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e1cd60fca157e5c6d4" + }, + "professor_name": "Emi Kikuchi", + "rating": 4.8, + "department": "Japanese department", + "comments": [ + { + "text": "Kikuchi Sensei is incredibly kind and caring towards her students. She will do everything she can to make sure that you succeed in this course. She provides plenty of feedback on every single assignment, which I really appreciated! JAP226 is tough, but with her guidance, you are sure to succeed!", + "pos": 0.299, + "neu": 0.681, + "neg": 0.02, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6d5" + } + }, + { + "text": "Prof. Emi Kikuchi is the best Jap instructor you will find in the City College. You will learn lot from her. Although she does give lots of homework, journal and quiz, those homework and quiz will help you in the learning Japanese. There is also a group project at the end of term. Overall, she is a great professor and you will sure learn a lot.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6d6" + } + }, + { + "text": "Professor was very nice and humble. The workbook is your homework. Quiz every class or two. Powerpoint is helpful and she gives handout and review in blackboard. Attendance every day.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6d7" + } + }, + { + "text": "Hai! Got a b- because I half-assed the final to apply for the credit/no credit policy during covid-19 time period. Very caring. Lots of work so be prepared. Lenient too.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6d8" + } + }, + { + "text": "Honestly the Cuny curriculum for Japanese is poor. If you want to learn Japanese expect to visit Kikuchi sensei A LOT. Now fortunately, Kikuchi Sensei is an absolute sweet heart with incredible patience and humor! She has a lot of extracurricular things to do outside of class. GO TO THEM. You will meet Japanese people and its highly motivational!", + "pos": 0.205, + "neu": 0.751, + "neg": 0.044, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6d9" + } + }, + { + "text": "Kikuchi Sensei gives a lot of daily quizzes and she expects you to do a lot of quizzes. There's a diary that you need to write for class. She made learning Japanese fun, but, there's a clear usage of power points. She gives so many handouts that you don't even need the book. It's better this way anyways.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6da" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e1cd60fca157e5c6dc" + }, + "professor_name": "Yousef, Abdelmalek", + "rating": 3.7, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He is great professor, very helpful, knows what he is teaching pretty well and will help u understand. U WILL SURELY LOVE OPNET with him. Note the class get filled quick", + "pos": 0.497, + "neu": 0.503, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6dd" + } + }, + { + "text": "Great Professor !! You can have fun in the class. knows his stuff.. easy grader.. A is guaranteed if u put some effort in class..", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6de" + } + }, + { + "text": "He is funny, challenging, he knows what he is talking about and makes sure at all time you understand the experiment very well. I suggest you to find the prelab before you come to his lab :)", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6df" + } + }, + { + "text": "Abdelmalk is the best of the best professor, I ever met!!Very helpful. He is direct, precise and to the point. You have to practice all his labs Very helpful, I Got an A", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6e0" + } + }, + { + "text": "Useless...", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d4e1cd60fca157e5c6e1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e2cd60fca157e5c6e3" + }, + "professor_name": "Jenny Schuetz", + "rating": 3.3, + "department": "Economics department", + "comments": [ + { + "text": "One of the best professors at the college. She is strict and her assignments are very challenging, but you will get a lot out of the class. Lectures are perfectly clear, class is well organized, and she answers any questions you have. You will only have a problem with her if you don't want to work for your A.", + "pos": 0.201, + "neu": 0.731, + "neg": 0.069, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6e4" + } + }, + { + "text": "She is a good teacher. Her lectures are good, only that you have to take million of notes, but they will help you to study later.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6e5" + } + }, + { + "text": "she's a witch....she is more into convincing you to drop the course. her fav phrase by far is \"drop the course\"....she is def. knowlegabe", + "pos": 0.198, + "neu": 0.663, + "neg": 0.139, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6e6" + } + }, + { + "text": "She's all right, Go to her class everyday, take good notes, pay attention and understand it in the class, then it should be easy for ya!{All math and substitution}", + "pos": 0.182, + "neu": 0.776, + "neg": 0.042, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6e7" + } + }, + { + "text": "The worst of the worst. Very unclear. Spends most of the time trying to convince students to drop her class. Homework is completely worded different than class work. Tests are worded completely different from homework and classwork. If you go to ask her a question during her office hours she will ask you questions back as if you should know.", + "pos": 0.029, + "neu": 0.79, + "neg": 0.181, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e2cd60fca157e5c6ea" + }, + "professor_name": "Lauren Saxton", + "rating": 4.2, + "department": "History department", + "comments": [ + { + "text": "She is a very funny and an extremely knowledgeable professor. She definitely knows her material and knows how to get her students engaged. I honestly wish though that she spent a little more time with each student, and gave clearer feedback because I was not certain about how good my paper was until she graded mine. But def one of the coolest!", + "pos": 0.174, + "neu": 0.805, + "neg": 0.021, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6eb" + } + }, + { + "text": "She was a great professor. She may write all over the place when writing notes on the board but follow along with her and you will do just fine. She is very helpful and truly loves history. I learned a lot in her class. If you do not like history or writing I do not recommend her class.", + "pos": 0.244, + "neu": 0.684, + "neg": 0.072, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6ec" + } + }, + { + "text": "This Professor expects a lot from her students, but if you do the work and take good notes you'll be fine. Her test and papers are tuff, the writing center helped me in the papers and class recordings pair with a good study buddy helped on the test. Finally she really goes out of her way to help all of her students.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6ed" + } + }, + { + "text": "this professor is great. she is someone who knows a lot about history and is willing to help you out if you need help. attendence to class is mandatory, and she hates lateness,which is emphasized on her syllabus. just show effort, participate a lot in class, read her assignments, be prepared for the class, and follow her expectations for papers.", + "pos": 0.182, + "neu": 0.776, + "neg": 0.042, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6ee" + } + }, + { + "text": "Really harsh grader in papers, assignes three papers and two test. She is nice but due to her harsh grading in papers you will probably will get poor grade.", + "pos": 0.051, + "neu": 0.676, + "neg": 0.273, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6ef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e2cd60fca157e5c6f1" + }, + "professor_name": "Michael Ichikawa", + "rating": 4.4, + "department": "Mathematics department", + "comments": [ + { + "text": "Mike is an awesome teahcher. Lectures are concise and straight forward. Ive never passed math before mike. He is always willing to help you during office hours. Great professor. Study hard for the exams. They can be a bit hard.", + "pos": 0.258, + "neu": 0.685, + "neg": 0.056, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6f2" + } + }, + { + "text": "Probably the worst math professor I've ever had. So monotone, drown in homework assignments each week, expects unrealistic expectations. I got a C in the end and couldn't be happier to never take mike again.", + "pos": 0.0, + "neu": 0.747, + "neg": 0.253, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6f3" + } + }, + { + "text": "Really great professor!!! highly recommend!", + "pos": 0.736, + "neu": 0.264, + "neg": 0.0, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6f4" + } + }, + { + "text": "Great Professor !!! He is really helpful and as long as you do your hw and quizzes your will pass his class with a good grade. Tests are straight forward, and he is not a harsh grader", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6f5" + } + }, + { + "text": "Really great calculus professor. Notes are clear and the tests are straightfoward. Do all the suggested problems --- they help A LOT (especially with quizzes and tests)! Definitely worth taking ^_^", + "pos": 0.345, + "neu": 0.591, + "neg": 0.064, + "_id": { + "$oid": "6711d4e2cd60fca157e5c6f6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e3cd60fca157e5c6f8" + }, + "professor_name": "Ivan Prates", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Literally AWESOME guy. Im not sure how he does it but he manages to be friendly with all the students and still get respected as a teacher. Super helpful, very kind overall, he goes out of his way to make sure we understand the material Honestly one of the best (if not the best) bio TA I have had at CCNY. Deff take him for bio 228!", + "pos": 0.383, + "neu": 0.557, + "neg": 0.06, + "_id": { + "$oid": "6711d4e3cd60fca157e5c6f9" + } + }, + { + "text": "Best TA for Bio 228 lab hands down. He makes the class super enjoyable and he is laid back. If he is teaching, take him! You can tell that he actually enjoys teaching and cares about students grades.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c6fa" + } + }, + { + "text": "Ivan is the T.A. you want for ecology. He is extremely nice, has an awesome accent, and grades very fair.He even joined us for the lab trip (not mandatory for him).You can tell he generally cares a lot about his students. Overall he is a great T.A. If you are attentive during lab and give your assignments in, you will definitely get a good grade.", + "pos": 0.267, + "neu": 0.718, + "neg": 0.015, + "_id": { + "$oid": "6711d4e3cd60fca157e5c6fb" + } + }, + { + "text": "Ivan is the best. He is really nice and helpful. He urge all of us to participate in lab and graded the assignments fairly. His exams (midterm and final) were easy and he gave 6 points extra credit on the exams. He is the best TA for bio 228 so take him!", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c6fc" + } + }, + { + "text": "Best TA!!!!! He is so cool! Take his class!!!", + "pos": 0.544, + "neu": 0.456, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c6fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e3cd60fca157e5c6ff" + }, + "professor_name": "Gary Kwok", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "TAKE THIS GUY. His class is very straight forward. Im not going to go into his syllabus but you can get an A super easy. He is clear, his lectures are clear and his video examples are clear. Learning is up to how much MORE you put in our of class. He is the best guy for an A on Saturday that's fun. Plus donuts on the last day .", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c700" + } + }, + { + "text": "Super cool teacher! He only teaches on the weekend but I would totally recommend. Super nice, funny, even though he has a tough time explaining some concepts. Pretty young and laid back, do show up to class because lectures are quite funny and interesting. Easy quizzes, but you do need a password he gives out in class.", + "pos": 0.444, + "neu": 0.535, + "neg": 0.02, + "_id": { + "$oid": "6711d4e3cd60fca157e5c701" + } + }, + { + "text": "The easiest class i have ever taken. At first i thought that a Saturday class was gonna suck but this one was awesome!Gary is a wonderful professor and is engaging. The test and quizzes are not hard at all. there is also 1 presentation. you will get an A if you do all the work. Highly recommended for a Saturday class!! Attendance is not mandatory", + "pos": 0.197, + "neu": 0.76, + "neg": 0.043, + "_id": { + "$oid": "6711d4e3cd60fca157e5c702" + } + }, + { + "text": "Do all the quizzes and essays and you can easily get an A. He's super nice and helpful :)", + "pos": 0.516, + "neu": 0.484, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c703" + } + }, + { + "text": "easy class", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c704" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e3cd60fca157e5c706" + }, + "professor_name": "Franklin Camacho", + "rating": 3.4, + "department": "Mathematics department", + "comments": [ + { + "text": "He nice personality and he grades very well", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c707" + } + }, + { + "text": "Great semester.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4e3cd60fca157e5c708" + } + }, + { + "text": "The lecture is heavy and there are no brakes in between. He does care for students and he is always available after class via E-mail. He seemed very knowledgeable in this course. There where 2 Exams and a final paper and presentation. They were all hard, but in the end you will learn. (look out for homework every week as well)", + "pos": 0.058, + "neu": 0.898, + "neg": 0.044, + "_id": { + "$oid": "6711d4e3cd60fca157e5c709" + } + }, + { + "text": "TERRIBLE TEACHER. Does not know a thing about math and I'm in beginner. He is the definition of boring and you wont learn a thing. He assigned so many homework's online. overall definitely do NOT recommend.", + "pos": 0.063, + "neu": 0.745, + "neg": 0.192, + "_id": { + "$oid": "6711d4e3cd60fca157e5c70a" + } + }, + { + "text": "i won't blame on him since he is like first year of teaching. Even though i got a good grade but it is not b/c he taught me well. b/c i studied on my own with the textbook. Also, his class is so boring and you have no idea what he was trying to teach. If you picked him, you should go to youtube to search for the material about the class.", + "pos": 0.098, + "neu": 0.818, + "neg": 0.084, + "_id": { + "$oid": "6711d4e3cd60fca157e5c70b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e4cd60fca157e5c70d" + }, + "professor_name": "Debra Auguste", + "rating": 2.3, + "department": "Biomedical department", + "comments": [ + { + "text": "She does not know how to structure a class in an organized linear fashion. The lectures are based off highlighted PDF print outs of texts she finds. Always says she wants to challenge us because it is a grad level course, but does not teach the necessary material to tackle the challenge. Inconsistent. Unprepared. Not clear. Poorly phrased questions", + "pos": 0.042, + "neu": 0.912, + "neg": 0.045, + "_id": { + "$oid": "6711d4e4cd60fca157e5c70e" + } + }, + { + "text": "I don't know why they have Prof. Auguste teaching BME 305. She changed up the curriculum, making it more related to modeling applications, but she did not know over 75% of the time what she was talking about. She is very unorganized but the TAs made it bearable. There was a curve in the end, because though a good researcher, she is a bad professor.", + "pos": 0.054, + "neu": 0.88, + "neg": 0.066, + "_id": { + "$oid": "6711d4e4cd60fca157e5c70f" + } + }, + { + "text": "Its funny how im doing this for BME 101, at 1:01AM. Super kind, clear, and concise. After dealing with CCNY for two years, its a shocker professors like this actually exist.", + "pos": 0.365, + "neu": 0.597, + "neg": 0.038, + "_id": { + "$oid": "6711d4e4cd60fca157e5c710" + } + }, + { + "text": "Very interesting but rigorous class. I learned two classes worth of information on tissue engineering. You have to read a journal article almost every week. She teaches you to think conceptually and criticize real error filled experiments. The low clarity rating is due to the confusing changes to the course schedule and confusing exam questions.", + "pos": 0.111, + "neu": 0.646, + "neg": 0.243, + "_id": { + "$oid": "6711d4e4cd60fca157e5c711" + } + }, + { + "text": "First time teaching BME 305, so inexperienced and clueless at times. So the T.A made her class much more tolerable and must have had a positive influence on our grading system. Wished we could have taken a tissue class under her instead of this modelling class...", + "pos": 0.071, + "neu": 0.874, + "neg": 0.055, + "_id": { + "$oid": "6711d4e4cd60fca157e5c712" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e4cd60fca157e5c714" + }, + "professor_name": "Phyllis Langone", + "rating": 2, + "department": "Chemistry department", + "comments": [ + { + "text": "This professor is awful! You answer the questions she gives you and yet she will mark you down several points stating that you didn't answer certain things that weren't even given to be answered! She will comment on your submission and ask questions and then say that you didn't answer those questions in your submission, how can we read her mind!?", + "pos": 0.0, + "neu": 0.912, + "neg": 0.088, + "_id": { + "$oid": "6711d4e4cd60fca157e5c715" + } + }, + { + "text": "Read the book, come to class, do HW assignments and you should be good. But, Prof. doesn't finish covering the material, goes really slow and rushes to the end of class and always overtime. Rather boring to listen to because spends little time explaining slides and just mentions 'know this, know that\" etc. Not elaborate enough", + "pos": 0.033, + "neu": 0.917, + "neg": 0.05, + "_id": { + "$oid": "6711d4e4cd60fca157e5c716" + } + }, + { + "text": "Worst professor ever. Her exams are not hard in terms of the type of question she asks, but in terms of how she grades! She will ask general questions but expect very specific answers. She is also extremely big on memorization! On exams it is best to put down every single thing you could possible write about a subject,whether you are asked or not.", + "pos": 0.106, + "neu": 0.858, + "neg": 0.036, + "_id": { + "$oid": "6711d4e4cd60fca157e5c717" + } + }, + { + "text": "Very helpful, didnt use textbook much. Heavily uses slides for her exams, so dont buy textbook. Attendance is mandatory, you'll learn alot from her class.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d4e4cd60fca157e5c718" + } + }, + { + "text": "I have no idea who would give this women a PhD and an MBA. Waste about 10 minutes every class for attendance and it doesnt even count toward a grade. Never finishes on time........tried to squeeze in 19 chapters of biochemistry.......says she curves but she doesnt curve or has no idea what a curve means. Her idea of a curve is: A: 90, B:80, C:70", + "pos": 0.0, + "neu": 0.908, + "neg": 0.092, + "_id": { + "$oid": "6711d4e4cd60fca157e5c719" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e4cd60fca157e5c71b" + }, + "professor_name": "Kirara Sato", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "She is one of the most inspiring and compassionate professors I have ever encountered", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d4e4cd60fca157e5c71c" + } + }, + { + "text": "There are a lot of readings of scripts that need to be done however if you read them then you will be all set. Her quizzes are VERY straightforward and it is clear that she wants all of her students to pass. And due to her being so young, she is able to relate to her students and connect to them which I really appreciated. TAKE HER CLASS", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d4e4cd60fca157e5c71d" + } + }, + { + "text": "Mehhhhhhhh. Shes okayyyyyyyy.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4e4cd60fca157e5c71e" + } + }, + { + "text": "she makes everything so clear and so easy. you do have to go to a few performances and write papers but it's seriously not bad loved her", + "pos": 0.222, + "neu": 0.606, + "neg": 0.173, + "_id": { + "$oid": "6711d4e4cd60fca157e5c71f" + } + }, + { + "text": "Kirara is such a great theater professor! Very strict on timeliness, unless you have a doctor's note. She makes her expectations very clear and as long as you show up to class on time and actually do the work, it won't be hard at all. Lots of quizzes but nothing too bad. She is completely understanding and lenient as well, I highly recommend her.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d4e4cd60fca157e5c720" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e5cd60fca157e5c722" + }, + "professor_name": "Tom Barber", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "he was very flexible during covid and gave great feedback on papers. really engaging in class, gave simple quizzes every class to see if you did the readings, which are simple. the assignments really prepare you for professional documents. follow his handouts and you'll get a good grade on your papers. funny and helpful, highly recommend him!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c723" + } + }, + { + "text": "Understood my needs on a personal level and got me to take myself more seriously, making an elective really meaningful. Among all his other qualities as a person, what really stands out is how skilled he is at educating, compared to his colleagues. It's its own realm and he really gets it. Also, total dreamboat.", + "pos": 0.045, + "neu": 0.92, + "neg": 0.035, + "_id": { + "$oid": "6711d4e5cd60fca157e5c724" + } + }, + { + "text": "Instructor Barber is a wonderful teacher all around, he is honest and ready to assist in any way. I loved his class and if you are serious about writing you will too.", + "pos": 0.321, + "neu": 0.647, + "neg": 0.031, + "_id": { + "$oid": "6711d4e5cd60fca157e5c725" + } + }, + { + "text": "Very relaxed freshman English class. Really enjoys teaching students and making you think. Very helpful when writing papers for the class. Multiple papers, but all very easy. Easy grader for the amount of participation put in. Occasional educational tangents. Fun class. If you have the chance to take him, do so.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c726" + } + }, + { + "text": "A really helpful instructor! Give really useful feedback on your papers, and for some of them he even took them before the deadline and correct it so you can fix your mistakes and get a better grade! He helps with anything that you ask him. I really recommend him!", + "pos": 0.254, + "neu": 0.705, + "neg": 0.041, + "_id": { + "$oid": "6711d4e5cd60fca157e5c727" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e5cd60fca157e5c729" + }, + "professor_name": "Boukary Sawadogo", + "rating": 4.2, + "department": "Media Arts department", + "comments": [ + { + "text": "Honestly one of my worst professor experiences. Terrible at encouraging discussion. Is not clear on expectations and requirements for assignments. Feedback is horrendous. Will take weeks to reply to an email yet, has the audacity to not take day late work. If you want to learn something he is poor. Easy class if you can write a simple essay tho.", + "pos": 0.136, + "neu": 0.655, + "neg": 0.209, + "_id": { + "$oid": "6711d4e5cd60fca157e5c72a" + } + }, + { + "text": "I recommend this class and professor only if you enjoy watching classic movies and writing essays. I had an amazing experience taking this class as it allowed me to re-watch some of my favorite black and white films and exposed me to foreign films I didn't even know existed.", + "pos": 0.216, + "neu": 0.761, + "neg": 0.022, + "_id": { + "$oid": "6711d4e5cd60fca157e5c72b" + } + }, + { + "text": "Very straight forward class. 4 assignments all worth 25%. Literally watch a movie every lecture time. The papers may challenge the average person because its more than a summary of what you saw. Please participate or else the class will be dry. Hes not expecting you to be Spike Lee.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c72c" + } + }, + { + "text": "This class was so easy. All you do is watch movies and discuss them. Only 4 assignments and they were not difficult at all. Would definitely take him again!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c72d" + } + }, + { + "text": "This class is soooo easy bruh like if u like to watch movies and do simple and I mean SIMPLE comparatives essay of only 1000 words take him the class is very interesting and relaxing nothing stressful here. The class consist of movies,movies and movies lol. 500 word screening papers and 1000 word midterm and final. He is a great prof take him", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c72e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e5cd60fca157e5c730" + }, + "professor_name": "Denise Hoffman Brandt", + "rating": 1.8, + "department": "Urban Landscape department", + "comments": [ + { + "text": "People like her should not teach. 0 people skills. Big Ego with 0 implimentation of it in a practice. Putting students down infront of the class. If you can - dont take her.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c731" + } + }, + { + "text": "Degrading uninspiring pretentious", + "pos": 0.0, + "neu": 0.345, + "neg": 0.655, + "_id": { + "$oid": "6711d4e5cd60fca157e5c732" + } + }, + { + "text": "UNCLEAR!", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c733" + } + }, + { + "text": "Very Intelligent, but dictator!", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d4e5cd60fca157e5c734" + } + }, + { + "text": "She has very poor people skills.", + "pos": 0.0, + "neu": 0.596, + "neg": 0.404, + "_id": { + "$oid": "6711d4e5cd60fca157e5c735" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e6cd60fca157e5c737" + }, + "professor_name": "Linyuan Cui", + "rating": 1.8, + "department": "Earth Science department", + "comments": [ + { + "text": "Professor Cui's labs are easy if you follow all the interactions, however, she does not give you the answer if you are confused. If you do get a question wrong, she does not tell you what you got wrong. Attendance for her is mandatory, so always show up to get the code. There are 8 total labs, plus two extra labs being connected as extra credit.", + "pos": 0.09, + "neu": 0.797, + "neg": 0.113, + "_id": { + "$oid": "6711d4e6cd60fca157e5c738" + } + }, + { + "text": "She is one of the worst professor I have ever encountered. Her labs are easy because it is entirely typed out but directions are still confusing there. She did nothing on explaining and go thru the ideas and techniques required. She just responds to questions that people raised and not solving it properly and leave confusion.", + "pos": 0.031, + "neu": 0.787, + "neg": 0.182, + "_id": { + "$oid": "6711d4e6cd60fca157e5c739" + } + }, + { + "text": "She takes attendance during lab. When you're confused about a question she answers it very vaguely. She is a picky grader at times. Not so great at explaining the concepts about the lab. She's the only lab instructor so there's no other choice. Lab is annoying but just do the labs as best as possible and you'll do well.", + "pos": 0.122, + "neu": 0.765, + "neg": 0.113, + "_id": { + "$oid": "6711d4e6cd60fca157e5c73a" + } + }, + { + "text": "Probably the worst professor Ive taken in my entire college career. Her accent is pretty strong so its hard to understand her but even without that she refuses to explain the work she gives, doesnt take students personal lives into consideration . Forces you to show up to class then sits there and doesnt help anyone. Do not take her for lab", + "pos": 0.062, + "neu": 0.838, + "neg": 0.1, + "_id": { + "$oid": "6711d4e6cd60fca157e5c73b" + } + }, + { + "text": "Had her for EAS lab. Literally the worst. Strong accent so you can't understand what she is saying. She also does not explain anything properly or efficiently. She expects you to know many random things that you will not. The labs seem difficult enough, but having someone who doesn't guide you makes it even harder.", + "pos": 0.067, + "neu": 0.86, + "neg": 0.073, + "_id": { + "$oid": "6711d4e6cd60fca157e5c73c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e6cd60fca157e5c73e" + }, + "professor_name": "Volodymyr Gayovyy", + "rating": 4.2, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Funny, welcoming, enjoyable lectures. Always willing to help and answer your questions. One of the best in the department", + "pos": 0.527, + "neu": 0.473, + "neg": 0.0, + "_id": { + "$oid": "6711d4e6cd60fca157e5c73f" + } + }, + { + "text": "All around great person and instructor. Really caring and wants you to understand the material to its fullest. Is always willing to help.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d4e6cd60fca157e5c740" + } + }, + { + "text": "Great Guy", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d4e6cd60fca157e5c741" + } + }, + { + "text": "Helpful and understanding, and you get what you deserve in the end.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d4e6cd60fca157e5c742" + } + }, + { + "text": "He is funny. Tries to give as much of extra credit as possible. Also gives a lot of quizzes as extra credit.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d4e6cd60fca157e5c743" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e6cd60fca157e5c745" + }, + "professor_name": "Da Jeong", + "rating": 3.2, + "department": "Art department", + "comments": [ + { + "text": "Horrible. Avoid at all cost", + "pos": 0.0, + "neu": 0.345, + "neg": 0.655, + "_id": { + "$oid": "6711d4e6cd60fca157e5c746" + } + }, + { + "text": "Knows what he is teaching. Super nice and is a fair grader. Makes sure that the class understands what the assignments are and how to complete them.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d4e6cd60fca157e5c747" + } + }, + { + "text": "Great professor content-wise, very knowledgeable and more than happy to help you. He assigns you readings, however you could get away with not doing some of them. Midterm required memorizing 80+ images and identifying a small portion of that. Final was take home and other than that only 3 papers, which will require you to visit museums.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d4e6cd60fca157e5c748" + } + }, + { + "text": "Professor Jeong is a great professor. He was put into the class last minute and he handled the class very well. He talks alot anf it may be boring at times, but he is very knowledgeable and kind. He is open to ideas from students and he will work to students needs. Our final is take home, and only midterm and 3 papers. Great professor, learned alot", + "pos": 0.19, + "neu": 0.789, + "neg": 0.021, + "_id": { + "$oid": "6711d4e6cd60fca157e5c749" + } + }, + { + "text": "He is a kind and sweet professor. His lectures are a bit boring. He gives no homework at all. There is only a midterm, final, and 3 papers. 2 of the papers are very short (2-3 pages) but the last one is a research paper which is 2000 words. The midterm and final requires a lot of memorization.", + "pos": 0.068, + "neu": 0.879, + "neg": 0.053, + "_id": { + "$oid": "6711d4e6cd60fca157e5c74a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e7cd60fca157e5c74c" + }, + "professor_name": "Hayal Dargin", + "rating": 3.2, + "department": "Economics department", + "comments": [ + { + "text": "She reads the slides and never clearly answers any questions. Her projects are very confusing and changes several times throughout the semester. Everything else is OK but she gets mad when no one participates in a class of like 9 people.", + "pos": 0.103, + "neu": 0.692, + "neg": 0.204, + "_id": { + "$oid": "6711d4e7cd60fca157e5c74d" + } + }, + { + "text": "She is very unclear about her projects which she changes many times throughout the semester. Very average professor and reads the slides word for word and barely explains anything from the slide.", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d4e7cd60fca157e5c74e" + } + }, + { + "text": "The class was fine except she has bad attitude, exams heavy and exams r mad hard. One group project where everyone got 95. Even though the exams were hard and not enough people did good, she still didn't curve.", + "pos": 0.1, + "neu": 0.699, + "neg": 0.201, + "_id": { + "$oid": "6711d4e7cd60fca157e5c74f" + } + }, + { + "text": "She literally reads off the textbook. I would suggest you use your laptop to take notes and get the pdf version of the textbook so you can copy paste the notes straight from the textbook. Only 1 group presentation, she mostly gave 100's to everyone. 1 midterm and 1 final. Don't waste ur time doing the hw she assigns, because I doubt she checks.", + "pos": 0.062, + "neu": 0.901, + "neg": 0.037, + "_id": { + "$oid": "6711d4e7cd60fca157e5c750" + } + }, + { + "text": "She's an average professor. Reads off the textbook as notes. You dont really have to listen to her since its ALL from the text. Can be unclear sometimes by the way she teaches. Its also kinda easy to take her off topic. Exams are ok but she doesnt give a specific review for the exams (she goes over the \"important things\" but she tells you to read)", + "pos": 0.08, + "neu": 0.899, + "neg": 0.021, + "_id": { + "$oid": "6711d4e7cd60fca157e5c751" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e7cd60fca157e5c753" + }, + "professor_name": "Donna Gooden-Johnson", + "rating": 4.6, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Gooden is awesome. I learned so much from her class. We had three exams and a research paper that had many components. The professor was very lenient.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d4e7cd60fca157e5c754" + } + }, + { + "text": "Professor Gooden is great to say the least. Lectures are interesting and relatable. Her exams can be a little challenging because they're long and she picks out questions that you wouldn't really think to study but everything is straight from the slides which she posts. Overall, the class is great and I highly recommend it.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d4e7cd60fca157e5c755" + } + }, + { + "text": "Professor Gooden- John is amazing. There were always great discussions in class and she made it a safe space for EVERYONE. The workload is manageable but she makes sure that she gives assignments that will help with the final paper. If you did not get the chance to read the textbook, she will always provide the information on Powerpoint. TAKE NOTES", + "pos": 0.19, + "neu": 0.78, + "neg": 0.03, + "_id": { + "$oid": "6711d4e7cd60fca157e5c756" + } + }, + { + "text": "The exams were very heavy of content in textbook; the slides were stacked as well. I recommend skimming chapters in accordance to assigned readings if you cannot wholly read them. The slide content is misleading in respect to text but definitely helpful for NON-MULTIPLE CHOICE exams. Lenient other than that, lots of documentaries, 1 paper, cpl h.w.", + "pos": 0.227, + "neu": 0.745, + "neg": 0.028, + "_id": { + "$oid": "6711d4e7cd60fca157e5c757" + } + }, + { + "text": "She is a very caring professor. You will learn things you probably never knew. The papers are not hard. It's not a hard class. There will be a lot of discussions. However, expect everything to be given back to you late. Expect papers to be given back 2 months later.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d4e7cd60fca157e5c758" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e7cd60fca157e5c75a" + }, + "professor_name": "Samantha Barrick", + "rating": 4, + "department": "Humanities department", + "comments": [ + { + "text": "Prof. Barrick is a solid professor, however, it just seems as though she displays ignorance when it comes to cultural backgrounds that are not her own. There are slight microaggressions embedded in her words, and sometimes you are slightly taken aback by the things she says. All in all, the class was passable and interesting once in a while.", + "pos": 0.068, + "neu": 0.892, + "neg": 0.04, + "_id": { + "$oid": "6711d4e7cd60fca157e5c75b" + } + }, + { + "text": "Professor Barrick is a good professor. I enjoyed her class, but I felt uncomfortable when I heard the things she would say to some people. The readings are genuinely interesting and we have good conversations, but sometimes it can feel contrived. Overall, it's okay.", + "pos": 0.251, + "neu": 0.688, + "neg": 0.062, + "_id": { + "$oid": "6711d4e7cd60fca157e5c75c" + } + }, + { + "text": "She is a super dope professor, one of the best I have ever had. There are quite a few readings to do, but each week she dissects them. Each week a group of students presents the readings of the week. If you don't read it all, at least understand the gist of it. She gives pop quizzes but they are short and easy to pass. She keeps it interesting!", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d4e7cd60fca157e5c75d" + } + }, + { + "text": "She cares more about her students than any teacher I've ever had and is also always there to give emotional support when a student is having a tough time outside of class. she's very aware that we have other classes besides her and takes that into consideration. Readings are incredibly difficult but very interesting. Papers are hard but not killer.", + "pos": 0.196, + "neu": 0.737, + "neg": 0.067, + "_id": { + "$oid": "6711d4e7cd60fca157e5c75e" + } + }, + { + "text": "The readings are hard to understand at times (she chooses some really interesting stuff). At least thoroughly skim the texts or you'll get wrecked by the inevitable quiz. She's very perceptive of how stressed the students are and is willing to compromise. She'll make sure you'll not only learn how to be a better doctor, but a better person.", + "pos": 0.145, + "neu": 0.811, + "neg": 0.044, + "_id": { + "$oid": "6711d4e7cd60fca157e5c75f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e8cd60fca157e5c761" + }, + "professor_name": "Catti James", + "rating": 1.4, + "department": "Education department", + "comments": [ + { + "text": "She ABSOLUTELY HAS TO BE THE WORSE TEACHER IN RECORDED HISTORY. I hate this woman with the passion of 100 suns. I sat in her class and learned absolutely nothing. Then she gave me a grade that was so completely ****. Its like if you kiss her ass she likes you...if not, you're totally ****ed! I can't believe they still let her teach.", + "pos": 0.148, + "neu": 0.712, + "neg": 0.14, + "_id": { + "$oid": "6711d4e8cd60fca157e5c762" + } + }, + { + "text": "This is the worst professor ever. She literally teaches nothing and robs students of ever becoming good art teachers. Unfortunately, they have not fired her, claiming she is \"nice\".", + "pos": 0.273, + "neu": 0.566, + "neg": 0.16, + "_id": { + "$oid": "6711d4e8cd60fca157e5c763" + } + }, + { + "text": "Waste of space. Learned nothing from the \"Professor\". She needs to retire.", + "pos": 0.0, + "neu": 0.797, + "neg": 0.203, + "_id": { + "$oid": "6711d4e8cd60fca157e5c764" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4e8cd60fca157e5c765" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4e8cd60fca157e5c766" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e8cd60fca157e5c768" + }, + "professor_name": "Kate Seltzer", + "rating": 3.9, + "department": "Education department", + "comments": [ + { + "text": "She is a great professor. Take her class and you will learn a lot of useful strategies to use in your own class. I enjoyed every session although it was on a Friday.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d4e8cd60fca157e5c769" + } + }, + { + "text": "I entered this class with the hope of getting a better insight of the TESOL Program. The Professor lacks teaching skills in the classroom and does not give everyone an equal chance. She puts forth a fake positive attitude and does not respect other cultures. I would not recommend her, you will feel isolated in her class.", + "pos": 0.162, + "neu": 0.695, + "neg": 0.143, + "_id": { + "$oid": "6711d4e8cd60fca157e5c76a" + } + }, + { + "text": "Not a very helpful professor.I would not recommend taking her class.", + "pos": 0.0, + "neu": 0.659, + "neg": 0.341, + "_id": { + "$oid": "6711d4e8cd60fca157e5c76b" + } + }, + { + "text": "She understands where her students are coming from, and will do her best to help them. She's very passionate about education and social rights. I'm glad I took her class because I learned so much from her. The reading materials are actually connected to the classroom.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d4e8cd60fca157e5c76c" + } + }, + { + "text": "Kate is really a fabulous teacher. She is very inspiring and always has the brilliant viewpoints in Education. She likes reading, and the readings she asked are all fantastic. You will fall in love with education with her classes. Every Wednesday was my favorite. There are alot to do for the class, but she is generous with grades.One word fabulous!", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d4e8cd60fca157e5c76d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e8cd60fca157e5c76f" + }, + "professor_name": "Stefan Weisman", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "hes a really great professor but dnt take his morning klass smhhh omg he will put yu to sleep!!!...lolzz i would sit in class and his voice puts yu to sleep...then that music he plays makes me sleep even more!!! smhhh lol hes a GREAT professor tho", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d4e8cd60fca157e5c770" + } + }, + { + "text": "pretty good tunes he plays", + "pos": 0.802, + "neu": 0.198, + "neg": 0.0, + "_id": { + "$oid": "6711d4e8cd60fca157e5c771" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4e8cd60fca157e5c772" + } + }, + { + "text": "He is definitely the best Music History Professor. He is very clear knowledgeable, and organized. He is also very friendly. It was an easy A.", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d4e8cd60fca157e5c773" + } + }, + { + "text": "I attended History of the Symphony and History of Baroque to Early Classical Music with this professor. I found Professor Weisman to be very knowledgeable, interesting, intelligent, professional, kind, and approachable. He is also an active composer in New York. I highly recommend his classes.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d4e8cd60fca157e5c774" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e9cd60fca157e5c776" + }, + "professor_name": "Khalid Adriouch", + "rating": 3.6, + "department": "Mathematics department", + "comments": [ + { + "text": "The best professor, always willing to give students a chance!", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d4e9cd60fca157e5c777" + } + }, + { + "text": "Great professor! Would recommend!", + "pos": 0.782, + "neu": 0.218, + "neg": 0.0, + "_id": { + "$oid": "6711d4e9cd60fca157e5c778" + } + }, + { + "text": "Never gave a syllabus, and he is a push over. He even made our last test a take home and dropped the lowest test grade after we asked him too. I gave in two homework assignments in total and missed class all the time and got an A-. He is an easy grader as he will give you full credit if you get the wrong final answer but have the correct work.", + "pos": 0.049, + "neu": 0.878, + "neg": 0.073, + "_id": { + "$oid": "6711d4e9cd60fca157e5c779" + } + }, + { + "text": "He is a very nice professor but very confusing to understand. He is very easy, but definatly need to get guidance from someone else because you can pass his class easily, but you will probably not know the concepts.", + "pos": 0.2, + "neu": 0.741, + "neg": 0.059, + "_id": { + "$oid": "6711d4e9cd60fca157e5c77a" + } + }, + { + "text": "Very helpful and nice professor.", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d4e9cd60fca157e5c77b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e9cd60fca157e5c77d" + }, + "professor_name": "Christian Ghigliotty", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "Harsh grader. Punctuality is VERY important.", + "pos": 0.291, + "neu": 0.411, + "neg": 0.298, + "_id": { + "$oid": "6711d4e9cd60fca157e5c77e" + } + }, + { + "text": "okay, not the best prof in the world. he is young and new but he deff is knowledgeable. only 5 percent of class got in A range. if u r at mid semester and u see u r heading to C, just talk to him how u can improve. and make sure u work with writing center, u can email them or meet them and get help w your assignment.", + "pos": 0.149, + "neu": 0.823, + "neg": 0.028, + "_id": { + "$oid": "6711d4e9cd60fca157e5c77f" + } + }, + { + "text": "This guy will make you suffer throughout the semester. Plus if you show up late a minute to class the day a paper is due he will not accept it.", + "pos": 0.0, + "neu": 0.831, + "neg": 0.169, + "_id": { + "$oid": "6711d4e9cd60fca157e5c780" + } + }, + { + "text": "Nice, pretty easy, rarely gives A's on papers though.", + "pos": 0.597, + "neu": 0.403, + "neg": 0.0, + "_id": { + "$oid": "6711d4e9cd60fca157e5c781" + } + }, + { + "text": "He was OK", + "pos": 0.595, + "neu": 0.405, + "neg": 0.0, + "_id": { + "$oid": "6711d4e9cd60fca157e5c782" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4e9cd60fca157e5c784" + }, + "professor_name": "Anthony Cartolano", + "rating": 2.1, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "his class leaps very often. his class is only copying his notes and he seldom explains. and i hate it when he tries to show off his so called \"humor\"", + "pos": 0.07, + "neu": 0.822, + "neg": 0.109, + "_id": { + "$oid": "6711d4e9cd60fca157e5c785" + } + }, + { + "text": "My kind of teacher. Don't expect to be babied by this guy. He won't give you help on a silver platter. You have to show him that you've already made a concerted effort, but you're stuck at a critical spot. Then he'll drop a hint to point you in the right direction. God doesn't help those who don't first try to help themselves, and neither does he.", + "pos": 0.079, + "neu": 0.761, + "neg": 0.16, + "_id": { + "$oid": "6711d4e9cd60fca157e5c786" + } + }, + { + "text": "The class itself is just very difficult.", + "pos": 0.0, + "neu": 0.682, + "neg": 0.318, + "_id": { + "$oid": "6711d4e9cd60fca157e5c787" + } + }, + { + "text": "He favors the Spanish students, he just copies what ever is in his notes. He doesn't explain. he grades very badly. he wants to be like professor ramschitzki!!!", + "pos": 0.159, + "neu": 0.74, + "neg": 0.1, + "_id": { + "$oid": "6711d4e9cd60fca157e5c788" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4e9cd60fca157e5c789" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eacd60fca157e5c78b" + }, + "professor_name": "Kathleen Isaac", + "rating": 3.1, + "department": "Psychology department", + "comments": [ + { + "text": "Lectures are long and boring, emphasis on boring. She reads right off of the slides but you have to attend class. Two papers, one midterm and one final.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d4eacd60fca157e5c78c" + } + }, + { + "text": "Not sure sure why she has not so good reviews bc I've taken her for two different classes and she was great. She's understanding, clear expectations, willing to answer questions. The material for this class was kind of boring to me but I'd recommend taking this class. One midterm, one final and one (or two but the 2nd one is like a pg) paper.", + "pos": 0.147, + "neu": 0.761, + "neg": 0.092, + "_id": { + "$oid": "6711d4eacd60fca157e5c78d" + } + }, + { + "text": "Lectures are long and boring. Long final paper that requires you to write about ALL the theories we learned plus the final.. She gives extra credit.", + "pos": 0.09, + "neu": 0.83, + "neg": 0.08, + "_id": { + "$oid": "6711d4eacd60fca157e5c78e" + } + }, + { + "text": "Cons: It turned out to be boring and a lot of material to read. She just talks all lecture, gives a few examples but I found myself and other classmates wondering off. The midterm was on 10 chapters. Don't come late, it really bothers her. Pros: There are power points that contain important highlights. She gives solid exam reviews. Exams are fair.", + "pos": 0.103, + "neu": 0.834, + "neg": 0.063, + "_id": { + "$oid": "6711d4eacd60fca157e5c78f" + } + }, + { + "text": "I was extremely excited to take this class and a took this class with Kathleen and kind of lost my interest in the class and in the topic. Makes it a long boring class.", + "pos": 0.14, + "neu": 0.739, + "neg": 0.121, + "_id": { + "$oid": "6711d4eacd60fca157e5c790" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eacd60fca157e5c792" + }, + "professor_name": "Lisa Diomande", + "rating": 1.3, + "department": "English department", + "comments": [ + { + "text": "Lectures are long and off topic. She gives you such a hard time if your paper doesn't coincide with her ideals or beliefs. Getting an A in this class will be very hard, unless you follow her ideals and write the way she wants you to. Do not expect to chill in this class, there is constant group work and activities to do.", + "pos": 0.055, + "neu": 0.898, + "neg": 0.047, + "_id": { + "$oid": "6711d4eacd60fca157e5c793" + } + }, + { + "text": "Super disorganized, can't get anything done. She also assigns way too much work and never grades anything on time, so you have no idea what to 'improve' before you hand in your next paper. Also, she's so stuck on her ideals that if you write a paper on something she disagrees with, she'll fight with you until you write her opnions. Don't take.", + "pos": 0.151, + "neu": 0.692, + "neg": 0.156, + "_id": { + "$oid": "6711d4eacd60fca157e5c794" + } + }, + { + "text": "Honestly if you ask her a question, she will go so off topic that she won't even remember what she was answering. I don't think she has her lectures planned, she just comes in to class and goes with whatever comes up. She is very unclear in her explanation and takes points off for things that are already present in the paper. She is not rude though", + "pos": 0.076, + "neu": 0.892, + "neg": 0.032, + "_id": { + "$oid": "6711d4eacd60fca157e5c795" + } + }, + { + "text": "I barely learned anything from her. She goes off topic most of the time. She is very unclear and makes you fall asleep.", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d4eacd60fca157e5c796" + } + }, + { + "text": "Dude... There's no chill in this class. Plus any book she says you need for this class, is a waste of money.", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d4eacd60fca157e5c797" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eacd60fca157e5c799" + }, + "professor_name": "Yaari Felber-Seligman", + "rating": 4.4, + "department": "History department", + "comments": [ + { + "text": "Nice professor. Long and complicated readings. Effort matters.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d4eacd60fca157e5c79a" + } + }, + { + "text": "The Professor is very kind and understanding. The class I took, the professor did not penalize late work and people were able to hand their work at the end of the semester. Is willing to help out if you need help. However, this class has lots of readings, attendance posts, blogs, and papers. As long as you complete them, you should be fine.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d4eacd60fca157e5c79b" + } + }, + { + "text": "Ok teacher. Annoying work.", + "pos": 0.319, + "neu": 0.29, + "neg": 0.391, + "_id": { + "$oid": "6711d4eacd60fca157e5c79c" + } + }, + { + "text": "Great Professor! Also a fair grader. Please keep in mind that there is a lot if reading for this course. There is also weekly discussion board post and major papers. Final and midterm is essay format.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d4eacd60fca157e5c79d" + } + }, + { + "text": "The class is LGBTQ World Hist and the prof is nonbinary. For the class, you read 4 books. One of the books read is a group project where you do a presentation with the group members. There are 3 papers throughout the course and a final paper where you have various options to choose from. Learned a lot abt LGBTQ history and enjoyed class. Take them!", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d4eacd60fca157e5c79e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a0" + }, + "professor_name": "Kristine Slentz", + "rating": 4.4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Her class was easy enough because we only met once a week and sometimes not every week. Also in class, we wouldn't do much just complete the assignments on Blackboard and you're good.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a1" + } + }, + { + "text": "she was a good professor, but the only thing I didn't like was that the instructions weren't clear at all, the things they'd mention online were different from what they say in person, every group i joined was just as confused, but other than that, it wasn't that many assignments, and she isn't a tough grader.", + "pos": 0.056, + "neu": 0.811, + "neg": 0.133, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a2" + } + }, + { + "text": "It was a writing class so the papers were expected. She is amazing at giving feedback. But, she likes to have lots of participation so her classes aren't boring.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a3" + } + }, + { + "text": "Loved this class. I took her in fall 2021 and it was a fully remote class. If you need any help, she and Professor Mary Rob will help you. She likes when the students participate so get ready for that. She will put you into breakout rooms for peer reviews and other activities. Overall this class was one of my favorite english classes ever.", + "pos": 0.228, + "neu": 0.726, + "neg": 0.046, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a4" + } + }, + { + "text": "My first time going out my comfort zone, I took Creative Expression and it was one of the best classes I took. Professor Slentz is nice and give great feedback. This class has no textbooks\ufffd\ufffd\ufffd\ufffd. The writing in this class wasnt as bad as I thought. I took this class online, Im not sure if it will be in person again, Overall take this class!!", + "pos": 0.246, + "neu": 0.703, + "neg": 0.051, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a7" + }, + "professor_name": "Nicola McDonald", + "rating": 1.6, + "department": "English department", + "comments": [ + { + "text": "Professor didn't even know her own deadlines, would always say to check the blackboard and course site for any questions we might have. Never got decent feedback from her. I came into this college with a liberal arts degree, but the way she graded my work made me seem like I didn't know how to write. Overall, do not take her course!", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a8" + } + }, + { + "text": "Honestly, she does not help you at all. I feel like I learned nothing and constantly had to rely on my peers. She also cannot help you if your grades are slipping, and you want to get them up early. She will just tell you that your grades are low and \"she cannot go back\". She also barely answers any questions. Would never take her again.", + "pos": 0.093, + "neu": 0.817, + "neg": 0.09, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7a9" + } + }, + { + "text": "She is one of the worst professors you can take at this campus for ENGL21007 her deadlines are so short that you barely have time to do the work properly. Her workload is so immense due to the number of unnecessary papers she gives. Also, she makes deadlines during breaks and finals week. Just don't take her if you value your sanity and social life", + "pos": 0.053, + "neu": 0.888, + "neg": 0.059, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7aa" + } + }, + { + "text": "Don't take her if you can't handle her workload; you'll get work after every class. Unnecessary amount of papers, and makes deadlines during breaks and finals week. The final paper for this class was 2.8k words, and it was expected to be completed in a week during finals. Includes additional assignments due at the same time as major papers.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7ab" + } + }, + { + "text": "Prof. McDonald is new, so she's pretty strict on how she grades and such. I'm a decent writer, but, the 4 papers along with all the discussion posts had me up all night sometimes. She's pretty strict on coming to class, your grade may drop if you don't. She helps you understand everything you may need to.", + "pos": 0.101, + "neu": 0.816, + "neg": 0.084, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ebcd60fca157e5c7ae" + }, + "professor_name": "Justine Browning", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Please take her class! .She is one of the best professors you will ever have. I thought her class was very informative her discussions are very interesting and engaging. She cares a lot for her students and is always understanding of students. The work is a good amount. Overall she a great professor,I hope to take her class again.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7af" + } + }, + { + "text": "This professor is so chill and caring towards her students, she gives you a lot of ideas for your papers and is understanding in case you turn in work late. Very energetic and informative lectures.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7b0" + } + }, + { + "text": "I couldn't find any reviews for this professor but I decided to take my chance and take her anyways, and I'm glad I did because she is the like the chillest professor ever. She's very flexible and cares about her students. It's hard not to do well in her class. Short reading for every class and just three papers. You won't regret taking her!", + "pos": 0.253, + "neu": 0.7, + "neg": 0.048, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7b1" + } + }, + { + "text": "She is a really good professor. She doesn't give a lot of homework and always tries to have interesting and interactive lectures. She cares a lot about her students. She wants you to pass, learn, and don't get too stressed. Very understanding.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7b2" + } + }, + { + "text": "Prof Browning is one of the best out there. She doesn't care if you aren't able to write well. No points will be taken off because of that. If you are able to make your point in your papers then you will have no problem passing with an A! Not much reading to be honest and she will help with any stress! I really recommend taking her class!", + "pos": 0.215, + "neu": 0.695, + "neg": 0.09, + "_id": { + "$oid": "6711d4ebcd60fca157e5c7b3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eccd60fca157e5c7b5" + }, + "professor_name": "Tomasz Grabski", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "Tomasz Grabski demands excessive effort, requiring you to work more than he does in his course. It's utterly unreasonable!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4eccd60fca157e5c7b6" + } + }, + { + "text": "My question is who hired this man at CCNY SOE?", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4eccd60fca157e5c7b7" + } + }, + { + "text": "The worst class ever!", + "pos": 0.0, + "neu": 0.406, + "neg": 0.594, + "_id": { + "$oid": "6711d4eccd60fca157e5c7b8" + } + }, + { + "text": "The worst professor at CCNY School of Education! I agree with the previous rate.", + "pos": 0.132, + "neu": 0.635, + "neg": 0.232, + "_id": { + "$oid": "6711d4eccd60fca157e5c7b9" + } + }, + { + "text": "Stay away! He's new to City College but the worst thing ever. I didn't learn anything in his class and had to drop the class. He's unpredictable and adds extra work on the spur of the moment. He doesn't have an organized syllabus with weekly readings and what's due. He sends out emails on Thursdays for work due on Saturdays at 3pm.", + "pos": 0.0, + "neu": 0.875, + "neg": 0.125, + "_id": { + "$oid": "6711d4eccd60fca157e5c7ba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eccd60fca157e5c7bc" + }, + "professor_name": "Gloria Nguyen", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Professor Gloria Nguyen is a very understanding professor. She has allowed students to turn in late assignments and even makeup past assignments, she's available to talk at any time and is very generous with extra credit assignments. She does assign a lot of work, but if you're able to submit on time, you'll find her class easy.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d4eccd60fca157e5c7bd" + } + }, + { + "text": "One of the best professors I met so far. Very communicative and supporting. All you have do to pass this class is be on time and do your homework with all requirements. You can fail this class only if you trying to do so. Also she is very friendly: treats for birthdays and holidays :D", + "pos": 0.25, + "neu": 0.7, + "neg": 0.05, + "_id": { + "$oid": "6711d4eccd60fca157e5c7be" + } + }, + { + "text": "She is the greatest professor ever! You'll pass with a good grade as long as you do the assignments and follow feedback! Just do the work and you'll be fine. Just make sure you do the extra credit for A+!\nOh and make sure you are in class on time!", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d4eccd60fca157e5c7bf" + } + }, + { + "text": "Very nice professor. Just do your work and you will pass. The only way to fail this class is if you make an attempt to do so.", + "pos": 0.098, + "neu": 0.791, + "neg": 0.111, + "_id": { + "$oid": "6711d4eccd60fca157e5c7c0" + } + }, + { + "text": "great professor, one of the nicest professors I've had so far!", + "pos": 0.458, + "neu": 0.542, + "neg": 0.0, + "_id": { + "$oid": "6711d4eccd60fca157e5c7c1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eccd60fca157e5c7c3" + }, + "professor_name": "Cesare Birignani", + "rating": 2.8, + "department": "Architecture department", + "comments": [ + { + "text": "His accent can be a bit hard to understand at times but not an issue. You're expected to attend lectures and hand in an index card with a quote, but you can miss a few if you attend section classes & still have a decent understanding. There are 2 assignments, 1 mock exam, 1 midterm, and 1 final exam, all exams done in person with a reference sheet.", + "pos": 0.057, + "neu": 0.852, + "neg": 0.091, + "_id": { + "$oid": "6711d4eccd60fca157e5c7c4" + } + }, + { + "text": "A very knowledgeable guy. Really knows his history, especially about the Italian Renaissance since he grew up in Florence during Postmodernism. Your grade is solely determined by one paper, so you can skip class half the time and still pass.", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d4eccd60fca157e5c7c5" + } + }, + { + "text": "Professor Birignani knows his stuff but has trouble articulating it clearly sometimes. Perhaps because of his specialty in Italian / Renaissance history, he comes off as biased, especially as a critic. His lectures are image heavy and supplanted by ad lib information. You'll learn detail but not critical comparisons.", + "pos": 0.101, + "neu": 0.743, + "neg": 0.156, + "_id": { + "$oid": "6711d4eccd60fca157e5c7c6" + } + }, + { + "text": "Professor Birignani is a very nice professor he cares about his students. But his lectures are very long but very informative. He's not that tough if you show up and give in assignments on time you'll pass or get a decent grade.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d4eccd60fca157e5c7c7" + } + }, + { + "text": "Very unclear, not confident professor!", + "pos": 0.0, + "neu": 0.354, + "neg": 0.646, + "_id": { + "$oid": "6711d4eccd60fca157e5c7c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4edcd60fca157e5c7ca" + }, + "professor_name": "Sarah ONeill", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "Top notch professor! Sarah ONeill is forthright and helpful. I have learned a lot.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d4edcd60fca157e5c7cb" + } + }, + { + "text": "Shes a nice person and all but there was this one problem that got to me. She tells us specific topics of whats going to be on the midterm and final, but none of it is on it. Just read the text book and review the revel questions and you'll be fine. I stopped going to her class after midterm and it was worth not going to her lectures anymore.", + "pos": 0.073, + "neu": 0.85, + "neg": 0.077, + "_id": { + "$oid": "6711d4edcd60fca157e5c7cc" + } + }, + { + "text": "READ THE TEXT BOOK!! Although Dr. O'Neill does go over what is covered in the textbook she also gives readings outside of the book, all of which will be on the exams. If you are struggling with understanding the material she is very easy to approach to ask questions after class, during office hours or through email. Nice professor but DO THE WORK!!", + "pos": 0.077, + "neu": 0.895, + "neg": 0.028, + "_id": { + "$oid": "6711d4edcd60fca157e5c7cd" + } + }, + { + "text": "Exams are easy for the most part. Great professor, a little New Zealand accent but it's bearable. Always there for help. Extremely understanding and helpful.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d4edcd60fca157e5c7ce" + } + }, + { + "text": "Dr.O'neill Lectures: Long but interesting. Class: Not easy unless you read the book! Fyi, make your own notes. Will be greatly helpful! Lectures, Quizzes & Exams: Comes basically from the book & the articlesresearch papers that you have to read about. Will have to do a virtual baby assignment online & a paper on it (which is quite easy and fun)!", + "pos": 0.255, + "neu": 0.705, + "neg": 0.04, + "_id": { + "$oid": "6711d4edcd60fca157e5c7cf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4edcd60fca157e5c7d1" + }, + "professor_name": "Gemma Sharpe", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Professor Sharpe's knowledge and passion are substantial and she is incredibly intentional in her pedagogy. Their choice to assign short texts to annotate/read closely significantly enhanced my retention of the course material. Furthermore, the nature of the texts ensured that the majority of us were doing the readings and thus staying on-topic.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d4edcd60fca157e5c7d2" + } + }, + { + "text": "I had Gemma at SLC- she was amazing. Extremely caring and understanding. The workload is not too heavy at all, and she makes it easy to participate. She is an extremely fair grader and cares deeply about her students. One of the best professors I have had. She was so helpful during conference paper season, and overall an amazing person", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d4edcd60fca157e5c7d3" + } + }, + { + "text": "Prof. Sharpe is such a caring and sweet professor! She truly makes sure her students understand her lessons and encourages participation. She makes learning art history really fun. The workload is not bad. She really prepares you for the tests and quizzes too.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d4edcd60fca157e5c7d4" + } + }, + { + "text": "She is great! Well taught class and she keeps it Interesting!", + "pos": 0.542, + "neu": 0.458, + "neg": 0.0, + "_id": { + "$oid": "6711d4edcd60fca157e5c7d5" + } + }, + { + "text": "GEMMA IS SUCH A GEM (lol see what I did there). She's British so her accent is AMAZING. She's also super passionate about art, I took her art history course and she really gets into the subject. Workload is manageable, you aren't graded on a lot, just two papers and three written exams but if you pay attention and show you care you'll be fine", + "pos": 0.21, + "neu": 0.769, + "neg": 0.021, + "_id": { + "$oid": "6711d4edcd60fca157e5c7d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eecd60fca157e5c7d8" + }, + "professor_name": "Frederick Hill", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "Dr. Hill was the best professor I have ever had. He is extremely passionate about the topics and forces students to think and actively participate in the discussions. No complaints here! It's rare to find a professor that encourages you to think outside the box and come to your own conclusions. Taking his class has changed my life for the better.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7d9" + } + }, + { + "text": "Great Professor. Very knowledgeable and passionate about subject. Highly recommended...", + "pos": 0.585, + "neu": 0.415, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7da" + } + }, + { + "text": "Good Pof A++++", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7db" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4eecd60fca157e5c7dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eecd60fca157e5c7de" + }, + "professor_name": "A McMichael", + "rating": 3.5, + "department": "Art department", + "comments": [ + { + "text": "While there is a fair amount of memorization, this *is* after all an Art History course,... which equals memorization. Honestly, I can only say good things the class, and I'm not even an Art major. It was enjoyable and interesting. She is a stickler about some things, but she's up front about it and is consistent. She has positive attitude.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7df" + } + }, + { + "text": "Well I just have to say that she made my class memorize 48739485 EXACT dates for 308750234 MILLION sculptures and paintings, which she DID NOT even know. That was pointless of course and made almost have of the class fail.", + "pos": 0.048, + "neu": 0.872, + "neg": 0.08, + "_id": { + "$oid": "6711d4eecd60fca157e5c7e0" + } + }, + { + "text": "She prepares us for the midterm and final. It's just that this class involves a lot of memorization. Overall, she was a clear and informative professor.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7e1" + } + }, + { + "text": "Extremely anal. She makes the class harder than it should be with her OCD. Even though you must submit a copy of your paper to Safe Assign the night before, and therefore its done, if you show up to class on time because you didn't want to be late printing in the lab (like last time)and ask to hand it in immediately after, you go down a grade.", + "pos": 0.116, + "neu": 0.867, + "neg": 0.017, + "_id": { + "$oid": "6711d4eecd60fca157e5c7e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4eecd60fca157e5c7e4" + }, + "professor_name": "Sameh Abdel Azim", + "rating": 4.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Wonderful :)", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7e5" + } + }, + { + "text": "excellent professor. very expert and very helpful.", + "pos": 0.576, + "neu": 0.424, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7e6" + } + }, + { + "text": "Good Prof. he teaches and explains well. He is extremely helpful. In addition, he is a good grader. As far as I heard from other students about Prof. Uyar, Abdelazim seems to be better than Uyar.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d4eecd60fca157e5c7e7" + } + }, + { + "text": "This guy is the TA for Uyar and to me a better teacher. He gets annoyed sometimes but has a better attitude than Uyar and will help you without torturing you like Uyar would do. Also his explanations of what we're suppose to do is very understandable.", + "pos": 0.231, + "neu": 0.693, + "neg": 0.075, + "_id": { + "$oid": "6711d4eecd60fca157e5c7e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4efcd60fca157e5c7ea" + }, + "professor_name": "Seth Carper", + "rating": 4.8, + "department": "Music department", + "comments": [ + { + "text": "He is a really interesting and nice professor. He has a lot of energy and is clear on explaining everything", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d4efcd60fca157e5c7eb" + } + }, + { + "text": "Really easy going and fun professor. He somehow integrates Family Guy, Mr. Bean, and Flight of the Concords into the lectures and its super effective. Definitely recommend taking him.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d4efcd60fca157e5c7ec" + } + }, + { + "text": "Funny guy and his class is pretty chill. Read the book pay attention in class(which isn't hard with this guy) and you'll get an A.", + "pos": 0.248, + "neu": 0.705, + "neg": 0.047, + "_id": { + "$oid": "6711d4efcd60fca157e5c7ed" + } + }, + { + "text": "He is a joy to have as a professor. He manages to make the class fun and interesting. He also explains the material really well. His personality really shows through. He is a cool guy with an awesome sense of humor!", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d4efcd60fca157e5c7ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4efcd60fca157e5c7f0" + }, + "professor_name": "Monika Buczek", + "rating": 4.9, + "department": "Biology department", + "comments": [ + { + "text": "One of the best TAs out there for bio at city college. If you're taking 229, take labs with her. She makes them fun, enjoyable and easy to understand. Just show up, do the lab, and write the lab reports like how she wants them and you'll do good!", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d4efcd60fca157e5c7f1" + } + }, + { + "text": "Very great TA ! one of the best I've had at CCNY. Fairly evaluates your grade and prepares you for lecture and lab exams. Lab with her is not something to stress about, especially with nice tunes playing while doing lab work. Bonus: very pretty!", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d4efcd60fca157e5c7f2" + } + }, + { + "text": "She's honestly the best lab TA there is. If you have her then consider yourself lucky.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d4efcd60fca157e5c7f3" + } + }, + { + "text": "Challenging but worth it- prepared me for bio229 lecture exams. Tough grading on Lab reports.", + "pos": 0.32, + "neu": 0.587, + "neg": 0.093, + "_id": { + "$oid": "6711d4efcd60fca157e5c7f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4efcd60fca157e5c7f6" + }, + "professor_name": "Kathryn Wojtkiewicz", + "rating": 4.5, + "department": "Philosophy department", + "comments": [ + { + "text": "Prof Wojtkiewicz was a really great professor! She's really funny and tries to make the class exciting. Philosophy can get a little boring but she makes it entertaining. She does give pop quizzes, so make sure you complete the readings assigned each week. There were no exams, just 3 papers in total, as well as one in class ethics debate.", + "pos": 0.237, + "neu": 0.705, + "neg": 0.058, + "_id": { + "$oid": "6711d4efcd60fca157e5c7f7" + } + }, + { + "text": "One of my favorite professors, there are lots of readings but she makes it easy to understand in class. Philosophy is hard but she makes it seem fun and interesting. Textbooks aren't required because she posts readings on blackboard. No tests or quizzes, just 2 short papers and 1 long paper. Also one in class debate which is pretty fun!", + "pos": 0.289, + "neu": 0.656, + "neg": 0.055, + "_id": { + "$oid": "6711d4efcd60fca157e5c7f8" + } + }, + { + "text": "A good professor. If you're taking PHI102 to fulfill a requirement and can take her, do it. Participation is important, but standing out isn't hard. Do the readings and you'll never get surprised by the quizzes. Papers are graded fairly and you have plenty of time to write them. 2 minor papers and our larger one. One ethics debate, easy and fun.", + "pos": 0.209, + "neu": 0.763, + "neg": 0.028, + "_id": { + "$oid": "6711d4efcd60fca157e5c7f9" + } + }, + { + "text": "She is a great professor. The class was so much fun and I am not a philosophy major. She gave quizzes not difficult, 3 papers to write and one group debate. She is very helpful, if you have a hard time in this class just talk to her she will try her best to help you. Participate in class, that counts a lot!", + "pos": 0.259, + "neu": 0.723, + "neg": 0.018, + "_id": { + "$oid": "6711d4efcd60fca157e5c7fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f0cd60fca157e5c7fc" + }, + "professor_name": "Marcela Gonzalez", + "rating": 2.4, + "department": "Sociology department", + "comments": [ + { + "text": "I absolutely love this Professor. She is from Argentina which means her accent is very heavy but she is so knowledgeable of the material it doesn't matter. Some students don't listen during lectures, but if you listen to what she is saying you will leave knowing more than what you did coming in, and this is EVERY SINGLE CLASS. Take her!", + "pos": 0.048, + "neu": 0.914, + "neg": 0.038, + "_id": { + "$oid": "6711d4f0cd60fca157e5c7fd" + } + }, + { + "text": "Terrible professor. It's a \"show up and pass\" situation but it won't be an A. Entire class was graded on 4 tangible assignments total outside of class participation which brings me to my next point - her style is BORING. She reads material directly off the book the entire session. Zero effort put into her preparation and lectures.", + "pos": 0.0, + "neu": 0.902, + "neg": 0.098, + "_id": { + "$oid": "6711d4f0cd60fca157e5c7fe" + } + }, + { + "text": "She was my subject professor for FIQWS. She's really chill. She's the type that isnt there for the students but rather for her own research meaning she often cancels class a lot (3day+) After you do a presentation you dont know how you do on it. Because the class is linked up with another prof whatever grade you get there is what she gaves too.", + "pos": 0.0, + "neu": 0.965, + "neg": 0.035, + "_id": { + "$oid": "6711d4f0cd60fca157e5c7ff" + } + }, + { + "text": "not responsible and don't care about student. she often absented or ended the class early. making the course extremely boring just read off things from the textbook. half of class felt asleep or playing on their phone. assigned 2 group presentations but forgot which date for who to presenti, so we wrote a paper instead, very disorganized.", + "pos": 0.023, + "neu": 0.842, + "neg": 0.135, + "_id": { + "$oid": "6711d4f0cd60fca157e5c800" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f0cd60fca157e5c802" + }, + "professor_name": "Lina Garcia", + "rating": 3.8, + "department": "Spanish department", + "comments": [ + { + "text": "I found this class to be difficult and extremely boring. She spends the entire class reading from the textbook and if a student is confused about something and asks a question, she won't answer the question. She will instead casually ask the rest of the class and if they don't know the answer she will most times just move on without explanation.", + "pos": 0.025, + "neu": 0.864, + "neg": 0.11, + "_id": { + "$oid": "6711d4f0cd60fca157e5c803" + } + }, + { + "text": "She's a nice person but if you're taking her 8:00 AM class, good luck. Walking by the class you would imagine its an empty room, that's how quiet it is. She reads straight from the textbook and at times it feels like she doesn't know what she's talking about. This class is BORING. I really wish she did more to make it fun.", + "pos": 0.275, + "neu": 0.65, + "neg": 0.075, + "_id": { + "$oid": "6711d4f0cd60fca157e5c804" + } + }, + { + "text": "Professor Garcia is by far one of the best professors i've had. She is so sweet, caring and humorous. If you are learning/want to learn Spanish she is an amazing instructor to help you with that. She is lenient but you do have to put in the effort if you want to do well. Nonetheless she always is there to help you out. Take her class! :)", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d4f0cd60fca157e5c805" + } + }, + { + "text": "Personally, I found her class very easy but that could be due to the fact that I had taken Spanish previously in high school. But nonetheless, I think she was very clear in her lessons. You get three quizzes and three tests including the final. The quizzes are mainly online.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d4f0cd60fca157e5c806" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f0cd60fca157e5c808" + }, + "professor_name": "Mickey Correa", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Correa is a great professor. His lectures are very informative and he uses his personal experiences as examples when teaching, which gives you good insight. Class is graded on 4 papers and participation. He takes attendance. The topics given for each of the papers is interesting and he isn't a hard grader. Overall, a good experience!", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d4f0cd60fca157e5c809" + } + }, + { + "text": "Professor Correa lectures are great! Theyre very informative and interesting. You can tell that hes passionate about what he teaches. Show up, read the chapters and participate!", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d4f0cd60fca157e5c80a" + } + }, + { + "text": "His class was amazing. I learned so much about Social Work. He teaches you a lot from his personal experiences in social work. There are 4 papers, the first one is a documentary review, the second is about a peer group you have to go to, the third is an interview of a social worker and then a 10pg research paper. He wants you to participate.", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d4f0cd60fca157e5c80b" + } + }, + { + "text": "Class is SO INTERESTING that you don't ever want to miss it. Coursework is manageable: 3 papers and the final is a 10-pg research paper all of which are fairly easy. He dictates his notes, so try not to miss class, because usually the next class he'll give a brief 5 question quiz on what he talked about(not always tho). DEFFF TAKE HIM IF YOU CAN!!", + "pos": 0.138, + "neu": 0.824, + "neg": 0.038, + "_id": { + "$oid": "6711d4f0cd60fca157e5c80c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f1cd60fca157e5c80e" + }, + "professor_name": "Ali Naghdi Tam", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "I took Ali's class last Spring - one of the most interesting/challenging ones I took in college. I'm graduating now w/ a Business & Econ degree. I gained really good knowledge from this class that I'll take with me when I go for my MBA this Fall. Thank you Ali!!! Also thanks for connecting me to some of your industry contacts", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c80f" + } + }, + { + "text": "Ali is a truly caring and amazing professor", + "pos": 0.664, + "neu": 0.336, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c810" + } + }, + { + "text": "Ali is a awesome professor!! I understood the topics better going to his sessions and he explained everything in a clear and helpful way. He also answers emails quick and stayed after class to answer any of my questions. Really nice. Good dude", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c811" + } + }, + { + "text": "I had Professor Tam's class last semester. It was fun.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c812" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f1cd60fca157e5c814" + }, + "professor_name": "Jeffrey Kornhauser", + "rating": 1.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Jeffrey clutches his iPad like someone will take it away from him, every time someone asks a question or corrects one of his mistakes, its almost as if his grip on that electronic apple product gets tighter and he sounds as if he's about to cry. This may sound sad, do NOT feel bad for him. He's not a good teacher, and I fear this will be my end", + "pos": 0.066, + "neu": 0.759, + "neg": 0.175, + "_id": { + "$oid": "6711d4f1cd60fca157e5c815" + } + }, + { + "text": "Nofinal review;hwandquizzes aren't discussed.Grades depend on 1 MIDTERM, quizzes,hw, and the final. During the midterm,a fire drill led to only 5 extra minutes which he considered fair. Just 2 students scored 100. The instructor often makes lecture mistakes.We copy quiz questions from the board,including graph questions insteadofhavingitprintedout", + "pos": 0.046, + "neu": 0.905, + "neg": 0.048, + "_id": { + "$oid": "6711d4f1cd60fca157e5c816" + } + }, + { + "text": "Calculus is hard for most, so it is inevitable that you have to set aside time outside of class to review and practice. He sets reasonable hw to do exactly that, everything taught in lecture is necessary, he grades very fairly- though we only had a midterm and final. A weekly quiz counted too, always with notice. He was generous with curving too.", + "pos": 0.05, + "neu": 0.928, + "neg": 0.021, + "_id": { + "$oid": "6711d4f1cd60fca157e5c817" + } + }, + { + "text": "this man CAN'T teach for his life, makes mistakes while solving equations, thought I was good in math until I took him as a professor. Save yourself the trouble take another professor. class exams average are around 20 out of 100", + "pos": 0.171, + "neu": 0.724, + "neg": 0.105, + "_id": { + "$oid": "6711d4f1cd60fca157e5c818" + } + }, + { + "text": "makes many errors while solving equations. no review for exams. rely on self teaching and YouTube because his lectures will send you to sleep.", + "pos": 0.086, + "neu": 0.75, + "neg": 0.164, + "_id": { + "$oid": "6711d4f1cd60fca157e5c819" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f1cd60fca157e5c81b" + }, + "professor_name": "Elyse Singer", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "Amazing professor. Loved her so much she is very through and loves participation. Email her for anything and she replied back quickly. Always willing to help and very understanding.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c81c" + } + }, + { + "text": "Professor Singer is one of the best professors Ive ever had. She is very enthusiastic teaching the material, which makes everything better. Very caring for her students as she will do whats more convenient for us. Doing all the assignments and showing up to class on time will get you the grade you want. The school needs more professors like her!", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c81d" + } + }, + { + "text": "Professor Singer's lectures are great; they give insight to the plays and how they relate in modern society. As long as you read the plays, you should be fine for the quizzes. If you need help writing the play-review essays, she is accessible outside of class. Overall, her class was fun and your grade will be well-earned if you put work into it!", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c81e" + } + }, + { + "text": "Allows late assignment without any penalty and attendance is important. Her class consists of quizzes (almost every week) but if you do the reading, you'll be fine. You need to do a report on 3 school productions and a final report on a Broadway show. She's very understanding and allows late assignments without penalty. A very easy going class.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d4f1cd60fca157e5c81f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f2cd60fca157e5c821" + }, + "professor_name": "Pilar Newton", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Professor Pilar is one of the most joyful people I have met. She is as bubbly and animated as the cartoons we watch in class! She also structures her class to make the workload manageable, so even though we produced a number of animation projects and covered quite a bit of material, it didn't feel stressful.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c822" + } + }, + { + "text": "Wow I can't even begin to explain how amazing this professor is. No matter what you're doing through, she's always understanding and cares about her students. Her assignments can be difficult if you're not too familiar with animation but she teaches in such a fun way. A professor who's funny and makes you feel good about yourself, take her!", + "pos": 0.263, + "neu": 0.698, + "neg": 0.038, + "_id": { + "$oid": "6711d4f2cd60fca157e5c823" + } + }, + { + "text": "Show up, do the work, and you'll be good to go. She's hilarious and will try to be as helpful as possible. This course is not hard, but do not underestimate it, it's time-consuming.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c824" + } + }, + { + "text": "show up for class and do what you gotta do . do all her projects and you will be good. she shows you how to do 2D Animation Principles. she is a very caring professor. she would help you on anything you need, and she would help you out of class. she goes way beyond to help out her students, i would so take her again.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c825" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f2cd60fca157e5c827" + }, + "professor_name": "Lois Martin", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "While her classes are lecture heavy, she is an amazing professor who loves the content and her students. She truly cares about her students. Professor Martin will make you understand and actually be invested in the material! Reading is key in her class but also goes over the material in lectures.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c828" + } + }, + { + "text": "Professor Martin is a wonderful person. Her class was extremely challenging but I learned a ton and she was kind and caring. I took her class in Mesoamerican Art History and it changed my life. The readings are rigorous and homework is challenging but she gives great feedback and wants you to do well. There is no ego with this class. A+ Professor!", + "pos": 0.281, + "neu": 0.653, + "neg": 0.066, + "_id": { + "$oid": "6711d4f2cd60fca157e5c829" + } + }, + { + "text": "Shes knowledgeable and a great professor. Her knowledge of Mesoamerican/Andean art and culture is vast. I strongly recommend that you ask her questions during and outside of class if youre invested in the subject. Also, shes an easy A if you do all (most of) the work well.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c82a" + } + }, + { + "text": "Lois Martin is a gem. She teaches Mesoamerican Art History Amazingly. She cares for her students. Her homework consist of reading a chapter in the book and write 3 key paragraphs. One paper about a museum object of your choice from Central, Caribbean, or South America. Some map quizzes. one presentation. and a midterm/final. She' easy no worries.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c82b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f2cd60fca157e5c82d" + }, + "professor_name": "Robert Malera", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "I LOVE this class. There is a fair amount of work but it is completely manageable. Bob is a kind and funny professors. His lectures are extremely interesting and since they're 50 mins they go by quick. If you put in some effort you will get a good grade.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c82e" + } + }, + { + "text": "He is a great teacher, he will respect you no matter what. He is a true g and his lectures are fun. There might be a lot of papers and Homeworks to do but they are all bearable.", + "pos": 0.203, + "neu": 0.773, + "neg": 0.024, + "_id": { + "$oid": "6711d4f2cd60fca157e5c82f" + } + }, + { + "text": "Bob is the best teacher at city. His passion for psychology is clear and its also clear that he wants you to succeed just don't give him any b.s because he will see through it. Quiz every class but should be easy if you pay attention to the lecture and take notes, exams and papers are pretty straight forward, he recycles questions!", + "pos": 0.279, + "neu": 0.7, + "neg": 0.021, + "_id": { + "$oid": "6711d4f2cd60fca157e5c830" + } + }, + { + "text": "Bob teaches the lecture classes so he doesnt rlly assign the work or grade anything cause it all depends on your TA, but hes definitely the best person to learn psych from. Knows what hes talking about and very loveable as a professor.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d4f2cd60fca157e5c831" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f3cd60fca157e5c833" + }, + "professor_name": "Shangoon Lee", + "rating": 3.5, + "department": "Economics department", + "comments": [ + { + "text": "If you want to learn statistics, he is the way to go. His patience and method are unparalleled. He takes a very methodic approach to every topic and if you pay attention, you will learn stuff that you will use for the rest of your professional life. If you paid attention during the semester, his exams should be a breeze. \"Not too easy\" is not bad.", + "pos": 0.059, + "neu": 0.886, + "neg": 0.054, + "_id": { + "$oid": "6711d4f3cd60fca157e5c834" + } + }, + { + "text": "This professor is a JOKE. He is NOT an easy A, nor will you learn anything in his class. Our supposed \"midterm\" was his way of \"torturing\" students. His words, not mine. DONT take him. Wait until the summer and take Jelen or something.", + "pos": 0.058, + "neu": 0.814, + "neg": 0.127, + "_id": { + "$oid": "6711d4f3cd60fca157e5c835" + } + }, + { + "text": "he's a good professor. Take him u have the chance. Lots of hwks, midterm and final...He curves :) and he tries to advise students concerning their major.Sometimes he's even funny and friendly...I like him and i'd take him again if i had to", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d4f3cd60fca157e5c836" + } + }, + { + "text": "he is good. he gives the same home work to every class. he never changes his work. good to take him. no attendence at all!!", + "pos": 0.209, + "neu": 0.719, + "neg": 0.072, + "_id": { + "$oid": "6711d4f3cd60fca157e5c837" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f3cd60fca157e5c839" + }, + "professor_name": "Seth Offenbach", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "Very critical professor when it comes to writing. Take lots of notes . He gives you everything he wants in his notes for exams and he repeats and emphasizes to hint for you to take it down. Read the text to understand it better and answer questions in class. He expects for you to participate. Give him that and you can def get a good grade.", + "pos": 0.081, + "neu": 0.882, + "neg": 0.036, + "_id": { + "$oid": "6711d4f3cd60fca157e5c83a" + } + }, + { + "text": "Had him at bronx community college. Great professor tough grader he seems to be a qualitative so keep it short and sweet and exactly what he wants", + "pos": 0.218, + "neu": 0.736, + "neg": 0.046, + "_id": { + "$oid": "6711d4f3cd60fca157e5c83b" + } + }, + { + "text": "He is awesome. I hate history in general but he makes it sound interesting and I actually learned so much about the US history than any of my other history courses. You don't have to read the book to pass the class but the textbook he used was interesting. he is helps out with papers a lot and an easy A if you just pay attention in class.", + "pos": 0.206, + "neu": 0.745, + "neg": 0.048, + "_id": { + "$oid": "6711d4f3cd60fca157e5c83c" + } + }, + { + "text": "Prof.Offenbach is an adjunct from Stony. His lectures are entertaining and his availability is flexible. Do all his extra credit & make sure to go to every class. There isn't a textbook. Even though he doesn't officially take attendance he'll mark you absent once he knows your face! On the papers, get a clear thesis!", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d4f3cd60fca157e5c83d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f3cd60fca157e5c83f" + }, + "professor_name": "Elliot Schrock", + "rating": 2.8, + "department": "Mathematics department", + "comments": [ + { + "text": "he is a funny teacher, young and tries to relate to students. however he is confusing at times and doesnt have a clear way of teaching. and in math everything needs to be clear", + "pos": 0.139, + "neu": 0.758, + "neg": 0.103, + "_id": { + "$oid": "6711d4f3cd60fca157e5c840" + } + }, + { + "text": "a real nice guy, but does not know how to teach.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d4f3cd60fca157e5c841" + } + }, + { + "text": "He's genuinely a really nice guy but he really does NOT know how to teach. He comes to class unprepared and makes up the lecture on the day of the class by basically reading off the textbook. He is really bad at explaining things and unclear on how to do the problem himself. Also he needs to stop leaving problems unsolved all the time.", + "pos": 0.026, + "neu": 0.747, + "neg": 0.227, + "_id": { + "$oid": "6711d4f3cd60fca157e5c842" + } + }, + { + "text": "He is an interesting teacher. Although he makes plenty of mistakes, he in fun and will provide nickles for those you corrects him. Over all Elliot is well down to earth and doesnt mind helping students out as long as they meet up with him at the Towers!", + "pos": 0.15, + "neu": 0.771, + "neg": 0.079, + "_id": { + "$oid": "6711d4f3cd60fca157e5c843" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f4cd60fca157e5c845" + }, + "professor_name": "Mark Robertson", + "rating": 3.3, + "department": "Philosophy department", + "comments": [ + { + "text": "Pop quizzes based on readings. Quizzes ask for specific information, and sometimes ask for terms or phrases used in the reading. Quizzes are a good portion of the final grade. All readings and powerpoint are online. Gives 3 paper assignments. The lowest paper gets weighted less than the other 2. Gives questions for final beforehand.", + "pos": 0.05, + "neu": 0.906, + "neg": 0.044, + "_id": { + "$oid": "6711d4f4cd60fca157e5c846" + } + }, + { + "text": "Readings are online. Loves popquizes. Readings are confusing. Participation and attendance required.", + "pos": 0.237, + "neu": 0.641, + "neg": 0.122, + "_id": { + "$oid": "6711d4f4cd60fca157e5c847" + } + }, + { + "text": "Tough grader and loves pop quizzes... simply annoying, not even hard.", + "pos": 0.308, + "neu": 0.432, + "neg": 0.259, + "_id": { + "$oid": "6711d4f4cd60fca157e5c848" + } + }, + { + "text": "Fair", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4f4cd60fca157e5c849" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f4cd60fca157e5c84b" + }, + "professor_name": "Evelyn Reid", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "well she is pretty cool at first but in the middle of the semester she gets tougher, and i find that she is never 100% satisfy with your answers.", + "pos": 0.213, + "neu": 0.694, + "neg": 0.093, + "_id": { + "$oid": "6711d4f4cd60fca157e5c84c" + } + }, + { + "text": "She was tough, but to be honest she gave everyone a lot of chances. Another prof might be easier. If you do the work and go to class, you'll do fine. Always willing to stay after class to help you.", + "pos": 0.314, + "neu": 0.662, + "neg": 0.024, + "_id": { + "$oid": "6711d4f4cd60fca157e5c84d" + } + }, + { + "text": "Prof. Reid was awesome. I had her when I was a freshman for FIQWS and she really tried to bring the material together. She's not a very easy grader, so be mindful lof what you write and how you write for her papers.", + "pos": 0.086, + "neu": 0.859, + "neg": 0.055, + "_id": { + "$oid": "6711d4f4cd60fca157e5c84e" + } + }, + { + "text": "She is good, gives you alot of rope to hang your self with and really challenges and helps you write better and more organized. She is a stickler for a good thesis with strong scenerios... to support it!!! She gives you alot of time but do it all!!! Dont give up!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d4f4cd60fca157e5c84f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f4cd60fca157e5c851" + }, + "professor_name": "Je Hyun Ro", + "rating": 4.9, + "department": "Mathematics department", + "comments": [ + { + "text": "Quizzes every week, extremely through with the material, drops lowest grade, very motivational and funny, knows his material and how to teach it! He definitely enjoys teaching because he is great at it!! Take notes, pay attention and do the HW, you will get an A! Amazing professor hands down!!Take him you will be happy and grateful you did!!!!", + "pos": 0.316, + "neu": 0.633, + "neg": 0.051, + "_id": { + "$oid": "6711d4f4cd60fca157e5c852" + } + }, + { + "text": "Expect him to give you lots of quizzes as attendance is mandatory in order to pass. He drops the lowest quiz and test grade as well. He's very clear and hilarious when it comes to the lessons. Do not expect so much homework for him as he only assigns one excel assignment. He's a really great professor to take!", + "pos": 0.237, + "neu": 0.727, + "neg": 0.036, + "_id": { + "$oid": "6711d4f4cd60fca157e5c853" + } + }, + { + "text": "One of the best professors ever. He explains everything, and if you don't he'll go over it until you do. He goes over the HW, quizzes and test so you know what you did wrong. I would take his class again.", + "pos": 0.091, + "neu": 0.842, + "neg": 0.067, + "_id": { + "$oid": "6711d4f4cd60fca157e5c854" + } + }, + { + "text": "He is definitely the best math professor I've ever had. If you come to every class and do every example and homework, there's no way you'll get lower than an A-. He genuinely cares about his students. I would take him for every math class. The best!", + "pos": 0.241, + "neu": 0.686, + "neg": 0.074, + "_id": { + "$oid": "6711d4f4cd60fca157e5c855" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f5cd60fca157e5c857" + }, + "professor_name": "Tova Lane", + "rating": 3.6, + "department": "Psychology department", + "comments": [ + { + "text": "Very nice and understanding. Had a few times that I handed my assignments in a few minutes late, or my online submission did not work and I was able to email her the paper, video, or slideshow. Overall I enjoyed her course.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d4f5cd60fca157e5c858" + } + }, + { + "text": "She was a horrible professor. The group project was a waste of time because she could have taken the time to go over exam questions and prep for the final. Her questions for exams are extremely tricky and she's just overall very disorganized.", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d4f5cd60fca157e5c859" + } + }, + { + "text": "She's a very nice person, but a bit of a difficult professor. No matter how much you read and study, her tests are impossible. You may know the material but it's so difficult to use that knowledge to answer her test questions. She also tends to change the syllabus up a few times so it gets confusing.", + "pos": 0.031, + "neu": 0.794, + "neg": 0.175, + "_id": { + "$oid": "6711d4f5cd60fca157e5c85a" + } + }, + { + "text": "She is super nice and sweet, gives extra credit but her tests are INSANE I would avoid simply because these test are crazy. I don't mind working for my grade but seriously way too difficult. I took cognitive and even that was easier. And textbook is insanely boring as well.", + "pos": 0.203, + "neu": 0.533, + "neg": 0.264, + "_id": { + "$oid": "6711d4f5cd60fca157e5c85b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f5cd60fca157e5c85d" + }, + "professor_name": "Lucia Brea", + "rating": 2.3, + "department": "Sociology department", + "comments": [ + { + "text": "Very good professor, cares for her students and is accessible by email and in person. Easy to talk to and can negotiate with due dates. Be ready to work in class and have in-class discussions (and discussion board). Midterm and final papers are writing heavy.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d4f5cd60fca157e5c85e" + } + }, + { + "text": "Scheduled lectures were never part of this course so why did she decide 1 month into a pandemic to start them? Why assume that we would be home at all hours of the day ready for class whenever she saw fit? She cares more about you checking her arbitrary boxes than the quality of your work. Dont risk your GPA. Would be an easy A with a sensible prof", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d4f5cd60fca157e5c85f" + } + }, + { + "text": "Professor Brea is not only sometimes rude but she is also a tough grader. She takes a lot of points off for grammatical errors when in doubt you try your best. She decides mid-semester to start having zoom calls after seeing that all classes transitioned to online. This is not apart of our syllabus. Do not take her if you want your GPA to lower.", + "pos": 0.115, + "neu": 0.745, + "neg": 0.14, + "_id": { + "$oid": "6711d4f5cd60fca157e5c860" + } + }, + { + "text": "Her class is not difficult but she ignored my messages about the class requirements during winter semester. Not very caring approach.", + "pos": 0.059, + "neu": 0.685, + "neg": 0.256, + "_id": { + "$oid": "6711d4f5cd60fca157e5c861" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f5cd60fca157e5c863" + }, + "professor_name": "Irene Maslowski", + "rating": 3, + "department": "Media Arts department", + "comments": [ + { + "text": "People be thinking college is high school or something cuz previous posts complaining about the work load being heavy when it was the bare minimum. The work was announced weeks prior the due date so you can track your own time well and even she asks for students opinions while being professional. Amazing professors & lectures", + "pos": 0.097, + "neu": 0.873, + "neg": 0.03, + "_id": { + "$oid": "6711d4f5cd60fca157e5c864" + } + }, + { + "text": "Ignore the previous poster. I've had Prof. Maslowksi for MCA 209; she was a wonder to be taught by. She made me feel welcome to the AD/PR major, and she's not overly strict at all. She's accessible outside of class, and overall a good professor. I do not recommend skipping this class or falling asleep in it! You'll miss valuable knowledge that way!", + "pos": 0.131, + "neu": 0.763, + "neg": 0.106, + "_id": { + "$oid": "6711d4f5cd60fca157e5c865" + } + }, + { + "text": "The Worse teacher I've ever had at CCNY she makes you feel like you don't belong in the AD/PR program. The third assignment was 40 paragraphs something I've never ever experienced in my life. Lectures are extremely boring and have nothing to do with the assignments wouldn't recommend taking just comes across as very stuck up and not helpful.", + "pos": 0.037, + "neu": 0.78, + "neg": 0.183, + "_id": { + "$oid": "6711d4f5cd60fca157e5c866" + } + }, + { + "text": "Honestly, if I had the option I wouldn't take it again Way too many essays which was super annoying to try to keep up with other classes and work and the pandemic going on I would choose another professor", + "pos": 0.151, + "neu": 0.789, + "neg": 0.059, + "_id": { + "$oid": "6711d4f5cd60fca157e5c867" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f6cd60fca157e5c869" + }, + "professor_name": "Ankita Aggarwal", + "rating": 2.8, + "department": "Political Science department", + "comments": [ + { + "text": "I enjoyed her class. I took it over the winter so it was a shorter amount of time and more material to go through. We had quizzes (not all counted), papers, and participation was key. She's very sweet, her accent is not that heavy. The only thing irritating was the internet connection, but I do not blame her for that. Everyone spoke their opinions.", + "pos": 0.099, + "neu": 0.871, + "neg": 0.029, + "_id": { + "$oid": "6711d4f6cd60fca157e5c86a" + } + }, + { + "text": "She is very educated and her accent can be understood even if English is not your first language. Assignments are weekly quizzes on a google doc based on the readings, and a final paper. The paper is split up throughout the semester, so if you hand them in by the deadline, you'll be fine. She gives great feedback on it as well. Great professor!", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c86b" + } + }, + { + "text": "She is easy but does not really teach", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c86c" + } + }, + { + "text": "Shes so uneducated and unprofessional her accent so heavy you cant understand nothing that she says. Dont take her! Students literally be teaching the class there and if one of them disrespect you because they didnt agree with you she doesnt step up as a teacher!", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d4f6cd60fca157e5c86d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f6cd60fca157e5c86f" + }, + "professor_name": "Sharon White-Harrigan", + "rating": 5, + "department": "Women's Studies department", + "comments": [ + { + "text": "Professor Sharon White-Harrigan is an amazing woman. She cares for her students well-being, how they are doing mentally, physically, emotionally and even how they are performing in school. Her class is a must if you want to learn about the injustices many women are faced with in DV relationships. She is a great person and her class is an easy A imo", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c870" + } + }, + { + "text": "I loved this class so much she's a great elective to take. I took this class on Saturdays where we often would share personal experiences relating to the topic or movie she gave for homework 100% take her again. TAKE TAKE TAKE good boost for GPA", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c871" + } + }, + { + "text": "A true gem. I took her class in Fall 2020 amidst covid and she was such a breath fresh air. Barely any work other than some movies and feedback papers. Her story is incredible and she is an inspiration. She creates a safe space for each student to share and heal. TAKE HER!! YOU WONT REGRET IT. As long as you show up and participate, its an easy A", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c872" + } + }, + { + "text": "I am currently taking Professor Sharon's winter course. I am so happy with how well she has been communicating with us. Because this is a winter class it is asynchronous but she clearly details everything out and replies to emails quickly. She seems very sweet and I'm enjoying the class so far!", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c873" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f6cd60fca157e5c875" + }, + "professor_name": "John Connor", + "rating": 4.8, + "department": "Computer Science department", + "comments": [ + { + "text": "Calm vibes and laidback. What more can you ask for? I think he's tired of this pandemic ... but as students, we are too :)", + "pos": 0.231, + "neu": 0.704, + "neg": 0.065, + "_id": { + "$oid": "6711d4f6cd60fca157e5c876" + } + }, + { + "text": "I wish he taught every single CS class at CCNY and I would take him for all. He gives you peace of mind, very laid back and also teaches well. Makes it enjoyable", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c877" + } + }, + { + "text": "Really great guy, there are quizzes every week, 1 midterm and 1 final. They are all pretty fair but he grades a bit harshly. Also one group project and presentation but grades pretty leniently on that. Very easy person to talk to and get to know, lectures are better than most at this school.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d4f6cd60fca157e5c878" + } + }, + { + "text": "Industry experience, and trys to tie the material to the real world. Kind of a harsh grader, and there are a lot of group projects, but still one of my fav classes / profs.", + "pos": 0.105, + "neu": 0.843, + "neg": 0.051, + "_id": { + "$oid": "6711d4f6cd60fca157e5c879" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f7cd60fca157e5c87b" + }, + "professor_name": "Amal Fares", + "rating": 4.8, + "department": "Economics department", + "comments": [ + { + "text": "I took her asynchronously but it was pretty good, she was always available for Chapter reviews if you needed the help. Overall, she really cared about the students and tried to help us. The tests and content were a bit different depending on the chapter/unit.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d4f7cd60fca157e5c87c" + } + }, + { + "text": "I took Amal back in Fall 2019 when she was a TA for my management class. She's a total gem. She actually knows what she's talking about and will help you if you don't understand a concept. Would totally recommend.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d4f7cd60fca157e5c87d" + } + }, + { + "text": "Professor Fares made an instant change to her syllabus when she saw that half of her class performed poorly on her first exam. She then changed the test dates and made the tests shorter. She also had review days before tests. No homework, attendance isn't required but she is good with faces and will remember you if you go to class often.", + "pos": 0.059, + "neu": 0.917, + "neg": 0.024, + "_id": { + "$oid": "6711d4f7cd60fca157e5c87e" + } + }, + { + "text": "Prof Fares really wants her students to pass. No HW, only graded on 3 exams, all multiple choice. Initially only 3 exams but she saw we did bad on first exam, so she split 2nd exam into 2 parts and added another exam so we had a chance to bump our grades. Attendance was not mandatory but she keeps tabs on who shows up. Slides are posted on BB.", + "pos": 0.033, + "neu": 0.865, + "neg": 0.102, + "_id": { + "$oid": "6711d4f7cd60fca157e5c87f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f7cd60fca157e5c881" + }, + "professor_name": "Biswajit Datta", + "rating": 5, + "department": "Physics department", + "comments": [ + { + "text": ".", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4f7cd60fca157e5c882" + } + }, + { + "text": "Datta is such a delightful TA. He's very easygoing and always comes to work with a smile on his face. He does his best to explain even the simplest concepts to his students (whether that be verbally or visually via chalkboard). While Datta is a very thorough grader, he's always willing to meet with students as well as provide insight and feedback.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d4f7cd60fca157e5c883" + } + }, + { + "text": "I am glad that he was a TA in my physics 203 lab. Explained the material really well and pretty laid back", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d4f7cd60fca157e5c884" + } + }, + { + "text": "He explained the material very well and was always accessible.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d4f7cd60fca157e5c885" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f8cd60fca157e5c887" + }, + "professor_name": "Jwendlen Nivens", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Professor Nivens is goated. His way of teaching is different than any teacher I ever had. He made all of our sessions so enjoyable and engaging. From the first day to tue last day I never get bored once. Each discussions we had was so meaningful and taught me a lot about professional life. Definitely Recommend this class.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d4f8cd60fca157e5c888" + } + }, + { + "text": "SOOOOOO AMAZING! love love love this professor! nothing bad to say about him. I could write an essay on how caring, kind and respectful he is. He genuinely wants to hear his students talk and he genuinely cares about them. Loved his class, and I wish I could take it all over again!!", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d4f8cd60fca157e5c889" + } + }, + { + "text": "LOVED this man. He was a great professor and he pushed me to be the best I can be, as both a writer and a student. The class was very enjoyable. It was funny, engaging, and my peers were very understanding. It was slightly confusing at times, but I loved the class. Nothing bad to say at all. Professor Nivens is awesome!", + "pos": 0.351, + "neu": 0.634, + "neg": 0.016, + "_id": { + "$oid": "6711d4f8cd60fca157e5c88a" + } + }, + { + "text": "This class was genuinely amazing. I never felt so heard as a writer. This professor made me find my own voice and taught me never to be afraid or allow anyone to put me down and that I do matter. He made me actually like English and made me enjoy writing essays.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d4f8cd60fca157e5c88b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f8cd60fca157e5c88d" + }, + "professor_name": "Shailesh Thacker", + "rating": 3.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Very lenient with the assignments. He allows 2 attempts on the quizzes and only submits the better grade. He is very quick with replying to emails and will try his best to address your concerns. He uses the Cengage Mindtap platform for homework. Be aware that statistics is not an easy course so you have to put a lot of effort into the class.", + "pos": 0.132, + "neu": 0.835, + "neg": 0.033, + "_id": { + "$oid": "6711d4f8cd60fca157e5c88e" + } + }, + { + "text": "This was only an asynchronous course so I'm not sure how she is in person, but she was very understanding despite not coming off as such in her syllabus. I had missed some assignments due to a misunderstanding I had, but she still allowed me to make them up with no penalty. I would highly recommend taking her class.", + "pos": 0.1, + "neu": 0.782, + "neg": 0.118, + "_id": { + "$oid": "6711d4f8cd60fca157e5c88f" + } + }, + { + "text": "Honestly this professor is okay and does allow you to make up missing assignments. The issue is that this class is very difficult especially online. Even if you try your best, it seems that you will not pass the class unless you fully understand the content. The only reference you have is the textbook/ and homework review which is time consuming.", + "pos": 0.155, + "neu": 0.775, + "neg": 0.07, + "_id": { + "$oid": "6711d4f8cd60fca157e5c890" + } + }, + { + "text": "He encourages his students to do better in Midterms and Finals by dedicating some of the lectures for review. He tries to make his lectures fit the needs of the students. You should expect a quiz each class.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d4f8cd60fca157e5c891" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f8cd60fca157e5c893" + }, + "professor_name": "Demetra Binder", + "rating": 4.1, + "department": "Education department", + "comments": [ + { + "text": "I like Professor Binder! Clear grading criteria and detailed expectations on assignments. She assigns modules that require reflecting on your teaching and daily discussion boards. Very good so far!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d4f8cd60fca157e5c894" + } + }, + { + "text": "She is an easy grader, as long as you get the work done you get an A+. She is very disorganized and often assignment instructions are vague and sometimes is hard to get a hold of her.", + "pos": 0.07, + "neu": 0.801, + "neg": 0.128, + "_id": { + "$oid": "6711d4f8cd60fca157e5c895" + } + }, + { + "text": "Professor Binder is a pretty cool professor. She is lenient, fair and comprehensive. She also understands and respects that students have responsibilities outside of the school and gives an ample amount of time to complete assignments. I would take another class with her.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d4f8cd60fca157e5c896" + } + }, + { + "text": "I took her summer course SPED 3300K, she was funny and easy-going. I would definitely take her again.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d4f8cd60fca157e5c897" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f9cd60fca157e5c899" + }, + "professor_name": "Charles V\u00f6r\u00f6smarty", + "rating": 2.6, + "department": "Civil Engineering department", + "comments": [ + { + "text": "While he is very intelligent and accomplished, he should not be teaching. He conveys even the most basic ideas in convoluted, confusing ways and I spent the course relying on prior knowledge. He is incredibly inconsistent with directions and the projects are all excessively confusing solely because of his directions, not their substance.", + "pos": 0.109, + "neu": 0.827, + "neg": 0.064, + "_id": { + "$oid": "6711d4f9cd60fca157e5c89a" + } + }, + { + "text": "If you are not White, be ready to get a poor grade! He also doesn't like some minority religious people. Even if he manages to hide his feelings, you will understand it through your grade (will limit you to C/D). He is not smart with technical issues like Blackboard. He even gives statement privately, which are not true to make someone's grade bad.", + "pos": 0.033, + "neu": 0.734, + "neg": 0.232, + "_id": { + "$oid": "6711d4f9cd60fca157e5c89b" + } + }, + { + "text": "He is really good . If u improve as per his feedback he will definitely appreciate u.", + "pos": 0.469, + "neu": 0.531, + "neg": 0.0, + "_id": { + "$oid": "6711d4f9cd60fca157e5c89c" + } + }, + { + "text": "You will learn how to think like a scientist.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d4f9cd60fca157e5c89d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f9cd60fca157e5c89f" + }, + "professor_name": "Esther Bernstein", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Very engaging and interesting class. A very good professor who sparked my interest in the readings and the class overall. Had three papers and drops tho lowest score. Class discussions were engaging and fun. Would definitely take again.", + "pos": 0.383, + "neu": 0.568, + "neg": 0.049, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a0" + } + }, + { + "text": "She's a really good professor. The content is kinda boring but the class is very straight forward. If you do the basic work you should easily get an A grade. She also drops the lowest paper grade!", + "pos": 0.183, + "neu": 0.708, + "neg": 0.109, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a1" + } + }, + { + "text": "This class was boring and her handwriting is very hard to read. She gives difficult assignments and is a tough grader. If you like British Literature then go for it but I really couldn't stand this class.", + "pos": 0.044, + "neu": 0.805, + "neg": 0.151, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a4" + }, + "professor_name": "Jacquelyn Balchi", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "All I have to say is that shes the WORST professir ever.", + "pos": 0.0, + "neu": 0.695, + "neg": 0.305, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a5" + } + }, + { + "text": "Do no take. She rushes when explaining something and assumes you know everything from the previous class. She calls it \"basic material\". She makes everything complicated.", + "pos": 0.0, + "neu": 0.919, + "neg": 0.081, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a6" + } + }, + { + "text": "She teaches well. HOWEVER, the test are overly hard. She will put things on the test that you rarely go over in class. A lot of online homework.. The average amount of questions for Hw is 50. So.. take her at your own risk.", + "pos": 0.045, + "neu": 0.88, + "neg": 0.075, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4f9cd60fca157e5c8a9" + }, + "professor_name": "Sally Gross", + "rating": 3.5, + "department": "Theater department", + "comments": [ + { + "text": "If you just want to be lazy, don't take this class. Students have to take the class seriously and go to class on time. I really liked the Tai Chi and wanted to do more. Sally was a great teacher. Loved her and her sprits..", + "pos": 0.223, + "neu": 0.702, + "neg": 0.076, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8aa" + } + }, + { + "text": "If someone can make something as Tai chi, which is suppose to be a peaceful art, stressful and scary,it's her! She is extremely strict w/attendance.She takes off 10% of your final grade for 1 unexscused absence.She has favorites in class.she has a v. bad habbit of YELLING at people who dont get her moves, look at the clock, laugh, or are tired.", + "pos": 0.127, + "neu": 0.741, + "neg": 0.132, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8ab" + } + }, + { + "text": "Many different moves to learn, if you arrive late you will be lost. If she sees you're trying to learn she'll back you up. SHe is always available for extra help. It's great to see an older woman as active as Sallyy is. The only old thing about her is her age.", + "pos": 0.159, + "neu": 0.803, + "neg": 0.038, + "_id": { + "$oid": "6711d4f9cd60fca157e5c8ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4facd60fca157e5c8ae" + }, + "professor_name": "James De Jongh", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "De Jongh is De Old, but he's De Cool.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d4facd60fca157e5c8af" + } + }, + { + "text": "Nice guy who is also very smart but the class isn't engaged. Often quite boring...", + "pos": 0.184, + "neu": 0.52, + "neg": 0.296, + "_id": { + "$oid": "6711d4facd60fca157e5c8b0" + } + }, + { + "text": "wasn't diffuclt for me. it will be hard for u if u don't do any of the papers, and dont study for his exams. his reviews are quite straightforward we had 6 papers to do and 2 exams. i took his class in spr 07 so dont kno if he still does this the class is quite boring he uses slides the rm is dark we were assigned 4 bks and only used 2.", + "pos": 0.0, + "neu": 0.947, + "neg": 0.053, + "_id": { + "$oid": "6711d4facd60fca157e5c8b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4facd60fca157e5c8b3" + }, + "professor_name": "Emlyn Taveras", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "had this class for my major. She's an artist and that comes through in her assignments. Really enjoyed the class and all the activities. If you miss a class you will be behind. Classes are too fun to miss. Go. not an easy A but a fun A.", + "pos": 0.161, + "neu": 0.761, + "neg": 0.078, + "_id": { + "$oid": "6711d4facd60fca157e5c8b4" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d4facd60fca157e5c8b5" + } + }, + { + "text": "THIS IS CLASS IS REQUIRED FOR MY MAJOR. THE PROFESSOR IS SWEET AND HELPFULL. DO THE WORK YOU WILL PASS THE CLASS. YOU CANT MISS ANY CLASSES THOUGH OR YOU WILL BE BEHIND. THERE ARE NO EXAMS. JUST 5 ONE PAGE PAPERS. SHE'S GREAT!!", + "pos": 0.206, + "neu": 0.74, + "neg": 0.054, + "_id": { + "$oid": "6711d4facd60fca157e5c8b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4facd60fca157e5c8b8" + }, + "professor_name": "Selwyn Williams", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Professor williams is an excellent teacher.Very supportive and helpful. I am very proud to be his student.", + "pos": 0.482, + "neu": 0.518, + "neg": 0.0, + "_id": { + "$oid": "6711d4facd60fca157e5c8b9" + } + }, + { + "text": "Great...no superb professor, i actually learnt something. of course i loved asking questions but he was sooooo fair", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d4facd60fca157e5c8ba" + } + }, + { + "text": "Great professor and very hot", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d4facd60fca157e5c8bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fbcd60fca157e5c8bd" + }, + "professor_name": "Joni Kolman", + "rating": 4.8, + "department": "Education department", + "comments": [ + { + "text": "Great professor. Changes the syllabus a bit but only for our benefit (cancelled a few assignments). But overall very caring and understanding! Funny as well.", + "pos": 0.457, + "neu": 0.48, + "neg": 0.063, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8be" + } + }, + { + "text": "I had her as my students teaching supervisor, and the seminar teacher. She is experienced and she knows her job. She helps a lot is learning how to teach and how to do your edTPA. She is hard though. You may feel too much pressure at the beginning. The first two observations she gives you low grades, but finally grades you by your improvement.", + "pos": 0.084, + "neu": 0.853, + "neg": 0.063, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8bf" + } + }, + { + "text": "She gives good information on the class she teaches, well informed and experienced.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c2" + }, + "professor_name": "Zaheer Ali", + "rating": 5, + "department": "African-American Studies department", + "comments": [ + { + "text": "BEST PROFESSOR EVER! he lets you know what he is exactly expecting, spends time explaining each assignment, very fair and understanding, very fun! you will get an A if you listen in class!", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c3" + } + }, + { + "text": "Professor Ali teaches Black History perfectly. There are no bias in this important course that will open your eyes about the world. Everyone should take this Malcolm X course if you want to know who you are and what you represent in society.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c4" + } + }, + { + "text": "Prof Ali is awesome! his malcolm x class is extremely interesting and class discussions are very enjoyable! you must read to participate in class discussions or at least skim. He gives a midterm exam which he gives you a study guide with the exact questions(he just wants his students to read) and a take home final. Easy if you read &come to class", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c7" + }, + "professor_name": "Abbas Fatimah", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Aubbah is the best!!! Her class made chemistry so easy for me, I went to her recitation and did her worksheets and it made my life so much easier. She is a great teacher, takes her time to explain the material, moves at a reasonable pace, and is absolutely amazing. She inspired me to do the best I could and made Chem103 the best intro class ever!!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c8" + } + }, + { + "text": "Aubbah is the main reason I got an A in chem. Go to her recitation and practice the worksheets, they are gold!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8c9" + } + }, + { + "text": "One word... a m a z i n g !", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4fbcd60fca157e5c8ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fccd60fca157e5c8cc" + }, + "professor_name": "Yu Zhang-Koslovsky", + "rating": 2, + "department": "Music department", + "comments": [ + { + "text": "Prof was cold to students and aggressively grabbed hands while we were playing piano, routinely breaking with personal space. I remember a classmate who was proud of what she had learned and the prof cut her short and said that she played at a 5 year old's level. Many students dropped the class.", + "pos": 0.122, + "neu": 0.804, + "neg": 0.074, + "_id": { + "$oid": "6711d4fccd60fca157e5c8cd" + } + }, + { + "text": "She's very tough... That's all", + "pos": 0.0, + "neu": 0.69, + "neg": 0.31, + "_id": { + "$oid": "6711d4fccd60fca157e5c8ce" + } + }, + { + "text": "Tests are hard. If you're not a music major, then don't take the class. Great musician. Coursework expectations may be a bit confusing.", + "pos": 0.15, + "neu": 0.73, + "neg": 0.12, + "_id": { + "$oid": "6711d4fccd60fca157e5c8cf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fccd60fca157e5c8d1" + }, + "professor_name": "Jong Wanbaik", + "rating": 1.9, + "department": "Political Science department", + "comments": [ + { + "text": "1. Boring lecture 2. Skip class 3 times? You get an F 3. Power points are unavailable online and you may not take pictures. Proceeds to the next slide once he finishes talking without giving enough time to take notes. 4. Study guides are irrelevant to the exams & are mostly not from the things we discussed or the textbook. DO NOT TAKE HIM!", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d4fccd60fca157e5c8d2" + } + }, + { + "text": "He is very helpful, always in his office happy to help you with questions. However, lines of ppl line up at his door all in need of clarification. Knows his stuff, but not much of a good teacher. I DO NOT RECOMMEND. Hard grader, sometimes unclear and hard to understand. IF POSSIBLE, TAKE SOMETHING ELSE.", + "pos": 0.175, + "neu": 0.711, + "neg": 0.115, + "_id": { + "$oid": "6711d4fccd60fca157e5c8d3" + } + }, + { + "text": "Do not take this teacher. The amount of work is unreasonable and he is incredibly boring during lectures. His syllabus is poor and assignments are impossible. He doesn't teach the material well, and you don't learn anything.", + "pos": 0.05, + "neu": 0.814, + "neg": 0.136, + "_id": { + "$oid": "6711d4fccd60fca157e5c8d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fccd60fca157e5c8d6" + }, + "professor_name": "Rosalina Diaz", + "rating": 5, + "department": "Women's Studies department", + "comments": [ + { + "text": "I love Dr. Diaz. She is very knowledgeable and knows her stuff, and is an inspirational Latina Prof. I highly recommend her class. But she does make you work for your grade. No giveaways here.", + "pos": 0.164, + "neu": 0.766, + "neg": 0.069, + "_id": { + "$oid": "6711d4fccd60fca157e5c8d7" + } + }, + { + "text": "she awesome her classes are interesting", + "pos": 0.63, + "neu": 0.37, + "neg": 0.0, + "_id": { + "$oid": "6711d4fccd60fca157e5c8d8" + } + }, + { + "text": "She is a great professor. Anybody would be lucky to have her class. Have to write, and email a five page paper as a final. You are able to learn about yourself as a feminist. Til this day, I still consider myself a multi racial liberal feminist.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d4fccd60fca157e5c8d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fdcd60fca157e5c8db" + }, + "professor_name": "Reginal Wilson", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "BEST acting professor! he really teaches you what you need to know for this acting business. The class is so much fun you'd never be bore with him. all you need to do is write 4 response papers base on the plays you watch in school but they are no longer than a page and a line - literally lol", + "pos": 0.176, + "neu": 0.784, + "neg": 0.041, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8dc" + } + }, + { + "text": "Amazing professor the class is your's to fail. If you do all you are asked you will receive a good grade. It is really the easiest acting professor you can take and he knows his stuff.", + "pos": 0.216, + "neu": 0.707, + "neg": 0.077, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8dd" + } + }, + { + "text": "Acting 101 Class.Great instructor who knows his stuff and is a working actor, which makes the class a great place to learn acting inside and outside the business. Teaches you how to prepare for Auditions, Films, and Scene work. Helps you on your weakness and improves your acting strength. Highly Recommend. :)", + "pos": 0.282, + "neu": 0.676, + "neg": 0.042, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e0" + }, + "professor_name": "Carolyn Demerice", + "rating": 4.8, + "department": "Theater department", + "comments": [ + { + "text": "This was one of my favourite classes. The exercises were amazing and the final assignment was truly a gift. This is a fun class and participation, is of course, key.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e1" + } + }, + { + "text": "She is awesome! I learned so much and was very challenged.", + "pos": 0.291, + "neu": 0.597, + "neg": 0.112, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e2" + } + }, + { + "text": "Just attend class and put some effort and you'll do fine! Remember Acting is not about words!!!", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e5" + }, + "professor_name": "Rakesh Kumar", + "rating": 4.8, + "department": "Chemistry department", + "comments": [ + { + "text": "This guy really knows his chemistry. He is very helpful and very approachable. If only all lab TAs were him!", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e6" + } + }, + { + "text": "I thought he said his name was Akshay Kumar on the first day. Rakesh is one of the best Lab TAs I've ever had. I learned alot(including how to make apirin!!!)", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e7" + } + }, + { + "text": "Good dude. Really knows his stuff.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d4fdcd60fca157e5c8e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fecd60fca157e5c8ea" + }, + "professor_name": "Larry Au", + "rating": 4.3, + "department": "Sociology department", + "comments": [ + { + "text": "I took this AI, data, and algorithms last year. It was one of my favorite classes at CUNY so far. Professor Au did an amazing job at explaining how technological systems are the product of human decisions, and how these choices then impact inequality in society. The lectures are often fun and the group activities are great.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d4fecd60fca157e5c8eb" + } + }, + { + "text": "Larry is a cool professor. He knows what he is teaching, he makes sure everyone understands what he is teaching. I took him for a 4 credit class and I think he has high expectations for his students but he gives you opportunities to maintain a good grade.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d4fecd60fca157e5c8ec" + } + }, + { + "text": "He is a very organized professor, he tells you straight up what he is expecting from you. He is a good professor and I would take him again. If you are confused with anything he would make sure to clear it up. He gives feedback when giving back work which I also like. His lectures are long but it's useful for later on in your career path.", + "pos": 0.189, + "neu": 0.789, + "neg": 0.022, + "_id": { + "$oid": "6711d4fecd60fca157e5c8ed" + } + }, + { + "text": "The material is chosen so well and woven into the class lectures very well. He teaches in a very digestible manner. If you need help or want to discuss something, he's easy to reach. His class was such an interesting introduction for me into AI and its relationship with inequality.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d4fecd60fca157e5c8ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fecd60fca157e5c8f0" + }, + "professor_name": "Oindrilla Dutta", + "rating": 2.3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "She gives proper lecture for the first 30 minutes of the lab so you understand what is going on. Lab reports (only result and discussion) for every lab, except for the clock simulation. Midterm and final have lab and theory portion (derivation), which she covered in class so you should be fine.", + "pos": 0.034, + "neu": 0.966, + "neg": 0.0, + "_id": { + "$oid": "6711d4fecd60fca157e5c8f1" + } + }, + { + "text": "This clown shouldnt be teaching. She doesnt know the material very well. She is disrespectful with her students. She things she is a know-it-all, and her grading is a joke. You are grades by few things and labs are not her main focus. She doesnt care if you are learning or not and expects you to know material from classes that arent prereqs", + "pos": 0.068, + "neu": 0.893, + "neg": 0.039, + "_id": { + "$oid": "6711d4fecd60fca157e5c8f2" + } + }, + { + "text": "She's an alright lab TA. She knows the theory OK except for Lab 7 the clock, which she is unhelpful for. She also is not particularly helpful for breadboarding at all. The experiments arent that bad, jsut figure it out youself and youll be fine", + "pos": 0.184, + "neu": 0.767, + "neg": 0.049, + "_id": { + "$oid": "6711d4fecd60fca157e5c8f3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4fecd60fca157e5c8f5" + }, + "professor_name": "Amanda Rueda", + "rating": 2, + "department": "Chemistry department", + "comments": [ + { + "text": "If you have the opportunity, avoid this TA at all costs. Amanda may seem like she means well, but what drives her is a seemingly constant need to stroke her own ego. This is especially perplexing, considering that she only has a minor in Chemistry. If you are at all sensitive to psychological abuse, it is imperative that you heed this warning.", + "pos": 0.072, + "neu": 0.775, + "neg": 0.153, + "_id": { + "$oid": "6711d4fecd60fca157e5c8f6" + } + }, + { + "text": "Amanda more often than not has an attitude and can be extremely condescending. She expects you to know absolutely everything and will call you out if you don't. She wants you to do well, but that also means that she's an extremely harsh grader. Given the extenuating circumstances that COVID presented, she was a lot nicer and lenient towards the end", + "pos": 0.116, + "neu": 0.822, + "neg": 0.062, + "_id": { + "$oid": "6711d4fecd60fca157e5c8f7" + } + }, + { + "text": "Shes a lab prof and she is harsh. She expects you to know what to do during the labs and will call you out if you dont do it correctly. Kinda mean but i understand she wants us to do it the right way. If ur 15 min late, might as well not show up. And she drops one lab grade at the end. Not my best prof", + "pos": 0.036, + "neu": 0.877, + "neg": 0.088, + "_id": { + "$oid": "6711d4fecd60fca157e5c8f8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ffcd60fca157e5c8fa" + }, + "professor_name": "Yiqi Zhang", + "rating": 2.3, + "department": "Chinese department", + "comments": [ + { + "text": "This class was interesting. It hops all over the place, covering units that don't really build on each other at all. The class is extremely boring and you don't really learn much, so I skipped a bunch. Luckily, she's an easy grader so that makes up for it but I would try to get another IE327 professor if there is one available.", + "pos": 0.09, + "neu": 0.882, + "neg": 0.027, + "_id": { + "$oid": "6711d4ffcd60fca157e5c8fb" + } + }, + { + "text": "Take only if you're up for a challenge Self study is a must to pass the exams Prepare to study before entering class, she expects you to know the vocab beforehand", + "pos": 0.042, + "neu": 0.958, + "neg": 0.0, + "_id": { + "$oid": "6711d4ffcd60fca157e5c8fc" + } + }, + { + "text": "A lot of self-study. She forgets to tell you that assignments are due and always assigns too much work last minute. She doesn't teach. A lot of group work. You will not learn a lot in her class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4ffcd60fca157e5c8fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ffcd60fca157e5c8ff" + }, + "professor_name": "Jake Tuber", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "This was a great class. The professor organized the class in a way that made learning synonymous with performance.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d4ffcd60fca157e5c900" + } + }, + { + "text": "I've never taken a class taught this way before. Awesome!", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d4ffcd60fca157e5c901" + } + }, + { + "text": "Took Prof. Tuber's I/O Class - just outstanding. Best elective taken at City.", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d4ffcd60fca157e5c902" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d4ffcd60fca157e5c904" + }, + "professor_name": "Paul Hayes", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "Prof. Hayes is very organized in Blackboard with the weekly assignments. There are weekly posts, and quizzes. Two midterms, a final, and a final paper with a 5-minute presentation. There is a lot of work in this class, at least in the online version, but you'll learn a lot from the readings and discussions.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d4ffcd60fca157e5c905" + } + }, + { + "text": "Money and Banking course is quite heavy with him; there is quiz every week, assignment on discussion board, one paper and its 5 minute presentation(end of term), and three exam in total. If you can do all of these, you will do good in this class. Overall he is a good professor.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d4ffcd60fca157e5c906" + } + }, + { + "text": "Pay attention in class and on his slides and you will do well.", + "pos": 0.145, + "neu": 0.759, + "neg": 0.097, + "_id": { + "$oid": "6711d4ffcd60fca157e5c907" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d500cd60fca157e5c909" + }, + "professor_name": "Kyle McDonald", + "rating": 3.3, + "department": "Environment department", + "comments": [ + { + "text": "Professor McDonald is a fantastic professor, and he curved the class. His grading is very clear; homework, project, midterm and final. The exam is an open book and is from lectures and homework.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d500cd60fca157e5c90a" + } + }, + { + "text": "Professor Mcdonald is a nice guy, but his class is not easy,. You gotta work hard to get a good grade.", + "pos": 0.209, + "neu": 0.619, + "neg": 0.171, + "_id": { + "$oid": "6711d500cd60fca157e5c90b" + } + }, + { + "text": "This class requires so much work. Prepare to focus all your time in this one class in order to succeed. Tests were completely material that was never seen before", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d500cd60fca157e5c90c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d500cd60fca157e5c90e" + }, + "professor_name": "Naomie Jean-Pierre", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "Run for your life!!! If english is your first language, you will have the advantage to do brilliant. Her approach lacked flexibility and failed to accommodate diverse learning styles. I often found myself struggling to grasp key concepts and improve my English literacy skills. This is Gwinnett technical Institute not Harvard. Thanks.", + "pos": 0.183, + "neu": 0.687, + "neg": 0.13, + "_id": { + "$oid": "6711d500cd60fca157e5c90f" + } + }, + { + "text": "She is not easy, and you should get ready to read. But if you meet with her during office hours, she will help you 100%. You will need to use Grammarly a lot for grammar. There's a quiz each class, but sometimes they're fun and at the end of the semester, she lets you make up the quizzes by turning in a journal portfolio.", + "pos": 0.136, + "neu": 0.84, + "neg": 0.024, + "_id": { + "$oid": "6711d500cd60fca157e5c910" + } + }, + { + "text": "Professor Jean-Pierre is a great instructor. She's caring, funny, and inspirational. I would recommend taking her course if you need to take English. Instructor Jean-Pierre is a fair instructor if it's something that you don't understand she'll work with you until you understand. 10/10 would definitely recommend her.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d500cd60fca157e5c911" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d500cd60fca157e5c913" + }, + "professor_name": "Steve Cowin", + "rating": 4.8, + "department": "Biomedical department", + "comments": [ + { + "text": "He is one of the greatest prof I ever had. Extremely helpful and absolutely knowledgeable. He knows way beyond his field and can answer almost any question u can possibly have. Take him if you want to learn. Grading is fair and cares about students. With such intelligence, he still is very down to earth and doesn't make you feel stupid", + "pos": 0.228, + "neu": 0.726, + "neg": 0.046, + "_id": { + "$oid": "6711d500cd60fca157e5c914" + } + }, + { + "text": "He's kind of too smart for the students. Make sure u ask him to go over everything step by step, otherwise u'll get really lost. He's one of the best professor in the planet though.", + "pos": 0.215, + "neu": 0.724, + "neg": 0.061, + "_id": { + "$oid": "6711d500cd60fca157e5c915" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d500cd60fca157e5c916" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d501cd60fca157e5c918" + }, + "professor_name": "Shomari Harris", + "rating": 4.3, + "department": "Speech department", + "comments": [ + { + "text": "Amazing professor! He is very passionate in what he teaches. Very interesting and makes the class work fun. You have to do the readings if you want a good grade in his class. I highly recommend him!", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d501cd60fca157e5c919" + } + }, + { + "text": "You will improve greatly in your public speaking, but he's a tough grader. I got a 105 on his speech final, but I still got an A-. Visual aids are required, powerpoints are recommended.", + "pos": 0.112, + "neu": 0.84, + "neg": 0.047, + "_id": { + "$oid": "6711d501cd60fca157e5c91a" + } + }, + { + "text": "He's not the worst professor but he definately takes his job seriously. He's very strict about lateness and absences. A tough grader too. If you're looking for an easy A, don't take him.", + "pos": 0.155, + "neu": 0.747, + "neg": 0.098, + "_id": { + "$oid": "6711d501cd60fca157e5c91b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d501cd60fca157e5c91d" + }, + "professor_name": "Tienne Chen", + "rating": 2.3, + "department": "Music department", + "comments": [ + { + "text": "only had her 1 class had to switch, but i thought she was a very good thorough instruction very tough she went to Julliard for und and grad so she knows what shes teaching, she requires a journal and music sheets. also requires 2 hrs of practice a week. and if you can buy a 61key keyboard-it will help. class recital for final! practice practice!", + "pos": 0.116, + "neu": 0.854, + "neg": 0.03, + "_id": { + "$oid": "6711d501cd60fca157e5c91e" + } + }, + { + "text": "Very difficult to get good grade from her. When she says that you will get a better grade for attending her concerts - don't rely on that. Get good private piano instructor - that might help.", + "pos": 0.252, + "neu": 0.686, + "neg": 0.062, + "_id": { + "$oid": "6711d501cd60fca157e5c91f" + } + }, + { + "text": "Try to avoid this lady, if you can. She favors more towards students who knows how to play piano then someone who doesn't know. She goes in a very fast pace. I recommend you to take her, only if you want to jeopardize your grade.", + "pos": 0.163, + "neu": 0.794, + "neg": 0.044, + "_id": { + "$oid": "6711d501cd60fca157e5c920" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d501cd60fca157e5c922" + }, + "professor_name": "Yunchun HU", + "rating": 4.5, + "department": "Mathematics department", + "comments": [ + { + "text": "One of the best math professors! You couldn't ask for a better professor than Hu. She's super sweet and knows how to teach! Do the homework and always ask questions. She loves to answer questions but honestly she teaches so well that you wouldn't have to ask questions! I got the highest score in the final out of the whole math 190 because of her!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d501cd60fca157e5c923" + } + }, + { + "text": "One of the best Math Professor at CCNY. As long as you study hard and do the homework you can pass the class. Study hard!", + "pos": 0.153, + "neu": 0.751, + "neg": 0.096, + "_id": { + "$oid": "6711d501cd60fca157e5c924" + } + }, + { + "text": "One of the best math professor on campus. If you don't study and do the homework don't expect to pass let alone get a C grade or better.", + "pos": 0.208, + "neu": 0.733, + "neg": 0.059, + "_id": { + "$oid": "6711d501cd60fca157e5c925" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d502cd60fca157e5c927" + }, + "professor_name": "Isabel Amarante", + "rating": 4.7, + "department": "Latin American Studies department", + "comments": [ + { + "text": "good professor. she's very interesting, not your typical, monotonous professor. has some anti-establishment ideas which are a breath of fresh air. hard grader though and is not easy but thoroughly interesting. focus on your writing", + "pos": 0.231, + "neu": 0.699, + "neg": 0.07, + "_id": { + "$oid": "6711d502cd60fca157e5c928" + } + }, + { + "text": "Professor Amarante is a brilliant professor! She knows what she's talking! I learned so much and she really cares about her students. She was very helpful after class as well, but do not take her if you want an easy A, must work hard ams attend class or won't pass. A LOT of reading, but very interesting and eye opening! I would def. take her again.", + "pos": 0.235, + "neu": 0.744, + "neg": 0.021, + "_id": { + "$oid": "6711d502cd60fca157e5c929" + } + }, + { + "text": "Absolutely wonderful professor! I learned so much from her class. She wants to make sure that you are engaged in the readings, and that you participate regularly. She's brilliant, and will make you want to come to class.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d502cd60fca157e5c92a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d502cd60fca157e5c92c" + }, + "professor_name": "Beth Gerstner", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "She is wonderful. You enjoy learning in her class. If you have a chance to take Beth, do so.", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d502cd60fca157e5c92d" + } + }, + { + "text": "The best Lab T.A i ever had for a bio class. She is smart, funny and simply amazing. Shes like 24 years old and totally understands our struggles. She is there to help u and thanks to her, i was able to get an A in class. If u see her name for any lab sections in any bio class,take her!!! u will not regret it at all!!!", + "pos": 0.29, + "neu": 0.678, + "neg": 0.032, + "_id": { + "$oid": "6711d502cd60fca157e5c92e" + } + }, + { + "text": "I had her for bio 102, and it was her first time teaching. Shes an amazing ta! absolutely saved my bio grade and i actually learned in her class. Awesome person, I'd love to have her as a TA for all classes!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d502cd60fca157e5c92f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d502cd60fca157e5c931" + }, + "professor_name": "Daniel Felsenfeld", + "rating": 3.3, + "department": "Music department", + "comments": [ + { + "text": "He's a great professor that gives a fair amount of work and is always available to help when on campus. He puts a fun spin on learning material that can lag? he's a nice guy too", + "pos": 0.319, + "neu": 0.63, + "neg": 0.05, + "_id": { + "$oid": "6711d502cd60fca157e5c932" + } + }, + { + "text": "completely useless professor. Had him music101, once every week class for 3 hours and he was absent 5 times. 1/3 of the semester he was not there. On final expect u to read the book yourself because he was not able to finish the syllabus. Has 0 clarity on what he teach and the topics he teaches will go random and chaotic.. HIGHLY NOT RECOMMENDED!", + "pos": 0.037, + "neu": 0.831, + "neg": 0.132, + "_id": { + "$oid": "6711d502cd60fca157e5c933" + } + }, + { + "text": "he is a very good teacher.. there is a lot of writing for this course but definitely manageable.does not really use book that much but not needed... if you want a good grade and learn in the process... take him!", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d502cd60fca157e5c934" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d503cd60fca157e5c936" + }, + "professor_name": "Esther Lee", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "The professor is pretty chill. Expect to have a quiz before every chapter, therefore keep up to date with the readings. Other than that, the exams are straight forward. Textbook (7th Ed. AVAILABLE ONLINE FREE PDF.)", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d503cd60fca157e5c937" + } + }, + { + "text": "She gives a fair amount of reading. You are going to need to do the readings if you want to pass. The readings are discussed in class and she gives many 5 multiple choice question quizzes on the readings. They can be good grade boosters cause of how easy they are. The tests are more difficult but she offers multiple extra credit options. Pretty too", + "pos": 0.194, + "neu": 0.781, + "neg": 0.026, + "_id": { + "$oid": "6711d503cd60fca157e5c938" + } + }, + { + "text": "she's very precise. a paper and a quiz every week & 3 exams and a final paper. seriously not allowed more than 2 absences. you need to read the textbook she gives feedback if you ask for it. If you are okay with working a lot, reading, and writing, then you can get a good grade. dont take if u can't write well.", + "pos": 0.071, + "neu": 0.876, + "neg": 0.052, + "_id": { + "$oid": "6711d503cd60fca157e5c939" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d503cd60fca157e5c93b" + }, + "professor_name": "Ryan McGuinness", + "rating": 4.7, + "department": "Education department", + "comments": [ + { + "text": "Would take again. He is hip, cool and funny.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d503cd60fca157e5c93c" + } + }, + { + "text": "He engage you in a discussion. He is young but knows his stuff. Always available to talk and help. I would take his class again.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d503cd60fca157e5c93d" + } + }, + { + "text": "Professor McGuinness has been super funny, class discussion is great and he really makes an effort to make you get it. I like him and like the class.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d503cd60fca157e5c93e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d503cd60fca157e5c940" + }, + "professor_name": "Ravital Segal", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "Shes really interested in what she teaches. Very generous with extra credit, especially on tests. Most of the test questions are straight from the slides and 3-4 questions come from the textbook. If you study you're guaranteed an A.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d503cd60fca157e5c941" + } + }, + { + "text": "Her lectures are easy to follow. The final grade is based on three exams, not cumulative. She gives extra credit 3% added to your final grade.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d503cd60fca157e5c942" + } + }, + { + "text": "She is a great professor! She really motivated me to continue my studies in child psychology. I wish she was teaching another subject next semester but she is not :( her exams are really straight forward, just read her slides and textbook. She takes into consideration an constructive criticism. Gives extra credit as well!!!", + "pos": 0.283, + "neu": 0.662, + "neg": 0.055, + "_id": { + "$oid": "6711d503cd60fca157e5c943" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d504cd60fca157e5c945" + }, + "professor_name": "Elliot Jurist", + "rating": 3, + "department": "Psychology department", + "comments": [ + { + "text": "hate this class his grading system sucks ! dont take this professor , class is so boring and pointless just have to read the book , he has no slides which makes class difficult. He only put 15 questions on midterm and a short answer, when the midterm is worth 35 percent it should have more than 15 questions . horrible !", + "pos": 0.025, + "neu": 0.735, + "neg": 0.24, + "_id": { + "$oid": "6711d504cd60fca157e5c946" + } + }, + { + "text": "Extremely knowledgeable professor. will make sure you understated and always open to new ideas or suggestions. Very pleasant and will work with you if you really have a problem. Take advantage of his class if you are undergraduate. You don't have a lot of professors like him at CCNY", + "pos": 0.181, + "neu": 0.767, + "neg": 0.052, + "_id": { + "$oid": "6711d504cd60fca157e5c947" + } + }, + { + "text": "He talks a lot but includes students' participation. I recommend to participate to make the lectures more engaging. He gives a description of what the midterm and final will be about. Grades: One midterm (35%) one final (35%) participation (10%) one final paper (20%) and an extra credit paper that will increase your grade by a letter grade!", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d504cd60fca157e5c948" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d504cd60fca157e5c94a" + }, + "professor_name": "Phillip Lee", + "rating": 2.7, + "department": "Architecture department", + "comments": [ + { + "text": "Professor isn't a bad professor. He is just very vague when it comes to assignment details. He answers all questions with another unhelpful question, which makes all projects very difficult to complete as you don't know the boundaries you have. His lectures are quite interesting and inspiring, but his actual teaching skills aren't the best.", + "pos": 0.095, + "neu": 0.781, + "neg": 0.124, + "_id": { + "$oid": "6711d504cd60fca157e5c94b" + } + }, + { + "text": "Prof. Lee will make you work for your grade. He does offer an ear and listen to any struggles, etc. He can be very straight forward and harsh at times. BUT, he does put effort into consideration. He brings in very helpful crits and is always available outside of class. Definitely recommend him! Great professor to take for craft if you're a 1st year", + "pos": 0.233, + "neu": 0.72, + "neg": 0.047, + "_id": { + "$oid": "6711d504cd60fca157e5c94c" + } + }, + { + "text": "i wouldn't say he is a bad professor, instead i would say he won't teach you something really useful. when i had him, i didn't learn anything, i won't recommend any one to take him.", + "pos": 0.078, + "neu": 0.784, + "neg": 0.137, + "_id": { + "$oid": "6711d504cd60fca157e5c94d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d504cd60fca157e5c94f" + }, + "professor_name": "Joshua Mitchell", + "rating": 3.7, + "department": "Chemistry department", + "comments": [ + { + "text": "Hes the best. Its a science course if you cant handle it go into something simple like collecting tickets. And hey, Rate my dont delete postings. There is not unacceptable language in my review. So no need to censor it! That is if you really value all opinions.", + "pos": 0.203, + "neu": 0.7, + "neg": 0.098, + "_id": { + "$oid": "6711d504cd60fca157e5c950" + } + }, + { + "text": "Hes tough if you dont follow the guilds ones, but easy as well if you do.", + "pos": 0.313, + "neu": 0.627, + "neg": 0.06, + "_id": { + "$oid": "6711d504cd60fca157e5c951" + } + }, + { + "text": "Mitchell is an unfair instructor. He posts the results and the lab report submission tab a whole week later after the lab started. This pressures myself (and other students) to do the lab at the last minute. He posts the lab material whenever he wants but if a student misses the lab deadline, they fail. One of the many reasons college is a fraud.", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d504cd60fca157e5c952" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d505cd60fca157e5c954" + }, + "professor_name": "Anna Matthews", + "rating": 2.3, + "department": "Medicine department", + "comments": [ + { + "text": "Unprofessional", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d505cd60fca157e5c955" + } + }, + { + "text": "Most wonderful dear Prof, a real gem. Protects her students with love and care, always finds a way to help, very organized, extraordinary teacher and human. WE ADORE HER.", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d505cd60fca157e5c956" + } + }, + { + "text": "Shes supposed to be teaching dentistry and she sends essays and writing assignments. She doesnt know what shes teaching, and it is obvious she doesnt have any experience in the dentistry field, beside writing scholar articles that nobody reads. You will learn to write but nothing about being a dental hygienist, shes horrible.", + "pos": 0.0, + "neu": 0.916, + "neg": 0.084, + "_id": { + "$oid": "6711d505cd60fca157e5c957" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d505cd60fca157e5c959" + }, + "professor_name": "Nilima Islam", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "One of the best professor i have ever met. She is very nice to people who has problem with english. I will highly recommand her", + "pos": 0.228, + "neu": 0.688, + "neg": 0.084, + "_id": { + "$oid": "6711d505cd60fca157e5c95a" + } + }, + { + "text": "She is one of the best English professors. Her class is super easy and she will tell you what her expectations are. She is not a harsh grader, if you do all her work on time, you get an easy A. Best Professor a new freshman can have, I would definitely take her class again if I ever have the chance to.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d505cd60fca157e5c95b" + } + }, + { + "text": "This professor with no doubt is one of the best. She is very clear about her expectations and even gives you a space to draw on your native language. She is extremely sweet. The homework assignments might be annoying at first but trust me they really do help you put together your essays. For freshman English I highly recommend! Taker her!!!!", + "pos": 0.282, + "neu": 0.694, + "neg": 0.024, + "_id": { + "$oid": "6711d505cd60fca157e5c95c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d505cd60fca157e5c95e" + }, + "professor_name": "Jay Jenkins", + "rating": 4, + "department": "Theater department", + "comments": [ + { + "text": "He cancels class regularly, is not clear about what grades are based on, and overall somewhat easy class", + "pos": 0.12, + "neu": 0.692, + "neg": 0.188, + "_id": { + "$oid": "6711d505cd60fca157e5c95f" + } + }, + { + "text": "Take this class!! you will not regret Dance on film. No paperwork, and we dance every class. You just have to participate to get a good grade.", + "pos": 0.182, + "neu": 0.75, + "neg": 0.069, + "_id": { + "$oid": "6711d505cd60fca157e5c960" + } + }, + { + "text": "I take Dance On Film and this has to be the most fun class I have taken. No paper work, we dance every class and everyone has to participate. Participate and you are good.", + "pos": 0.164, + "neu": 0.781, + "neg": 0.055, + "_id": { + "$oid": "6711d505cd60fca157e5c961" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d506cd60fca157e5c963" + }, + "professor_name": "Steven Malin", + "rating": 4.3, + "department": "Economics department", + "comments": [ + { + "text": "Prof Malin is very opinionated but he knows his stuff. He's smart and passionate about Macro, and I was actually learning things about the world and it wasn't just theories and concepts. However, he was a little aggressive if you asked a question he thought you should know & I felt put down in that aspect, but he's good at teaching by storytelling.", + "pos": 0.166, + "neu": 0.814, + "neg": 0.02, + "_id": { + "$oid": "6711d506cd60fca157e5c964" + } + }, + { + "text": "Dr. Malin is the best professor at CCNY with no close second. He is caring and values effort and participation. Macroeconomics is not an easy class, and the tests will challenge you, but the intent is to learn. If you truly work hard and are willing to put in the time, you will be fine. Only great things can be said about Dr. Malin.", + "pos": 0.248, + "neu": 0.69, + "neg": 0.063, + "_id": { + "$oid": "6711d506cd60fca157e5c965" + } + }, + { + "text": "Professor Malin is one of the best professors in the economics department and very qualified. He's worked with US presidents and in the NY Fed. He will give you an understanding of the economy in present time and he gives thorough explanations. He gives lots of homework in the class though and one midterm as well as one final. Take him if you can.", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d506cd60fca157e5c966" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d506cd60fca157e5c968" + }, + "professor_name": "Gema Rodr\u00edguez-Ibarra", + "rating": 3.7, + "department": "Spanish department", + "comments": [ + { + "text": "Didnt teach anything and wanted you to remember everything.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d506cd60fca157e5c969" + } + }, + { + "text": "Extensive workload with online assignments, but offers multiple attempts. Their lectures draw from an online textbook. She is supportive if you have trouble with vocabulary and pronunciation. Exams are multiple-choice ,fill-in-the-blanks, and two-minute speaking assessment. She might be a little strict, but definitely better than other professors.", + "pos": 0.174, + "neu": 0.763, + "neg": 0.063, + "_id": { + "$oid": "6711d506cd60fca157e5c96a" + } + }, + { + "text": "Kind and moderately strict. Not tech savvy. Gives lots of online HW, but you can have multiple attempts to get a 100%. All HW is posted at beginning of semester. Two types of exams: MC/short answer and oral exam. You'll have to speak Spanish for 2 minutes based on a question she will ask you. Participate at least once per class. No essays.", + "pos": 0.033, + "neu": 0.924, + "neg": 0.042, + "_id": { + "$oid": "6711d506cd60fca157e5c96b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d506cd60fca157e5c96d" + }, + "professor_name": "Nolan Bensen", + "rating": 4.7, + "department": "History department", + "comments": [ + { + "text": "His lectures were information heavy but if you focus and pay attention to the end of the module assignments and quizzes you should be fine. There was also a extra credit option at the end of the semester which was super helpful.", + "pos": 0.275, + "neu": 0.695, + "neg": 0.03, + "_id": { + "$oid": "6711d506cd60fca157e5c96e" + } + }, + { + "text": "A very good professor who really wants you to gain knowledge!", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d506cd60fca157e5c96f" + } + }, + { + "text": "He was really nice and cared a lot about us students. He helped us often and gave lots of extra credit. His lectures were long but always fun, and he sounded very knowledgeable, overall 10/10, would recommend.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d506cd60fca157e5c970" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d507cd60fca157e5c972" + }, + "professor_name": "Oleksandra Topolnytska", + "rating": 2, + "department": "Architecture department", + "comments": [ + { + "text": "Very intensive course. Due to intensity, naturally learned more technical skills, however the method of which these assignments were given was not at all ideal. Learn what she likes and you are likely to earn a good grade. All of the assignments were model making heavy, good model making skills will get you far in this class (grade-wise).", + "pos": 0.132, + "neu": 0.826, + "neg": 0.042, + "_id": { + "$oid": "6711d507cd60fca157e5c973" + } + }, + { + "text": "Uses class time mainly for critiques, requiring extra work outside class. Her high expectations can be tough, and she assigns significant workloads without extensions. While kind, her grading is strict and time management often poor, with classes running over time/rushed. She once publicly disclosed a student's failing status. Wouldn't recommend it", + "pos": 0.03, + "neu": 0.755, + "neg": 0.215, + "_id": { + "$oid": "6711d507cd60fca157e5c974" + } + }, + { + "text": "Be ready to stay after class 10-30 min and present projects and sit for 3-4 hours. There are many things she won't tell you outright and you have to learn on your own, but you still need to figure out what she wants and doesn't want without her telling you. Also have to work outside of class and come to studio on other days to work on projects.", + "pos": 0.025, + "neu": 0.955, + "neg": 0.019, + "_id": { + "$oid": "6711d507cd60fca157e5c975" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d507cd60fca157e5c977" + }, + "professor_name": "Julia Francis", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She is a great professor her class was very easy and her class was engaging and she truly cares about her students, she offers a ton of extra credit and makes sure that every student well and ready to learn .I would highly recommend her. Would take again", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d507cd60fca157e5c978" + } + }, + { + "text": "shawty is the best she know how to each and she is very patient. Her assignments were not hard and its very easy to pass", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d507cd60fca157e5c979" + } + }, + { + "text": "Probably one of the best professors I've taken at CCNY. She truly cares about her students. Her grading is fair and gives meaningful feedback on major assignments. She even invited actors to read out our plays which made the class way more interesting. Definitely take her !!", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d507cd60fca157e5c97a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d507cd60fca157e5c97c" + }, + "professor_name": "Christopher DelRe", + "rating": 4, + "department": "Chemistry department", + "comments": [ + { + "text": "Took him in fall of 2023. Professor is very nice and is willing to listen for advice to make the class better. First time teaching, but he did well. Just hoping there would be more problem solving time", + "pos": 0.278, + "neu": 0.642, + "neg": 0.08, + "_id": { + "$oid": "6711d507cd60fca157e5c97d" + } + }, + { + "text": "Took the class in Fall 2023 during his first semester as professor. Was always accessible during his office hours and asked the class on how he could better teach the course as the average exam grades were quite low. He then proceeded to work through more problems in class instead of just reading off slides.", + "pos": 0.048, + "neu": 0.863, + "neg": 0.089, + "_id": { + "$oid": "6711d507cd60fca157e5c97e" + } + }, + { + "text": "Note, I took him in Fall of 2023. But during that time, he was new, yet he tried his hardest so people could understand his lecture. Although the class average of his exam wasn't the best, he would ask for feedback from the students on how he can improve. Also his exam is similar to pass exams (atleast for us)", + "pos": 0.058, + "neu": 0.873, + "neg": 0.069, + "_id": { + "$oid": "6711d507cd60fca157e5c97f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d508cd60fca157e5c981" + }, + "professor_name": "Hamideh Sedghi", + "rating": 1, + "department": "History department", + "comments": [ + { + "text": "Beside the easy A, she's one of the strictest teacher i've had. was an online class and she actually makes sure we don't chew gum? Or not to talk to anyone (understandable) or buying the book which was easily accessible for free online because she wants us to \"be able to flip the pages\"? She's just to much. Pretty much old book karen. Easy A tho.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d508cd60fca157e5c982" + } + }, + { + "text": "Personally I'd say the professor is very old school. I wouldn't take her if I had any other options.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d508cd60fca157e5c983" + } + }, + { + "text": "Better off not taking this teacher if you could help it.", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d508cd60fca157e5c984" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d508cd60fca157e5c986" + }, + "professor_name": "Royal Chen", + "rating": 5, + "department": "Design department", + "comments": [ + { + "text": "Chen does a good job of inspiring students to make art and do creative things. Projects were very flexible. The prompts allowed for creativity. If you wanted to do something different, he was OK with that. Workload was light, and you had the freedom to do the projects you wanted to do.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d508cd60fca157e5c987" + } + }, + { + "text": "Great professor!Completely chill dude.I took his intermediate drawing class on Wednesdays from 9-11:50 pm and The art projects were really fun! One thing I enjoyed was how much freedom we had with the projects.Strict on attendance but completely understandable when you communicate which I greatly appreciate due to how I struggled mentally thisyear", + "pos": 0.22, + "neu": 0.731, + "neg": 0.048, + "_id": { + "$oid": "6711d508cd60fca157e5c988" + } + }, + { + "text": "Took this CCNY class in-person on Wednesdays, 6:15 PM to 9:05 PM. The course is calm and enjoyable, involving four projects with drafts. Sometimes, we get to leave early. Grading focuses on effort and completion. Highly recommended!", + "pos": 0.182, + "neu": 0.79, + "neg": 0.029, + "_id": { + "$oid": "6711d508cd60fca157e5c989" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d509cd60fca157e5c98b" + }, + "professor_name": "Christina Weinbaum", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "She is absolutely awesome. Her class is interesting and discussion-focused. She is very passionate about what she teaches", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c98c" + } + }, + { + "text": "She is a really kind person! Read the texts she gives, they're not long in my opinion. Show up and the lectures are what the readings are about which help tremendously. I genuinely enjoyed this class!", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c98d" + } + }, + { + "text": "She is extremely nice. If you have to take philosophy, take her. She gives a ton of extra credit. Only 2 exams, which are midterm and final.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c98e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d509cd60fca157e5c990" + }, + "professor_name": "Liana Demassi", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "They were a great professor, you could always reach them very easily, if you needed a mental break they would give it to you, and the work was not that hard. Just show up, do the papers and call it a day.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c991" + } + }, + { + "text": "This teacher was very lenient as long as you had your stuff done and communicated with her.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c992" + } + }, + { + "text": "Fabulous teacher. There are essays, but do them and you will be good. she's nice and responds to ur email quickly. Class is easy, and lenient on late work. Overall just complete all ur work and should receive an A.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c993" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d509cd60fca157e5c995" + }, + "professor_name": "Layana Abu Touq", + "rating": 5, + "department": "Public Policy department", + "comments": [ + { + "text": "The grade was based off of 3 things, a memo which was super easy, a group powerpoint presentation, and an individual essay based off of the powerpoint pres. Her instructions are super clear and really sets you up for success. She's also super understanding, and lectures are interesting. Take her!", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c996" + } + }, + { + "text": "Professor Abu Touq is a supportive, inspirational, and caring instructor, and she also loved students to give feedback to the class. I took SSC 31121 and SSC 31122 because of the S Jay Levy fellowship at City College, and they really help me in my professional development and critical thinking. Definitely recommend taking it!! =)", + "pos": 0.337, + "neu": 0.631, + "neg": 0.032, + "_id": { + "$oid": "6711d509cd60fca157e5c997" + } + }, + { + "text": "Very well organized, all materials; do the readings, watch the lecture , participate and time investment in the project/essay u will do good. For a intro class, you get a good grasp about the subject, interesting and practical. Really nice and grades fairly . Well spoken, introduces material in a clear and concise manner.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d509cd60fca157e5c998" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50acd60fca157e5c99a" + }, + "professor_name": "Shenika Christopher", + "rating": 3, + "department": "Biology department", + "comments": [ + { + "text": "5 difficulty only because she is unorganized, goes insanely fast thru slides SHE READS from, & gives exams which she states is 45 questions but was 90 with only an hour and a half to take it. She posts hw late. Says she'll do it by end of day & ends up doing the following week which goes into the next week's assignment. Needs to learn how to teach.", + "pos": 0.0, + "neu": 0.976, + "neg": 0.024, + "_id": { + "$oid": "6711d50acd60fca157e5c99b" + } + }, + { + "text": "She was a tough grader during my first time taking her course in terms of the quizzes she would assign. I would see moving forward the quizzes should only be on blackboard and completed before 11:59 PM so that students won't feel rushed. Aside from the difficulty in class she's a really nice person and is willing to help all students, succeed.", + "pos": 0.129, + "neu": 0.816, + "neg": 0.056, + "_id": { + "$oid": "6711d50acd60fca157e5c99c" + } + }, + { + "text": "Has a bit of an attitude. She gives quizzes for the labs we do, usually heavily based on the slides she prepares. You have to print out your own lab worksheet. Tends to make students feel dumb for not quickly understanding a concept and constantly blames class for her inability to properly teach. The class overall isn't horrible just her attitude.", + "pos": 0.042, + "neu": 0.832, + "neg": 0.127, + "_id": { + "$oid": "6711d50acd60fca157e5c99d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50acd60fca157e5c99f" + }, + "professor_name": "Elkin Tenorio Moreno", + "rating": 1, + "department": "Biology department", + "comments": [ + { + "text": "A man with an ego and a heavy accent. The accent is understandable but he needs to check his ego. He teaches the lab portion of 228. Terrible choice!", + "pos": 0.0, + "neu": 0.863, + "neg": 0.137, + "_id": { + "$oid": "6711d50acd60fca157e5c9a0" + } + }, + { + "text": "Not clear with the instruction and alway late to post lab. So expect to no know anything or just a general idea of the next lab cause he will post the lab during lab. Accent is also a problem really heavy most of the time you can't understand him unless you speak spanish. Has a ego as well, when emailing him make sure you use the nicest word.", + "pos": 0.099, + "neu": 0.806, + "neg": 0.095, + "_id": { + "$oid": "6711d50acd60fca157e5c9a1" + } + }, + { + "text": "Bad lecture overall, boring monotone attlitude. Email student not to late but come late everytime. Just alot of bad things about this TA. Late at grading work and grading seem really random nick picks on the most random things. Email depend on the person because i heard some he email back fast while some take days.", + "pos": 0.0, + "neu": 0.86, + "neg": 0.14, + "_id": { + "$oid": "6711d50acd60fca157e5c9a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50acd60fca157e5c9a4" + }, + "professor_name": "William Senzano", + "rating": 3.3, + "department": "Philosophy department", + "comments": [ + { + "text": "One of the most down to earth teachers I've ever had. Only three papers to write with incredibly clear directions and incredibly interesting topics. You can tell he wants the best for his students. The lectures were very memorable and enjoyable. I can't recommend him enough.", + "pos": 0.235, + "neu": 0.727, + "neg": 0.037, + "_id": { + "$oid": "6711d50acd60fca157e5c9a5" + } + }, + { + "text": "He's a little odd at the beginning, but then he's awesome. He gives a lot of examples, makes sure you understand the content. Not a tough grader. He's a great professor. Takes time to grade papers tho.", + "pos": 0.321, + "neu": 0.649, + "neg": 0.03, + "_id": { + "$oid": "6711d50acd60fca157e5c9a6" + } + }, + { + "text": "Your whole grade is three papers... Teacher doesn't bring up rewrites until the last two weeks of class when you wouldn't have the time to do it. I maintained a 4.0 for the past two years through much harder classes and lost it to this shmuck. . Lectures are lackluster and forces group discussions every class over redundant questions. AVOID.", + "pos": 0.0, + "neu": 0.917, + "neg": 0.083, + "_id": { + "$oid": "6711d50acd60fca157e5c9a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50bcd60fca157e5c9a9" + }, + "professor_name": "Kristine Slentz", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "I had Professor Slentz at Fordham RH for Comp II, but only found her profile here. She is a very knowledgeable professional and is always willing to go the extra mile to help you succeed. She has high expectations of her students and you won't do well if you want to relax. My advice is to only take her if you genuinely want to improve your writing.", + "pos": 0.229, + "neu": 0.744, + "neg": 0.028, + "_id": { + "$oid": "6711d50bcd60fca157e5c9aa" + } + }, + { + "text": "Professor Slentz is an amazing professor. I would highly recommend taking her for any class possible. She is a very easy grader with very little homework. Papers are easy and not much writing is required for these.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d50bcd60fca157e5c9ab" + } + }, + { + "text": "Professor Slentz is a good professor. Had 4 papers, a group project, and 3 NYT blackboard summaries to submit. The class really didn't need to be in person, as we spent a lot of time in silence during class while we typed blackboard assignments anyways. Class was boring, but the papers were somewhat interesting. If you want a good grade, take her.", + "pos": 0.15, + "neu": 0.826, + "neg": 0.024, + "_id": { + "$oid": "6711d50bcd60fca157e5c9ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50bcd60fca157e5c9ae" + }, + "professor_name": "Vincent Salle", + "rating": 4, + "department": "Foreign Languages Literature department", + "comments": [ + { + "text": "This professor is a gem. He truly cares for his students to do well and is hilarious! I thought I was going to fail the class but I passed with flying colors. No textbook! He doesn't let you write or take notes while he's teaching because he wants it to be interactive so you absorb the information better. Just memorize and you're good!", + "pos": 0.21, + "neu": 0.724, + "neg": 0.066, + "_id": { + "$oid": "6711d50bcd60fca157e5c9af" + } + }, + { + "text": "Didn't understand what was being spoken 90% of the time. Middle of the semester class lost interest and he started giving quizzes and assignments that were really a bummer. But he is a very nice and intelligent professor who wants his students to learn. Best advice is to take his class serious and do not take it just for an easy A. And no final!", + "pos": 0.261, + "neu": 0.647, + "neg": 0.092, + "_id": { + "$oid": "6711d50bcd60fca157e5c9b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50bcd60fca157e5c9b2" + }, + "professor_name": "Abersio Nunez", + "rating": 4, + "department": "Spanish department", + "comments": [ + { + "text": "if you do the home work he is easy to follow..very easy exams.and offers extra credit compositions. very fair.", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d50bcd60fca157e5c9b3" + } + }, + { + "text": "Very friendly guy. He may have trouble answering questions that sound childish so don't bother trying to understand. Use the class as a review and the textbook as your professor. There will be a quiz on each chapter. You can pressure him to make exams open book or group quiz. He's a very affable person so please don't be mean to him.", + "pos": 0.122, + "neu": 0.779, + "neg": 0.099, + "_id": { + "$oid": "6711d50bcd60fca157e5c9b4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50ccd60fca157e5c9b6" + }, + "professor_name": "Octavio Warnock-Graham", + "rating": 4.8, + "department": "Media Arts department", + "comments": [ + { + "text": "So helpful and just shows passion for Film. Very cool and fun atmosphere. Not bored at all. Two film projects and take home midterm. I loved this class!!", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d50ccd60fca157e5c9b7" + } + }, + { + "text": "Before taking MCA 105 I was unsure whether I should pursue Film as a major. However, after taking Professor Warnock-Graham's class I am definitely going to take film as a major. He is such a nice guy, and will help you whenever you need. Expect two film projects between 2-5mins, and an easy open book midterm. The \"final\" is your final film project.", + "pos": 0.156, + "neu": 0.816, + "neg": 0.028, + "_id": { + "$oid": "6711d50ccd60fca157e5c9b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50ccd60fca157e5c9ba" + }, + "professor_name": "Sibel Korkmaz", + "rating": 4.3, + "department": "Economics department", + "comments": [ + { + "text": "Wonderful professor! She really cares about her students and will answer any questions you ask her, even if it means repeating the lesson. Very kind, patient, and intelligent. One of the best I've had at CCNY. If you do bad, it's your own fault.", + "pos": 0.296, + "neu": 0.603, + "neg": 0.101, + "_id": { + "$oid": "6711d50ccd60fca157e5c9bb" + } + }, + { + "text": "She is a simple nice young woman with a Turkish accent. She is always out to help a student. She gives only 3 exams during the year which are not cumulative and attendance is not mandatory. In fact, you get an extra 5 points for having good attendance. If you do not study you will fail, but if you study you will do very well on homework and exams.", + "pos": 0.117, + "neu": 0.838, + "neg": 0.045, + "_id": { + "$oid": "6711d50ccd60fca157e5c9bc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50ccd60fca157e5c9be" + }, + "professor_name": "Laura Brown", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "I took her Childhood class. She is AMAZING! She is not your average professor. She has her own teaching style. She makes sure that her students are highly incorporated into the discussions. We do group work/discussions and she always makes sure she is completely honest. Point is...SHE IS GREAT & INNOVATIVE! Not like any professor I've had.", + "pos": 0.295, + "neu": 0.677, + "neg": 0.029, + "_id": { + "$oid": "6711d50ccd60fca157e5c9bf" + } + }, + { + "text": "Very helpful and concise. Lectures are straight forward with open class discussions as well as group activities. Exams are very easy as long as you paid attention in class. She's a very good grader and you will come out very interested in the social aspect of psychology.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d50ccd60fca157e5c9c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50dcd60fca157e5c9c2" + }, + "professor_name": "Nikolas Markou", + "rating": 3.5, + "department": "Computer Science department", + "comments": [ + { + "text": "Nick was a nice guy and I enjoyed taking the class from him. Very personable.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d50dcd60fca157e5c9c3" + } + }, + { + "text": "Was very cool, but very hard grader on the reports. I almost always got a B or A- on my reports, but he always let me know how to fix them.", + "pos": 0.055, + "neu": 0.883, + "neg": 0.062, + "_id": { + "$oid": "6711d50dcd60fca157e5c9c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50dcd60fca157e5c9c6" + }, + "professor_name": "Timothy Wallace", + "rating": 4.3, + "department": "Media Arts department", + "comments": [ + { + "text": "Took Methods and Practices of Modern Journalism with Professor Wallace. I think it was the last semester he taught. You know, a lot of people called him a cynic, but I think he taught a lot of hope. The guy knows a lot about truth and lies. Surprisingly young professor, but knows everything.", + "pos": 0.152, + "neu": 0.762, + "neg": 0.086, + "_id": { + "$oid": "6711d50dcd60fca157e5c9c7" + } + }, + { + "text": "So sad I didn't get a chance to take more classes with him. New Journalism was amazing. He really told it like it is. I think he's in Africa for BBC now. Definitely best professor I've had in college.", + "pos": 0.261, + "neu": 0.64, + "neg": 0.099, + "_id": { + "$oid": "6711d50dcd60fca157e5c9c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50dcd60fca157e5c9ca" + }, + "professor_name": "Britanny Vovan", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Her criticisms of my creative writing were not very helpful, they in fact made it seem like she hadn't bothered to understand the pieces. For one of them, she made a speech in front of the class that was particularly passive aggressive, saying that my work needed \"special treatment.\" Her comments made it clear that she hadn't finished reading it.", + "pos": 0.205, + "neu": 0.708, + "neg": 0.088, + "_id": { + "$oid": "6711d50dcd60fca157e5c9cb" + } + }, + { + "text": "best professor ever!!! i loved her class.. i wish it didnt end.. assignments were easy.. just come to class on time and do the work required. =)", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d50dcd60fca157e5c9cc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50ecd60fca157e5c9ce" + }, + "professor_name": "Hechou LI", + "rating": 4, + "department": "Chinese department", + "comments": [ + { + "text": "really easy grader", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d50ecd60fca157e5c9cf" + } + }, + { + "text": "Good professor!", + "pos": 0.761, + "neu": 0.239, + "neg": 0.0, + "_id": { + "$oid": "6711d50ecd60fca157e5c9d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50ecd60fca157e5c9d2" + }, + "professor_name": "Bhisham Bherwani", + "rating": 4.5, + "department": "Computer Science department", + "comments": [ + { + "text": "A lot of extra credits and partial credits he provide to you on everywhere in the semester. I would take him again.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d50ecd60fca157e5c9d3" + } + }, + { + "text": "He is the best CS professor in the CCNY. You should take him if you see his name on the class which you really want.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d50ecd60fca157e5c9d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50ecd60fca157e5c9d6" + }, + "professor_name": "Antonella Mallozzi", + "rating": 4.5, + "department": "Philosophy department", + "comments": [ + { + "text": "She was very understanding. Grading scale is amazing. Just do the weekly blog posts, read the articles given every week, and prepare for occasional write ups and you will pass this class. She is strict with attendance since it was a once a week class so try not to miss. Final paper was tough but we were given a lot of time to discuss in class. Good", + "pos": 0.104, + "neu": 0.878, + "neg": 0.017, + "_id": { + "$oid": "6711d50ecd60fca157e5c9d7" + } + }, + { + "text": "I admit, the subject material was difficult to grasp, and there was definitely a lot of reading. However, she's very understanding, and tries her best to explain complex philosophical ideas. The course schedule was straightforward; blog post due every week on Blackboard, occasional pop quizzes, and two major papers. No exams. She's approachable.", + "pos": 0.141, + "neu": 0.778, + "neg": 0.081, + "_id": { + "$oid": "6711d50ecd60fca157e5c9d8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50fcd60fca157e5c9da" + }, + "professor_name": "Christopher Brown", + "rating": 3.7, + "department": "Philosophy department", + "comments": [ + { + "text": "If you like cramped handwriting this is your man, but in all seriousness, let's get down to brass tacks, this man has the body of a Greek god. You will think you are in class with Plato himself.", + "pos": 0.108, + "neu": 0.86, + "neg": 0.032, + "_id": { + "$oid": "6711d50fcd60fca157e5c9db" + } + }, + { + "text": "Nice guy who explains things well. Make sure you show up, and he writes a lot on a whiteboard. Grade basically depends on midterm and final so make sure you take lots of notes. He doesn't have office hours, if you want to see him, it has to be half hour before class. Overall would recommend, but only take if you're actually very interested in Ph.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d50fcd60fca157e5c9dc" + } + }, + { + "text": "Intro class. No textbook everything he writes on the board memorize and understand concepts. If you come late leave early he will take note. Do not try to be extra or a show off he will just cut you off... it is very hilarious", + "pos": 0.062, + "neu": 0.825, + "neg": 0.113, + "_id": { + "$oid": "6711d50fcd60fca157e5c9dd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50fcd60fca157e5c9df" + }, + "professor_name": "Evlyn Mark", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He push student hard to do the project and explain materials. Lab reports are due at end of the semester. But he want professional report like senior design. Pre lab are due for everylab and simulation should be done at home. Lab class he prefer to have experiment only.", + "pos": 0.091, + "neu": 0.886, + "neg": 0.023, + "_id": { + "$oid": "6711d50fcd60fca157e5c9e0" + } + }, + { + "text": "Excellent in matching class material with real life examples.... He'll work with you and make sure you understand what U doing. If you take him, you can't go wrong....... EE322 (lab 2)", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d50fcd60fca157e5c9e1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d50fcd60fca157e5c9e3" + }, + "professor_name": "Matthew Daus", + "rating": 3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "The class is about him and how wonderful he is. You will learn by yourself and nothing from Mr. Daus. The class is boring, long and listening to Mr. Daus's monologue is absolutely annoying.", + "pos": 0.093, + "neu": 0.775, + "neg": 0.132, + "_id": { + "$oid": "6711d50fcd60fca157e5c9e4" + } + }, + { + "text": "Very interesting course. Professor is very helpful and friendly. A lot of reading materials though. Free expression of your thoughts and ideas is welcomed. If you are active in a class , professor likes you. Grades fairly.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d50fcd60fca157e5c9e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d510cd60fca157e5c9e7" + }, + "professor_name": "Peifang Zhang", + "rating": 2, + "department": "Earth Science department", + "comments": [ + { + "text": "Below average professor. One of the worst in CCNY EAS dept.", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d510cd60fca157e5c9e8" + } + }, + { + "text": "If U have this guy: WARNINIG !!! run run run....His lectures are very vague, even if you sit in the front you still wont understand because of his pronounciation of words...huh? His exams are extremely out of the question--gives you review sheet, but no help at all b/c it will not appear on the test, waste of studying.", + "pos": 0.0, + "neu": 0.862, + "neg": 0.138, + "_id": { + "$oid": "6711d510cd60fca157e5c9e9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d510cd60fca157e5c9eb" + }, + "professor_name": "Ni Lu", + "rating": 4.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Lu is a wonderful calculus professor. She was very specific as to what she expected from us. Homework was not required but an absolute must if you want to do well in the course. If you ask her to repeat confusing topics, she'll take the time to explain it. I'd love to take her again for another math class.", + "pos": 0.176, + "neu": 0.79, + "neg": 0.034, + "_id": { + "$oid": "6711d510cd60fca157e5c9ec" + } + }, + { + "text": "Professor Lu was a great teacher! All of her lectures were very clear. You must do the HW to do well in the class and she tells you that. Those who did poorly really never did it or ever came to class. If you ask her for help, she'll sit down and work out the problem with you. Her class definitely prepared you for the departmental final!", + "pos": 0.213, + "neu": 0.753, + "neg": 0.034, + "_id": { + "$oid": "6711d510cd60fca157e5c9ed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d510cd60fca157e5c9ef" + }, + "professor_name": "John Likides", + "rating": 1, + "department": "English department", + "comments": [ + { + "text": "I would agree with the last comment. Harsh grader. very confusing teacher and doesn't provide enough info. He should not teach the engineer students to be honest.", + "pos": 0.171, + "neu": 0.679, + "neg": 0.15, + "_id": { + "$oid": "6711d510cd60fca157e5c9f0" + } + }, + { + "text": "This guy is really something else. Says its his first time teaching english for engineers and proceeds to teaching philosphy and science. He doesnt even know what he is suppose to do for our assignments. avoid.", + "pos": 0.0, + "neu": 0.941, + "neg": 0.059, + "_id": { + "$oid": "6711d510cd60fca157e5c9f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d511cd60fca157e5c9f3" + }, + "professor_name": "Joao Hwang", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "Professor Hwang is the blessing mines for our class. The academic interaction between developing and \u201cin process of graduating as developed\u201d students literally saved the Model United Nations scene. Thus, this setting one party zone to continue globalizing the class development.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d511cd60fca157e5c9f4" + } + }, + { + "text": "Great professor, knows his material well. Definitely great to look at... when he talks about Model UN ;) He changed the way I look at life, religion, Mitt Romney etc.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d511cd60fca157e5c9f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d511cd60fca157e5c9f7" + }, + "professor_name": "Martha Schulenburg", + "rating": 4, + "department": "Music department", + "comments": [ + { + "text": "You'll have 3 papers, two of em will be concert report which is bad since you have to actually go to a concert. one is for the finals ( you'll have plenty of time to finish the paper cuz she gives it to you like a month before). She gets distracted easily and the class is a meh for me since you can literally pass without having the book.", + "pos": 0.064, + "neu": 0.841, + "neg": 0.095, + "_id": { + "$oid": "6711d511cd60fca157e5c9f8" + } + }, + { + "text": "This professor is very passionate when it comes to teaching this class. She tends to get off topic sometimes but its always enjoyable. You're graded by 2 concert reports, 4 music quizzes (5 multiple choice questions) and a final paper. You don't have to buy the most recent textbook, using the 7th edition online works fine too.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d511cd60fca157e5c9f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d511cd60fca157e5c9fb" + }, + "professor_name": "Pedro Da Silva Lino", + "rating": 4.7, + "department": "Portuguese department", + "comments": [ + { + "text": "omg hes cute", + "pos": 0.6, + "neu": 0.4, + "neg": 0.0, + "_id": { + "$oid": "6711d511cd60fca157e5c9fc" + } + }, + { + "text": "His class is a great relief from all the stress I'm dealing with this semester. The professor is super flexible with deadlines and helps everyone with homework. He has a great pedagogy too, so my language skills have improved a lot. Also, he's super funny.", + "pos": 0.439, + "neu": 0.519, + "neg": 0.042, + "_id": { + "$oid": "6711d511cd60fca157e5c9fd" + } + }, + { + "text": "The professor is very understanding of unexpected circumstances. The homework is easy to do, and he helps you prepare well for quizzes and tests. And quite Funny.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d511cd60fca157e5c9fe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d512cd60fca157e5ca00" + }, + "professor_name": "Jiusi Lei", + "rating": 3, + "department": "Physics department", + "comments": [ + { + "text": "The whole class, every class, he would sit on his phone and do nothing else. HE didn't help with a single lab and I transferred to somebody who actually put in the time to demonstrate concepts. He does NOT grade on time and there's no feedback. Avoid.", + "pos": 0.038, + "neu": 0.874, + "neg": 0.089, + "_id": { + "$oid": "6711d512cd60fca157e5ca01" + } + }, + { + "text": "Best lab professor in CCNY. He makes things very easy and understandable.", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d512cd60fca157e5ca02" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d512cd60fca157e5ca04" + }, + "professor_name": "Qianyi Qin", + "rating": 2.5, + "department": "Philosophy department", + "comments": [ + { + "text": "This was by far one of the worst classes I have taken in all of college. This professor really does not put in much effort which makes students care even less. She is very boring and slow. Takes hours explaining things that should be simple. listened to music most of the time. The entire class failed the midterm. I got 100% with a 64 as highest.", + "pos": 0.043, + "neu": 0.825, + "neg": 0.133, + "_id": { + "$oid": "6711d512cd60fca157e5ca05" + } + }, + { + "text": "Lots of reading for homework. A handful interested me and a handful didn't. Keep up with the reading, take notes in class, study, you'll pass. Exams and passing, in general, WILL be hard if you don't. Try to participate- I feel bad when she just keeps on talking while only 2-3 people participate at most. I wish this prof well in her future classes!", + "pos": 0.112, + "neu": 0.82, + "neg": 0.068, + "_id": { + "$oid": "6711d512cd60fca157e5ca06" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d512cd60fca157e5ca08" + }, + "professor_name": "Hratch Kestenian", + "rating": 4.5, + "department": "World Civilizations department", + "comments": [ + { + "text": "I adored having Hratch as a lecturer. He is one of the best professor I've taken this semester. The class consists of a lot of readings, midterm, final and a research paper. I enjoyed coming to class to learn because he is knowledgeable, and passionate about his topics. He is interesting, funny, charming and handsome. I highly recommend this class", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d512cd60fca157e5ca09" + } + }, + { + "text": "Not a hard class 6 assignments and then you choose 4 to complete. I gave in work super late and he still graded it fairly. 1 midterm one final. Impossible to reach outside of class. Lots of lecture and assigns light readings online for hw, no textbook . He will NOT remember your name, GO to class to sign in for attendance, no matter if yourlate GO", + "pos": 0.088, + "neu": 0.866, + "neg": 0.046, + "_id": { + "$oid": "6711d512cd60fca157e5ca0a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d513cd60fca157e5ca0c" + }, + "professor_name": "Doukessa Lerias", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "Professor has strict criteria for exams that makes no sense - must be in class for a take home exam and will not answer questions after the class the exam is given in. Refuses to give useful feedback, and does not give clear grading criteria. PowerPoints often have numerous typos and errors. Her past experience does lead to good discussions.", + "pos": 0.086, + "neu": 0.814, + "neg": 0.1, + "_id": { + "$oid": "6711d513cd60fca157e5ca0d" + } + }, + { + "text": "AMAZING professor, I highly recommend taking her courses she truly cares about students and her teaching method will definitely prepare you for a career in psychology. Absolutely loved her class this semester and will be taking her again!", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d513cd60fca157e5ca0e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d513cd60fca157e5ca10" + }, + "professor_name": "Lukas Gabric", + "rating": 3, + "department": "Music department", + "comments": [ + { + "text": "From the perspective of a person that has zero knowledge of Jazz: hes tough until the whole class does bad. You have to work for it. Study off his outlines if you take Jazz and you will be fine. 4 quizzes drops one, midterm, a paper presentation, and final. Overall, hes funny \ufffd\ufffd", + "pos": 0.08, + "neu": 0.835, + "neg": 0.085, + "_id": { + "$oid": "6711d513cd60fca157e5ca11" + } + }, + { + "text": "Solid professor, knows the material well, especially about jazz and European music. Regular quizzes on textbook readings and class lectures. Gives chances for extra credit where you can do an presentation about music you like, or music from your culture. Pay attention, do the reading, and understand the material, you will do just fine.", + "pos": 0.204, + "neu": 0.773, + "neg": 0.023, + "_id": { + "$oid": "6711d513cd60fca157e5ca12" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d513cd60fca157e5ca14" + }, + "professor_name": "Nayeem Uddin", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Hes very kind and understanding. It might take a while for you to get used to him, but hes very helpful once you open up. Lenient grader, easy A", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d513cd60fca157e5ca15" + } + }, + { + "text": "Nayeem is simply a great TA. He is very calm and listens very carefully whenever you need his assistance. His honesty allowed us to be more aware of the course track and helped the students be more open to questions. He created a learning environment in Lab that I am still grateful for. Nayeem specified requirements clearly and provided fair exams", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d513cd60fca157e5ca16" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d514cd60fca157e5ca18" + }, + "professor_name": "Sheila Maldonado", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "She was disorganized and never replied to my emails. However, she was really keen into our well-being and was there if we needed her. She takes forever to give feedback on our monthly manuscripts and sometimes doesn't stick to the syllabus. Very laid back, but sometimes too much. If you participate and put in basic effort, you can get an A.", + "pos": 0.03, + "neu": 0.944, + "neg": 0.026, + "_id": { + "$oid": "6711d514cd60fca157e5ca19" + } + }, + { + "text": "She's an extremely understanding professor, especially after classes moved online. Before that, she made us write in journals, which was very refreshing. There were manuscripts to write for each genre, which were fun to write. Class is easygoing and straightforward, with clear grading criteria. I recommend it!", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d514cd60fca157e5ca1a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d514cd60fca157e5ca1c" + }, + "professor_name": "Zhengzhao Luo", + "rating": 5, + "department": "Earth Science department", + "comments": [ + { + "text": "he is really a great professor. explains very well and clearly. Exams and HWs are mostly based on his slides while a few of them are also from the textbook. However, you can find the textbook online, so you don't have to buy it.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d514cd60fca157e5ca1d" + } + }, + { + "text": "Professor Luo is a great professor. There are about 6 homework's, 3 exams, and the final. He was kind enough to make the exam questions similar to the homework's. He was considerate of non-science majors and simplified topics for us to understand. Reading is optional but helpful, but focus mainly on the slides. He stays after class for questions.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d514cd60fca157e5ca1e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d514cd60fca157e5ca20" + }, + "professor_name": "Michael Whalen", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "I'll be honest - Whalen is extremely harsh and can sometimes just straight up be mean, but it's all because he wants you to succeed. I've never seen a guy who cares so passionately about seeing his students do well. He'll make you feel like a failure, but then teach you how not to be. He's amazing. Take his class, it's one of the best I've had.", + "pos": 0.358, + "neu": 0.575, + "neg": 0.067, + "_id": { + "$oid": "6711d514cd60fca157e5ca21" + } + }, + { + "text": "Intense, but that's what you really need to be succesful in music. Recommend this class 100%", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d514cd60fca157e5ca22" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d515cd60fca157e5ca24" + }, + "professor_name": "Gregory Olmschenk", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Really easy fr data structure. Open book exams. Really nice guy. Really good lectures. Taking notes in lecture alone was enough for an A.", + "pos": 0.301, + "neu": 0.635, + "neg": 0.064, + "_id": { + "$oid": "6711d515cd60fca157e5ca25" + } + }, + { + "text": "Olmschenk is a great teacher for Data Structures. Because he is a Ph.D. student, he understands the needs of the students and provides help whenever he can. The projects he assigns are a very good resource to understand the material. His tests are average difficulty and he offers a lot of extra credit.", + "pos": 0.2, + "neu": 0.762, + "neg": 0.038, + "_id": { + "$oid": "6711d515cd60fca157e5ca26" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d515cd60fca157e5ca28" + }, + "professor_name": "Michael Holman", + "rating": 4, + "department": "Media Arts department", + "comments": [ + { + "text": "Not a bad guy, a bit full of himself though. Easy A if you show up, occasionally participate, and avoid falling asleep. Weekly 1-pg summaries that you tell a story and incorporate aspects of chapter summaries he provides. Final is literally things from chapter summaries, no need to buy the book at all. Boring but easy, what can I say?", + "pos": 0.116, + "neu": 0.794, + "neg": 0.09, + "_id": { + "$oid": "6711d515cd60fca157e5ca29" + } + }, + { + "text": "Great person, easiest A. Just be attentive and participate. It may start to feel repetitive and boring. But it is the easiest A. Final exam takes 20mins", + "pos": 0.245, + "neu": 0.661, + "neg": 0.095, + "_id": { + "$oid": "6711d515cd60fca157e5ca2a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d515cd60fca157e5ca2c" + }, + "professor_name": "Khalid Waleed", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "He is a awesome professor. He helps student to pass the class. He takes 5 tests. No HW. He will give you 2 extra credit 5 & 5 for 1st 2 test. 1 TEST GRADE will be dropped. Before final exam he will give you 10 marks extra credit that you can added into your any exam grade wherever you want. and 1 lab report. he wants to give us full marks.", + "pos": 0.162, + "neu": 0.811, + "neg": 0.027, + "_id": { + "$oid": "6711d515cd60fca157e5ca2d" + } + }, + { + "text": "mr. waleed is an amazing lab TA he genuinely wants you to do well and gives highly detailed feedback. if you put in the work, you'll do well in lab with him", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d515cd60fca157e5ca2e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d516cd60fca157e5ca30" + }, + "professor_name": "Ali Syed", + "rating": 2, + "department": "Sociology department", + "comments": [ + { + "text": "He was very confusing, I also left that class with no information about the course, The work and lecture and everything did not match up to the course and I was always lost in what he was saying.", + "pos": 0.0, + "neu": 0.839, + "neg": 0.161, + "_id": { + "$oid": "6711d516cd60fca157e5ca31" + } + }, + { + "text": "There were so many things that were wrong not just with the course itself but the\nProfessor and I would share all of it but The guidelines on here say not to write about those things or my comment will get removed so please save yourself and take the course somewhere else or with someone else", + "pos": 0.175, + "neu": 0.793, + "neg": 0.031, + "_id": { + "$oid": "6711d516cd60fca157e5ca32" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d516cd60fca157e5ca34" + }, + "professor_name": "Joseph Zeylikovich", + "rating": 1.8, + "department": "Physics department", + "comments": [ + { + "text": "He paraphrases from the book. His interpretation of it is vague. The syllabus is not reliable. The course is not organized, you are expected to 'memorize' un-named equations. Students are allowed to make their own 'formula' sheet. Poor feedback.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d516cd60fca157e5ca35" + } + }, + { + "text": "(summer12) very difficult, he gives 3 test, 25%, 25% and 50% final. he does not curve, no extra credit. I have talked to about 10 students from my class (8 fails , 2 D) you need 75% to get the C. His test are 10 questions with a,b and c subquestions. I do not recommend this professor or this class at all unless you want to ruin your gpa", + "pos": 0.083, + "neu": 0.749, + "neg": 0.168, + "_id": { + "$oid": "6711d516cd60fca157e5ca36" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d516cd60fca157e5ca38" + }, + "professor_name": "Kavery Kaul", + "rating": 4.5, + "department": "Media Arts department", + "comments": [ + { + "text": "She makes everything sound so interesting and using film clips to help us understand the language of film a whole lot better Just don''t be 15 minutes late for her class otherwise she would tell you to leave", + "pos": 0.205, + "neu": 0.768, + "neg": 0.027, + "_id": { + "$oid": "6711d516cd60fca157e5ca39" + } + }, + { + "text": "This class prepares you for the real world. She runs this class very professionally. It's tough, but you are guaranteed to learn. Her critiques are helpful and you will NEVER make the same mistake again. NEVER be absent or late (late = kicked from class). ALWAYS work hard, read, and do her assignments EXACTLY how she wants it. Overall she's good.", + "pos": 0.108, + "neu": 0.804, + "neg": 0.087, + "_id": { + "$oid": "6711d516cd60fca157e5ca3a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d517cd60fca157e5ca3c" + }, + "professor_name": "Frank Walton", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "When he first started I was a little scared bc I didn't know what to expect but he's awesome! He tells you exactly what you need to do so there are NO surprises! His classes may be a bore but it can be fun at times. I'm going to take him again!", + "pos": 0.167, + "neu": 0.699, + "neg": 0.134, + "_id": { + "$oid": "6711d517cd60fca157e5ca3d" + } + }, + { + "text": "This professor just started at CCNY and Im currently taking him for one of my MCA classes. I've never posted on one of these comments before and was always the one to read them, not write. I had to create a profile for him to express how awesome he is! Hes caring, neat, organized, clear and one of the best professors I've ever had!! Take him !", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d517cd60fca157e5ca3e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d517cd60fca157e5ca40" + }, + "professor_name": "Weiman Nyan", + "rating": 1, + "department": "Engineering department", + "comments": [ + { + "text": "WeiMAN is the MAN!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d517cd60fca157e5ca41" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d517cd60fca157e5ca42" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d518cd60fca157e5ca44" + }, + "professor_name": "Haralambos Vasiliadis", + "rating": 4.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He makes CE 264 as it should be. A basic class should be treated as basic. Taking the class in summer seems like one of the best decisions I have taken.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d518cd60fca157e5ca45" + } + }, + { + "text": "One of the best professors in City College. Has very high knowledge of each material he teaches. Very helpful and Professional. He likes home works to be done on his own style.Makes you feel you are in one of the top engineering school.Never repeat his exams.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d518cd60fca157e5ca46" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d518cd60fca157e5ca48" + }, + "professor_name": "Peter Fankhauser", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "Great teacher, wished i would've tried harder", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d518cd60fca157e5ca49" + } + }, + { + "text": "Good professor. Help is given when needed. Shooting assignment are a bit difficult to come up with but the textbook does inspire you. Text book must be read to pass the class. And he uses blackboard for homework assignments.", + "pos": 0.194, + "neu": 0.768, + "neg": 0.038, + "_id": { + "$oid": "6711d518cd60fca157e5ca4a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d518cd60fca157e5ca4c" + }, + "professor_name": "Andre Guzzi", + "rating": 4.3, + "department": "Political Science department", + "comments": [ + { + "text": "Prof. Guzzi is an amazing lecturer. You'll learn more going to his lectures than the readings of which he assigns a lot but they are not mandatory; he goes over them in class. I've learned so much from his class. He assigns a 2 page response for every section and there are 3 of them along with a 10 question final and midterm. Take him!", + "pos": 0.04, + "neu": 0.94, + "neg": 0.02, + "_id": { + "$oid": "6711d518cd60fca157e5ca4d" + } + }, + { + "text": "Prof Guzzi is awesome. class is always interesting. very little homework. yes there's alot of reading, but you dont have to do it. although he is not always clear he tries his best. i recommend taking him", + "pos": 0.312, + "neu": 0.632, + "neg": 0.057, + "_id": { + "$oid": "6711d518cd60fca157e5ca4e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d519cd60fca157e5ca50" + }, + "professor_name": "Dane Ruffin", + "rating": 4, + "department": "Anthropology department", + "comments": [ + { + "text": "Once a week you watch documentaries, the other day you discuss the reading. I was very bored in his class, even during discussion days. You don't even have to do the reading, he tells you what is on the exams. If you're willing to sit through a very boring class and not learn much, earn a good grade, go for it.", + "pos": 0.044, + "neu": 0.88, + "neg": 0.076, + "_id": { + "$oid": "6711d519cd60fca157e5ca51" + } + }, + { + "text": "No textbook! But there are film documentaries, which were awesome! 3 exams (including final, 25% each)each 25 multiple choice questions, two extra credit options, 15% weekly quizzes, 10% attendance/participation. He was good and made me interested in anthropology.", + "pos": 0.33, + "neu": 0.639, + "neg": 0.031, + "_id": { + "$oid": "6711d519cd60fca157e5ca52" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d519cd60fca157e5ca54" + }, + "professor_name": "Julia Andino", + "rating": 5, + "department": "Sociology department", + "comments": [ + { + "text": "Prof Andino is an amazing Professor. As the previous post stated...\"The lectures are fun, engaging and you come out learning something new\". I have taken 3 classes with Prof Andino and have loved each one. I highly recommend!!", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d519cd60fca157e5ca55" + } + }, + { + "text": "Andino is an excellent professor. The lectures are fun, engaging and you come out learning something new. Class consisted of: participation, extra credit assignment, midterm and final paper. YOU SHOULD DEFINITELY TAKE PROFESSOR ANDINO.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d519cd60fca157e5ca56" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d519cd60fca157e5ca58" + }, + "professor_name": "S Watson", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "Teacher is sweet, funny puts a lot of homework in most days but it's doable. Same goes for the essays. Class is interesting at times and she's a fair grader. I'd recommend her", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d519cd60fca157e5ca59" + } + }, + { + "text": "Great teacher very funny, relaxed, helpful, grades pretty well. Interesting person.", + "pos": 0.845, + "neu": 0.155, + "neg": 0.0, + "_id": { + "$oid": "6711d519cd60fca157e5ca5a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51acd60fca157e5ca5c" + }, + "professor_name": "Dylan Scott", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Dylan is, hands down, the best TA in the Bio dept. He is amazingly clear, not out to trick you, incredibly hilarious, and just an overall inspirational person. His lab tests can be difficult and he gives frequent quizzes, but Dylan will definitely guide you. Show up, listen to him, thoroughly read the lab manual, and you will do just fine.", + "pos": 0.221, + "neu": 0.754, + "neg": 0.025, + "_id": { + "$oid": "6711d51acd60fca157e5ca5d" + } + }, + { + "text": "I had him as a TA for Bio 102 with Grigoryev, and I'm not lying I got really lucky. Dylan is one of the best TA's teaching right now period. Guy cares for his students and probably one of the reasons why I got an A in the class. Take him, you won't regret it.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d51acd60fca157e5ca5e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51acd60fca157e5ca60" + }, + "professor_name": "Jermaine Jones", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Follow PowerPoints and show up to class!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d51acd60fca157e5ca61" + } + }, + { + "text": "The exams are exactly what he reviews and some areas of the book. Article presentation is 25% of Grade!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d51acd60fca157e5ca62" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51acd60fca157e5ca64" + }, + "professor_name": "Marten Fels", + "rating": 1.5, + "department": "Mathematics department", + "comments": [ + { + "text": "Goes too quick. Accent on top of it. Had to drop.", + "pos": 0.14, + "neu": 0.698, + "neg": 0.163, + "_id": { + "$oid": "6711d51acd60fca157e5ca65" + } + }, + { + "text": "He's a nice guy, but his accent and tendency to rush makes him very difficult to understand.", + "pos": 0.092, + "neu": 0.729, + "neg": 0.179, + "_id": { + "$oid": "6711d51acd60fca157e5ca66" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51bcd60fca157e5ca68" + }, + "professor_name": "Annette Swierzbinski", + "rating": 4.5, + "department": "English As A Second Language department", + "comments": [ + { + "text": "Professor Swierzbinski is a lovely lady who cares about her students a lot! I enjoyed attending the class, it was a lot of fun. No papers, just reading assignments. Participation matters. Don't be late for a class and don't skip it! It's the easiest class ever! Highly recommended!", + "pos": 0.328, + "neu": 0.637, + "neg": 0.035, + "_id": { + "$oid": "6711d51bcd60fca157e5ca69" + } + }, + { + "text": "The class is super easy! She is amazing! Encourage you to make friends among your classmates", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d51bcd60fca157e5ca6a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51bcd60fca157e5ca6c" + }, + "professor_name": "Anthony Hamboussi", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "Please take his class. He is the best", + "pos": 0.52, + "neu": 0.48, + "neg": 0.0, + "_id": { + "$oid": "6711d51bcd60fca157e5ca6d" + } + }, + { + "text": "Professor Hamboussi is a good professor. You literally just do the work he asks while showing interest and he'll notice. Participate in the group critiques and you'll be fine. He asks for prints every other week so make sure you're on top of that. He can talk for hours and try to make jokes which will drag the class. Show up and put in effort!", + "pos": 0.193, + "neu": 0.781, + "neg": 0.026, + "_id": { + "$oid": "6711d51bcd60fca157e5ca6e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51bcd60fca157e5ca70" + }, + "professor_name": "Jody Hilton", + "rating": 3, + "department": "Education department", + "comments": [ + { + "text": "Hilton is amazing and hilarious. Always looked forward to this class since it was just making posters and fun experiments. Homework is 150 word discussions, easy midterm, and lengthy final that's mostly just homework we've already handed in. She doesn't really learn names though so grading is pretty objective. No words to describe how great she is.", + "pos": 0.28, + "neu": 0.69, + "neg": 0.03, + "_id": { + "$oid": "6711d51bcd60fca157e5ca71" + } + }, + { + "text": "The worst class I have ever taken with a professor. This professor constantly changes her mind and changes the syllabus. She does not remember what she says in class and changes it again. She gives a lot of work for example discussion posts, response to readings, midterms, papers, and grades extremely tough. No one receives higher than a C.", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d51bcd60fca157e5ca72" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51ccd60fca157e5ca74" + }, + "professor_name": "Alexis Iparraguirre", + "rating": 3, + "department": "Spanish department", + "comments": [ + { + "text": "Alexis is very thorough and a caring man and values his student's progress. He will spend as many classes as it takes for them to understand the material and be confident in themselves. He even provides additional paperwork for the material to be understood, in case of confusion. Do the hw it makes a great difference and he usually goes over it too", + "pos": 0.213, + "neu": 0.758, + "neg": 0.029, + "_id": { + "$oid": "6711d51ccd60fca157e5ca75" + } + }, + { + "text": "If you don't have a background in Spanish, Be ready to drown. He gives ALOT of homework. I'm not even exaggerating and although he claims this is level 1, the work is mostly in Spanish which if you have never spoken the language doesn't make sense. This isn't for beginners like he claims. You will be frustrated. Be forewarned. This is challenging.", + "pos": 0.079, + "neu": 0.791, + "neg": 0.13, + "_id": { + "$oid": "6711d51ccd60fca157e5ca76" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51ccd60fca157e5ca78" + }, + "professor_name": "Christine Li", + "rating": 2.5, + "department": "Biology department", + "comments": [ + { + "text": "Gives MCAT questions for an introduction class, making it impossible to pass. Reconsider taking the course with someone else", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d51ccd60fca157e5ca79" + } + }, + { + "text": "Professor Li is an amazing person, but her test is really hard, and even though she has given out another opportunity to take the test again but it is really affecting my grades. The class that I am taking is a combined class, and I am a sociology major. Her lectures are at a very fast pace and do not really stop to see if the students have ?'s", + "pos": 0.116, + "neu": 0.858, + "neg": 0.027, + "_id": { + "$oid": "6711d51ccd60fca157e5ca7a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51dcd60fca157e5ca7c" + }, + "professor_name": "Ka Lee Sheng", + "rating": 2.5, + "department": "Science department", + "comments": [ + { + "text": "It was an awesome experience but hard at the same time.", + "pos": 0.194, + "neu": 0.684, + "neg": 0.122, + "_id": { + "$oid": "6711d51dcd60fca157e5ca7d" + } + }, + { + "text": "Dont do it especially during this pandemic because she doesnt care what youre going through. She only cares for you to be in class no matter whats going on in your personal life. Just be careful make sure youre ready to get called on the rest of the semester especially if you get to class(online class) a second late.", + "pos": 0.142, + "neu": 0.802, + "neg": 0.056, + "_id": { + "$oid": "6711d51dcd60fca157e5ca7e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51dcd60fca157e5ca80" + }, + "professor_name": "Faridehsadat Sakhaeifar", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Professor Farideh, is amazing her class was incredibly fun and is really good at teaching the skills necessary to progress in her class. She is a fun and funny teacher who enjoys watching the creativity of her students. Highly recommend her if anyone is interested! make sure to work hard and participate", + "pos": 0.448, + "neu": 0.534, + "neg": 0.019, + "_id": { + "$oid": "6711d51dcd60fca157e5ca81" + } + }, + { + "text": "The best prof I've had yet. You learn so much at a very easy pace. Not a lot of homework, just need to put good effort in. An extremely chill professor, who understands a lot about stresses and very easy to work with- especially if you missed some assignments. Take her if you actually want to learn while also securing an easy good grade.", + "pos": 0.278, + "neu": 0.656, + "neg": 0.066, + "_id": { + "$oid": "6711d51dcd60fca157e5ca82" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51dcd60fca157e5ca84" + }, + "professor_name": "Jorge Corredor", + "rating": 3.5, + "department": "Earth Science department", + "comments": [ + { + "text": "Professor Corredor was honestly a godsend this semester. I was nervous because he's a new professor and I didn't know what to expect but I'm glad i got to take my senior project class with him. At first he seemed like a really strict professor but he didn't demand any strict updates on our project like I've heard other professors do. Take him!", + "pos": 0.225, + "neu": 0.754, + "neg": 0.021, + "_id": { + "$oid": "6711d51dcd60fca157e5ca85" + } + }, + { + "text": "He is a new professor at CCNY and had a lot of difficulties teaching online. There weren't a lot of assignments given, and we only had 4 quizzes and a final as he taught the second half of EAS 10400.", + "pos": 0.0, + "neu": 0.947, + "neg": 0.053, + "_id": { + "$oid": "6711d51dcd60fca157e5ca86" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51ecd60fca157e5ca88" + }, + "professor_name": "Shahrukh Khan", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "He's chill", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d51ecd60fca157e5ca89" + } + }, + { + "text": "One of the best TAs at CCNY. Provides all the materials you need for the class. Available outside of recitation hours a lot and really does his best to help you out. Definitely would recommend him if youre taking Orgo.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d51ecd60fca157e5ca8a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51ecd60fca157e5ca8c" + }, + "professor_name": "Daniel Vazquez", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Super easy going as long as you get your work in and participate. It's hard not to want to participate because he's so passionate about what he teaches and the industry. Would take every class offered to be taught by this professor", + "pos": 0.22, + "neu": 0.729, + "neg": 0.052, + "_id": { + "$oid": "6711d51ecd60fca157e5ca8d" + } + }, + { + "text": "One of my favorite professors!", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d51ecd60fca157e5ca8e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51ecd60fca157e5ca90" + }, + "professor_name": "Molly Schwarz", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I absolutely loved this class! This was one of the few classes that I actually looked forward to, she's extremely caring about you and your grade and her lectures are very engaging. Its actually really fun to be in discussions and in general her lessons we're really engaging. Overall, I loved this teacher and I would definitely take it again", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d51ecd60fca157e5ca91" + } + }, + { + "text": "I would definitely recommend taking this class. She has very clear grading criteria and genuinely cares about her students. She is available after class through Slack and emails, and her lectures are fun to attend to. Throughout the semester, she offers extra credit if you want to boost your grade. Overall, she is very nice and I enjoyed her class", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d51ecd60fca157e5ca92" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51fcd60fca157e5ca94" + }, + "professor_name": "Erela Portugaly", + "rating": 3, + "department": "Sociology department", + "comments": [ + { + "text": "her lectures were great and engaging, not boring at all. she had 6 main quizzes which are fairly okay but they relied heavily on the readings which she assigns every week. the readings were long and hard to catch onto. she had a group project or 10 pages which was due on the same day as the final exam which made it hard to study.", + "pos": 0.104, + "neu": 0.85, + "neg": 0.046, + "_id": { + "$oid": "6711d51fcd60fca157e5ca95" + } + }, + { + "text": "The class was alright. The lectures were interesting, and she engages a lot with the class. Quizzes (5), the midterm, and final are in-person paper tests she made, only problem is that if you mess up even one it knocks your grade down a bunch. You also have a 10-page group research paper in the end. If you don't have good group members.. good luck.", + "pos": 0.163, + "neu": 0.738, + "neg": 0.099, + "_id": { + "$oid": "6711d51fcd60fca157e5ca96" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51fcd60fca157e5ca98" + }, + "professor_name": "Lopez Joan Lopez", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "Does not grade things ever, final letter grade was only grade received. Few discussion boards on blackboard. One group project and a final paper. Lectures are boring but participation matters heavily in your grade. Often have to look into textbook for discussions.", + "pos": 0.027, + "neu": 0.935, + "neg": 0.039, + "_id": { + "$oid": "6711d51fcd60fca157e5ca99" + } + }, + { + "text": "A fantastic professor. Easy assignments.", + "pos": 0.684, + "neu": 0.316, + "neg": 0.0, + "_id": { + "$oid": "6711d51fcd60fca157e5ca9a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51fcd60fca157e5ca9c" + }, + "professor_name": "Niloofar Nejatian", + "rating": 5, + "department": "Engineering department", + "comments": [ + { + "text": "Great instructor, loved having her for lab. she was really nice and sweet, also lenient overall too. she also makes the expectations clear and roots for our success, even though its us that put in the work.", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d51fcd60fca157e5ca9d" + } + }, + { + "text": "Very good instructor. Sets clear expectations and is also very understanding.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d51fcd60fca157e5ca9e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d51fcd60fca157e5caa0" + }, + "professor_name": "Herbert Toler", + "rating": 1, + "department": "History department", + "comments": [ + { + "text": "STAY AWAY!!!! falls asleep in class, lectures with no aids, will have you confused for a whole semester, GETS REALLY HOSTILE? WHEN QUESTIONED. Save yourself the headache of dealing with this guy and pick a different instructor.", + "pos": 0.066, + "neu": 0.663, + "neg": 0.271, + "_id": { + "$oid": "6711d51fcd60fca157e5caa1" + } + }, + { + "text": "He was always funny and I did genuinely enjoy his lectures but he NEVER posts on Blackboard. There were papers that we needed to hand in that had no rubric, no requirements, and no prompt anywhere! It was impossibly hard to get a good grade because there are no requirements to follow. Maybe it's different in person, I'm not really sure.", + "pos": 0.189, + "neu": 0.649, + "neg": 0.162, + "_id": { + "$oid": "6711d51fcd60fca157e5caa2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d520cd60fca157e5caa4" + }, + "professor_name": "Chan Harris", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "Lovely presence, and was very understanding. Makes you feel comfortable during speeches, doesn't make it a big deal when you don't get it right the first time, and lets you redo your speeches. If you have a choice, please take him.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d520cd60fca157e5caa5" + } + }, + { + "text": "Super easy, provides good feedback, incredibly nice. Show up, do the speeches, guaranteed A", + "pos": 0.561, + "neu": 0.439, + "neg": 0.0, + "_id": { + "$oid": "6711d520cd60fca157e5caa6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d520cd60fca157e5caa8" + }, + "professor_name": "Isidor Gertner", + "rating": 2, + "department": "Computer Science department", + "comments": [ + { + "text": "His real name is Izidor Gertner, you can find more reviews under that name. To add to my review under his real name; he will treat you horribly and teach/say things that aren't true. It's still worth taking him in my opinion cause you'll be able to argue for your grade and kinda finesse your way into passing with an A+ if you play your cards right", + "pos": 0.092, + "neu": 0.801, + "neg": 0.107, + "_id": { + "$oid": "6711d520cd60fca157e5caa9" + } + }, + { + "text": "This professor DOES NOT CARE about your mental health. The labs are very difficult and time-consuming and the HWs take a long time. He once tried giving us an hour to finish an exam that should've taken 1.5 hours. The textbook is zyBooks, which is very helpful in my opinion.", + "pos": 0.096, + "neu": 0.801, + "neg": 0.104, + "_id": { + "$oid": "6711d520cd60fca157e5caaa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d520cd60fca157e5caac" + }, + "professor_name": "Seth Foster", + "rating": 1, + "department": "Mathematics department", + "comments": [ + { + "text": "He cannot teach, and the exam grades are heavy.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d520cd60fca157e5caad" + } + }, + { + "text": "Class Lectures are based on Webassign and Textbook. He's a student teacher (city college math department & math tutors are bad) and really isn't good at his job. Cannot teach, and exam grades are heavy. Your final exam counts and is the final course grade. Since he doesn't do a great job at teaching you'll only pass the final if you study.", + "pos": 0.0, + "neu": 0.862, + "neg": 0.138, + "_id": { + "$oid": "6711d520cd60fca157e5caae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d521cd60fca157e5cab0" + }, + "professor_name": "Sophia Mullens", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "She is so kindhearted and understanding. Lectures were always informative. I highly recommend her class.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d521cd60fca157e5cab1" + } + }, + { + "text": "The professor is extremely kind and considerate of students needs and struggles. She had 1 quiz (open book), 3 papers, and an oral presentation. Participate if you can, she appreciates it.", + "pos": 0.256, + "neu": 0.681, + "neg": 0.063, + "_id": { + "$oid": "6711d521cd60fca157e5cab2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d521cd60fca157e5cab4" + }, + "professor_name": "Kamelya Youssef", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "angel!!! best prof i've had here at ccny, had an amazing time in her class.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d521cd60fca157e5cab5" + } + }, + { + "text": "She was an amazing professor, not one boring day in class. The conversations we had in class were never boring. Obviously, lots of writing since it was a creative writing class, but definitely lots of short readings and long readings. It was a summer class, so it was a lot, but not hard. Would definitely take it again. She is caring and amazing.", + "pos": 0.277, + "neu": 0.686, + "neg": 0.037, + "_id": { + "$oid": "6711d521cd60fca157e5cab6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d521cd60fca157e5cab8" + }, + "professor_name": "Joao Ribeiro", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "I didn't really wanna take this class since i dont like chemistry but he convinced me. This guy is so nice. He's lenient, he's understanding, and has a lot of other nice traits. We have him on Friday's and muslims have to take a break to pray so he'd just give everyone a break so muslims could pray. The break would be like 10-20 mins. TAKE HIM!!", + "pos": 0.295, + "neu": 0.687, + "neg": 0.018, + "_id": { + "$oid": "6711d521cd60fca157e5cab9" + } + }, + { + "text": "I took his class during the summer as a retake for my other chemistry class in the spring. He's a great professor. His material was much easier to understand and he was even willing to let me make up for earlier work. He'd explain things clearly and I was able to pass all his tests with decent scores. Take his class!", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d521cd60fca157e5caba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d522cd60fca157e5cabc" + }, + "professor_name": "Alfredas Daugiala", + "rating": 3.3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Knows a lot about the geotech industry, just doesn't show in his teaching. If you want to learn you really need to ask questions because he won't force you into this learning.", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d522cd60fca157e5cabd" + } + }, + { + "text": "In general good, very knowledgeable , but please improve the way you convey the information to the students.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d522cd60fca157e5cabe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d522cd60fca157e5cac0" + }, + "professor_name": "Richard Esposito", + "rating": 3, + "department": "Media Arts department", + "comments": [ + { + "text": "In this class be prepared to read the New York Times and be prepared to have solid content when writing your articales. He is a little tough but not unbearable. Be ready to do work and know the NY Times", + "pos": 0.098, + "neu": 0.815, + "neg": 0.088, + "_id": { + "$oid": "6711d522cd60fca157e5cac1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d522cd60fca157e5cac3" + }, + "professor_name": "Xiang Meng", + "rating": 4, + "department": "Computer Science department", + "comments": [ + { + "text": "Great professor, was concise, and clear about material. Only gripe was that no study guide or review provided, so really had no clue on what to expect on the test. 6 homework assignments, and 3 test.", + "pos": 0.154, + "neu": 0.733, + "neg": 0.113, + "_id": { + "$oid": "6711d522cd60fca157e5cac4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d523cd60fca157e5cac6" + }, + "professor_name": "Martin Duff", + "rating": 5, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d523cd60fca157e5cac8" + }, + "professor_name": "Jenny Hagel", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "Great professor, and everyone learns a lot. We should all hope she comes back to teach here again.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d523cd60fca157e5cac9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d523cd60fca157e5cacb" + }, + "professor_name": "Angel Tibbs", + "rating": 4, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d524cd60fca157e5cacd" + }, + "professor_name": "Taylor Ramsey", + "rating": 4.5, + "department": "Political Science department", + "comments": [ + { + "text": "Very reasonable professor and helpful as well. Available when students need her and she's very fair. She uses the textbooks so you should stay on top of the readings and she doesn't give too much work. She assigns a few papers and they're never too lengthy. Her exams are reasonable and if you do the readings you should be fine.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d524cd60fca157e5cace" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d524cd60fca157e5cad0" + }, + "professor_name": "Nina Stojkovic", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Excellent teacher! Very helpful! Good grader.", + "pos": 0.779, + "neu": 0.221, + "neg": 0.0, + "_id": { + "$oid": "6711d524cd60fca157e5cad1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d524cd60fca157e5cad3" + }, + "professor_name": "Gina Campelia", + "rating": 4.5, + "department": "Philosophy department", + "comments": [ + { + "text": "She's really great. She made complex philosophical ideas become easier to grasp. I feel I became a better writer because of this course. She tiec philosophy into real life experiences which was great. Not an easy grader but extremely fair. She was very attentive to everyone and made herself available all the time. You should take her!", + "pos": 0.195, + "neu": 0.779, + "neg": 0.026, + "_id": { + "$oid": "6711d524cd60fca157e5cad4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d525cd60fca157e5cad6" + }, + "professor_name": "Chrissy Cacace", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "This is an outstanding professional who showed me the subject of substance abuse and chemical dependence in a way that no one had before. Professor Cacace always smiled and answered my questions clearly, with confidence and acknowledging my level of education. Her class consisted of presentations, site visits, 5p papers and interesting discussions.", + "pos": 0.236, + "neu": 0.671, + "neg": 0.093, + "_id": { + "$oid": "6711d525cd60fca157e5cad7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d525cd60fca157e5cad9" + }, + "professor_name": "Lauren Wright", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "A doctorate student herself understands students concerns. She is clear with what she expects from students. It seems like she gives a lot of homework (online submissions) but HWs are easy and she is a fair and easy grader too. Her exams are multiple choice and text book based. Exams contain extra credit short essays too. Overall, I liked it :)", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d525cd60fca157e5cada" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d525cd60fca157e5cadc" + }, + "professor_name": "Jaime McCaw", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Gives Extra Credit. Very Clear and Concise. Midterm, final, and a paper. Material is not super easy so you have to spend time to do well. But the professor is extremely nice and helpful. One of the few nicest Psychology Professors in CCNY. Take her class. Also she is very hot.", + "pos": 0.276, + "neu": 0.666, + "neg": 0.058, + "_id": { + "$oid": "6711d525cd60fca157e5cadd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d526cd60fca157e5cadf" + }, + "professor_name": "Masahiro Kawaji", + "rating": 5, + "department": "Engineering department", + "comments": [ + { + "text": "Everything is in the lectures, but HW takes quite some time. Helpful in office hours but may get confusing at times. Minimum of 88 needed for both exams to get an A. Nice Guy. (if your gpa>3.0 and US citizen, guaranteed scholarship of approx. $2500; if you take all 3 nuclear classes, you will receive a nuclear engineering concentration certificate)", + "pos": 0.116, + "neu": 0.849, + "neg": 0.035, + "_id": { + "$oid": "6711d526cd60fca157e5cae0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d526cd60fca157e5cae2" + }, + "professor_name": "Karen Loew", + "rating": 3, + "department": "Media Arts department", + "comments": [ + { + "text": "She's cool as a person and a decent professor. You can tell that she's new as a professor, because she tends to go on a lot of tangents without a really fleshed out lesson plan. Be ready to write some articles and a big investigative article at the end of the semester.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d526cd60fca157e5cae3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d526cd60fca157e5cae5" + }, + "professor_name": "Christopher Hutchinson", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "LOVE THIS PROFESSOR. He's very kind, on papers gives great feedback and incorporated extra credit if you revised according to his notes. Every class you gotta read the textbook and do discussions on blackboard. Discussions in class get really deep to where everyone is involved.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d526cd60fca157e5cae6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d527cd60fca157e5cae8" + }, + "professor_name": "Leo Spychala", + "rating": 3, + "department": "Biology department", + "comments": [ + { + "text": "There were certain lectures that are interesting but it was quite boring for most of the time. The class is solely based on the group projects and they were kind of hard and time consuming since we have other classes and stuff. It's not an easy A but if you need 3 more credits and don't mind being bored, then this is your class. Prof is okay too.", + "pos": 0.145, + "neu": 0.748, + "neg": 0.106, + "_id": { + "$oid": "6711d527cd60fca157e5cae9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d527cd60fca157e5caeb" + }, + "professor_name": "Sherry Wasserman", + "rating": 1, + "department": "English department", + "comments": [ + { + "text": "The worst Professor in the PCP program. She has sound publishing experience but absolutely can not translate that into teaching. She is HIGHLY inappropriate, ignorant, arrogant, and insensitive. I would advise NO ONE to take her class because you will only feel ridiculed and dread going to class each week. Please absolutely NO ONE take her class.", + "pos": 0.036, + "neu": 0.592, + "neg": 0.372, + "_id": { + "$oid": "6711d527cd60fca157e5caec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d527cd60fca157e5caee" + }, + "professor_name": "Kany Diallo", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Kany was a Peer Coach/ TA for Stats! She was great overall. If you do not come to class, you will not learn. She is very understanding but do not take her kindness for granted because she will fail you. You have 2 Lab stats exams and 3 Stats exams for the course. Textbook reading is a must and she teach at a level where all students can understands", + "pos": 0.064, + "neu": 0.83, + "neg": 0.106, + "_id": { + "$oid": "6711d527cd60fca157e5caef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d528cd60fca157e5caf1" + }, + "professor_name": "Kiyoko Kashiwagi", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "Professor Kashiwagi is genuine and cares a lot about her students. For midterm& final, you have to perform all the movements with other students or by yourself, but she's generous when it comes to grades, so just do your best. Watch two school plays and write a one page report on each. Generally, a fun and easy course that helps you relax.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d528cd60fca157e5caf2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d528cd60fca157e5caf4" + }, + "professor_name": "Nicole Baltzer", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "She is really nice and keeps it real. She grades the exams and papers. She is clear with what she expects to see in papers, and what will get you closer to a higher score.", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d528cd60fca157e5caf5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d528cd60fca157e5caf7" + }, + "professor_name": "Donald Charlton", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Professor Charlton is a very involved & caring teacher. His personality lights up the room & you can tell he really cares for his students. The material is super easy but there is a lot of writing - its required as a freshman course.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d528cd60fca157e5caf8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d529cd60fca157e5cafa" + }, + "professor_name": "Daisy Dominguez", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "This class at times leans more seminar/discussion-based than traditional lecture-heavy at times but it's a well-balanced class. She is super caring and you can tell she's really interested in the subjects she teaches, so as long you participate and write decently, you can get an easy B (or A depending on the circumstances)", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d529cd60fca157e5cafb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d529cd60fca157e5cafd" + }, + "professor_name": "Rifat Kaynas", + "rating": 1, + "department": "Economics department", + "comments": [ + { + "text": "Absolutely terrible TA. I have never been more frustrated by this TAs lack of understanding at the students' issues. Multiple errors in all given exams, lack of expertise in the subject, rehashes slides already provided by professor, doesn't hold TA sessions regularly, gets defensive when asked to explain his reasoning behind his grading choices.", + "pos": 0.065, + "neu": 0.768, + "neg": 0.166, + "_id": { + "$oid": "6711d529cd60fca157e5cafe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d529cd60fca157e5cb00" + }, + "professor_name": "Keyvan Dastmalchi", + "rating": 3, + "department": "Chemistry department", + "comments": [ + { + "text": "His exams are verbatim to what he says in class. Regardless of whether or not what he says is correct according to recent studies, what he says goes. Very strict with grading. Midterm and final, quizzes every class that dont count towards your grades be give you an idea of what will be on the exam. More memorization than understanding.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d529cd60fca157e5cb01" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52acd60fca157e5cb03" + }, + "professor_name": "Bin Mu", + "rating": 2, + "department": "Computer Science department", + "comments": [ + { + "text": "His accent is very heavy. He is difficult to understand during lectures and makes you feel like you don't want to be there. But, he gives pop quizzes so you don't have a choice :(", + "pos": 0.044, + "neu": 0.786, + "neg": 0.17, + "_id": { + "$oid": "6711d52acd60fca157e5cb04" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52acd60fca157e5cb06" + }, + "professor_name": "Leah Anderst", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Best professor ever! She is friendly and always willing to help her students with drafts, papers, and even anything outside of class. She is quite knowledge and presents the material very clearly.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d52acd60fca157e5cb07" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52acd60fca157e5cb09" + }, + "professor_name": "Michael Toogood", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Very helpful, cares about his students. Teaches very well. Gives alot of hw though and grades fairly. Overall if you do your work well he will give you a good grade", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d52acd60fca157e5cb0a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52bcd60fca157e5cb0c" + }, + "professor_name": "Amanda Winkelsas", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "You can tell she cares alot about her work. She comes off really tough in the beginning but then she shares more of her experiences and you can learn alot. Most readings were interesting and she made the topics relate to real classrooms. Great caring professor.", + "pos": 0.311, + "neu": 0.666, + "neg": 0.023, + "_id": { + "$oid": "6711d52bcd60fca157e5cb0d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52bcd60fca157e5cb0f" + }, + "professor_name": "Mary Sharkey", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "She is a great teacher. But is hard on attendance because if you are absent more than three times you drop a letter grade and are absent more then six time you fail the class. She does not excuse sickness as a excuse. But she gives you time if your late because if you are late less then 15 minutes she would excuse your lateness.", + "pos": 0.074, + "neu": 0.786, + "neg": 0.14, + "_id": { + "$oid": "6711d52bcd60fca157e5cb10" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52bcd60fca157e5cb12" + }, + "professor_name": "Lawrence Rushing", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "He explains the material of the class very especific, but he is never agree with the students, he doesn't grade the student fear.", + "pos": 0.0, + "neu": 0.751, + "neg": 0.249, + "_id": { + "$oid": "6711d52bcd60fca157e5cb13" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52bcd60fca157e5cb15" + }, + "professor_name": "Robert Bohn", + "rating": 4, + "department": "Media Arts department", + "comments": [ + { + "text": "Bohn is a funny guy. He is definitely someone to make friends with and keep in touch because he has SO MANY REFERENCES and a lot of experience. The textbook isn't as important just pay attention in class, speak up and always try to present when given the option. He gives a lot of writing and is really helpful, but only if you ask.", + "pos": 0.115, + "neu": 0.848, + "neg": 0.036, + "_id": { + "$oid": "6711d52bcd60fca157e5cb16" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52ccd60fca157e5cb18" + }, + "professor_name": "Shareah Taleghani", + "rating": 5, + "department": "Arabic department", + "comments": [ + { + "text": "By far the most awesome and sweetest/funniest professor i've had so far. Shes really good at teaching Arabic and makes it enjoyable even when its early in the morning. Very helpful and encouraging to all her students. Shes well traveled to many Arabic speaking countries so she is able to explain the differences in dialect as well. Take her soon!", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d52ccd60fca157e5cb19" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52ccd60fca157e5cb1b" + }, + "professor_name": "Lisa Hogan", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "Musicianship 3 She's tough and expects reasonably top-notch effort. But once she sees you care, she opens up her heart. She's really in it for us, the student. Give her a chance and you won't regret it. Hogan knows what she's been doing. She's also set me up with some job opportunities. Don't be afraid of the work and you'll be awarded many ways.", + "pos": 0.279, + "neu": 0.705, + "neg": 0.015, + "_id": { + "$oid": "6711d52ccd60fca157e5cb1c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52ccd60fca157e5cb1e" + }, + "professor_name": "Gail Lalo", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "great professor, brings the field of industrial psychology to life with the discussion of psycholgical issues in the workplace and solutions, she goes beyond the text. tests are not all that easy, so make sure to take good notes and read the chapter. best part of class was the resume workshop, and mock interviews! fair grader, gives extra credit.", + "pos": 0.272, + "neu": 0.659, + "neg": 0.069, + "_id": { + "$oid": "6711d52ccd60fca157e5cb1f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52dcd60fca157e5cb21" + }, + "professor_name": "J Yarwood", + "rating": 4, + "department": "Anthropology department", + "comments": [ + { + "text": "Young and nice. Very interesting readings. Made me want to minor in Anthropology.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d52dcd60fca157e5cb22" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52dcd60fca157e5cb24" + }, + "professor_name": "Paul Occhiogrosso", + "rating": 1, + "department": "Administration department", + "comments": [ + { + "text": "Appears helpful but can be snide in his comments, not entirely certain of how really helpful v/s bureaucratic he is. Does not give a good feeling", + "pos": 0.226, + "neu": 0.61, + "neg": 0.164, + "_id": { + "$oid": "6711d52dcd60fca157e5cb25" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52dcd60fca157e5cb27" + }, + "professor_name": "Soyeon Lee", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "She is extremely clear about piano techniques and concepts. Helped me a lot. However, she can be a little impatient. This was her first time teaching so I don't blame her. As far as grades go, I'm unaware of her grading since she never told us what grades we got on our performances. Overall, a very fun class!", + "pos": 0.138, + "neu": 0.806, + "neg": 0.056, + "_id": { + "$oid": "6711d52dcd60fca157e5cb28" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52ecd60fca157e5cb2a" + }, + "professor_name": "Karin Olander", + "rating": 1.5, + "department": "English department", + "comments": [ + { + "text": "writing for the sciences is a pretty useless class, and it literally felt like she was just assigning papers to make a quota. there was no learning experience. this is one of those classes where your there pretty much for the credit so don't expect to gain much out of the experience. also she went HAM over getting the textbook, but never used i", + "pos": 0.11, + "neu": 0.813, + "neg": 0.077, + "_id": { + "$oid": "6711d52ecd60fca157e5cb2b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52ecd60fca157e5cb2d" + }, + "professor_name": "Camille Petit", + "rating": 2.5, + "department": "History department", + "comments": [ + { + "text": "doesn't know how to gain real authority in a class. is never clear on whether the tests are from the txtbk or his lectures, and is usually opposite of what he says. lost faith in my class for our final (rly easy). way too obsessed with ancient rome, we spent wayy too long on it!", + "pos": 0.165, + "neu": 0.74, + "neg": 0.095, + "_id": { + "$oid": "6711d52ecd60fca157e5cb2e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52ecd60fca157e5cb30" + }, + "professor_name": "Sonia Nanchuk", + "rating": 4, + "department": "Education department", + "comments": [ + { + "text": "I took the Young Children in Special Education. Initial reaction was utt-uhh but stick with her class is not bad. Just do the work and you will go well. Best part is no text book purchase - its all article reading and she gives them to you.", + "pos": 0.239, + "neu": 0.713, + "neg": 0.048, + "_id": { + "$oid": "6711d52ecd60fca157e5cb31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52fcd60fca157e5cb33" + }, + "professor_name": "Henry Bunch", + "rating": 2, + "department": "English department", + "comments": [ + { + "text": "Recent grad of CCNY himself, he has hard time staying specific. His syllabus is a myriad of constantly changing assignments and topics. Very disorganized.", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d52fcd60fca157e5cb34" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52fcd60fca157e5cb36" + }, + "professor_name": "James Khamsi", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "Prof. James is amazing! He is always available no matter what time of day it is. He teaches you how to make great analysis. Definitely recommend him if you want to learn something different.", + "pos": 0.336, + "neu": 0.64, + "neg": 0.025, + "_id": { + "$oid": "6711d52fcd60fca157e5cb37" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d52fcd60fca157e5cb39" + }, + "professor_name": "Jeffrey Kucik", + "rating": 4, + "department": "Political Science department", + "comments": [ + { + "text": "I really like professor Jeffrey he definitely knows his stuff sometimes the readings are overwhelming. The class really consists of weekly readings and 2 papers and participation is a MUST.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d52fcd60fca157e5cb3a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d530cd60fca157e5cb3c" + }, + "professor_name": "Heather Denyer", + "rating": 5, + "department": "African-American Studies department", + "comments": [ + { + "text": "She is a very good teacher. There is a lot of reading but it isn't a must. She gave one paper, discussions on blackboard, then a huge paper that would be your final grade. You get a lot of time to prepare for this. Overall very easy class.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d530cd60fca157e5cb3d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d530cd60fca157e5cb3f" + }, + "professor_name": "Juan Villanueva", + "rating": 2, + "department": "Art department", + "comments": [ + { + "text": "He has really poor time management. He always went over class time and you have no idea on how you're doing in class until the semester is over. He is good at his Type job but a horrible professor. He made us watch youtube videos in class when it could have been spent getting feedback and working on projects.", + "pos": 0.03, + "neu": 0.84, + "neg": 0.13, + "_id": { + "$oid": "6711d530cd60fca157e5cb40" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d530cd60fca157e5cb42" + }, + "professor_name": "Ghasan Anwar Yousef", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "Very nice and caring professor! His exams are hard if you don't study on your own, because he does not curve. He provides textbook chapter questions for you to practice so prepare well with them and you should do well on the exam! To prepare for the final you have to start prepping on your own mid semester because it gets harder towards the end.", + "pos": 0.159, + "neu": 0.822, + "neg": 0.019, + "_id": { + "$oid": "6711d530cd60fca157e5cb43" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d531cd60fca157e5cb45" + }, + "professor_name": "Georgios Spiliotopoulos", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "Professor Georgios is a gem, he is an excellent professor who is very kind and respectful to his students. The workload in the class is average and very easy. The lectures are very informative and he has a passion for history. He answers all questions and gives good feedback. I would take this class again in a heartbeat", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d531cd60fca157e5cb46" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d531cd60fca157e5cb48" + }, + "professor_name": "Jayne Cole", + "rating": 2, + "department": "Art department", + "comments": [ + { + "text": "Big ego n attitude, class was boring so i sat in the back, could have been for kids, took forever 2 grade anything, posted way 2 much content", + "pos": 0.0, + "neu": 0.922, + "neg": 0.078, + "_id": { + "$oid": "6711d531cd60fca157e5cb49" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d531cd60fca157e5cb4b" + }, + "professor_name": "Allison Bishop", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Many homework and projects, No Midterm and Final.Good Concept and method, Always open to questions, ready to discuss in order to facilitate your understanding. She's very nice and likes students who participate or not. If you have any questions, do not hesitate to ask them. I wish more teachers were like her.Have an idea of the hyton.", + "pos": 0.234, + "neu": 0.734, + "neg": 0.032, + "_id": { + "$oid": "6711d531cd60fca157e5cb4c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d532cd60fca157e5cb4e" + }, + "professor_name": "Anil Baysal", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "one of the best new Professor's at city college", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d532cd60fca157e5cb4f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d532cd60fca157e5cb51" + }, + "professor_name": "Michael Berman", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "A easy professor. Have to do two group presentations,discussion board, and a final paper. Easy class and fun. He would work with you if need extra time for assignments. Replies to emails fast.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d532cd60fca157e5cb52" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d532cd60fca157e5cb54" + }, + "professor_name": "Sophia Monegro", + "rating": 5, + "department": "Sociology department", + "comments": [ + { + "text": "The class did have quite the amount of work, but it is all relevant to the class. Professor Monegro has a teaching style that makes you interested and want to participate, and actually cares about what you learn and understand. One of the best professors at CCNY.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d532cd60fca157e5cb55" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d533cd60fca157e5cb57" + }, + "professor_name": "Adelina Espinoza", + "rating": 1, + "department": "Spanish department", + "comments": [ + { + "text": "She had to be one of the worst Professor Ive ever had. Shes arrogant and a narcissist who pays no mind to the concerns of her students. She never answers a question straight forward and will attempt to belittle you if you ask her for a review a test she said she would do a review for. DO NOT TAKE HER FOR ANY MEANS NECESSARY, take French", + "pos": 0.025, + "neu": 0.813, + "neg": 0.163, + "_id": { + "$oid": "6711d533cd60fca157e5cb58" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d533cd60fca157e5cb5a" + }, + "professor_name": "Rafael Samanez", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "Professor Samanez is an amazing professor. He was one of the best professors I've had at college. His class was my favorite class.This class was hybrid, but most of them were online. His lectures are engaging and easy to understand. He is always kind and helpful. I would take this professor again. 10/10 recommend taking this class.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d533cd60fca157e5cb5b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d533cd60fca157e5cb5d" + }, + "professor_name": "Michael King", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "He honestly cares so much for his students. He understands that architecture students have a lot on their plate and uses his discussion classes to just talk about pretty much anything. He is always available outside of class. There is one big essay, but he makes you do it piece by piece throughout the semester. Would 100% take again!", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d533cd60fca157e5cb5e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d534cd60fca157e5cb60" + }, + "professor_name": "Julian De Leon Heiblum", + "rating": 1, + "department": "Honors department", + "comments": [ + { + "text": "Gives extracredit for attendance and watching movies otherwise dense. If you aren't a History nerd don't take. Gives hard weekly readings like Elliott The Problem of the State, a mid-term: a map, timeline, openended questions based on notes, and two essays based on hard readings, final is the same. 10 page paper based on a presentation you make.", + "pos": 0.091, + "neu": 0.844, + "neg": 0.065, + "_id": { + "$oid": "6711d534cd60fca157e5cb61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d534cd60fca157e5cb63" + }, + "professor_name": "Leonard Greene", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "Pretty chill professor as long as you keep up with current events and do the three major assignment. If you like dry humor and have want to take a look at journalism, this is your guy.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d534cd60fca157e5cb64" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d534cd60fca157e5cb66" + }, + "professor_name": "Julie Grunhaus", + "rating": 2, + "department": "Psychology department", + "comments": [ + { + "text": "Paper instructions are vague & yet the professor grades them very harshly. It's unclear what exactly she's looking for in a paper and then you end up losing points for basically not being a mind reader. Also, I personally didn't like her teaching style, it was hard for me to stay focused.", + "pos": 0.045, + "neu": 0.788, + "neg": 0.167, + "_id": { + "$oid": "6711d534cd60fca157e5cb67" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d535cd60fca157e5cb69" + }, + "professor_name": "Florence Lui", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "I enjoyed professor Lui's class so much! She explains things in a way that is both clear and interesting. Even though it's difficult to teach online, she was able to keep the students engaged. I learned a lot from doing the papers and exams. You do need to know the material well in order to pass, because she asks questions that make you think.", + "pos": 0.185, + "neu": 0.782, + "neg": 0.034, + "_id": { + "$oid": "6711d535cd60fca157e5cb6a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d535cd60fca157e5cb6c" + }, + "professor_name": "Iva Podrug", + "rating": 5, + "department": "Social Science department", + "comments": [ + { + "text": "Professor Podrug did a great job of teaching the course with Professor Dennis. She explained the historical side of this course in a way that was easy to understand. The online structure wasn't the best for this course, but she still did a great job and was very understanding toward students who had tech issues. Make sure to participate!!!", + "pos": 0.199, + "neu": 0.77, + "neg": 0.031, + "_id": { + "$oid": "6711d535cd60fca157e5cb6d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d535cd60fca157e5cb6f" + }, + "professor_name": "Deidre Flowers", + "rating": 4, + "department": "History department", + "comments": [ + { + "text": "She is a great, really kind professor, lectures are interesting. Participation and having your camera on help your grade. Work is very manageable: 3 short essays(2-3 pgs.) throughout the semester and weekly summaries. Beware, she's very unorganized and is not too savvy with blackboard/receiving assignments on there. I would take her again, though!", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d535cd60fca157e5cb70" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d536cd60fca157e5cb72" + }, + "professor_name": "Sebastian Diaz Martinez", + "rating": 5, + "department": "Languages department", + "comments": [ + { + "text": "The professor was actually helpful and doesnt grade harshly. He gives extra credit often and the class isnt just a boring class. I got a B- in the class and I wasnt even paying attention to the lectures and I did awful on the exams. Literally just review whatever he teaches because the hardest part of his class is remembering Spanish material.", + "pos": 0.108, + "neu": 0.848, + "neg": 0.044, + "_id": { + "$oid": "6711d536cd60fca157e5cb73" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d536cd60fca157e5cb75" + }, + "professor_name": "Carlos Velasquez-Torres", + "rating": 3, + "department": "Spanish department", + "comments": [ + { + "text": "If you want a professor who never responds to their emails, then this is the class for you. If you take the 3 hour and 20 min class, only one 10 min break. The microphone he uses is from toys r us. The work is easy because they use vhlcectral. Get ready to pay for a package to be in the class.", + "pos": 0.101, + "neu": 0.877, + "neg": 0.021, + "_id": { + "$oid": "6711d536cd60fca157e5cb76" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d536cd60fca157e5cb78" + }, + "professor_name": "Bo Shang", + "rating": 4, + "department": "Engineering department", + "comments": [ + { + "text": "Bo isn't the best at teaching since English isn't his first language (I don't think) and he is new to teaching. I think he was nice with the grading since he was new but this can change over time. Mandatory (but not graded) quizzes as attendance, chapter quizzes, and midterms/finals. All graded very leniently. It was all online. This can change.", + "pos": 0.053, + "neu": 0.913, + "neg": 0.034, + "_id": { + "$oid": "6711d536cd60fca157e5cb79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d537cd60fca157e5cb7b" + }, + "professor_name": "Kaitlyn Schlick", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Kaitlyn is an above average TA. Her voice is monotone when going over the material, but she is chill and cool. The things that she covered were not on the exams, but then again, I can't fully rely on her for that. She just gets the job done and is fair with the students. I would take her again as my TA and I'd recommend her", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d537cd60fca157e5cb7c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d537cd60fca157e5cb7e" + }, + "professor_name": "Aviad Susman", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "He is a new professor and he explains way more than he is supposed to. Most of his exams and quizzes are based on examples in class and webwork. He is alright but not the best for a Math class. I like the fact that he is understanding and does what it takes that benefits the students. He can be lost sometimes.", + "pos": 0.112, + "neu": 0.785, + "neg": 0.103, + "_id": { + "$oid": "6711d537cd60fca157e5cb7f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d537cd60fca157e5cb81" + }, + "professor_name": "Philip Wiles", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "So much reading, a lot of writing. Very light grader however, and provides feedback. Homeworks can be reattempted for higher grades. Open book midterm and final paper. Lectures are super boring, course work is super boring, however he is an entertaining professor with a lot of energy. Starts the class with a different game everyday.", + "pos": 0.193, + "neu": 0.738, + "neg": 0.069, + "_id": { + "$oid": "6711d537cd60fca157e5cb82" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d538cd60fca157e5cb84" + }, + "professor_name": "Mark Sheppard", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "BEST PROFESSOR EVER!! Teaches awesome coding, and if you need help, he's more than happy to help you. I love attending every lectures of his! Please take this professor if you can! I'd take classes with him again.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d538cd60fca157e5cb85" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d538cd60fca157e5cb87" + }, + "professor_name": "Julie Ahring", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Ms Ahring was amazing. Best math teacher ever. She always explained things to me, even when I asked stupid questions. 10/10. I will never forget this math class, made so many memories.", + "pos": 0.235, + "neu": 0.682, + "neg": 0.083, + "_id": { + "$oid": "6711d538cd60fca157e5cb88" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d538cd60fca157e5cb8a" + }, + "professor_name": "Angela Romea", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "Her class was an easy A. Just show up to class and do the in-class assignment to get your attendance. Three journals (about 500 words each), and the only exams were the midterm and final, which were both online and open book. She's super sweet so if you have any concerns, you can always reach out to her. TAKE HER!!", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d538cd60fca157e5cb8b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d539cd60fca157e5cb8d" + }, + "professor_name": "Shachar langlev", + "rating": 1, + "department": "Media Arts department", + "comments": [ + { + "text": "Disorganized & lazy, self-admittedly. Multiple times over the semester he vented at the students about how little money he makes in the film industry and that he's forced to teach because of that. Cannot give clear instructions, nor does his feedback stay within the boundaries of the assignment parameters. Thinks little of his students and said so.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d539cd60fca157e5cb8e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d539cd60fca157e5cb90" + }, + "professor_name": "Rachel Zhang", + "rating": 5, + "department": "World Humanities department", + "comments": [ + { + "text": "Professor Zhang is amazing and she is so sweet. We read multiple books throughout the semester and it was very interesting. There's three essays and she gives good feedback. She is also more into an analysis than a summary when we talk about the books, just make sure to read them. Also, do your work as well I recommend taking her.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d539cd60fca157e5cb91" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d539cd60fca157e5cb93" + }, + "professor_name": "Phillip Payton", + "rating": null, + "department": "Biomedical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d539cd60fca157e5cb95" + }, + "professor_name": "A. Yankwitt", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53acd60fca157e5cb97" + }, + "professor_name": "Yannis Floropoulos", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53acd60fca157e5cb99" + }, + "professor_name": "Pablo Iglesias", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53acd60fca157e5cb9b" + }, + "professor_name": "nbspJohn Gilloolynbsp", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53bcd60fca157e5cb9d" + }, + "professor_name": "Mayowa Obasaju", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53bcd60fca157e5cb9f" + }, + "professor_name": "Zunayet Hussain", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53bcd60fca157e5cba1" + }, + "professor_name": "Seamus Scalon", + "rating": null, + "department": "Liberal Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ccd60fca157e5cba3" + }, + "professor_name": "Mitchell Harris", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ccd60fca157e5cba5" + }, + "professor_name": "Raquel Morales", + "rating": null, + "department": "Medicine department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ccd60fca157e5cba7" + }, + "professor_name": "Angelica Terepka", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ccd60fca157e5cba9" + }, + "professor_name": "Jeremy Andrews", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53dcd60fca157e5cbab" + }, + "professor_name": "Dawn Delikat", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53dcd60fca157e5cbad" + }, + "professor_name": "Sadia Rahman", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53dcd60fca157e5cbaf" + }, + "professor_name": "Ouafaa Hmaddi", + "rating": null, + "department": "Business department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53dcd60fca157e5cbb1" + }, + "professor_name": "Micheal Davis", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ecd60fca157e5cbb3" + }, + "professor_name": "Chen Li", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ecd60fca157e5cbb5" + }, + "professor_name": "Thomas Sessa", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ecd60fca157e5cbb7" + }, + "professor_name": "Martez Smith", + "rating": null, + "department": "Health Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53ecd60fca157e5cbb9" + }, + "professor_name": "VITALY DRUKER", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53fcd60fca157e5cbbb" + }, + "professor_name": "Kylee Pastore", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53fcd60fca157e5cbbd" + }, + "professor_name": "Inigo Pena", + "rating": null, + "department": "Mechanical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53fcd60fca157e5cbbf" + }, + "professor_name": "Jose Reyes", + "rating": null, + "department": "Languages department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d53fcd60fca157e5cbc1" + }, + "professor_name": "Andrew Rutter", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d540cd60fca157e5cbc3" + }, + "professor_name": "Emma Loerick", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d540cd60fca157e5cbc5" + }, + "professor_name": "Joseph Mansky", + "rating": null, + "department": "World Humanities department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d540cd60fca157e5cbc7" + }, + "professor_name": "Christine Chrissian", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d541cd60fca157e5cbc9" + }, + "professor_name": "Gonzalo Lopez", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d541cd60fca157e5cbcb" + }, + "professor_name": "Daniel Shapiro", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d541cd60fca157e5cbcd" + }, + "professor_name": "Sujan Niraula", + "rating": null, + "department": "International Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d541cd60fca157e5cbcf" + }, + "professor_name": "Jennifer Buntildeo", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d542cd60fca157e5cbd1" + }, + "professor_name": "Pedro Prado-Romero", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d542cd60fca157e5cbd3" + }, + "professor_name": "Shant Shahrigian", + "rating": null, + "department": "Philosophy department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d542cd60fca157e5cbd5" + }, + "professor_name": "Denise Addison", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d543cd60fca157e5cbd7" + }, + "professor_name": "Jean Park", + "rating": null, + "department": "Honors department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d543cd60fca157e5cbd9" + }, + "professor_name": "Charles Rolph", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d543cd60fca157e5cbdb" + }, + "professor_name": "Kyle Dugdale", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d543cd60fca157e5cbdd" + }, + "professor_name": "Trevar Riley-Reid", + "rating": null, + "department": "Women's Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d544cd60fca157e5cbdf" + }, + "professor_name": "Benjamin Porter", + "rating": null, + "department": "International Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d544cd60fca157e5cbe1" + }, + "professor_name": "Yasmine Garves", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d544cd60fca157e5cbe3" + }, + "professor_name": "Alexander Fredman", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d544cd60fca157e5cbe5" + }, + "professor_name": "Joseph Kovach", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d545cd60fca157e5cbe7" + }, + "professor_name": "Sunny Tolero", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d545cd60fca157e5cbe9" + }, + "professor_name": "Layana Abu Touq", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d545cd60fca157e5cbeb" + }, + "professor_name": "Richard Steinberg", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d546cd60fca157e5cbed" + }, + "professor_name": "Alyssa Von Uhl", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d546cd60fca157e5cbef" + }, + "professor_name": "A.H. Ahmed", + "rating": null, + "department": "Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d546cd60fca157e5cbf1" + }, + "professor_name": "Kathlene Mcdonald", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d547cd60fca157e5cbf3" + }, + "professor_name": "Milton Mejia", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d547cd60fca157e5cbf5" + }, + "professor_name": "Patrick Yang", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d547cd60fca157e5cbf7" + }, + "professor_name": "Kathryn Mercier", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d548cd60fca157e5cbf9" + }, + "professor_name": "Paul Millington", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d548cd60fca157e5cbfb" + }, + "professor_name": "Marina Yoffe", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d548cd60fca157e5cbfd" + }, + "professor_name": "Alycia Rhinehart", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d548cd60fca157e5cbff" + }, + "professor_name": "Karina Morales", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d549cd60fca157e5cc01" + }, + "professor_name": "Yuliya Selevich", + "rating": null, + "department": "Earth Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d549cd60fca157e5cc03" + }, + "professor_name": "Damon Bolhassani", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d549cd60fca157e5cc05" + }, + "professor_name": "Mohammad Bzeih", + "rating": null, + "department": "Economics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d549cd60fca157e5cc07" + }, + "professor_name": "David Harden", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54acd60fca157e5cc09" + }, + "professor_name": "Sumaiya Ahmed", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54acd60fca157e5cc0b" + }, + "professor_name": "Jason D'Rozario", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54acd60fca157e5cc0d" + }, + "professor_name": "Benjamin Diehl", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54acd60fca157e5cc0f" + }, + "professor_name": "Piyal Singh", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54bcd60fca157e5cc11" + }, + "professor_name": "Sarah Politz", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54bcd60fca157e5cc13" + }, + "professor_name": "Valerie Poulolo", + "rating": null, + "department": "Advisor department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54bcd60fca157e5cc15" + }, + "professor_name": "Entela Buzi", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54ccd60fca157e5cc17" + }, + "professor_name": "Pamela Maines", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54ccd60fca157e5cc19" + }, + "professor_name": "Jeremy Randall", + "rating": null, + "department": "Arabic department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54ccd60fca157e5cc1b" + }, + "professor_name": "Jordan Matuszewski", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54ccd60fca157e5cc1d" + }, + "professor_name": "Angel Torres", + "rating": null, + "department": "International Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54dcd60fca157e5cc1f" + }, + "professor_name": "Paul Special", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54dcd60fca157e5cc21" + }, + "professor_name": "May Lai", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54dcd60fca157e5cc23" + }, + "professor_name": "Jeremy Sortore", + "rating": null, + "department": "Speech department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54dcd60fca157e5cc25" + }, + "professor_name": "Alexander Poltorak", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54ecd60fca157e5cc27" + }, + "professor_name": "Richard Gussenhoven", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54ecd60fca157e5cc29" + }, + "professor_name": "Adam Davidson", + "rating": null, + "department": "Urban Design Development department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54ecd60fca157e5cc2b" + }, + "professor_name": "Javed Chitaman", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54fcd60fca157e5cc2d" + }, + "professor_name": "Christina Filep", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54fcd60fca157e5cc2f" + }, + "professor_name": "Mike Graves", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d54fcd60fca157e5cc31" + }, + "professor_name": "Caitlin Geoghan", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d550cd60fca157e5cc33" + }, + "professor_name": "Liang Yang", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d550cd60fca157e5cc35" + }, + "professor_name": "LYNNE FOSTER", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d550cd60fca157e5cc37" + }, + "professor_name": "Scarlet Sidwell", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "She is one of the most considerate and understanding professors I have ever had. Prof Sidwell constantly went above and beyond to make sure we understood the material and always gave us room to ask questions. She also made sure we were taking care of ourselves and our stress levels, which is rare but so important in college profs", + "pos": 0.161, + "neu": 0.81, + "neg": 0.029, + "_id": { + "$oid": "6711d550cd60fca157e5cc38" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d551cd60fca157e5cc3a" + }, + "professor_name": "Thomas Cheriyan", + "rating": 4.6, + "department": "Engineering department", + "comments": [ + { + "text": "Professor Thomas makes this class engaging and worthwhile. The case studies are a lot of work, but using tools like unstuckstudy ai can help manage the workload. Participation is key, and the professor grades generously.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc3b" + } + }, + { + "text": "Even though i skipped a lot, this class was extremely interesting and entertaining. The case studies are a little rough (5 pages per week minimum) but you'll get used to it. Manage your time with them start early and think hard. The class kinda changes your view on the way a company manages stuff", + "pos": 0.072, + "neu": 0.9, + "neg": 0.028, + "_id": { + "$oid": "6711d551cd60fca157e5cc3c" + } + }, + { + "text": "Very easy class if you can budget your time well. The case studies he uses are super interesting and a great thing to look into but you can def skip the class if you have a friend who can sign you in or take turns wit", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc3d" + } + }, + { + "text": "The classes are very lengthy and in person, and attendance matters a lot since it is worth 30% of the grade. Assignments are very lengthy (70%) but it is very likely you'll get an A as long as you go in enough depth with the page limit since TA is not a harsh grader.", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc3e" + } + }, + { + "text": "The material provided in the class is very interesting and useful for engineers of all fields. There is a lot of reading and 6 pages due once every week. Your grade is judged relative to your classmates work. Grade is made up of only the essays due every week and participation.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc3f" + } + }, + { + "text": "Professor Cheriyan has become one of my favorite professors thus far at City College. With ENGR 276, his lectures are fun, interactive & mind expanding. Like a previous review, you get out what you put in. Make sure to find time for assignments & readings for lectures. Attend class & participate as much as you can. It is worth the time & grade.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc40" + } + }, + { + "text": "Though lecture time can be long (2.5 hrs), it is really worth attending, not just for the grade. Best to set time aside to complete assignments & participate in lectures. These few things are what is graded. Aside from that, you can definitely learn new things from Professor Cheriyan. Do all of this and expect a good grade and time well spent.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc41" + } + }, + { + "text": "You get out what you put in. Prof. Cheriyan is an excellent lecturer that knows how to communicate effectively. I encourage everyone who takes this course to ask questions and speak more often. This is the most practical and life-applicable class I have taken.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc42" + } + }, + { + "text": "The course is incredibly fascinating, covering the application of critical thinking on project management implementation.", + "pos": 0.199, + "neu": 0.681, + "neg": 0.12, + "_id": { + "$oid": "6711d551cd60fca157e5cc43" + } + }, + { + "text": "Our class is the professor and one student talking most of the time, even with the student using very emotive language (hence the class seems like a conversation between two parties). He lets students rant on without stopping them.there is not much to learn from this class that is Relevant to engineering.", + "pos": 0.116, + "neu": 0.841, + "neg": 0.042, + "_id": { + "$oid": "6711d551cd60fca157e5cc44" + } + }, + { + "text": "Professor Cheriyan is easily my favorite professor at City College. I took his Engineering Economics class Spring of 2023 and even though attendance wasn't graded, I found myself going to every class which I don't make a point to do with any of my other classes. He's smart, funny, and made me think in ways I wouldn't have before. 10/10 class.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc45" + } + }, + { + "text": "This is by far the most interesting class I took. I was not interest in this class, but Professor Thomas made it interesting, and encouraged participation. Time was used efficiently, and subjects studied were real life problems. I really learned few things. Take the class or any of his other classes. He grades generously and participation matters.", + "pos": 0.241, + "neu": 0.685, + "neg": 0.074, + "_id": { + "$oid": "6711d551cd60fca157e5cc46" + } + }, + { + "text": "Best professor at CCNY. Enjoyed his class, was very nervous of taking this class but lot of participation matters since this was an online class. Cheriyan deserves a raise. I would take him again if i had to. I am happy i earned B in engr 27600.", + "pos": 0.2, + "neu": 0.769, + "neg": 0.031, + "_id": { + "$oid": "6711d551cd60fca157e5cc47" + } + }, + { + "text": "Calm class and you do end up learning something form either his experiences or the material he presents.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc48" + } + }, + { + "text": "Great professor!\nHe is very clear when explains things and knows how to keep you engaged in the class. No quizzes or exams.", + "pos": 0.32, + "neu": 0.609, + "neg": 0.071, + "_id": { + "$oid": "6711d551cd60fca157e5cc49" + } + }, + { + "text": "He's awesome. I'm a senior about to graduate and he was the best professor I've had at CCNY. Definitely take him if you get the chance.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc4a" + } + }, + { + "text": "Professor didn't care to learn my or anyones name after participating multiple times. The case studies you have to read are interesting but sadly they're discussed on a very simple level. The class period is instead spent watching YouTube and talking about personal finance.", + "pos": 0.038, + "neu": 0.848, + "neg": 0.114, + "_id": { + "$oid": "6711d551cd60fca157e5cc4b" + } + }, + { + "text": "This class is unlike most other engineering classes; students are asked to read and write about engineering focused case studies. Tom heavily emphasizes class participation, so come to every class with a good understanding of the assigned reading and be ready to talk. Very approachable professor with good class environment.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc4c" + } + }, + { + "text": "I love this guy. He is funny and actually care about this students. Instead of making you writing essays and doing extra work during finals week, he asked you to read and just talk about it in class", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc4d" + } + }, + { + "text": "A great class that makes you think outside the box. The professor is amazing, he truly cares about his students and if you need help, he is definitely there for you. Would love all my professors to be like him.", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc4e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d551cd60fca157e5cc50" + }, + "professor_name": "Sean Boson", + "rating": 2.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Boson's CHEM263 is challenging, but doable if you stay on top of the material. Attend lectures, practice questions, and utilize resources like Unstuck AI to ace the exams. The content is tough, but the professor makes it understandable.", + "pos": 0.159, + "neu": 0.8, + "neg": 0.041, + "_id": { + "$oid": "6711d551cd60fca157e5cc51" + } + }, + { + "text": "This class is extremely difficult, so to do well I would NOT take any other difficult STEM classes simultaneously. Write down every reaction shown in lecture, understand each mechanism, and study constantly. You cannot cram for any test. He leaves little room for mistakes, but expectations for exams are pretty clear. Lowest exam grade was dropped.", + "pos": 0.14, + "neu": 0.731, + "neg": 0.129, + "_id": { + "$oid": "6711d551cd60fca157e5cc52" + } + }, + { + "text": "The best thing about him is that there are no surprises. The tests use the lectures so pay attention. He is very just and strict. The lab lectures are good though", + "pos": 0.189, + "neu": 0.717, + "neg": 0.094, + "_id": { + "$oid": "6711d551cd60fca157e5cc53" + } + }, + { + "text": "Don't believe all the bad ratings. VERY hard class but he warns you not to take hard classes w this class. Take notes, pay attention to lecture, practice all study sheet questions(VERY similar to exam questions). Fair exams, no surprises. Content is hard but prof makes everything easy to understand.Don't take this class lightly-STUDY, IT'S DOABLE!", + "pos": 0.124, + "neu": 0.709, + "neg": 0.167, + "_id": { + "$oid": "6711d551cd60fca157e5cc54" + } + }, + { + "text": "Professor Boson is one of the best professors I've ever had. He is very clear and direct; every thing on the exams will be something he taught. As long as u pay attention during class, take good notes, review them thoroughly ahead of time and do some practice problems, you'll be fine. Yes you need to do time management but it's absolutely doable.", + "pos": 0.142, + "neu": 0.814, + "neg": 0.044, + "_id": { + "$oid": "6711d551cd60fca157e5cc55" + } + }, + { + "text": "I was expecting much worse based on the rate my professor \nShow you care and put effort- he will reciprocate \nHe is actually a nice human being (rare thing to find at CCNY)", + "pos": 0.153, + "neu": 0.767, + "neg": 0.079, + "_id": { + "$oid": "6711d551cd60fca157e5cc56" + } + }, + { + "text": "He's the only professor that teaches Organic Chemistry 2. If you can, try to take it on another CUNY campus because Boson makes this class insufferable. I have never had a professor that SO many students despise.", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d551cd60fca157e5cc57" + } + }, + { + "text": "His lectures on orgo lab are very straightforward, and his midterms are very easy and clearcut. Just pay attention to what he says in class and study mechanisms. To get 14/15 or 15/15 on his midterms you must have everything memorized, but its not too much.", + "pos": 0.044, + "neu": 0.93, + "neg": 0.025, + "_id": { + "$oid": "6711d551cd60fca157e5cc58" + } + }, + { + "text": "He is very easy to understand during lectures and everything that he puts on his tests is discussed in class.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc59" + } + }, + { + "text": "Heard he was better this year than previous year. Hopefully he keeps it up.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc5a" + } + }, + { + "text": "He has the worst attitude as a professor but sometimes hes funny. always has technical difficulties in class but go to lecture. exams are not too hard you just need to study and focus. everything he covers in lecture is on exam and he teaches it well. beware second exam.", + "pos": 0.136, + "neu": 0.772, + "neg": 0.092, + "_id": { + "$oid": "6711d551cd60fca157e5cc5b" + } + }, + { + "text": "go to lecture, tests are not hard just go to lecture and do the textbook questions he says he always adds either 2 or 4 points as extra anyway", + "pos": 0.044, + "neu": 0.956, + "neg": 0.0, + "_id": { + "$oid": "6711d551cd60fca157e5cc5c" + } + }, + { + "text": "Not every student wants to go to medical school, some of us have no choice but to take him in order to graduate. He is not considerate of his students. I still have 4 other STEM courses and have a set amount of time to study for this class. I understand it may be difficult for the professor to teach us sometimes, but he simply doesn't care about us", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d551cd60fca157e5cc5d" + } + }, + { + "text": "I am so glad he dident retire like he was suppose to. I will retake the class with this proffessor. I dident do so good last time because my fault not proffessor. He is good I dident have study time due to stress in other classes and jobs. I am so glad he is still teaching.", + "pos": 0.236, + "neu": 0.687, + "neg": 0.077, + "_id": { + "$oid": "6711d551cd60fca157e5cc5e" + } + }, + { + "text": "Prof. Boson has an unfair bad rep. His lectures are clear. His exams are SUPER fair. It's essential to attend lectures to pass cuz he only puts what he discussed during lectures in the exams. He isn't nearly as bad as everyone makes him out to be. Just study hard and stop complaining about his accent.", + "pos": 0.173, + "neu": 0.658, + "neg": 0.168, + "_id": { + "$oid": "6711d551cd60fca157e5cc5f" + } + }, + { + "text": "I am very happy I took this class. I learned a lot. I am just not a good exam taker. So I will not complain here like many others do about the instructor. I know my own limitations. I learned so much that I can see you all in medical school. No one needs organic there.", + "pos": 0.096, + "neu": 0.799, + "neg": 0.105, + "_id": { + "$oid": "6711d551cd60fca157e5cc60" + } + }, + { + "text": "With this superlative rating this man should be given a horse to ride into that golden sunset called retirement. He is definitely better than that other guy Bisque. No one could have done a better job at teaching such a tough course by breaking it up bit by bit into bite size absorbable pieces.", + "pos": 0.139, + "neu": 0.801, + "neg": 0.06, + "_id": { + "$oid": "6711d551cd60fca157e5cc61" + } + }, + { + "text": "Quite contradicting that the ratings are either 1's or 5's. It is so clear that the professor is writing his own 5 ratings to boost his score. It's sad that Salame doesn't teach orgo 2.\nI don't recommend boson for chemistry at all.", + "pos": 0.117, + "neu": 0.733, + "neg": 0.15, + "_id": { + "$oid": "6711d551cd60fca157e5cc62" + } + }, + { + "text": "While I did not do too well the instructor was great. Between Biscoe and Boson, Boson is better from what I heard. He is very detailed and expects the same in exams. But he is good at answering questions and I feel he really cares. His exams are hard but I think that is the cost of trying to go to med school. Learning hard things.", + "pos": 0.167, + "neu": 0.772, + "neg": 0.06, + "_id": { + "$oid": "6711d551cd60fca157e5cc63" + } + }, + { + "text": "The entire grade relies on 4 exams- he drops your lowest. The exams are outrageously difficult for no reason. I recommend therapy for anyone who needs this course and has no other professor to take it with.", + "pos": 0.055, + "neu": 0.686, + "neg": 0.259, + "_id": { + "$oid": "6711d551cd60fca157e5cc64" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d552cd60fca157e5cc66" + }, + "professor_name": "Aaron Weinstein", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "Professor Weinstein is an entertaining lecturer who makes the material engaging. Use study tools like unstuck AI and the provided study guides to ace the tests.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc67" + } + }, + { + "text": "Professor Weinstein is a funny old man who has easy to follow lectures. He will call on you randomly to make sure you're paying attention, but if you show participation in his class, he will pass you easily. He gives out study guides for the midterm and final, I suggest taking notes of what he says in class, it will get you far.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc68" + } + }, + { + "text": "Strict grader or maybe I just suck lol, but overall super funny and has a lot of interesting stories. There were like 7 small assignments, 1 midterm, 1 term paper and one final", + "pos": 0.382, + "neu": 0.576, + "neg": 0.042, + "_id": { + "$oid": "6711d552cd60fca157e5cc69" + } + }, + { + "text": "A very reasonable professor who clearly loves what he does. He always keeps the lectures very fun and lighthearted. Make sure to study for the midterm and Final and you will pass easily.", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc6a" + } + }, + { + "text": "He is a jokester and gentle soul. His lectures are a few bulletin points and the rest is verbally explained so you must pay attention. I am not a verbal learner so it was hard to stay focused and felt bored at times. He is a nice professor though and made classes feel welcoming. You have to check if you have hw, he will not announce it in class.", + "pos": 0.171, + "neu": 0.761, + "neg": 0.068, + "_id": { + "$oid": "6711d552cd60fca157e5cc6b" + } + }, + { + "text": "Prof Weinstein is good lecturer and he is funny. He makes an attempt to make the subject matter interesting. There are lots of papers to write but the same papers turn into a great study tool. As long as you do the readings and attend his lectures you will be ready to write the papers and will be more than prepared for the midterm and final.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc6c" + } + }, + { + "text": "He was best teacher in my academic year so far!!! His class is very enjoyable and not bored at all. He use the textbook for every lecture. His grading and lecture is very good. Very funny, caring, and concerned about all the students. Definitely the best teacher ever!!!", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc6d" + } + }, + { + "text": "Super kind and entertaining Professor! We only had one essay, two exams, and about 5 homeworks (all super easy). Hands down best Professor at CCNY, take his class if you can!", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc6e" + } + }, + { + "text": "One of the best professors in the campus, makes going to class worth it. Learned alot too.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc6f" + } + }, + { + "text": "AMAZING professor so funny i will truly miss him so much and i would definitely take him again! he taught me what happened to abraham lincoln and i will remember him for that truly one of the best :)", + "pos": 0.421, + "neu": 0.55, + "neg": 0.028, + "_id": { + "$oid": "6711d552cd60fca157e5cc70" + } + }, + { + "text": "Best professor ever Amazing is short of a word to describe him he made every class enjoyable and entertaining made excellent jokes had me crying with laughter. Took him in July and got an A I would take him a million times if I could 6 hwk assig almost every day for the first two weeks and two fair exams if you studied. Don't overthink it TAKE HIM!", + "pos": 0.289, + "neu": 0.675, + "neg": 0.035, + "_id": { + "$oid": "6711d552cd60fca157e5cc71" + } + }, + { + "text": "Entertaining class, tests are easy and lenient on grading.", + "pos": 0.568, + "neu": 0.432, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc72" + } + }, + { + "text": "Best Professor!!! He teaches really well and exams are not too difficult. Participation matters a lot in this class. Take him.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc73" + } + }, + { + "text": "Absolutely amazing, very caring, very wise, funny stories, and my favorite class of the semester. He makes his tests very fair and gives us all a study sheet of whats gonna be on the test. Listen to him because everything hes says and puts on slides will be on exams. One simple paper. Don't be late and participate in class!", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc74" + } + }, + { + "text": "I loved this class. He is a very sweet professor and makes learning history fun with all his stories. I highly recommend taking this class and I 100% would take him again.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc75" + } + }, + { + "text": "He is a great professor. He makes the course easy to understand and makes it interesting. His homework is pretty easy just do it and his test (midterm and final) are really easy just go over the review sheet. Definitely recommend", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc76" + } + }, + { + "text": "He makes class interesting and funny, homework is not hard at all and exams are pretty easy if you pay attention in class. I would take this class a million times if I could.", + "pos": 0.307, + "neu": 0.66, + "neg": 0.033, + "_id": { + "$oid": "6711d552cd60fca157e5cc77" + } + }, + { + "text": "Awesome professor, is very caring of his students and makes it easy to participate in the lecture, his lectures are also so fascinating. DO THE HW ON TIME AND GO TO CLASS IT MATTERS (try not to be late)!! You do that you should be good. 2 in person exams both open answer and one essay, 1 paper and weekly HW. Not hard at all as long as you do the HW", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc78" + } + }, + { + "text": "Such an amazing and fun teacher. Truly makes history (and also class in general) enjoyable and most of all, understandable. Best teacher ever!!!", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc79" + } + }, + { + "text": "I took him in the Summer 2021 Semester. He is absolutely brilliant. So, 1 midterm, few homeworks, 1 paper and 1 final. He is always coming up with jokes which would be useful in the lectures he gives about US History. He is like my grandpa. He's a very funny professor who is a clown. If you follow his protocols in class, it will be like a breeze.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc7a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d552cd60fca157e5cc7c" + }, + "professor_name": "Cheikhna Mahawa Diagana", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "I took him a few semesters ago and he is easily one of the best if not the best math prof at CCNY. His lectures are easy to understand, but as the others said he will stray away for like half the lesson \ud83d\ude2d. He also gives very thorough exam reviews for every exam and will upload them on blackboard just in case you can't make it!", + "pos": 0.124, + "neu": 0.796, + "neg": 0.08, + "_id": { + "$oid": "6711d552cd60fca157e5cc7d" + } + }, + { + "text": "Knolwdgable and easy to deal with. I fully understood calc 201, the exams was not easy, however, he discussed all of the exam ideas.", + "pos": 0.106, + "neu": 0.806, + "neg": 0.088, + "_id": { + "$oid": "6711d552cd60fca157e5cc7e" + } + }, + { + "text": "He is an amazing teacher, he knows how to teach and make topics super simple. Whatever examples he gives you in class study those and the homework problems on the syllabus and you should pass. Expect to be given life lessons and also expect him to go off topic from math for a bit. He is a great teacher and I hope I have him in the future.", + "pos": 0.183, + "neu": 0.784, + "neg": 0.034, + "_id": { + "$oid": "6711d552cd60fca157e5cc7f" + } + }, + { + "text": "Professor Diagana has his flaws. He makes a lot of mistakes during his lessons, goes on rants often, and can have an attitude problem sometimes. However, deep down, he cares about his students, especially those who come to his office hours for extra help and tutoring. I dropped out of Calc multiple times before until I passed with this professor.", + "pos": 0.084, + "neu": 0.806, + "neg": 0.11, + "_id": { + "$oid": "6711d552cd60fca157e5cc80" + } + }, + { + "text": "He is a great teacher he does go on rants sometimes for 40-50 minutes. His lectures could not be made any easier it is math after all. He uses the textbook to teach, and records lectures,don't have to buy book. His practice exams have all the questions that will be in his exams. He goes over questions that will be on exams in office hours.", + "pos": 0.097, + "neu": 0.871, + "neg": 0.032, + "_id": { + "$oid": "6711d552cd60fca157e5cc81" + } + }, + { + "text": "The only thing that was impressive about this professor was how he managed to offend majority of the class on the first day. Everyone that decides to take his class should know that how he acts on the first day is how he will act the rest of the semester. He went on long 40 - 50 minute rants and will blame the students for falling behind. Good Luck", + "pos": 0.115, + "neu": 0.778, + "neg": 0.107, + "_id": { + "$oid": "6711d552cd60fca157e5cc82" + } + }, + { + "text": "Professor Cheikhna may seem harsh, but the truth is that he wants you to pass. Lectures are recorded and he provides practice problems that are similar to his exams. Lowest midterm and lowest quizzes are dropped. I would really recommend you take him because he generally does care about his students passing. You just need to put in some studying.", + "pos": 0.143, + "neu": 0.695, + "neg": 0.161, + "_id": { + "$oid": "6711d552cd60fca157e5cc83" + } + }, + { + "text": "He's made this class interesting, and I did learn a lot. He was very honest and prove many times that belief that calc 2 is harder than calc 3. Take this class and his advice seriously otherwise you'll regret it. Also make sure to practice a lot because I can guarantee you if you don't practice, you'll fail this class.", + "pos": 0.189, + "neu": 0.747, + "neg": 0.063, + "_id": { + "$oid": "6711d552cd60fca157e5cc84" + } + }, + { + "text": "Took professor Diagana for calc 1, and then for calc 2 over the summer. I would say he is a very solid professor. He does make alot of silly mistakes during the lecture, so you do have to correct him from time to time. He give you sample exams that are almost exactly like his actual exams. He is very caring and helps you as long as you show effort.", + "pos": 0.148, + "neu": 0.82, + "neg": 0.032, + "_id": { + "$oid": "6711d552cd60fca157e5cc85" + } + }, + { + "text": ".", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d552cd60fca157e5cc86" + } + }, + { + "text": "He always goes off on stupid rants!!! He says he cares about his but makes too many mistakes during lectures. You will have to do a lot of self studying. He does offer office hours but they aren't that helpful. SAVE YOURSELF!!! AVOID THIS PROFESSOR!!!", + "pos": 0.034, + "neu": 0.64, + "neg": 0.327, + "_id": { + "$oid": "6711d552cd60fca157e5cc87" + } + }, + { + "text": "All you need to do is attend the lectures and practice the problems he did in class, and an 'A+' is guaranteed.", + "pos": 0.0, + "neu": 0.886, + "neg": 0.114, + "_id": { + "$oid": "6711d552cd60fca157e5cc88" + } + }, + { + "text": "His class is formatted to maximize chances of passing. He is very caring and can teach well. Go to his office hours; he is more than willing to help, and is pretty good at teaching how to solve problems the \"easy\" way. Would 1000% take again.", + "pos": 0.345, + "neu": 0.611, + "neg": 0.045, + "_id": { + "$oid": "6711d552cd60fca157e5cc89" + } + }, + { + "text": "He's one of the best professors in the Math Department. His quizzes are straightforward and he usually gives practice problems for his exams. He's also the Calc 1 supervisor so he writes the final. A lot of people ,ay not see it, but he generally wants you to pass. It's up to you to do your part in studying and practicing. Take him if you can.", + "pos": 0.038, + "neu": 0.935, + "neg": 0.027, + "_id": { + "$oid": "6711d552cd60fca157e5cc8a" + } + }, + { + "text": "Don't listen to people complaining about him hes one of the best teachers in the department. He genuinely wants his students to do well and tries his best to push students. If you cant do well in his class u dont deserve a college degree. He gives you literally all the tools to succeed. (took him for multiple classes)", + "pos": 0.195, + "neu": 0.754, + "neg": 0.051, + "_id": { + "$oid": "6711d552cd60fca157e5cc8b" + } + }, + { + "text": "Do not take this guy. He starts ranting about random things during his lectures and made us behind in our lessons while the other classes were done and reviewing for the final and taught things that are not part of the syllabus. Does not care if you missed a test because you are extremely sick, won't even respond to your email. Save yourself.", + "pos": 0.045, + "neu": 0.835, + "neg": 0.119, + "_id": { + "$oid": "6711d552cd60fca157e5cc8c" + } + }, + { + "text": "Paid online textbook with assigned homework questions. These questions are extra difficult and nothing like the actual exams. He makes a lot of mistakes during the lecture. Goes on a tangent and rambles about life. His analogies suck. He does give a lot of extra points though, and the final was very similar to his exams.", + "pos": 0.0, + "neu": 0.839, + "neg": 0.161, + "_id": { + "$oid": "6711d552cd60fca157e5cc8d" + } + }, + { + "text": "This Professor is the head of the Calc department. He claims that he goes fast when giving his lectures, but it was at a reasonable pace. He makes frequent mistakes when lecturing, but if you point him out on it, he offers extra credit to go towards the next test. He favors students that are actively participating or putting in effort.", + "pos": 0.151, + "neu": 0.802, + "neg": 0.047, + "_id": { + "$oid": "6711d552cd60fca157e5cc8e" + } + }, + { + "text": "RUN. AVOID THIS PROFESSOR. Do not take his course! I was excited because I love math but I HATED this class. This man is extremely passive aggressive and negative. He goes on weird rants about how we should be nice, decent human beings but yet he is very rude and condescending. He's also highly unorganized and cannot teach.", + "pos": 0.127, + "neu": 0.562, + "neg": 0.311, + "_id": { + "$oid": "6711d552cd60fca157e5cc8f" + } + }, + { + "text": "Very caring professor. He goes off topic sometimes, but he means well. He makes some mistakes when he is writing on the board, and he encourages people to tell him when he does. He offers extra credit sometimes, so be aware of that.", + "pos": 0.227, + "neu": 0.712, + "neg": 0.061, + "_id": { + "$oid": "6711d552cd60fca157e5cc90" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d553cd60fca157e5cc92" + }, + "professor_name": "Ofer Tchernichovski", + "rating": 3.7, + "department": "Biology department", + "comments": [ + { + "text": "Beware! Cool guy and gives amazing lectures, but very dependent on if you show up to class. You wont understand the ppts without it. Take thorough notes, study with someone, and you'll pass. 2 Tests around 40 Qs. Started giving (2) 10% extra cred for the OVERALL GRADE this sem. Really helped alot. Be prepared to work for your grade and have fun!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d553cd60fca157e5cc93" + } + }, + { + "text": "His class is relatively interesting, but you must go to every lecture if you want to understand what's happening. He posts his powerpoints on blackboard but those are mostly just pictures, so you won't understand them without the lecture. Your entire grade for the class is based on the midterm and final (50% each)", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d553cd60fca157e5cc94" + } + }, + { + "text": "very passionate, show up to lectures take notes and listen. two exams a midterm and final sounds crazy but its possible to do well, exams are difficult but if you take notes and listen you will be fine, he allows 2 cheat sheets, curves, which help but its a biocognitive class so its not an easy A. his grading is diff too a 65 is a C so a D is a 55.", + "pos": 0.122, + "neu": 0.74, + "neg": 0.137, + "_id": { + "$oid": "6711d553cd60fca157e5cc95" + } + }, + { + "text": "Very funny, and loves what he teaches. Some of the material can get very dense, but if you need more clarification he will not hesitate to help you. Tests were all based on lectures. Some questions were very difficult, but he helps out a lot. No text books and no articles. Everything was based on the slides provided in class.", + "pos": 0.137, + "neu": 0.699, + "neg": 0.164, + "_id": { + "$oid": "6711d553cd60fca157e5cc96" + } + }, + { + "text": "If you have a strong interest in animal behavior and psychology take this class. Dr.Tchernichovski is passionate about what he does and it shows. I disagree about disorganization. Power points and lecture.Two tests,they are difficult and force you to apply your knowledge and understanding. Hes very funny and you can learn a lot if you pay attention", + "pos": 0.186, + "neu": 0.721, + "neg": 0.094, + "_id": { + "$oid": "6711d553cd60fca157e5cc97" + } + }, + { + "text": "disorganized and all over the place, but everything he talks about is on the midterm, pay attention and take good notes and you should do fine. Eveyone does bad on the midterm but he gives a very high curve. overall not a bad professor can be very interesting if you pay attention. not hard to earn a good grade", + "pos": 0.246, + "neu": 0.631, + "neg": 0.123, + "_id": { + "$oid": "6711d553cd60fca157e5cc98" + } + }, + { + "text": "50/50 midterm and final. Classes require a lot of attention and slides are brief. He is helpful and will answer questions after class. No textbook required, but doesn't mean it's an easy class. you really need to study over the notes and PowerPoints.", + "pos": 0.121, + "neu": 0.845, + "neg": 0.034, + "_id": { + "$oid": "6711d553cd60fca157e5cc99" + } + }, + { + "text": "Really great guy. Makes class enjoyable and very knowledgeable, hes had a lot of hands on experience prior to teaching and it shows. Took him in hunter. He doesn't use a textbook for animal psych and the class is 50/50 midterm and final. Overall, I would highly recommend him :)", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d553cd60fca157e5cc9a" + } + }, + { + "text": "He's an excellent professor. One of the best professors I have had. He cares about his students and wants them to understand the material. The exams are not hard if you study. Its not a textbook exam but how to use the information you learn. Once you pay attention and study you'll do great.", + "pos": 0.217, + "neu": 0.758, + "neg": 0.025, + "_id": { + "$oid": "6711d553cd60fca157e5cc9b" + } + }, + { + "text": "Have taken Ofer's Animal Behavior class and worked with him in a lab setting. He is a very caring an attentive teacher. I prefer to work with him in the one on one. He tries to be entertaining in class but it sometimes distracts from the important info. Don't be shy to criticize his teaching style though, because he will strive to improve.", + "pos": 0.165, + "neu": 0.75, + "neg": 0.085, + "_id": { + "$oid": "6711d553cd60fca157e5cc9c" + } + }, + { + "text": "Classes like this remind me why I love biology. And the tests are mainly conceptual, so you don't find yourself memorizing a bunch of junk you'll forget 5 minutes after the class is over. Highly recommend.", + "pos": 0.219, + "neu": 0.737, + "neg": 0.044, + "_id": { + "$oid": "6711d553cd60fca157e5cc9d" + } + }, + { + "text": "Ofer has a very unique sense of humor. He clearly hated the textbook as much as the students did. Exams are only \"tricky\" if you prefer textbook-answers over common sense. I enjoyed his class a lot, and appreciated his expectation of students to THINK. Sadly, not all professors want that", + "pos": 0.18, + "neu": 0.664, + "neg": 0.155, + "_id": { + "$oid": "6711d553cd60fca157e5cc9e" + } + }, + { + "text": "yes his exams are tricky but they are manageable. he's also very understanding and sympathetic towards his students. he's a great professor", + "pos": 0.39, + "neu": 0.569, + "neg": 0.041, + "_id": { + "$oid": "6711d553cd60fca157e5cc9f" + } + }, + { + "text": "his exams are crazy hard i studied so much for his test and still managed to fail! take him only if you want to ruin your GPA!!!", + "pos": 0.037, + "neu": 0.619, + "neg": 0.345, + "_id": { + "$oid": "6711d553cd60fca157e5cca0" + } + }, + { + "text": "Ofer's class was the most boring bio class I've ever taken. All he does is read off the slides and he gives no breaks. His exams are superly tricky and tough. The course covers a lot of materials, but he doesn't seem to make it easier for you. He's funny in the first and second lecture, but after that things just fall apart!", + "pos": 0.111, + "neu": 0.805, + "neg": 0.084, + "_id": { + "$oid": "6711d553cd60fca157e5cca1" + } + }, + { + "text": "I had problem with his accent. He just can't explain things. His exams were pretty tricky. But he curves it like over 20 points which is good. Overall, just read the textbook instead of going to class.", + "pos": 0.207, + "neu": 0.722, + "neg": 0.071, + "_id": { + "$oid": "6711d553cd60fca157e5cca2" + } + }, + { + "text": "This professor seems nice but dontlet that fool you. His exams are hard and cover a lot of chapters but if u study, you should do well and the 20 point curves help also. His class isnt as hard as others make it seem, but u just have to do your work.", + "pos": 0.156, + "neu": 0.754, + "neg": 0.089, + "_id": { + "$oid": "6711d553cd60fca157e5cca3" + } + }, + { + "text": "he's a nice person (personality wise) BUT HIS TESTS ARE KILLERS- even with the 20-30 point curves a lot of people barely hit the 70 range. No matter how hard you study the book, you're bound to do horrible on his tests. He does allow a cheat sheet- but you hardly can use it cuz his tests are that hard.", + "pos": 0.071, + "neu": 0.667, + "neg": 0.263, + "_id": { + "$oid": "6711d553cd60fca157e5cca4" + } + }, + { + "text": "IT MAKES NO SENSE TO ATTEND HIS LECTURES. HE JUST READS OF HIS LIL POWERPOINT FROM WHICH HE COPIED AND PASTE FROM THE TEXT BOOK. HE'S EXTREMELY HARD. EXAMS ARE REALLLLY HARD AND DIFFICULT. VERY HARD TO PASS. ONLY GOOD THING IS HE CURVES THE GRADES. OTHERWISE I DONT THINK HE'S GOOD AT ALL.", + "pos": 0.047, + "neu": 0.761, + "neg": 0.192, + "_id": { + "$oid": "6711d553cd60fca157e5cca5" + } + }, + { + "text": "He is a great professor in the sense that he makes class interesting and has a good attitude towards teaching. However, he covers a great deal of material and doesn't specify what to study. All gazillion chapters are fair game. The final was tricky.", + "pos": 0.289, + "neu": 0.682, + "neg": 0.029, + "_id": { + "$oid": "6711d553cd60fca157e5cca6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d553cd60fca157e5cca8" + }, + "professor_name": "Amy Young", + "rating": 3, + "department": "Art History department", + "comments": [ + { + "text": "A QUIZ EVERYDAY AND THAT MET PROJECT IS SO LENGTHYY. I have so many more important classes to focus on that I'm failing because of this professor. I wouldn't recommend this one unless you're taking less than 5 classes. I watched my class go from full to only like 10 kids in the first month", + "pos": 0.079, + "neu": 0.832, + "neg": 0.088, + "_id": { + "$oid": "6711d553cd60fca157e5cca9" + } + }, + { + "text": "the worst. please if you see this, take music instead. Possibly the worst teacher I've ever had and treats her class like it's important as if it isn't art. I'm a poli sci major and it's hard to manage her class on top of working, her due dates are unreasonable like as If I don't have 5 other courses to take and work and a life. DO NOT TAKE HER", + "pos": 0.132, + "neu": 0.749, + "neg": 0.119, + "_id": { + "$oid": "6711d553cd60fca157e5ccaa" + } + }, + { + "text": "I withdrew after taking 2 classes, do not take it!! She's not that bad, its the workload that will kill you. A quiz due a day after every class, and one in class quiz. She goes quick with the lectures as well. Honestly what really made me drop was a project that consisted of 14 parts that was due literally 2 weeks after the first day.", + "pos": 0.111, + "neu": 0.796, + "neg": 0.092, + "_id": { + "$oid": "6711d553cd60fca157e5ccab" + } + }, + { + "text": "If I had to do it again, I wouldn't personally, it's quiz/homework intensive. She is a tough grader, but that being said, if you follow her instructions and do the work, you will pass. For a beginner class, the workload is too much in my opinion.", + "pos": 0.0, + "neu": 0.973, + "neg": 0.027, + "_id": { + "$oid": "6711d553cd60fca157e5ccac" + } + }, + { + "text": "Professor Young isn't an easy teacher. She really forces students to engage and commit to the material and class. If you're someone who's often absent or submits HW late- don't take her class! Late work and absences affect your grade. Her lectures are interesting and I enjoyed her class- just be prepared to work and show up!", + "pos": 0.197, + "neu": 0.767, + "neg": 0.036, + "_id": { + "$oid": "6711d553cd60fca157e5ccad" + } + }, + { + "text": "Lots of hours doing side quests just to be graded poorly", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d553cd60fca157e5ccae" + } + }, + { + "text": "Her lectures are incredibly fast paced and if you don't write fast enough or you ask to go back a slide she will act as though you are disrupting class. I watched her roll her eyes at a student who was asking for clarification. Incredibly nit-picky with assignments and comes off as aggressive and agitated. Would not recommend.", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d553cd60fca157e5ccaf" + } + }, + { + "text": "professor Amy Young gives daily assignments, but they're like less than 10 questions, her lectures are very interesting and fun to listen to, because she's very passionate about art, since she's a street artist herself. just focus, put enough effort, and if you're not interested in art, this class isn't for you.", + "pos": 0.256, + "neu": 0.701, + "neg": 0.043, + "_id": { + "$oid": "6711d553cd60fca157e5ccb0" + } + }, + { + "text": "Just come to class, listen to her lectures, don't use your phone, and finish all assignments on time and you should be fine. There's a quiz every class, one in-class and one take-home. They're not that hard as long as you take notes. She reminds us of the papers 1.5 months before they're due so that's nice. Overall she's nice. Would recommend.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d553cd60fca157e5ccb1" + } + }, + { + "text": "She gives sooo much work. Im a stem major and NONE of my stem classes have given the amount of work she has, and it's an intro class! She's extremelly strict with using phones in class and will repeatedly yell \"no phones\" at you. Overall dont take this if you think it would be an easy and fun class, because it's not.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d553cd60fca157e5ccb2" + } + }, + { + "text": "I got her in the first year of my college.I honestly didn't like her teaching method. Got a lot of reading and the voca quizzes were all based on the lecture and textbook. especially if you're not a person that likes to read that this class would be a suffer.\n\nThe good aspect of this class is history-based class, she puts a lot of energy into it.", + "pos": 0.14, + "neu": 0.788, + "neg": 0.072, + "_id": { + "$oid": "6711d553cd60fca157e5ccb3" + } + }, + { + "text": "The class was okay, it wasn't too difficult for me personally. There is no exam and only one paper. Around the end of the semester she gives extra credit that is mandatory in order to make up semester grade points. But as a professor she was mid. She will embarass you if you sleep in class. Can't used your phone either.", + "pos": 0.094, + "neu": 0.881, + "neg": 0.025, + "_id": { + "$oid": "6711d553cd60fca157e5ccb4" + } + }, + { + "text": "At first I thoroughly enjoyed her class, the quizzes are reasonable enough and easy to do. What I can't stand is how strict she can be with her grading policy, if your answer is not exactly what she is looking for and the way she wants it, she will take points off. You have to be very specific to the point your creative projects are very limited.", + "pos": 0.126, + "neu": 0.845, + "neg": 0.029, + "_id": { + "$oid": "6711d553cd60fca157e5ccb5" + } + }, + { + "text": "This class can be very heavy with work and honestly very stressful. She has very strict formatting for all her work and I don't know if I ever even got it right. Deep down I think she cares a lot about her students, she practically forces you to turn your work in, but sometimes that can make things way more stressful and come off as a negative.", + "pos": 0.051, + "neu": 0.792, + "neg": 0.156, + "_id": { + "$oid": "6711d553cd60fca157e5ccb6" + } + }, + { + "text": "You basically get homework after every class. But its super easy and can be finished in ten minutes if you do right afterwards so the material is fresh. She tells you EXACTLY what she is looking for in your work (and I mean exact). Her work is super easy and is ALWAYS found in her lectures, you just have to deal with her strict grading.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d553cd60fca157e5ccb7" + } + }, + { + "text": "She is an interesting professor. Lecture heavy.. SO DRINK COFFEE!! the class I took was tough. She often wants everyone to think the way she does and expects us to know everything. Quite strict and wants things very uniform. Not open to change or feedback in my opinion. She WILL remind you that she knows everything.", + "pos": 0.056, + "neu": 0.919, + "neg": 0.026, + "_id": { + "$oid": "6711d553cd60fca157e5ccb8" + } + }, + { + "text": "Honestly, she isn't the worse professor. However she is the rudest one I have ever met in my undergrad career. She has a big ego and when you are wrong will make you feel horrible about. There was a lot of work for an intro class. This class isn't worth it find another class if you need to fill a requirement or different teacher.", + "pos": 0.074, + "neu": 0.77, + "neg": 0.156, + "_id": { + "$oid": "6711d553cd60fca157e5ccb9" + } + }, + { + "text": "horrible professor can't emphasize this enough. I thought I was going crazy when she showed us a 20 page syllabus. two quizzes every class on top of other assignments. heavy material for an ART CLASS. Dropped on my first day specially after reading the rates on this professor and wasting 5 hours at the MET for her project. Don't do it to yourself.", + "pos": 0.026, + "neu": 0.85, + "neg": 0.124, + "_id": { + "$oid": "6711d553cd60fca157e5ccba" + } + }, + { + "text": "I personally don't mind the quizzes that took approximately 30 minutes to complete each. There were 2 projects that you had to see art in person and lectures were a little boring. Participation isn't graded but she rarely calls on students. Really easy A because she gives extra credit to course grade so it boosts your grade by a LOT.", + "pos": 0.161, + "neu": 0.817, + "neg": 0.022, + "_id": { + "$oid": "6711d553cd60fca157e5ccbb" + } + }, + { + "text": "Oooooooof this class. Idk where to begin but it's really rough. The twice weekly quizzes will get to you and by the end you'll go insane as you do 28 of them in total. She'll require papers on top of it too and you have one day to do the quizzes. An A is easily achievable because she gives extra credit but you have to put in time & work", + "pos": 0.145, + "neu": 0.796, + "neg": 0.059, + "_id": { + "$oid": "6711d553cd60fca157e5ccbc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d554cd60fca157e5ccbe" + }, + "professor_name": "Glen Kowach", + "rating": 3.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Final-35%, Midterms - 35%, HW - 10%, Lab - 15%, Recitation - 5% \n3 midterms, allow 1 cheat sheet front/back. He gives reviews that are the same questions as the midterms. Add recitation problems on cheat sheet. attendance mandatory. Recitation > lecture. final left me in shambles, cooked, burned to a crisp. was harder than the sample final review.", + "pos": 0.049, + "neu": 0.819, + "neg": 0.132, + "_id": { + "$oid": "6711d554cd60fca157e5ccbf" + } + }, + { + "text": "Professor Kowach was a very lenient grader and allowed for open notes during the exam. He made himself available for any questions/concerns. I can't help but wonder if all the negative comments about him are by students who just wanted to get the course over with. His lectures were good and he is a really considerate professor.", + "pos": 0.144, + "neu": 0.759, + "neg": 0.097, + "_id": { + "$oid": "6711d554cd60fca157e5ccc0" + } + }, + { + "text": "Prof was kind but it would have been more considerate for him to make the exams equivalent to the questions we discussed in the lectures recitation and textbook. final wasn't easy and unexpected. He said final isn't hard bc it was based on prior exams but it was otherwise. do all HW GOOD lab TA pass 2 exams no less than 80 u could get around a B", + "pos": 0.159, + "neu": 0.767, + "neg": 0.073, + "_id": { + "$oid": "6711d554cd60fca157e5ccc1" + } + }, + { + "text": "if this was a rating based upon how nice this professors personality I would have nothing bad to say because he is an wonderful individual, but as a professor his tests are misleading and hard. If you are someone that needs to understand chem don't take him.", + "pos": 0.116, + "neu": 0.788, + "neg": 0.097, + "_id": { + "$oid": "6711d554cd60fca157e5ccc2" + } + }, + { + "text": "Unfair grading system based on who TA is. He will not care and not look into it. He must have had a failing quota to meet this semester because class was too hard for an intro class. All of good comments are written by him.", + "pos": 0.054, + "neu": 0.75, + "neg": 0.196, + "_id": { + "$oid": "6711d554cd60fca157e5ccc3" + } + }, + { + "text": "Only take him if you already have a solid foundation of chemistry. Really nice guy but not a good professor for introductory class. He assumes you know everything so doesnt teach. Does cool demos in class but demos and his life story will not help on exams. I took chem in my country so this was easy. Exam is opposite review sheet. HW is busy work.", + "pos": 0.1, + "neu": 0.789, + "neg": 0.111, + "_id": { + "$oid": "6711d554cd60fca157e5ccc4" + } + }, + { + "text": "Exams are difficult so do well in lab and hw. Unfair professor.I was in a lab that required lab reports and my friends were not, which as unfair.Avoid TA Milton he will make you write a lab report for an intro chem class. When students complained Kowach didnt care.Kowach doesnt care about giving all students equal opportunity to succeed.", + "pos": 0.185, + "neu": 0.676, + "neg": 0.14, + "_id": { + "$oid": "6711d554cd60fca157e5ccc5" + } + }, + { + "text": "If you want to just pass take him. If you want to learn chemistry take anyone else. If you want to do good in class sit in front he plays favorites and will only engage with the front 2 rows. My friend went to office hours and got his phone number to contact him with questions otherwise he will not respond to emails and is hard to reach.", + "pos": 0.251, + "neu": 0.731, + "neg": 0.018, + "_id": { + "$oid": "6711d554cd60fca157e5ccc6" + } + }, + { + "text": "Impossible exams. This class was a lot of self teaching. He is not a good lecturer, talks about his life. We do easy questions in class and the exam is impossible. If you are gifted in chemistry take this class. I did not learn anything. I had 90-100 on everything else in his class but did poorly on exams and failed the class. Very discouraging.", + "pos": 0.027, + "neu": 0.831, + "neg": 0.142, + "_id": { + "$oid": "6711d554cd60fca157e5ccc7" + } + }, + { + "text": "I had him for 103 online and he gave lots of extra credit and exams were fair if you did hw. If you got above 70 on exams last semester you got an A. I am not sure what happened this semester. His exams were much harder. Class was not organized, doing hw did not help with exams. Exams had 4-6 questions total. so many people failed his class.", + "pos": 0.064, + "neu": 0.835, + "neg": 0.102, + "_id": { + "$oid": "6711d554cd60fca157e5ccc8" + } + }, + { + "text": "Take anyone else! Unfair exams. Compared exams with students in chem 104 and his exams are by far the hardest. I took his class because I love chemistry and heard you will learn in his class...Boy was I mistaken. He is the reason I dropped out of my major. His exams were very discouraging. Only take him if you are good with exams.", + "pos": 0.096, + "neu": 0.782, + "neg": 0.122, + "_id": { + "$oid": "6711d554cd60fca157e5ccc9" + } + }, + { + "text": "Not the best science professor at CCNY. All exams had material he did not get to in class. Goes on tangent in class never finished lectures. Does not respond to emails. No review given. Exams are extremely hard. Take anyone else if you can. Do not take if you want to pass chemistry. He makes it harder than it is.", + "pos": 0.02, + "neu": 0.867, + "neg": 0.112, + "_id": { + "$oid": "6711d554cd60fca157e5ccca" + } + }, + { + "text": "Do not recommend this professor. His exams were questions never seen before. More than half the class did poorly on final and he did not curve. He is one of the few Professor who wants to fail students at CCNY.", + "pos": 0.0, + "neu": 0.871, + "neg": 0.129, + "_id": { + "$oid": "6711d554cd60fca157e5cccb" + } + }, + { + "text": "Glen is an amazing professor. I took him this spring semester. He was amazingly nice and caring. He tried his best to help students. Take him, you won't regret it.", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d554cd60fca157e5cccc" + } + }, + { + "text": "Professor was kind enough to allow 10 points extra credit for each exam including the final. LOTS OF HOMEWORK worth 20% of grade. Professor drops lowest exam grade and 2 lowest homework grades.", + "pos": 0.233, + "neu": 0.643, + "neg": 0.124, + "_id": { + "$oid": "6711d554cd60fca157e5cccd" + } + }, + { + "text": "Chem is a hard class BUT Glen makes it great. At CCNY, the Science Dept mandates ALEKS HW, so the heavy hw is out of Glens control, but he cares about his students and goes out of his way to help us pass. I got an A taking gen chem with him, after failing my first attempt with another professor. TAKE HIM Try to get 70+ on tests, hand lab on TIME", + "pos": 0.196, + "neu": 0.74, + "neg": 0.063, + "_id": { + "$oid": "6711d554cd60fca157e5ccce" + } + }, + { + "text": "Very optimistic and passionate about Chemistry, and encourages his students to learn. His lectures are just a review of the readings, but mentions important stuff to remember in the future. He also gives extra credit for both exams and final. This class is mainly doing Aleks (hws) which is time consuming, but is VERY important to pass this class!!", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d554cd60fca157e5cccf" + } + }, + { + "text": "TAKE HIS CLASSS I PROMISE YOU WONT REGRET IT!!!! he gives extra credit so u can get a higher mark on ur exams. He is nice enough to extend the hw if everyone asks nicely. But, you also have to be aware of the hw due dates and I would suggest finish is a day early. Beside the HW the class is pretty chill.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d554cd60fca157e5ccd0" + } + }, + { + "text": "Honestly, The best chem professor ever. He is very nice and gives extensions on the Aleks HW when you ask kindly. His lectures are also very fun. You will mostly learn the materials through the HW.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d554cd60fca157e5ccd1" + } + }, + { + "text": "He is so extremely passionate about chemistry it makes you eager to learn. Easily one of the best professors I've had so far at CCNY.", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d554cd60fca157e5ccd2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d555cd60fca157e5ccd4" + }, + "professor_name": "Ravi Kalia", + "rating": 2.7, + "department": "History department", + "comments": [ + { + "text": "My goodness if you can avoid taking this professor pleASE do so by any means necessary. He is honestly just mean, for lack of a better word. claims that he encourages his students to participate, but ends up biting the head of the student who doesn't have the exact answer that he wants to hear. I watched this happen so many times this semester.", + "pos": 0.137, + "neu": 0.817, + "neg": 0.047, + "_id": { + "$oid": "6711d555cd60fca157e5ccd5" + } + }, + { + "text": "Definitely a hit or miss. He's pretty knowledgeable and will help out if you have any problems understanding anything in class. If you are late, as long as you let him know in advance he probably won't mind. As for attendance, he checks attendance randomly so it is best to attend all classes, that way you might not even need to read the textbook.", + "pos": 0.173, + "neu": 0.77, + "neg": 0.057, + "_id": { + "$oid": "6711d555cd60fca157e5ccd6" + } + }, + { + "text": "no preparation just him talking for hours.", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d555cd60fca157e5ccd7" + } + }, + { + "text": "This dude is a hit or miss.\n\nNo powerpoint. No nothing just him talking, he's either in an ok mood or bad mood.\n\n5 essays in total 1000 word each \n\n1 term paper gotta read a book (I didn't) was given on the first day \n2 midterm - 3 days to do it \n2 final essay due along with the term paper (give prompts a week before class ends)", + "pos": 0.054, + "neu": 0.849, + "neg": 0.097, + "_id": { + "$oid": "6711d555cd60fca157e5ccd8" + } + }, + { + "text": "mans inspired me to never take his class again. he wont even be teaching anymore after this summer and I'm still writing to release the anger i have about him. honestly tho he prolly just old idek but he's hella rude and does not teach he tries to buy ur happiness fr with buying coffee for everyone in the class. u never know where u stand w him btw", + "pos": 0.113, + "neu": 0.802, + "neg": 0.085, + "_id": { + "$oid": "6711d555cd60fca157e5ccd9" + } + }, + { + "text": "I have no idea where all these bad reviews are coming from! Professor Kalia genuinely cares about his students. This professor would give you a recommendation letter in a heart beat. He always encourages students to pursue higher education and even helps guide them. He's intelligent in the material he teachersI took him twice.He is amazing.\n\n-Rupon", + "pos": 0.266, + "neu": 0.658, + "neg": 0.077, + "_id": { + "$oid": "6711d555cd60fca157e5ccda" + } + }, + { + "text": "RUDE and does not explain topics in a clear and concise way. I took his class during the pandemic and it was so hard to pay attention due to there not being a powerpoint, presentation, no writing or anything to pay attention to, just his talking. Only work was 2 midterm essays which require tons of research.", + "pos": 0.04, + "neu": 0.791, + "neg": 0.169, + "_id": { + "$oid": "6711d555cd60fca157e5ccdb" + } + }, + { + "text": "HE IS INSANELY RUDE AND LIKES TO JUDGE HIS STUDENTS WHEN IT COMES TO NOT ANSWERING A QUESTION CORRECTLY OR FAST ENOUGH. I DO NOT RECOMMEND RAVI KALIA AS A PROFESSOR", + "pos": 0.078, + "neu": 0.78, + "neg": 0.142, + "_id": { + "$oid": "6711d555cd60fca157e5ccdc" + } + }, + { + "text": "Terrible person. Constantly goes on tirades against his students about not participating in his class when he asks vague, unclear, and sometimes pointless questions. Doesn't understand how to use technology so online classes are even worse. Genuinely one of the worst teachers I've ever had.", + "pos": 0.0, + "neu": 0.745, + "neg": 0.255, + "_id": { + "$oid": "6711d555cd60fca157e5ccdd" + } + }, + { + "text": "The midterm requirement was ridiculous. He's also very disrespectful. I asked him a simple question on behalf of the class and he flew off the handle. I won't take any of his classes ever again! Freshmen, I do not recommend him!", + "pos": 0.0, + "neu": 0.882, + "neg": 0.118, + "_id": { + "$oid": "6711d555cd60fca157e5ccde" + } + }, + { + "text": "RUDE VERY RUDE", + "pos": 0.0, + "neu": 0.137, + "neg": 0.863, + "_id": { + "$oid": "6711d555cd60fca157e5ccdf" + } + }, + { + "text": "make sure you take detailed notes or you will not pass this class, ans get ready for his midterm!!!!", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5cce0" + } + }, + { + "text": "Excellent professor who cares, uses excellent source material, is up to date, friendly, an undemanding. You get out of his classes what you put in. I recommend availing yourself of a top-notch learning experience!", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5cce1" + } + }, + { + "text": "He was one of the best professors I have ever taken. Very knowledgeable on the subjects he teaches. If you pretend to know what youre talking about you will be called out. He isnt rude but firm with students that dont accept constructive criticism. If you want to do well in school and in life youll learn a lot from this professor.", + "pos": 0.164, + "neu": 0.78, + "neg": 0.056, + "_id": { + "$oid": "6711d555cd60fca157e5cce2" + } + }, + { + "text": "My God he is beyond rude. He will yell at and embarrass students for simple questions and went on rants on how the students in school are dumb or \"not ready\". Not to mention, he's not very good at keeping a class engaged. I deeply regret not dropping his class or even just taking it in the first place. Also, he goes off topic so much .", + "pos": 0.059, + "neu": 0.712, + "neg": 0.229, + "_id": { + "$oid": "6711d555cd60fca157e5cce3" + } + }, + { + "text": "Hes really good. One or two papers, flexible deadlines. He scares some people but hes not that bad. Knows what hes talking about and can help you a lot if you're into this field. His class on Pakistan was one of the best courses I took in college.", + "pos": 0.276, + "neu": 0.696, + "neg": 0.028, + "_id": { + "$oid": "6711d555cd60fca157e5cce4" + } + }, + { + "text": "This course is compose of discussions and lectures. Due to Covid-19 we didn't have any exams just papers. Nothing really changed much with his lectures aside from it being virtual. He just stands and talks the whole class and asks questions. He doesn't use the board or powerpoints. A Tip to passing the course pay attention to what he says.", + "pos": 0.0, + "neu": 0.977, + "neg": 0.023, + "_id": { + "$oid": "6711d555cd60fca157e5cce5" + } + }, + { + "text": "He is rude, will embarass students for sure if you not sure about a question. Class is very boring because he just stalk no slides no PowerPoint nothing just him. show up to class. He can be quite understanding when it comes to papers hell let u turn it whenever your done with no points taken off. Do his work and you get a A", + "pos": 0.054, + "neu": 0.733, + "neg": 0.213, + "_id": { + "$oid": "6711d555cd60fca157e5cce6" + } + }, + { + "text": "I took his class years ago. Still remember a lot of what he taught me. Studying Indian history is wonderful so its worth it for that alone. Kalia does have an ego and harshly criticizes students at times, but I never sensed that it was intentional. I sensed he really wanted people to learn. Make sure to participate or youll lose 10% of the grade", + "pos": 0.095, + "neu": 0.812, + "neg": 0.093, + "_id": { + "$oid": "6711d555cd60fca157e5cce7" + } + }, + { + "text": "He is rude, will insult and embarrass students for simple questions. Does not require textbook. Takes really long with technology. Waste a lot of class time, trying to figure out how to use the laptop. Does not take attendance except for days class seems a little empty. So don't skip because you never know when he will take attendance. Good Luck!!", + "pos": 0.081, + "neu": 0.737, + "neg": 0.183, + "_id": { + "$oid": "6711d555cd60fca157e5cce8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d555cd60fca157e5ccea" + }, + "professor_name": "Parsa Mohammadi", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "Highly recommend taking if you want to learn more about cultural diversity. Weekly reading/writing assignments helped me to become a better writer especially with the various revisions. Easy A as long as you put in the effort.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5cceb" + } + }, + { + "text": "One word: wow!", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccec" + } + }, + { + "text": "Great class. Great professor. Don't hesitate and take. Fascinating lectures.", + "pos": 0.693, + "neu": 0.307, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5cced" + } + }, + { + "text": "Hands down one of the best classes at CUNY. This Professor is certifiable. The man makes you want to come to class. Wow! Amazing lectures filled with so much material. Funny, and attention grabbing! I still go over my notes from his class. They should name a classroom or something with his name on it. A+ to CUNY for having Professor Parsa!", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccee" + } + }, + { + "text": "Awesome professor. Fascinating wealth of knowledge. I learned a great deal about the subject matter. Show up to class and take good notes for a good grade. Highly recommended. The prof. Has real life experiences as a former Marine and United Nations Delegate.", + "pos": 0.44, + "neu": 0.56, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccef" + } + }, + { + "text": "Professor Mohammadi is one of the most gentle, knowledgeable, kind and respected teachers Ive ever known on this planet. He is respectful and welcoming. class lectures were amazing.", + "pos": 0.472, + "neu": 0.528, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf0" + } + }, + { + "text": "Professor is a great lecturer. He interacts well with the students. He always asks questions during class that make you think and teaches in a way that you can better understand the material in the text or discussion board post. I've taken several classes with him and it is truly great experience. Interactive class. Always there for support.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf1" + } + }, + { + "text": "I highly recommend this course to all interested in gaining knowledge about the topic. Incredible lectures. A must take class. The most noteworthy & charismatic Professor Ive taken at CUNY. Do the readings, participate,take notes, and ask questions. Prof is punctual and passionate-easily accessible during office hours and through e-mail. Must take", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf2" + } + }, + { + "text": "Professor Mohammadi is accessible outside of class, goes out and beyond for his students. If you communicate with him he's understanding and helpful for all situations. Motivates his students to do better. The lectures are informative always enjoyable with his great sense of humor. You won't regret taking this class. No Final Exam!!", + "pos": 0.269, + "neu": 0.698, + "neg": 0.033, + "_id": { + "$oid": "6711d555cd60fca157e5ccf3" + } + }, + { + "text": "Professor Parsa Mohammadi have really good lecture. All you have to do is to attend class and participate. Really generous and really easy to contact .", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf4" + } + }, + { + "text": "He was fair, It is to get A+ or A in his class. Just do your paper and Participate in his class, that's it. You are also able to learn more and get a good example for your explanation.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf5" + } + }, + { + "text": "Professor Mohammadi, was/is a great teacher. Lectures were always interesting. He always went above and beyond to share info that was not in our textbook. Participation and attendance is IMPORTANT, read the assigned pages and be ready to talk during class. Only assigned 3 paper: 2 regular papers, and a final. If you follow his directions... an A.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf6" + } + }, + { + "text": "Professor Mohammadi was the best professor I had during my Fall season in 2020. He teaches in a way where students can easily understand his topics and get his students involved with it. If you have a chance to take any of his classes, go ahead! it is 100% recommended.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf7" + } + }, + { + "text": "Professor Parsa was a great professor, he was very patient, he gives a few writing assignments but if you pay attention during the lecture you will do well. He will tell you when a specific topic during the lecture is important, he also expects you to participate and will make it clear that you need to join the classroom discussion.", + "pos": 0.197, + "neu": 0.78, + "neg": 0.023, + "_id": { + "$oid": "6711d555cd60fca157e5ccf8" + } + }, + { + "text": "His lectures are interesting and well detailed. Textbook is mandatory; however, with his lectures you get a better understanding of the readings. He cares for his students which makes the online class experience comfortable. He offers extra credit which is great because it gives students the opportunity to boost their grade. Participate participate", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccf9" + } + }, + { + "text": "Prof. Mohammadi is very knowledgeable and respectful. Aside from the textbook, he explains the subject and goes deep into international relationships, making connections between past and current events. The class subject is on point and always includes a wide point of view. Participation and professionalism are expected and explained.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccfa" + } + }, + { + "text": "You won't regret taking him, I took him again for my fall 2020 because I needed an elective class. Planning on taking him again next semester. The work he gives is very reasonable and if you have concerns or anything, just speak to him. He is very understanding.", + "pos": 0.047, + "neu": 0.953, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccfb" + } + }, + { + "text": "He is very respectful and understanding and makes sure that you understand the topic. He gives real-life examples and responses back to your email within one hour or less. Participation matters a lot and there was no final exam or a test for this class (history 316). He gave two short assignments (3/4 pages or less) and one final paper (6-7).", + "pos": 0.085, + "neu": 0.864, + "neg": 0.051, + "_id": { + "$oid": "6711d555cd60fca157e5ccfc" + } + }, + { + "text": "Professor Mohammadi's lectures are very engaging and he's willing to spend time making sure everyone understands the necessary course materials. His lectures are very straightforward and pair well with assigned readings. He's very flexible and easy to contact.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccfd" + } + }, + { + "text": "This professor makes class really interesting and fun. His lectures always teach something new and he gives amazing advice and feedback. I don't wanna come off as praising him too much but he really is an amazing professor. I recommend anyone interested take his class. Just make sure to do the assignments on time and you participate.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d555cd60fca157e5ccfe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d556cd60fca157e5cd00" + }, + "professor_name": "Zimei Bu", + "rating": 4.1, + "department": "Chemistry department", + "comments": [ + { + "text": "Great Professor.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd01" + } + }, + { + "text": "TAKE HERRRRRRRR\nexams are on aleks and you have two chances if you mess up a question. She genuinely wants you to do good. Live love and breathe aleks and you will do great", + "pos": 0.292, + "neu": 0.652, + "neg": 0.056, + "_id": { + "$oid": "6711d556cd60fca157e5cd02" + } + }, + { + "text": "no point of having a lecture teacher because she talks in a very droning voice and that makes it hard comprehend anything she says she also yells when students are loud there are calmer ways to address students, yelling signifies to me that you don't see students as adult humans because you wouldn't yell at a colleague like that.", + "pos": 0.079, + "neu": 0.865, + "neg": 0.057, + "_id": { + "$oid": "6711d556cd60fca157e5cd03" + } + }, + { + "text": "Excellent professor and has very reasonable grading criteria. She answered emails quickly, and overall was the first professor to make me love chemistry", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd04" + } + }, + { + "text": "There are 3 exams and they are all on ALEKS. Only the top 2 are counted. Make sure to stay on top of the homework. The lecture was useless I stopped attending after the first month of class. Attend recitation because attendance for that counts on your grade and you'll learn more there. For finals, just study past finals it's all the same.", + "pos": 0.086, + "neu": 0.845, + "neg": 0.069, + "_id": { + "$oid": "6711d556cd60fca157e5cd05" + } + }, + { + "text": "Tests are very easy, there are three midterms and one is dropped, and each test gives you a second attempt. Stay on top of ALEKs and the exams will be easy 100s. The lecture doesn't really seem to help since I barely attended and got out with an A. MAKE SURE TO GO TO RECITATION, it's an actual grade.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd06" + } + }, + { + "text": "She is not a good professor, I will never take her again and I advise everyone else to do the same. She will tell you one thing and say another.", + "pos": 0.0, + "neu": 0.923, + "neg": 0.077, + "_id": { + "$oid": "6711d556cd60fca157e5cd07" + } + }, + { + "text": "A caring and nice Professor, she really thinks of her students makes the study understandable in a short amount of time. She drops 1 bad midterm out of 3. Most of the stuff happens in \"ALeks\", but it's worth it since, it prepares us for the exam. If you are uncertain about Chem1 definitely take her.", + "pos": 0.141, + "neu": 0.781, + "neg": 0.079, + "_id": { + "$oid": "6711d556cd60fca157e5cd08" + } + }, + { + "text": "10/10 amazing professor. I wasn't sure if I was ready for chem but she made it so much easier & not too stressful. Don't get me wrong you gotta work for it though. Aleks is most of the grade, 2/3 exams count - lowest one gets dropped, & final. All are on ALEKS.", + "pos": 0.229, + "neu": 0.697, + "neg": 0.074, + "_id": { + "$oid": "6711d556cd60fca157e5cd09" + } + }, + { + "text": "I didn't pay attention during class, but i could tell she knows what she's doing and she explains concepts well. hw tests and final was on ALEKS, so it's very predictable. Once you master the hw, you master the test and final they're basically the same questions but diff numbers. Easy class.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd0a" + } + }, + { + "text": "Professor Bu's class was nice. Her lectures were very informative. She has good knowledge about this subject. Best thing is you have 3 exams but she drops one of the lowest one. You do have a lot of Aleks hw but it's do able since you have a lot of helpful resources. I would rec to take notes from Aleks. Overall, she is great.", + "pos": 0.205, + "neu": 0.751, + "neg": 0.044, + "_id": { + "$oid": "6711d556cd60fca157e5cd0b" + } + }, + { + "text": "I was nervous about taking chem 1 thinking it's hard but professor Bu made it really easy. She is a very nice and caring professor. Those who complained about the class probably never tried and are lazy. There are 3 exams and aleks homework. Aleks can be annoying but it is helpful. Take Professor Bu and you will not regret it!!", + "pos": 0.241, + "neu": 0.604, + "neg": 0.155, + "_id": { + "$oid": "6711d556cd60fca157e5cd0c" + } + }, + { + "text": "She is decent. She always reads off the slides however easy to understand and chem 1 isn't a hard class anyway. No quiz and she gives two tries for every test. She is quite helpful too. Aleks is where u do all ur hw and test, a little picky with sigfigs and answering format but with time you adjust with Aleks and it becomes very helpful.", + "pos": 0.129, + "neu": 0.849, + "neg": 0.022, + "_id": { + "$oid": "6711d556cd60fca157e5cd0d" + } + }, + { + "text": "Her lectures are great and easy to understand. Participation doesn't matter as much as ALEKS for homework. Make sure to stay on top of due dates in ALEKS because they may be adjusted frequently based on class progress. Exams are also based on ALEKS. For lab, some modules are confusing to do alone so email TAs if necessary!", + "pos": 0.205, + "neu": 0.723, + "neg": 0.072, + "_id": { + "$oid": "6711d556cd60fca157e5cd0e" + } + }, + { + "text": "She reads off of the slides for lecture but she goes into depth and explains the topics more using examples and solving those examples. We do get a lot of homework on Aleks but it is so worth it, as long as you do well on the homework assignment you will do well on the exams and final. She gives two attempts for each exam. Make sure to work hard!", + "pos": 0.185, + "neu": 0.795, + "neg": 0.02, + "_id": { + "$oid": "6711d556cd60fca157e5cd0f" + } + }, + { + "text": "her finals was 40 questions that were mostly math heavy that had to be done in 2h 15 min, which is 3.375 min a question This semester, which was fully online, she wasn't accessible outside of class AT ALL. You couldn't get a hold of her unless a lot of students mass emailed her, but she did give extensions to ALEKS homework a lot so thats a plus.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd10" + } + }, + { + "text": "Everything is on ALEKS. Exams , extra credit, and final. Just do the ALEKS work and you're fine. Format is the same for all. Studying is important as well, take notes when completing ALEKS. Attendance matters for recitation. There are five labs to complete.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd11" + } + }, + { + "text": "Wow! NSE was the most delicious!", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd12" + } + }, + { + "text": "Learn neutron spin echo from a giant in the field. No wonder she got the best students.", + "pos": 0.196, + "neu": 0.701, + "neg": 0.103, + "_id": { + "$oid": "6711d556cd60fca157e5cd13" + } + }, + { + "text": "Now we see with NSE! Great class.", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd14" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d556cd60fca157e5cd16" + }, + "professor_name": "Ronald Birke", + "rating": 2.4, + "department": "Chemistry department", + "comments": [ + { + "text": "His lectures are basically reading off the textbook so you'll have to self teach but most intro chem professors at CCNY are like that. He's probably a more solid choice though cus his exams are just like his study guide, so if you practice that, you'll do well. curves a lot. recitation is more important than lecture.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd17" + } + }, + { + "text": "His lectures are pointless, but you have to go. If you take him, be ready to teach yourself. The content isn't too hard, luckily. He still used an old school projector which is hard to see in a big lecture hall. Somehow I had an A+ all term but got a C on the final and it brought me down. Gives partial credit, but not so much on the final.", + "pos": 0.103, + "neu": 0.831, + "neg": 0.066, + "_id": { + "$oid": "6711d556cd60fca157e5cd18" + } + }, + { + "text": "Nice guy. No point in going to lecture as you will have to teach yourself the material. For all three tests, class averages were failing as the tests were way harder than any practice exam he provided. Will give back points if there are grading errors.", + "pos": 0.053, + "neu": 0.797, + "neg": 0.15, + "_id": { + "$oid": "6711d556cd60fca157e5cd19" + } + }, + { + "text": "His class really prepared me for the MCAT. It might be really difficult, but his exams make MCAT questions look elementary.", + "pos": 0.071, + "neu": 0.845, + "neg": 0.084, + "_id": { + "$oid": "6711d556cd60fca157e5cd1a" + } + }, + { + "text": "As friendly as he is, its time to retire. Attendance sheet so you have to show up to listen to him read directly off a PowerPoint thats verbatim out of the textbook. Ive learned more for this class via YouTube than a single thing this man has said and it has been 7 years since my last Chem class. Memorize how to do the practice exams to pass", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd1b" + } + }, + { + "text": "He is extremely badd!!!! the only ones who got an A are the ones who were knew the topics or received private tutoring from others. Look, if you came from an amazing high school with great professors then you would be a little more prepared than the rest. But if not, then avoid him. Taking his class means you must teach yourself the course.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd1c" + } + }, + { + "text": "He is an excellent teacher. He is also very generous when it comes to grading exams. I don't know where this tough grader comes from. If you set the problem up correctly and make stupid mistakes, you can still get 90% partial credit. Exams are only worth 70% of your grade and a 90 is an A. Recommended !", + "pos": 0.187, + "neu": 0.675, + "neg": 0.138, + "_id": { + "$oid": "6711d556cd60fca157e5cd1d" + } + }, + { + "text": "You could stay home and read the slides and learn about as much as you would have if you had attended class. Homework barely helps at all, writes the formula to make it look more complicated than it actually is, and doesn't seem to know how to explain things clearly. Don't take him if you care about your GPA.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd1e" + } + }, + { + "text": "The only way to legitimately pass his class is to review his practice tests. Review all of them. He WILL give you exams that he or someone has completed. Review that too. If you want to pass, memorize the practice tests and how you show work for the questions. That way on the actual test, you will see the exact question with different values.", + "pos": 0.061, + "neu": 0.939, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd1f" + } + }, + { + "text": "The lectures are boring and ineffective. You are better off learning in lab/workshop and on your own. The one good quality was the predictability of his exams as he gave 1-2 practice exams that were 80-85% similar to the actual exam. Not much help outside of class. Do the practice tests thoroughly. Predictability is the key to passing.", + "pos": 0.089, + "neu": 0.817, + "neg": 0.093, + "_id": { + "$oid": "6711d556cd60fca157e5cd20" + } + }, + { + "text": "Pr. Birke managed to make my favorite subject uninteresting. The lecture slides are on Blackboard so there is really no point coming to lecture, because he literally just reads the slides. Please avoid unless you are okay with studying by yourself like I did. He is actually not a tough grader, just does not prepare students well for his tests.", + "pos": 0.159, + "neu": 0.747, + "neg": 0.094, + "_id": { + "$oid": "6711d556cd60fca157e5cd21" + } + }, + { + "text": "Birke is barely even a professor. He's just an old man who reads straight from the electronic version of the textbook in class and yet he is known for giving the trickiest tests. Don't take him for your teacher or else prepare to do a lot of self or group studying. I learn more from the workshop leaders, group studying, and substitute teachers.", + "pos": 0.065, + "neu": 0.902, + "neg": 0.033, + "_id": { + "$oid": "6711d556cd60fca157e5cd22" + } + }, + { + "text": "He is a good choice if your chemistry knowledge is solid. He doesn't take time to really explain concepts and only goes over slides in lectures. That said, if you go to office hours he will take time to explain things patiently. You'll have to put in a lot of effort to get a good grade.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd23" + } + }, + { + "text": "My first semester in college was the worst experience because of this professor. I had high hopes for Chemistry major, but he shattered my dream. Whoever is forced to take his class, please study things yourself. I don't recommend this professor to anyone.", + "pos": 0.129, + "neu": 0.63, + "neg": 0.241, + "_id": { + "$oid": "6711d556cd60fca157e5cd24" + } + }, + { + "text": "Birke is the worst teacher ever! You can never trust his practice test because he always adds tricky questions that throws you off. His teaching skills are horrible and the chemistry he teaches is so much harder than the department final.", + "pos": 0.0, + "neu": 0.752, + "neg": 0.248, + "_id": { + "$oid": "6711d556cd60fca157e5cd25" + } + }, + { + "text": "I recomend taking other professors or taking class at a diffrent cuny college. I was forced to take this class because no other classes were open. You will learn nothing from him.", + "pos": 0.0, + "neu": 0.852, + "neg": 0.148, + "_id": { + "$oid": "6711d556cd60fca157e5cd26" + } + }, + { + "text": "Stay away if you can. His lectures are boring and reads off power point. Does not really explain anyhting. Only way to pass this class is to study by yourself. The workshop is poorly organized but helpful. Don't rely on his practice exams, he changes the format frquently.", + "pos": 0.072, + "neu": 0.896, + "neg": 0.032, + "_id": { + "$oid": "6711d556cd60fca157e5cd27" + } + }, + { + "text": "STAY AWAY FROM HIM! His tests throw you off and if you're going to take him, you are going to spend lots of time self studying. All of our exams had failing averages and when I tried going to his office hours for help he would get mad and say we already learned this in class. And his tests are not even chem 103, he adds info from more advanced chem", + "pos": 0.063, + "neu": 0.85, + "neg": 0.086, + "_id": { + "$oid": "6711d556cd60fca157e5cd28" + } + }, + { + "text": "Hard tests and the lectures out of control. Loud noises during the lectures and he speaks so low that you have to sit next to him to hear him. The tests are as hard as he can make them and the rate of dropout students is raising.", + "pos": 0.0, + "neu": 0.888, + "neg": 0.112, + "_id": { + "$oid": "6711d556cd60fca157e5cd29" + } + }, + { + "text": "He explains every chapter very well, you just have to be there to actually listen to him. He gives out Powerpoints on blackboard and going over them helps on tests. He gives review sheets, just do those and you'll get a good grade. Attendance is taken in a google forms so in case you don't go...", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d556cd60fca157e5cd2a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d557cd60fca157e5cd2c" + }, + "professor_name": "Michael Samms", + "rating": 3.7, + "department": "Biology department", + "comments": [ + { + "text": "Dr.Samms was a kind and entertaining professor. However, the lecture is kind of boring. He spends his class hours reading slides, which are available on the blackboard but those slides were very helpful for learning. Emails are sometimes missing. Just do your best, and you will be fine. Good Luck!", + "pos": 0.349, + "neu": 0.585, + "neg": 0.066, + "_id": { + "$oid": "6711d557cd60fca157e5cd2d" + } + }, + { + "text": "His class is not graded on a lot of things besides homework, lab and an easy presentation. However, this professor is unorganized, inconsiderate and inconsistent. His lectures are boring and not engaging. He just reads off the slides for 2 hrs straight, sometimes longer. Does not offer even a ten min break. Does not communicate well.", + "pos": 0.075, + "neu": 0.783, + "neg": 0.142, + "_id": { + "$oid": "6711d557cd60fca157e5cd2e" + } + }, + { + "text": "Straight to the point when it comes to grades. His exams are very long but he gives enough time for them. Great lectures. Understanding and lenient with the students as long as you communicate with him.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd2f" + } + }, + { + "text": "Get prepared for lots of reading and long lectures. He read off slides however if you ask a question he'll answer. Studying the material is essential as there is a lot of information to cover. There is 1 textbook that was about $100 and thats were the homework is. Homework isn't too important but its good for review. E-mails are a hit or miss.", + "pos": 0.077, + "neu": 0.876, + "neg": 0.047, + "_id": { + "$oid": "6711d557cd60fca157e5cd30" + } + }, + { + "text": "This class was ALOT of work in 4 weeks so just be prepared. Overall exams were fair, everything on the slides was on the exam. Lab exams were so much labeling but pretty easy. You cannot reach him outside of class so say what you need to say in class. A solid option for this class", + "pos": 0.206, + "neu": 0.776, + "neg": 0.017, + "_id": { + "$oid": "6711d557cd60fca157e5cd31" + } + }, + { + "text": "He is nice and talkative, but lecture is not that really helpful. We would have to study by ourself for everything. It is very true that he just read the lecture slide to us and it is not vivid lecture and useful lecture. Exam is really heavy and every time you have around 130 questions for 2hrs and 20 mins.", + "pos": 0.143, + "neu": 0.809, + "neg": 0.048, + "_id": { + "$oid": "6711d557cd60fca157e5cd32" + } + }, + { + "text": "Samms is an amazingly helpful professor. He is very understanding and always makes sure students understand the course material. Hes super big on second chances, so if you ever have any issues then talking to him would absolutely help. As for the course, his exams are entirely based on slides. If you read them over youre guaranteed an A!", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd33" + } + }, + { + "text": "Prof Samms is very passionate and you can tell during his lectures. it was also clear he wanted the best for us. class is very lecture heavy but if you pay attention, there's no way you wont do good on the exams. the exams are very long so be prepared for that. the lab is also really simple and my instructor calvin was nice and understanding.", + "pos": 0.168, + "neu": 0.737, + "neg": 0.095, + "_id": { + "$oid": "6711d557cd60fca157e5cd34" + } + }, + { + "text": "Don't listen to people who put no effort into a class and think that they are entitled to an A. It doesn't work that way, especially in a biology course. Dr. Samms is very passionate about teaching and loves to make the course interesting especially during online learning. He WANTS to see students succeed. Take his course! It'll be a good time.", + "pos": 0.245, + "neu": 0.726, + "neg": 0.029, + "_id": { + "$oid": "6711d557cd60fca157e5cd35" + } + }, + { + "text": "Get ready for connect assignments that's all I gotta say. The exams are really difficult and long. The lectures are so boring, barely anyone participated and there would be awkward silences. If you want to actually learn something about biology take another professor", + "pos": 0.077, + "neu": 0.773, + "neg": 0.15, + "_id": { + "$oid": "6711d557cd60fca157e5cd36" + } + }, + { + "text": "This dude reads off slides 24/7. He doesn't make the topics he's talking about sound interesting and he doesn't seem passionate about what he's teaching. He makes you do several homework assignments on a platform called CONNECT. These assignments are INSANE. Each assignment is over 100 questions and there are 30 in total. You do the math. AVOID!!!", + "pos": 0.04, + "neu": 0.809, + "neg": 0.15, + "_id": { + "$oid": "6711d557cd60fca157e5cd37" + } + }, + { + "text": "I took A&P 247 & 248 with him over the summer & I would take him again especially if he taught immunology.. haha. Getting an A is achievable as long as you completely understand the slides and attend his lectures. Lectures were long and we were taught one chapter per day (100+ slides)with an exam & quiz every week, so yeah.. summer was really heavy", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd38" + } + }, + { + "text": "He's a really kind person but a lazy prof; it took him the whole semester to grade the first exam... His lectures are also boring because he reads directly off the slides so I'd suggest watching YouTube videos instead. Overall, if you do a decent amount of studying and memorizing, you'll do fine in his class.", + "pos": 0.072, + "neu": 0.829, + "neg": 0.099, + "_id": { + "$oid": "6711d557cd60fca157e5cd39" + } + }, + { + "text": "Samms is okay. He will do a few things that annoys the class like uploading the notes too late or asking a weird question on a test. A&P is a lot of work, too much Work for a 4 credit class. Dont just memorize test banks because half the test are short response questions. Class has too much assignments/exams, but the material isnt hard.", + "pos": 0.095, + "neu": 0.857, + "neg": 0.048, + "_id": { + "$oid": "6711d557cd60fca157e5cd3a" + } + }, + { + "text": "Literally the laziest most inconsiderate professor i've met yet. Literally reads off of slides 50% of the time and blabbers off about his life and how amazing his life is the other 50%. Expects you to know everything before class starts. The review sheets provided for the final and midterm are so vague you might as well just read the entire book.", + "pos": 0.082, + "neu": 0.795, + "neg": 0.122, + "_id": { + "$oid": "6711d557cd60fca157e5cd3b" + } + }, + { + "text": "Please do yourself a favor and choose another professor! We had 4 tests and NOT EVEN ONE was returned to us, so you would never know what your mistakes were, he does not reply to emails, so good luck reaching him out if you have any questions. He reads off the slides, mainly talks about his life. If you want to actually learn AVOID at all costs!", + "pos": 0.199, + "neu": 0.734, + "neg": 0.068, + "_id": { + "$oid": "6711d557cd60fca157e5cd3c" + } + }, + { + "text": "Reads/paraphrases hundreds of slides, does not check-in with students if they actually grasp material, assumes students already/should know. Amazing stories and life advice, but lectures are not worth going to, however he will penalize you if he does not recognize you from lectures. so TRY to participate or talk to him outside of class", + "pos": 0.043, + "neu": 0.922, + "neg": 0.035, + "_id": { + "$oid": "6711d557cd60fca157e5cd3d" + } + }, + { + "text": "He reads off the slide, which is especially boring considering there are 100+ slides for each lecture. He is irresponsible, the exam problems are from the practiced problem he provides 1 week prior which you can find online. He doesn't teach us most of the concepts, and there are always typos on exams. Worst bio professor I have ever taken.", + "pos": 0.0, + "neu": 0.786, + "neg": 0.214, + "_id": { + "$oid": "6711d557cd60fca157e5cd3e" + } + }, + { + "text": "Worst professor ever. 50% of the time he reads PowerPoints (and adds 2 to 5 medical words to show off) the other 50% talks about his life. All his quizzes are online and he encourages memorization. If you want an essay A take his class, if you want to learn avoid him.", + "pos": 0.094, + "neu": 0.799, + "neg": 0.107, + "_id": { + "$oid": "6711d557cd60fca157e5cd3f" + } + }, + { + "text": "Took this in Spring 2017. I will admit it's not easy, but like he literally provides you the answers in the review. Lab class was long and time-consuming, but you will earn a decent grade, even on lab exams. My lab instructor-he was hot, so I liked lab. Trust the reviews, plus 1 exam is dropped! After it's all over, YOU WILL MISS THIS CLASS & SAMMS", + "pos": 0.13, + "neu": 0.776, + "neg": 0.094, + "_id": { + "$oid": "6711d557cd60fca157e5cd40" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d557cd60fca157e5cd42" + }, + "professor_name": "Hawai Kwok", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "do not take her asynchronously. she says it herself that she illadvises people to take her asynchronous course, especially her four week psych 102. take her in person! she's so much better, and a really funny and lively person! I did not get anything out of her four week asynchronous psychology course at all. overall, avoid her asynchronous courses", + "pos": 0.15, + "neu": 0.817, + "neg": 0.033, + "_id": { + "$oid": "6711d557cd60fca157e5cd43" + } + }, + { + "text": "I LOVED professor Kwok. She uses stories about her own life to make sure you understand the topics. Her lectures are very interesting. The work load is very manageable and she gives extra credit. She also provides the textbook online for free. You must take her class!!", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd44" + } + }, + { + "text": "She is a really cool professor, she is just very strict which makes her come off as intimidating. She connects her lectures to outside stories which actually makes you understand the material better. She doesn't take attendance unless there is a quiz but she will not make an announcement of when there will be a quiz.", + "pos": 0.064, + "neu": 0.903, + "neg": 0.033, + "_id": { + "$oid": "6711d557cd60fca157e5cd45" + } + }, + { + "text": "Prof. Kwok is a hit or miss. She is old school and can be seen as passive aggressive to some. She does not post slides or recordings. But, this can just be her caring about her students learning abilities and wanting them to retain and apply themselves. Pay attention in lectures, complete your assignments, and you will do okay.", + "pos": 0.158, + "neu": 0.779, + "neg": 0.063, + "_id": { + "$oid": "6711d557cd60fca157e5cd46" + } + }, + { + "text": "Overall good professor could've given more extra credit opportunities, final wasn't easy.", + "pos": 0.454, + "neu": 0.42, + "neg": 0.126, + "_id": { + "$oid": "6711d557cd60fca157e5cd47" + } + }, + { + "text": "Professor Kwok is thoughtful, caring, and deeply committed to teaching. She is also attentive to students' comments. She welcomes participation. And she expects us to be prepared. And her door is always open. I highly recommend her. But no electronics in class.", + "pos": 0.222, + "neu": 0.72, + "neg": 0.058, + "_id": { + "$oid": "6711d557cd60fca157e5cd48" + } + }, + { + "text": "Emphasizes how hard she worked for the class yet it feels like she doesn't. VERY unorganized (wrong links, vague instructions) yet she sends an email at the end telling US to read over future syllabis better. 10 assignments, paper, final, 1-2 extra credits. Her TA's doing EVERYTHING while she sits back. Treats us like we never have good intentions.", + "pos": 0.196, + "neu": 0.73, + "neg": 0.074, + "_id": { + "$oid": "6711d557cd60fca157e5cd49" + } + }, + { + "text": "Professor Kwok is a great. She understands what's best for us based on the deadlines given to us. Although I have yet to take her infancy and childhood course, she already set a positive example of a professor to me since I took her PSY 102 course over the summer. Although strict, a bit of strictness is good in a professor. Def take her if you can.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd4a" + } + }, + { + "text": "Loved taking her class. She made all her lectures enjoyable and she allows so many opportunities for extra credit. Definitely an Easy A.", + "pos": 0.513, + "neu": 0.487, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd4b" + } + }, + { + "text": "This is the best class I've taken at CCNY. Kwok is such a dedicated professor and her passion is so evident through the way that she presents material. Lectures are conversational & she encourages student participation. She provides anecdotes that productively engage students. She is a overall just a genuine person and cares for her students deeply", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd4c" + } + }, + { + "text": "Professor Kwok is an amazing lecturer. She gave so much inspirational on how to continue on with life. Although her tests are easy but they are given randomly. Discussion boards and a research paper. Not a hard class whatsoever.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd4d" + } + }, + { + "text": "I absolutely loved Professor Kwoks lectures, but the quizzes she gave shouldn't have measured the grade that was given. I learned so much in this class and loved listening to her talk. I retained so much information, but the quizzes were not well-worded and if you aren't a great test taker, good luck!", + "pos": 0.251, + "neu": 0.684, + "neg": 0.065, + "_id": { + "$oid": "6711d557cd60fca157e5cd4e" + } + }, + { + "text": "She's a great professor, the lectures were fun and easygoing but I still learned so much and it stayed with me, you can tell she has a strictness to her but it's no issue she's still great at what she does and cares, would definitely take another one of her lectures, 100% recommend work was simple with no exams as long as you listen to the lectures", + "pos": 0.264, + "neu": 0.671, + "neg": 0.065, + "_id": { + "$oid": "6711d557cd60fca157e5cd4f" + } + }, + { + "text": "She's a horrible professor and always act very strict. I will not recommend her to anyone.", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d557cd60fca157e5cd50" + } + }, + { + "text": "Professor Kwok is absolutely amazing. I have no words to explain how caring and how much she loves to help her students achieve their goals. She is willing to go beyond. She has helped me with my classes. Best professor at City College. I will take her again in a heartbeat.", + "pos": 0.275, + "neu": 0.691, + "neg": 0.034, + "_id": { + "$oid": "6711d557cd60fca157e5cd51" + } + }, + { + "text": "She is a good teacher, very welcoming. She gives pop quizzes so you have to be in class every time. A couple of papers.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d557cd60fca157e5cd52" + } + }, + { + "text": "Professor Kwok is sweet albeit disorganized but that can be due to the hyflex style of the course. The TA also was helpful but the overall chunk of your grade is the research paper and pop quizzes which are dependent on lecture notes.", + "pos": 0.121, + "neu": 0.846, + "neg": 0.034, + "_id": { + "$oid": "6711d557cd60fca157e5cd53" + } + }, + { + "text": "No stress at all. The quizzes are a little tricky but if you take notes in class then it is easy. I loved her lecture style no stress to go over lengthy PowerPoint. She writes as she explains concepts or draws and lets you take notes. I learnt a lot in her class.", + "pos": 0.22, + "neu": 0.762, + "neg": 0.018, + "_id": { + "$oid": "6711d557cd60fca157e5cd54" + } + }, + { + "text": "Free text book used! The summer class went by quickly. Professor wrote notes on Zoom and made it fun with plenty of examples and videos. No tests, no ppts slides, quizzes and writing assignments. Not stressful! Take her.", + "pos": 0.251, + "neu": 0.703, + "neg": 0.047, + "_id": { + "$oid": "6711d557cd60fca157e5cd55" + } + }, + { + "text": "The class material is not that difficult, but she is. Unorganized and forgetful. Unclear due dates. Have to take notes for everything. Not a lenient grader, takes points off every assignment without giving any reason. She is unfair at grading overall. Learning from the textbook was so much easier than her teaching.", + "pos": 0.088, + "neu": 0.695, + "neg": 0.217, + "_id": { + "$oid": "6711d557cd60fca157e5cd56" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d558cd60fca157e5cd58" + }, + "professor_name": "Bassit Malam", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "I genuinely enjoyed taking this class would recommend it. Professor Malam is very straight forward, caring, enthusiastic, and understanding. There was never a time that I felt bored in class because of the material we went through in class + the way he interpreted real life examples that were so informative and helpful yet very interesting.", + "pos": 0.293, + "neu": 0.678, + "neg": 0.03, + "_id": { + "$oid": "6711d558cd60fca157e5cd59" + } + }, + { + "text": "Really good professor and uses a lot of real life examples to help us better understand the material \n\n10/10 professor", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd5a" + } + }, + { + "text": "Please take this class if you want an A and to experience a professor who is passionate about teaching and what they teach. Professor Bassit is great at what he does, whether that's teaching or working as a therapist. I promise you will learn so much from him and enjoy the lectures! He's amazing; you won't regret it.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd5b" + } + }, + { + "text": "Professor Bassit is great, he enjoy teaching. I took him over the summer, he taught 2 classes at times combined into one which is Couple Counseling and Family Psychology. I never felt bore in his lectures. If you have the opportunity of taking one of his classes you will not regret it.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd5c" + } + }, + { + "text": "Best Professor I've taken! This is my first master level class and it went extremely well because of him!", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd5d" + } + }, + { + "text": "Great professor i wish I had taken this course in person it's a easy A just pay attention to videos and he's a professor who will work with you if you give him a head notice on any issues.", + "pos": 0.21, + "neu": 0.759, + "neg": 0.03, + "_id": { + "$oid": "6711d558cd60fca157e5cd5e" + } + }, + { + "text": "Professor Bassit is amazing. He teaches 2 classes at times combined into one which is Couple Counseling and Family Psychology: Psy 36500. Took him over the summer in a 4 week course from Monday to Thursday (9am-11:30am). You have 3 exams and attendance and participation that make up your grade. The exams themselves consist of 50 MC, 75 m, open book", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd5f" + } + }, + { + "text": "Professor is really humble and easygoing - and makes being in his class a joy rather than a chore. Would definitely recommend taking his class or even take another one of his classes if were available. His lectures are informative and interactive - and classroom, though virtual, has a real positively communal vibe.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd60" + } + }, + { + "text": "This is my 2nd class w/ Prof Bassit. 1st, during a regular Spring semester and this 2nd time was an online 4-week summer course. Each time he is amazing, enthusiastic, gives great examples, is fair/understanding (but make sure you hand things in on time/keep him informed if an emergency happens). He's just a really great professor/ a gem @ CCNY.", + "pos": 0.266, + "neu": 0.69, + "neg": 0.044, + "_id": { + "$oid": "6711d558cd60fca157e5cd61" + } + }, + { + "text": "very straightforward, take any course that he teaches.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd62" + } + }, + { + "text": "Do take him, you will learn a lot and he gives really good real-life examples to almost everything.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd63" + } + }, + { + "text": "The class is straightforward. And he is so fair! If you email him about any concerns he has no problem going over things with you and helping you out. This is a professor that wants you to succeed. This was online, winter sem. so the lectures were pretty hefty due to the 3-week time frame. Regardless, this prof is very compassionate and funny!", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd64" + } + }, + { + "text": "I was fortunate to Have Professor Bassit over the fall Semester. He. is very kind and makes sure that we are absorbing the materials. As long as you do the work you should get a good grade.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd65" + } + }, + { + "text": "I took Professor Bassit's Psychopathology course, which was a standout experience. His teaching style is engaging and clear, making complex concepts understandable. His passion for the subject shines through, creating an environment for learning. I highly recommend his courses if you're looking for a knowledgeable and approachable instructor.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd66" + } + }, + { + "text": "Professor Bassit is supportive and resourceful. I value his honest communication and openness with students. He offers constructive feedback, encourages student engagement, and is transparent about the counseling processes and limitations which is helpful.", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd67" + } + }, + { + "text": "Professor Bassit was great,his strengths include his attention to detail, positive feedback when it comes to assignments, and the abundance of knowledge he has when it comes to psychopathology. I would highly recommend him to any student who has a passion for psychopathology and learning about the different disorders in the field of mental health.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd68" + } + }, + { + "text": "Professor Malam was one of the best professors I've had so far. He's very attentive, caring, humorous and respectful. You can tell he wants the best for to all his students for sure. The courseload included one discussion post, 10-15 min group project, an AA/NA Attendance paper, a case conceptualization paper, and a final. Would take him again!", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd69" + } + }, + { + "text": "Professor Malam was an amazing lecturer and provided many resources to help us in our future careers. He is also very detailed when answering questions, which is helpful. There was one discussion post, a group project, an AA/NA Attendance paper, a case conceptualization paper, a final, and he gives extra credit opportunities. Take him if you can!!", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd6a" + } + }, + { + "text": "Bassit Malam was a great lecturer. He taught with a lot of passion and was extremely knowledgeable. He conveyed the course material in a very intelligent and understandable way. I would recommend taking a class with him.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd6b" + } + }, + { + "text": "The professor possesses extensive knowledge about mental disorders and utilizing the DSM-5. I definitely gained valuable tips on how to properly utilize the book and accurately diagnose conditions.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd6c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d558cd60fca157e5cd6e" + }, + "professor_name": "Lora Morgenstern", + "rating": 4.8, + "department": "Design department", + "comments": [ + { + "text": "nice professor you definitely will learn a lot and improve in her class she gives feedback every projects", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd6f" + } + }, + { + "text": "nice professor you will improve and learn a lot in her class she gives feedback every project she understand peoples difficulty", + "pos": 0.218, + "neu": 0.69, + "neg": 0.092, + "_id": { + "$oid": "6711d558cd60fca157e5cd70" + } + }, + { + "text": "There's a steady stream of assignments in this class, but they are laid out in steps so if you keep up with the process the projects finish themselves. Morgenstern is passionate about design and will push you to experiment while instilling a solid foundation that can be applied to many things outside of this field. Came frustrated, left with skills", + "pos": 0.095, + "neu": 0.837, + "neg": 0.068, + "_id": { + "$oid": "6711d558cd60fca157e5cd71" + } + }, + { + "text": "Professor Morgenstern is a great instructor who will help guide you in your graphics design journey. She is more than fair and is always willing to work with you to ensure you understand the assignments, due dates, and work expected from all levels of designers from beginners to the more seasoned designer.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd72" + } + }, + { + "text": "I think Professor Morgenstern is great she pushes you and because of that you learn a lot and tap into a lot of the missing pieces you have in your designs. If you want to work in design this is a great class.", + "pos": 0.187, + "neu": 0.769, + "neg": 0.043, + "_id": { + "$oid": "6711d558cd60fca157e5cd73" + } + }, + { + "text": "Taking her class was so rewarding. It was difficult, especially since I had no prior knowledge. But she was patient and knew how to push diff people on their diff skill sets. I saw progress within my work and nonetheless, I feel optimistic moving forward. Take her class!", + "pos": 0.172, + "neu": 0.768, + "neg": 0.06, + "_id": { + "$oid": "6711d558cd60fca157e5cd74" + } + }, + { + "text": "Nice and professional teacher, u can get inspiration and feedback u want", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd75" + } + }, + { + "text": "The professor is overall very nice and her critiques might seem a bit harsh, but she is preparing you for life outside of college. All of her projects are great for your portfolio!", + "pos": 0.2, + "neu": 0.751, + "neg": 0.049, + "_id": { + "$oid": "6711d558cd60fca157e5cd76" + } + }, + { + "text": "Very intense class, you will be given three projects and one artist presentation. Professor. Lora are passionate and always give you helpful feedback. I will definitely take her again. You will learn a lot, but just be ready for a lots of assignments, and learning the software yourself if you are very new to adobe.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd77" + } + }, + { + "text": "She is serious about teaching graphics and what you need to know to succeed professionally. There is a lot of work, but everything is geared towards creating a professional who knows the requirements to succeed. She works hard to make sure everyone succeeds who wants to do the work.", + "pos": 0.269, + "neu": 0.686, + "neg": 0.045, + "_id": { + "$oid": "6711d558cd60fca157e5cd78" + } + }, + { + "text": "She's gives amazing feedback and also makes the class very interesting and entertaining and she also gives you good boost in motivation to help you succeed with flying colors\n\nI highly recommend taking her class", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd79" + } + }, + { + "text": "Not every communicative via email. Overall provides useful feedback.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd7a" + } + }, + { + "text": "very understanding of each student's skill level and gives useful feedback on our designs", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd7b" + } + }, + { + "text": "Lora gives really great feedback to students of all abilities and skill levels. Really knowledgeable and will take her time looking at your work. Take this class if you want to dapple in graphic design and develop a few portfolio pieces.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd7c" + } + }, + { + "text": "Great class. Professor offered great feedback and critiques to help with our designs. Also was very easy to speak with. This class will truly test your abilities so familiarize yourself with the abode software. The work is challenging but rewarding.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd7d" + } + }, + { + "text": "The workload is a bit heavy but if you pay attention, follow the guidelines, and listen to the feedback you should grow as an artist and get a good grade, the professor is very accommodating and will listen if you need any help, I would recommend them.", + "pos": 0.193, + "neu": 0.778, + "neg": 0.029, + "_id": { + "$oid": "6711d558cd60fca157e5cd7e" + } + }, + { + "text": "amazing professor, clear, and gives excellent feedback. always willing to help and she is understanding and flexible", + "pos": 0.551, + "neu": 0.449, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd7f" + } + }, + { + "text": "This class was truly hard for me as a beginner in graphic design. However, Professor Morgenstern is an incredible n talented teacher. The class is designed in a way that you're bound to learn and grow. The work will be hard, but she is kind and understanding. Take her class if you want to be introduced to the world of design. You won't regret it.", + "pos": 0.18, + "neu": 0.787, + "neg": 0.033, + "_id": { + "$oid": "6711d558cd60fca157e5cd80" + } + }, + { + "text": "The professor's class is great, but very challenging. She really gives you the inside scoop on how the graphic design field is, for her class it's a lot of work, but it's all worth it at the end because they made great portfolio pieces. Also, she's caring and understandable towards her students and all of her accomplishments are very inspirational.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd81" + } + }, + { + "text": "She is an amazing professor, her introduction to the world of graphic designs made me interested in the subject and perhaps even a career as a graphic designer. Each day is mandatory to attended, she recommends students create a network among themselves to help each other if one or more was absent but she can be emailed for specific questions.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d558cd60fca157e5cd82" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d559cd60fca157e5cd84" + }, + "professor_name": "Xiaoyan Yang", + "rating": 4.2, + "department": "Mathematics department", + "comments": [ + { + "text": "Took her in winter, she's amazing definitely take her", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cd85" + } + }, + { + "text": "Had her for the winter session, and she made the class super easy to understand. She would introduce a topic, and go over many examples of the topic, pulling questions out of our webassign. I believe it is very hard to FAIL her class, and you just need to do the work. She was also there 30 minutes before and went over questions you didnt understand", + "pos": 0.091, + "neu": 0.827, + "neg": 0.083, + "_id": { + "$oid": "6711d559cd60fca157e5cd86" + } + }, + { + "text": "Ms. Yang is a great professor. She goes above and beyond to teach math. She shows us shortcuts and quick ways to make math easier. Warning that she gives out quizzes every week. She's also a tough one so don't try to make excuses for not doing the work and slacking off, or she will roast you in front of everyone", + "pos": 0.102, + "neu": 0.841, + "neg": 0.058, + "_id": { + "$oid": "6711d559cd60fca157e5cd87" + } + }, + { + "text": "She is a great professor. She cares for the students and wants everyone to pass the class. Pay attention in class and study at home to get a good grade. She is very nice, and I wish I could take her for all my math courses at ccny.", + "pos": 0.267, + "neu": 0.71, + "neg": 0.024, + "_id": { + "$oid": "6711d559cd60fca157e5cd88" + } + }, + { + "text": "She is a great professor and she really cares about her students. She does give quizzes every week but she it is content that she reviewed in class and she gives practice problems and additional resources to prepare as well. She did a good job in preparing us for the final exam because I thought that the final exam was easier than I thought.", + "pos": 0.195, + "neu": 0.759, + "neg": 0.046, + "_id": { + "$oid": "6711d559cd60fca157e5cd89" + } + }, + { + "text": "You know what, I love her slight British accent! She is a great professor. So many chances to get an A. Love her! Take her! You won't regret it.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cd8a" + } + }, + { + "text": "Heavy accent, unclear schedule (she says quizzes only on Mondays, then goes on to give quizzes on both lecture days), public bantering with students, slight attitude, weekly homework on coursesite \"WebAssign\", Don't show up late or she might go on a rant about showing up early, 20+ years in her field and expects students to be on her skill-level.", + "pos": 0.0, + "neu": 0.928, + "neg": 0.072, + "_id": { + "$oid": "6711d559cd60fca157e5cd8b" + } + }, + { + "text": "Xiaoyan Yang's Asian accent is so heavy that it can sometimes be hard to understand her when she's talking about trigonometry terms. She provides you with plenty of resources but if you fail to grasp the material she PUBLICLY and BLATANTLY humiliates and disrespects you. She has favoritism amongst her \"smartest\" students and tends to give side-eye.", + "pos": 0.111, + "neu": 0.765, + "neg": 0.124, + "_id": { + "$oid": "6711d559cd60fca157e5cd8c" + } + }, + { + "text": "If you want a lecture overly baby-fed you won't enjoy her lectures. She goes over topics multiple times which makes it hard to forget how to do them. She helps me understand the coursework and more. She helped me better understand Algebra and prepared me for the next level in my college journey. Thanks, Prof Yang I would love to have her again. :)", + "pos": 0.239, + "neu": 0.686, + "neg": 0.075, + "_id": { + "$oid": "6711d559cd60fca157e5cd8d" + } + }, + { + "text": "I loved having Prof. Yang as my instructor. I enjoyed her lectures; she would clearly explain step by step for each problem. She reviewed it multiple times to ensure her students understood the coursework. On top of that, she would do online tutoring which shows a lot about an instructor. Loved taking her class and hope to have her again.", + "pos": 0.278, + "neu": 0.686, + "neg": 0.036, + "_id": { + "$oid": "6711d559cd60fca157e5cd8e" + } + }, + { + "text": "Prof Yang is underrated, she does an amazing job explaining the cou", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cd8f" + } + }, + { + "text": "Xiaoyan materials are alot, you have to review them a lot, or else she will ridicule you in front of everyone. Or better yet, find another professor because my review is honest honest.", + "pos": 0.229, + "neu": 0.699, + "neg": 0.072, + "_id": { + "$oid": "6711d559cd60fca157e5cd90" + } + }, + { + "text": "She is the best maths professor in CCNY in my opinion. Taking her class will make your fear of maths go away. She explains everything very simply. Reviews all the topics a lot of times that you are bound to understand every single topic even if you do not put that much effort. I can stress enough on this but HIGHLY recommend her class.", + "pos": 0.104, + "neu": 0.84, + "neg": 0.056, + "_id": { + "$oid": "6711d559cd60fca157e5cd91" + } + }, + { + "text": "Professor Xiaoyan Yang is easily the best math teacher I will study under in my life, and this is genuine and not meant to be baseless praise. \n\nShe is incredibly dedicated to her students and even set aside her free time to help tutor during summer classes. Great sense of humor, very talented at explaining math, could not recommend her enough", + "pos": 0.355, + "neu": 0.619, + "neg": 0.026, + "_id": { + "$oid": "6711d559cd60fca157e5cd92" + } + }, + { + "text": "Barely paid attention to class and never did hw. Just remember the tip/trick and shortcuts she teaches. For example, Limits only 3 way of solving it. Derivative, 3 or 4 rules you have remember and as for integral she notice that CCNY has 5 different combinations/patterns of problems she just gives shortcut/formats just remember those and you pass.", + "pos": 0.039, + "neu": 0.917, + "neg": 0.044, + "_id": { + "$oid": "6711d559cd60fca157e5cd93" + } + }, + { + "text": "Ms. Yang is the BEST PROFESSOR!!! I enjoyed learning calculus with her, you'll find the math concepts are easy to understand, she always gives us partial credit as she cares about her students. There's no way for you fail but prepare you get high grades, as she does final reviewing from the very beginning. Take her class, I highly recommended.", + "pos": 0.205, + "neu": 0.74, + "neg": 0.055, + "_id": { + "$oid": "6711d559cd60fca157e5cd94" + } + }, + { + "text": "Straight to the point, I promise you if math isn't your best subject you will pass with her as your teacher. She's very clear and direct. I took her last semester. I wish I could take her as my calculus teacher.", + "pos": 0.199, + "neu": 0.732, + "neg": 0.069, + "_id": { + "$oid": "6711d559cd60fca157e5cd95" + } + }, + { + "text": "The avg in this class: consistently failing. Exam avgs 54% and 47%. Confusing lectures, hard to pay attn imo. If I showed up made no diff and had to visit the math center constantly + still withdrew. She made side comments abt students not in the class. One benefit: hw is just for practice, not graded. Did the hw @ the math center w/ no deadlines.", + "pos": 0.04, + "neu": 0.793, + "neg": 0.167, + "_id": { + "$oid": "6711d559cd60fca157e5cd96" + } + }, + { + "text": "Prof. Yang was very caring and wanted everyone to pass, she gave lot of partial credit of the midterms and if you got a 80+ on the homework you got plus five points on your overall grade.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cd97" + } + }, + { + "text": "She was an amazing professor and one that really got to my heart. She tried to make the classes as engaging as possible. She always gives partial credit in the wrong answers of the 2 midterms. Very reachable out of class and ready to help. Overall, she was one of the professors I will remember for life because of how fun she made a math class be.", + "pos": 0.257, + "neu": 0.706, + "neg": 0.037, + "_id": { + "$oid": "6711d559cd60fca157e5cd98" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d559cd60fca157e5cd9a" + }, + "professor_name": "Sean Cleary", + "rating": 3.4, + "department": "Mathematics department", + "comments": [ + { + "text": "not a good prof whatsoever", + "pos": 0.0, + "neu": 0.624, + "neg": 0.376, + "_id": { + "$oid": "6711d559cd60fca157e5cd9b" + } + }, + { + "text": "Based off his previous reviews I thought he would have been a great prof, but I was sadly mistaken. This semester he was absolutely heartless with his grading, it was actually crazy. Take at your own risk.", + "pos": 0.05, + "neu": 0.608, + "neg": 0.342, + "_id": { + "$oid": "6711d559cd60fca157e5cd9c" + } + }, + { + "text": "before enrolling into his class, pay attention to what other reviewers gave him and their grade, do not walk in with high expectations for your final overall grade. tests are unbelievably theory heavy (despite this being calculus). test content will only include a few of the numerous chapters in lectures. extremely conservative w/partial credit.", + "pos": 0.051, + "neu": 0.924, + "neg": 0.025, + "_id": { + "$oid": "6711d559cd60fca157e5cd9d" + } + }, + { + "text": "LOTS of theory in lectures. 20% of exams are theory. Hes pretty cool dude but hella petty with grading and partials. His classes arent a great representation of what can appear on the exams. I recommend looking at older exams and studying those. He responds very fast through emails and seems to care.", + "pos": 0.173, + "neu": 0.719, + "neg": 0.108, + "_id": { + "$oid": "6711d559cd60fca157e5cd9e" + } + }, + { + "text": "Not a good professor AT ALL! Honestly so much of his content went into theory and if you get those wrong, max you can get on the exam is a 90. Offers ZERO partial credit, and assigns a lot of homework.", + "pos": 0.122, + "neu": 0.764, + "neg": 0.114, + "_id": { + "$oid": "6711d559cd60fca157e5cd9f" + } + }, + { + "text": "I hate the way that you walk, the way that you talk\nI hate the way that you dress\nI hate the way you sneak diss, if I catch flight, it's gon' be direct", + "pos": 0.0, + "neu": 0.736, + "neg": 0.264, + "_id": { + "$oid": "6711d559cd60fca157e5cda0" + } + }, + { + "text": "This professor is very knowledgeable but he has no empathy for his students and grades harsh. His exams were annoying with the theoretical questions. He does extend deadlines for the homework but that's pretty much the only nice thing about him. Expect to learn a lot of material because there is ALOT to learn for each exam.", + "pos": 0.141, + "neu": 0.716, + "neg": 0.143, + "_id": { + "$oid": "6711d559cd60fca157e5cda1" + } + }, + { + "text": "Professor is knowledgeable and lectures are not too bad, but he is a very harsh grader. Little partial credit on exams. Based on the exam rubric, you get more points for putting correct answers with no work than if you had full work with a slight mistake in the answer. He doesn't care about you passing the class or doing well and makes it tough.", + "pos": 0.095, + "neu": 0.717, + "neg": 0.188, + "_id": { + "$oid": "6711d559cd60fca157e5cda2" + } + }, + { + "text": "Tough Grader and not good at teaching.", + "pos": 0.0, + "neu": 0.561, + "neg": 0.439, + "_id": { + "$oid": "6711d559cd60fca157e5cda3" + } + }, + { + "text": "Doesnt rlly know how to teach but he likes the content himself", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cda4" + } + }, + { + "text": "He's so petty with test grading. He barely gave ANY partial credits. When grading, he doesn't care if you understand the concept, he only looks for the right answer. His lectures are extremely fast paced and hard to understand. I didn't pretty well in calc 2 (A) but coming into his class was really rough", + "pos": 0.03, + "neu": 0.837, + "neg": 0.133, + "_id": { + "$oid": "6711d559cd60fca157e5cda5" + } + }, + { + "text": "He truly cares about his students.", + "pos": 0.596, + "neu": 0.404, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cda6" + } + }, + { + "text": "Professor is amazing himself. You can tell he has a passion for math. Tries to entertain the class once in a while. His teaching skills is quite amazing with his unique examples. The only difficulty ig is his messy handwriting. Otherwise, he's an amazing professor to have. Very highly intelligent. However, you may regret thinking the class is easy.", + "pos": 0.293, + "neu": 0.611, + "neg": 0.096, + "_id": { + "$oid": "6711d559cd60fca157e5cda7" + } + }, + { + "text": "This professor was hands down one of the best lecturers I've had in this school, not only was he very enthusiastic about teaching our class and he made it interesting while joking around with us. However you will have to spend time out of class self-teaching because some topics were very difficult and not easy to follow in class.", + "pos": 0.174, + "neu": 0.752, + "neg": 0.074, + "_id": { + "$oid": "6711d559cd60fca157e5cda8" + } + }, + { + "text": "Professor Cleary has to be one of the most knowledgeable math professors I've ever seen and learned from. His lectures are amazing but tests are challenging. The best way to study would be to redo hw questions and doing sample final questions as they tend to be repeated. Don't wait till the last day and you have to do practice questions to pass.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cda9" + } + }, + { + "text": "He is very good at teaching. It may seem he is rushing at times, but he goes slower than other professors despite there being so many topics to cover in Calc 3. He cracks jokes many times to keep the class entertained. Know your quadric surfaces and be very very strong in most trigonometric identities. Spend 2 hours studying daily for Calc 3.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d559cd60fca157e5cdaa" + } + }, + { + "text": "DO NOT TAKE HIM IF YOU HAVE OTHER OPTIONS. THE WROST. HE GIVES YOU SO MANY CHAPTERS TO COVER FOR MIDTERMS AND ONLY FEW SHOW UP. HOMIE DOESN'T BREATHE WHILE TEACHING ;). ALL THE REVIEWS ARE FAKE..", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d559cd60fca157e5cdab" + } + }, + { + "text": "Prof explains topics well and keeps lectures entertaining. He gives many chances to participate and is available to answer questions. The one negative is that he doesn't curve. BUT, he gives generous partial credit and lowered the bar significantly to get a C. Instead of curving a 64 up to a 73, he made a 64 = C. Same thing if you think about it.", + "pos": 0.17, + "neu": 0.775, + "neg": 0.055, + "_id": { + "$oid": "6711d559cd60fca157e5cdac" + } + }, + { + "text": "Wonderful professor! If you want to learn, he's great at teaching. Make sure you study for tests thoroughly because they can be tricky. Makes jokes very entertaining.", + "pos": 0.439, + "neu": 0.52, + "neg": 0.042, + "_id": { + "$oid": "6711d559cd60fca157e5cdad" + } + }, + { + "text": "There are a lot of ass kissers and people looking for revenge. so my honest opinion. IDK what happened to him during the middle of the semester but after the 1st he was every lenient of the grading, the Test are basically your whole grade. However, he is a great lecturer even if his hand writing is a little messy.", + "pos": 0.218, + "neu": 0.667, + "neg": 0.115, + "_id": { + "$oid": "6711d559cd60fca157e5cdae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55acd60fca157e5cdb0" + }, + "professor_name": "Diomaris Padilla", + "rating": 4.4, + "department": "Science department", + "comments": [ + { + "text": "This class and the teacher were okay, take this class online trust me it's easier to understand and this class has a lab with it, Lab is way worse", + "pos": 0.222, + "neu": 0.693, + "neg": 0.086, + "_id": { + "$oid": "6711d55acd60fca157e5cdb1" + } + }, + { + "text": "Amazing professor. Gives out many opportunities for you to pass. She might seem intimidating at first but you won't regret taking her. Definitely take her for science requirements and/or earth science if you need to. Beware that if your device goes off in class she will give you a paper pop quiz.", + "pos": 0.18, + "neu": 0.787, + "neg": 0.033, + "_id": { + "$oid": "6711d55acd60fca157e5cdb2" + } + }, + { + "text": "Dr. Padilla is AMAZING. Her class is the easiest A you could get. She makes everything so simple and stress-free. She knows the majority of students take her class for requirements, so she doesn't expect a lot from us. She is also very witty. I thoroughly enjoyed listening to her during her lectures. Very smart and kind professor.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdb3" + } + }, + { + "text": "She deserves rating beyond 5. Ratings below 5 are false. She is extremally caring and knowledgeable Professor. Her classes are fun & simple. Learned MATLAB in this class. She taught it like it was nothing. Easy final & 3 Extra credits. She is a diamond of City College. I'll always be gratefully to have her for any course possible. She is the best!", + "pos": 0.272, + "neu": 0.697, + "neg": 0.03, + "_id": { + "$oid": "6711d55acd60fca157e5cdb4" + } + }, + { + "text": "Makes class fun and entertaining. Makes the lesson easy to understand. Only thing is she give pop up quiz if any students phone rings so make sure your phones are silent lol.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdb5" + } + }, + { + "text": "She is a great professor, gives quizzes and tests that are easy, and wants everyone to pass her class. Just make sure to put your phone on silent and don't make any disruptions during class, or else it can cause a paper pop quiz", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdb6" + } + }, + { + "text": "Good professor and makes it easy on students to do well. She's not out to get you. Gives plenty of opportunity to earn your grade. Just pay attention during lectures so you can do the quizzes. Attendance is really the only hard part.", + "pos": 0.211, + "neu": 0.729, + "neg": 0.06, + "_id": { + "$oid": "6711d55acd60fca157e5cdb7" + } + }, + { + "text": "Very informative. She was well prepared for the class and the lectures. It showed that she cares about her students. Give us many chances to get a good grade. \nHonestly, I would love to have all professors like her", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdb8" + } + }, + { + "text": "Professor Padilla provided engaging lectures and structured the course to give a lot of flexibility to us as students with extra credit and midterms. Her lectures are informative to where they alone have been enough to do well. Be sure to silence phones, that's her main rule and repeated disruptions can cause a paper pop quiz.", + "pos": 0.181, + "neu": 0.752, + "neg": 0.067, + "_id": { + "$oid": "6711d55acd60fca157e5cdb9" + } + }, + { + "text": "Hmmmmmm.......................Oh, I got it! Professor rating.....", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdba" + } + }, + { + "text": "She is a fun professor and gives easy quizzes and tests, she knows students take her classes just for the credits, so she makes sure everybody is going to pass. Put your phone on silent, otherwise, she'll give pop quizzes if she hears a phone ringing.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdbb" + } + }, + { + "text": "I really enjoyed professor Padilla. Science is really not my favorite subject, but she made it digestible. I had her for the summer course, which had like 3-hour lectures, and she would give us constant 20-min breaks every class. With moderate studying, I was able to get an A+. She is not out to get you, which I really came to appreciate.", + "pos": 0.137, + "neu": 0.836, + "neg": 0.027, + "_id": { + "$oid": "6711d55acd60fca157e5cdbc" + } + }, + { + "text": "She answers every question you would ask relates to the class, sweet and supportive, I would love to take her class again.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdbd" + } + }, + { + "text": "The professor was very sweet and understanding in class and always made sure every student understood what was being asked of them. Definitely a class I enjoyed!", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdbe" + } + }, + { + "text": "If you keep up with work and go to her lectures it's an easy A! Her lectures are super easy to understand and always cover what will be on her exams. You get classwork so you must go to her lectures, which is what you're supposed to be doing anyway. Give in all your work and you will pass! Highly recommend.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdbf" + } + }, + { + "text": "Dr. Padilla is a very funny and caring professor! She has clear expectations and takes the time to answer any questions. She presents her material in a way that is easy to understand! The work for this class is pretty easy. Her finals and midterms are all multiple choice without a time limit. I highly recommend her for this class!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdc0" + } + }, + { + "text": "One of best professors had in ccny. Could make the lessons more interesting. Barely get any homework. But do get a lot of class work. Quizzes are short and homework is easy. No way you can fail unless you don't turn in anything. Do wish had her for the lab", + "pos": 0.189, + "neu": 0.692, + "neg": 0.119, + "_id": { + "$oid": "6711d55acd60fca157e5cdc1" + } + }, + { + "text": "She was the best! She made lectures to where students were engaged. She does give a lot of work in the summer that you have to keep track of but everything is open book so it is very easy. She gives opportunity for extra credit as well. EASY A for sure. She even allows makeups, just do everything.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdc2" + } + }, + { + "text": "Best class I took in the summer she gives you work with assignments on blackboard and couple assignments on homework one midterm and one final. The grade breakdown is as follows: 20% Homework, 20% In Class Assignments, 20%Lab (+ lab exam), 20% Midterm and 20% Final Exam.", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdc3" + } + }, + { + "text": "This class is an easy A if you aren't lazy. Her exams are open book. There are 8 labs, some quizzes based on the lectures and labs, and multiple-choice homework. Do the work and you'll pass. The assignments felt more like a task to get out the way. She doesn't teach the labs, a TA does. As long as you get a good TA, the labs should be easy.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdc4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55acd60fca157e5cdc6" + }, + "professor_name": "Kareen Williams", + "rating": 3, + "department": "American Studies department", + "comments": [ + { + "text": "She really shames people for not talking like the semester just started, I dropped it couldn't do it, I understand this not supposed to be easy, but don't shame people and make them feel uncomfortable either.", + "pos": 0.122, + "neu": 0.717, + "neg": 0.161, + "_id": { + "$oid": "6711d55acd60fca157e5cdc7" + } + }, + { + "text": "I hated this class, sometimes she has good humor but for the most part she is very harsh with her students. I remember her forcing people to talk, she compares students to her highest current one in the class. Reminds students that it isn't her job to pass people, make sure u pass that midterm and final because ur whole grade is based on it.", + "pos": 0.088, + "neu": 0.818, + "neg": 0.094, + "_id": { + "$oid": "6711d55acd60fca157e5cdc8" + } + }, + { + "text": "Honestly, this class isn't for the person who just wants an easy A, you have to work hard by memorizing stuff and participation matters heavily. I wouldn't take this professor again, but it is doable if you work hard.", + "pos": 0.12, + "neu": 0.813, + "neg": 0.067, + "_id": { + "$oid": "6711d55acd60fca157e5cdc9" + } + }, + { + "text": "She give a lot of information during lectures, so pay close attention. The midterms are all writing, so you need to remember a lot to have less than half of it on the test. Her essays are fine, but she's particularly picky about how they are written. She will make you stress, a bit heavy for a basic requirement. Her teaching style is not for me.", + "pos": 0.02, + "neu": 0.906, + "neg": 0.074, + "_id": { + "$oid": "6711d55acd60fca157e5cdca" + } + }, + { + "text": "This professor is the devil in disguise, an academic nightmare. There aren't many assignments but she grades very harshly. study guide for midterm and finals isn't specific, she just provides the topics. If you miss 1 day of class, your participation grade will plummet. Take this class at your own risk.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d55acd60fca157e5cdcb" + } + }, + { + "text": "Just an awful person, very rude and inconsiderate of the fact that life happens. Threatened to make up fake questions for makeup midterm if you missed exam even with a valid excuse. Uses foul language and has on multiple occasions said she \"makes things up\" when she's teaching. Will give you a 50 if ur late by even a minute. Stay away save urself!", + "pos": 0.057, + "neu": 0.713, + "neg": 0.23, + "_id": { + "$oid": "6711d55acd60fca157e5cdcc" + } + }, + { + "text": "She is a little annoying when it comes to participation. She shames the class for not speaking and then expects us to speak which doesn't help her goal. On the other hand, her lectures are very engaging and makes me interested in the material that she talks about. Not enough to participate but enough to do well on tests and essays. She's cool.", + "pos": 0.146, + "neu": 0.78, + "neg": 0.074, + "_id": { + "$oid": "6711d55acd60fca157e5cdcd" + } + }, + { + "text": "Do not take her. I hated this class. I will say her lectures are pretty interesting. She's a very harsh grader and her feedback isn't helpful. Very lecture heavy. Midterm is 25% of your grade and final is 30%. Overall I did not enjoy the experience. Take at your own risk.", + "pos": 0.092, + "neu": 0.684, + "neg": 0.225, + "_id": { + "$oid": "6711d55acd60fca157e5cdce" + } + }, + { + "text": "She was very strict about what to do in her class and what not to do. But her lectures were pretty interesting. She presents her content in a fun way and doesn't sugarcoat anything.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdcf" + } + }, + { + "text": "Great Professor, she gives you 2 essays, 1 midterm and 1 final. There is a lot of note taking, like A LOT, but pays off when your studying. She is somewhat strict but as long as you do your work then you will be on her good side. She can be pretty funny sometimes, and can make the lecture seem fun.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdd0" + } + }, + { + "text": "Class was not extremely difficult unless you do not keep up with the essays and test.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d55acd60fca157e5cdd1" + } + }, + { + "text": "Honestly the professor is a bit rude when you ask her a question. The review material is just so stupid because it is randomized. She is also a tough grader. And overall does not provide the right learning environment\n\nDo not take this class", + "pos": 0.058, + "neu": 0.771, + "neg": 0.171, + "_id": { + "$oid": "6711d55acd60fca157e5cdd2" + } + }, + { + "text": "This professor is awful and is a harsh grader. Do NOT take this class and avoid it at all costs. She gives no feedback and is not helpful. She was rude and gave the class an attitude. She does not care about her students. She will not help you if you have any questions. The worst semester ever and very stressful because of this class.", + "pos": 0.0, + "neu": 0.661, + "neg": 0.339, + "_id": { + "$oid": "6711d55acd60fca157e5cdd3" + } + }, + { + "text": "This class specifically with this professor was the worst. She made my semester awful although I turned in all my work on time and I was alway present.", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d55acd60fca157e5cdd4" + } + }, + { + "text": "Her class was not too hard she tried to explain everything to her best ability, but she was very test-heavy. She will fail you if you're too vague on her papers. The more you write the better. If you miss one of her tests you are most definitely not passing the make-up. Her extra credit is a little restricting. GO OVER HER STUDY SHEETS.", + "pos": 0.187, + "neu": 0.673, + "neg": 0.14, + "_id": { + "$oid": "6711d55acd60fca157e5cdd5" + } + }, + { + "text": "Her tests are a hard and very specific. She gives chances to improve but if you miss it, it can really hurt your grade. Honestly, not an easy A or even a difficult A class. The content learned is basically high school work but she expects more with her papers and tests. This class felt like a chore. Def choose another class if you can.", + "pos": 0.131, + "neu": 0.691, + "neg": 0.179, + "_id": { + "$oid": "6711d55acd60fca157e5cdd6" + } + }, + { + "text": "Very stern professor. It's hard to ask questions without her taking the opportunity to be condescending. 10/10 will never take another course with this professor again.", + "pos": 0.099, + "neu": 0.851, + "neg": 0.05, + "_id": { + "$oid": "6711d55acd60fca157e5cdd7" + } + }, + { + "text": "Doesn't explain the essay well. Very \"strict\" with some attitude mixed in there. If you understand the material you are her best friend and if you're not, like she says, \"Go with God\". Meaning you are on your own. If you are someone who likes professor support she is not the one for you. But I liked her respected, chill, and \"go with the flow\" vibe", + "pos": 0.249, + "neu": 0.731, + "neg": 0.02, + "_id": { + "$oid": "6711d55acd60fca157e5cdd8" + } + }, + { + "text": "Extra Credit, shes funny as hell just strict and means business. All the bad reviews are lies, its not hard to get on her good side just show up and actually listen to what shes saying! Good semester just dont miss any work, which theres very little of anyway.", + "pos": 0.22, + "neu": 0.613, + "neg": 0.167, + "_id": { + "$oid": "6711d55acd60fca157e5cdd9" + } + }, + { + "text": "I hated this class. We had to go in person once every other week but the only time I'd look forward to going, is seeing the friends I made in that class. You will have to study from the first day of the semester, to the last and her midterm & final are not easy. However, she does offer extra credit SO TAKE ADVANTAGE OF THAT. No hw, study alot, & gl", + "pos": 0.175, + "neu": 0.73, + "neg": 0.096, + "_id": { + "$oid": "6711d55acd60fca157e5cdda" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55bcd60fca157e5cddc" + }, + "professor_name": "Samuel Magill", + "rating": 2.5, + "department": "Mathematics department", + "comments": [ + { + "text": "Get ready to self study the whole semester and not learn anything. Horrible professor but he's a nice guy. I would never take him ever again.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cddd" + } + }, + { + "text": "1) Doesn't include a syllabus, so we don't know how he grades our exams.\n\n2) Practice exams he gives do not help you in exams. In addition, he mostly does not give the answers on the practice exams.\n\n3) Lectures are not even that great, that you force yourself to self-study \n\n\nS-Tier professor :D", + "pos": 0.067, + "neu": 0.842, + "neg": 0.092, + "_id": { + "$oid": "6711d55bcd60fca157e5cdde" + } + }, + { + "text": "DO NOT TAKE THIS PROFESSORS CLASS. Terrible grader and unreliable. After taking the entire course I still don't understand how he grades. Loves to throw in curve balls on exams. Gets off-track and goes on rants. He is disorganized and sloppy with his work, tells you one thing, and then does the other. Grades last minute. Isn't transparent and lies", + "pos": 0.088, + "neu": 0.801, + "neg": 0.111, + "_id": { + "$oid": "6711d55bcd60fca157e5cddf" + } + }, + { + "text": "Magill is really sweet. BUT He is very chaotic and all over the place, he lacks a sense of organization. He doesn't answer emails On top of that midterms are horrible, he barely gives out practice exams and if he does they are the complete opposite of what you are going to see on the test I feel like I taught myself this whole semeste Dont take!!", + "pos": 0.095, + "neu": 0.778, + "neg": 0.126, + "_id": { + "$oid": "6711d55bcd60fca157e5cde0" + } + }, + { + "text": "never included a syllabus, talks about things not related to the course, never included topics in practice exams, grade tests in a weird way. do urself a favor and self study and never choose him as a professor", + "pos": 0.067, + "neu": 0.891, + "neg": 0.042, + "_id": { + "$oid": "6711d55bcd60fca157e5cde1" + } + }, + { + "text": "Great Person but honestly should be doing anything but being a college-level teacher.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cde2" + } + }, + { + "text": "Great person but he can't teach Plus theory heavy\nBe ready to teach yourself how to write proofs and argue", + "pos": 0.224, + "neu": 0.656, + "neg": 0.12, + "_id": { + "$oid": "6711d55bcd60fca157e5cde3" + } + }, + { + "text": "Nice guy but he can't teach. He doesn't even give a syllabus. Also never responds to emails, posts homework late, posts test prep that includes things we never learned in class 3 days before a test (or sometimes never). Watch professor Leonard on Youtube and just skip class.", + "pos": 0.039, + "neu": 0.961, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cde4" + } + }, + { + "text": "N/A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cde5" + } + }, + { + "text": "Professor Magill is the best MATH teacher at CCNY! He is so helpful and cares a lot about his students. He explains really well.", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cde6" + } + }, + { + "text": "Genuinely amazing and sweet guy, I never had a prof in CCNY like him. Lectures are easy to understand, barely had to study outside of class. Doing 5-10 of the suggested hw each section is enough (for me at least). I went to most OHs and they rly helped my understanding. He taught summer class without MUCH theory, which is all u rly need for calc 3!", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cde7" + } + }, + { + "text": "For calculus 3 in summer 2023 he was pretty fair grading wise, gave a lot of tests and kept the highest 3. The final was fair and he was decent at giving lectures. However he did not grade quizzes on time. His quizzes and tests were not too hard if you studied a bit and he frequently held office hours to help answer questions.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cde8" + } + }, + { + "text": "what do you want students to know about this professor?", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cde9" + } + }, + { + "text": "He curved some of the grades and was lenient. He was also very nice but still be prepared to practice a lot on your own.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cdea" + } + }, + { + "text": "Biggggggest L professor", + "pos": 0.651, + "neu": 0.349, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cdeb" + } + }, + { + "text": "Samuel Magill is one of the nicest professors you'll ever meet. His lectures are at times confusing and goes off on tangents quite often. His tests are harder than others. He is very disorganized.", + "pos": 0.083, + "neu": 0.803, + "neg": 0.114, + "_id": { + "$oid": "6711d55bcd60fca157e5cdec" + } + }, + { + "text": "Really nice human being. You really need to understand the material, and he curves on an individual basis. But, he's a disaster with organization. He lost our first exam, finding it weeks later out of state. Grades took weeks to be posted often days before the next exam. Smart, kind person that desperately needs to take a time management class.", + "pos": 0.134, + "neu": 0.709, + "neg": 0.157, + "_id": { + "$oid": "6711d55bcd60fca157e5cded" + } + }, + { + "text": "he is the nicest human being, but he can't teach. be ready to do a lot of research on your own. his explanations are confusing, and he is disorganized so take that class on your own risk.", + "pos": 0.047, + "neu": 0.718, + "neg": 0.235, + "_id": { + "$oid": "6711d55bcd60fca157e5cdee" + } + }, + { + "text": "Lets separate the man and the teaching. Samuel Magill is one of the most kind and honest man I have met but the man can't honestly teach. He will destroy your grade on the tests, he will do office hours late, and his teaching is confusing. If you are taking him, watch Professor Leonard, if you don't believe in religion, pray anyway to pass", + "pos": 0.1, + "neu": 0.764, + "neg": 0.136, + "_id": { + "$oid": "6711d55bcd60fca157e5cdef" + } + }, + { + "text": "Do not take this professor. He may be a kind person but his teaching skills and grading are horrendous. Save yourself the misery.", + "pos": 0.182, + "neu": 0.531, + "neg": 0.287, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55bcd60fca157e5cdf2" + }, + "professor_name": "Carlo Accetti", + "rating": 4.3, + "department": "Political Science department", + "comments": [ + { + "text": "Guy likes to hear himself talk. Wants class participation but shuts down any opinion and talks over/interrupts people. Grades fairly easy, 3 essays all together one being a group project so it wasn't too bad. Highlight of the class was the second half of the semester when we got to listen to guest speakers.", + "pos": 0.153, + "neu": 0.805, + "neg": 0.041, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf3" + } + }, + { + "text": "Best lecturer I have ever had, PERIOD. I look forward to listening to this man chat for an hour and fifteen minutes week after week. BE ON TIME and pay attention to do well on papers and you're good. He also offers extra credit", + "pos": 0.226, + "neu": 0.747, + "neg": 0.027, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf4" + } + }, + { + "text": "He expects you to read a lot!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf5" + } + }, + { + "text": "Vulgar language of a sexual nature. Not sure if he's going for \"cool guy\" professor, but it's gross. \n\nComplains about the state of students these days, from day one. Then spends the remaineder of the semester looking to prove himself right, often insulting the classroom, again with vulgarities.", + "pos": 0.028, + "neu": 0.742, + "neg": 0.23, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf6" + } + }, + { + "text": "Ok,If you are looking for a comment to convince you to take this class, let this be it. Carlo is the MOST well-spoken Professor. I am someone who has the attention span of a 2-year-old. With his class, I would catch myself listening attentively for a LONG TIME. He also is very lenient in grading.He just wants to see that ur using your thinking", + "pos": 0.066, + "neu": 0.934, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf7" + } + }, + { + "text": "Very strict with attendance(would kick students out even if there only 1 minute late) and while the final he made us write 2 essays(3k-4k words in total) I would avoid this class for the sake of your mental health", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf8" + } + }, + { + "text": "so full of himself and very inconsiderate of peoples time save yourself time and do not have him as your professor you will regret your whole life.", + "pos": 0.096, + "neu": 0.723, + "neg": 0.181, + "_id": { + "$oid": "6711d55bcd60fca157e5cdf9" + } + }, + { + "text": "He's actually a great professor. It was a hard class but very much worth it in the end.", + "pos": 0.247, + "neu": 0.697, + "neg": 0.056, + "_id": { + "$oid": "6711d55bcd60fca157e5cdfa" + } + }, + { + "text": "Professor Accetti is hilarious and an amazing lecturer. Sometimes his lectures can be boring but he goes beyond to explain how philosophers think. All you have to do is attend lecture and do the final and midterm. I recommend taking him over PHIL101!", + "pos": 0.161, + "neu": 0.805, + "neg": 0.034, + "_id": { + "$oid": "6711d55bcd60fca157e5cdfb" + } + }, + { + "text": "Hes very nice and respectful. He helps out a lot. He may seem scary at first but he's actually very sweet.", + "pos": 0.365, + "neu": 0.561, + "neg": 0.074, + "_id": { + "$oid": "6711d55bcd60fca157e5cdfc" + } + }, + { + "text": "Professor Accetti is a great professor. He is a tough grader but he pushes all his students to do well in the course and in life overall.", + "pos": 0.171, + "neu": 0.788, + "neg": 0.041, + "_id": { + "$oid": "6711d55bcd60fca157e5cdfd" + } + }, + { + "text": "Super great professor and is a generous grader! Be ready to pay attention in class and do the readings. He gives extra credit opportunities and two essays which are a 3,000 word minimum. Dont mind his language, hes actually very nice and entertaining!", + "pos": 0.422, + "neu": 0.555, + "neg": 0.023, + "_id": { + "$oid": "6711d55bcd60fca157e5cdfe" + } + }, + { + "text": "THE BEST TWO PAPERS ONLY !! don't sleep on this class his supper fun and you will gain lots of knowledge.", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5cdff" + } + }, + { + "text": "His lectures are excellent in getting to know how contemporary politics came to being in the first place. There are readings for every class but he explains them in such a way, you won't regret taking this class.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5ce00" + } + }, + { + "text": "At first, I was worried to take this class mainly because I saw the bad reviews. But the other students exaggerated a bit much. He is strict but at times he is very helpful and a great professor. You just have to pay close attention in class. He is such a wonderful professor and I would definitely take the class with the professor.", + "pos": 0.229, + "neu": 0.684, + "neg": 0.088, + "_id": { + "$oid": "6711d55bcd60fca157e5ce01" + } + }, + { + "text": "This class was especially enjoyable to take. Professor Accetti is very passionate and maintains a very good level of impartialness in his presentation of each man. His essays are lengthy but easy to write if you paid attention. Definitely a class worth taking", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5ce02" + } + }, + { + "text": "Most of the people upset about Prof. Accetti turn their cameras off and go on mute the whole class so they don't know what's flying. If you pay attention and participate once in a while you'll do really well. There were only two papers and he gave extra credit equivalent to a one full letter grade on your transcript (B to A). Definitely take him!!", + "pos": 0.115, + "neu": 0.83, + "neg": 0.055, + "_id": { + "$oid": "6711d55bcd60fca157e5ce03" + } + }, + { + "text": "Prof. Accetti is one of the best prof. I have had in CCNY. We only had a midterm and I final. You have to write a lot for both but those are the only two things you have to do there is no quizzes or exams. He is very passionate about his work, and that made the class interesting This is an easy A class. He is not a hard grader which makes him great", + "pos": 0.238, + "neu": 0.732, + "neg": 0.03, + "_id": { + "$oid": "6711d55bcd60fca157e5ce04" + } + }, + { + "text": "Professor Accetti is one of the best professors at CCNY! He explains the material extremely well and will make you look forward to the course. Even during the pandemic this professor makes the class extremely engaging. To be honest this was the only class that i can say i learned something. TAKE HIM IF YOU HAVE THE CHANCE! YOU WONT REGRET IT!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d55bcd60fca157e5ce05" + } + }, + { + "text": "Professor Accetti was a really great teacher this semester. Teaching and learning online is very hard and he did a great job making it as easy as possible for us. I would highly recommend taking him and this class!!", + "pos": 0.293, + "neu": 0.674, + "neg": 0.034, + "_id": { + "$oid": "6711d55bcd60fca157e5ce06" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55ccd60fca157e5ce08" + }, + "professor_name": "Mustapha Camara", + "rating": 4.6, + "department": "Economics department", + "comments": [ + { + "text": "Tough but rewarding class covering basics like 3 statement models, DCF, and LBO. Expect to spend a lot of time in Excel. Four equally graded assignments with extra credit options and a grade curve. Professor is understanding but sometimes hard to reach. Be ready to put in the effort to learn a lot.", + "pos": 0.291, + "neu": 0.667, + "neg": 0.042, + "_id": { + "$oid": "6711d55ccd60fca157e5ce09" + } + }, + { + "text": "Amazing Human Being!!!\nAn Inspirational Hero!!!\nMust take him if you get a chance and you will consider yourself lucky.", + "pos": 0.526, + "neu": 0.474, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce0a" + } + }, + { + "text": "Good professor and very knowledgeable on topics that we were learning. Graded by a few things such as homeworks, exams and a few quiz which were not bad at all. If you attend his lecture this class should be an easy A for you", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce0b" + } + }, + { + "text": "I took Professor Camara twice in the winter for two different economic classes. For the amount of learning done in a month, he's truly amazing. Literally always accessible to help and quick to reply on slack with any questions/comments you may have.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce0c" + } + }, + { + "text": "I had him for winter and he was very good. Always accessible to to help and reply very quick. His slack channel is very helpful and interactive. His lectures are very clear and he give very good examples. Give enough review for tests. Very caring and understanding. He is definitely the guy for economics.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce0d" + } + }, + { + "text": "I took him for winter session online & he was terrible at communicating. Kept changing around due dates last minute and was super unresponsive. I sent him 3 emails and about 10 direct messages with questions on topics I needed help on. I got a late response to probably 2 of those. He made the class unnecessarily stressful.", + "pos": 0.099, + "neu": 0.806, + "neg": 0.096, + "_id": { + "$oid": "6711d55ccd60fca157e5ce0e" + } + }, + { + "text": "He is was very helpful, hes not here to failed you. He doesnt get angry when you ask questions neither when you dont know the answer. You can get an easy A . just do the 3 homework and 3 exam and you are good.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce0f" + } + }, + { + "text": "One of the best Professors. A class you can easily get an A+. Lectures are great. He really cares about the success of the students.", + "pos": 0.469, + "neu": 0.531, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce10" + } + }, + { + "text": "He is an amazing professor who cares about his students and will help you pass. If you fail it really is your fault because all the material needed for the exam, quizzes, and homework is covered in class.", + "pos": 0.194, + "neu": 0.674, + "neg": 0.132, + "_id": { + "$oid": "6711d55ccd60fca157e5ce11" + } + }, + { + "text": "Professor Camara is a very good professor who is clearly the best for economics. He take his time to clearly explain his lectures, give us real world examples and create the environment for more discussions outside class, using slack. He is very responsive to students. He gives lot of review questions before any test. Great professor.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce12" + } + }, + { + "text": "Prof. Camara is the prof you will want to have. He give his students very clear details about the economy by doing both real world examples and visiting economic websites. He solve many example questions in class to get you ready for quizzes and exams. Very good professor youll want to have.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce13" + } + }, + { + "text": "he is accent will make failed. is highly difficult to understand him in writing and verbal. dont take him if you dont have to. he is a good person but a terrible professor.", + "pos": 0.05, + "neu": 0.741, + "neg": 0.209, + "_id": { + "$oid": "6711d55ccd60fca157e5ce14" + } + }, + { + "text": "His class is really interesting. He will give his students quizzes and homework that will help us prepare for exams, he also discuss many test your understanding questions in class that help us understand his lectures. He share regular economic articles for discussion in the class slack channel. Very accessible outside class, nice professor.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce15" + } + }, + { + "text": "He provide so many class examples and review questions that really help his students understand the materials and do well in exams and homework. He is very caring and always trying to help students to do better in his class. I will surely take him again. Nice guy", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce16" + } + }, + { + "text": "Worst professor I have ever had. He constantly missed his own deadlines and did things that would get any person fired from a job. We got so little feedback when we practically begged for it (including more homework!). Exams would have grades with no feedback. He wastes so much time in class talking about irrelevant things like \"theory\".", + "pos": 0.037, + "neu": 0.781, + "neg": 0.183, + "_id": { + "$oid": "6711d55ccd60fca157e5ce17" + } + }, + { + "text": "Such a good professor! This class in general isn't easy and he does a great way navigating students to do well! He really provides great study material and he is super caring.", + "pos": 0.436, + "neu": 0.515, + "neg": 0.05, + "_id": { + "$oid": "6711d55ccd60fca157e5ce18" + } + }, + { + "text": "Intermediate microeconomic is not an easy class but professor Camara makes it like a positive challenge, the lectures were heavy because it was a winter session but Prof. Camara lectures are very clear and detailed, he was always available to help with any questions we have, also engage the class via Slack channel. A very smart and good professor", + "pos": 0.354, + "neu": 0.625, + "neg": 0.021, + "_id": { + "$oid": "6711d55ccd60fca157e5ce19" + } + }, + { + "text": "A GEM!!! he made this winter class easier then it was meant to. one day to one semester week so the lectures are pretty heavy. if you stay on top of the syllabus and meet deadlines you'll be fine. there were four quizzes (1 optional), 2 hw assignments, midterm, final exam & extra credit offered. He's available via slack & replied to any confusion", + "pos": 0.178, + "neu": 0.792, + "neg": 0.03, + "_id": { + "$oid": "6711d55ccd60fca157e5ce1a" + } + }, + { + "text": "Prof Camara cares a lot for students, wanting them to do well. Class is easy and very doable, even with the pandemic. His lectures are easy to understand, however his accent is tough to follow. The material is not hard and is easy to get from lecture notes. Tests and homework are not bad at all.", + "pos": 0.266, + "neu": 0.712, + "neg": 0.022, + "_id": { + "$oid": "6711d55ccd60fca157e5ce1b" + } + }, + { + "text": "I have trouble understanding him verbally so it's hard to maintain focus..", + "pos": 0.0, + "neu": 0.695, + "neg": 0.305, + "_id": { + "$oid": "6711d55ccd60fca157e5ce1c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55ccd60fca157e5ce1e" + }, + "professor_name": "Silvia Burunat", + "rating": 2.2, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "I beg everyone at CCNY who is not truly fluent in spanish. DO NOT TAKE THIS PROFESSOR. She is impossible to work with, extremely unprofessional, forgets things she's said to your detriment, has no rubric for any of her work and has no sound reasoning any of her grading. CCNY is truly do their students a disservice by keeping her around.", + "pos": 0.042, + "neu": 0.808, + "neg": 0.15, + "_id": { + "$oid": "6711d55ccd60fca157e5ce1f" + } + }, + { + "text": "In my honest opinion, I don't think Professor Burunat is as horrible as everyone makes her out to be. She has high expectations and does not let her guard down for anyone. If you want to pass, make sure you arrive on time to every class, be respectful to her, and do every single quiz and test. If I was able to pass, anyone can. Trust!", + "pos": 0.175, + "neu": 0.779, + "neg": 0.045, + "_id": { + "$oid": "6711d55ccd60fca157e5ce20" + } + }, + { + "text": "Do yourself a favor and don't take her. The entire class failed the exam & instead of trying to find what was wrong and come up with solutions she lectured us about not studying enough, and gave us another quiz the very next day. She wrote the book & she does use it. The book is clear, she is the one who will confused you. Dont take her.", + "pos": 0.09, + "neu": 0.798, + "neg": 0.112, + "_id": { + "$oid": "6711d55ccd60fca157e5ce21" + } + }, + { + "text": "I was assigned this class after taking the placement test. I know a little bit of Spanish, so I came in with the impression that she would be a little more helpful. I was wrong and the class is challenging with an emphasis on grammar. She solely uses her textbook, so expect to buy it. She calls on people and uses it as attendance.", + "pos": 0.091, + "neu": 0.864, + "neg": 0.045, + "_id": { + "$oid": "6711d55ccd60fca157e5ce22" + } + }, + { + "text": "The WORST teacher I have had. She was so demanding, unwilling to work with you. I sent her work on the 7th, and she got back to me the 20th saying she couldn't open it. SO I reply to her on the 21st saying that I was sorry & if I could send it again bc I WAS ABLE to open it and my 3 pages of work was there and she said no because it was late!", + "pos": 0.0, + "neu": 0.869, + "neg": 0.131, + "_id": { + "$oid": "6711d55ccd60fca157e5ce23" + } + }, + { + "text": "THE WORST!! stay far away from this professor, she made the textbook she is assigning for her class, so best believe you cannot correct her. she is the most rude professor i have ever met at ccny. If you want to fail take this class. she has favorites as well.\n\nworst professor ever.", + "pos": 0.159, + "neu": 0.617, + "neg": 0.224, + "_id": { + "$oid": "6711d55ccd60fca157e5ce24" + } + }, + { + "text": "She made the textbook she teaches from and will take offense if you dont understand. One of the most annoying professors she sounds like the judge from caso cerrado. Keep documents of all your work because shes very forgetful and stubborn. She picks favorites and will make up instructions after a test is done if her favs did it a specific way.", + "pos": 0.074, + "neu": 0.782, + "neg": 0.144, + "_id": { + "$oid": "6711d55ccd60fca157e5ce25" + } + }, + { + "text": "This is one of the worst professors ever, shes mean. Ever since COVID everything in my life has been harder and she did not help. Im okay but a lot of work but she is not understanding that I have 5 other classes. When I tried to explain my situation she was rude. Shes egotistic, nonsensical DO NOT TAKE HER.", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d55ccd60fca157e5ce26" + } + }, + { + "text": "Tough grader. No extra credit work. Very grouchy. Lots of quizzes. Nuff' said.", + "pos": 0.0, + "neu": 0.498, + "neg": 0.502, + "_id": { + "$oid": "6711d55ccd60fca157e5ce27" + } + }, + { + "text": "Warning do not take this class. I am really thinking of reporting this professor. She is disgustingly disrespectful. scorns and yells at the people who already speak some spanish for getting things wrong. Gets personal when you ask questions . her grading makes no sense! she is horrible at technology. stay away she will fail you for no good reason", + "pos": 0.0, + "neu": 0.713, + "neg": 0.287, + "_id": { + "$oid": "6711d55ccd60fca157e5ce28" + } + }, + { + "text": "the most disrespectful and unprofessional professor at CCNY, she is so rude in person and by email, she doesn't act as a professor, plus this class is online she don't know nothing about technology, she don't know how to open a words documents and she will be rude about it. CCNY should have a new professor for this class.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d55ccd60fca157e5ce29" + } + }, + { + "text": "The worst professor that I've ever had. She's incredibly rude and her grading system makes zero sense. Save yourself the trouble and take someone else!!!! don't torture yourself with this professor.", + "pos": 0.146, + "neu": 0.596, + "neg": 0.258, + "_id": { + "$oid": "6711d55ccd60fca157e5ce2a" + } + }, + { + "text": "So disrespectful Professor she doesnt explain you what are you doing wrong and if you said something she take it personal be careful what you said and how you said it because she take it personal", + "pos": 0.041, + "neu": 0.879, + "neg": 0.08, + "_id": { + "$oid": "6711d55ccd60fca157e5ce2b" + } + }, + { + "text": "So rude. Many dont know Spanish like her and she expects us to know what to do and starts using disrespectful terms against the students. No reason to call people hard headed", + "pos": 0.0, + "neu": 0.757, + "neg": 0.243, + "_id": { + "$oid": "6711d55ccd60fca157e5ce2c" + } + }, + { + "text": "Pros: Extra Credit, Grade based on exams + a few assignments Cons: All the cons you read in these reviews are true. If you enjoy stress & 2020 wasn't stressful enough for you, go ahead & take her. You've been warned.", + "pos": 0.221, + "neu": 0.684, + "neg": 0.096, + "_id": { + "$oid": "6711d55ccd60fca157e5ce2d" + } + }, + { + "text": "Professor Burunat is tough. She does not play around but I think it's for the better. She cares that her students learn the language correctly. If you ever go to her office hours, please do so humbly. She is definitely willing to help but don't take her personality and the way she speaks to heart. This is just how she is. She really is a great .", + "pos": 0.329, + "neu": 0.641, + "neg": 0.031, + "_id": { + "$oid": "6711d55ccd60fca157e5ce2e" + } + }, + { + "text": "Professor Burunat is amazing, make sure you are present and study what is given because everything she goes over will be on the exams and quizzes. She's a tough grader so make sure you don't miss any details I would take this class again and again, such a fun class", + "pos": 0.228, + "neu": 0.747, + "neg": 0.025, + "_id": { + "$oid": "6711d55ccd60fca157e5ce2f" + } + }, + { + "text": "Professor Burunat will make you work for your grade, but honestly this is the professor you want to take if you want to learn the linguistics of the Spanish language. She is very dedicated to her work. She will give you a lot of opportunities such as tutoring and a review in class. It up to you to take advantage of those opportunities. Study!!!", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d55ccd60fca157e5ce30" + } + }, + { + "text": "This is my first time writing a review about Professor Burunat. I have taken a few classes with her in the past. Her only problem is this : \" I am right because of this ...\" She doesn't support her answers with FACTS. This is the last time I am taking a class with her. She is an incredible human being, but as a teacher... I am sorry", + "pos": 0.0, + "neu": 0.93, + "neg": 0.07, + "_id": { + "$oid": "6711d55ccd60fca157e5ce31" + } + }, + { + "text": "Avoid taking this professor!! You are expected to know how to write and speak fluently already. She doesn't except anything if it is not in pen! You also are not allowed to have an opinion in her class, whatever she says is \"right.\" She gives a quiz and a composition to write every other day if not everyday. She gives 3 exams, including the final.", + "pos": 0.0, + "neu": 0.954, + "neg": 0.046, + "_id": { + "$oid": "6711d55ccd60fca157e5ce32" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55dcd60fca157e5ce34" + }, + "professor_name": "Dario Cardenas", + "rating": 3.8, + "department": "Mathematics department", + "comments": [ + { + "text": "No homework.. Review textbook that he recommends. 4 quizzes. 4 exams. 1 final. He drops the lowest quiz and exam. Quizzes are 7 questions. Tests are 10 questions. STUDY STUDY STUDY!! Very kind professor but you should really study! Recommend taking this professor.", + "pos": 0.168, + "neu": 0.764, + "neg": 0.068, + "_id": { + "$oid": "6711d55dcd60fca157e5ce35" + } + }, + { + "text": "Best Math professor I ever had. I am horrible at math, always have been. But I see myself struggling 20x less than in all my other math classes. I always look forward to his class. He makes it so enjoyable, and I finally see myself understanding the content. He just explains things so clearly and makes sure we know what content is important.", + "pos": 0.221, + "neu": 0.704, + "neg": 0.075, + "_id": { + "$oid": "6711d55dcd60fca157e5ce36" + } + }, + { + "text": "Oof, what can I say? This professor is bittersweet. He's actually a really nice person and he knows his stuff but he shouldn't be teaching. We had five exams worth 60% and one final worth 40%. The exams contained nothing he taught in class. He breezes through the lecture. He ended up curving everyone's grade because we were all suffering miserably.", + "pos": 0.095, + "neu": 0.773, + "neg": 0.133, + "_id": { + "$oid": "6711d55dcd60fca157e5ce37" + } + }, + { + "text": "He is one of the best caring professors ever. He is so nice, and he knows what he is doing. definitely, I hope that I can have him again he is a gem. YOU need to study hard for the class but this is what should be the normal in every math classes.", + "pos": 0.183, + "neu": 0.797, + "neg": 0.02, + "_id": { + "$oid": "6711d55dcd60fca157e5ce38" + } + }, + { + "text": "Highly don't recommend this professor. He can't be understood sometimes due to his accent and his explanations aren't t good. He only describes what he does but doesn't explain why. Quizzes are 3 questions and tests are 10 questions. Drops the lowest quiz and test and if you do all of his hw, you will get 5 points towards your term average grade.", + "pos": 0.0, + "neu": 0.898, + "neg": 0.102, + "_id": { + "$oid": "6711d55dcd60fca157e5ce39" + } + }, + { + "text": "Took him in the fall of 2019, very good professor who notes really helped for the quizzes we had. Teached the material very well in person, just do the hw, study the notes he writes, and you'll pass the class.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce3a" + } + }, + { + "text": "Hes really good, the accent is heavy but he knows what hes doing, he knows how to teach", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce3b" + } + }, + { + "text": "I took the class online, if you have a hard time understanding or following the pace of the class i recommend watching the recorded lectures . I did well on two exams and did rrly bad on the final but passes with a B. Also drops the lowest grade", + "pos": 0.061, + "neu": 0.813, + "neg": 0.127, + "_id": { + "$oid": "6711d55dcd60fca157e5ce3c" + } + }, + { + "text": "He hardly gives any exam grades and I had a tough time taking him. You have to catch his accent and you can't learn just from his notes, you have to use videos to understand. Very stressful taking him. If you have other professor besides him, take the other professor because you not going to learn a lot from him.", + "pos": 0.0, + "neu": 0.919, + "neg": 0.081, + "_id": { + "$oid": "6711d55dcd60fca157e5ce3d" + } + }, + { + "text": "I think that it is better for him to teach in-person rather than Online. It is fair to say that it is easy to use a pointer to point something at the screen, but he can't even do it. Very inconsiderate, won't even allow us to use the mic to ask questions, 7 of 10 will ignore your question when he got the chance to read the class chat. Save yourself", + "pos": 0.145, + "neu": 0.742, + "neg": 0.112, + "_id": { + "$oid": "6711d55dcd60fca157e5ce3e" + } + }, + { + "text": "Just wired overall. Didn't understand anything that was taught by him. Thanks to Khan Academy and my hard work for the grade I got. Ignore him if you want to learn Calculus.", + "pos": 0.116, + "neu": 0.776, + "neg": 0.108, + "_id": { + "$oid": "6711d55dcd60fca157e5ce3f" + } + }, + { + "text": "Taking his class during the pandemic was a huge hassle. Always he will give you examples to problems but never goes the long way to explain the problem. He basically gives you shortcuts all the damn time.", + "pos": 0.038, + "neu": 0.757, + "neg": 0.205, + "_id": { + "$oid": "6711d55dcd60fca157e5ce40" + } + }, + { + "text": "He will make you work for this class. Do not be surprised when taking him. Since taking it during a pandemic, he was very rushed and never let the students do the problems. Great for examples, but always take the shortcut of all problems. SInce he left at the end of the semester due to his Illness, another professor Doris Pichardo covered the class", + "pos": 0.035, + "neu": 0.821, + "neg": 0.143, + "_id": { + "$oid": "6711d55dcd60fca157e5ce41" + } + }, + { + "text": "Better than most professors in the math department. Good attitude and lecturer. Goes very fast during lecture. Grades kinda harshly. Here's a warning: Dude's not an easy A, and you could easily fail his course if you are not going to study. Good luck if you plan on taking him.", + "pos": 0.219, + "neu": 0.652, + "neg": 0.129, + "_id": { + "$oid": "6711d55dcd60fca157e5ce42" + } + }, + { + "text": "Theres 3 quizzes and 3 tests. 1 Final, no midterm. He gives weekly hw (hes very lenient on hw lateness). He gives review sheets for tests but for quizzes you have to study on your own. Hes a good professor, if you dont understand something just ask him. He goes a bit fast but will explain if you ask him.", + "pos": 0.086, + "neu": 0.889, + "neg": 0.025, + "_id": { + "$oid": "6711d55dcd60fca157e5ce43" + } + }, + { + "text": "Memorizing is important to him, his exams are textbook and past final questions study that and you are good. It is alot of homework because of MATLAB and Webwrok and its required for any section you are in.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce44" + } + }, + { + "text": "Nice guy and a good lecturer. From his notes and the textbook, you will learn fine. However, goes way too fast, test are nothing like the final/in class questions, isn't not at all communicative, and can't really answer questions. Always stressed over, not if I knew the material, but if the test would be similar to what we learned. Do not take.", + "pos": 0.08, + "neu": 0.87, + "neg": 0.05, + "_id": { + "$oid": "6711d55dcd60fca157e5ce45" + } + }, + { + "text": "He didn't give any homework but does give exams based on the textbook questions. As long as you study you should be fine. Expect to work for your grade. He's great and will answer any question you have. Very well respected and gives one extra credit assignment to add up to 20 points to a fina", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce46" + } + }, + { + "text": "He goes way too fast. Dont be fooled by his high rating. He gives so much hw and exams cover so much material. This is made even worse by his unnecessarily fast pace. His exams are nothing like dept. final and grades way too harsh and gives 50 mins only with too many questions that are confusing. No curve and theres a matlab final too. Dont take", + "pos": 0.029, + "neu": 0.809, + "neg": 0.162, + "_id": { + "$oid": "6711d55dcd60fca157e5ce47" + } + }, + { + "text": "Calc 2 is hard as heck. I had to retake this class. In order to do well on tests and quizzes you really have to study b/c its only 3 to 4 questions each. Go to lecture,Review notes,memorize, answer problems w/o looking at answers by writing,rinse and repeat. HIGHLY RECOMEND LOOKING AT MATERIALB4 COURSE STARTSkhanacademyCalc2 ignore diff equ&series.", + "pos": 0.033, + "neu": 0.861, + "neg": 0.105, + "_id": { + "$oid": "6711d55dcd60fca157e5ce48" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55dcd60fca157e5ce4a" + }, + "professor_name": "Alina Shevorykin", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Finally I passed the class. Prof. Shevorykin made the class so clear. She is so fair in grading. Saturdays are hard, but it was worth it.", + "pos": 0.22, + "neu": 0.74, + "neg": 0.04, + "_id": { + "$oid": "6711d55dcd60fca157e5ce4b" + } + }, + { + "text": "I finally passed statistics. She is the only one who helped me get this math. It is quite easy. Departamental final is hard. Take really good notes and it will make all the difference. Prof drops 4 lowest HW, 2 lowest test grades, easy class the way it is set up.", + "pos": 0.153, + "neu": 0.739, + "neg": 0.108, + "_id": { + "$oid": "6711d55dcd60fca157e5ce4c" + } + }, + { + "text": "Prof. Alina explains everything in her lectures. Drops 4 lowest homeworks and test grade. Easy A if you pay attention.", + "pos": 0.121, + "neu": 0.711, + "neg": 0.167, + "_id": { + "$oid": "6711d55dcd60fca157e5ce4d" + } + }, + { + "text": "Alina is awesome ! She made statistics super fun and interesting. Her class is not hard at all. Just attend classes because the notes are important for the exams. Do the homework, which are also super helpful for the tests and try to participate. She is an easy grader, and gives many opportunities to get an A. TAKE HER !", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce4e" + } + }, + { + "text": "Professor Alina is great!! She explains lessons in depth and goes by step by step. she puts a lot of effort to make us succeed and she drops test and homework. she also give 3 tries for each homework which is great!! She's truly the best!!!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce4f" + } + }, + { + "text": "She is the best, take her! You will never regret it", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce50" + } + }, + { + "text": "I am literally god-awful at math but prof. Shevorykin was incredibly helpful and is very reasonable with her grading criteria. She drops a few of your lowest homework and test scores, and homeworks have 3 attempts for you to get it correct. Actual GPA life-saver", + "pos": 0.082, + "neu": 0.851, + "neg": 0.067, + "_id": { + "$oid": "6711d55dcd60fca157e5ce51" + } + }, + { + "text": "Thank god to prof. Alina. The only reasonable prof. I've struggled with math all my life, but she makes this class easy to get. It is a math class, so if you like me and hate any math, ask for help, she will help you.", + "pos": 0.29, + "neu": 0.6, + "neg": 0.109, + "_id": { + "$oid": "6711d55dcd60fca157e5ce52" + } + }, + { + "text": "Participate, take notes and do hws. Easy A. Hws have 3 attempts and she drops 4 of them. Half of tests are dropped too.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce53" + } + }, + { + "text": "She is very fair and helps understand what is needed to pass the class. Stats has a lot of material, so take notes during lectures and you will be fine.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce54" + } + }, + { + "text": "Stat is hard, but professor Shevorykin makes it easy. She drops 4 homeworks and 2 tests. Easy class if you pay attention and take notes. All grades are available from day 1, so you know how you are doing in class.", + "pos": 0.162, + "neu": 0.779, + "neg": 0.059, + "_id": { + "$oid": "6711d55dcd60fca157e5ce55" + } + }, + { + "text": "She teaches very well, but in my opinion, it all depends on your effort to pass the class.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce56" + } + }, + { + "text": "If you're not taking professor Shevorykin for stats then what are you doing? She clearly wants everyone to succeed and cares a lot about her students. She makes stats to easy to understand and will explain things thoroughly. Just take her and thank me later.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce57" + } + }, + { + "text": "This professor was very easy going and gave us many options when it came to the homework, lab, and tests. She was very understanding and would often give us extensions or move class online", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce58" + } + }, + { + "text": "PROFESSOR ALINA IS THE BEST PROFESSOR PERIOD, IF YOU WANT A PROFESSOR WHO TRULY CARES FOR HER STUDENTS SUCCESS TAKE HER CLASS, I STRUGGLE WITH MATH MY WHOLE LIFE SHE MADE IT EASIER FOR ME TO UNDERSTAND!!!! GPA BOOSTER JUST PUT IN THE WORK !! THANK YOU FOR EVERYTHING PROFESSOR ALINA !!!!", + "pos": 0.362, + "neu": 0.597, + "neg": 0.041, + "_id": { + "$oid": "6711d55dcd60fca157e5ce59" + } + }, + { + "text": "If you have to take psy 215 please take it with Professor Alina Shevorykin. She is amazing!!!! She is the best Professor I have ever met at CCNY. She genuinely wants you to do well in her class. As long as you put the effort in and she sees that you will do great!", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce5a" + } + }, + { + "text": "Thank god for this prof. I finally passed the stat class. Just pay attention and participate.", + "pos": 0.242, + "neu": 0.684, + "neg": 0.074, + "_id": { + "$oid": "6711d55dcd60fca157e5ce5b" + } + }, + { + "text": "Professor Shevorykin was great during the accelerated summer course. The material is easy in the beginning, then it gets very difficult. She gives 3 opportunities for extra credit AND your participation becomes extra credit at the end. She really wants everyone to do well and will answer any question you have in class. Highly skilled educator.", + "pos": 0.246, + "neu": 0.713, + "neg": 0.041, + "_id": { + "$oid": "6711d55dcd60fca157e5ce5c" + } + }, + { + "text": "Outstanding class. If you want to learn about actual therapy, take this class!", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d55dcd60fca157e5ce5d" + } + }, + { + "text": "She was very good at teaching the material. All the homework was based on the upcoming tests. I wouldn't advise missing a class cause catching up would be difficult. Also, make sure you read ahead because the readings are based on her lectures.", + "pos": 0.151, + "neu": 0.798, + "neg": 0.051, + "_id": { + "$oid": "6711d55dcd60fca157e5ce5e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55ecd60fca157e5ce60" + }, + "professor_name": "Peter Brass", + "rating": 3.3, + "department": "Computer Science department", + "comments": [ + { + "text": "During COVID times, this professor will not give real lectures. He sends text on blackboard of what the lecture is instead of actually teaching. Also he will not give feedback on your exams. If you are paying money, this class is not worthy of your monetary investment because you can learn more by watching videos online.", + "pos": 0.0, + "neu": 0.958, + "neg": 0.042, + "_id": { + "$oid": "6711d55ecd60fca157e5ce61" + } + }, + { + "text": "4 homework, 1 midterm, 1 final. His homework is quite challenging, start early. Make sure you study every lecture he posted since exams are based on them, and submit every homework. Its worth to take him.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d55ecd60fca157e5ce62" + } + }, + { + "text": "This semester has 4 projects, and the grading criteria are very clear. You could learn a lot from this class. You will be familiar with the fundamental algorithm, C/C++ coding skills. I suggest you follow the course closely, start to do homework earlier, and submit the homework on time.", + "pos": 0.057, + "neu": 0.943, + "neg": 0.0, + "_id": { + "$oid": "6711d55ecd60fca157e5ce63" + } + }, + { + "text": "No tests, 4 projects. The assignments don't just teach you course material, they induce a way of thinking. The class is time consuming, you can't just google your way out. Spend a lot of time reading and experimenting with code, the reward is worth the time. PS: any leetcode problem becomes a joke:)", + "pos": 0.129, + "neu": 0.791, + "neg": 0.081, + "_id": { + "$oid": "6711d55ecd60fca157e5ce64" + } + }, + { + "text": "Very disrespectful prof I've ever meet. His codes are way too messy for you to understand. And you are forced to use his codes for assignments. Gets irritated because students didnt understand the material when clearly he never even ask if the class understood the material or not.", + "pos": 0.049, + "neu": 0.797, + "neg": 0.154, + "_id": { + "$oid": "6711d55ecd60fca157e5ce65" + } + }, + { + "text": "Not bad prof but Im pretty sure barely anyone understand what the man would say when he started lecturing. His homeworks are helpful for learning however and his method of grading is either you get it completely correct or wrong. There is no partial credit. 1 hw D, 2 Hw c, 3 hw B, 4 hw A. exams around 8 questions, 4 correct 6 b, 8 a.", + "pos": 0.155, + "neu": 0.723, + "neg": 0.122, + "_id": { + "$oid": "6711d55ecd60fca157e5ce66" + } + }, + { + "text": "The lectures are very confusing. He explains the algorithm by writing mathematical formulas on the board that nobody understands. He fails to explain the concepts in a way that is easy to understand. The Homeworks are very difficult. The class is very math-heavy. 3 Grades, midterm, final, and HW. He takes the median. Be ready to teach yourself", + "pos": 0.082, + "neu": 0.801, + "neg": 0.118, + "_id": { + "$oid": "6711d55ecd60fca157e5ce67" + } + }, + { + "text": "This professor is the best. I wish CUNY had more lecturers like Peter Brass. His lectures are inspirational. Most of the students are not concentrated during his classes and then complain. This class is advanced algorithms, and he explains on details implementations of most famous and most useful algorithms. A good student will always love P. Brass", + "pos": 0.334, + "neu": 0.633, + "neg": 0.033, + "_id": { + "$oid": "6711d55ecd60fca157e5ce68" + } + }, + { + "text": "Professor Brass isnt the best professor when it comes to discrete math. I would honestly avoid him if possible but he is better then Troger and Vuilus from what my friends say. If youTake him and you will suffer. His exams are very similar to previous tests and don't study the concept,study using previous tests(if you want to do well)", + "pos": 0.189, + "neu": 0.697, + "neg": 0.114, + "_id": { + "$oid": "6711d55ecd60fca157e5ce69" + } + }, + { + "text": "Not recommended at all. Tough grader and really hard projects.", + "pos": 0.0, + "neu": 0.594, + "neg": 0.406, + "_id": { + "$oid": "6711d55ecd60fca157e5ce6a" + } + }, + { + "text": "This guy teaches but never understood what he was teaching. He never explained things clearly. Never asks student if they understood or not. Grading Policy is super clear: 3 tasks; Test 1 4 Programming Assignments Test 2. Takes median of those grades. Kindda easy if you know ur stuff but not a great professor. CHANGE IF POSSIBLE.", + "pos": 0.175, + "neu": 0.723, + "neg": 0.102, + "_id": { + "$oid": "6711d55ecd60fca157e5ce6b" + } + }, + { + "text": "Horrible teacher. Tests are open book and homework requires a lot of google and chegg. He takes the highest and lowest of all your work and drops them. It's considerably hard to pass since he also does not give partial credit for tests or homework. Told me he doesn't care what we rate him since he was ten year.", + "pos": 0.0, + "neu": 0.811, + "neg": 0.189, + "_id": { + "$oid": "6711d55ecd60fca157e5ce6c" + } + }, + { + "text": "Peter Brass does not even bother asking the class if they understand the material or not. All he does every lecture is just talk and writes, he never stop to ask if you guys understand the material. His grading is really weird and I hate it, he drops the lowest and highest grade out of the 3 category, homework, midterm and final. Avoid if you can!", + "pos": 0.053, + "neu": 0.803, + "neg": 0.144, + "_id": { + "$oid": "6711d55ecd60fca157e5ce6d" + } + }, + { + "text": "No attendance. Boring lectures. Tests are open book. He gives a review test which is very similar to the real test. There will be four assignments, one midterm and one final. He will drop highest and lowest grade. So for example, if you got an A on the midterm, C on all your assignments, and B on your final, then your class grade will be a B.", + "pos": 0.027, + "neu": 0.877, + "neg": 0.096, + "_id": { + "$oid": "6711d55ecd60fca157e5ce6e" + } + }, + { + "text": "His classes are impossible to fail. Basic knowledge of data structures and c++ is all that is needed to get an easy B.", + "pos": 0.106, + "neu": 0.766, + "neg": 0.128, + "_id": { + "$oid": "6711d55ecd60fca157e5ce6f" + } + }, + { + "text": "Fun lectures, not much work. Everything is given in the lecture and there aren't many surprises. Take him if you have way more challenging classes to worry about.", + "pos": 0.154, + "neu": 0.711, + "neg": 0.135, + "_id": { + "$oid": "6711d55ecd60fca157e5ce70" + } + }, + { + "text": "Tells fun stories in class, and summarizes the textbook very well. Homeworks are always fun algorithms which require a bit of thought. Exams are based on lectures, just show up, take notes, and do the practice questions.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d55ecd60fca157e5ce71" + } + }, + { + "text": "Easy open book exams, based entirely on lectures. HW is also easy, everything required to finish it is given in the lecture or easily found on wikipedia/google. HW solutions are 50 lines of C++ code. Spent only a day studying for each exam, and each homework took 3-10 hours to code. Easy A, anyone who says otherwise doesn't belong in CS/CE.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d55ecd60fca157e5ce72" + } + }, + { + "text": "Professor Brass is one of the best Professors I've had. His grading policy is to drop the highest and lowest grade. Hence he takes the middle grade. His exams are open book, and he prepares you for the midterms a week in advance. His lectures are clear and simple WARNING: his labs are challenging. But they help a lot for coding practice. Take him", + "pos": 0.129, + "neu": 0.795, + "neg": 0.076, + "_id": { + "$oid": "6711d55ecd60fca157e5ce73" + } + }, + { + "text": "He is the men and best for low level CS student.", + "pos": 0.275, + "neu": 0.588, + "neg": 0.137, + "_id": { + "$oid": "6711d55ecd60fca157e5ce74" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55ecd60fca157e5ce76" + }, + "professor_name": "Doris Barkin", + "rating": 2.7, + "department": "English department", + "comments": [ + { + "text": "Have her for world humanities and I like her. Strict with attendance. I feel like I learned a lot regarding how I write in her class. She's big on participation. I hate group projects and there are two in the class. Probably the only thing I dislike. She's very nice and caring especially if you show you are trying in the class.", + "pos": 0.156, + "neu": 0.758, + "neg": 0.085, + "_id": { + "$oid": "6711d55ecd60fca157e5ce77" + } + }, + { + "text": "Shes very strict about attendance, you arent even allowed to be sick without her threatening to fail you for it. She gave way too much work at one time, Its not a lot if she would just spread it out but I found it very overwhelming to have to do two group projects and a 7 page paper all at once.", + "pos": 0.029, + "neu": 0.902, + "neg": 0.068, + "_id": { + "$oid": "6711d55ecd60fca157e5ce78" + } + }, + { + "text": "If you want to genuinely improve your writing she provides great feedback and allows you enough time to work on your assignments. Attendance is mandatory but missing a class here or there won't affect your grade too much, just don't be late or absent frequently", + "pos": 0.137, + "neu": 0.806, + "neg": 0.056, + "_id": { + "$oid": "6711d55ecd60fca157e5ce79" + } + }, + { + "text": "She struggles with time management as my class was weeks behind because her discussions would go way over time. She is very big on workshopping and group projects. Readings were easy enough, she does not give feedback on your work directly but does so in the workshopping part of class. Doesnt grade anything so you dont know how youre doing.", + "pos": 0.032, + "neu": 0.94, + "neg": 0.028, + "_id": { + "$oid": "6711d55ecd60fca157e5ce7a" + } + }, + { + "text": "Get your work done on time. She is very old fashioned so she would require physical books. Talk to her whenever you need something and don't make excuses as she doesnt take them! She is not as bad as people portray her to be", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d55ecd60fca157e5ce7b" + } + }, + { + "text": "I liked this prof. You won't like this class if you're not a reader. She was really thorough when giving feedback and she seems really passionate about writing which made the class more enjoyable.", + "pos": 0.284, + "neu": 0.667, + "neg": 0.049, + "_id": { + "$oid": "6711d55ecd60fca157e5ce7c" + } + }, + { + "text": "AVOID. Horrible lady. Very old-school, and tells you don't bother to come to class if you do not bring the books to class. Lots of reading, unclear direction for assignments. There are reading exams, finals, 6-10 page term paper, and an oral personal and group project presentation. Forces you to ask questions even if you do not have questions....", + "pos": 0.031, + "neu": 0.84, + "neg": 0.129, + "_id": { + "$oid": "6711d55ecd60fca157e5ce7d" + } + }, + { + "text": "Don't take her class! Avoid!My class had her during COVID-19 and I don't think anyone learned anything throughout the semester. Her directions towards assignments are very UNCLEAR and she gave no examples. She is very oldschool, before COVID in the actual class, you need to bring pens and paper. If you don't bring books to class, you won't pass!!!", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d55ecd60fca157e5ce7e" + } + }, + { + "text": "She's terrible with technology and highly disrespectful. I would never take another class with this teacher, i recommend you don't either and if your stuck there get ready for a semester out of hell. There was this one sexist comment where she stated men played with cars and women played with dolls and it was unlikely the roles switched.", + "pos": 0.137, + "neu": 0.727, + "neg": 0.136, + "_id": { + "$oid": "6711d55ecd60fca157e5ce7f" + } + }, + { + "text": "This professor does not know how to teach. Honestly, I have not learned anything in this class. Her assignments are very unclear and she does not explain it thoroughly. She is an old school but she does not try to understand her students. Especially during the COVID-19, her behavior with the students was very odd.", + "pos": 0.034, + "neu": 0.881, + "neg": 0.085, + "_id": { + "$oid": "6711d55ecd60fca157e5ce80" + } + }, + { + "text": "This woman is genuinely not a good professor. She barely gives information for her assignments, and is extremely unclear on her requirements. She has very high standards, and gets frustrated when you don't understand what she wanted you to do, even though she never explained it. She makes shady comments to students, and rarely offers valuable help.", + "pos": 0.0, + "neu": 0.801, + "neg": 0.199, + "_id": { + "$oid": "6711d55ecd60fca157e5ce81" + } + }, + { + "text": "I would give her a ZERO. She's terrible! Doesn't care for her students at all and she's so mean. It's really disgusting and she just heartless. I had to travel in the beginning of the school year due to family issues I did the homework and she still failed me. She's terrible with technology and because of corona she just got worse!", + "pos": 0.0, + "neu": 0.708, + "neg": 0.292, + "_id": { + "$oid": "6711d55ecd60fca157e5ce82" + } + }, + { + "text": "Prof Barkin is truly caring, insightful, and old school. Attendance IS mandatory but she allows 3 absences, the school standard. I took two of her classes and would even take her again. Just visit her during office hours if you have any questions about assignments, follow the instructions CAREFULLY, participate, and you will really enjoy her class.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d55ecd60fca157e5ce83" + } + }, + { + "text": "Prof Barkin is a sweet lady and very understanding. Shes not a tough grader either and as long as you read enough and participate in class and arent late, you will do well. But she isnt the best with distributing the load of the work, so it would be wise to stay on top and communicate with her.", + "pos": 0.164, + "neu": 0.769, + "neg": 0.067, + "_id": { + "$oid": "6711d55ecd60fca157e5ce84" + } + }, + { + "text": "Shes too harsh with attendance. You could be physically dying and shed still mark you absent AND get upset over it. Shes not a bad person, shes sweet and all but she grades unreasonably. You could do all the work, do it well, and just get a B. She also seems to enjoy when students go hard to voice their rude, unreasonable opinions in workshop.", + "pos": 0.141, + "neu": 0.738, + "neg": 0.121, + "_id": { + "$oid": "6711d55ecd60fca157e5ce85" + } + }, + { + "text": "Just show up to class because it seems as if shes only grading you on attendance. And DO NOT come to class late, shell embarrass you.", + "pos": 0.0, + "neu": 0.919, + "neg": 0.081, + "_id": { + "$oid": "6711d55ecd60fca157e5ce86" + } + }, + { + "text": "Maybe it's because I had her at 9:30 AM and could never seem to get there, on average, 15-20 minutes late to her class. But even when I did get there on time, the class is bland and not exciting. It made me question: Is College for Me? These required courses...", + "pos": 0.0, + "neu": 0.936, + "neg": 0.064, + "_id": { + "$oid": "6711d55ecd60fca157e5ce87" + } + }, + { + "text": "Too hard to understand..", + "pos": 0.0, + "neu": 0.682, + "neg": 0.318, + "_id": { + "$oid": "6711d55ecd60fca157e5ce88" + } + }, + { + "text": "I took this professor for 2 classes and she was completely different in both. In one class she made it fun and as a student I was interested to come to class . But In the other she was not so fun she didn't teach us, instead she made us read books and then test us on them. If you aren't really Interested in english do not take her.", + "pos": 0.052, + "neu": 0.846, + "neg": 0.102, + "_id": { + "$oid": "6711d55ecd60fca157e5ce89" + } + }, + { + "text": "She is a nice professor that is really passionate about what she teaches. For a world humanities class, it was pretty eurocentric with only one assigned book being from outside of Europe. The class discussions aren't engaging but participation counts. Also, oral reports are the most time consuming part of the class, so be sure to have a decent one.", + "pos": 0.147, + "neu": 0.83, + "neg": 0.023, + "_id": { + "$oid": "6711d55ecd60fca157e5ce8a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55fcd60fca157e5ce8c" + }, + "professor_name": "Hernan Makse", + "rating": 3.7, + "department": "Physics department", + "comments": [ + { + "text": "Professor Makse is a great professor. He teaches his class really well and makes his exams very similar to in-class questions and questions on previous exams, which are provided via his website. If you learn how to answer the type of question that he provides in class and previous exams, you should do very well in his class.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ce8d" + } + }, + { + "text": "He's amazing. Pay attention to lectures, make a good sheet for tests, and you are practically guaranteed a great score. He's helpful and accessible during office hours and if you have concerns, he's always quick to answer. He made physics an actual pleasure sometimes. If you can take his class, most definitely do it. I wish he taught PHYS 204 rn.", + "pos": 0.297, + "neu": 0.685, + "neg": 0.018, + "_id": { + "$oid": "6711d55fcd60fca157e5ce8e" + } + }, + { + "text": "He was literally amazing. His exams were based completely on the questions he would go over in class and he would always help if someone was confused. If you take physics with him you will probably pass and get a good grade with comparatively less work than other physics professors.", + "pos": 0.163, + "neu": 0.797, + "neg": 0.04, + "_id": { + "$oid": "6711d55fcd60fca157e5ce8f" + } + }, + { + "text": "Homework and lecture attendance are optional. Your entire grade is based on midterm and final. Write all the questions he did during the lecture on a cheat sheet for exams. Practice mainly on the problems he did in the lecture. He posts his lecture notes and past exams on his website. He uses the same jokes every year; not sure if that matters.", + "pos": 0.045, + "neu": 0.843, + "neg": 0.111, + "_id": { + "$oid": "6711d55fcd60fca157e5ce90" + } + }, + { + "text": "Grade is 60% midterms (best 2 out of 3) and 40% final, but exams are heavily based on old test questions verbatim sometimes and tb questions covered in lecture. He'll only test you on stuff covered in class, so you won't have to do the suggested hw problems at all tbh. Allows a cheat sheet for all 4 exams.", + "pos": 0.039, + "neu": 0.847, + "neg": 0.114, + "_id": { + "$oid": "6711d55fcd60fca157e5ce91" + } + }, + { + "text": "He wants students to do well & wants feedback if you are understanding the material. Seek his help so he is aware that you are trying. Exams are based off lecture examples-will ask you extra things. Do past exams & the hw questions (not graded). Graders are tough. Double check the graders- make mistakes too. If he grades -bit more lenient .", + "pos": 0.105, + "neu": 0.836, + "neg": 0.059, + "_id": { + "$oid": "6711d55fcd60fca157e5ce92" + } + }, + { + "text": "Prof Makse is a great teacher. First exam was difficult and he curved it. His lectures are very clear.", + "pos": 0.274, + "neu": 0.628, + "neg": 0.098, + "_id": { + "$oid": "6711d55fcd60fca157e5ce93" + } + }, + { + "text": "The only thing I didn't like was that our labs didn't count towards our grade and it was 40% midterm and 60% final. Both mc. Broke things down really slowly in lecture and answered any questions. Curved the midterm heavy. Doesn't go strictly by the syllabus and will cut material to save time. I would take him for 204 if I could.", + "pos": 0.047, + "neu": 0.85, + "neg": 0.103, + "_id": { + "$oid": "6711d55fcd60fca157e5ce94" + } + }, + { + "text": "He is not very caring and likes to blame the students for our bad grades when he isn't doing the best job on the teaching end. He takes up most of the lectures doing a single problem that is suppose to prepare us for the midterm, but the midterm structure was completely different. Not the best, overall.", + "pos": 0.031, + "neu": 0.752, + "neg": 0.217, + "_id": { + "$oid": "6711d55fcd60fca157e5ce95" + } + }, + { + "text": "Wasn't going to do this until I saw the review he obviously left himself claiming he listened to students. Professor Makse used a global pandemic to make our lives more stressful and didn't listen to feedback at all. He tried to hold class during the recalibration period. He can teach, but he needs to learn the humanity part.", + "pos": 0.0, + "neu": 0.961, + "neg": 0.039, + "_id": { + "$oid": "6711d55fcd60fca157e5ce96" + } + }, + { + "text": "Prof Makse was great this semester. Despite all difficulties he gave amazing lectures and was very fair in exams and grading and listened to all our concerns. Do not pay attention to those who complain who are always those who get low grades.", + "pos": 0.252, + "neu": 0.663, + "neg": 0.085, + "_id": { + "$oid": "6711d55fcd60fca157e5ce97" + } + }, + { + "text": "This Professor made learning Physics as easy as breathing air. Sciences are challenging, but he teaches concepts to the point you don't need to read for hours. You get it the first time. That has never happened to me, SO I 100% RECOMMEND HIM. Take Him because he is a gem who will make it fun and easy.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ce98" + } + }, + { + "text": "Normally Prof. Makse gives great lectures but he was really unfair this semester. There was literally a global pandemic going on and he showed zero sympathy towards students. He promised a curve but didn't give one. Lectures were subpar since they were online. He also had an overall rude attitude towards students who were raising valid concerns.", + "pos": 0.13, + "neu": 0.747, + "neg": 0.123, + "_id": { + "$oid": "6711d55fcd60fca157e5ce99" + } + }, + { + "text": "This semester was crazy because of COVID, but Prof. Makse was not very nice about it. His lectures are clear and his test was fair. However, he was grumpy and got annoyed at our class when we were just as stressed as he was.", + "pos": 0.114, + "neu": 0.68, + "neg": 0.206, + "_id": { + "$oid": "6711d55fcd60fca157e5ce9a" + } + }, + { + "text": "If you want to be condescended during a global pandemic and have a professor who doesn't care if you're a front line worker, take this class. He might be fine during normal semesters and he is an okay lecturer, but that's about it. He changed his mind every day on grading and was unresponsive to valid student worries. No curve at all.", + "pos": 0.059, + "neu": 0.82, + "neg": 0.122, + "_id": { + "$oid": "6711d55fcd60fca157e5ce9b" + } + }, + { + "text": "Professor Makse teaches well but he is very rude and has a problem reiterating information.", + "pos": 0.072, + "neu": 0.557, + "neg": 0.371, + "_id": { + "$oid": "6711d55fcd60fca157e5ce9c" + } + }, + { + "text": "Prof Makse is one of the best in Physics. His lectures are clear and to the point.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ce9d" + } + }, + { + "text": "You will learn a lot in this class. He is very clear and everybody understand his lectures. A great professor.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ce9e" + } + }, + { + "text": "Excellent professor. He will not stop until everyone in class understand all concepts. He explains all topics very clearly, specially for nonphysics students.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ce9f" + } + }, + { + "text": "If you really want to learn physics do not take this guy. He is lazy and most of the times absent in class. He is nice and approachable dont get me wrong bt his intentions about your success are questionable. If you will be taking the MCAT think twice.", + "pos": 0.182, + "neu": 0.737, + "neg": 0.081, + "_id": { + "$oid": "6711d55fcd60fca157e5cea0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d55fcd60fca157e5cea2" + }, + "professor_name": "George Moser", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "This was an easy class for me because I knew the material from high school. If you pay attention and try you should be fine. Make sure to do your homework, its also very helpful. When you ask questions he answers them. He is a nice person.", + "pos": 0.233, + "neu": 0.742, + "neg": 0.025, + "_id": { + "$oid": "6711d55fcd60fca157e5cea3" + } + }, + { + "text": "This professor is the best for self learners. I got an A by watching professor Leonard and I recommend you guys do the same. His tests are very easy compared to other professor and he has no MATLAB final which means that you dont have to stress yourself out in MATLAB. Attendance doesnt count so dont bother going to class or lab.", + "pos": 0.2, + "neu": 0.77, + "neg": 0.03, + "_id": { + "$oid": "6711d55fcd60fca157e5cea4" + } + }, + { + "text": "If you're not up to teaching yourself then he's not for you. Scribbles all over the board then erases quickly. Our final was insane. Stuff he told us not to focus on during the semester showed up on the final that he was supposed to write. Very lenient grader and easy midterms. Take at your own risk-just keep track of his \"lectures\". Nice guy.", + "pos": 0.114, + "neu": 0.848, + "neg": 0.038, + "_id": { + "$oid": "6711d55fcd60fca157e5cea5" + } + }, + { + "text": "When it comes to writing on the board, he's all over the place. He writes on whatever part of the board which is most convenient for where he's standing, with the result that there's no flow on the board. He doesn't seem to keep office hours, so it could be difficult to communicate with him. Otherwise, nice guy, and his teaching isn't too bad.", + "pos": 0.08, + "neu": 0.853, + "neg": 0.067, + "_id": { + "$oid": "6711d55fcd60fca157e5cea6" + } + }, + { + "text": "Do not take him!!! obviously, he does not teach well. But the main issue is that he is not good even for the ones who self-study. Exams coming near and when you start studying you do not even know where to start and end. He is the most disorganized of em all. Trust me when i say this.", + "pos": 0.066, + "neu": 0.805, + "neg": 0.129, + "_id": { + "$oid": "6711d55fcd60fca157e5cea7" + } + }, + { + "text": "Talks really quietly, writes in random places. However, no attendance or homework. So he is okay if you are willing to teach yourself.", + "pos": 0.085, + "neu": 0.828, + "neg": 0.087, + "_id": { + "$oid": "6711d55fcd60fca157e5cea8" + } + }, + { + "text": "He is a great professor. His way of teaching is very clear and easy to understand and his midterm was really easy. He also likes to work with those who actually try and aren't just there for attendance. Great professor. I recommend.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5cea9" + } + }, + { + "text": "Moser is very disorganized, and his teaching skills are mediocre. I literally taught myself the entire course from beginning to end. You do have to show up once or twice to see what topics he covers though. His midterm is ridiculously easy, but the department final is absolutely BRUTAL in comparison. Won't prepare you for the final.", + "pos": 0.03, + "neu": 0.808, + "neg": 0.162, + "_id": { + "$oid": "6711d55fcd60fca157e5ceaa" + } + }, + { + "text": "Very very unorganized. You have study by yourself to pass the course. Doesn't have office hour. Doesn't prepare you for the final (50% of the grade). DO NOT TAKE HIM", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ceab" + } + }, + { + "text": "Very disorganized,unclear . You'll basically have to study on your own but have to come to class and see what he is up to. used two textbooks instead of one . a good thing is that he used hw problems on His tests , not including the final. Easy grader", + "pos": 0.132, + "neu": 0.807, + "neg": 0.061, + "_id": { + "$oid": "6711d55fcd60fca157e5ceac" + } + }, + { + "text": "50% midterm 50% final (departmental). The departmental final is way tougher than his midterm so get as many point on his midterm as possible, Gives very little partial credit. Participate in class, so he remembers you. Bad handwriting and lectures, but overall, a passable class.", + "pos": 0.066, + "neu": 0.886, + "neg": 0.047, + "_id": { + "$oid": "6711d55fcd60fca157e5cead" + } + }, + { + "text": "Moser is okay at teaching until you get to the proofs, which he cannot do at all. HE mumbles a lot and is very clumsy algebraically. The midterm is easy, and graded leniently. But, if you do not study a lot on your own the DEPARTMENT FINAL WILL KILL YOU!! His teaching does not prepare you for it. Treat it like a self study. MT and Final 50% each.", + "pos": 0.131, + "neu": 0.776, + "neg": 0.093, + "_id": { + "$oid": "6711d55fcd60fca157e5ceae" + } + }, + { + "text": "Moser is interesting. His lectures are mostly \"plug and chug\" with very little theory but the theory he does teach is mumbled and confused. He is also not great at basic algebra which makes his \"plug and chug\" method of teachining ineffective. BRING A PENCIL NOT PEN!! Beyond that his tests arent hard if practice the hw.", + "pos": 0.051, + "neu": 0.8, + "neg": 0.15, + "_id": { + "$oid": "6711d55fcd60fca157e5ceaf" + } + }, + { + "text": "He is so willing to help, and his lectures are clear, and tests are easy. However, he is very unorganized, and doesn't have office hour.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ceb0" + } + }, + { + "text": "Prof Moser knows how to teach. He explains the material so clearly and a way you can understand. If you need help in the class, ASK him. He's so willing to help and very encouraging. However, you have to practice by yourself as well, just like any math course. His exams are okay, nothing he doesn't cover.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ceb1" + } + }, + { + "text": "This guy is honestly terrible. You can learn nothing from his class. He is VERY unorganized, that sometimes you don't even know what's going on.", + "pos": 0.103, + "neu": 0.79, + "neg": 0.107, + "_id": { + "$oid": "6711d55fcd60fca157e5ceb2" + } + }, + { + "text": "When taking a class run by Prof. Moser, keep in mind that he knows what he is doing. He's teaching math to engineering student's normally, and I had the chance to have him for my remedial math course. He is the first teacher that explains math in a way that becomes fun and interesting. I would go out of my way to have him as my teacher again.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ceb3" + } + }, + { + "text": "He is a nice professor but his teaching methods are a bit confusing. However, compared to other math 209 professors at CCNY he is the easiest. He is an easy A if you study. He only gave 2-3 exams and the final was similar to the exams he gave in class. He made up his own final.", + "pos": 0.146, + "neu": 0.818, + "neg": 0.036, + "_id": { + "$oid": "6711d55fcd60fca157e5ceb4" + } + }, + { + "text": "Easy A. If you fail its on you honestly but I heard of other math 209 professors and this guy is the easiest even though he is very unorganized. Like every CCNY professor, you have to go back & teach yourself the material but I guarantee you if you study the old finals, you will get an A. Believe me, I'm looking at my grade now on CUNYfirst (A)", + "pos": 0.164, + "neu": 0.807, + "neg": 0.029, + "_id": { + "$oid": "6711d55fcd60fca157e5ceb5" + } + }, + { + "text": "Highly recommend, easy A!!. Final exam is sooooo easy compared to other professors. He gives 2-3 exams throughout the semester which are based off of old finals. If you want an A in 209 take him. Class was unorganized. He's honestly like every other CCNY professor where you have to each yourself but if you see the patterns in exams you can get an A", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d55fcd60fca157e5ceb6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d560cd60fca157e5ceb8" + }, + "professor_name": "Ibrahim Habib", + "rating": 4.3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Excellent course you learn a lot about new technology for networks . The professor is excellent and tries to make students to learn.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5ceb9" + } + }, + { + "text": "Did nothing all class, very easy lab class if you want a free class", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5ceba" + } + }, + { + "text": "Prof. Habib is very knowledgeable in his field and a well respected researcher. Nevertheless, he simplifies explanation of advanced topics to his students.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cebb" + } + }, + { + "text": "Loved my time in this course. Was not sure which major in electrical engineering to pursue till I took this routing class and loved computer networking as a result. I work in the industry now and that course was a great foundational knowledge. Totally recommended class and a great professor.", + "pos": 0.282, + "neu": 0.687, + "neg": 0.031, + "_id": { + "$oid": "6711d560cd60fca157e5cebc" + } + }, + { + "text": "Excellent professor and course", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cebd" + } + }, + { + "text": "Excellent professor and good simulation course.", + "pos": 0.623, + "neu": 0.377, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cebe" + } + }, + { + "text": "Great professor and nice course.", + "pos": 0.697, + "neu": 0.303, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cebf" + } + }, + { + "text": "Professor is caring about students", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cec0" + } + }, + { + "text": "Nice class and professor and I will take again.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cec1" + } + }, + { + "text": "Very unorganized. Doesnt prepare for his own lectures and they dont follow any structure. Also has horrible hand writing making them hard to follow. He also tells us to ask questions, but when we try he tells us to not interrupt him. The only grades in this class are the final and class participation.", + "pos": 0.08, + "neu": 0.861, + "neg": 0.059, + "_id": { + "$oid": "6711d560cd60fca157e5cec2" + } + }, + { + "text": "Excellent class and Professor. I have learnt lot from it and will take the second course.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cec3" + } + }, + { + "text": "One of the best classes I have ever had. I got my current job at Verizon because of what I learnt in his two classes. He is an expert and knows how to teach the material so well. He always motivate us to think not memorize and helps us correlate technologies together and understand how they work. This knowledge helped me a lot in my interviews.", + "pos": 0.129, + "neu": 0.841, + "neg": 0.03, + "_id": { + "$oid": "6711d560cd60fca157e5cec4" + } + }, + { + "text": "it is true he asks the question straight forward in the exam but what he lectured in class in class is so messy example: he is teaching GMPLS and in the GMPLS, he will jump to SONET or ATM, that' really annoying. I understand, he is so knowledgable but we are students, he cants expect everything we already know.I will not take his course ever again", + "pos": 0.045, + "neu": 0.841, + "neg": 0.113, + "_id": { + "$oid": "6711d560cd60fca157e5cec5" + } + }, + { + "text": "Awesome professor. i took both Ip routing and High speed network. He is very good at explaining. He knows what he is doing. he discourages cramming. I will recommend this class to anyone that needs solid background routing and communication", + "pos": 0.231, + "neu": 0.71, + "neg": 0.059, + "_id": { + "$oid": "6711d560cd60fca157e5cec6" + } + }, + { + "text": "Interesting material and excellent Professor. I will take his second course on routing.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cec7" + } + }, + { + "text": "This is an excellent Professor. He explains the material very well and gives many examples from real networks. You need to attend classes, exams are out of his classes.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cec8" + } + }, + { + "text": "Well, this is one of my favorite classes and he is one of my favorite Professors. He knows the material ver well, cares to teach and make you understand. I took the high speed networks class and will take the IP routing.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cec9" + } + }, + { + "text": "Excellent class and Professor , I got an A without lots of effort. The class notes are clear and most are from the textbook. He is an expert in his field knows the material well and explains it clearly. He cares about students and gives lots of career advise in the class and curves for everyone.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5ceca" + } + }, + { + "text": "I enjoyed his class and learnt lots of new material that helped me tremendously in the interviews for my current job. If you are interested in a career in networks take his classes. You ll need to attend the class and follow his notes. He explains the material clearly and cares about students.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d560cd60fca157e5cecb" + } + }, + { + "text": "Avoid him if you have other choice. Tough professor and totally disorganized material.", + "pos": 0.0, + "neu": 0.618, + "neg": 0.382, + "_id": { + "$oid": "6711d560cd60fca157e5cecc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d560cd60fca157e5cece" + }, + "professor_name": "Chris Li", + "rating": 3.4, + "department": "Biology department", + "comments": [ + { + "text": "I'd be wary of her quizzes early on, mostly due to her limiting how much you can write per question. But overall, her class was interesting and provided much needed context. In her final, however, it was brutal but overall she was lenient in some cases due to knowing how difficult it was. Just be careful about what you signed up for with both profs", + "pos": 0.105, + "neu": 0.779, + "neg": 0.116, + "_id": { + "$oid": "6711d560cd60fca157e5cecf" + } + }, + { + "text": "Professor Li is an awesome professor that teaches really well. Her class is 10% quizzes and a 40% final. If you attend lectures, you'll do well. She gave an insane curve of about 30 points on the final. The other portion of the class is sociology. Discussion boards are 10% and the final paper is 40%. Professor Poros tho smhh ):", + "pos": 0.123, + "neu": 0.799, + "neg": 0.078, + "_id": { + "$oid": "6711d560cd60fca157e5ced0" + } + }, + { + "text": "Honestly she is a good lecturer but lord that midterm exam was kind of brutal. I scored the class avg so it got curved to an 80. Sociology portion of this class was essentially a free A. Get past the bio midterm with a good score and you will do well. STUDY!!! You will fail her midterm exam if you do not study!!! Responds quickly to emails.", + "pos": 0.185, + "neu": 0.69, + "neg": 0.125, + "_id": { + "$oid": "6711d560cd60fca157e5ced1" + } + }, + { + "text": "Look, did this class make me question my decision to be a bio major? yes. Were the tests extremely hard with the class avg being 40? yes. But somehow, someway, i still had a great time. we're in college, class is hard, get over it. Li is an amazing lecturer, extremely knowledgeable and her passion for genetics transends. have fun!!!", + "pos": 0.307, + "neu": 0.655, + "neg": 0.037, + "_id": { + "$oid": "6711d560cd60fca157e5ced2" + } + }, + { + "text": "The reviews are not lying when they say her exams are wild!!! I do however feel I could have done better if I studied regularly. She is a really good lecturer and I love her passion! She records lectures which is super helpful. She WILL NOT be a free A and if you do not study you will fail! Class is super interesting tho", + "pos": 0.34, + "neu": 0.591, + "neg": 0.069, + "_id": { + "$oid": "6711d560cd60fca157e5ced3" + } + }, + { + "text": "She has unrealistic expectation for what students will know how to do. She will explain something so poorly in class using the simple type of example and then the quiz will have the difficult type. She will make you feel insanely stupid for not know all the things that are actually listed as the course description for what shes suppose to teach", + "pos": 0.0, + "neu": 0.91, + "neg": 0.09, + "_id": { + "$oid": "6711d560cd60fca157e5ced4" + } + }, + { + "text": "I dont write reviews, but feel compelled to write this one. If you have the choice, do not take her. She really is a great lecturer, but she takes pride in how difficult the course is -which I think absolutely should not be the objective of a professor. I had her coteaching with Prof Emerson and her part was a nightmare. Do not take her.", + "pos": 0.14, + "neu": 0.817, + "neg": 0.044, + "_id": { + "$oid": "6711d560cd60fca157e5ced5" + } + }, + { + "text": "The difficulty of her exams is \"Ultra\" level. But she is the professor who knows how to teach genetics. Don't expect to get an A in this class, expect to learn genetics.", + "pos": 0.0, + "neu": 0.948, + "neg": 0.052, + "_id": { + "$oid": "6711d560cd60fca157e5ced6" + } + }, + { + "text": "She is a really good professor and her class is very interesting. She is very engaging and I have learned a lot from her. The problem is that her tests are NOT hard, but the amount of time she gives for her tests are not enough. She has too many questions and needs to cut down her tests. But the final she gave was ridiculous and hard.", + "pos": 0.094, + "neu": 0.782, + "neg": 0.124, + "_id": { + "$oid": "6711d560cd60fca157e5ced7" + } + }, + { + "text": "Only problem with this course is the amount of time for the exams. No reason to time a genetics test for 50 minutes; you dont have the time to actually understand questions. Other than that, she is a good teacher and records lectures which is convenient.", + "pos": 0.057, + "neu": 0.846, + "neg": 0.096, + "_id": { + "$oid": "6711d560cd60fca157e5ced8" + } + }, + { + "text": "Her exams are harder than the \"CCNY level\". I like that. People who complain should think about why they find the concepts difficult instead of blaming her. She and the TA are available, and her lectures are recorded. You do have the resources to do great. As for playing fav, if you ask bad questions, you keep the whole class from moving forward...", + "pos": 0.146, + "neu": 0.704, + "neg": 0.15, + "_id": { + "$oid": "6711d560cd60fca157e5ced9" + } + }, + { + "text": "Very difficult", + "pos": 0.0, + "neu": 0.264, + "neg": 0.736, + "_id": { + "$oid": "6711d560cd60fca157e5ceda" + } + }, + { + "text": "this class is difficult, but Dr. Li def play fav and i usually hate professors who are like that. I raise my hands many times in the lectures, she did not call on me. She call on others the moment when they raise their hands. Prepare to ask for helps when taking this class. It is impossible to pass without asking others for help.", + "pos": 0.213, + "neu": 0.703, + "neg": 0.084, + "_id": { + "$oid": "6711d560cd60fca157e5cedb" + } + }, + { + "text": "She doesnt care about your prior knowledge and her material is extremely complicated, way beyond the textbook level, so that is of no use. She openly takes joy in how hard she makes the class. Exam problems are like impossible, if you are lucky to get around the class average which is in the high 30s and 40s you will pass. No help in solving the hw", + "pos": 0.143, + "neu": 0.719, + "neg": 0.139, + "_id": { + "$oid": "6711d560cd60fca157e5cedc" + } + }, + { + "text": "If you want to learn but arent sure is bio is for you, don't take her. She is very knowledgeable but doesn't know how to introduce people to concepts. Overall, made me dislike the class. A lot of homework and no practice other than that. Tests are even worse and come as a surprise. Find somebody else who's more into helping students.", + "pos": 0.094, + "neu": 0.735, + "neg": 0.171, + "_id": { + "$oid": "6711d560cd60fca157e5cedd" + } + }, + { + "text": "Although I got a good grade, I don't think she knows how to teach. Yes, she knows how to explain new topics, but I think she shouldn't be teaching at all. She is rude and arrogant who plays favorites, which is unfair. If she thinks your question is not \"smart enough\" then she makes you think and feel that you are stupid. Worst prof. at CCNY.", + "pos": 0.109, + "neu": 0.611, + "neg": 0.279, + "_id": { + "$oid": "6711d560cd60fca157e5cede" + } + }, + { + "text": "Exams are very difficult. It's more on how to apply the concept rather than the concept itself. She curves the grade so it's best to stay around the average of the class. She doesn't take attendance. She and the TAs are always ready to help. Although the tests are difficult, she's a very fun & cares about the students learning.", + "pos": 0.221, + "neu": 0.708, + "neg": 0.071, + "_id": { + "$oid": "6711d560cd60fca157e5cedf" + } + }, + { + "text": "Shes a fair grader! This was my second time taking genetics, and it was so worth it. Her tests are difficult but if you are around the average you will pass. All questions are short answer so do not leave anything unanswered! Think of other ways that she can ask problems. The TAs are willing to help you if you need it. Go to workshop as well.", + "pos": 0.153, + "neu": 0.778, + "neg": 0.069, + "_id": { + "$oid": "6711d560cd60fca157e5cee0" + } + }, + { + "text": "I struggled with this class, it's not easy. Dr. Li is a great teacher, she loves genetics and she truly cares about her students. Understanding concepts is key to passing this class. You don't need the textbook to do well, but practicing her questions will help you get a hang of them.", + "pos": 0.227, + "neu": 0.717, + "neg": 0.055, + "_id": { + "$oid": "6711d560cd60fca157e5cee1" + } + }, + { + "text": "Listen! From her lectures you can see she knows and loves what she teaches but the exams are SUPER HARRRRD. You gotta remember all the concepts you studied from your previous biology classes. Her test questions and homework's are not in this world literally. A gpa killer.", + "pos": 0.154, + "neu": 0.745, + "neg": 0.101, + "_id": { + "$oid": "6711d560cd60fca157e5cee2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d561cd60fca157e5cee4" + }, + "professor_name": "Aleksey Ivanov", + "rating": 2.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Good professor.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cee5" + } + }, + { + "text": "Such a hard class, even if you study, you can't really do as well as what you expected according to what you have studied. He is very pessimistic. He always thinks negative and sounds rude. He always get upset easily for no reason. Nobody finished his exam on time because they were several questions that no one couldn't even finish.", + "pos": 0.065, + "neu": 0.692, + "neg": 0.243, + "_id": { + "$oid": "6711d561cd60fca157e5cee6" + } + }, + { + "text": "Terrible lectures and tests", + "pos": 0.0, + "neu": 0.492, + "neg": 0.508, + "_id": { + "$oid": "6711d561cd60fca157e5cee7" + } + }, + { + "text": "GPA KILLER!", + "pos": 0.0, + "neu": 0.179, + "neg": 0.821, + "_id": { + "$oid": "6711d561cd60fca157e5cee8" + } + }, + { + "text": "Doesn't record, Doesn't curve, Doesn't teach, Doesn't care, Doesn't deserve to be a professor.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cee9" + } + }, + { + "text": "His exams are too long and no one ever has enough time to finish. Also doesn't care about his students at all, majority of the class will be failing and he won't do or say anything about it.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d561cd60fca157e5ceea" + } + }, + { + "text": "I once walked in class at 11:01 and he kicked me out. Class started at 11:00. Prior to this he usually let ppl come as late as 10 min. 2 weeks later he cancelled class without bothering to tell us. He gave extra points on the final to ppl he thought \"participated\" a lot. He seemed happy to tell us only 9 out of 26 students passed his last class.", + "pos": 0.079, + "neu": 0.895, + "neg": 0.027, + "_id": { + "$oid": "6711d561cd60fca157e5ceeb" + } + }, + { + "text": "He is talented to teach. Material is not hard, but the amount... way too many problems on a test. Many people actually take him again. But I guess with any other professor this material would be much harder. He also solves examples, of course only one of a type. I believe that is the first heavier class in curriculum. Enjoy EE or switch. LOL", + "pos": 0.196, + "neu": 0.757, + "neg": 0.046, + "_id": { + "$oid": "6711d561cd60fca157e5ceec" + } + }, + { + "text": "Terrible professor. Doesnt let you really go through your exams and constantly belittles you. His lectures are hard to follow and doesnt really answer questions.", + "pos": 0.0, + "neu": 0.836, + "neg": 0.164, + "_id": { + "$oid": "6711d561cd60fca157e5ceed" + } + }, + { + "text": "He is another of those professors at CCNY that you make you question you major. If you don't plan on spending at least 5 hours of self study at home for this class, then be prepared to face a D. He takes attendance, collects homework, and exams are different each semester, so getting his past exams isn't helpful that much. Be prepared to work hard", + "pos": 0.055, + "neu": 0.89, + "neg": 0.054, + "_id": { + "$oid": "6711d561cd60fca157e5ceee" + } + }, + { + "text": "Hard to understand what he is saying, should we copy the board first? He does not give you a chance to understand and ask questions. I do not understand why we go to class just to copy 90% and learn 10%. Why these professors don't give us written notes and take time to pursue what is the material is about. Dumping the brain here!", + "pos": 0.03, + "neu": 0.911, + "neg": 0.06, + "_id": { + "$oid": "6711d561cd60fca157e5ceef" + } + }, + { + "text": "You are on your own. I used online videos and Yates Book, and a lot of exercises. I passed this hard class and that is not his success. Tests are not that heavy but long, really long. He says he's not going to put hard integrals to solve but ends up doing it, that consumes time. Test is going to include stuff that he says is not going to be on test", + "pos": 0.029, + "neu": 0.906, + "neg": 0.065, + "_id": { + "$oid": "6711d561cd60fca157e5cef0" + } + }, + { + "text": "He is like a old cassette player. Start playing and and stops. Its not a rocket science but he can not give you a clear idea of topic that helps in problem solving. He puts too many hard questions in exam with insufficient time.", + "pos": 0.235, + "neu": 0.649, + "neg": 0.116, + "_id": { + "$oid": "6711d561cd60fca157e5cef1" + } + }, + { + "text": "The material is not hard, but if you don't sit down and understand the concepts you won't do well. Don't fail the second exam and A is possible. Do as many old exams as possible (and HW). He rewards improvement so don't be discouraged. I had C- after third exam and ended with B. He isn't great to interact with, so just do your thing and avoid him.", + "pos": 0.191, + "neu": 0.699, + "neg": 0.11, + "_id": { + "$oid": "6711d561cd60fca157e5cef2" + } + }, + { + "text": "He isn't a bad professor, he just doesn't care about you unless you kiss up. Show up 15 minutes early to review previous lecture, sit at the front, do all the homeworks on your own, and do as many old exams as possible. He gives you everything you need to succeed, but is generally unpleasant with the exception of occasional humor.", + "pos": 0.118, + "neu": 0.796, + "neg": 0.086, + "_id": { + "$oid": "6711d561cd60fca157e5cef3" + } + }, + { + "text": "If you want to pass his class get his old exams, do them until you understand the concept. Practice is the key to get a good grade. He'll not curve so be prepared to study for all his exams. He doesn't care about his students. Don't let him get in to your head, work hard learn past exams or friends his lectures are confusing and a waste of time.", + "pos": 0.12, + "neu": 0.77, + "neg": 0.11, + "_id": { + "$oid": "6711d561cd60fca157e5cef4" + } + }, + { + "text": "I thought he was great. Explained stuff clearly on board, or dictated (twice) to write. Exams similar to past ones (I did most of them!). Cannot just remember like below said, must understand concepts. Key 2nd exam is identifying distributions. My textbook came with corrections for mistakes. Buy Schaums outline textbook! Go to office to review exam", + "pos": 0.114, + "neu": 0.815, + "neg": 0.071, + "_id": { + "$oid": "6711d561cd60fca157e5cef5" + } + }, + { + "text": "Aleksey is not the monster people make him out to be. To do well get his old exams. Questions on the final were taken from past exams. He varied it for the 2nd and 3rd exam,but you cant just memorize questions you must understand concepts. Second exam is the toughest. It's hard to hear him so sit up front. His humor made class enjoyable for me.", + "pos": 0.1, + "neu": 0.862, + "neg": 0.038, + "_id": { + "$oid": "6711d561cd60fca157e5cef6" + } + }, + { + "text": "You dont need to take the final to calculate you're in the A range. Notice everyone who says WAH CLASS START 15 MIN EARLY are ALWAYS THE ONES LATE. Class does not start 15 mins early, it's a review from last lecture. The new stuff starts at 11. I studied 2 days in advance of the final, the questions came from lecture notes. Literally repeated qs.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cef7" + } + }, + { + "text": "We didnt tke final yet,so dont trust A and B+ reviews. Recommend u skim thru textbook/YT b4 class. Come class 15min early. Emailed him a lot,nvr answers. Ask him a question, tells me to read book,which i do. Study 2-3weeks b4 exam. Dont give exam back,so u cant study wrong answers. Mumbles and dont speak up,i sit near front and cant hear most times", + "pos": 0.074, + "neu": 0.887, + "neg": 0.039, + "_id": { + "$oid": "6711d561cd60fca157e5cef8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d561cd60fca157e5cefa" + }, + "professor_name": "Amy Li", + "rating": 3.7, + "department": "Psychology department", + "comments": [ + { + "text": "Would only read off the PowerPoint in the beginning but after asking her for more examples, she started getting better at lecturing. Her tests are no joke, the MC answers were so similar and most of the answers cant be found online Really have to study and attend lectures to pass Paper was easy, literally finished it in a day and got full marks", + "pos": 0.108, + "neu": 0.859, + "neg": 0.033, + "_id": { + "$oid": "6711d561cd60fca157e5cefb" + } + }, + { + "text": "4 exams , drops lowest exam score. Really hard exams Read textbook to pass. Graded by few things so easily can mess up. One paper counts 15%", + "pos": 0.094, + "neu": 0.693, + "neg": 0.213, + "_id": { + "$oid": "6711d561cd60fca157e5cefc" + } + }, + { + "text": "Really hard exams read the textbook just attending lectures wont help to pass. Monotone voice and just read off presentation. Gives one paper to answer questions based on research study and vague prompt. Prof barley took time to go over the paper requirement.", + "pos": 0.0, + "neu": 0.882, + "neg": 0.118, + "_id": { + "$oid": "6711d561cd60fca157e5cefd" + } + }, + { + "text": "We were given extra credit for these RMP reviews!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cefe" + } + }, + { + "text": "She was really considerate and let us give input whenever the class wanted to change a test date. I took her for a four week summer course so there was a lot of reading but the tests were always really fair and she made sure I understood the concepts we had discussed in class with examples. I would take her again she was a great professor!", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5ceff" + } + }, + { + "text": "Prof. Li was great overall. I recommend taking her class!", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf00" + } + }, + { + "text": "She was great! Very clear and direct with her lectures. The exams were fair. The Journal Outline assignment was not as difficult as it looked. Very nice and provides information when you need it.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf01" + } + }, + { + "text": "She is an enthusiastic instructor. She does an excellent job presenting the course materials. There are some things she can improve on. During presentations, try not to read off the slides. Include more interactives that can keep the students engaged. Overall, I really enjoyed her class, especially during this pandemic. She checked on her students.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf02" + } + }, + { + "text": "Professor Li has literally been so good to her students she's very caring and genuinely wants you to do well. Taking Psych 249 has been better than I expected, although its still a-lot considering 4 exams 1 dropped, journal outline, and 17 chapters to read all within 1 month. Also she gives opportunity for extra credit which is GREAT! Loved her!", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf03" + } + }, + { + "text": "this professor is very sweet women she care for her students and try to relate the topic to real life issues. she use the lecture slide ,the textbook and videos (you tube videos) to create her exams so you need to read the textbook and focus in each lecture ( also use examples and video as question on the exam ) . There are 4 exam she only count 3.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf04" + } + }, + { + "text": "Very understanding professor and she really cares. 4 exams overall but she drops the lowest and she gave no quizzes. No essays other than a journal outline. The class went by fast and there was a lot of material to cover but she goes slow to ensure that the class understands all topics and concepts.", + "pos": 0.123, + "neu": 0.78, + "neg": 0.097, + "_id": { + "$oid": "6711d561cd60fca157e5cf05" + } + }, + { + "text": "Multiple choice only tests, slightly more difficult than you'd want them to be. She drops the lowest test of 4. Overall, very nice professor. She kind of reads off the slides, so not the most engaging. But if you want to take a class in one of the subject areas, you'll definitely get a decent grade in the class.", + "pos": 0.125, + "neu": 0.795, + "neg": 0.079, + "_id": { + "$oid": "6711d561cd60fca157e5cf06" + } + }, + { + "text": "She is definitely helpful. The lectures are a little long but she makes sure that everyone has a chance to take notes, ask questions or make comments. She tries to be as understanding as possible. Definitely don't miss out on the readings and submit work on time. talk to her with time she is willing to make reasonable accommodations if needed.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf07" + } + }, + { + "text": "She's a great professor, very fair and accommodating. The lectures are long but she does a great job at keeping us engaged and interested. I would definitely take another class with her if I could!", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf08" + } + }, + { + "text": "Professor Li's class is mostly lecture. She answers questions thoughfully.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf09" + } + }, + { + "text": "Professor Li was a really caring instructor who clearly wanted us to learn and succeed. She was very available for questions, and her lectures worked well with the text book reading to reinforce information. Our class was online due to the pandemic, so I thought she did an excellent job of switching from in person to online teaching.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf0a" + } + }, + { + "text": "Amy is a good teacher! I wished I had her in person", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf0b" + } + }, + { + "text": "Professor Amy is very nice and caring. She makes sure everyone understands the material and can be reached out of class. The lectures are very interesting and the information she gives during lectures is important because it will be on the exam. Reading the textbook is also important because it will also be on the exam.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf0c" + } + }, + { + "text": ": Amy Li is a great professor. I took her course during summer quarantine so the class was fully online. She was very patient, readily answered any questions, and explained terms in a more understandable way.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d561cd60fca157e5cf0d" + } + }, + { + "text": "PSY249 was a summer class with 3 hours long lectures online. But she definitely avoided the boringness with polls and videos and discussions. If you don't understand or need clarifying on something, ask! She will answer. She makes grading criteria clear. With 4 exams dropping the lowest plus a journal outline. There's pdf for the textbook!", + "pos": 0.114, + "neu": 0.787, + "neg": 0.098, + "_id": { + "$oid": "6711d561cd60fca157e5cf0e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d562cd60fca157e5cf10" + }, + "professor_name": "Pavel Rytir", + "rating": 2.2, + "department": "Computer Science department", + "comments": [ + { + "text": "He's just terrible.", + "pos": 0.0, + "neu": 0.392, + "neg": 0.608, + "_id": { + "$oid": "6711d562cd60fca157e5cf11" + } + }, + { + "text": "I liked Rytir. He was really helpful in office hours, which I went to a lot because the assignments are really hard. The class is tough, but Rytir makes it easier.", + "pos": 0.211, + "neu": 0.717, + "neg": 0.072, + "_id": { + "$oid": "6711d562cd60fca157e5cf12" + } + }, + { + "text": "This professor is able to condense pretty dense material in the textbook into manageable lectures. Any big proofs or algorithms are to be derived step by step on the exams. Try not to skip steps. Any problem solving questions come from the book. Approachable and during class he'll try and reexplain things if he sees that the class is a bit lost.", + "pos": 0.082, + "neu": 0.845, + "neg": 0.073, + "_id": { + "$oid": "6711d562cd60fca157e5cf13" + } + }, + { + "text": "Truly the worst I've ever had. And believe me, there are a lot of bad profs here. Anyways, his lectures suck because he reads slides without digesting any of the info. His exams are a killer. Either you get full points or you get nothing. I learned nothing in this course. Long miserable nights are the reason I passed this class. New prof is needed!", + "pos": 0.036, + "neu": 0.736, + "neg": 0.228, + "_id": { + "$oid": "6711d562cd60fca157e5cf14" + } + }, + { + "text": "He is terrible... His exams are always more difficult than the lecture which i dont know why. Most questions on the exam are definitions and proofs, BUT for one of the proof on the exam, i wrote down the exactly same thing as what he said in class and maybe even more specify but i still did not receive full point... i dont know why.... AVOID HIM", + "pos": 0.044, + "neu": 0.9, + "neg": 0.056, + "_id": { + "$oid": "6711d562cd60fca157e5cf15" + } + }, + { + "text": "He's a tough grader and the lecture is full of definitions,theorems and proofs. 1 midterm and final and couple of h.w. Exams are based on lecture and maybe 1-2 math problems. Would not recommend if you value your gpa and time. You'll have to sacrifice sleep to memorize all the material because he cuts a lot of points if your answers aren't perfect.", + "pos": 0.034, + "neu": 0.804, + "neg": 0.162, + "_id": { + "$oid": "6711d562cd60fca157e5cf16" + } + }, + { + "text": "Worst professor; just regurgitates notes taken straight from the textbook. Lectures are long and boring, so I stopped coming after the midterm. Got perfect on midterm by cramming for 2 days before. Better off not going to class + studying the textbook on your own (but it is VERY dense). Graded just on midterm (40%) and final (60%).", + "pos": 0.09, + "neu": 0.818, + "neg": 0.091, + "_id": { + "$oid": "6711d562cd60fca157e5cf17" + } + }, + { + "text": "This course covers a lot of material than can be very difficult to dumb down so that a beginner can understand. That being said, I thought Rytir did a decent job. He explained the material well. If you're getting lost make sure to ask questions or just read the textbook. His lectures are a bit boring, but try to pay attention. Tests are fair. GL !", + "pos": 0.137, + "neu": 0.744, + "neg": 0.119, + "_id": { + "$oid": "6711d562cd60fca157e5cf18" + } + }, + { + "text": "Very good lecture - I loved it. For some reason there was a lot of math, but okay.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf19" + } + }, + { + "text": "Pavels exams are a complete joke. Most of the exam is just defining concepts you covered in class, along with some intermediate level problems similar to the book. Easy A, one of the easiest exams in 104.", + "pos": 0.181, + "neu": 0.757, + "neg": 0.062, + "_id": { + "$oid": "6711d562cd60fca157e5cf1a" + } + }, + { + "text": "Was awful from day one to the last minute of the last day. He was a very harsh grader and a confusing lecturer. I feel he curved for some people and not for others. So besides being harsh, he's also inconsistent. He very strongly shows that he doesn't like his job. I'm scared going into data structures without having solid discrete math knowledge.", + "pos": 0.032, + "neu": 0.732, + "neg": 0.236, + "_id": { + "$oid": "6711d562cd60fca157e5cf1b" + } + }, + { + "text": "A VERY harsh grader, but also a VERY lenient curver - my 89 got curved to an A+. If you study properly, you will have a stronger grasp of the content than students with any other 104 professor, which makes you more prepared for later classes like Data Structures or Algorithms. Everything comes from the Grimaldi book if his accent is that bad.", + "pos": 0.175, + "neu": 0.732, + "neg": 0.093, + "_id": { + "$oid": "6711d562cd60fca157e5cf1c" + } + }, + { + "text": "It was ok. He has very limited English and cannot explain matireal properly.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d562cd60fca157e5cf1d" + } + }, + { + "text": "I hate this \"professor\" with a very strong passion! I learned nothing from him because of his thick accent and poor lectures. He made so many mistakes during lectures and still expected us to nail the proofs perfectly on exams. So unfair!! I worked so hard for this class just to get a \"B\". Had to sacrifice study time for other important classes.", + "pos": 0.155, + "neu": 0.649, + "neg": 0.196, + "_id": { + "$oid": "6711d562cd60fca157e5cf1e" + } + }, + { + "text": "I got a 50% on the midterm and I asked him what to expect for final letter grade if I do a little better on the final. His answer: B or B+. Turns out he lied and I got a D even after I got 60% on the final. Do not take him! EVER!! I now have to sacrifice a scholarship because of him. He's the perfect example of where hard work doesn't pay off!", + "pos": 0.106, + "neu": 0.846, + "neg": 0.048, + "_id": { + "$oid": "6711d562cd60fca157e5cf1f" + } + }, + { + "text": "Hard to predict the final grade, so don't take him if you don't want to risk your GPA. I haven't read the textbook at all, his lectures are boring but the material is sufficient and good. Tests cover only what was in the class. If majority of the class asks, he'll give partial credits and even curve. Usually comes unprepared for the class and late.", + "pos": 0.119, + "neu": 0.826, + "neg": 0.055, + "_id": { + "$oid": "6711d562cd60fca157e5cf20" + } + }, + { + "text": "Avoid at all costs. Very very harsh grader and if you care about your gpa then take someone else. If you mess up a little on the midterm then he'll fail you and you'll most likely end up with an F after the semester. What logic? Midterm and final are both memorizing proofs and good luck memorizing around 30 of them and he'll still deduct points.", + "pos": 0.114, + "neu": 0.74, + "neg": 0.146, + "_id": { + "$oid": "6711d562cd60fca157e5cf21" + } + }, + { + "text": "Please do not take this guy, if you take this professor will hate yourself for the whole semester and you will probably fail. He is the WORST professor I ever met.", + "pos": 0.056, + "neu": 0.653, + "neg": 0.291, + "_id": { + "$oid": "6711d562cd60fca157e5cf22" + } + }, + { + "text": "Avoid this guy if possible. His exams dont make any sense. He just wants you to memorize proofs which is dumb, you dont even utilized discrete math. Doesn't know how to properly answer questions and doesn't really care about your well being. Just memorize the proofs and pray a lot.", + "pos": 0.076, + "neu": 0.779, + "neg": 0.145, + "_id": { + "$oid": "6711d562cd60fca157e5cf23" + } + }, + { + "text": "His exams aren't bad but he enjoys taking off points like hell. If you mess up either exam, your grade falls by at least 1 letter so WATCH OUT!!. Very arrogant and poor at teaching. He has a very thick accent and speaks like a sloth. My worst experience in CCNY!", + "pos": 0.16, + "neu": 0.523, + "neg": 0.317, + "_id": { + "$oid": "6711d562cd60fca157e5cf24" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d562cd60fca157e5cf26" + }, + "professor_name": "Justine Reyes", + "rating": 4.7, + "department": "Art department", + "comments": [ + { + "text": "Justine is probably one of the best professor I've ever had. I worked hard and made lots of mistakes but she worked with me through my downfalls. I learned so much from her in her lectures as well as on a one on one basis. She cares to see her students learn and improve but you will not pass unless you show sufficient improvement.", + "pos": 0.222, + "neu": 0.74, + "neg": 0.038, + "_id": { + "$oid": "6711d562cd60fca157e5cf27" + } + }, + { + "text": "Nice professor and every helpful for digital photography ,thank.", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf28" + } + }, + { + "text": "I have learned so much from Professor Reyes! She really pushes you for better content. This class helped me learned about my unconscious self and what things that interested me. I slowly find and developed my own style. Assignment had help me better at framing and story telling.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf29" + } + }, + { + "text": "Professor Reyes is very good teaching her way on how to be better in photography and is interested on the students to better.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf2a" + } + }, + { + "text": "This professor just so nice, take her class if you want improve your digital photography skill", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf2b" + } + }, + { + "text": "Taught me a lot about digital photography, editing on Adobe Lightroom and Photoshop, and printing my own images. Professor definitely pushes you in a good way and gives great feedback and insight to your photos and your shooting style, as well as editing and printing tips.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf2c" + } + }, + { + "text": "Requires to put in a lot of work outside of class as well as a lot of money.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf2d" + } + }, + { + "text": "One of the best. Very hands-on, and helpful. Gives good constructive critism and guidance. 10/10 would recommend!", + "pos": 0.499, + "neu": 0.501, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf2e" + } + }, + { + "text": "Very helpful and honest. Takes up a lot of time but its all worth it", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf2f" + } + }, + { + "text": "I regret to inform that Justine is an amazing professor who FORCED me to get out of my comfort zone. I was very salty about that. HOWEVER, by the end of the semester I discovered a new style of photography which I very much so enjoyed so I thank her for pushing me, a decent photographer to become an amazing photographer. She's got quite a character", + "pos": 0.21, + "neu": 0.711, + "neg": 0.079, + "_id": { + "$oid": "6711d562cd60fca157e5cf30" + } + }, + { + "text": "She's a very good professor. She has a passion for photography and her students as well. You can shoot whatever you want but be sure to be on time and don't miss any classes. She provides good feedback. Lots of photos per week but it will be worth it in the end if you work hard.", + "pos": 0.263, + "neu": 0.687, + "neg": 0.049, + "_id": { + "$oid": "6711d562cd60fca157e5cf31" + } + }, + { + "text": "You learn a lot in the course, very caring and understanding but holds high expectations, helps you improve in any area you lack, classes are fun and she is funny. Overall great professor!", + "pos": 0.451, + "neu": 0.493, + "neg": 0.056, + "_id": { + "$oid": "6711d562cd60fca157e5cf32" + } + }, + { + "text": "professor Reyes is amazing she works with everyone's different level of photography even if you just started or have a few years under your belt. very helpful and very inspiring with alot of creative freedom. just alot of homework and don't ever miss a class or be late.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf33" + } + }, + { + "text": "great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf34" + } + }, + { + "text": "The best thing that I could have ever done was to take this class. This is the best professor ive ever had in my college career. I love this professor, and you'd be stupid, nay, idiotic for you not to take any classes with her. She is a sweetheart and VERY helpful. Your skills as a photographer as well as your photoshop skills will skyrocket.", + "pos": 0.263, + "neu": 0.656, + "neg": 0.081, + "_id": { + "$oid": "6711d562cd60fca157e5cf35" + } + }, + { + "text": "The best photography professor in the EDM in City College .", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf36" + } + }, + { + "text": "Best Photography professor in the department. If you are willing to work and work , you should be good. don't be late to class. Great Feedback. Fun class", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf37" + } + }, + { + "text": "Prof. Reyes' class is fun & productive. U do need to show up every class, and do ur HWs. U get to choose wat u want to shoot, and prof. R would definitely gives u good feedbacks and helps you to achieve ur goal. She cares her students, she would be happy for u if u get the most out of the class. Just do her HW, if she happy, ur GPA happy, u happy.", + "pos": 0.315, + "neu": 0.66, + "neg": 0.025, + "_id": { + "$oid": "6711d562cd60fca157e5cf38" + } + }, + { + "text": "gives useful critiques to help you build a great final portfolio. you will learn how to use photoshop and lightroom, also requires outside work in the form of shooting and printing", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf39" + } + }, + { + "text": "You're really gonna like this professor if you love digital photography. You are going to spend money and time for this class. Really worth the time, and made me want to keep doing photography. Disclaimer: you might disagree with some of her choices, but you can work around that if you're creative enough.", + "pos": 0.185, + "neu": 0.785, + "neg": 0.03, + "_id": { + "$oid": "6711d562cd60fca157e5cf3a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d562cd60fca157e5cf3c" + }, + "professor_name": "David Tillyer", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "Normally, this class is one of the easiest courses in the Engineering curriculum. But with this professor, expect that notion to be flipped - it will be extremely work intensive. The good thing is that he's straightforward, clear, and simple. Do the work, you get a score, then your grade will directly correspond to your total score - no deviations.", + "pos": 0.134, + "neu": 0.819, + "neg": 0.047, + "_id": { + "$oid": "6711d562cd60fca157e5cf3d" + } + }, + { + "text": "He is the donald trump of english teachers! DONT take him!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf3e" + } + }, + { + "text": "Professor Tillyer is a bit of an ass. He gives a lot of tedious work that really takes up your time. I had to carry my entire group, and I had to do all the work. He violates on assignments and takes off points for really silly stuff. If you want an A in this class take any other professor. This class takes up a lot of study time. DONT TAKE HIM!!!!", + "pos": 0.034, + "neu": 0.864, + "neg": 0.101, + "_id": { + "$oid": "6711d562cd60fca157e5cf3f" + } + }, + { + "text": "Much of graded work is goup and not personal. Success relies on others. Projects designed to keep students busy but are not very informative. Tough grader, who only rarely gives full credit for projects. Will bring down your GPA.", + "pos": 0.044, + "neu": 0.844, + "neg": 0.112, + "_id": { + "$oid": "6711d562cd60fca157e5cf40" + } + }, + { + "text": "GIVES LOTS OF HOMEWORK!!!!! VERY TOUGH GRADER. He is approachable tho. doesn't give any extra credit, very strict. Choose your group members wisely.", + "pos": 0.22, + "neu": 0.671, + "neg": 0.109, + "_id": { + "$oid": "6711d562cd60fca157e5cf41" + } + }, + { + "text": "Hes a good teacher. only problem i really had was that 52% of your grade is group projects with a group picked early into the year so if you have a bad group good luck. his lectures are pointless but you can easily do other work. he gives quizzes on the textbook which he heavily uses. assigns an engineering based research paper", + "pos": 0.13, + "neu": 0.81, + "neg": 0.059, + "_id": { + "$oid": "6711d562cd60fca157e5cf42" + } + }, + { + "text": "In class, he uses most of the time to explain the material which you dont really need to know. There are few in-class assignments which are easy and you should have no problem with them. There are quizzes straight from textbook. The homeworks are not hard but time consuming. He is a bit hard grader. DO NOT WAIT UNTIL LAST DAY TO DO THE FINAL PAPER!", + "pos": 0.094, + "neu": 0.883, + "neg": 0.023, + "_id": { + "$oid": "6711d562cd60fca157e5cf43" + } + }, + { + "text": "He's a very clear cut professor. Boring at times, but he is approachable if you are polite and gives feedback on each assignment. However, the amount of work you get is too much if you're taking 16 credits. There's weekly assignments, a 20+ page research report, and group work all semester. The grading policy is out of 100 points, so be careful.", + "pos": 0.111, + "neu": 0.84, + "neg": 0.049, + "_id": { + "$oid": "6711d562cd60fca157e5cf44" + } + }, + { + "text": "Professor Tillyer is a great professor but don't take him lightly. His grading policy is strict and you have to work for a good grade. There's A LOT of group work so choose your members wisely, you'll be writing a 30 page single spaced report with them. Overall I enjoyed the class and learned a lot of useful things though the grading was tough.", + "pos": 0.235, + "neu": 0.742, + "neg": 0.022, + "_id": { + "$oid": "6711d562cd60fca157e5cf45" + } + }, + { + "text": "One of the best professors of the City College of New York. The professor explains material clearly. He explains course expectations clearly. Expect a lot of homework. Pick a good group because most of the homework are group projects.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf46" + } + }, + { + "text": "Not the best nor the worst. Tough grading on the homework but tells you what you did wrong. Quizzes given every week on a chapter in the book. Most homeworkproject are group work so choose partners you can work with. This course is time consuming but if you keep up you will receive a good grade.", + "pos": 0.111, + "neu": 0.791, + "neg": 0.098, + "_id": { + "$oid": "6711d562cd60fca157e5cf47" + } + }, + { + "text": "TONS OF MEMOS!!!! BE READY FOR HOMEWORK AND QUIZZES ON CHAPTERS FROM THE BOOK THAT EXPECTS YOU TO READ. GROUP PROJECT AND RANDOM ASSIGNMENTS. HE HAS A GOOD PERSONALITY THOUGH. ALMOST ALWAYS AVAILABLE WHEN YOU EMAIL HIM.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf48" + } + }, + { + "text": "Professor Tillyer is not the worst professor. His grading policy is tough though. Also, 50% of the work is group projects, so make sure to pick a good group or your grade could be affected badly.", + "pos": 0.195, + "neu": 0.667, + "neg": 0.138, + "_id": { + "$oid": "6711d562cd60fca157e5cf49" + } + }, + { + "text": "Average teacher. The book is fantastic, but his lectures rarely cover any material at all. People complain that assignments are assigned at midnight, but honestly the assignments are never more than a page. Worst part is the strict grading- not harsh, but unforgiving. Quizzes pull obscure parts of text and are only a point, but add up quick.", + "pos": 0.132, + "neu": 0.743, + "neg": 0.125, + "_id": { + "$oid": "6711d562cd60fca157e5cf4a" + } + }, + { + "text": "Only take this class if you are willing to spend 80% of your school time working on assignmentsreadingdoing group work. In order to pass this class, you have to get a good score on every single homeworktest etc. He grades by points which add up to 100 at the end of the course. Tons of assignments, boring class and oh, buy the textbook.", + "pos": 0.044, + "neu": 0.921, + "neg": 0.035, + "_id": { + "$oid": "6711d562cd60fca157e5cf4b" + } + }, + { + "text": "Very tough grader and very frequent homeworks, papers, etc. He gives a LOT of work AND grades harshly. Plus, there is no curve at all. Avoid at all costs, this class will make your GPA suffer even if you do all the work.", + "pos": 0.0, + "neu": 0.801, + "neg": 0.199, + "_id": { + "$oid": "6711d562cd60fca157e5cf4c" + } + }, + { + "text": "Be ready to read the textbook and write two letters andor memo (1 page) every week. But he is very organized and clear. He posts online the things that will be done during the week, so you know what to expect. Have the textbook, PDF is fine. Extremely understanding and helpful.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d562cd60fca157e5cf4d" + } + }, + { + "text": "If you take a lot of math and science course along with this class, don't choose him!! Lots of HW assignments, 1 proposal (10 pages), 1 final report (30 pg), along with 2 assignments per week. If English is your 2nd language, don't expect an A. Even if you go to writing center every day, you will still get 25 pts off your hw grade for no reason", + "pos": 0.0, + "neu": 0.96, + "neg": 0.04, + "_id": { + "$oid": "6711d562cd60fca157e5cf4e" + } + }, + { + "text": "Tillyer is a really good professor who pushes his students to be proficient technical writers. If you are a lazy student, do not take this prof. as you would have to read a lot and do several assignments and quizzes. The class is 50% group work so be ready to collaborate with others in the class. Excellent professor, Would take again.", + "pos": 0.14, + "neu": 0.824, + "neg": 0.036, + "_id": { + "$oid": "6711d562cd60fca157e5cf4f" + } + }, + { + "text": "Meh, he's ok.", + "pos": 0.0, + "neu": 0.606, + "neg": 0.394, + "_id": { + "$oid": "6711d562cd60fca157e5cf50" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d563cd60fca157e5cf52" + }, + "professor_name": "Tim Cavale", + "rating": 4, + "department": "Speech department", + "comments": [ + { + "text": "I wanted to register for his speech class because my friend took it and loved him but he retired. The woman I had was good but I was disappointed that I couldn't take his class.", + "pos": 0.193, + "neu": 0.712, + "neg": 0.095, + "_id": { + "$oid": "6711d563cd60fca157e5cf53" + } + }, + { + "text": "NOT RECOMMENDED. Makes fun of people in class.", + "pos": 0.0, + "neu": 0.554, + "neg": 0.446, + "_id": { + "$oid": "6711d563cd60fca157e5cf54" + } + }, + { + "text": "No textbook, no exams ,speeches that requires some prep time but not like other classes, easy grader, lets you contact him outside of class. Believe me it could be a lot worse. Plus he can be very funny at times. He's retiring though so it hardly matters what anyone thinks : )", + "pos": 0.148, + "neu": 0.696, + "neg": 0.156, + "_id": { + "$oid": "6711d563cd60fca157e5cf55" + } + }, + { + "text": "Most people seem to like him and his classes fill up fast so he must be doing something right.", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf56" + } + }, + { + "text": "He is a good teacher. I hate public speaking but I got an A- and in the end I learned what I needed to know.", + "pos": 0.071, + "neu": 0.842, + "neg": 0.086, + "_id": { + "$oid": "6711d563cd60fca157e5cf57" + } + }, + { + "text": "I aced his class. I believe because English is my native language. You speak your mind when you don't have issues with articulating the words. But I can understand that non native speakers will have a hard time articulating their words and speak out what is in their brain. So in this situation the deal lies in the hands of the Professor.", + "pos": 0.0, + "neu": 0.919, + "neg": 0.081, + "_id": { + "$oid": "6711d563cd60fca157e5cf58" + } + }, + { + "text": "I got away with the class. I passed but didn't do so well. I also think that he is biased especially if English is not your native language. Native language speakers aced the class because they don't struggle with the language but we do. So it is very hard to get a decent grade from him. Other Professors at CCNY are more understanding. Dont take.", + "pos": 0.084, + "neu": 0.85, + "neg": 0.065, + "_id": { + "$oid": "6711d563cd60fca157e5cf59" + } + }, + { + "text": "He is a good teacher and time goes by quickly. There is no textbook and no tests so it's just up to how well you do on your speeches. He is an easy grader but you really have to follow his guidelines. He will let you know on the final day of class what your grade is and you can discuss it with him. He is very very fair.", + "pos": 0.123, + "neu": 0.835, + "neg": 0.042, + "_id": { + "$oid": "6711d563cd60fca157e5cf5a" + } + }, + { + "text": "I took him in my senior year when I was ready to deal with a public speaking class. The class was fun and a break from the harder classes. I am still in touch with him. He is a professional actor and filmmaker.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf5b" + } + }, + { + "text": "You won't work too hard and you will learn a lot. Take him because he is retiring soon. I am naturally shy but I got an A in the class. How? I tried and got rewarded for my efforts.", + "pos": 0.127, + "neu": 0.838, + "neg": 0.035, + "_id": { + "$oid": "6711d563cd60fca157e5cf5c" + } + }, + { + "text": "He is a really nice professor from start to finish but you have to listen to what he says. He is very clear in stating what you need to do to get a good grade in the class. I loved him!!!!", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf5d" + } + }, + { + "text": "Really good prof and not that hard even if you are the nervous or shy type. Nerves don't matter but preparation does. if you try he rewards you.", + "pos": 0.22, + "neu": 0.623, + "neg": 0.157, + "_id": { + "$oid": "6711d563cd60fca157e5cf5e" + } + }, + { + "text": "If you miss your speech you get 10% off that grade which amount to not much and he gives extra credit for visual aids. He is very fair!!!", + "pos": 0.186, + "neu": 0.765, + "neg": 0.049, + "_id": { + "$oid": "6711d563cd60fca157e5cf5f" + } + }, + { + "text": "He is not all that bad. He is okay teacher but as a person he is not so good. Here is why. You miss your speech on your designated date then you get a zero. Now even if your whole family dies in a disaster. He does not care no matter WHAT. NO EXCEPTIONS! So you decide.", + "pos": 0.061, + "neu": 0.674, + "neg": 0.265, + "_id": { + "$oid": "6711d563cd60fca157e5cf60" + } + }, + { + "text": "I liked him and I liked the class.", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf61" + } + }, + { + "text": "Not an automatic A but not that hard either. The students in the class were really good which inspired the shy students to do well. He creates a nice friendly atmosphere in the class. No exams or textbook to read either.", + "pos": 0.389, + "neu": 0.524, + "neg": 0.087, + "_id": { + "$oid": "6711d563cd60fca157e5cf62" + } + }, + { + "text": "Who knew public speaking could be so much fun. I'm glad I took it (well yeah it was required but I'm glad anyway). It was way better than some of the other classes I had to suffer through. You can be nervous and it won't make a difference in your grade. He just wants to see your effort.", + "pos": 0.21, + "neu": 0.688, + "neg": 0.102, + "_id": { + "$oid": "6711d563cd60fca157e5cf63" + } + }, + { + "text": "Alright it's speech but still it's a good class and worth taking if you are ever going to have to speak in public. He is a good teacher.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf64" + } + }, + { + "text": "He is one of the best profs I had at CCNY. He's also the funniest. He takes the class seriously though so don't mess up. An A is a very reasonable goal.", + "pos": 0.255, + "neu": 0.702, + "neg": 0.043, + "_id": { + "$oid": "6711d563cd60fca157e5cf65" + } + }, + { + "text": "I hate public speaking but at least now I know what I have to do thanks to him. I got a B which in his class is the low end of the spectrum. He gives out a lot of A grades. And he can be very funny when the mood hits him so the time goes by really quickly.", + "pos": 0.119, + "neu": 0.807, + "neg": 0.073, + "_id": { + "$oid": "6711d563cd60fca157e5cf66" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d563cd60fca157e5cf68" + }, + "professor_name": "Mark Hoffman", + "rating": 4.6, + "department": "Humanities department", + "comments": [ + { + "text": "Professor Hoffman is a great, caring professor if you're looking to learn specifically about racial and gender discrimination from a literary point of view. Since this class goes into very little American literature, the class was pretty disappointing for me based on content, but I did learn some general writing, reading and research skills.", + "pos": 0.115, + "neu": 0.85, + "neg": 0.036, + "_id": { + "$oid": "6711d563cd60fca157e5cf69" + } + }, + { + "text": "Be very wary of professors like this claiming to teach literature, but who are actually a part of the woke cult. He does not teach literature, he talks about his outrageous opinions on race, gender, etc. to gain wokeness points and deludes students. He chooses writers based on diversity. Don't be fooled by his eloquent speech and personality.", + "pos": 0.136, + "neu": 0.804, + "neg": 0.06, + "_id": { + "$oid": "6711d563cd60fca157e5cf6a" + } + }, + { + "text": "Prepare to read pages after pages and not having time for yourself or your other class assignments.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf6b" + } + }, + { + "text": "Professor Hoffman is a really fast grader and gives great feedback. He was really nice too and tries hard to make the class engaged. There were 4 essay in total (3-5) pages, text size 14 cuz he prefers it that way. Final was the easiest too. It's honestly an easy and bearable class, just get all your readings and essays done.", + "pos": 0.251, + "neu": 0.73, + "neg": 0.019, + "_id": { + "$oid": "6711d563cd60fca157e5cf6c" + } + }, + { + "text": "Professor Hoffman is a wonderful professor. He is very nice and the topics we discuss in this course were very engaging. He does assign readings and sometimes more than two, in which you have to read them well. He only gives three assignments and explains them so well.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf6d" + } + }, + { + "text": "Nice Professor but inconsiderate in my opinion. He doesnt count participation as part of final grade which is not ideal or practical especially with online classes. He is more on the stringent side with grading so be aware. I worked really hard in this class and didnt get the grade I felt I deserved but the course was interesting.", + "pos": 0.079, + "neu": 0.783, + "neg": 0.138, + "_id": { + "$oid": "6711d563cd60fca157e5cf6e" + } + }, + { + "text": "Professor Hoffman is someone you should take if you want to pass and get good grades in world humanities. There is no final exam. His class includes 2 papers and 2 in class or off class assignments. Participation is minimum and takes attendance rarely. The poem and novel are very interesting.", + "pos": 0.165, + "neu": 0.797, + "neg": 0.038, + "_id": { + "$oid": "6711d563cd60fca157e5cf6f" + } + }, + { + "text": "Mark Hoffman is the best professor I have ever had. He is incredibly kind and really cares about his students. You will get a great deal from this class if you do the reading, thinking and listening. I only needed to take his 101 class for my major but decided to take his 102 class this semester as well just because I loved it so much.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf70" + } + }, + { + "text": "Best professor I have so far.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf71" + } + }, + { + "text": "Amazing teach, he is very insightful. Do your reading and try to participate in class and you should do fine. You do have to write essays, so make sure you get some practice or have a friend look it over to proofread if writing is not your strong suit. I would definitely take him again.", + "pos": 0.214, + "neu": 0.745, + "neg": 0.041, + "_id": { + "$oid": "6711d563cd60fca157e5cf72" + } + }, + { + "text": "He's great at choosing readings for the class. However, he could not go a day without sharing political beliefs about everything! I took to the class to read classical novels but instead ended up being lectured on politics. Not good.", + "pos": 0.057, + "neu": 0.829, + "neg": 0.114, + "_id": { + "$oid": "6711d563cd60fca157e5cf73" + } + }, + { + "text": "All around a great professor. FASTEST GRADER EVER. He gives he best feedback on papers. Night-time class was great because he always cracked jokes to keep us laughing. This class makes you appreciate reading a little more than you have. Read the books , and just show up to class and it'll be a good experience.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf74" + } + }, + { + "text": "Prof. Hoffman is very clear since day one. He explains what the class will be like, how he will grade, and everything you need for the class. He gives excellent feedback and tries to go over the essay with you so you can improve on the next one. You will learn A LOT from his class! Definitely recommend.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf75" + } + }, + { + "text": "Prof. Hoffman is one of the few very humble down to earth city college needs to invest in professors like him. He really wants to do good and helps with your papers and understanding the readings it was a fun class. Honestly time flew in his lectures, i never had to look at my phone to check the time", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf76" + } + }, + { + "text": "He is awesome. Very humble and honest. I loved the feedback on papers he really read your paper and wrote his thoughts on it and gave you ideas on how to expand or fix a topic. He is not a stressful person to have in the class he is really great. Honestly there aren't many Professors in 2016 like him he does his part as a Professor.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf77" + } + }, + { + "text": "very informative and interesting lectures but only if you read the assigned text before hand. you wouldn't understand anything if you didn't read the assigned book. alot of writing but you have enough time to write that. do good on the research paper and participate.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf78" + } + }, + { + "text": "One of the most helpful recitation professors-wish he would teach the class. Explains everything, clear criteria for papers. Understanding. Must attend his recitation section. As long as you read and prove it in your papers by doing the work, you'll pass. Definitely recommend him.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf79" + } + }, + { + "text": "A truly great professor.", + "pos": 0.778, + "neu": 0.222, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf7a" + } + }, + { + "text": "You read a lot of classic literature and discuss the important themes. This is a very important class for becoming a well-rounded individual. Just read the assigned books and you'll do fine.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf7b" + } + }, + { + "text": "350 characters are not enough to explain how great of a professor Mark Hoffman is. DO ALL OF THE READING, ON TIME!!! Its imperative to stay on course with the readings because of the amount of papers you will have to write. He is very helpful in providing insight with the reading material and gives great feedback with the papers.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d563cd60fca157e5cf7c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d564cd60fca157e5cf7e" + }, + "professor_name": "Bianca Santoro", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "TERRIBLE PROFESSOR. DO EVERYTHING YOU CAN TO STAY AWAY. Is only nice during lectures and her tests are nothing like questions you have seen. Makes it extremely difficult, while making mistakes on her own as well. Confusing & the worst math professor I have had yet. She will make your experience in math very frustrating!!!! gives no extra credit!", + "pos": 0.062, + "neu": 0.606, + "neg": 0.332, + "_id": { + "$oid": "6711d564cd60fca157e5cf7f" + } + }, + { + "text": "was inconsistent, half of her lectures were prerecorded. her tests had incorrect answers count as negative credit so all possible answers added up to 0. not compassionate at all, went off on students she believed that cheated despite having no proof. DO NOT TAKE", + "pos": 0.084, + "neu": 0.734, + "neg": 0.181, + "_id": { + "$oid": "6711d564cd60fca157e5cf80" + } + }, + { + "text": "Teaching math online is not easy but I found Prof. Santoro to be one of the best in CCNY. Online exams were very conceptual with little partial credit, which wasn't great. But she explains concepts clearly, writes great notes that she shared with the class, and she really cares about her students, even holding extra office hours before exams.", + "pos": 0.309, + "neu": 0.617, + "neg": 0.074, + "_id": { + "$oid": "6711d564cd60fca157e5cf81" + } + }, + { + "text": "Great teacher, horrible exam giver. The exams are more conceptual-based and less computational. They are doable if you go over lecture notes, do all the problems she suggests from the textbook, WebWork, and previous final exams, however, it is too much to do (300+ problems). Also, there were both pre-recorded and live lectures (time-consuming).", + "pos": 0.101, + "neu": 0.761, + "neg": 0.138, + "_id": { + "$oid": "6711d564cd60fca157e5cf82" + } + }, + { + "text": "Professor Santoro's class was difficult but not impossible. I spent many more hours than expected reading and repeating problem after problem. She expects a lot rightfully and tries her best to teach you how to study for math and really for any college course.", + "pos": 0.106, + "neu": 0.732, + "neg": 0.162, + "_id": { + "$oid": "6711d564cd60fca157e5cf83" + } + }, + { + "text": "Very hard in class exams.", + "pos": 0.0, + "neu": 0.703, + "neg": 0.297, + "_id": { + "$oid": "6711d564cd60fca157e5cf84" + } + }, + { + "text": "It is best not to take her online since she made exams harder by changing the style of exams into multiple-answers and concept heavy. Her notes get confusing but mainly because it is linear algebra. She can definitely explain better in office hours and as long as you have concise notes, you will pass.", + "pos": 0.163, + "neu": 0.814, + "neg": 0.024, + "_id": { + "$oid": "6711d564cd60fca157e5cf85" + } + }, + { + "text": "Good person/teacher. Bad professor, terrible grader. Lots of homework that doesn't prepare students for her CONCEPTUAL tests. You'll barely be doing any actual math on the exams, which leads students to be unprepared and fail. Gets passive aggressive when students ask for curve after the class got failing average on final. Studying won't help much.", + "pos": 0.068, + "neu": 0.682, + "neg": 0.25, + "_id": { + "$oid": "6711d564cd60fca157e5cf86" + } + }, + { + "text": "Bad teacher, no one can understand her lecture and she gives multiple answers exams but will never give you a good grade. When you get a high grade on a multiple-choice exam she calls you to an individual meeting and finds something you don't know and make you fail. DONT TAKE HER CLASS SHES HORRIBLE.", + "pos": 0.056, + "neu": 0.732, + "neg": 0.212, + "_id": { + "$oid": "6711d564cd60fca157e5cf87" + } + }, + { + "text": "Do lots of homework for only 10% there is no class quizzes only 2 midterms determine your future with 50% and a heavy/haaaaaaard final that have 40% of grades Inperson exams are like 1000000% easy for what we have learnt but it's impossible to pass we all struggle now don't take her during online", + "pos": 0.064, + "neu": 0.858, + "neg": 0.078, + "_id": { + "$oid": "6711d564cd60fca157e5cf88" + } + }, + { + "text": "BAD Grading system definitely not recommended again", + "pos": 0.216, + "neu": 0.319, + "neg": 0.465, + "_id": { + "$oid": "6711d564cd60fca157e5cf89" + } + }, + { + "text": "Her as a professor, when it comes to lectures, she's great. However, in the middle of the semester, she decided to do recorded lectures which led us, students, to procrastinate. And her EXAMS! sheesh, the questions weren't anything like the material from her lectures or homework. It made us struggle, especially because everything is online.", + "pos": 0.067, + "neu": 0.855, + "neg": 0.077, + "_id": { + "$oid": "6711d564cd60fca157e5cf8a" + } + }, + { + "text": "If you are thinking to take with her online YOU BETTER NOT YOU will fail the course. ROUGH exams and the grading system is tougher.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cf8b" + } + }, + { + "text": "You won't pass the exams by doing the assigned homework or taking notes in class. Since exams are very different from what you will learn in class. During online classes, this is your worst choice for calc 1.", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d564cd60fca157e5cf8c" + } + }, + { + "text": "If you're taking her during remote learning, do yourself a favor and find another professor. Her tests are impossible. She has a grading system where you lose points for choosing wrong answers. Tests are nothing like the homework or in-class examples. Halfway into the semester, she switched to pre-recorded lectures and only does class once a week.", + "pos": 0.042, + "neu": 0.833, + "neg": 0.124, + "_id": { + "$oid": "6711d564cd60fca157e5cf8d" + } + }, + { + "text": "This is my second semester taking a class with Prof. Santoro, and taking complex variables with her was definitely the better experience. It's super obvious that she knows the material inside and out, and her excitement about the content is contagious. That being said, she does not make the course easy, but if you do the work you'll be fine.", + "pos": 0.186, + "neu": 0.789, + "neg": 0.025, + "_id": { + "$oid": "6711d564cd60fca157e5cf8e" + } + }, + { + "text": "Professor Santoro teachers calculus really well. Her teaching style is very nice but at times she can get a bit too theoretical when teaching. Her tests are based off of the homework and what you learn in class. The exams matter but the final matters the most though. She can grade a little tough on exams but is helpful if you are confused.", + "pos": 0.139, + "neu": 0.8, + "neg": 0.061, + "_id": { + "$oid": "6711d564cd60fca157e5cf8f" + } + }, + { + "text": "Santoro is a good professor. She teaches well, and if you ask her a question during lecture, she'll answer it no matter what. Calc I isn't an easy class though, even if you are good at math. The best way to learn is to do extra questions outside of class (learned that the hard way after I failed my first 2 exams). Study hard, DO THE HOMEWORK.", + "pos": 0.152, + "neu": 0.728, + "neg": 0.12, + "_id": { + "$oid": "6711d564cd60fca157e5cf90" + } + }, + { + "text": "Prof. Santoro knows her stuff. She wants to help you pass, giving additional quizzes she can drop later on. In class, she makes time to answer any questions regarding homework Web Assign. Her lectures are mostly clear though some may complain about her slightly different methods for some things. I struggle with math and taking her helped me pass.", + "pos": 0.114, + "neu": 0.784, + "neg": 0.102, + "_id": { + "$oid": "6711d564cd60fca157e5cf91" + } + }, + { + "text": "Professor Santoro is awesome. I enjoyed going to every class and learning from her. She loves to give proofs and answering homework questions. She approaches the subject from a unique angle. If you are doing your practice sets you will be really prepared. Calc is hard. You need to study before class and practice. Would take again. Great Teacher!!!!", + "pos": 0.254, + "neu": 0.726, + "neg": 0.019, + "_id": { + "$oid": "6711d564cd60fca157e5cf92" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d564cd60fca157e5cf94" + }, + "professor_name": "William Crain", + "rating": 3.1, + "department": "Psychology department", + "comments": [ + { + "text": "Constantly off-topic. He doesn't know how to use BB. I'm sure he's great in person but taking his class online was a huge drag. The readings are all over the place. Nice guy, but the course doesn't have to be synchronized.", + "pos": 0.221, + "neu": 0.732, + "neg": 0.048, + "_id": { + "$oid": "6711d564cd60fca157e5cf95" + } + }, + { + "text": "Crain is a very odd man who is not everyone's cup of tea but I feel like the ratings on him are not fair! I took him twice and although it was tough you literally get what you put in. His lectures were very scattered but he does clearly say what you need to do to pass the class (READ).", + "pos": 0.104, + "neu": 0.808, + "neg": 0.088, + "_id": { + "$oid": "6711d564cd60fca157e5cf96" + } + }, + { + "text": "Honestly, I am so glad I had this class in the middle of my day because it was a great place to nap. He's old and a bit monotoned so his lectures are hard to get through. He usually doesn't take attendance but he does look and appreciate participation. He does make us do a lot of papers but the papers are SO easy. Also don't bother with textbooks.", + "pos": 0.236, + "neu": 0.749, + "neg": 0.014, + "_id": { + "$oid": "6711d564cd60fca157e5cf97" + } + }, + { + "text": "Dr. Crain is truly amazing, he is clear and concise. The key to getting a good grade in this course is reading his books. His review sheets are precisely what you will need to do well, and maybe a little more. One midterm + final + paper. He is really caring, i would take him again.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cf98" + } + }, + { + "text": "Lectures arent necessary because he doesnt stay too much on topic & you wont learn much. TAs are more helpful so attend recitations. The books are your way to passing so do your readings to the t.", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cf99" + } + }, + { + "text": "I loved Dr. Crain! Such a nice guy and really caring person. He loves animals and even owns an animal sanctuary which I thought was awesome! Several opportunities for extra credit and he gives review sheets for midterm and final which are pretty spot on. Read the text, do the extra credit and review sheets and you'll do fine", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cf9a" + } + }, + { + "text": "Avoid at all costs. Never have I been in a class where the class average was 57 and almost everyone was already talking about having to retake the class after the midterm. Midterm is 40%, Final is 40%, and one paper fills your grade out with 20%. Incredibly unreasonable grader. gave so many people 0 points on the essay portion of the final. Avoid.", + "pos": 0.0, + "neu": 0.934, + "neg": 0.066, + "_id": { + "$oid": "6711d564cd60fca157e5cf9b" + } + }, + { + "text": "Instructions and grading criteria aren't very specific. Does not follow the syllabus closely.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cf9c" + } + }, + { + "text": "He isn't an easy A like everyone says he is. You have to READ HIS BOOKS like it is your life. If you read you will pass because his midterm and final are based on the readings. Also, there is one final paper which was interesting. His lectures aren't mandatory because you can pass the class by reading his books.", + "pos": 0.116, + "neu": 0.829, + "neg": 0.055, + "_id": { + "$oid": "6711d564cd60fca157e5cf9d" + } + }, + { + "text": "I would think Crain is a great guy; wouldn't know. Going to lectures wasn't mandatory. Didn't really go to Lectures after the first week, not really needed, but the reading was essential if you want to pass. The other great help are the TAs. Go to recitation, they take the attendance and help you understand the concepts clearly.", + "pos": 0.28, + "neu": 0.704, + "neg": 0.015, + "_id": { + "$oid": "6711d564cd60fca157e5cf9e" + } + }, + { + "text": "Crain is awesome. His lectures are super funny. However, he is often off topic and doesn't actually stay on task and teach much. I feel like i learned more about himself than i did about psychology.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cf9f" + } + }, + { + "text": "One midterm, One final, One final paper. To the point. If you read his textbooks then you'll do fine. I think the lectures were optional", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cfa0" + } + }, + { + "text": "He is a GREAT professor! To be honest it's like do what he asks you to do and you are good!! Which are one midterm, one essay and one final. But do not slack just because he is not giving homeworks and quizzes. Be on the same page as him and you will get an awesome grade. His lectures are not mandatory but you gotta go to the recitation surely!!", + "pos": 0.228, + "neu": 0.727, + "neg": 0.046, + "_id": { + "$oid": "6711d564cd60fca157e5cfa1" + } + }, + { + "text": "Professor Crain tends to ramble a lot sometimes but letctures aren't too bad. His TA's were great and made up for anything he missed in lecture. The textbook (which he wrote) is such an easy read doesn't seem like a text book. 2 test, 1 small paper, and one longer paper. Pretty doable class, would recommend.", + "pos": 0.277, + "neu": 0.651, + "neg": 0.073, + "_id": { + "$oid": "6711d564cd60fca157e5cfa2" + } + }, + { + "text": "Honestly, did not attend his lectures much. Usually go to the recitation, its mandatory but the recitation class sums up the lectures. midterm and \"final\" but it isn't accumulative. Easy A if you do the readings.", + "pos": 0.08, + "neu": 0.841, + "neg": 0.079, + "_id": { + "$oid": "6711d564cd60fca157e5cfa3" + } + }, + { + "text": "Nice professor, he seems very knowledgeable on child development. He pretty much focuses on the main topics that will be on the test. Gives out review sheets for the midterm and final. Easy A if you pay attention.", + "pos": 0.201, + "neu": 0.767, + "neg": 0.032, + "_id": { + "$oid": "6711d564cd60fca157e5cfa4" + } + }, + { + "text": "Easy A. You cant go wrong with taking him.", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cfa5" + } + }, + { + "text": "He makes u buy a book he wrote, and cannot teach to save his life. Literally mumbles when he speaks during class lectures. He can go off topic and speak about things that is irrelevant to the class. Be prepare to teach yourself because he's not helpful at all.", + "pos": 0.0, + "neu": 0.905, + "neg": 0.095, + "_id": { + "$oid": "6711d564cd60fca157e5cfa6" + } + }, + { + "text": "He was a great professor! He doesn't just teach you what is in the book, he likes to have class discussions on the topic, and it's a good way of knowing if the students are understanding. A lot of students were frustrated at that because they felt he wasn't really teaching them anything. Anyway, he was great! Will gladly take again! Recommend!!!!!", + "pos": 0.255, + "neu": 0.702, + "neg": 0.043, + "_id": { + "$oid": "6711d564cd60fca157e5cfa7" + } + }, + { + "text": "Crain is a mensch. A scholar, a mentor, a human. He cares about every student who attends his class. He is curious, insightful, challenging, fair, and realistic. He puts all of himself and his generosity into his classes. It's a privilege and a refreshing experience to take a class with him. Go for it. You won't be sorry!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d564cd60fca157e5cfa8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d565cd60fca157e5cfaa" + }, + "professor_name": "Peter Chow", + "rating": 1.9, + "department": "Economics department", + "comments": [ + { + "text": "2 mid, 1 final. No homework. He curves grades a lot. If you get around 75 in 2 midterm you'll probably get an A. He believes in full focus during class so the lecture is heavy. But if you can listen to him attentively, he actually knows his stuff. I have retaken the course in ccny w/ another prof before & failed so I'd say prof Chow is way better.", + "pos": 0.05, + "neu": 0.871, + "neg": 0.079, + "_id": { + "$oid": "6711d565cd60fca157e5cfab" + } + }, + { + "text": "Class is super lecture heavy with chalk. Hard to understand sometimes. He does not fully prepare you for the exams. No practice exams are given or HW. Kind of gets angry when you do not understand him. He jumps around through chapters and can get confusing very quickly. I think he wants to help but is not successful in doing so.", + "pos": 0.062, + "neu": 0.785, + "neg": 0.153, + "_id": { + "$oid": "6711d565cd60fca157e5cfac" + } + }, + { + "text": "A very smart professor but unfortunately there are better professors out there for this course. He moves rather quickly and doesnt take the time needed to really teach a topic. He expects you to understand because he is brilliant. Its a very hard class and you really want a patient professor for it.", + "pos": 0.199, + "neu": 0.722, + "neg": 0.079, + "_id": { + "$oid": "6711d565cd60fca157e5cfad" + } + }, + { + "text": "This class was the hardest one I had. My advice is to read the book previous to class and do as much exercises as you can. The lecture is heavy in content and a bit confusing. By the end of the semester I received grade A, I believe because he grades in a curve system. He had difficulties with the online classes, but I appreciated all the effort.", + "pos": 0.061, + "neu": 0.897, + "neg": 0.042, + "_id": { + "$oid": "6711d565cd60fca157e5cfae" + } + }, + { + "text": "I understand he is knowledgeable but he is terrible. His class is brutal, and you HAVE to read the textbook. its not mandatory, but you will not be able to understand him. Midterm and Final both 50%. You need to study a hefty amount to even pass(hard). Econ Development is a capstone, but try to avoid him. Torture yourself studying you might get a C", + "pos": 0.0, + "neu": 0.757, + "neg": 0.243, + "_id": { + "$oid": "6711d565cd60fca157e5cfaf" + } + }, + { + "text": "This man needs to retire. He is very knowledgeable but that does not qualify him to be a good teacher. Basically read the whole textbook on your own and take tests which determines your grade. Just awful. If you can take a different class then DO IT!!!", + "pos": 0.072, + "neu": 0.838, + "neg": 0.091, + "_id": { + "$oid": "6711d565cd60fca157e5cfb0" + } + }, + { + "text": "This professor doesn't use black board, power point and text book in class. you are supposed to read it yourself. only he does is teach and write on board and you are supposed to understand it. class get boring and sleepy at time. your grade only depend on text. test has more math than economic concept. good luck getting c.", + "pos": 0.09, + "neu": 0.874, + "neg": 0.035, + "_id": { + "$oid": "6711d565cd60fca157e5cfb1" + } + }, + { + "text": "This class is simply not worth taking. The lectures are monotonous and uninspired. There are absolutely no study aids or supplemental materials provided by professor Chow. He does not use Blackboard. The tests are based almost entirely on his notes rather than the textbook so if your notes arent perfect, you will struggle. This is an awful experien", + "pos": 0.0, + "neu": 0.81, + "neg": 0.19, + "_id": { + "$oid": "6711d565cd60fca157e5cfb2" + } + }, + { + "text": "Easy MA class, honestly one of the best economics professor at ccny. Has a good sense of humor, does not have an accent! Midterm, Final, 3 Home works. Easy A: Read the book, listen to his lecture, take notes of everything he writes down. I wish he taught Macro next fall, good luck with Bengoa!", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d565cd60fca157e5cfb3" + } + }, + { + "text": "Im getting an A in this class but I'm telling you don't do it!!!!!! Imagine the stereotypical asian professor. Rude af, unable to understand student's questions, unable to answer questions to properly, lecture barely reflects the exams, grade is all exam based, doesn't give you practice questions, review is trash. DONT DO IT!!!!", + "pos": 0.0, + "neu": 0.91, + "neg": 0.09, + "_id": { + "$oid": "6711d565cd60fca157e5cfb4" + } + }, + { + "text": "Worst professor ever. I have consistenly done well in my exams. My grade was much better than average but he failed me for no reason whatsoever. He won't even explain why.", + "pos": 0.089, + "neu": 0.662, + "neg": 0.249, + "_id": { + "$oid": "6711d565cd60fca157e5cfb5" + } + }, + { + "text": "He has an accent, but I understood him well. He speaks a lot from the textbook, but it was helpful to read it in addition to lectures. When I took him he had a wonderful TA working with him who helped out a lot. Exams are tough but there's a huge curve. Has a sign-in sheet for attendance. He's an alright professor, not the best.", + "pos": 0.208, + "neu": 0.715, + "neg": 0.078, + "_id": { + "$oid": "6711d565cd60fca157e5cfb6" + } + }, + { + "text": "His tests are hard. need to read the book. He explains everything clearly though. 2 mideterms and a final. i passed the first with 68 failed the second one and still got an A. he curves alot", + "pos": 0.065, + "neu": 0.821, + "neg": 0.114, + "_id": { + "$oid": "6711d565cd60fca157e5cfb7" + } + }, + { + "text": "A very interesting class, he knows a lot of economics topics. but heavy accent.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d565cd60fca157e5cfb8" + } + }, + { + "text": "If you wanna pass with at least a decent grade, DO NOT take him. He may have the knowledge but does not know how to teach and he has a heavy accent. He never told us the curve of the tests. Hates questions. He is full of himself and expects students to know everything already. One of the worst professor at ccny.", + "pos": 0.0, + "neu": 0.863, + "neg": 0.137, + "_id": { + "$oid": "6711d565cd60fca157e5cfb9" + } + }, + { + "text": "Chow a great professor! I took him for Macro 1 got an A, now i took him for Economic Development and got an A. Needless to say i studied a lot. the book was 800 pages and i pretty much had to read the whole thing, TWICE. But Chow is an extremely intelligent man and one that is very experienced in the field of Economics. definitely take!", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d565cd60fca157e5cfba" + } + }, + { + "text": "Be prepared to review the material at home. Also, ad and understand all chapters that he assigns. The exam questions are tricky as they are very similar. If you keep up with the class from the start you will pass. If you want to be excellent, practice word problems according to the topic diss used in class, so that it may prepare you for the exams.", + "pos": 0.096, + "neu": 0.845, + "neg": 0.06, + "_id": { + "$oid": "6711d565cd60fca157e5cfbb" + } + }, + { + "text": "He doesn't know how to teach properly and is further limited by his very heavy accent. Writes huge equations as if he were teaching graduate students or his fellow colleagues. He doesn't like questions either. Don't take that class.", + "pos": 0.054, + "neu": 0.851, + "neg": 0.095, + "_id": { + "$oid": "6711d565cd60fca157e5cfbc" + } + }, + { + "text": "Absolutely horrible professor. If you have this class drop it right now. Only good thing is that he curves but you have no idea how you are doing in the class until you get you final grade. Doesn't go by the book & he just draws a whole bunch of lines which are supposed 2 be graphs, but the students have no idea what he is talkin about. DO NOT TAKE", + "pos": 0.025, + "neu": 0.852, + "neg": 0.123, + "_id": { + "$oid": "6711d565cd60fca157e5cfbd" + } + }, + { + "text": "He is a very intelligent professor. I got a B in his class from JUST paying close attention in class. I never bought the book.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d565cd60fca157e5cfbe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d565cd60fca157e5cfc0" + }, + "professor_name": "Anthony Paolillo", + "rating": 3.1, + "department": "Mathematics department", + "comments": [ + { + "text": "i took math for contemp world, tests are very similar to the review guides. 3 tests, lowest gets dropped. he preps you for the final alright (imo) but dont go based off my experience with the final cause its made by the department, not him. lectures are kind of confusing but the concepts are fairly easy. extra credit is offered, hw is optional.", + "pos": 0.123, + "neu": 0.813, + "neg": 0.064, + "_id": { + "$oid": "6711d565cd60fca157e5cfc1" + } + }, + { + "text": "Definitely one of the better math professors at CCNY. He doesn't curve but he is a very fair grader with what he is allowed to give credit for. I recommend getting a study group for the class because it's tough course and to study the quizzes and practice the webwork homework and textbook hw's. If you can do those you'll pass his class.", + "pos": 0.191, + "neu": 0.785, + "neg": 0.024, + "_id": { + "$oid": "6711d565cd60fca157e5cfc2" + } + }, + { + "text": "He is a very kind and thoughtful guy who genuinely wants you to understand and helps you with grading and partial credit as much as possible. You can also tell that he is a very smart individual. lectures can be confusing at times, but he will always guide you to the right place. Textbook hw and reviews should be enough to ace his exams! Take him", + "pos": 0.142, + "neu": 0.838, + "neg": 0.02, + "_id": { + "$oid": "6711d565cd60fca157e5cfc3" + } + }, + { + "text": "Lectures were somewhat confusing but his homework and review sheets prepare students very well for the quizzes and exams. It certainly is not easy but will definitely do well if you do his homeworks and reviews.", + "pos": 0.265, + "neu": 0.641, + "neg": 0.094, + "_id": { + "$oid": "6711d565cd60fca157e5cfc4" + } + }, + { + "text": "One of the better math professors in CCNY. I would take him again if i'm being honest. He gives 3 exams and quizzes and the quiz average can replace the lowest score from the 3 exams that you've took. he gives a review sheet before each exam. The Hw that you do also prepares you for the exam. exams are worth 60% and final exam is 40% of your grade.", + "pos": 0.106, + "neu": 0.86, + "neg": 0.034, + "_id": { + "$oid": "6711d565cd60fca157e5cfc5" + } + }, + { + "text": "He's one of the only profs that will give you a study guide for every exam. Take advantage of them because he really does everything, he can to help you pass. The math itself is basic add, mult, div, sub so practice to not make silly errors. It's really the conceptual stuff that you need to focus on studying.", + "pos": 0.107, + "neu": 0.876, + "neg": 0.017, + "_id": { + "$oid": "6711d565cd60fca157e5cfc6" + } + }, + { + "text": "Professor Paolillo is the type of professor that has bad hand writing and copying notes down is an absolute chore. Study on your own while following the topics using the interactive textbooks. The test are not hard at all. This class was mostly theoretical, the computations are elementary school stuff. Ask questions he cares.", + "pos": 0.123, + "neu": 0.82, + "neg": 0.057, + "_id": { + "$oid": "6711d565cd60fca157e5cfc7" + } + }, + { + "text": "An extremely nice person, but not the best teacher. He gives a lot of partial points on his exams, which are exactly like review problems he gives out. Class consisted of two exams, six quizzes (two dropped), and a final. Subject matter is very conceptual and his lectures aren't always the most clear, so definitely watch videos on YouTube!", + "pos": 0.208, + "neu": 0.685, + "neg": 0.107, + "_id": { + "$oid": "6711d565cd60fca157e5cfc8" + } + }, + { + "text": "Use the ILA textbook! It is way better than the other textbook and is written very well. It cleared up pretty much every topic for me (and I never read textbooks cuz of how poorly written they are). Overall a super nice guy and his class is very passable if you study/do the HW/understand how to do his study guides. Questns are similar to final exam", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d565cd60fca157e5cfc9" + } + }, + { + "text": "His class is mainly just him lecturing and students taking notes. Very little interaction with students during lecture which i actually kind of prefer. He sometimes confuses himself and doesnt sound very confident in what hes saying but hes always guiding u on the right path. nice guy and gives partial credit. focus on his practices for the exams", + "pos": 0.108, + "neu": 0.837, + "neg": 0.054, + "_id": { + "$oid": "6711d565cd60fca157e5cfca" + } + }, + { + "text": "He's a great choice for this class. I like the order he taught things in. It made the class much more manageable leaving much of the hard stuff until the end. He did a great job preparing us for exams and quizzes. Review sheets for both. They are very similar to the exams he gives (that also includes the final). u will have to self study too though", + "pos": 0.141, + "neu": 0.841, + "neg": 0.018, + "_id": { + "$oid": "6711d565cd60fca157e5cfcb" + } + }, + { + "text": "Really hoped he curved :(", + "pos": 0.329, + "neu": 0.341, + "neg": 0.33, + "_id": { + "$oid": "6711d565cd60fca157e5cfcc" + } + }, + { + "text": "As difficult as any CCNY math class, except Professor Paollilo isn't the most clear instructor in the world. I could not really keep up with his style of teaching (not fast, but quite hectic and all over the place), and that negatively effected my standing in this class. To be fair, the class is heavily theoretical so get ready to study!", + "pos": 0.103, + "neu": 0.846, + "neg": 0.051, + "_id": { + "$oid": "6711d565cd60fca157e5cfcd" + } + }, + { + "text": "Good Professor for the class. Fairly standard good math professor. Makes bad jokes and laughs which lightens the mood (sometimes good jokes)", + "pos": 0.462, + "neu": 0.436, + "neg": 0.102, + "_id": { + "$oid": "6711d565cd60fca157e5cfce" + } + }, + { + "text": "First off, this guy is one of the most unclear and one of the worst math professors I've ever had. That being said, he actually is a really kind professor who provided extensions for the class or curved exams. He went out of his way at office hours to help me learn. Honestly a really nice dude, just a terrible professor.", + "pos": 0.164, + "neu": 0.711, + "neg": 0.125, + "_id": { + "$oid": "6711d565cd60fca157e5cfcf" + } + }, + { + "text": "Professor is kind and understanding. The course itself is pretty difficult and Anthony tries his best to make the course easier for students to learn. The homework is extra credit (+5 on the test average) which makes it really worth doing. Otherwise, 3 exams (4 quizzes which turn into a test grade) and lowest quiz and tests are dropped.", + "pos": 0.247, + "neu": 0.685, + "neg": 0.068, + "_id": { + "$oid": "6711d565cd60fca157e5cfd0" + } + }, + { + "text": "I never attended any lectures, anything youll need to know about this class is on Professor Leonards YouTube playlist. If you prefer to learn from the teacher his lectures are a little hard to follow. Hes a very nice guy with very poorly worded exams, hes a kind grader however and if you work extra hard you can get an A.", + "pos": 0.098, + "neu": 0.864, + "neg": 0.038, + "_id": { + "$oid": "6711d565cd60fca157e5cfd1" + } + }, + { + "text": "THE HARDEST CALC PROFESSOR IN CCNY. he makes u work for even just a 70 on his quizzes/exams and you just barely pass his class. as a person, he's nice and willing to provide extensions, but can't teach for his life. would not recommend to even the devil.", + "pos": 0.034, + "neu": 0.808, + "neg": 0.157, + "_id": { + "$oid": "6711d565cd60fca157e5cfd2" + } + }, + { + "text": "he's a sweet guy but the worst professor ever. writing is chicken scratch for lectures and he goes off on tangents. even if you watch professor leonard videos on youtube, you'll still struggle in his class because he makes his tests excessively hard. average for each exam was in the 70s and he doesn't curve. DONT take him if you care about grades.", + "pos": 0.085, + "neu": 0.779, + "neg": 0.137, + "_id": { + "$oid": "6711d565cd60fca157e5cfd3" + } + }, + { + "text": "Very solid choice, especially if taking him during remote learning. Graded on 4 quizzes, 3 tests (4 if counting department final), and homework. Extremely understanding of the situation and willing to move due dates, move exams, etc. around to better accommodate the class. Test & quizzes are hard, but nothing that he did not cover in class.", + "pos": 0.058, + "neu": 0.922, + "neg": 0.02, + "_id": { + "$oid": "6711d565cd60fca157e5cfd4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d566cd60fca157e5cfd6" + }, + "professor_name": "Vladimir Petricevic", + "rating": 2.7, + "department": "Physics department", + "comments": [ + { + "text": "dropped bc I was getting behind. Ppl would complain abt him, but he only has so much to teach in a short time. Honestly his exams were pretty fair. If you do happen to fail one, consider thinking about how much you studied for it. It's a class that requires critical thinking and time to comprehend. You won't pass if you think cheatsheets are enough", + "pos": 0.141, + "neu": 0.74, + "neg": 0.119, + "_id": { + "$oid": "6711d566cd60fca157e5cfd7" + } + }, + { + "text": "Very nice professor and friendly, but very terrible at teaching. Pre-learn the entire content of physics if you want to pass (this goes for any professors at ccny) also terrible handwriting and doesn't speak very loud so take that as granted (class avg 20-43)", + "pos": 0.148, + "neu": 0.693, + "neg": 0.159, + "_id": { + "$oid": "6711d566cd60fca157e5cfd8" + } + }, + { + "text": "He's a good professor, but be ready to read and understand the concepts of the course. Otherwise you won't do well. Very friendly, though he may seem intimidating.", + "pos": 0.255, + "neu": 0.59, + "neg": 0.156, + "_id": { + "$oid": "6711d566cd60fca157e5cfd9" + } + }, + { + "text": "Worse professor I have had in my life. essentially the class made a complaint against him which is the first time I've ever seen such a thing. No one knew what their grades were. His exams included things that were not up in homework. His lectures are him doing the previous homework. He'll ask if anyone has a question. He'll berate you if you ask", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d566cd60fca157e5cfda" + } + }, + { + "text": "Honestly, he isn't so bad. If you try, go to his office hours & do the work you will pass. His grading is exam heavy but he allows cheatsheets. Studying the review & summary section of each chapter in the textbook helped a lot. If anyone complains about the class, I swear they have negative poo poo brain & think showing up is enough to pass college", + "pos": 0.056, + "neu": 0.815, + "neg": 0.128, + "_id": { + "$oid": "6711d566cd60fca157e5cfdb" + } + }, + { + "text": "Save your GPA please. I understand a tough class and tough material, but I can not tolerate rudeness out of an ego. Your material is hard, DON'T YOU DARE BLAME THE STUDENTS!", + "pos": 0.257, + "neu": 0.638, + "neg": 0.105, + "_id": { + "$oid": "6711d566cd60fca157e5cfdc" + } + }, + { + "text": "best professor ever, take his class at all costs. this is not a paid review. long live this class, I would take it 1000 more times.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d566cd60fca157e5cfdd" + } + }, + { + "text": "Class average is beyond failing, he asks for tips on how to improve and shoots down every single suggestion claiming that practice problems similar to the test, and study guides are giving away the whole test. Once asked him a question after class and he completely ignored me so I had to repeat myself. VERY rude to any questions asked in class.", + "pos": 0.072, + "neu": 0.758, + "neg": 0.171, + "_id": { + "$oid": "6711d566cd60fca157e5cfde" + } + }, + { + "text": "Dr. Petricevic is a solid choice. He treats you like an adult. He holds office hours. He gives a month's advance notice of the exam and gives the formula sheet at least one week in advance so you can study around it. Attend lectures and do the homework.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d566cd60fca157e5cfdf" + } + }, + { + "text": "horrible", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d566cd60fca157e5cfe0" + } + }, + { + "text": "Literally the worst professor I've had so far. His only redeeming quality was allowing us to take his final online. Other than that, he's rude, inconsiderate, and will flame you for asking very reasonable questions. Would not recommend. If you did not take AP Physics, switch to another class IMMEDIATELY.", + "pos": 0.0, + "neu": 0.792, + "neg": 0.208, + "_id": { + "$oid": "6711d566cd60fca157e5cfe1" + } + }, + { + "text": "I am currently in his class and I have not learned much. His lectures are not useful, derives equations more than doing problems with us, and very RUDE!!! If you care about your studies and education, pick a different teacher. He can be BETTER! Class average is below passing at the moment.", + "pos": 0.106, + "neu": 0.73, + "neg": 0.164, + "_id": { + "$oid": "6711d566cd60fca157e5cfe2" + } + }, + { + "text": "His lectures are terrible. He does not explain well and gives HW questions that is not covered in class.", + "pos": 0.0, + "neu": 0.776, + "neg": 0.224, + "_id": { + "$oid": "6711d566cd60fca157e5cfe3" + } + }, + { + "text": "We are only 2 weeks into the semester and I am already over this class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d566cd60fca157e5cfe4" + } + }, + { + "text": "Hes a horrible professor, my wifi disconnected during the exam and I emailed him. He blames me and does not accommodate AT ALL. Ridiculous, his exams are crazy hard. Im glad this semester ended, I hope I never have to retake this class.", + "pos": 0.108, + "neu": 0.662, + "neg": 0.23, + "_id": { + "$oid": "6711d566cd60fca157e5cfe5" + } + }, + { + "text": "I don't know about other students but my experience with him was horrible. He goes rather fast and while he does go back if asked he would complain about that, quizzes given the day an HW is due which have two questions. He's more focused on concepts than giving practice problems. Tests are a bit difficult. I would recommend e-Permitting honestly.", + "pos": 0.173, + "neu": 0.646, + "neg": 0.181, + "_id": { + "$oid": "6711d566cd60fca157e5cfe6" + } + }, + { + "text": "I've had this guy twice and he is a solid choice to take the class with. I never saw an exam question structured to something that wasn't covered between lecture or assignments before, and you can't say that about most professors. No, he isn't the best at explaining things but he gives you enough to learn it yourself. Likes to know you care too.", + "pos": 0.13, + "neu": 0.839, + "neg": 0.031, + "_id": { + "$oid": "6711d566cd60fca157e5cfe7" + } + }, + { + "text": "Clearly states expectations & treats everyone like adults. Keeps humor even when being disrespected. Lectures are fast but he will repeat. Have to practice problems. Some exam qs were tricky & unlike any in class or on practice exams, but all about understanding relationships. Final was easier. Doesn't curve, but may add some points for attendance.", + "pos": 0.136, + "neu": 0.75, + "neg": 0.114, + "_id": { + "$oid": "6711d566cd60fca157e5cfe8" + } + }, + { + "text": "He is one of the worst professors I had so far in CCNY. Very bad teacher and lecturer. His test are NOT based on the textbook problems or homework. I had 30 points above the test average on all three exams, got a 95 on the final, All homework submitted, and perfect lab score. Still received an A-. I don't recommend him at all/", + "pos": 0.049, + "neu": 0.782, + "neg": 0.168, + "_id": { + "$oid": "6711d566cd60fca157e5cfe9" + } + }, + { + "text": "Go to his lecture because he goes over all of the exam problems during the lecture. He is very good at explaining concepts. If you want to do well in this class, do not count on the previous exams. You have to study every day. He gives quizzes at the end of the lecture. So don't miss a class", + "pos": 0.128, + "neu": 0.831, + "neg": 0.042, + "_id": { + "$oid": "6711d566cd60fca157e5cfea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d566cd60fca157e5cfec" + }, + "professor_name": "Daniel Disalvo", + "rating": 3.7, + "department": "Political Science department", + "comments": [ + { + "text": "Excellent professor. Super fair and approachable. Very knowledgeable and lectures were always great. Decent amount of reading but nothing crazy, and all very interesting.", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d566cd60fca157e5cfed" + } + }, + { + "text": "Professor DiSalvo is a very professional teacher, but his lectures do feel a bit dry. His lectures are sufficient to do well, though completing the readings definitely are a boost. The only possible issue is that he gives very few grade assignments so it is hard to recover from a bad performance outside of extra credit.", + "pos": 0.188, + "neu": 0.715, + "neg": 0.097, + "_id": { + "$oid": "6711d566cd60fca157e5cfee" + } + }, + { + "text": "It isn't the number of papers but how much you need to do with these papers. Every week he gives textbook readings from 2 books and additional PDFs that you have to ALL read including taking good notes in lecture for the three 5-page (recommended but there's no min/max) papers that are ONLY done in class with NO physical PDFs and books in hand.", + "pos": 0.136, + "neu": 0.762, + "neg": 0.103, + "_id": { + "$oid": "6711d566cd60fca157e5cfef" + } + }, + { + "text": "You must take good notes to succeed in this class. Had a great TA (Ekim) who helped work out things I didn't understand, but the lectures themselves move fast and DiSalvo does not go back. There are no study guides, and lectures are not posted (but you can email him and ask for them). Two textbooks needed, and anything else is posted on Bb.", + "pos": 0.095, + "neu": 0.865, + "neg": 0.04, + "_id": { + "$oid": "6711d566cd60fca157e5cff0" + } + }, + { + "text": "you are responsible for making up the lesson because the professor does not publish the lectures on BB and will only email them to you if you attend his office hours and is against technology. He quickly glides through the slides. You will have a 50-minute midterm in addition to weekly quizzes, 3 5-page essays during the semester. avoid it.", + "pos": 0.037, + "neu": 0.928, + "neg": 0.035, + "_id": { + "$oid": "6711d566cd60fca157e5cff1" + } + }, + { + "text": "Before school went online, he was very serious about no tech in class. There was supposed to be 3 papers (5-6 pages) but only assigned 2. There were weekly quizzes based on the textbook, but those were easy to pass. The midterm and final were fairly easy but his expectations on the short answers made it difficult to finish the whole test on time.", + "pos": 0.106, + "neu": 0.808, + "neg": 0.086, + "_id": { + "$oid": "6711d566cd60fca157e5cff2" + } + }, + { + "text": "He makes things very clear in his lectures and the work load is fair. really if you just pay attention and do the homework you'll be fine, but to warn you the midterm and final for pol101 is pretty hard. as a professor he was great my only complaint is when he uses historical events as examples he often uses sugarcoated white-washed versions.", + "pos": 0.196, + "neu": 0.709, + "neg": 0.095, + "_id": { + "$oid": "6711d566cd60fca157e5cff3" + } + }, + { + "text": "You know what to expect from his lectures. Organized and prepared. Midterm and final with 2 papers and some weekly quizzes. Offers extra credit. Gets straight to the point with the material and makes it interesting. Makes movie recommendations everyday I swear lol. Very knowledgeable and approachable and makes for a well-rounded intro to PSC.", + "pos": 0.192, + "neu": 0.789, + "neg": 0.019, + "_id": { + "$oid": "6711d566cd60fca157e5cff4" + } + }, + { + "text": "No technology allowed in his class. He wants everything away. He speeds through slides so try your best to only copy what is important. There is readings he gives along with the textbook. You need to read the textbook, questions on the exams come from his class and the textbook. It would have been nice if he allowed pictures, because he moves fast.", + "pos": 0.129, + "neu": 0.84, + "neg": 0.031, + "_id": { + "$oid": "6711d566cd60fca157e5cff5" + } + }, + { + "text": "I am going to be honestly breaking down his overall grade. But first, lemme tell you he assigned way to many hard papers for reading and for the essay. If online make sure to take a screenshot of his lectures on the laptop. Grading rubric. 1. 50% Exam: 25% each 2. 40% Papers: 20 % each. 3. 10% participation or attendance.", + "pos": 0.077, + "neu": 0.899, + "neg": 0.025, + "_id": { + "$oid": "6711d566cd60fca157e5cff6" + } + }, + { + "text": "His exams are really difficult, many papers and assignments", + "pos": 0.0, + "neu": 0.741, + "neg": 0.259, + "_id": { + "$oid": "6711d566cd60fca157e5cff7" + } + }, + { + "text": "You can do a good paper and wont pass TAs are harsh graders", + "pos": 0.173, + "neu": 0.655, + "neg": 0.173, + "_id": { + "$oid": "6711d566cd60fca157e5cff8" + } + }, + { + "text": "He is upfront about what the grading criteria is. He doesn't change his mind at the last minute. No surprises. His lectures are great. He uses humor and a lot of comparison but not to cause any confusion. He offers help outside of class. Politics is not something I ever found interest in but after this class, I have been reading more about it.", + "pos": 0.158, + "neu": 0.786, + "neg": 0.056, + "_id": { + "$oid": "6711d566cd60fca157e5cff9" + } + }, + { + "text": "Disalvo is a nice person, but NOT when it comes to grades. He doesnt tell you what the mid term and final will be focused on. From my experience, memorize the federalist papers (what each is saying), memorize the dates of events, and read the second book (Tocqville). These are the keys to pass his class with a good grade.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d566cd60fca157e5cffa" + } + }, + { + "text": "Not an easy grade. Even if you work hard, youll probably get a B. My TA was a harsh grader, the average for the paper (40% of your grade) was a C for the class. He even told the class nobody got A. Dont take this class if youre trying to maintain an A GPA. You might think you took US history in high school, but he knows that and made test hard.", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d566cd60fca157e5cffb" + } + }, + { + "text": "DiSalvo is a harsh grader with no clear expectations. His exams are not cumulative, but there is tons of material on each. Weekly quizzes are easy, but do not count for much. Need to be prepared to memorize chapters of the textbook and grasp a lot of reading material clearly for the midterm. Anything he mentions or assigns will end up on exams.", + "pos": 0.137, + "neu": 0.814, + "neg": 0.05, + "_id": { + "$oid": "6711d566cd60fca157e5cffc" + } + }, + { + "text": "You have to read in this class and his midterm and final is based on his notes. By the way his TAs grade the essays so be prepared because they are harsh graders.", + "pos": 0.06, + "neu": 0.859, + "neg": 0.08, + "_id": { + "$oid": "6711d566cd60fca157e5cffd" + } + }, + { + "text": "He is a great lecturer, I enjoyed each and every one of his lectures. He made me interested in the subject. Two papers & a midterm and final(not cumulative) &online quizzes each week. The TA i got(Mr birch) is a harsh grader and didn't fully let us know his expectations. Disalvo on the other hand is a gem, always there to help during office hours", + "pos": 0.205, + "neu": 0.757, + "neg": 0.037, + "_id": { + "$oid": "6711d566cd60fca157e5cffe" + } + }, + { + "text": "He assigns two papers throughout the semester that needs to be exactly 5 pages, a midterm and final that are not cumulative. In lecture, he covers certain things on powerpoint thats not in the textbook but is very vague about what will be on midterms and finals. For papers, hope your TA grades lightly and expect weekly quizzes online, google em.", + "pos": 0.083, + "neu": 0.886, + "neg": 0.031, + "_id": { + "$oid": "6711d566cd60fca157e5cfff" + } + }, + { + "text": "Professor DiSalvo is an outstanding professor and lecturer. Although his lectures sometimes will have you dozing off, virtually all tested material is covered in his lectures. Beware the TAs'. though. The TAs' do all the grading in his class, and one may be a harsher grader than the rest.", + "pos": 0.074, + "neu": 0.867, + "neg": 0.059, + "_id": { + "$oid": "6711d566cd60fca157e5d000" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d567cd60fca157e5d002" + }, + "professor_name": "Michel Ghosn", + "rating": 3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "trust me. it was 10 times harder than PE exam.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d003" + } + }, + { + "text": "Deforms is one of the hardest classes you'll take and Professor Ghosn's the best! Super tough grader, most people don't pass on the first try, and it's a TON of work. But his lectures are great and he just wants you to know your stuff and pay attention to detail. This class requires a LOT of time and effort. Come to office hours, he's happy to help", + "pos": 0.238, + "neu": 0.728, + "neg": 0.035, + "_id": { + "$oid": "6711d567cd60fca157e5d004" + } + }, + { + "text": "I understand that he is difficult but because of Covid this class has been the absolute worse. You have to record both your computer and your phone but still only gives you one question to solve 30 mins at a time and they are not easy for the most part. However the teaching assistant Vlad is the best as he is always there to help.", + "pos": 0.145, + "neu": 0.742, + "neg": 0.113, + "_id": { + "$oid": "6711d567cd60fca157e5d005" + } + }, + { + "text": "What you read in the comments are true, very tough. But two main things is you showing interest to class and find your own way of understanding the material/problems. Do as many problems as you can (by yourself, not chegg. Won't help). Put in the hours, the hours mean 4-8 hours a day and you will pass", + "pos": 0.127, + "neu": 0.797, + "neg": 0.076, + "_id": { + "$oid": "6711d567cd60fca157e5d006" + } + }, + { + "text": "I don't know how I passed. Got a C. BUT after passing everything else was a straight A's.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d007" + } + }, + { + "text": "This class is HARD and you need to know statics very well to keep up. You either hate him or love him. He just wants you to learn and it shows in his teaching. Dont be discouraged if hes in a bad mood during office hours, its nothing personal.", + "pos": 0.145, + "neu": 0.703, + "neg": 0.153, + "_id": { + "$oid": "6711d567cd60fca157e5d008" + } + }, + { + "text": "This guy man even in the HWs you get 6 and if u get lucky a 9... Quizzes every week that nobody can get a 10/10 on. Tests are made from him so it doesnt matter if you solve every question from the book. They dont really help much. Also he goes way too fast on lectures and if you dont get something he makes you look like an idiot.", + "pos": 0.091, + "neu": 0.818, + "neg": 0.091, + "_id": { + "$oid": "6711d567cd60fca157e5d009" + } + }, + { + "text": "he's the best, and the hardest.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d00a" + } + }, + { + "text": "I took him twice. No, it was not fun failing the 1st time however there is no professor who teaches like him. No professor who will push you like him and you will walk out with a very strong foundation. Everything is true but I would recommend him, just make sure your take very light classes if you take him. 5 exams in the semester are no joke.", + "pos": 0.197, + "neu": 0.711, + "neg": 0.092, + "_id": { + "$oid": "6711d567cd60fca157e5d00b" + } + }, + { + "text": "I took his class cause I thought that people who failed didn't study enough or were slackers and I wanted to learn. I was so wrong, believe me no matter how much effort you put, you can very easily still fail. Please do yourself a favor and don't take him. He makes everything much harder than it should be and demotivates you!", + "pos": 0.102, + "neu": 0.732, + "neg": 0.165, + "_id": { + "$oid": "6711d567cd60fca157e5d00c" + } + }, + { + "text": "Don't take this professor if you want to pass, doesn't have a just grading system so pretty much everyone either fails or is close to failing. Save yourself the headache", + "pos": 0.217, + "neu": 0.629, + "neg": 0.154, + "_id": { + "$oid": "6711d567cd60fca157e5d00d" + } + }, + { + "text": "Daddy Ghosn is a beast. Study hard, you'll be fine.", + "pos": 0.161, + "neu": 0.714, + "neg": 0.125, + "_id": { + "$oid": "6711d567cd60fca157e5d00e" + } + }, + { + "text": "Everything people have said about Ghosn is probably accurate. CE332 will probably be the hardest class you take in your life, but it will also be the class you will walk out with the most. He's an amazing lecturer and super helpful during office hours. This is the make or break CE course at CCNY though, so get ready to put your A-game on.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d00f" + } + }, + { + "text": "If you wanna be a slacker and pass this class, tough luck engineering is not for you. Prof. Ghosn is very helpful, explains the material extremely well in class. This class requires a lot of work though, studying days before the exam will not help. Study at least 1 week before and you'll do find. BEST PROFESSOR EVER!!!!!!!!!!!!!!", + "pos": 0.207, + "neu": 0.739, + "neg": 0.053, + "_id": { + "$oid": "6711d567cd60fca157e5d010" + } + }, + { + "text": "Only time I will ever post on a professor. He is wonderful, incredibly knowledgeable and truly passionate. He wants to mold true engineers and that is far from easy. Get to the homework right away and study every single day, there are no weekends or days off.", + "pos": 0.27, + "neu": 0.693, + "neg": 0.037, + "_id": { + "$oid": "6711d567cd60fca157e5d011" + } + }, + { + "text": "Worst professor imaginable. Must know every detail of every chapter. Gives no partial credit on exams. Goes through chapters like a marathon. Doesnt provide own examples, rather uses textbook sample problems during lectures.", + "pos": 0.06, + "neu": 0.672, + "neg": 0.268, + "_id": { + "$oid": "6711d567cd60fca157e5d012" + } + }, + { + "text": "The Good: -delivers very clear and passionate lectures -helpful in office hrs. Bad: -class has a huge learning curve, must know statics well to keep up -class covers a lot of material & exams require you to know all the details of each topic -tough grader -HW & projects are time consuming. Overall, class is like a marathon, just keep swimming...", + "pos": 0.252, + "neu": 0.683, + "neg": 0.066, + "_id": { + "$oid": "6711d567cd60fca157e5d013" + } + }, + { + "text": "this propfessor is obviously an expert in his field, but his disconnect with his students is appalling. He seems approachable, but really isn't. His tests are impossibly hard, and he is the toughest grader i've ever come across..alas, i feel like once i've overcome this class i can do anything!", + "pos": 0.058, + "neu": 0.824, + "neg": 0.118, + "_id": { + "$oid": "6711d567cd60fca157e5d014" + } + }, + { + "text": "i've encountered few instructors in my life as knowledgeable as himself. i've encountered even fewer (none to be exact) as difficult. he has high expectations of his students. it's a DIFFICULT (<---should be in bold and at least 72 type font [for emphasis]) class but you'll be glad with what you come out with in the end. s,iwrfab", + "pos": 0.091, + "neu": 0.848, + "neg": 0.061, + "_id": { + "$oid": "6711d567cd60fca157e5d015" + } + }, + { + "text": "Took him 11 years ago and did really well in it.The class IS difficult and requires alot of time.Without REALLY knowing the class material you will not succeed in engineering PERIOD and will struggle through the rest of the curriculum!Ask people who have PE license and graduated from City!UNDERSTAND the HW's and projects,do many practice problems,a", + "pos": 0.038, + "neu": 0.833, + "neg": 0.128, + "_id": { + "$oid": "6711d567cd60fca157e5d016" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d567cd60fca157e5d018" + }, + "professor_name": "Nidal Khrais", + "rating": 4.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He is a good and funny professor. Often cut lectures short and sometimes went online. The best thing to do is read the textbook, do respective problems, and study his slides. The group project presentation isn't really a presentation, more so randomly picking a group member and asking a random question related to the topic(s).", + "pos": 0.192, + "neu": 0.736, + "neg": 0.072, + "_id": { + "$oid": "6711d567cd60fca157e5d019" + } + }, + { + "text": "Prof Khrais is a superb prof to take switching systems with. Gives plenty of room for extra credit. He is very kind and funny and can ask him any questions no matter how dumb they seem. Participation matters a lot. Overall, one of the best profs I've ever had at ccny.", + "pos": 0.285, + "neu": 0.649, + "neg": 0.066, + "_id": { + "$oid": "6711d567cd60fca157e5d01a" + } + }, + { + "text": "Easy A", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d01b" + } + }, + { + "text": "Easy A! If u get bad group like creepy guy then you will gail but if u het a dmart boy and jgub then you will pass and it will be a lmaxzing class!!!", + "pos": 0.128, + "neu": 0.813, + "neg": 0.059, + "_id": { + "$oid": "6711d567cd60fca157e5d01c" + } + }, + { + "text": "Easiest 400 level class, did bad on the final and got A. Group projects where he will just ask a random question and he always changes his mind on due dates. Exams are online but in person so be ready for that. Pick a good team and copy the examples he shows on the board. 100% will be on the exams, he allows a cheat sheet.", + "pos": 0.123, + "neu": 0.796, + "neg": 0.082, + "_id": { + "$oid": "6711d567cd60fca157e5d01d" + } + }, + { + "text": "i failed my first exam with a 50 and got a 67 on finals and got an A-.", + "pos": 0.0, + "neu": 0.837, + "neg": 0.163, + "_id": { + "$oid": "6711d567cd60fca157e5d01e" + } + }, + { + "text": "Group projects are basically an oral exam / explaining examples from book or his slides. Often cut lectures short or made them online. Overall, not bad.", + "pos": 0.098, + "neu": 0.829, + "neg": 0.073, + "_id": { + "$oid": "6711d567cd60fca157e5d01f" + } + }, + { + "text": "He's a pretty funny dude, I like his teaching style. He had us do group projects over the semester, basically recapping what you learned in lecture. He's very unpredictable, so expect a deadline out of nowhere. Make sure you can communicate with your classmates, that will carry you. But the projects actually help you understand the material! No hw.", + "pos": 0.144, + "neu": 0.792, + "neg": 0.064, + "_id": { + "$oid": "6711d567cd60fca157e5d020" + } + }, + { + "text": "I took this class online in 2021 but it was a very easy class. Pay attention because he will randomly call on you. He doesn't tolerate lateness. No homework except for group projects. Exams are easy if you put good research into your group projects, but NO MAKEUPS. He's hilarious but unpredictable. I suggest studying as a group.", + "pos": 0.239, + "neu": 0.682, + "neg": 0.079, + "_id": { + "$oid": "6711d567cd60fca157e5d021" + } + }, + { + "text": "He is a great professor, funny sometimes, always asking if you have any questions\nEasy project for 30% of the grade", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d022" + } + }, + { + "text": "He's decent professor. You could tell that he really wants you to understand the concept that is not easily understood. His exams are fast paced, rapid fire MC questions and his projects are just group presentations where you are expected to know the ins and outs of everything. Overall good choice for EE21000. I'd just wish he'd record :/", + "pos": 0.084, + "neu": 0.813, + "neg": 0.103, + "_id": { + "$oid": "6711d567cd60fca157e5d023" + } + }, + { + "text": "I would highly recommend to take EE463 class with Professor Khrais. It is a fun class and you learn so much about wireless systems, so much useful information about 5G. He is the absolute best.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d024" + } + }, + { + "text": "Prof. Khrais is very passionate about wireless Communication and he knows the subject very well. He is very understanding; take him you wont regret it. He is the best choice for EE463.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d025" + } + }, + { + "text": "He is average professor. If you want to learn, you won't since he just reads off slides and is somehow lazy. The last month into the end of semester, he stayed maximum for 20 minutes and he cut lectures short. Exams are very doable, but his oral addition is somehow annoying if he does. It's an easy A class with little effort.", + "pos": 0.073, + "neu": 0.828, + "neg": 0.099, + "_id": { + "$oid": "6711d567cd60fca157e5d026" + } + }, + { + "text": "He's the best possible professor for ENGR204, take him you'll not regret. He teaches so well that you won't need to learn again the same thing at home. He takes well enough time for each topic. great professor", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d027" + } + }, + { + "text": "He is the best professor, he is very passionate for circuits, he knows what he is talking about. Best of all, he is very chill and understanding. Take him and you wont regret it!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d028" + } + }, + { + "text": "He's definitely the best professor. put a little effort, solve the HW questions like last3/4 of them to understand the concept, you good. he's really great", + "pos": 0.477, + "neu": 0.523, + "neg": 0.0, + "_id": { + "$oid": "6711d567cd60fca157e5d029" + } + }, + { + "text": "Hes a solid choice for this class. If u put some effort, u will pass. The book is a great resource, so read it, and do the practice problems. Exams are pretty fair and come from the practice questions in the book. I didnt do so well in the first exam but found the final easy. Beware, he doesnt give the whole time for the exams. He ended up curving.", + "pos": 0.17, + "neu": 0.806, + "neg": 0.024, + "_id": { + "$oid": "6711d567cd60fca157e5d02a" + } + }, + { + "text": "Professor Kharis really takes attendance into account and if you show effort in the class and show improvement, then you will pass the class with a minimum B. If you dont get the material at the beginning dont be disappointed because it takes time to understand circuits. Do the practice problems, example problems and problems from the textbook.", + "pos": 0.083, + "neu": 0.795, + "neg": 0.122, + "_id": { + "$oid": "6711d567cd60fca157e5d02b" + } + }, + { + "text": "He's a great professor and a funny lecturer. He definitely rewards improvement, so don't be discouraged if you don't do well on the first test. He curves the final grade very generously.", + "pos": 0.453, + "neu": 0.508, + "neg": 0.038, + "_id": { + "$oid": "6711d567cd60fca157e5d02c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d568cd60fca157e5d02e" + }, + "professor_name": "Anthony Foster", + "rating": 2.4, + "department": "Mathematics department", + "comments": [ + { + "text": "Very easy class. 12 weeks online course consisted of 5 quizzes, a paper, and the final exam. Each quiz covered several chapters. Not all chapters in the book were covered. The book is easy to read however study and take notes, the test are normally 50 questions in 30 minutes. The videos he uploads are helpful. Grades fast. Quick to respond to email", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d02f" + } + }, + { + "text": "I remembered most of the material from high school. If I didn't know any material prior..I think it would be difficult. He's disorganized and goes all over the place. Go over the material before class, because he doesn't really teach you it. He uses a bunch of metaphors and whatnot..which, I guess is \"semi-entertaining\". He's always running late.", + "pos": 0.0, + "neu": 0.923, + "neg": 0.077, + "_id": { + "$oid": "6711d568cd60fca157e5d030" + } + }, + { + "text": "He is really an awesome guy. People keep saying he's bad but hes actually pretty good. The only thing you need to know is to know the stuff BEFORE the actual lesson. Read the book before the actual lesson because he teaches as if you understand a basic idea of the subject already. Which isnt bad because he expects you to read up beforehand.", + "pos": 0.193, + "neu": 0.778, + "neg": 0.03, + "_id": { + "$oid": "6711d568cd60fca157e5d031" + } + }, + { + "text": "He's all over the place, he uses weird metaphors to teach that make no sense to math. He's friendly and you can tell hes really trying to help but hes just not a good teacher.", + "pos": 0.102, + "neu": 0.747, + "neg": 0.151, + "_id": { + "$oid": "6711d568cd60fca157e5d032" + } + }, + { + "text": "Terrible! Terrible! Terrible! Not only are his teaching methods useless but he is extremely rude to students.", + "pos": 0.0, + "neu": 0.473, + "neg": 0.527, + "_id": { + "$oid": "6711d568cd60fca157e5d033" + } + }, + { + "text": "If your lazy and wanna do the work. You not going to make it in his class. There is No prof. In city college that HEPLS you more than Foster as so if your willing to learn I HIGHLY RECOMMEND HIM. FOSTER YOU ROC!!!!!!!!!", + "pos": 0.083, + "neu": 0.802, + "neg": 0.115, + "_id": { + "$oid": "6711d568cd60fca157e5d034" + } + }, + { + "text": "Very nice man. He is willing to help you pass, but however you do on the final is how your grade will be based. Boy, was I wrong reading everyone on here saying you would get an A and such. If he is your only choice take him even though youre in to teach yourself the whole course.", + "pos": 0.062, + "neu": 0.872, + "neg": 0.066, + "_id": { + "$oid": "6711d568cd60fca157e5d035" + } + }, + { + "text": "Foster, while he has the students best interest in mind (and does hold review in the cafeteria a lot of times), likes to see those who come to him succeed. Do not take him if you will be busy with other courses, for you will fail to recognize the help this is (I sure did)", + "pos": 0.261, + "neu": 0.689, + "neg": 0.05, + "_id": { + "$oid": "6711d568cd60fca157e5d036" + } + }, + { + "text": "jee-oh...you who are reading understand that everybody comes to the plate with his baggage.some people are lazy if you know what i mean, imagine suchpeople rating a professor. Foster might not be the best but one thing for sure is that deep inside he likes to see you succeed. the rest is up to you..take him yaar...jee-oh", + "pos": 0.164, + "neu": 0.777, + "neg": 0.059, + "_id": { + "$oid": "6711d568cd60fca157e5d037" + } + }, + { + "text": "I'm sure he is trying to help but his methods had superfluous steps and what could be really easy he made confusing. He came constantly late to class. He likes to pick on students to answer questions, so class participation is encouraged. He just isn't good at explaining concepts to students or explaining the problems.", + "pos": 0.208, + "neu": 0.664, + "neg": 0.127, + "_id": { + "$oid": "6711d568cd60fca157e5d038" + } + }, + { + "text": "OMG. Is he still in City College??? I am graduating next semester,and I took his Math 203 class in my second semester. I could tell he is the worst professor ever. I just want to suggest all students going engineering not to take his class ever. You may get A from his class, but you will get trouble when you take engineering class without Maths!!!", + "pos": 0.016, + "neu": 0.877, + "neg": 0.106, + "_id": { + "$oid": "6711d568cd60fca157e5d039" + } + }, + { + "text": "Great if you already know material. Shows up 10-15 minutes and makes it up after class. No planning, teaches weird methods off the top of his head, and goes off topic constantly. NEVER ASSIGNS WORK OR GIVES FEEDBACK. His tutoring sessions are focused for Calc so math 190 students should find a book instead, or go to the math lab for a tutor.", + "pos": 0.121, + "neu": 0.824, + "neg": 0.055, + "_id": { + "$oid": "6711d568cd60fca157e5d03a" + } + }, + { + "text": "He is always available to help you. He even stays over night in the cafeteria with students the day before finals. Very easy professor. A must take.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d03b" + } + }, + { + "text": "although i got A on his class, his is still a bad professor! you will not learn anything from his class but sex. if u try to ask him a lot, easy A.", + "pos": 0.111, + "neu": 0.829, + "neg": 0.06, + "_id": { + "$oid": "6711d568cd60fca157e5d03c" + } + }, + { + "text": "Probably the most unprofessional instructor I've had the displeasure of dealing with in my entire life. Ten minutes late to every class, extremely disorganized, and CANNOT TEACH.", + "pos": 0.0, + "neu": 0.804, + "neg": 0.196, + "_id": { + "$oid": "6711d568cd60fca157e5d03d" + } + }, + { + "text": "OMG. Nice person, but you never learn calculus with him. Very messy, his test, assignments, are posted in his online wall, but how can you tell if it is there or not. CHANGES THE STORY EVERY TIME, never got the story right. But do offer his time to help students in the cafeteria(I should have done that). Overral TAKE Calc WITH OTHER.", + "pos": 0.08, + "neu": 0.866, + "neg": 0.054, + "_id": { + "$oid": "6711d568cd60fca157e5d03e" + } + }, + { + "text": "OMG ccny must be in terrible teacher crisis that they decided to keeo this **** still....n for calc 2!!??? NO WAY...he doesnt teacha a****, talks a lot(mostly about sex) and very unorganized and unprepared...does not grades exam properly, gives unreasonable hWs...DO NOT EVEN DARE to take him unless u wanna fail calc 3 terribly", + "pos": 0.0, + "neu": 0.727, + "neg": 0.273, + "_id": { + "$oid": "6711d568cd60fca157e5d03f" + } + }, + { + "text": "I love this prof. He is very helpful and teaches well. study the notes he gives and you will understand what he does in class. most students are lazy and dont want to study, they are the whiners. foster is a cool guy and a fair grader!! highly recommend to any failure in math.", + "pos": 0.247, + "neu": 0.626, + "neg": 0.126, + "_id": { + "$oid": "6711d568cd60fca157e5d040" + } + }, + { + "text": "I love this guy. really likes students and likes passing them. I wish all professors could be like him, full of heart.", + "pos": 0.549, + "neu": 0.451, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d041" + } + }, + { + "text": "really cares for his students. fair grader. I hate the other math professors, they are too arrogant and heartless. This guy is cool and very helpful. Just see him in the cafeteria and you'll be fine.", + "pos": 0.251, + "neu": 0.55, + "neg": 0.198, + "_id": { + "$oid": "6711d568cd60fca157e5d042" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d568cd60fca157e5d044" + }, + "professor_name": "Salar Abdoh", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "Prof. Abdoh really cares about his students and it shows. Weekly assignments with minimal guidelines, just to be creative and imaginative. Would definitely recommend this class and this professor.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d045" + } + }, + { + "text": "Professor Abdoh is one of the best professors I have taken at City-College. He doesn't give a lot of assignments. I recommend taking him if you need an elective.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d046" + } + }, + { + "text": "I can't say enough amazing things about this professor. This is the only class I've ever been sad to end. This class is writing-heavy (Obviously), but he only wants you to be creative and be true to yourself. I'd take this class 10 times over if I could. He gives prompts and does NOT criticize your work, rather uplifts everything you do.", + "pos": 0.145, + "neu": 0.798, + "neg": 0.057, + "_id": { + "$oid": "6711d568cd60fca157e5d047" + } + }, + { + "text": "The best professor ever, cancelled our final presentation because he didn't want us to stress and cancelled our last class because he wanted to give us more time to study for finals. A real gem, accessible outside of class and we only met once a week. No essays or exams. Just writing and grades on effort. Take him, you won't regret it.", + "pos": 0.091, + "neu": 0.767, + "neg": 0.142, + "_id": { + "$oid": "6711d568cd60fca157e5d048" + } + }, + { + "text": "This man is an absolute legend. If you don't take him, you're missing out on the opportunity of a lifetime.", + "pos": 0.122, + "neu": 0.783, + "neg": 0.096, + "_id": { + "$oid": "6711d568cd60fca157e5d049" + } + }, + { + "text": "Professor Abdoh is AMAZING! No other way to put it. This class made me and everyone else in it feel better about ourselves and more comfortable with our writing. He is encouraging, funny and kind and I loved this class! He is lenient when it comes to attendance but don't take advantage. Take this class! You'll have fun and get an easy A!", + "pos": 0.329, + "neu": 0.625, + "neg": 0.045, + "_id": { + "$oid": "6711d568cd60fca157e5d04a" + } + }, + { + "text": "One of the best professors I have ever taken! He is very inspirational, and truly cares about his students and their writing . If I ever get the chance to take him again I absolutely will! Take this class, you won't regret it!", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d04b" + } + }, + { + "text": "He is truly the reason I am still attending city college with a major now in English. I was confused about my studies for a while but his papers pushing me to bring out the inner write in me has changed my life completely. he cares about the students and gets to know each one of them. he is one of the best in the department.", + "pos": 0.16, + "neu": 0.818, + "neg": 0.022, + "_id": { + "$oid": "6711d568cd60fca157e5d04c" + } + }, + { + "text": "Great professor and great introduction to creative writing highly recommend has a great teaching style wish he taught more English classes", + "pos": 0.58, + "neu": 0.42, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d04d" + } + }, + { + "text": "Professor Abdoh is really encouraging. He knows how to pull great material from students and gives the right critiques. Expects a lot of writing, but you will improve in his class.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d04e" + } + }, + { + "text": "Prof. Salar is GREAT. Clear cut of what he expects and what you need to do to pass. His lectures are mostly the whole class talking. We have minor every day simple 1-2 page papers but they're easy and he doesn't grade you on how much you do but on your effort and that you tried. You have one paper. Easy A but great routine. A real prof.", + "pos": 0.221, + "neu": 0.76, + "neg": 0.019, + "_id": { + "$oid": "6711d568cd60fca157e5d04f" + } + }, + { + "text": "Professor Abdoh makes class feel more like you are having a conversation in someone's living room than sitting in a classroom. The material he presents is deep, and yet he brings humor into the conversations. Each week, he assigned two or three short stories to read and discuss. He has a sharp eye for when a story works and when it becomes boring.", + "pos": 0.073, + "neu": 0.893, + "neg": 0.034, + "_id": { + "$oid": "6711d568cd60fca157e5d050" + } + }, + { + "text": "Prof. Salar is truly a great teacher. Any negative comments on here are probably from a disgruntled student. He is professional, smart, and laid back. His classes are fun and informative. Yes, you will have homework but his assignments/feedback HELP you to master your skill. I DEF would recommend his class to anyone, I've already taken him twice!", + "pos": 0.262, + "neu": 0.705, + "neg": 0.033, + "_id": { + "$oid": "6711d568cd60fca157e5d051" + } + }, + { + "text": "One of the best english professors. He really knows how to bring out the creativity in his students. I've created some of my best works in his class. He helps students understand beyond their own views which may be limiting them and stunting their growth. Swallow your pride and take the constructive criticism of both the prof. And peers as a gift.", + "pos": 0.296, + "neu": 0.668, + "neg": 0.037, + "_id": { + "$oid": "6711d568cd60fca157e5d052" + } + }, + { + "text": "Worst professor ever. Treats you like any strict parent would and expect tons of reading and homework.", + "pos": 0.116, + "neu": 0.694, + "neg": 0.19, + "_id": { + "$oid": "6711d568cd60fca157e5d053" + } + }, + { + "text": "Professor Abdoh has a laid back demeanor, which allows space for peer to peer crtiquing. Many of the discussions are lively. His own critiques are key & detailed. It is clear that he has experience in the industry so his critiques are insightful for the writer who is interested in being published. Great professor.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d054" + } + }, + { + "text": "I think he's full of himself. When a student wrote well he was more jealous than supportive of that. I took him at the graduate level and have since become a professor and I would never talk to some students the way he spoke to some. Criticism of work felt personal. Always left workshop feeling bad and some of that stuff was published afterwards.", + "pos": 0.082, + "neu": 0.786, + "neg": 0.131, + "_id": { + "$oid": "6711d568cd60fca157e5d055" + } + }, + { + "text": "This class was a fun course to take. However, he would come late and also not give any feedback so if you wanted to know your grade...", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d056" + } + }, + { + "text": "He was always super cool and inspiring in his own quirky way. If you want to really write some good stuff take one of his classes.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d568cd60fca157e5d057" + } + }, + { + "text": "He was effective in getting us to write which is the most important thing, but more negative feedback would've been helpful. Interesting and great person though.", + "pos": 0.393, + "neu": 0.476, + "neg": 0.131, + "_id": { + "$oid": "6711d568cd60fca157e5d058" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d569cd60fca157e5d05a" + }, + "professor_name": "Eugene Nesmith", + "rating": 2.9, + "department": "Theater department", + "comments": [ + { + "text": "He was a pretty good professor if you do what needs to be done. If you show up and do your work when it needs to be done it is an easy A. If you have trouble understanding the criteria I recommend speaking to him directly or speaking to another classmate for better understanding.", + "pos": 0.221, + "neu": 0.737, + "neg": 0.041, + "_id": { + "$oid": "6711d569cd60fca157e5d05b" + } + }, + { + "text": "I don't even like this professor. He is vulgar to his students. He talks about his personal life and to be honest I don't even care. His attendance is mandatory. Please don't ask him to change your grade or to fix it because he will not do it. When it is time for your to present his feedback is rude. If you have him please change your class.", + "pos": 0.118, + "neu": 0.783, + "neg": 0.099, + "_id": { + "$oid": "6711d569cd60fca157e5d05c" + } + }, + { + "text": "You really need to be able to write and write well. I treated my speeches as if I was writing essays and that's what really helped me get my marks in this class. Nesmith is extra and I can definitely see where he gets his ratings from. If you take his course, intend to do well from day one.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d05d" + } + }, + { + "text": "the worst professor i've had in my entire college career. we had to write speeches with absolutely no rubric/criteria and he expected them to be perfect without ever saying what he wanted. not afraid to say if your speech was bad in front of the class. pompous and unlikable and disguises it with \"my class is not for everyone\"", + "pos": 0.053, + "neu": 0.774, + "neg": 0.173, + "_id": { + "$oid": "6711d569cd60fca157e5d05e" + } + }, + { + "text": "Professor Nesmith is by far one of the worst professors I've had. It is an introductory speech class and he expects us to be professional speech givers. He gives no rubric and no explanation what so ever for any speeches. We are told to do them by a date and with no guidance we do and he ends up critiquing everyone on the simplest things.", + "pos": 0.037, + "neu": 0.817, + "neg": 0.146, + "_id": { + "$oid": "6711d569cd60fca157e5d05f" + } + }, + { + "text": "This speech professor is one of the hardest critics and does not mind criticizing your work in front of the whole class. He will bring your grade down for one mistake and if you give a flawless speech, you will still get a bad grade. He does not assign a rubric or any instructions on the speech and expects you to do the work without any context.", + "pos": 0.072, + "neu": 0.821, + "neg": 0.107, + "_id": { + "$oid": "6711d569cd60fca157e5d060" + } + }, + { + "text": "I don't think he should be teaching Female African Comp. Playwright class let alone be a professor. He comes late to class and will mark you late if your even one minute late. He has no consideration for students that trying to improve. He said go the writing center and when I did over some my assignments to show him. He refused to read them.", + "pos": 0.041, + "neu": 0.868, + "neg": 0.091, + "_id": { + "$oid": "6711d569cd60fca157e5d061" + } + }, + { + "text": "For an introductory to speech class, he expects too much. Grading criteria is not clear at all, and grades do not match, like they're not consistent, he has no scale when grading. Never gives you a rubric, and simply just says what the speech will have to consist of. Deducts major points for one mistake. about 4 speeches, and 2 papers.", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d569cd60fca157e5d062" + } + }, + { + "text": "Professor Nesmith is a fun and interesting guy but he is VERY demanding for an INTRODUCTORY acting class. Non-specific grading criteria. I completed every assignment on time, was never late, never missed a class, acted my best; still not an A. He doesn't seem to know the value of a GPA. Good to challenge yourself, not good to your GPA.", + "pos": 0.233, + "neu": 0.652, + "neg": 0.115, + "_id": { + "$oid": "6711d569cd60fca157e5d063" + } + }, + { + "text": "I would never take this professor clas again. Hes super hard when it comes to grading. I did all my assignments and tasks he asked for and still got C+. Attendance is mandatory, if you late one minute he marks you as a absent. I truly regret taking this class I didnt even need, I thought its going to be fun instead his grade messed up my GPA.", + "pos": 0.144, + "neu": 0.772, + "neg": 0.084, + "_id": { + "$oid": "6711d569cd60fca157e5d064" + } + }, + { + "text": "He is a very funny guy, very serious about his work. He is very open minded and when you get to know him better it makes it easier to pass the class cause he helps the students.", + "pos": 0.255, + "neu": 0.71, + "neg": 0.035, + "_id": { + "$oid": "6711d569cd60fca157e5d065" + } + }, + { + "text": "4 speeches, introduction, informative, demonstration, and persuasive. Each student gives 4 speeches and listens to each one of your classmates . I improved my speaking skills immensely from this class. I recommend Prof. Nesmith.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d066" + } + }, + { + "text": "He is very unfair! He needs to understand that not everyone is comfortable speaking in front of the class! Even if you make a small mistake, he deducts huge points off of your speech! I hope he is more understanding and easygoing with the future classes.", + "pos": 0.136, + "neu": 0.7, + "neg": 0.164, + "_id": { + "$oid": "6711d569cd60fca157e5d067" + } + }, + { + "text": "He is strict in attendance. He isn't clear on what he wants in the speeches so as a result, you'll only know when you're up in class and he critiques you on why your speech is not what he asked. We did get two pop quizzes to make sure we are on task. Other than that if you're not presenting you're doing nothing.", + "pos": 0.035, + "neu": 0.932, + "neg": 0.033, + "_id": { + "$oid": "6711d569cd60fca157e5d068" + } + }, + { + "text": "I took him for Black Drama in USA, the course was great. He's a real solid grader. You will have to work for it. The plays he has his class read were really good but long, however he does go over it in class. The open discussions are intriguing. Make sure you attend the school plays because you have to write reviews for them.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d069" + } + }, + { + "text": "Entire grade basically depends on 4 relatively easy speeches, 2 papers and attendance. Allows you to use notes for your speeches (so you don't have to memorize each speech; just read through ). He isn't too helpful and doesn't really teach anything new. Talks too much about himself + very condescending. You can use the pdf of the handbook too.", + "pos": 0.046, + "neu": 0.917, + "neg": 0.037, + "_id": { + "$oid": "6711d569cd60fca157e5d06a" + } + }, + { + "text": "He demands a lot for a intro class. He is strict about lateness, but he is late for almost all the lectures. Total of 4 speeches (range from 4-15 minutes) and 2 reaction paper (2 pages). He assigns grade randomly. Take other professors instead.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d06b" + } + }, + { + "text": "He expects a lot for a level one course, in a way he expects you to know how to act. He can be a tough grader and gives good feedback but at times he harshly criticizes a student's performance or personality. He doesn't like lateness as it affects your final grade.", + "pos": 0.035, + "neu": 0.84, + "neg": 0.125, + "_id": { + "$oid": "6711d569cd60fca157e5d06c" + } + }, + { + "text": "I took Prof Nesmith for Acting 1 and 2. If you love acting this is the class for you. He is very passionate about his art and wants to bring out all of your acting qualities. I especially like how real he is. Thanks Prof for helping me to be a better actor.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d06d" + } + }, + { + "text": "He is a very disorganized professor. He will lay tons of assignments to the class but there would be no time in the semester to do them and he blames it on the students. No preparationhelp for the scenes. There are honestly better and more dedicated professors to take an acting class with. AND helpful. Good guy though.", + "pos": 0.249, + "neu": 0.615, + "neg": 0.137, + "_id": { + "$oid": "6711d569cd60fca157e5d06e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d569cd60fca157e5d070" + }, + "professor_name": "Sherrie Baver", + "rating": 2.5, + "department": "Political Science department", + "comments": [ + { + "text": "Run Away! Grade by one midterm ,Final and two eassys. She changes instructions a lot of times and while it is come to assignments (completely confusing) \nIf you have good notes and answer exams in ease then you will be ok.", + "pos": 0.124, + "neu": 0.828, + "neg": 0.048, + "_id": { + "$oid": "6711d569cd60fca157e5d071" + } + }, + { + "text": "This is the worst professor I've had at CCNY. She was extremely strict on attendance but she would show up late to almost every single class, hard to find at office hours, and her lectures were disorganized. Just do not take this class with her", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d569cd60fca157e5d072" + } + }, + { + "text": "strict on attendance but she came to class late MOSTLY every day. lectures were disorganized and not engaging at all. 2 essay/2 exams. sometimes was not there for office hours. She changed the syllabus throughout the semester making doing assignments confusing. DO NOT recommend at all. material could be interesting if taught better.", + "pos": 0.114, + "neu": 0.726, + "neg": 0.16, + "_id": { + "$oid": "6711d569cd60fca157e5d073" + } + }, + { + "text": "She's a nice older lady. She definitely loves what she teaches. The lectures just aren't engaging enough and a bit boring. Overall she does have a sense of humor, I think she is just overwhelmed with other work that made the experience not the best for the student. Like she would change the syllabus a lot and it would get a bit confusing.", + "pos": 0.193, + "neu": 0.683, + "neg": 0.124, + "_id": { + "$oid": "6711d569cd60fca157e5d074" + } + }, + { + "text": "DO NOT TAKE CLASSES WITH HER! She was always late to class. The course seemed completely improvised and unorganized. She writes her lesson on the board and most of the time is a mess and hard to understand. \nThis class was a big waste of time and money. It is so sad bc the topic of the class is very entertaining and yet she makes it boring", + "pos": 0.041, + "neu": 0.787, + "neg": 0.171, + "_id": { + "$oid": "6711d569cd60fca157e5d075" + } + }, + { + "text": "look the topic of this class is really interesting but when it comes to she teaching this class...yeah, she is not suited for teaching. she comes late, most of the times in office hours she is not there, and she only has 4 things 2 exams and 2 papers which she would judge like she is the one who wrote the bible. DON'T TAKE THIS CLASS", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d076" + } + }, + { + "text": "I found it disheartening that a level 100 class that I assumed to be a fun experience was filled with stress, depression and confusion. I would never recommend a class by Professor Baver to anyone if they value their GPA or sanity.", + "pos": 0.105, + "neu": 0.644, + "neg": 0.251, + "_id": { + "$oid": "6711d569cd60fca157e5d077" + } + }, + { + "text": "I would avoid it if possible.", + "pos": 0.0, + "neu": 0.694, + "neg": 0.306, + "_id": { + "$oid": "6711d569cd60fca157e5d078" + } + }, + { + "text": "We had a 15-page paper and an exam. I did her work, even got a writing tutor, and failed. She is not the best when it comes to online-only 3 things.", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d569cd60fca157e5d079" + } + }, + { + "text": "Her teaching style isn't for everyone but I personally enjoy more lecture than class participation. I'm paying to learn from someone with a PhD and research experience on the topic, not to hear the opinions of my fellow 20 year old class mates that don't know any more than I do. Very structured and organized, writing-intensive, and interesting", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d07a" + } + }, + { + "text": "Her lectures are super boring and she is not wiling to help students rather she is always criticizing your writing style. i just don't understand how she grade because it's not clear at all.", + "pos": 0.093, + "neu": 0.688, + "neg": 0.219, + "_id": { + "$oid": "6711d569cd60fca157e5d07b" + } + }, + { + "text": "Her lectures are heavy and the material is quite interesting but she makes it boring. She does not give feedback and if you ask for it she will just end up insulting your writing style and will not point at the one thing you did wrong. Avoid this professor at all costs, trust me. Avoid her specially on an online format. Not a good professor.", + "pos": 0.077, + "neu": 0.682, + "neg": 0.241, + "_id": { + "$oid": "6711d569cd60fca157e5d07c" + } + }, + { + "text": "I would like to say that she is quite possibly the worst professor. Not flexable with students (especially during a pandemic), assigns papers that are excessive -midterm--4 pages, 2 response papers, final exam-- 4 pages, research but not really a research paper-- 15 pages. even if you read, she goes on tangents that arent relevant and doesnt care.", + "pos": 0.028, + "neu": 0.875, + "neg": 0.097, + "_id": { + "$oid": "6711d569cd60fca157e5d07d" + } + }, + { + "text": "She was really tough at grading essay exams. She offended me when she said I desperately needed help with my writing. I get A's on my essays all the time so it surprised me that she said that. Her lectures are intriguing though. Make sure you write all your notes during lecture. Your notes are key to helping you do well on exams.", + "pos": 0.158, + "neu": 0.755, + "neg": 0.088, + "_id": { + "$oid": "6711d569cd60fca157e5d07e" + } + }, + { + "text": "Stickler for attendance, but very lenient with deadlines. Make sure you read the content, you'll be fine once you do. She's a strict grader, you can't bs your way through the course. Honestly, just follow her guidelines and you'll be fine.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d569cd60fca157e5d07f" + } + }, + { + "text": "She has been teaching the course for years and teaches off her notes. Abbsolutely no way to participate in class and she has no grading criteria, meaning she'll give you whatever she wants. Do not take this class as it is poorly designed and she expects students to memorize textbook chapters for in class writing exams even if she did not teach it!", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d569cd60fca157e5d080" + } + }, + { + "text": "Really boring and doesn't welcome any class discussion or questions. Just no engagement. Pretty clear cut grading criteria, 2 exams and 1 15 page paper.", + "pos": 0.077, + "neu": 0.561, + "neg": 0.362, + "_id": { + "$oid": "6711d569cd60fca157e5d081" + } + }, + { + "text": "I am so confused with the neg. comments. Easy professor and clear grading criteria. Can't wait to take her again this upcoming Fall semester.", + "pos": 0.186, + "neu": 0.712, + "neg": 0.101, + "_id": { + "$oid": "6711d569cd60fca157e5d082" + } + }, + { + "text": "Old-school, chalk and blackboard type of professor. She lectures slowly and repeats a lot so you won't get to go over all the material on the syllabus. She gives the exam questions ahead of time though so if you study, it's impossible to fail the midterm or the final.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d569cd60fca157e5d083" + } + }, + { + "text": "I can't understand why or how Professor Baver is difficult, especially if she gives you the midterm and final exam questions in advance. Her classes are just like any other class. Do the readings, take good notes and study and you will pass the midterm and final with flying colors. The 15 page paper is super easy too. Just follow the directions.", + "pos": 0.17, + "neu": 0.795, + "neg": 0.035, + "_id": { + "$oid": "6711d569cd60fca157e5d084" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56acd60fca157e5d086" + }, + "professor_name": "Craig Cobb", + "rating": 4.7, + "department": "Speech department", + "comments": [ + { + "text": "Took Professor Cobb for Speech maybe 5 years ago. Since then, I'd occasionally randomly think about his course and what he taught us. Till this day I constantly remind myself of what he taught us (speech related or just general life advice). As I age, I also realize how true things he said are. Definitely recommend taking his speech course(s).", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d087" + } + }, + { + "text": "Professor Cobb is a great professor, we barely had assignments during this semester and if we did they are beyond simple and easy. He is very nice and respectful to his students and is accessible out of class with very quick response times. I recommend this class 100 percent if you need a speech class.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d088" + } + }, + { + "text": "He is hilarious! He hardly gives you work to do and he talks a lot. Beware, he sometimes will forget to come to class and won't inform you about it so email him to let him know that you came to class. You have an easy final so this class is super light so if you are in need of an easy A class, this class is for you!!", + "pos": 0.168, + "neu": 0.808, + "neg": 0.024, + "_id": { + "$oid": "6711d56acd60fca157e5d089" + } + }, + { + "text": "It's only my second day of his class and I already love him", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d08a" + } + }, + { + "text": "Professor's Cobb Voice and Diction class is great. He will help you as much as you can in this class and will make you feel as comfortable as possible. He is also very inspirational and will always motivate you to do better. In this class he pays attention to your accent for assignments and for manipulation of voice. Highly recommend this professor", + "pos": 0.281, + "neu": 0.691, + "neg": 0.028, + "_id": { + "$oid": "6711d56acd60fca157e5d08b" + } + }, + { + "text": "Amazing and inspirational. Really wants to improve everyone's speech skills and will provide feedback on how you can improve. He's also very funny and real. Motivates everyone to do their best. Enjoyed his class very much. Graded on 3 speeches. He collects the outline only. He also comes late a lot or cancels class. Easy A class. Take him!", + "pos": 0.343, + "neu": 0.633, + "neg": 0.024, + "_id": { + "$oid": "6711d56acd60fca157e5d08c" + } + }, + { + "text": "Professor Cobb is the G.O.A.T professor as he really cares about his area of study and understands the struggle of being a college student as well. Simply, just show up to class do your work on time, and you'll be fine. This guy will keep you engaged by cracking jokes and telling funny stories. Best speech class I've taken, highly recommend.", + "pos": 0.286, + "neu": 0.683, + "neg": 0.03, + "_id": { + "$oid": "6711d56acd60fca157e5d08d" + } + }, + { + "text": "Professor Cobb is the greatest professor you can have for Speech. He gives great feedback to improve your speeches. He's also hilarious and crack's jokes every class. He makes you feel at ease during his class and you'll always want to come to class. Easily one of the best professors I've had and CCNY has as well. Take him, you won't regret it!!!!!", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d08e" + } + }, + { + "text": "Easily one of the best professors at CCNY. Does a great job of seeing what need improvement in your speeches, and gives you feedback and advice on how to improve. Wish I could take him again.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d08f" + } + }, + { + "text": "I took speech and diction and it was honestly the easiest class I have had ever including high school. He rips on people so class is type funny. RAISE YOUR GPA AND TAKE HIS CLASS. Im planning on taking another speech class with him.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d090" + } + }, + { + "text": "Professor Cobb is honestly one of the best professors at CCNY. He is highly motivational and makes you want to do better, not only on his papers/speeches, but overall in life. There are 4 speeches and he will try his very best to bring out everyone's potential.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d091" + } + }, + { + "text": "The best of the best.", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d092" + } + }, + { + "text": "A speech teacher that knows how to push you out of your comfort zone. Actually helps you develop your speech skill. Absolutely inspiring.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d093" + } + }, + { + "text": "Show up on time and dont cut. He tries to teach speaking as a skill so there aren't exams or papers, just some simple assignments and a few performances in class we're he critiques you. Grade based on submitted mp3's of you speaking and a home final which takes 1-2 hr, and is just recording on a website. He teases a lot so don't take it personal", + "pos": 0.026, + "neu": 0.942, + "neg": 0.032, + "_id": { + "$oid": "6711d56acd60fca157e5d094" + } + }, + { + "text": "My favorite Professor of All Time hands down! I took Professor Cobb in Hostos Community College in a writing intensive game design course. First off this man cares about every student, he inspired me to think more about myself as a person and helped me with my writing and speech preparations. I could write so much about this man, G.O.A.T!", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d095" + } + }, + { + "text": "Pretty chill professor, If no one gives feed back on your speech, he will. Gives good feed back on everyone's speeches, especially what you should work on. We had three speeches which gradually got \"harder\" to do. Pick your topics wisely since we had to convert a topic for one of the speeches to another speech. Out of class early a lot.", + "pos": 0.129, + "neu": 0.839, + "neg": 0.032, + "_id": { + "$oid": "6711d56acd60fca157e5d096" + } + }, + { + "text": "Very easy going. Prof. Cobb canceled a few classes here and there. To get a A in the class you just have to be present and participate a lot. He sees who the hardworking students are. He's very understanding. Don't expect a A because you're quiet and show up here and there and do some work. Got a B+ from that.", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d097" + } + }, + { + "text": "He is an amazing professor. I really learned how to do public speaking form him, although I still get super nervous. He's hilarious and gets real with you. He is also inspirational and really takes the chance to get to know his students. Would love to take him again. Although I got a B, but that was my fault.", + "pos": 0.189, + "neu": 0.737, + "neg": 0.074, + "_id": { + "$oid": "6711d56acd60fca157e5d098" + } + }, + { + "text": "He is so amazing and kind and funny love his class.", + "pos": 0.691, + "neu": 0.309, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d099" + } + }, + { + "text": "We had four speeches, the fourth being the hardest. However, he preps you well throughout the semester for each speech and is very clear in his methods. He gives great feedback. He is really funny and down to earth. He genuinely cares about his students teaching you valuable life lessons as well. He is the best! Any of his classes are worth taking!", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d09a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56acd60fca157e5d09c" + }, + "professor_name": "J Jellen", + "rating": 2.2, + "department": "Economics department", + "comments": [ + { + "text": "Didn't go to a single lecture and definitely pointless to go to. This class is 100% self-study. Gives a total of four tests and one finals. Just read the textbook and review any practice materials he gives you. Posted past test with answers for test 1 and 2. Posted test banks with no answer keys for test 3, test 4, and finals.", + "pos": 0.042, + "neu": 0.924, + "neg": 0.034, + "_id": { + "$oid": "6711d56acd60fca157e5d09d" + } + }, + { + "text": "Jelen's lectures are more abstract rants on the daily topic than anything that can help his students understand the microeconomic principles he's supposed to teach. Whole class realized this over time, and less and less people showed up for his lectures. If you use the slides he posts online, you'll pass the tests, which are all multiple choice.", + "pos": 0.044, + "neu": 0.914, + "neg": 0.042, + "_id": { + "$oid": "6711d56acd60fca157e5d09e" + } + }, + { + "text": "average of 5 homework can be used to replace a test grade. tests are multiple choice. His lecture is pretty bad, but it was to a class of 200 so Ill give him a little leeway. he might be good in a small classroom. don't show up to class otherwise, just read the book. if you need to email him, it takes him about three days to respond.", + "pos": 0.077, + "neu": 0.83, + "neg": 0.093, + "_id": { + "$oid": "6711d56acd60fca157e5d09f" + } + }, + { + "text": "Worst professor ever in my student history the college needs to get rid of him. Yes he have a sense of humor but his teaching method is confusing and he does not give exams or prepare you appropriately.", + "pos": 0.08, + "neu": 0.804, + "neg": 0.116, + "_id": { + "$oid": "6711d56acd60fca157e5d0a0" + } + }, + { + "text": "Jelen doesn't teach at all. Expect to teach yourself and read the entire textbook by yourself. He gives you practice exam questions before exams", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d0a1" + } + }, + { + "text": "RUN. DON'T DO IT, YOU SEE THIS MAN'S NAME AS YOUR PROFESSOR, DROP IMMEDIATELY, ESPECIALLY IF YOU ARE A BUSINESS OR ANY ECO MAJOR!!! He spent more time making jokes than teaching a actual lecture. Aplia IS NOT helpful AT ALL, makes the class feel even more difficult, it is not a easy program. It was just an overall horrible lecture hall experience", + "pos": 0.031, + "neu": 0.77, + "neg": 0.199, + "_id": { + "$oid": "6711d56acd60fca157e5d0a2" + } + }, + { + "text": "very bad classssssssss!!!! avoid at all cost. dont really teach much everything is online in this damn thing called aplia. you can do the aplia and u wont have to take the final. only thing is he hits you with like 6 chapters and an exam all in like the same week. the aplia material is not even related to the exam. gives a review sheet but no answe", + "pos": 0.046, + "neu": 0.822, + "neg": 0.133, + "_id": { + "$oid": "6711d56acd60fca157e5d0a3" + } + }, + { + "text": "The Homework assigned with the textbook is difficult because 1) the textbook doesn't entirely explain how to do the questions and 2) he doesn't teach or review. He comes off as funny at first but realizing that he doesn't teach in class makes me regret taking the class. Do not recommend taking the course. or the course with him at least.", + "pos": 0.029, + "neu": 0.85, + "neg": 0.121, + "_id": { + "$oid": "6711d56acd60fca157e5d0a4" + } + }, + { + "text": "you don't have to go to class just do the readings and the online HW.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d0a5" + } + }, + { + "text": "He is one of the professor you would never wanna take. Usually in other eco class you do 10/20 chapters. In his class you gotta do them all. His lecture is nothing related to his exam.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d0a6" + } + }, + { + "text": "Do not bother attending lectures, b/c you will learn nothing. As others have said: you will buy the book online on APLIA, do TONS of HW on there; have 3 exams which are OK, b/c he gives you the questions beforehand. I did NOT enjoy his class. Now that I have to take a higher level MACRO, I can say that Jelen taught me NOTHING", + "pos": 0.03, + "neu": 0.931, + "neg": 0.039, + "_id": { + "$oid": "6711d56acd60fca157e5d0a7" + } + }, + { + "text": "Funny professor...Does not talk about the book but if you pay attention and read the book by yourself, you will do great...Homeworks are all online and you already know which questions will be on the tests...if you are hard working take him...Overall an easy and interesting class !!!", + "pos": 0.181, + "neu": 0.762, + "neg": 0.057, + "_id": { + "$oid": "6711d56acd60fca157e5d0a8" + } + }, + { + "text": "Funny guy. Most of the homeworks are pretty easy as long as you have textbook with you. Tests aren't so bad either. He gives you practice exams with 150 questions, then takes 50 of them and uses them on the test. Just have to memorize the questions and answers. No final exam.", + "pos": 0.204, + "neu": 0.761, + "neg": 0.036, + "_id": { + "$oid": "6711d56acd60fca157e5d0a9" + } + }, + { + "text": "He is a humorous professor but you will not learn in his class, in order to pass you have to teach yourself which can be very tough if you are not good at econ, take his class! make friends get a study group do homeworks and you will be fine!", + "pos": 0.136, + "neu": 0.773, + "neg": 0.091, + "_id": { + "$oid": "6711d56acd60fca157e5d0aa" + } + }, + { + "text": "I had him this summer. great professor, lots of hw. test werent bad. the midterm was take home. the final wasnt hard. i recommend him. better than taking foster for sure.", + "pos": 0.332, + "neu": 0.616, + "neg": 0.052, + "_id": { + "$oid": "6711d56acd60fca157e5d0ab" + } + }, + { + "text": "3 test, lots of hw, read the book and dont go to class and you should be fine. i missed a b by 2 points and rarely did much but sleep in his class.", + "pos": 0.04, + "neu": 0.914, + "neg": 0.046, + "_id": { + "$oid": "6711d56acd60fca157e5d0ac" + } + }, + { + "text": "Ok 3 exams 20% each then online hw through Aplia and he does not take average of the online Hw's. He just adds up all the questions you got write. How I understood and everyone else understood his grading is totally different compared to him.", + "pos": 0.048, + "neu": 0.952, + "neg": 0.0, + "_id": { + "$oid": "6711d56acd60fca157e5d0ad" + } + }, + { + "text": "3 exams 60%, about 25 online Hws 40%. seems easy but the questions & exams r really confusing & long. lecture is funny idk how much info u can retain tho. does curve his tests but thats b/c everyone fails.. BADLY.. if u can teach urself he is easy", + "pos": 0.148, + "neu": 0.646, + "neg": 0.205, + "_id": { + "$oid": "6711d56acd60fca157e5d0ae" + } + }, + { + "text": "Horrible passed 2/3 test, lazy in teaching. Went to his class like 5 times. Serious on test day but overall you'll have to teach yourself.", + "pos": 0.063, + "neu": 0.753, + "neg": 0.185, + "_id": { + "$oid": "6711d56acd60fca157e5d0af" + } + }, + { + "text": "Horrible professor! His class is a joke! He is very unorganized,especially on test days. He doesnt seem to care at all!confusing, unprepared, unclear, late, unhelpful.If you want to take economics, dont take him! You will have to teach yourself with your own textbook. (which means spending money on a class for nothing)-", + "pos": 0.059, + "neu": 0.786, + "neg": 0.155, + "_id": { + "$oid": "6711d56acd60fca157e5d0b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56bcd60fca157e5d0b2" + }, + "professor_name": "Giancarlo Paolillo", + "rating": 3.2, + "department": "Mathematics department", + "comments": [ + { + "text": "If you put in time after school for tutoring or just learning the content for his class on your own, will do fine. It is a math class, after all. His handwriting is sloppy and he can get carried away with his lectures. I recommend doing all his homework and just studying on your own. And for sure, do his review quizzes and tests.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0b3" + } + }, + { + "text": "Im honestly kind of mixed on him, but hes definitely good. HW counts as extra credit and it gives a decent amount and helps review topics, but it does take hours to complete. We had 8 quizzes and 3 tests, he dropped the lowest 2 quizzes and lowest test. Lectures arent mandatory, but they help. Not a bad prof overall", + "pos": 0.288, + "neu": 0.612, + "neg": 0.1, + "_id": { + "$oid": "6711d56bcd60fca157e5d0b4" + } + }, + { + "text": "generous with the partial credit and provides everything necessary to pass his class. study guides, extra problem sets, helpful videos etc. his handwriting is kinda sloppy and his lectures are a bit hectic, but he's genuinely one of the most caring math professors at ccny.", + "pos": 0.202, + "neu": 0.763, + "neg": 0.035, + "_id": { + "$oid": "6711d56bcd60fca157e5d0b5" + } + }, + { + "text": "he's a nice guy. his lectures are ok, but he tends to ramble a bit. his quizzes and tests are extremely fair. and he sends out study guides for each quiz/exam. it's a math class, so you put in what you get, be he's definitely a good choice.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0b6" + } + }, + { + "text": "I had Professor Paolillo during COVID and he was the most caring professor out there. He continued to teach and have office hours, but made testing and HW as easy as possible for us. He even changed up our grading system completely in order to help every person in the class do as well as they could. I'd definitely recommend him!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0b7" + } + }, + { + "text": "He is great at teaching in this class. He makes the material easy to understand and master. If you pay attention in class and do the homework assignments, the tests and quizzes will be a breeze. I would definitely take his class again.", + "pos": 0.194, + "neu": 0.778, + "neg": 0.028, + "_id": { + "$oid": "6711d56bcd60fca157e5d0b8" + } + }, + { + "text": "Took him summer 2016, really liked him for Calc 3 (B+) so decided again for 392. Really enjoy his teaching style, two of the hardest classes I had so far. Studied all summer, and half the class didnt study and did very poorly (F, D, and C) If you want an easy class DO NOT take him, if you want to learn take him. No curve, with tough exams. STUDY!!", + "pos": 0.16, + "neu": 0.794, + "neg": 0.047, + "_id": { + "$oid": "6711d56bcd60fca157e5d0b9" + } + }, + { + "text": "He is very understanding if youre open with him. Show him that you try to learn and do ALL homeworks and matlabs and hell be lenient with you. Meet with him to discuss your grade!", + "pos": 0.053, + "neu": 0.825, + "neg": 0.122, + "_id": { + "$oid": "6711d56bcd60fca157e5d0ba" + } + }, + { + "text": "Worst math professor ever. Please avoid taking him, even if he is your last option!!! He is unsure on how to teach or if he even knows the material. His tests are nothing like he says they are. Overall horrible professor.", + "pos": 0.044, + "neu": 0.672, + "neg": 0.284, + "_id": { + "$oid": "6711d56bcd60fca157e5d0bb" + } + }, + { + "text": "This is a great professor. If you follow him in class you will understand every detail. He often stays after class and is not on a rush. He always help students out of his normal class hours to understand the problems they were not able to grasp in class. I have learnt a lot and went through the finals unbelievably, with ease. Great Professor", + "pos": 0.184, + "neu": 0.78, + "neg": 0.036, + "_id": { + "$oid": "6711d56bcd60fca157e5d0bc" + } + }, + { + "text": "He is awesome!!!!!!!! I learned so much!", + "pos": 0.468, + "neu": 0.532, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0bd" + } + }, + { + "text": "Prof Paolillo is a very gifted mathematician. He explained and derived concepts clearly. Homework was appropriate and exams were fair. He is very helpful in office hours and via email. Highly recommended!", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0be" + } + }, + { + "text": "Absolutely horrible teacher, doesn't know to to teach calc properly but expects you to nail it perfectly.", + "pos": 0.25, + "neu": 0.647, + "neg": 0.103, + "_id": { + "$oid": "6711d56bcd60fca157e5d0bf" + } + }, + { + "text": "Its a very sad experience, you have to teach yourself in order to pass, the class methodology consists in a quizz every other class, plus an insane amount of homework. No teaching skills whatsoever.", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c0" + } + }, + { + "text": "What a great professor! He was super dedicated and gave me a lot of feedback!!! I struggled understanding the double and triple integration and he was patient explaning. He was reachable via email and stayed after class for questions. Fair grader and keeps the class super interesting with cool proofs. He was fantastic! Highly recommended!!!!", + "pos": 0.38, + "neu": 0.589, + "neg": 0.031, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c1" + } + }, + { + "text": "Extremely useless! Makes tons of mistakes on the board and laughs for no good reason all the time. Spends A LOT of time on useless proofs and leaves out VERY IMPORTANT concepts that show up on the final and tells us to look them up in the textbook. Calc 3 is hell with him! Only positive thing is the somewhat decent partial credit. Btw, no curve!", + "pos": 0.146, + "neu": 0.642, + "neg": 0.212, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c2" + } + }, + { + "text": "Amazing professor!!!! Superb !!! No one would ever regret taking his class. He is an outstanding instructor and he is extremely helpful to his students. He would spend so much time to make sure students get the topic. HIGHLY RECOMMEND TAKING HIM..", + "pos": 0.368, + "neu": 0.551, + "neg": 0.081, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c3" + } + }, + { + "text": "Be prepared to teach yourself the material because all he does is fumble around and talk to himself. He is very unclear and laughs a lot from nerves. You'll be fine if you go to tutoring and he is a bit of a pushover so you can try your luck.", + "pos": 0.176, + "neu": 0.76, + "neg": 0.064, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c4" + } + }, + { + "text": "Just incredibly ineffective. Barely seems to grasp the concepts himself, let alone teach them clearly. The tests are not the most difficult but you have to self-study quite a bit by reading and doing textbook problems. Does want you to do well & offers (poor) help. He has to gain more confidence and build a lesson plan instead of fumbling around.", + "pos": 0.254, + "neu": 0.615, + "neg": 0.13, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c5" + } + }, + { + "text": "ehh... very hard to follow. sweats alot, and get nervous. does not really know what he's teaching, but i very willing to stay after class or meet to explain what is learned. hes a fair gradder, and i wants you to do well, but his test can be somewhat hard. he also somewhat of a pushover, so if you want to boost your grade, try to talk to him.", + "pos": 0.143, + "neu": 0.805, + "neg": 0.053, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56bcd60fca157e5d0c8" + }, + "professor_name": "Herbert Toler", + "rating": 2.3, + "department": "World Civilizations department", + "comments": [ + { + "text": "You know what, he is hilarious by the way he acts sleeping all the time giving prompts that don't even make sense and you know what my GPA went down a lot because of him even though I did all the work assigned", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0c9" + } + }, + { + "text": "Does not respond to emails, and gives 4 exams plus a final exam, on top of that he gives 3 papers we have to write which is best 2 out of 3. The final exam is a 2 part paper we have to do. have to write an outline and bring the outline to the test date. I personally wouldn't recommend taking this professor for a USSO class as the work is too much.", + "pos": 0.076, + "neu": 0.897, + "neg": 0.027, + "_id": { + "$oid": "6711d56bcd60fca157e5d0ca" + } + }, + { + "text": "This guy is something else. He doesn't give a detailed prompt at all, he gives you the question for an essay and expects you to write like Shakespeare with that. Also comes to class half asleep. One thing that i Hate is that this class is an online course but he's trying to make the final in-person. If only I had the chance to go back in time.", + "pos": 0.059, + "neu": 0.908, + "neg": 0.033, + "_id": { + "$oid": "6711d56bcd60fca157e5d0cb" + } + }, + { + "text": "Would NEVER take a class w| him again! He really is falling asleep in class, he's NEVER on time. Unless you have lightening speed typing you'll have to watch the recordings which is a waste of time, why require attendance if I still need to watch the lecture to get the material. No textbooks but you still need to FOUR books for the class.", + "pos": 0.0, + "neu": 0.921, + "neg": 0.079, + "_id": { + "$oid": "6711d56bcd60fca157e5d0cc" + } + }, + { + "text": "Every class he would be falling asleep, he's never on time to the zoom meetings, and for the final he gave us all the wrong meeting link for us to join which caused us to take the final at a later time, but you only need to do 2 essays for his class, avoid him if you want a professor that responds to your emails", + "pos": 0.044, + "neu": 0.867, + "neg": 0.089, + "_id": { + "$oid": "6711d56bcd60fca157e5d0cd" + } + }, + { + "text": "You would have to have his phone number and pray to the lords that he would actually reply to your emails because his communication side of things are HORRIBLE. Does not help his grading for papers is confusing, and he lacks proper ability to give feedback.", + "pos": 0.109, + "neu": 0.737, + "neg": 0.155, + "_id": { + "$oid": "6711d56bcd60fca157e5d0ce" + } + }, + { + "text": "Absolute the Worst, I took him online for this semester, he never came on time to the zoom meeting, Has no lesson plan just freestyles the lectures. 9/10 he's falling asleep in the class. I regret this so much. When u ask questions about the papers he doesn't provide any answers. By far the worse professor at city college. Stay Away.", + "pos": 0.019, + "neu": 0.785, + "neg": 0.197, + "_id": { + "$oid": "6711d56bcd60fca157e5d0cf" + } + }, + { + "text": "this professor absolutely does not have any type of lesson plan , he just talks about things he EXPECTS you to know . and he will fail you if he sees fit .", + "pos": 0.068, + "neu": 0.838, + "neg": 0.095, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d0" + } + }, + { + "text": "STAY AWAY FROM HIM! doesn't care about students, always has a smart comment when you ask a question about an assignment and never gives out grades in a timely manner.", + "pos": 0.089, + "neu": 0.833, + "neg": 0.078, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d1" + } + }, + { + "text": "Professor Toler did not give out or grades even when it was 11 days past the deadline to post grades. His classes were boring but okay. He doesn't give timely feedback either.", + "pos": 0.069, + "neu": 0.882, + "neg": 0.049, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d2" + } + }, + { + "text": "TOLER'S SURVIVAL GUIDE: #1- PRINT THE SYLLABUS BEFORE 1ST FIRST CLASS #2- HE POST HIS LECTURES ON BLACKBOARD. PRINT THEM OUT AND READ HIS LECTURES BEFORE CLASS (THIS WILL MAKE YOU LOOK SMART, + HE LOVES CLASS PARTICIPATION #3-YOU DO NOT NEED THE TEXT BOOK- ONLY BOOK YOU NEED IS THE FREDERICK DOUGLASS BOOK #-ATTENDANCE IS VERY IMPORTANT TO HIM", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d3" + } + }, + { + "text": "I TOOK HIM SPRING 2018 AT MEC . HE SEEMS EXTREMELY TOUGH IN THE BEGINNING. I ACTUALLY WANTED TO DROP HIS CLASS. ATTENDANCE IS A MUST, YOU DO NOT NEED THE TEXT BOOK, THE ONLY BOOK YOU NEED IS THE FREDERIC DOUGLASS BOOK IN WHICH YOU WOULD NEED TO WRITE A PAPER ON. HE POST HIS LECTURES ONLINE, PRINT THEM READ THE LECTURE BEFORE CLASS, IT WILL HELP!", + "pos": 0.046, + "neu": 0.869, + "neg": 0.085, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d4" + } + }, + { + "text": "Prof Toler is... interesting. He seems tough but he's clear on what needs to get done. His character may be a bit off putting, but his grading criteria is clear. Four online, a final exam, and 3 papers (the two best count) are what he will grade you upon. His lectures are incredibly boring. His lectures online are all you need to pass the tests.", + "pos": 0.185, + "neu": 0.756, + "neg": 0.059, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d5" + } + }, + { + "text": "Really makes you work for your grade as if the whole world revolves around his class & his class only. SO much reading 3 complicated papers (went to the tutor & still got a C), 4 exams that include 33 questions!! A final that is two hours long when his class is only 1 hour& 15 minutes!! this guy is ridiculous! he is smart so get ready to read buddy", + "pos": 0.087, + "neu": 0.88, + "neg": 0.033, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d6" + } + }, + { + "text": "If you have the displeasure of being stuck in his class let me tell you how to survive. Read his lectures before class they're posted on blackboard. You can go in to class prepared because he may randomly call on you. Use a laptop for notes in class, he speaks fast and you can organize it later with more ease. Don't waste time reading the textbook", + "pos": 0.102, + "neu": 0.87, + "neg": 0.028, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d7" + } + }, + { + "text": "I had his course at CUNY Medgar Evers. He's strict, but knowledgeable. Doesn't encourage participation, but will answer any serious questions asked by his students. I will say that he had me reconsidering my major.", + "pos": 0.0, + "neu": 0.868, + "neg": 0.132, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d8" + } + }, + { + "text": "He's a Super Inspirational teacher, very passionate about history and a very fair grader. Expect about 3 papers, 3 at home test, the final is not difficult. Just keep up with writing the research papers and you'll be fine. Enjoy his lectures! This professor is the personification of dignity and class!", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0d9" + } + }, + { + "text": "1 - Scholarly Article Review, continue reading additional review below", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d56bcd60fca157e5d0da" + } + }, + { + "text": "4 online test(timed) on material covered in class and \"book\", 1 - research paper about Fredrick Douglass, sprung final on us three weeks before last day of class prepare outline and write essay in class but he gave us topic before final. Lectures are long, he goes to fast hard to keep up.", + "pos": 0.0, + "neu": 0.97, + "neg": 0.03, + "_id": { + "$oid": "6711d56bcd60fca157e5d0db" + } + }, + { + "text": "Took him at medgar evers college fall 2016 for history 200. He was a really fair guy. Gives multiple opportunities for everyone to pass. If you fail it's on you. Pay attention, do your 3 online quiz and do his 3 research papers. He doesn't ask for much. He cares about his students a lot and is very understanding.", + "pos": 0.122, + "neu": 0.805, + "neg": 0.073, + "_id": { + "$oid": "6711d56bcd60fca157e5d0dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56ccd60fca157e5d0de" + }, + "professor_name": "Johnny Wilder", + "rating": 4.9, + "department": "Classics department", + "comments": [ + { + "text": "One of the best professor i had!!", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0df" + } + }, + { + "text": "One of the most passionate and interesting teachers I've ever had the pleasure of studying under. The way he teaches turns even the most ardent haters of history into enthusiastic students.", + "pos": 0.373, + "neu": 0.55, + "neg": 0.077, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e0" + } + }, + { + "text": "One of the best professors in this school!! He's super sweet and intelligent. Truly cares about all of his students. I learned so much without stressing out. No homework just come to class. He made this class fun and easy to get an A. Take him and you won't regret it. Best professor!!", + "pos": 0.434, + "neu": 0.523, + "neg": 0.043, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e1" + } + }, + { + "text": "BEST HISTORY PROFESSOR IN LAGUARDIA! His lectures are thorough. Takes attendance at the very end of the class so even if you show up pretty late you don't get marked off. Gives you questions before the quiz/exam. VERY LENIENT IN GRADING!!! Very hilarious and outspoken. Has a charming personality. Participation is optional but he encourages it.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e2" + } + }, + { + "text": "Johnnie Wilder is one of the best Professors I have ever taken. He is very smart and insightful and makes you want to listen to him all day. He has a lot of fun discussions and makes you want to learn. He really cares about your success and its a easy A. No Homework. Only one Test with one question. I really love him as a professor. He gets an A+", + "pos": 0.303, + "neu": 0.673, + "neg": 0.024, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e3" + } + }, + { + "text": "Professor Wilder is a literal gem! Take him for any class and it's a guaranteed A. He is a very easy grader and he takes attendance via a sign in sheet. He will go off tangents during his lectures but those are the best parts. Textbook can be found online but you barely need to use it. His exams are exactly identical to his review sheets. The best.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e4" + } + }, + { + "text": "This professor is AMAZING! I do not like history but he made it soooo fun and easy. Please, please, please take him! You will not regret it. I wish I could take him again for other courses. HE IS THE BEST.", + "pos": 0.51, + "neu": 0.466, + "neg": 0.023, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e5" + } + }, + { + "text": "Wilder is the best professor at ccny! Even if you dont do well in class, at the end he will give you an A because he thinks it can make a difference in the future for your betterment. Easy A definetly.", + "pos": 0.157, + "neu": 0.805, + "neg": 0.038, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e6" + } + }, + { + "text": "For a kid who just did 2 assignments and google searched all the questions for the final and in the end got an A. Highly recommend!!!!!!! If u get below an A- in his class u really need to revaluate whether u should be in college cause its that easy.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e7" + } + }, + { + "text": "The best professor of history. This professor knows a lot. He gave us three tests and he gives a prepsheet with the questions of the test one week before test. This is an easy A. Take him and you won't regret. He is very strict on attendance though. If you like history, he is the guy you should take.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e8" + } + }, + { + "text": "I love this man. Easy A", + "pos": 0.64, + "neu": 0.36, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0e9" + } + }, + { + "text": "He is the best professor I ever had. If you show up and do papers, you will get an A so easy! You will get something out this class to: his lectures are interesting and enjoyable, he shows a lot of funny videos and movies about history, which you probably were not aware of. Definitely take to improve your GPA!", + "pos": 0.265, + "neu": 0.705, + "neg": 0.03, + "_id": { + "$oid": "6711d56ccd60fca157e5d0ea" + } + }, + { + "text": "great professor. Easy A", + "pos": 0.778, + "neu": 0.222, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0eb" + } + }, + { + "text": "Definitely saved my semester when I transfered to CCNY this Spring! His lectures where always interesting and he has to be the most lenient professor on the planet! Seriously no preasure just get you work done read the chapters comment in class discussions and give him feedback on the readings and you've got an A!", + "pos": 0.178, + "neu": 0.761, + "neg": 0.061, + "_id": { + "$oid": "6711d56ccd60fca157e5d0ec" + } + }, + { + "text": "I loved this professor. He wants everyone to do well and pass with A's. Just do well on the quizzes which he gives you review sheets for and picks questions directly from the sheet. Participate in class! Even if you dont you should be fine if you do his other assignments. I didnt participate and still got an A+. Definitely take him!!", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0ed" + } + }, + { + "text": "Prof is very understandable and keeps everything straight to the point. He is one of the best and easiest to get by because he wants you to pass with an A. Do good on the quizzes and he'll definitely pass you with an A", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0ee" + } + }, + { + "text": "One of the best professors ever! Super laid back and very caring about his students. He really appreciates it when students participate in class. Two papers that can be on absolutely anything, if you got A's on the papers you got an A in the class. Gonna miss him for sure!", + "pos": 0.279, + "neu": 0.696, + "neg": 0.025, + "_id": { + "$oid": "6711d56ccd60fca157e5d0ef" + } + }, + { + "text": "One word to describe this professor: AWESOME! He has 2 essays for the entire semester, which is VERY esay to do. The quizzes are great and simple. He know his info very well, and he is very laid back. You shouldn't fail his class because it's NOT difficult. Recommended!", + "pos": 0.274, + "neu": 0.7, + "neg": 0.026, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f0" + } + }, + { + "text": "Prof. Wilder is a great professor. Very knowledgeable. He knows the material. I love his class and I will take his class if i can. I did not know about him before and i regret that i did not take classes with him as i am graduating this fall. His teaching pushes you to be eager to learn more and do more research..just fantastic.Highly Recommended", + "pos": 0.17, + "neu": 0.793, + "neg": 0.037, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f1" + } + }, + { + "text": "He originally assigned 3 papers but come finals week, he was a total lifesaver and cancelled one of them. Basically, you write whatever you want and make sure you hand the papers in before the end of the semester. Fun discussions are a result of challenging his opinions and the opinions of others in the class.", + "pos": 0.285, + "neu": 0.675, + "neg": 0.04, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56ccd60fca157e5d0f4" + }, + "professor_name": "Jordan Leondopoulos", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "Worst teacher I ever had in CCNY expects a lot from students.Plus a really boring professor. Dont take his class he will ruin your GPA.", + "pos": 0.0, + "neu": 0.677, + "neg": 0.323, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f5" + } + }, + { + "text": "Wow, I never expected such a great professor for WHUM. Just don't get on his bad side. Meaning no lateness or absences. I got an A on one of the papers so just know its possible. He demands the standard of college writing. I respect him for that. Also his quizzes are meaningful! I got 100 many times. He's easier than I thought it would be. :)", + "pos": 0.231, + "neu": 0.702, + "neg": 0.068, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f6" + } + }, + { + "text": "Very Sarcastic, some racial \"jokes,\" rambling at times, time management is an issue. Have to be punctual and turn papers in on time. Lots of reading, Know literary concepts and terms and text contents. Be prepared... have a pen n a good listening ear. @ 8 am in the morning it's irritating with useless talking. he's quick to tell u to drop his class", + "pos": 0.092, + "neu": 0.77, + "neg": 0.138, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f7" + } + }, + { + "text": "I hated this class. I got 4&5 on both AP's, but he expects2 much! He is a tough grader, and his quizzes are dumb. I read every book he assigned but never got 100 on the quizzes because he asks the most irrelevant or detailed questions. He spends all class talking about race and thinks he's always right. I advise against taking his class.", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f8" + } + }, + { + "text": "this prof is interesting indeed. he is a harsh grader. he fails to realize that this is not Harvard and that most of his students are freshman, therefore, there writing skills have not advanced just yet. hes funny and easy going i guess, but, he expects a Yale student to write his papers. dont take him unless youre an amazing writer. believe me!", + "pos": 0.155, + "neu": 0.773, + "neg": 0.072, + "_id": { + "$oid": "6711d56ccd60fca157e5d0f9" + } + }, + { + "text": "I just took his class this morning this guy is funny as hell... indeed he is kind of a hard grader but if you follow his instructions your cool... being on time thats the only problem i have with this class, he take attendance seriously other than that.. enjoy it he really cares about his students progress..", + "pos": 0.231, + "neu": 0.641, + "neg": 0.128, + "_id": { + "$oid": "6711d56ccd60fca157e5d0fa" + } + }, + { + "text": "I took this class as a requirement- yes he does tend to get off topic a lot and he is very repetitive but it's an easy class. He is very strict about lateness and absences. He gives a quiz every week on a different short story. There are 3 papers- all them were pretty easy. Not too bad of a class.", + "pos": 0.237, + "neu": 0.741, + "neg": 0.022, + "_id": { + "$oid": "6711d56ccd60fca157e5d0fb" + } + }, + { + "text": "What a disaster! I was so disappointed with his class. We would read the books, come to class and barely touch on them. Instead, he'd just ramble about irrelevant things and tell us how we as students are not doing our jobs. Neither was he. I learned nothing.", + "pos": 0.0, + "neu": 0.846, + "neg": 0.154, + "_id": { + "$oid": "6711d56ccd60fca157e5d0fc" + } + }, + { + "text": "A wonderful professor. I have been extremely grateful for having been under his tutelage. He has every reason to expect college-level writing. Feel your feet on the ground,you're on the floors of higher education not high school.Follow instructions, enjoy the keen interest he takes on your success, the humor and just be on time. Its that simple.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d0fd" + } + }, + { + "text": "I graduated from CCNY as an engineer 12 years ago. WHUM-102 course was a prescribed elective. I ended up taking the course with Jordan Leondopoulos. It\r was a big mistake!\r \"Read on...\"", + "pos": 0.0, + "neu": 0.92, + "neg": 0.08, + "_id": { + "$oid": "6711d56ccd60fca157e5d0fe" + } + }, + { + "text": "He is an intimidating professor, that's for sure. However, he really loves what he does, and just wants his students to succeed. I think a lot of people misinterpret his humor, but if you lighten up, you'll have fun. After your first paper, I highly recommend going to talk with him. His advice is extremely useful and will save your future writing!!", + "pos": 0.314, + "neu": 0.662, + "neg": 0.024, + "_id": { + "$oid": "6711d56ccd60fca157e5d0ff" + } + }, + { + "text": "I took this class in the summer and he made it enjoyable. He is VERY strict w/ attendance if you're the type that's always late...DON'T TAKE HIM. He's not a hard grader....thats ****....he's just not an easy grader. I got an A so the rumor he doesnt give As is a lie . Read all the texts or sparknotes n u'll be fine. DONT TURN IN PAPERS LATE!!!", + "pos": 0.094, + "neu": 0.873, + "neg": 0.033, + "_id": { + "$oid": "6711d56ccd60fca157e5d100" + } + }, + { + "text": "Very hard grader. Expects you to write at the graduate level. Never had an issue with my writing until he came along. DO NOT take him unless you are a perfect writer. He expects the writing center to correct all your papers and finally just gives you a D. When I went to him later to ask about my grade, he could not give me a clear explanation.", + "pos": 0.086, + "neu": 0.89, + "neg": 0.023, + "_id": { + "$oid": "6711d56ccd60fca157e5d101" + } + }, + { + "text": "THIS MAN IS FUNNY, BUT WAY WAY 2 HARD WHEN IT COMES 2 GRADING I DONT THINK HE LIKES GIVING GOOD GRADES. TAKE HIM IF U WHAT A D!!!!", + "pos": 0.293, + "neu": 0.556, + "neg": 0.151, + "_id": { + "$oid": "6711d56ccd60fca157e5d102" + } + }, + { + "text": "He makes you read! which is for your advantage because you will leave the class learning something! he is a difficult grader, but if you enjoy working for your grade and your not a quitter! this is your class. pretty funny teacher.", + "pos": 0.276, + "neu": 0.671, + "neg": 0.053, + "_id": { + "$oid": "6711d56ccd60fca157e5d103" + } + }, + { + "text": "first english class to actively improve my writing. good teacher, good guy, but kinda a hard grader, i dont think he gives too manytt A's. i had to work hard for the B+ i got", + "pos": 0.191, + "neu": 0.738, + "neg": 0.071, + "_id": { + "$oid": "6711d56ccd60fca157e5d104" + } + }, + { + "text": "He's a very HARD grader!! He's very Strick!! Other than that, he's ok only because he makes his class interesting --sometimes. Don't take him unless you're majoring in English or some writing class..", + "pos": 0.158, + "neu": 0.779, + "neg": 0.063, + "_id": { + "$oid": "6711d56ccd60fca157e5d105" + } + }, + { + "text": "Prof. Leondopoulos is a very hard grader but it it because he cares for his students. I learn to improve my writing because of this professor. I alos learned to critique my own papers before handing them in.sometimes he makes the class entertaining by making jokes. For the quizzes students need to read the books and take notes of what he says.", + "pos": 0.196, + "neu": 0.786, + "neg": 0.019, + "_id": { + "$oid": "6711d56ccd60fca157e5d106" + } + }, + { + "text": "If you are serious about sharping your writing skills, he is the prof. to take. What you learn from him you can use anywhere.", + "pos": 0.0, + "neu": 0.947, + "neg": 0.053, + "_id": { + "$oid": "6711d56ccd60fca157e5d107" + } + }, + { + "text": "HE'S WONDERFUL,JUST BE ON TIME AND FOLLOW ALL HIS INSTRUCTIONS AND YOU WILL DO WELL.HE IS ALWAYS WILLING TO HELP", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d56ccd60fca157e5d108" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56dcd60fca157e5d10a" + }, + "professor_name": "Robert Lichtman", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "He is very knowledgeable with lots of experience. The Psychology department was wrong for not keeping him, he was one of the best.", + "pos": 0.148, + "neu": 0.742, + "neg": 0.11, + "_id": { + "$oid": "6711d56dcd60fca157e5d10b" + } + }, + { + "text": "Professor Lichtman mentored me throughout my studies at John Jay for my B.A. degree in Forensic Psychology, then recommended me for my Masters, and now I'm in a PhD program which he was instrumental in getting me into. During my Masters' studies he was able to get me a volunteer position which counted towards a field placement requirement for the degree. He is more of a \"Life Coach\" than a great professor and mentor. Do not hesitate in studying with him.", + "pos": 0.09, + "neu": 0.91, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d10c" + } + }, + { + "text": "Cooperates with letters of recommendation and placements at facilities where he works. Very helpful. A nice person!", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d10d" + } + }, + { + "text": "Professor lichtman is an ok professor what I didn't like about his class is that he gave confusing and unclear instructions for the term paper first he says to you he doesn't approve of one topic but then he gives completely different feedback on the paper. I wish he was more clear about what he wanted coz writing papers again is not an easy task", + "pos": 0.12, + "neu": 0.777, + "neg": 0.102, + "_id": { + "$oid": "6711d56dcd60fca157e5d10e" + } + }, + { + "text": "Dr. Lichtman is a students teacher. He makes the the material interesting and easy to absorb. His tests and assignments are very manageable. Definitely take his class and form a relationship with him.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d10f" + } + }, + { + "text": "I took classes w/ Dr. Lichtman at John Jay College, and I found him to be very knowledgeable about the subject matter. Dr. Lichtman is genuine - wanting students to succeed in and outside of class. I definitely recommend taking his classes! You will learn a lot about the field, and encounter a professor who's very supportive of your career goals.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d110" + } + }, + { + "text": "My first class with Dr. Lichtman was at John Jay College. I found his classes very informative. Dr. Lichtman was very approachable, which helped with my adjustment as a foreign student. He is one of the most genuine professors I have ever met. He is willing to help out students, even post graduation. I highly recommend taking his classes.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d111" + } + }, + { + "text": "I took a couple of Dr. Lichtman's classes at John Jay College during my MA. He's one of the reasons why I pursued the CASAC certification. He is very knowledgeable, and has a great passion for teaching. He's very genuine, and is eager to help his students, even after graduation (like myself). I HIGHLY RECOMMEND TAKING HIS CLASSES.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d112" + } + }, + { + "text": "Prof Lichtman is one of the most caring and authentic people I've come across. He really cares about helping students understand and is willing to go the extra mile. The class was really easy and he gave a good review before each exam. Didn't use the text book at all, just listened and went over the presentations.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d113" + } + }, + { + "text": "for the final, there's lots of studying. he is also a tough grader on papers.", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d56dcd60fca157e5d114" + } + }, + { + "text": "Good professor. Clear and concise materials and lessons provided. Show up for class, pay attention, take notes and you won't need to buy the required text.", + "pos": 0.184, + "neu": 0.769, + "neg": 0.047, + "_id": { + "$oid": "6711d56dcd60fca157e5d115" + } + }, + { + "text": "Professor Lichtman is funny and makes the class entertaining with his jokes. The lectures slides does not provide too much nor too little information. He keeps his points simple. Easy class with just a midterm and final and a 12-pg paper, which he grades very harshly on!", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d116" + } + }, + { + "text": "Dr. Lichtman is an awesome professor who makes learning fun and interesting. I took 3 of his classes and I learned a lot from him. He has a tremendous amount of knowledge and experience. He is one of the best professors I have ever had. He will challenge students at times, but he truly cares about them and goes out his way to help them.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d117" + } + }, + { + "text": "Best professor ever if you want an easy A. He goes over the exact mid term and final with you. He reads the questions and we answer them. Take good notes on review day and you will be fine. 9 page paper just make sure you city APA properly. Received an A as did most of the class. Very funny and good lecturer when he decides to teach. Take him!", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d118" + } + }, + { + "text": "Dr. Lichtman is a great professor and mentor. I have just graduated from grad school and his mentoring helped me tremendously. During undergrad, I volunteered at his job, and besides the personal gain of knowledge, that experience helped me greatly in getting in a competitive master program. Highly recommended.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d119" + } + }, + { + "text": "I really enjoyed this professor, one of the best in city college.", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d11a" + } + }, + { + "text": "Prof. Lichtman is one of the best psych professors at CCNY. He knows the subject extremely well and presents the material with ease. He makes ALOT of jokes but relates the lesson with his personal experiences for better understanding. Two exams, one paper and he hands out a copy of the powerpoint slides. GREAT!", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d11b" + } + }, + { + "text": "Best professor ever !!!!! He is very helpful. I highly recommend him to everyone.", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d11c" + } + }, + { + "text": "Such a great professor. Hands down, one of the best professors I've had in CCNY. Inspires an teaches the way he should. :)", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d11d" + } + }, + { + "text": "This teacher is amazing and engaging. He is caring and professional. One of the very few teachers that amde me want to learn.", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d11e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56dcd60fca157e5d120" + }, + "professor_name": "Fred Reynolds", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "Best professor ever and hilarious. He has a very sarcastic humor which I find hilarious. He makes class enjoyable and seeing as I take his class in the morning that's a good thing. Extremely sad that he is retiring after this semester.", + "pos": 0.309, + "neu": 0.592, + "neg": 0.099, + "_id": { + "$oid": "6711d56dcd60fca157e5d121" + } + }, + { + "text": "CCNY ought to erect a bronze statue of this grammar god and display it right by the front entrance. King Reynolds is about the only great thing this jerry-built university has to offer, so it is a huge loss to the student body that he unfortunately has to retire. Should probably just change the school name to the Reynolds College of New York.", + "pos": 0.119, + "neu": 0.815, + "neg": 0.066, + "_id": { + "$oid": "6711d56dcd60fca157e5d122" + } + }, + { + "text": "Hilarious professor. Loves to talk about his liquor. (Scotch and water?) Beyond his funny side though, he is a great teacher. Clear grading criteria (4 Exams you will do well on if you show up to class and pay attention) Textbook is a must-buy. Seriously enjoyed the ride with Mr. Reynolds.", + "pos": 0.322, + "neu": 0.632, + "neg": 0.047, + "_id": { + "$oid": "6711d56dcd60fca157e5d123" + } + }, + { + "text": "The most knowledgeable professor in ccny. Hands down great.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d124" + } + }, + { + "text": "ONE OF THE BEST PROFESSORS AT CCNY NO JOKE. He does get annoyed when people arrive late, and it's true that if you miss one day you may miss a lot of work, as he does tend to cover a lot of material in class. I took this at 8am and thought it was going to be tough but his sassiness kept everyone laughing and awake, and I'm doing really well", + "pos": 0.149, + "neu": 0.743, + "neg": 0.108, + "_id": { + "$oid": "6711d56dcd60fca157e5d125" + } + }, + { + "text": "Great prof. taking his 8am class and he is hilarious. 4 exams & a final for advanced grammer. Deff. a must take!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d126" + } + }, + { + "text": "The best professor I've ever had. Period. Not only is he very knowledgeable when it comes to English and public speaking, but outside of the classroom, his influence and advice is invaluable. The man has worked tirelessly to help me get on-campus jobs, scholarships, and into certain programs. In-class he is hilarious and extremely easy to follow.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d127" + } + }, + { + "text": "Amazing professor. Very knowledgeable and caring.", + "pos": 0.645, + "neu": 0.355, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d128" + } + }, + { + "text": "Professor Reynolds is one of the best professors I've had the pleasure of taking a course with at City College. He's sassy, blunt and even rewards you with stickers or candy when you participate in class, haha. An easy A course if you show up and practice material in workbook. ATTENDANCE IS MANDATORY. NO EXTRA CREDIT.", + "pos": 0.26, + "neu": 0.659, + "neg": 0.08, + "_id": { + "$oid": "6711d56dcd60fca157e5d129" + } + }, + { + "text": "His class is very entertaining and you never quite know what to expect. He focuses a lot on the individual and works to help you improve yourself over the course of the semester. He doesn't assign a lot of homework but he expects you to be prepared to talk. Hint! You will get extra credit if you know the difference between a podium and a lectern.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d12a" + } + }, + { + "text": "Took Advanced Grammar with Carro before and failed, then I took Professor Reynolds and am getting an A. Just shows what good teaching and patience can do for students. He takes his time and works with the class as a whole, he focuses on the chapters that are troublesome. No hw just drills, and only 4 tests, great professor overall.", + "pos": 0.125, + "neu": 0.752, + "neg": 0.123, + "_id": { + "$oid": "6711d56dcd60fca157e5d12b" + } + }, + { + "text": "This class is not easy. BUT. Reynolds is one of the smartest Professors. He is clear, helpful, and knows what he is talking about. I think everyone should take him-English major or not. I've learned a lot. He contributes a great medium to what you would think is a boring class. Thinking of taking him? Go ahead and register. Just work hard.", + "pos": 0.23, + "neu": 0.692, + "neg": 0.079, + "_id": { + "$oid": "6711d56dcd60fca157e5d12c" + } + }, + { + "text": "Professor Reynolds is great! Loved having his class in the morning. I didn't even need my daily dose of caffeine. Yes, he is comical! Just listen to what he tells you to review and you will do well.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d12d" + } + }, + { + "text": "It is clear he knows what he is talking about. He is smart and funny. I looked forward to going to class everyday because of his fun attitude and willingness to teach. If you are debating on whether to take the class with him or to take him as a professor as whole, choosing him would definitely do you good.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d12e" + } + }, + { + "text": "He was a great guy. Honest with what he thinks. May take you down a peg but it makes you a better speaker to know your faults.", + "pos": 0.239, + "neu": 0.644, + "neg": 0.116, + "_id": { + "$oid": "6711d56dcd60fca157e5d12f" + } + }, + { + "text": "Attendance is a must .. I missed a few classes and suffered a reasonable grade.", + "pos": 0.0, + "neu": 0.707, + "neg": 0.293, + "_id": { + "$oid": "6711d56dcd60fca157e5d130" + } + }, + { + "text": "Best class ever! He is very clear! His personality Is very warming! He makes jokes all day and lightens up the classrooms atmosphere. I took then course in the summer so they was only four exams. He gives practice exams to help us and homework in our workbook. I loved this class! Which I can take it again!", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d56dcd60fca157e5d131" + } + }, + { + "text": "the book should be your life it covers everything u need to know, but that doesn't mean u don't hve to show up. on the days that he does take attendance if u are absent ur grade can be affected. I didn't notice any favoritism but he does pick on ppl who are sleeping and who are constantly late which is understandable. the exams are multiple choice", + "pos": 0.0, + "neu": 0.946, + "neg": 0.054, + "_id": { + "$oid": "6711d56dcd60fca157e5d132" + } + }, + { + "text": "Talks all the time. So there is not much time for students to practice public speaking. Makes it seem like little mistakes are no big deal.Ok.Cool.But does not grade leniently(during the semester no info about your current grade at all!). Also, there is no official grade breakdown, so he'll give you whatever grade he wants. loves flattery.", + "pos": 0.114, + "neu": 0.753, + "neg": 0.133, + "_id": { + "$oid": "6711d56dcd60fca157e5d133" + } + }, + { + "text": "Like others have said\u2014great professor! Funny, entertaining, and has a very basic style of teaching. No tricks, no surprises. He is the book! Don't be late or you will provide entertainment for the rest of your classmates, just try it. He makes this subject engaging and fun, just pay attention and you will do very well.", + "pos": 0.324, + "neu": 0.633, + "neg": 0.043, + "_id": { + "$oid": "6711d56dcd60fca157e5d134" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56ecd60fca157e5d136" + }, + "professor_name": "Mark Emerson", + "rating": 3.3, + "department": "Biology department", + "comments": [ + { + "text": "He was such an amazing person but then he'll start becoming paranoid with the class, believing there's cheaters and deciding to make his own tests which he doesn't know at all how to which made tests unable to be understandable and worded horribly. AVOID HIM! out of my biology and chemistry double major he made this class the hardest I've ever had!", + "pos": 0.032, + "neu": 0.762, + "neg": 0.206, + "_id": { + "$oid": "6711d56ecd60fca157e5d137" + } + }, + { + "text": "The hardest class I took while doing a bio major in ccny and it was not that the class was hard but sadly due to emerson being paranoid about people cheating to the point that the way he worked his tests were absurd and a 8 year could have made it more understanding. He's a nice guy but made my life and my GPA hurt for no credible reason. AVOID HIM", + "pos": 0.041, + "neu": 0.698, + "neg": 0.261, + "_id": { + "$oid": "6711d56ecd60fca157e5d138" + } + }, + { + "text": "Professor Emerson is the best biology professor. He explains everything in lecture clearly, and the exams are very fair. Understand the slides and you should be fine. Do not listen to the negative reviews because they were written by cheaters. I studied the slides and got an A in this class. 3 Exams and a Final, easy if you studied.", + "pos": 0.192, + "neu": 0.718, + "neg": 0.089, + "_id": { + "$oid": "6711d56ecd60fca157e5d139" + } + }, + { + "text": "Literally the worst experience I have ever had with a biology professor. His exam questions make no sense, he literally has errors within his own questions and it sucks because there no backtracking so you can just skip and come back to. You'd literally be stuck for a good 10 minutes trying to decipher his question due to his errors.", + "pos": 0.04, + "neu": 0.715, + "neg": 0.245, + "_id": { + "$oid": "6711d56ecd60fca157e5d13a" + } + }, + { + "text": "Utterly useless and condescending as a professor. He expects more from his students than he does himself. Lectures are mindless regurgitation of the textbook so I stopped attending lectures and just focused on the book, and got better grades on my exams because of it. He reads these, the 5 star reviews are from the previous semester, so thanks guys", + "pos": 0.129, + "neu": 0.756, + "neg": 0.114, + "_id": { + "$oid": "6711d56ecd60fca157e5d13b" + } + }, + { + "text": "This professor does not help you when having connection issues during an exam so expect to fail most of his exams. His homework are confusing and get wordy as you go. He cares to much about cheating then helping students understand the material. Would not recommend", + "pos": 0.09, + "neu": 0.674, + "neg": 0.236, + "_id": { + "$oid": "6711d56ecd60fca157e5d13c" + } + }, + { + "text": "Not a really solid choice for genetics if you can find another professor I would encourage you to do so. He doesn't give enough time for exams and doesn't allow backtracking to prevent cheating but it really ends up screwing you over. He even doesn't allow enough time for the final. 3 Exams 1 final and a ton of HW's and Quizzes. Most hectic class.", + "pos": 0.045, + "neu": 0.818, + "neg": 0.137, + "_id": { + "$oid": "6711d56ecd60fca157e5d13d" + } + }, + { + "text": "Professor Emerson Really had the potential to be a good professor. He could have lived up to his positive reviews but he fell short. The curve he gave was not as generous as he thinks it was. We had 3 Exams and 1 final all very difficult cause his main focus was to thwart cheaters instead of teaching. His HW's and Quizzes a nightmare. Stand clear.", + "pos": 0.097, + "neu": 0.762, + "neg": 0.141, + "_id": { + "$oid": "6711d56ecd60fca157e5d13e" + } + }, + { + "text": "I heard good things about Emerson until i took him spring 2021 online. The man is so worried about catching cheaters that he makes the tests extremely hard & difficultly worded & doesn't give a clear cut explanation of what he wants us to know for the tests. No backtracking and only 60 minutes on exams. Also heavy on hw and quizzes and no mock test", + "pos": 0.066, + "neu": 0.72, + "neg": 0.214, + "_id": { + "$oid": "6711d56ecd60fca157e5d13f" + } + }, + { + "text": "I wanted to take Emerson for a long time because he is basically known as one of the better professors at CCNY. However, online teaching and cheating made this class more difficult for students who didn't cheat. He disabled backtracking and limited time to 60 mins for 30 questions. He disabled the mic in the lecture after the first exam. Killer.", + "pos": 0.074, + "neu": 0.754, + "neg": 0.173, + "_id": { + "$oid": "6711d56ecd60fca157e5d140" + } + }, + { + "text": "I took him because they said he was one of the best in Genetics but they all wrong. His exams are ridiculously formulated and very hard to pass. The highest average class grade in the exams was around 60% in a class where 100 students started, 53 of them dropped out and the rest of us failed. Also he deactivates the mic so u don't ask a lot of Q", + "pos": 0.032, + "neu": 0.799, + "neg": 0.169, + "_id": { + "$oid": "6711d56ecd60fca157e5d141" + } + }, + { + "text": "Study his lectures for the exams, his answers are on his lecture slides. There is 3 exmas and a final at the end of the semester. They are multiple choice questions which can be found are chegg and quizlet. Also his exam questions are pulled from the testbank, try to get your hands on these, they are available online. Good Luck", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d142" + } + }, + { + "text": "Professor Emerson is the best genetics professor I have in CCNY. His exams are based on lectures and they are simple questions that are straight forward. If you actually studied, no matter how he asked the question youll be able to answer them. If he changes a question a bit and you cant answer it, then you didnt study: cheat. No need for curves", + "pos": 0.148, + "neu": 0.836, + "neg": 0.015, + "_id": { + "$oid": "6711d56ecd60fca157e5d143" + } + }, + { + "text": "Take Emerson!!! Hes the best genetics professor at CCNY, he explains the concepts extremely well and prepares you very well for his exams. Pay attention and study the lecture and youll be good. Students that studied all did well and studys who tried to rely on cheating deserve to fail. Theres absolutely no need for curves in this class.", + "pos": 0.196, + "neu": 0.659, + "neg": 0.145, + "_id": { + "$oid": "6711d56ecd60fca157e5d144" + } + }, + { + "text": "bad communication disregard for students thoughts (we bring up issues & he shuts us down rudely) 3exams lowest dropped+final weekly quizzes+hw. I do well & I would STILL never take this man again. I heard he's good outside of covid & in other courses, but this happens to not be it. He doesnt go in order either our chapters went 4,6,8,7,2,3,12,etc", + "pos": 0.053, + "neu": 0.831, + "neg": 0.116, + "_id": { + "$oid": "6711d56ecd60fca157e5d145" + } + }, + { + "text": "Dr. Emerson is a very intelligent professor and he teaches very well. His exams are very fair if you study youll do well. He only gives a few questions on the exam with more than enough time to answer all questions. Cheaters that cheat on Discord deserve to fail. PEriod.", + "pos": 0.161, + "neu": 0.651, + "neg": 0.188, + "_id": { + "$oid": "6711d56ecd60fca157e5d146" + } + }, + { + "text": "Professor Emerson is great. His exams are extremely fair and easy. If you study, you will get high grades on his exams. There are a lot of cheaters that tried to use google and are mad and complaining when they cant find answers online. Students that studied dont need the extra points, only cheaters need them.", + "pos": 0.142, + "neu": 0.703, + "neg": 0.155, + "_id": { + "$oid": "6711d56ecd60fca157e5d147" + } + }, + { + "text": "Professor Emerson isn't a bad professor and he seems knowledgable on what hes doing but he spends to much time trying to prevent cheating then teaching the material. The average for the exams are in the mid 60's. He gives a lot of work for no reason and frequently gets upset when students question his teaching methods. 3 Exam, weekly quizzes and HW", + "pos": 0.043, + "neu": 0.804, + "neg": 0.154, + "_id": { + "$oid": "6711d56ecd60fca157e5d148" + } + }, + { + "text": "4 exams, 30 questions each. 1 hour. The material in the class is not hard. Emerson is nice, but when it comes to complex questions, he is unsure most of the time. You can study for the exam, but you can still score below a 70. The questions on the exam are broad and can have specific answers. Around half the exam is tricky. Weekly excessive hw's.", + "pos": 0.043, + "neu": 0.894, + "neg": 0.062, + "_id": { + "$oid": "6711d56ecd60fca157e5d149" + } + }, + { + "text": "Emersons genetics curriculum is famous for being more difficult than some of the surrounding really good private schools. Professors can attest how in-depth the material is for an undergraduate course. Great human being. Superb professor. Hes among the BEST at CCNY.", + "pos": 0.296, + "neu": 0.653, + "neg": 0.051, + "_id": { + "$oid": "6711d56ecd60fca157e5d14a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56ecd60fca157e5d14c" + }, + "professor_name": "Peter Capainolo", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "A lot of reading and memorizing. You need to memorize a lot of concepts for the exams. Overall a difficult class. Not an easy A", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d56ecd60fca157e5d14d" + } + }, + { + "text": "Hands down, a class act. They need to give him a raise because frankly, he teaches quite better than the other guy. If you take him, all you gotta do is TAKE PICTURES OF ALL OF HIS SLIDES AND STUDY EACH DIAGRAM HE SHOWS. Just pray that you have a decent lab TA because the department writes the labs.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d14e" + } + }, + { + "text": "Go to lecture, take pics of his slides and memorize the diagrams - they show up on tests. Tests are easy, he doesn't use the textbook a lot. Worth the Saturday lecture.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d14f" + } + }, + { + "text": "He's a real gem, he makes the class very entertaining. His tests are pretty dependent on lectures, and he doesn't use the textbook much. I do find some of the information lacking, but this class is an easy GPA booster, so I can't complain. 10/10.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d150" + } + }, + { + "text": "Took him and Prof. Groth for Biology of Birds, ended up being my favorite class ever. It's heavy in memorization and material, but they are always willing to work with you. Absolutely hilarious and super understanding. Because of them, I ended up more interested in birds than I have ever been in my life. This is what professors should be.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d151" + } + }, + { + "text": "Take him if you want a good grade. Take other professor if you want to learn.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d152" + } + }, + { + "text": "Solid choice as a professor. His exams are directly based on his lectures so pay attention to everything he says and take good notes. Saturday class was worth it and I would take him again in the future if I can.", + "pos": 0.141, + "neu": 0.817, + "neg": 0.041, + "_id": { + "$oid": "6711d56ecd60fca157e5d153" + } + }, + { + "text": "He's super laid back, makes tons of jokes in lecture. I didn't read the book at all. He usually only tested what he said in lecture. Take really good notes! Sometimes it seems like he's saying things in passing but they end up on the test. He uses some ambiguous wording in his exams, so read carefully. It's worth taking the Saturday class with him.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d154" + } + }, + { + "text": "50% Lecture Exams / 50% Lab. Peter's hilarious, one of my favorite profs, teaches solid lectures (though can be very quick sometimes and expects you to take pictures of the slides). Tests are fair (I recommend you asking past students for exams though he does switch them up a bit). Make sure you take good notes and type up everything he says!!!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d155" + } + }, + { + "text": "This class was well worth the effort! Ages later, I can still identify the different classes of birds!", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d156" + } + }, + { + "text": "This Saturday class was worth it. Doesn't go beyond 1hr 45 mins. He just doesn't care how much material he is able to cover. He tests you only on what he covers. Know all the diagrams he puts on hos slides and in the textbook. He will surely test you on them. Take him over any professor if he is available. I love you Pete !!!", + "pos": 0.133, + "neu": 0.832, + "neg": 0.035, + "_id": { + "$oid": "6711d56ecd60fca157e5d157" + } + }, + { + "text": "His exams are all from the lecture. Make sure you take good notes from lecture. He is easy grader. if you work and study lecture it's easy A .", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d158" + } + }, + { + "text": "I freaking love this guy! 3 Made taking a Saturday class absolutely enjoyable. I didn't know that his exams were literally just notes from the lecture. With that being said, if you take good notes (take pictures of the slides and study them actually...) you will ace every exam.", + "pos": 0.181, + "neu": 0.771, + "neg": 0.048, + "_id": { + "$oid": "6711d56ecd60fca157e5d159" + } + }, + { + "text": "Professor C is the greatest professor at CCNY. His love and knowledge of Biology is palpable in every lecture. All of his exams are clear and straightforward. He is not looking to trick you. He really cares about his students and follows the syllabus very strictly (ie. test dates, percentage for exams, policies etc.)", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d15a" + } + }, + { + "text": "He has such a funny personality, he helps you endure the long lecture. However he is too nice when it comes to tests, as in giving you credit you KNOW you should not have gotten credit for!", + "pos": 0.291, + "neu": 0.663, + "neg": 0.047, + "_id": { + "$oid": "6711d56ecd60fca157e5d15b" + } + }, + { + "text": "An amazing professor! Very kind and cheerful with his students. His exams are not too hard. He just wants you know the main concepts and does not require to memorize all the little details. There are 4 lecture exams and 4 on-line quizzes. This constitutes 50% of the class grade. The other 50% is your lab grade.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d15c" + } + }, + { + "text": "there really are not enough words to describe how great a human being and professor he is. he is so funny, saturday mornings are so worth it with this professor. come to class, listen and thats all you really need. extra credit given.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d15d" + } + }, + { + "text": "He is a good professor.Exams are all based on his notes that you take when you are in class.He gives extra credit even though he says he will not in the beginning of the class.The extra credit is up 10 points boost to the end of the grades.I was averaging a B before i did the extra credit and I ended up getting an A for the class.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d15e" + } + }, + { + "text": "Professor Capainolo is a great teacher. I thought Saturday mornings of Biology would be a nightmare but his boyish charm and dry humor is enough to keep you up. Even on days that I was hungover I recorded the lectures while I slept in the back so.. it helped a lot while i studied.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d56ecd60fca157e5d15f" + } + }, + { + "text": "He makes bio very interesting, I actually learned quite a lot. Feel free to shoot him an email, always available. Exams & quizzes weight the same. 4total but drops lowest grade. Final is mandatory. He is one of the BEST prof at CCNY. I definitely recommend but study hard if you'd like a good grade", + "pos": 0.342, + "neu": 0.571, + "neg": 0.087, + "_id": { + "$oid": "6711d56ecd60fca157e5d160" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56fcd60fca157e5d162" + }, + "professor_name": "Maryam Alikhani", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "I absolutely love her! She is by far one of the best professors ever. A few group papers, but they were always easy. She lets you re do assignments. Take her if you get the chance to, her classes fill up fast. Guaranteed A; it almost hurts her not to give good grades. She always wants her students to do the very best and is very inspirational.", + "pos": 0.26, + "neu": 0.663, + "neg": 0.077, + "_id": { + "$oid": "6711d56fcd60fca157e5d163" + } + }, + { + "text": "Most assignments(3-7 pages) are group projects. Even though this course technical writing, you will learn how to explain technical concepts like you would a story or a poem. She teaches a very interesting and fun class. Inspired me to think globally and work smart.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d164" + } + }, + { + "text": "She is an angel, nothing more nothing less. She cares a lot about her students and her grading is so fair. Gives you very helpful feedback on papers, which you can use to improve future writings. Best Professor I've ever taken hands down!", + "pos": 0.251, + "neu": 0.707, + "neg": 0.042, + "_id": { + "$oid": "6711d56fcd60fca157e5d165" + } + }, + { + "text": "Makes work very interesting and easy. Guaranteed A", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d166" + } + }, + { + "text": "Great instructor. Great class. Take it. Totally worth it. One of the very few Professor at CCNY who is not depressed and frustrated. Others will make you HATE college. She will make you want to come to class. I wish all Professors were like her. She should teach more classes. They will fill up FAST. CCNY should let her teach classes that don't fill", + "pos": 0.273, + "neu": 0.672, + "neg": 0.054, + "_id": { + "$oid": "6711d56fcd60fca157e5d167" + } + }, + { + "text": "Amazing professor. Gives you ample time to complete assignments. Relaxing class. Easy A!", + "pos": 0.505, + "neu": 0.495, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d168" + } + }, + { + "text": "She gives amazing and inspirational lectures. I learned a lot from her apart from writing. Her assignments are doable and most of them are group projects. She doesn't give crazy page limits for the essays. I would definitely take her again if I could.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d169" + } + }, + { + "text": "Very relaxing class. She's passionate, yet soothing, and cares about everyone. Do as she says (literally the bare minimum) and you'll get an A. Make sure you pay attention, she's quite a sight for sore eyes.", + "pos": 0.306, + "neu": 0.612, + "neg": 0.082, + "_id": { + "$oid": "6711d56fcd60fca157e5d16a" + } + }, + { + "text": "She is an angel. Awesome classes filled with motivation, and inspiration. Just keep track of the (a couple but very doable) papers and you'll have an A. Just take her class and be open-minded. You'll be amazed at the end of the semester.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d16b" + } + }, + { + "text": "She is the best professor ever and so caring. Just make sure you do every paper and you will be guaranteed an A. Also make sure to never miss class because she is kind of hot!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d16c" + } + }, + { + "text": "By far the easiest A I've received. Minimal work, follow her format for all the papers and you're bound to get As across the board. Take her! You won't have to worry for this class so you'll have more time for your other classes.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d16d" + } + }, + { + "text": "She is the best professor @CCNY. I was not sure if I wanted to stick with Mechanical E. but after her class I was convinced Engineering is for me. She is the most inspiring, caring, and awesome professor. And she is so hot!", + "pos": 0.352, + "neu": 0.623, + "neg": 0.025, + "_id": { + "$oid": "6711d56fcd60fca157e5d16e" + } + }, + { + "text": "Professor Alikhani has a way of teaching that actually keeps you interested. She is understanding and kind and realllyyyy excited about engineering despite being a writing professor. She made me feel proud to be pursuing engineering. Her assignments are pretty easy and she's really flexible with due dates. Definitely take her if you get the chance.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d16f" + } + }, + { + "text": "She's very VERY PASSIONATE ABOUT her work. Def one of the top inspirational professors in ccny. Her group projects are awesome to meet other people. The assignments are a lot of work, this is a very simple class. It was very enjoyable.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d170" + } + }, + { + "text": "One of the best CCNY professors in the English department! I didn't really need the textbook because her presentations are detailed enough. She gives very easy group projects and is really cool when it comes to grading. You will surely make a lot of friends in this class. She's super caring and really wants you to learn something from her class.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d171" + } + }, + { + "text": "You can't ask for more. She is the best English professor ever!", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d172" + } + }, + { + "text": "THE NICEST PROFESSOR EVER. She comes to class with a smile everyday, i have never seen her angry. She has such a positive mind set its crazy. She cares about you and your projects, and always wants you to be happy. She is such a sweet professor, Very caring. Very lenient grader aswell.", + "pos": 0.386, + "neu": 0.581, + "neg": 0.032, + "_id": { + "$oid": "6711d56fcd60fca157e5d173" + } + }, + { + "text": "Truly one of those professors that looks out for her students!", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d174" + } + }, + { + "text": "Amazing Professor when it comes to workload. She gives very easy assignments and you don't have to write much. Participate or not, it doesn't matter as long as you do all her work and get A's in all of her papers which is easy if you know what you are doing. Only the first month was individual assignments due but after that, it was all group work.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d175" + } + }, + { + "text": "Take this professor if it is a option, there was four papers and most of them were group projects where everyone can share the work. she does not care about the grade but how you improve in the class, trust me this class is worth taking.", + "pos": 0.222, + "neu": 0.745, + "neg": 0.033, + "_id": { + "$oid": "6711d56fcd60fca157e5d176" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d56fcd60fca157e5d178" + }, + "professor_name": "Muhammad Awal", + "rating": 3.8, + "department": "Engineering department", + "comments": [ + { + "text": "I took this class online in 2021. This professor really cares about his students success. He had us look up tech innovation stories each week to share with the class. He's a great professor to network with if you want to get started with your engineering career. The material is easy just do the homework, pay attention in lectures and ask questions.", + "pos": 0.266, + "neu": 0.715, + "neg": 0.019, + "_id": { + "$oid": "6711d56fcd60fca157e5d179" + } + }, + { + "text": "I took back in the Fall 2020 Semester for ENGR 103 and he's seriously a great professor. He wants students to actively participate in the wonderful lectures he's giving and he even gave an opportunity to one of the students in the lectures to be the moderator. His exams were brilliant. He always asked students to share recent tech stories.", + "pos": 0.284, + "neu": 0.693, + "neg": 0.023, + "_id": { + "$oid": "6711d56fcd60fca157e5d17a" + } + }, + { + "text": "Listen, I didn't do any self-studying in this class. Everyone else who did just didn't care enough to pay attention. If you take notes and do the program along with him, you will understand the material. Most importantly, doing the program with him will give you an easy template to use for future quizzes and exams. Take notes, do the homework.", + "pos": 0.083, + "neu": 0.857, + "neg": 0.061, + "_id": { + "$oid": "6711d56fcd60fca157e5d17b" + } + }, + { + "text": "I mean he is a great guy. But dont expect to learn anything from him. You have to learn your own thing.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d17c" + } + }, + { + "text": "This class is easy but it's a lot of self-studying. It is very boring during lectures and he calls on everyone RANDOMLY. Don't get sleepy then. He will ask you for tech stories because he's a whole podcast on technical innovations nowadays.", + "pos": 0.043, + "neu": 0.882, + "neg": 0.075, + "_id": { + "$oid": "6711d56fcd60fca157e5d17d" + } + }, + { + "text": "He is a decent guy but just reads off the slides. He really loves technology news though so if you can provide him that, he will be happy. Just beware when it comes to his tests. Otherwise, the class isn't that hard. And yes, he curves.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d17e" + } + }, + { + "text": "You may think awal is bad but that's simply not true. Awal is in another plane of existence than us mortals. He doesn't speak in our mortal language easily because he mainly communicates through technology-news-stories and MATLAB. So make sure you have your news stories and hw ready for each class and you will have a fun time.", + "pos": 0.198, + "neu": 0.728, + "neg": 0.073, + "_id": { + "$oid": "6711d56fcd60fca157e5d17f" + } + }, + { + "text": "Professor Awal is a great person however, he tends to be very messy during class and each class is very tiring. He does not give enough time for exams especially for the final. He is not the best at explaining the material especially the harder topics. Overall, would not take him again even though he is a great person.", + "pos": 0.118, + "neu": 0.793, + "neg": 0.089, + "_id": { + "$oid": "6711d56fcd60fca157e5d180" + } + }, + { + "text": "You need to read for this class a lot. There is time, energy, and dedication. He will pick on you to participate. Be sure to study ahead and be aware of any \"pop\" test or final.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d181" + } + }, + { + "text": "This class requires participation and engagement. Even though it's worth 2 credits. I still feel tired that there is a load of coursework.", + "pos": 0.253, + "neu": 0.648, + "neg": 0.099, + "_id": { + "$oid": "6711d56fcd60fca157e5d182" + } + }, + { + "text": "His exams are hard lets be honest. But it was a lot of reading. Be sure to study and read ahead. Attendance is mandatory and hell pick you to be moderator.", + "pos": 0.163, + "neu": 0.648, + "neg": 0.189, + "_id": { + "$oid": "6711d56fcd60fca157e5d183" + } + }, + { + "text": "Well Attendance is mandatory but his exams is not that hard. If you read the textbook youll be alright.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d184" + } + }, + { + "text": "Amazing teacher and is an Easy A. He is caring and inspirational.", + "pos": 0.623, + "neu": 0.377, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d185" + } + }, + { + "text": "He has a clear grading criteria.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d186" + } + }, + { + "text": "He is a good professor and treats us with respect. Do not listen to the other reviews. He has a clear grading criteria but even though he submitted late he has been on top of grading test.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d187" + } + }, + { + "text": "He is A-Mayzing like take him. He is so nice and his grading criteria is clear. His exams are easy and he curves.", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d56fcd60fca157e5d188" + } + }, + { + "text": "Very disorganized, grades for our last two finals were not posted. His grading criteria is dumb. He said he would curve our final grades but I doubt he did.", + "pos": 0.0, + "neu": 0.784, + "neg": 0.216, + "_id": { + "$oid": "6711d56fcd60fca157e5d189" + } + }, + { + "text": "He is a good man but he could do much better as teaching MATLAB. He is unclear with how he wants things, changes due dates, and gives lots of homework that are needed until the last minute. Gave out a quiz within 2 days in advance and is very unorganized. Despite all this he truly cares and will do his best to help us if we face any problems in cla", + "pos": 0.25, + "neu": 0.684, + "neg": 0.066, + "_id": { + "$oid": "6711d56fcd60fca157e5d18a" + } + }, + { + "text": "Ignore the low ratings. This class was very easy as long as you read the textbook. Lectures start very slow early on but after 1 month, it gets better. MATLAB is very basic and as long as you know how to do the exercises in the textbook, you will be fine. It is hard to complete every exam under 50 minutes but he also curves final grades.", + "pos": 0.11, + "neu": 0.824, + "neg": 0.066, + "_id": { + "$oid": "6711d56fcd60fca157e5d18b" + } + }, + { + "text": "Dont pay attention to the reviews. He had a problems with the grading (an actual excuse) and thats why grades have delayed. Hes good. If you need extra credit or help after class, you can count on him. BUT STUDY! You need to study for this class", + "pos": 0.159, + "neu": 0.777, + "neg": 0.064, + "_id": { + "$oid": "6711d56fcd60fca157e5d18c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d570cd60fca157e5d18e" + }, + "professor_name": "Nelly Saint-Maurice", + "rating": 3.8, + "department": "French department", + "comments": [ + { + "text": "I loved Professor Maurice! She's very accessible outside of class and gives lots of opportunities for extra credit! Like any other language class, you need to participate and do your homework but if she sees that you're really trying, asking questions, and attending office hours once in a while she will be very lenient with your final grade!", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d18f" + } + }, + { + "text": "She was actually a very nice professor! I went in thinking she'd be harsh, but I was wrong. I learnt a lot while in her class. She also dropped 1 exam and graded the 1st 2. She was a bit confusing at times, but I understood most of the material. And the homework on MHConnect is heavy. Take her class!", + "pos": 0.031, + "neu": 0.835, + "neg": 0.135, + "_id": { + "$oid": "6711d570cd60fca157e5d190" + } + }, + { + "text": "She is one of the worst professors I have taken at CCNY, doesn't help that she's one of the main professors teaching French. Doesn't actually have a lesson plan. She is extremely rude and doesn't care about her students and whether they actually understand or not. If you do not know anything she embarrasses you and makes jokes about it.", + "pos": 0.028, + "neu": 0.761, + "neg": 0.211, + "_id": { + "$oid": "6711d570cd60fca157e5d191" + } + }, + { + "text": "She's a very understanding professor, very caring unlike most of city college professors. I would definetly take again. she gives a lot of homework on connect but as long as you do them you should be fine. also you get about 3-4 exams. As long as you do the work you'll pass but it is a lot of work. no lie.", + "pos": 0.068, + "neu": 0.889, + "neg": 0.043, + "_id": { + "$oid": "6711d570cd60fca157e5d192" + } + }, + { + "text": "Took FREN12400 with her. She's very sweet and nice. Accessible outside class. Cares about students learning. Posts everything we're doing on bb. You might think you can cheat your way out of this class with google translate but it gets more complicated than that so do the hw for every class or you'll be lost. Particiation matters!!!", + "pos": 0.128, + "neu": 0.795, + "neg": 0.077, + "_id": { + "$oid": "6711d570cd60fca157e5d193" + } + }, + { + "text": "Professor Saint-Maurice is one of the best french teachers I ever had. If you want an A in this class, you will have to participate every day. There's assignments every week on connect.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d194" + } + }, + { + "text": "She is one of the worst professors I've ever had. She doesn't have a lesson plan so she just babbles in french the entire time (bcs her thing is to speak french only in class). Quizzes are way too frequent. She's extremely rude and makes fun of students. Instructions are given in french and she vaguely tells us whats on the exam THE DAY BEFORE.", + "pos": 0.045, + "neu": 0.853, + "neg": 0.102, + "_id": { + "$oid": "6711d570cd60fca157e5d195" + } + }, + { + "text": "Honestly one of the sweetest professors. She really tries to get you to actually learn the language by making the class very interactive. Doesn't tolerate lateness, but it makes sense because it interrupts the flow of the class. Her reviews are exactly like her exams, which she always gives out before! You'd have to be really trying to fail for a F", + "pos": 0.073, + "neu": 0.81, + "neg": 0.117, + "_id": { + "$oid": "6711d570cd60fca157e5d196" + } + }, + { + "text": "shes such a great teacher!!! easy a if u just do ur assignments and study.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d197" + } + }, + { + "text": "She has no lesson plan and expects us to learn everything ourselves. She literally puts people on the spot when they are unable to say something in French and its extremely embarrassing. She's rude and is not lenient with anyone whatsoever. Im really about to not ever take French because she's the only professor who available for my schedule.", + "pos": 0.0, + "neu": 0.844, + "neg": 0.156, + "_id": { + "$oid": "6711d570cd60fca157e5d198" + } + }, + { + "text": "Prof. Saint Maurice is the best French teacher I've had. I can't believe how much I learned in one semester. She expects a lot but she inspires hard work and she never holds a grudge against a student who has had a bad couple of days. Every class is a clean slate and she just truly wants people to get better at French. I miss her!", + "pos": 0.214, + "neu": 0.688, + "neg": 0.098, + "_id": { + "$oid": "6711d570cd60fca157e5d199" + } + }, + { + "text": "Professor Saint-Maurice is a knowledgeable professor for French. She strictly speaks in French which makes you learn it. She's also very into self teaching in my opinion but if you don't understand it she will answer your questions. She also has no tolerance for lateness so don't come late to class. Overall if you want to learn French take her!", + "pos": 0.023, + "neu": 0.934, + "neg": 0.042, + "_id": { + "$oid": "6711d570cd60fca157e5d19a" + } + }, + { + "text": "I took her class this semester and I am glad I did! In the beginning, she seemed strict about handing in late homework but as the weeks went by and she got to know her students better she was a lot more lenient and sweet. She gives many extra credit opportunities and genuinely cares about her students. You only need to hand in 4 out of the 6 hw.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d19b" + } + }, + { + "text": "She really cares about students passing. Has review for her exam which is like 80*% of the real exam. Im taking her for french 2. She teaches really well. Only gets mad when students bomb the exam.", + "pos": 0.176, + "neu": 0.687, + "neg": 0.137, + "_id": { + "$oid": "6711d570cd60fca157e5d19c" + } + }, + { + "text": "She could be rude at times but it is worth taking her. Her class could be boring but she is generous when it comes to grading and she offers a lot of extra credit so take advantage of it. Before any of her exams make sure you practice her review sheets and pay attention what she says during her review!", + "pos": 0.218, + "neu": 0.694, + "neg": 0.087, + "_id": { + "$oid": "6711d570cd60fca157e5d19d" + } + }, + { + "text": "Participation counts! she's a lenient person and grader, just do the homework by the time its due and your golden", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d19e" + } + }, + { + "text": "She's terrible. She sits in front of the class and does nothing. It was boring.", + "pos": 0.109, + "neu": 0.72, + "neg": 0.172, + "_id": { + "$oid": "6711d570cd60fca157e5d19f" + } + }, + { + "text": "Amazing Professor. I'm specifically taking her for French 2. She is from France, speaks almost exclusively in French and forces you to learn. There is no better way to learn a new language. If you don't do your work, you will not succeed, but isn't that how real life is anyways? Highly recommended *if* you are going to take it seriously.", + "pos": 0.076, + "neu": 0.841, + "neg": 0.084, + "_id": { + "$oid": "6711d570cd60fca157e5d1a0" + } + }, + { + "text": "Saint-Maurice has favorite students, and if you are not her pet, good luck. She is moody.", + "pos": 0.262, + "neu": 0.524, + "neg": 0.214, + "_id": { + "$oid": "6711d570cd60fca157e5d1a1" + } + }, + { + "text": "boring, disorganized, not engaging.", + "pos": 0.0, + "neu": 0.133, + "neg": 0.867, + "_id": { + "$oid": "6711d570cd60fca157e5d1a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d570cd60fca157e5d1a4" + }, + "professor_name": "Ray Gallon", + "rating": 3, + "department": "Music department", + "comments": [ + { + "text": "No", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d570cd60fca157e5d1a5" + } + }, + { + "text": "You know when you look on Yelp for the address for one of your fav places to eat and are surprised to see a few complainers that brought down the rating? This is how I feel seeing Prof Gallon getting a so-so score. This is a guy that knows what hes doing, is genuinely trying to help us learn the skills we need to become working musicians.", + "pos": 0.104, + "neu": 0.864, + "neg": 0.032, + "_id": { + "$oid": "6711d570cd60fca157e5d1a6" + } + }, + { + "text": "Professor Gallon's class is a very straightforward class. The syllabus literally accounts for 3 exams, and the final, participation, and a paper that is based on the concert/ jazz performance that you have to see and write about. In general, If you read the chapters before each exam, study your notes, and memorize the songs, you'll be fine.", + "pos": 0.031, + "neu": 0.969, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d1a7" + } + }, + { + "text": "very boring professor but a very easy A if you manage to stay awake. DON'T get the textbook, it was never used. The four test and final are easy if you actually manage to stay awake", + "pos": 0.19, + "neu": 0.769, + "neg": 0.042, + "_id": { + "$oid": "6711d570cd60fca157e5d1a8" + } + }, + { + "text": "amazing professor, very knowledgeable and tries his best to engage the whole class in discussions and plays tons of live music to help us fully understand concepts. Doesn't just drone on & shows us many videos and truly has a passion for jazz that is shown in his teaching. Tests are very straightforward & he tells you exactly what you need to know", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d1a9" + } + }, + { + "text": "I felt very fortunate to be in a class with such a deeply knowledgable, and actively working jazz musician. The stories are incredible and very entertaining. You not only get jazz history but a workimg knowledge of music theory. I really don't be get the other reviews, the general consensus is that you take a ton away from this class.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d1aa" + } + }, + { + "text": "This man seemed miserable while teaching. He never wanted to be in class. And you won't either. I don't know how this man grades. I'm happy I'm done with the class.", + "pos": 0.103, + "neu": 0.808, + "neg": 0.089, + "_id": { + "$oid": "6711d570cd60fca157e5d1ab" + } + }, + { + "text": "The workload isn't bad but he ruins what could have been a pretty fun course. I don't think there was a class where he wasn't late. He clearly has no interest in teaching or in his students. By the end of the class you'll be as miserable as he is. If you have any other option for a professor take it...", + "pos": 0.135, + "neu": 0.684, + "neg": 0.181, + "_id": { + "$oid": "6711d570cd60fca157e5d1ac" + } + }, + { + "text": "Most important: I knew I would get an A before handing in the one assigned essay. The required length was 5 pages. I managed only 3. His only comment was the length was insufficient. I spent a good 20 hours on the piece; it was well written. He should have commented on the writing, ideas, observations, etc. In general: Low energy. No enthusiasm.", + "pos": 0.13, + "neu": 0.806, + "neg": 0.064, + "_id": { + "$oid": "6711d570cd60fca157e5d1ad" + } + }, + { + "text": "Those that didn't do great didn't have the time to listen to the jazz pieces (which are on the CD, and YouTube). It's a Jazz class. YOU HAVE TO LISTEN TO THE MUSIC. Ray's humor is a little dry but he's a good professor with lots of stories and experience as a jazz pianist. He likes participation, and everything else you need is in his lectures.", + "pos": 0.124, + "neu": 0.846, + "neg": 0.029, + "_id": { + "$oid": "6711d570cd60fca157e5d1ae" + } + }, + { + "text": "His Jazz Piano class is ridiculous...", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d570cd60fca157e5d1af" + } + }, + { + "text": "Terrible professor. Method of motivation? Sarcasm. Interest in the class? None. Respect for students? Little (none if you are a vocalist). Why do people like this teach? His attitude was at first intimidating. Then it was cute. Finally, at the end of the semester, it's simply annoying.", + "pos": 0.173, + "neu": 0.603, + "neg": 0.224, + "_id": { + "$oid": "6711d570cd60fca157e5d1b0" + } + }, + { + "text": "good teacher", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d1b1" + } + }, + { + "text": "He is a great teacher. I learned a lot from him", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d1b2" + } + }, + { + "text": "Best teacher. He is good. However, you should try hard", + "pos": 0.458, + "neu": 0.452, + "neg": 0.09, + "_id": { + "$oid": "6711d570cd60fca157e5d1b3" + } + }, + { + "text": "Professor Gallon is a present and considerate instructor. He teaches exactly what non-piano players need to know in order to comp through tunes, and he motivates his students by encouraging them to go out and play and even sit in on his gigs. If you commit to a practice schedule, and you actually enjoy listening to jazz, his classes are for you.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d570cd60fca157e5d1b4" + } + }, + { + "text": "you'd be crazy to take this guy, I mean seriously. If you want your gpa to suffer, then go right ahead and take him. If you want a good grade, then look elsewhere. would you rather have a knowledgeable loser or fun slightly knowledgeable professor? if by some chance you do register for this guy, there is still time to take someone reasonable.", + "pos": 0.142, + "neu": 0.712, + "neg": 0.145, + "_id": { + "$oid": "6711d570cd60fca157e5d1b5" + } + }, + { + "text": "avoid AVOID AAAAVVVVVVVOOOIIIIIDDDDDD this man!!! >.< interesting class but lame professor, DO NOT... I repeat, DO NOT TAKE HIM. He will screw up your gpa. He makes a supposedly simple class difficult. He enjoys repeating one thought for 2hrs and 30mins, not worth the time or the effort. AVOID HIM AND RUN AWAY. yOU will regret taking him. he stinks", + "pos": 0.078, + "neu": 0.592, + "neg": 0.33, + "_id": { + "$oid": "6711d570cd60fca157e5d1b6" + } + }, + { + "text": "If you try to contact him, he takes forever to get back to you and will give you a snotty remark like \"that's not my problem\". What kind of professor says that to a student? really? If you are failing, he won't give you a chance to make it up and that goes for his entire class so it is not just one person being singled out. Avoid him at all costs!!", + "pos": 0.096, + "neu": 0.835, + "neg": 0.069, + "_id": { + "$oid": "6711d570cd60fca157e5d1b7" + } + }, + { + "text": "If you can take any other jazz history teacher, do that! trust me, you are doing yourself a favor. His class is not worth the $500+. People sleep in his class on a daily basis because he is so boring.... knowledgeable but not understanding AT ALL. He is a waste of time and he could care less about his students, and vice versa. EPIC FAIL HE IS T^T", + "pos": 0.101, + "neu": 0.74, + "neg": 0.16, + "_id": { + "$oid": "6711d570cd60fca157e5d1b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d571cd60fca157e5d1ba" + }, + "professor_name": "Ardavan Yazdanbakhsh", + "rating": 2.4, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Difficult class but his exams are easier relative to the other professor. Funny guy.", + "pos": 0.372, + "neu": 0.542, + "neg": 0.086, + "_id": { + "$oid": "6711d571cd60fca157e5d1bb" + } + }, + { + "text": "I recommend going to tutoring because he'll spend a whole lecture going over the theory and maybe do one problem at the end. The questions in the exams can seem so convoluted and he says you can't ask any questions which makes it so much worse. Also any topic is fair game (BS things like maximum likelihood). Learned a lot from this class though lol", + "pos": 0.134, + "neu": 0.785, + "neg": 0.081, + "_id": { + "$oid": "6711d571cd60fca157e5d1bc" + } + }, + { + "text": "The worst professor in the civil department. Not at all helpful towards students who need help. The department should have a clear guideline on how this class should be taught cause hilariously every semester it is different. This semester only 15 people took the final. Dont take him ever for this course.", + "pos": 0.089, + "neu": 0.804, + "neg": 0.108, + "_id": { + "$oid": "6711d571cd60fca157e5d1bd" + } + }, + { + "text": "Tough course and the professor makes it even harder by being a tough grader with no partial credit. Likes giving out 0's for the fun of it and doesn't care whatsoever. The whole course is graded off of 3 lecture exams, 1 lab final, and 1 Project that's it. The class started with 70 students and by the end, only 10 students were left.", + "pos": 0.114, + "neu": 0.752, + "neg": 0.134, + "_id": { + "$oid": "6711d571cd60fca157e5d1be" + } + }, + { + "text": "Would not recommend taking this professor. Your grade is dependent on 3 exams and a final. The exams consist of 4 questions and no partial credit is given so you need to do every part and calculation of a question right. This semester, half the class got a 0 on the first exam and were advised to drop by the professor. Most students drop this course", + "pos": 0.0, + "neu": 0.848, + "neg": 0.152, + "_id": { + "$oid": "6711d571cd60fca157e5d1bf" + } + }, + { + "text": "'DE' worst professor I have ever come across. I think he he should not be teaching at all. Everything about this professor is bad. The lectures, the exams, accessibility, feedback. He needs to be fired.", + "pos": 0.0, + "neu": 0.741, + "neg": 0.259, + "_id": { + "$oid": "6711d571cd60fca157e5d1c0" + } + }, + { + "text": "Stay away from this professor, if you want to learn data analysis I would recommend studying by yourself and practice questions before enrolling in this course. This professor does not give any feedback that will help you to do well in your career, he does not teach like a engineering professor, I do not know how he is given the permission to teach", + "pos": 0.125, + "neu": 0.844, + "neg": 0.031, + "_id": { + "$oid": "6711d571cd60fca157e5d1c1" + } + }, + { + "text": "He scares his students lol", + "pos": 0.341, + "neu": 0.366, + "neg": 0.293, + "_id": { + "$oid": "6711d571cd60fca157e5d1c2" + } + }, + { + "text": "Good for the theoretical courses, but not design. Doesn't answer emails and avoids students. If you can catch him then he will be more than willing to help.", + "pos": 0.169, + "neu": 0.768, + "neg": 0.063, + "_id": { + "$oid": "6711d571cd60fca157e5d1c3" + } + }, + { + "text": "Reinforced Concrete class, understandable material and nothing out of the ordinary. However the way it is taught does not show you how to design. Great general info and whatnot but 0 design experience. Having a PhD does not guarantee that you know how to design. P.E.'s with work experience should teach all design classes.", + "pos": 0.045, + "neu": 0.918, + "neg": 0.037, + "_id": { + "$oid": "6711d571cd60fca157e5d1c4" + } + }, + { + "text": "Material's not hard, his lectures are solid, and he explains concepts pretty well. But his exams are a bit crazy. The questions aren't super difficult, but there are only four questions on each with no partial credit, making it very easy to do poorly. Although he did curve in the end, much of the class dropped after getting 0s on multiple exams.", + "pos": 0.167, + "neu": 0.667, + "neg": 0.165, + "_id": { + "$oid": "6711d571cd60fca157e5d1c5" + } + }, + { + "text": "Overall this class is the hardest class I have taken, you have to work really hard for your grade and for the exam. I hope there is a new professor next semester.", + "pos": 0.084, + "neu": 0.867, + "neg": 0.049, + "_id": { + "$oid": "6711d571cd60fca157e5d1c6" + } + }, + { + "text": "Class is super tough. Exams are 100% if your grade, you have to study and remember many many formulas or how they work from textbook that calculate probability. No partial credit and work MUST be shown. Might be different next semester but he gave a generous curve for students who stuck to the end. Mentally daunting, so make sure u study religiouly", + "pos": 0.142, + "neu": 0.762, + "neg": 0.096, + "_id": { + "$oid": "6711d571cd60fca157e5d1c7" + } + }, + { + "text": "Professor Yazdanbaksh is tough. CE264 is no joke when it comes to assessing what you've learned and applying it on exams. With that being said, The professors lectures are ok but, READ THE TEXTBOOK. The questions on the exams were very similar to the TEXTBOOK and the textbook will carry you throughout this course. Look at the study guide and do Q.", + "pos": 0.025, + "neu": 0.932, + "neg": 0.043, + "_id": { + "$oid": "6711d571cd60fca157e5d1c8" + } + }, + { + "text": "The hardest class Ive had to take but compared to Professor Devinnini i suggest you take Ardavan his exams were 100x easier trust me i took this class more than once", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1c9" + } + }, + { + "text": "CE 26400 is not an easy course, you have to work really hard and understand the materials of the class. But this professor really don't know how to give his exam, CUNY department should come in and inspect him for his teaching and giving exam, he is failing many students with out giving any attention to his students.", + "pos": 0.093, + "neu": 0.795, + "neg": 0.112, + "_id": { + "$oid": "6711d571cd60fca157e5d1ca" + } + }, + { + "text": "He is heartless and doesnt care about his students at all. He teaches only the basics and exams are something else. I wish there was another professor at CCNY to teach this course.", + "pos": 0.07, + "neu": 0.779, + "neg": 0.151, + "_id": { + "$oid": "6711d571cd60fca157e5d1cb" + } + }, + { + "text": "Hes terrible dont ever take him. He will give you anxiety and depression!!", + "pos": 0.0, + "neu": 0.524, + "neg": 0.476, + "_id": { + "$oid": "6711d571cd60fca157e5d1cc" + } + }, + { + "text": "I've come to the conclusion that its not the class itself that's hard (unless you don't study/work/understand all the problems ) but its the professors that make this course very difficulty to pass. This professor is very good at teaching the basics but when it comes to exams reading the questions just becomes confusing to understand.", + "pos": 0.067, + "neu": 0.794, + "neg": 0.139, + "_id": { + "$oid": "6711d571cd60fca157e5d1cd" + } + }, + { + "text": "Seriously bad. Doesn't give any partial credit and gives no margin of error for your answers. Lectures consist of him going through examples while never really explaining the concepts. For an online class, he is super strict about how your video and audio are set up, but can barely get through ten minutes himself without losing audio or cutting out", + "pos": 0.104, + "neu": 0.767, + "neg": 0.13, + "_id": { + "$oid": "6711d571cd60fca157e5d1ce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d571cd60fca157e5d1d0" + }, + "professor_name": "Steven Messner", + "rating": 4.7, + "department": "Art department", + "comments": [ + { + "text": "Professor Messner is an amazing professor. Being a senior taking his class, I learned A LOT of stuff I didn't know in my previous years. He teaches cool things on photoshop that is very useful. Be prepared to have homework almost every week. However, they're quite simple and are base on the stuff he taught that day. I def. recommend this professor.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1d1" + } + }, + { + "text": "\"It's Friday night, and you're ready to go out the club...\" Funny lectures, tons of homework. He is a bit disorganized and will email assignments late, but still expect you to hand them in on time. He will explain things too fast and you'll be lost, so be ready to ask questions! Dissecting movie clips and prints will lead to interesting topics.", + "pos": 0.207, + "neu": 0.733, + "neg": 0.061, + "_id": { + "$oid": "6711d571cd60fca157e5d1d2" + } + }, + { + "text": "Very friendly professor, he will teach you things from business environment and will make you do 'bad' projects on purpose bc you'll learn from bad design too. His print production class is not only about printing or packaging ... Be ready to do checklists, watch movie clips, do clipping paths and photo editing. Just do your work and you'll pass", + "pos": 0.087, + "neu": 0.812, + "neg": 0.101, + "_id": { + "$oid": "6711d571cd60fca157e5d1d3" + } + }, + { + "text": "\"Friday night, trying to get to the clubs...\" Just make sure to show finished work and have a backup plan if anything fails. Expect interesting and fun lectures, and always take notes of stuff he constantly repeats, both about project feedback to make changes and class topics, cause it'll come in handy ;) Oh, and NEVER forget your loupe!", + "pos": 0.179, + "neu": 0.78, + "neg": 0.041, + "_id": { + "$oid": "6711d571cd60fca157e5d1d4" + } + }, + { + "text": "Prof. Messner is so great at teaching his knowledge of print production. I learned a great deal from him. He is funny and inspirational. Shows tons of work place tools and examples. Worth every minute. Highly recommended", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1d5" + } + }, + { + "text": "He is a great professor who will show you more print related media movies, and make cool projects.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1d6" + } + }, + { + "text": "He's a professor that should be mandatory for graphic designers. You will learn resolution, printing, and many other techniques to help you out in the field. Whether you're going into print or digital field. It's a heavy photoshop class, Indesign is sometimes used. He's sometimes goes a little fast when speaking so make sure to listen.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1d7" + } + }, + { + "text": "Amazing class for any graphic designers that need to gain knowledge in print production. Messner gives us so much useful information and makes the class painless with interesting classes and he's pretty funny. Definitely one of my favorite professors.", + "pos": 0.474, + "neu": 0.526, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1d8" + } + }, + { + "text": "Great class for anyone who wants to learn more about the design industry. Messner's a very informative and great professor, he gives great projects that'll reflect on print production (package design) and anything you need to know about color and the steps to take to create high quality work. Oh and he bakes arabic desserts.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1d9" + } + }, + { + "text": "(Print Production) Lots of tedious info to learn, and it was only offered on Fri and Sat... But he still somehow made it an enjoyable class, which in my opinion is pretty amazing. Always plays video clips, which are entertaining, couple quizzes, open class discussions. Overall a good (sometimes boring) class but with a great professor.", + "pos": 0.364, + "neu": 0.599, + "neg": 0.037, + "_id": { + "$oid": "6711d571cd60fca157e5d1da" + } + }, + { + "text": "Great professor! Good sense of humor. Enjoyed his class a lot. He is very helpful and cares about students success. The class and material taught about print production is technical, very useful. I had a couple of situations at my internship where I was able to get around with a print project because of what I learned with him this semester.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1db" + } + }, + { + "text": "Everything he says is gold. Write it all down because it is unbelievably useful for print and design in general.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1dc" + } + }, + { + "text": "Very dope class. I learned a lot of things I never even thought of when it comes to print production. Ever for a saturday morning class it was enjoyable. Messner is a hilarious and awesome professor.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1dd" + } + }, + { + "text": "Very interesting class, you'll learn a lot about print production and the nature of the business from a working professional. Know your design programs because there isn't time to go over basics.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1de" + } + }, + { + "text": "The book was only emphasizing the importance of checklists. Easy reald, and not-so-complicated assignments given.Messner knows how to teach: not only does he teach you technical things in PS, but he also teaches you how to solve problems in the workplace. More EDM professors should follow his example on this. 5/5!", + "pos": 0.109, + "neu": 0.828, + "neg": 0.063, + "_id": { + "$oid": "6711d571cd60fca157e5d1df" + } + }, + { + "text": "He's cool patient smart helpful. Easy A Exams are stuffs that he taught in class. He gave extra credits for ppl too", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1e0" + } + }, + { + "text": "Messner is the best teacher i ever had. If you want to learn useful stuffs for Print Production take him.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1e1" + } + }, + { + "text": "Great professor, has a lot of knowledge to share. I learned a lot more than what i expected from him, he should be teaching more classes in the EDM department.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1e2" + } + }, + { + "text": "Prof. Messner is amazing, I highly recommend anyone interested in the design world to take his class. This was the first class I took that I wished lasted longer! I honestly wish he would teach more classes. One of the best professors I have taken and he made a Saturday class a pleasure to go to. I thank him for a great semester. v", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d571cd60fca157e5d1e3" + } + }, + { + "text": "A great teacher in the subject, he really knows his stuff. He teaches the material in a way that will make it very hard to forget. Highly recommended.", + "pos": 0.182, + "neu": 0.705, + "neg": 0.113, + "_id": { + "$oid": "6711d571cd60fca157e5d1e4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d572cd60fca157e5d1e6" + }, + "professor_name": "Maxwell Musser", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "Not good what so ever", + "pos": 0.0, + "neu": 0.624, + "neg": 0.376, + "_id": { + "$oid": "6711d572cd60fca157e5d1e7" + } + }, + { + "text": "Took him for linear algebra F15. Wasn't an easy class but it was made clear by this professor. Offers lots off help after class and office hours. Fair exams and homework minimal but are graded( only 2 questions) Definitely would recommend", + "pos": 0.313, + "neu": 0.655, + "neg": 0.032, + "_id": { + "$oid": "6711d572cd60fca157e5d1e8" + } + }, + { + "text": "Excellent professor.", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d572cd60fca157e5d1e9" + } + }, + { + "text": "Tough grader, x100. He will grade your final. If you are an average college student who doesn't have time to visit professors and don't have fantasies of calculus .DONT TAKE THIS GUY. This guy loves calc and is passionate but will shoot down your grades.", + "pos": 0.091, + "neu": 0.822, + "neg": 0.087, + "_id": { + "$oid": "6711d572cd60fca157e5d1ea" + } + }, + { + "text": "Did a great job explaining material was always willing to help when available. However his exams were quite difficult at times and his grading made things a lot harder.", + "pos": 0.191, + "neu": 0.73, + "neg": 0.078, + "_id": { + "$oid": "6711d572cd60fca157e5d1eb" + } + }, + { + "text": "A great professor, but very tough and strict grader. Always willing to help especially if students are trying and improving.", + "pos": 0.35, + "neu": 0.572, + "neg": 0.078, + "_id": { + "$oid": "6711d572cd60fca157e5d1ec" + } + }, + { + "text": "I think he is a great professor, but when he grades, I mean 5 points of 10 ????? just for one mistake common !!!!", + "pos": 0.086, + "neu": 0.739, + "neg": 0.176, + "_id": { + "$oid": "6711d572cd60fca157e5d1ed" + } + }, + { + "text": "Tough Grader!!!", + "pos": 0.0, + "neu": 0.296, + "neg": 0.704, + "_id": { + "$oid": "6711d572cd60fca157e5d1ee" + } + }, + { + "text": "In conveying information, not clear what so ever, grading is really not objectively done. Unnecessarily, he takes points away.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d572cd60fca157e5d1ef" + } + }, + { + "text": "Well, It was good course, but not good enough.", + "pos": 0.278, + "neu": 0.476, + "neg": 0.247, + "_id": { + "$oid": "6711d572cd60fca157e5d1f0" + } + }, + { + "text": "He teaches so sloppy way, yet grading is so \"strict\" by taking points so much from small mistakes for tests. Once he likes students, he doesn't take too much but if he doesn't like students, then he takes so much points away. He shouldn't teach if he keeps doing sloppy.", + "pos": 0.036, + "neu": 0.882, + "neg": 0.083, + "_id": { + "$oid": "6711d572cd60fca157e5d1f1" + } + }, + { + "text": "He was one of the hardest professors I have taken so far because he does not collect homework and the only grade that you get is out of exams. I did very good on the class exams but did not do so well on the final so it brought my grades down a lot. You have to study on your own a lot and his lectures are very very very long.", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d572cd60fca157e5d1f2" + } + }, + { + "text": "Prof Musser makes you interested in subject. Program for Linear Algebra in CCNY is not the strongest one, missing a lot of important topics for math majors but prof Musser makes the most of it. Also his exams are not too hard so with medium effort you'll be able to pass the class. Overall, fun class and an awesome professor", + "pos": 0.208, + "neu": 0.745, + "neg": 0.046, + "_id": { + "$oid": "6711d572cd60fca157e5d1f3" + } + }, + { + "text": "His tests are very fair but he is a tough grader! I mean 5 points for a 10 point question for an arithmetic error.", + "pos": 0.063, + "neu": 0.74, + "neg": 0.197, + "_id": { + "$oid": "6711d572cd60fca157e5d1f4" + } + }, + { + "text": "Class lectures are very clear and most of the test questions were part of the class notes. Study the class notes and homework problems for tests. He grades harshly. So be prepared. There is always one or two tricky problems in test. Do all the homework problems and go to his office hours for help. He also stays after the class.", + "pos": 0.109, + "neu": 0.756, + "neg": 0.136, + "_id": { + "$oid": "6711d572cd60fca157e5d1f5" + } + }, + { + "text": "First few tests were alright then his tests got really hard, and he grades very harsh. You either get a 0 or 5 or 10 points. He grades them soo quick, so barely partial credit. If you are planning to this class start studying for the course before classes start. view the ccny math 202 page, all you need is there. there is dept final class", + "pos": 0.064, + "neu": 0.867, + "neg": 0.068, + "_id": { + "$oid": "6711d572cd60fca157e5d1f6" + } + }, + { + "text": "Best math teacher I've ever had. I actually understood his lectures and would have taken the harder calculus just to have him again, if I had to take it. He doesn't waste a second of time and will stay after class to explain anything you don't get. Wonderful teacher, crystal-clear explanations, excellent classroom management, totally empathetic.", + "pos": 0.197, + "neu": 0.759, + "neg": 0.045, + "_id": { + "$oid": "6711d572cd60fca157e5d1f7" + } + }, + { + "text": "Lectures are amazing and are at times even more helpful than the book. He stays after class to help students. Tests are really fair. If you do the homeworks, you can get a really high score on the exams. He tries to give weekly quizzes, so doing the homework also helps with doing well on the quizzes as well. Great professor, would take again.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d572cd60fca157e5d1f8" + } + }, + { + "text": "Honestly, he is a great professor! But I guess due to my stupidity I didn't pass the class. He is very finicky about calculations on exams so make sure you practice, practice, practice from the homework questions! He won't let you take an F if you do get a D so just a heads up! Other than that, he seriously is an amazing teacher and always helps!", + "pos": 0.212, + "neu": 0.718, + "neg": 0.071, + "_id": { + "$oid": "6711d572cd60fca157e5d1f9" + } + }, + { + "text": "Hands down the best professor I have taken. I would recommend taking him for any math class you have to take. He doesn't expect you to know ridiculous details, but he wants you to understand what is going on. Exams are fair, show up to class and do every single homework problem , you will get the grade you work for. Very helpful in office hours.", + "pos": 0.149, + "neu": 0.782, + "neg": 0.069, + "_id": { + "$oid": "6711d572cd60fca157e5d1fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d572cd60fca157e5d1fc" + }, + "professor_name": "Benjamin Steinberg", + "rating": 2.9, + "department": "Mathematics department", + "comments": [ + { + "text": "Lectures were online and tests were in person, and lectures werent mandatory but he still took attendance, not sure why. The biggest problem with him IMO is his handwriting is really hard to understand and he can move kinda fast. I resorted to self studying early on. Overall not bad but not great.", + "pos": 0.059, + "neu": 0.73, + "neg": 0.211, + "_id": { + "$oid": "6711d572cd60fca157e5d1fd" + } + }, + { + "text": "Insanely long homeworks that are barely worth anything. Lectures and tests are theory heavy, which is not often necessary. Very generous with partial credit when grading, and curves final grade. The material itself is straight forward, if you study and understand the material, you will do fine, it just is very time consuming.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d572cd60fca157e5d1fe" + } + }, + { + "text": "Horrible Professor", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d572cd60fca157e5d1ff" + } + }, + { + "text": "Horrible Professor. Homework was extremely long and only graded by two questions. Takes a considerable amount of time to understand his writing.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d572cd60fca157e5d200" + } + }, + { + "text": "For 4 months I was ACTUALLY convinced he was a good prof. Boy was I wrong. Handwriting = atrocious. This man was not present for any in-person exam. The HW was only graded on 3 random question? The final was a joke,harder than anything we prepared for in his class. He just dumped practice from the textbook and gave a SAMPLE FINAL W/ NO ANSWER KEY.", + "pos": 0.098, + "neu": 0.787, + "neg": 0.115, + "_id": { + "$oid": "6711d572cd60fca157e5d201" + } + }, + { + "text": "Steinberg is really nice and he's very clear with the grading criteria. He's always available to answer your questions. For his course work you should self-study to grasp the material, it also helps that he records and saves lectures so you could use that as a resource. Overall, he's solid.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d572cd60fca157e5d202" + } + }, + { + "text": "Really nice teacher, his handwriting needs work. Mostly self-studied, but the material itself isn't that bad at all. He gives a lot of partial credit and is very generous with his grading, you shouldn't have much of a problem with him. He's very helpful if you ask him questions and if you need help, he'll reply to your emails. BB Homeworks are LONG", + "pos": 0.268, + "neu": 0.688, + "neg": 0.044, + "_id": { + "$oid": "6711d572cd60fca157e5d203" + } + }, + { + "text": "I learned a lot and the lectures were generally clear, but the professor was paranoid and often accused students of cheating. He even interrupted us during the final exam to accuse the whole class of cheating on Chegg and threaten collective punishment... then he finally noticed the question he was looking at on Chegg wasn't even from our final!", + "pos": 0.023, + "neu": 0.626, + "neg": 0.352, + "_id": { + "$oid": "6711d572cd60fca157e5d204" + } + }, + { + "text": "Prof. Steinberg was a pleasure to have. He was very understanding regarding the pandemic and online quizzes. He taught the material very well and I would definately take him again if I had the chance. He's strict with cheating, which is understandable and he always gives feedback on homework assignments. Definately take him if you have the chance.", + "pos": 0.151, + "neu": 0.795, + "neg": 0.054, + "_id": { + "$oid": "6711d572cd60fca157e5d205" + } + }, + { + "text": "Please do not take this guy unless you can read hieroglyphics.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d572cd60fca157e5d206" + } + }, + { + "text": "I took this class in Spring, and it has been by far the worst math class I've ever taken. Took hours upon hours to complete homework that was only graded by two questions. Lectures were very hard to understand as people couldn't decipher what he was writing. He assumed everyone was cheating and made tests much harder. The stress is not worth it.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d572cd60fca157e5d207" + } + }, + { + "text": "This was the worst math class I've ever taken. Steinberg was not prepared and was not interested. He followed no real syllabus or calendar. He outlined skills like how to find a determinate but offered no real understanding. Students did not learn, to wit: the mean score on the midterm was a 60. The silver lining is that he curves heavily.", + "pos": 0.047, + "neu": 0.805, + "neg": 0.148, + "_id": { + "$oid": "6711d572cd60fca157e5d208" + } + }, + { + "text": "Horrible Professor, hard to see his handwriting. Tough Exams and lots written homework that's not worth anything on your grade which took hours.", + "pos": 0.0, + "neu": 0.702, + "neg": 0.298, + "_id": { + "$oid": "6711d572cd60fca157e5d209" + } + }, + { + "text": "I ended this class with an A but if I could have changed professors I wouldve. He spent more time during his lectures talking about ways he plans to catch people cheating on exams than actually teaching the lesson. He will make you take oral exams if he is suspect of you (for absolutely no reason). Take any other Professor, 346 is an easy course.", + "pos": 0.051, + "neu": 0.805, + "neg": 0.144, + "_id": { + "$oid": "6711d572cd60fca157e5d20a" + } + }, + { + "text": "My man Steinberg is too impressive. He has a big brain for linear algebra, math, forensic analysis and can write in hieroglyphics. I recommend him if you really love reading the textbook and love to fall asleep during his lectures. This man is too powerful and intellectually superior than the rest of us mortals. He's too good for CCNY honestly.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d572cd60fca157e5d20b" + } + }, + { + "text": "his handwriting is bad its true,he never has an issue clarifying something tho. We had a huge issue with cheating this semester, and prof was extremely diligent in punishing those students. The tests were extremely hard because there was this anxiety that he would think your cheating even if your not. Homework was not worth enough points imo", + "pos": 0.032, + "neu": 0.694, + "neg": 0.275, + "_id": { + "$oid": "6711d572cd60fca157e5d20c" + } + }, + { + "text": "I got mislead by the positive ratings & took him, would have gotten a good grade with a diff prof because this guy isnt happy at all and thinks everyone cheats on his exams,but its not TRUE! Hes just ridiculous because to prevent cheating he made exams crazily hard and then didnt curve and honest people got punished! THE STRESS WAS NOT WORTH IT", + "pos": 0.086, + "neu": 0.566, + "neg": 0.348, + "_id": { + "$oid": "6711d572cd60fca157e5d20d" + } + }, + { + "text": "All the positive reviews below are gas. He's not good at teaching, his handwriting is atrocious, and he thinks /everyone/ cheated if people do well. He will watch you like your FBI agent on zoom during exams. And the class is not even that hard, but the amount of stress taking it with him isn't worth it. Anyone else is better, no question about it", + "pos": 0.136, + "neu": 0.706, + "neg": 0.158, + "_id": { + "$oid": "6711d572cd60fca157e5d20e" + } + }, + { + "text": "oKAY SO people who did bad probably cheated on his exams and had to face the punishments that came forth. Steinberg is a great professor who cared about us trying our best and not using the internet to cheat like so many have done. Just be honest in your exam you are only failing yourself by cheating. The textbook, homeworks and online homework wer", + "pos": 0.208, + "neu": 0.576, + "neg": 0.216, + "_id": { + "$oid": "6711d572cd60fca157e5d20f" + } + }, + { + "text": "I am not sure of what the person wrote down below but this is not true. Do not listen to that rating.", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d572cd60fca157e5d210" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d573cd60fca157e5d212" + }, + "professor_name": "Maria Tamargo", + "rating": 2.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Professor Tamargo is severely underrated, although she does teach some topics better than others, with use of the textbook (which is free on EStax), recitations, lab, and ALEKS, you will be more than prepared for her exams. She gives 3 midterms (drops lowest of these) and a final, all of which are fairly easy. She is also very nice and approachable", + "pos": 0.194, + "neu": 0.73, + "neg": 0.076, + "_id": { + "$oid": "6711d573cd60fca157e5d213" + } + }, + { + "text": "Professor's exams are really easy. As long as you understand the topics in lecture and do ALEKS homework problems and practice, you'll be fine. Always attend recitation, because that helps a lot, especially the practice problems.", + "pos": 0.172, + "neu": 0.7, + "neg": 0.128, + "_id": { + "$oid": "6711d573cd60fca157e5d214" + } + }, + { + "text": "She's one of the better chem professors around, but IMO its only because her tests are fair. 3 midterms and a final. Lowest of the 3 midterms is dropped. Stopped going to lecture after the first exam because all she does is read off slides. Recommend the recitation because that's where i learned 90% of the material.", + "pos": 0.124, + "neu": 0.789, + "neg": 0.087, + "_id": { + "$oid": "6711d573cd60fca157e5d215" + } + }, + { + "text": "Personally, I love Professor Tamargo. She was clear in what she wanted and as long as you keep up with your work/assignments, you will be fine. She drops your lowest test and 2 lowest labs. She's great with office hours. She may read off her slides, but the slides themselves are great summaries. Her review sheets are basically the best w. diff #'s!", + "pos": 0.255, + "neu": 0.699, + "neg": 0.046, + "_id": { + "$oid": "6711d573cd60fca157e5d216" + } + }, + { + "text": "Dr. Tamargo is an exceptionally kind, loving, and generous person. She does read of her slides, but her slides do contain notes that will help you to pass the exams. There are three exams and one final; out of the three class-exams, she will drop the lowest. She posts exam reviews on BlackBoard, which is honestly a lifesaver. If you need one-on-one", + "pos": 0.248, + "neu": 0.676, + "neg": 0.076, + "_id": { + "$oid": "6711d573cd60fca157e5d217" + } + }, + { + "text": "Not only she just simply read off of slides, her practice exams before the exam and final under prepare you like a mf. She would give you the easiest things on the practice problems and comes the exam or the final its either not the same topic or another method that wasnt on it. Take her but literally teach and study by yourself.", + "pos": 0.056, + "neu": 0.916, + "neg": 0.028, + "_id": { + "$oid": "6711d573cd60fca157e5d218" + } + }, + { + "text": "Her tests are pretty fair, however, you would have to teach yourself most of the material. Prof Tamargo reads off the slides and goes through some examples. she sends you the slides so going to class isn't mandatory if you prefer to teach yourself. overall, she's super sweet and is willing to help her students.", + "pos": 0.231, + "neu": 0.75, + "neg": 0.019, + "_id": { + "$oid": "6711d573cd60fca157e5d219" + } + }, + { + "text": "Tbh its not like Tamargo does not try and make sure her students understand the material. I feel with fifty minutes she just didn't have enough time. She always makes herself available during office hours so abuse that. Also she tries to return emails in a timely fashion. Just make sure you can youtube each topic in great depth.", + "pos": 0.124, + "neu": 0.769, + "neg": 0.107, + "_id": { + "$oid": "6711d573cd60fca157e5d21a" + } + }, + { + "text": "Dr. Tamargo wants her students to perform well. She gives many opportunities to redeem yourself. Just do your work and study as you should in every class.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d21b" + } + }, + { + "text": "She cares for her students, she really does not want you to fail her class. She reads from her slides, but she sends them to you, so that you can review them after class or whenever. The lectures are short. Most of the recitation leaders, review worksheets and sometimes go over some topics that were not understood. Be prepared to self-teach too!", + "pos": 0.03, + "neu": 0.882, + "neg": 0.088, + "_id": { + "$oid": "6711d573cd60fca157e5d21c" + } + }, + { + "text": "Tamargo gives fairly easy tests but is not a good lecturer. Seems like she doesnt even know the material she is presenting. I basically taught myself from the book and the online program.", + "pos": 0.136, + "neu": 0.783, + "neg": 0.081, + "_id": { + "$oid": "6711d573cd60fca157e5d21d" + } + }, + { + "text": "DONT TAKE", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d21e" + } + }, + { + "text": "Definitely, the worst professor I have ever had or even heard about.", + "pos": 0.161, + "neu": 0.595, + "neg": 0.244, + "_id": { + "$oid": "6711d573cd60fca157e5d21f" + } + }, + { + "text": "Want to learn chemistry? Don't take her, period. You might pass the class, but your money won't be worth it since you'll be studying by yourself.", + "pos": 0.042, + "neu": 0.884, + "neg": 0.074, + "_id": { + "$oid": "6711d573cd60fca157e5d220" + } + }, + { + "text": "she gets confused most of the time. the lectures aren't helpful at all. when you ask her any sort of question she gets mad.", + "pos": 0.0, + "neu": 0.728, + "neg": 0.272, + "_id": { + "$oid": "6711d573cd60fca157e5d221" + } + }, + { + "text": "She is not as bad as other students make her out to be. Her lectures are not very helpful because she reads straight off the powerpoints. However, if you practice her practice problems before exams you should be able to pass. 3 exams all fair, drops the lowest. You can understand the material if you read the powerpoints.", + "pos": 0.105, + "neu": 0.777, + "neg": 0.117, + "_id": { + "$oid": "6711d573cd60fca157e5d222" + } + }, + { + "text": "Homework for each chapters on Mastering learning. 3 exams 10-11 questions each. Very easy if you have a great TA. Read the textbook to help me pass. She gives good examples for how to solve chemistry questions, but doesn't explain the concepts much.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d223" + } + }, + { + "text": "Easy class if you remember high school chem. I literally went to most of the lectures and didn't even pay attention to what she was saying because she made me even more confused. Take a little bit of time to study by yourself a few days before the exams, and you'll do just fine. Don't depend on her practice exams because there are typos everywhere.", + "pos": 0.086, + "neu": 0.877, + "neg": 0.037, + "_id": { + "$oid": "6711d573cd60fca157e5d224" + } + }, + { + "text": "At first it can be overwhelming BUT know now that you will HAVE to go go tutoring and study on your own EVERY DAY. Do the examples in the text book, her reviews are bit easier than the actual exam but not that far of a stretch. She's very nice and will listen to your concerns. Not the best chem prof BUT put the work in and you'll be fine", + "pos": 0.125, + "neu": 0.819, + "neg": 0.056, + "_id": { + "$oid": "6711d573cd60fca157e5d225" + } + }, + { + "text": "She is a very nice professor. Her exams aren't that hard. You just need to practice and redo all of the questions over again. Plus you guys should read the textbook it will help you a lot. Many students complain about her, but it is you who have to do what you should do in order to receive high grades on the exams. Well Good Luck with chem guys!!!?", + "pos": 0.205, + "neu": 0.773, + "neg": 0.022, + "_id": { + "$oid": "6711d573cd60fca157e5d226" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d573cd60fca157e5d228" + }, + "professor_name": "Brad Horn", + "rating": 3.4, + "department": "Architecture department", + "comments": [ + { + "text": "Brad was my first-ever studio professor and as I move on to my next years of architecture, I'm unsure if I'll ever have another studio professor as great as him. He challenged us with our projects in a healthy way and softly threw us into the realm of architectural thought. He cares for his students and gives smart criticism. He's always available.", + "pos": 0.169, + "neu": 0.745, + "neg": 0.085, + "_id": { + "$oid": "6711d573cd60fca157e5d229" + } + }, + { + "text": "He was confusing at first because of his choice of words and was vague with what was expected of the projects, but after a couple of weeks you adapt to it. He gives good advice one on one and he's caring and makes sure everyone is at their best. I would totally take him again!", + "pos": 0.25, + "neu": 0.712, + "neg": 0.038, + "_id": { + "$oid": "6711d573cd60fca157e5d22a" + } + }, + { + "text": "It's a lot of work, but he will make himself available to help you outside of class. He is very self-aware and he's a good listener. He encourages risk-taking, but wants you to be critical and intentional. He is very intelligent so if you listen to his feedback and apply it you will see growth. He obviously really cares about his students.", + "pos": 0.289, + "neu": 0.675, + "neg": 0.036, + "_id": { + "$oid": "6711d573cd60fca157e5d22b" + } + }, + { + "text": "Brad is very smart.. he gives excellent feedback and helps you develop design thinking critically. He is extremely demanding and will make you work very hard. He does have this weird craziness and will out of nowhere demand irrational amounts of work and act very strange. He cares a lot and is fully invested in each student.", + "pos": 0.22, + "neu": 0.635, + "neg": 0.144, + "_id": { + "$oid": "6711d573cd60fca157e5d22c" + } + }, + { + "text": "Brad is tough but he challenges and pushes students exactly the way a student should be pushed in a graduate program. One of the smartest professors I have ever had.", + "pos": 0.197, + "neu": 0.767, + "neg": 0.036, + "_id": { + "$oid": "6711d573cd60fca157e5d22d" + } + }, + { + "text": "Brad is a great professor and just a wonderful person in general. He's passionate about teaching and will go out of his way to help each and every student. Don't get discouraged by the negative comments. If he's critical of your work, instead of taking it personally, look at it as a learning opportunity and go discuss it with him!", + "pos": 0.249, + "neu": 0.673, + "neg": 0.078, + "_id": { + "$oid": "6711d573cd60fca157e5d22e" + } + }, + { + "text": "He has strong personal preference and if he doesn't like your style, he will criticize your work harder . There's no input from his comments and only can handle simple geometry. If curve or other irregular shape, he can't understand.", + "pos": 0.071, + "neu": 0.779, + "neg": 0.15, + "_id": { + "$oid": "6711d573cd60fca157e5d22f" + } + }, + { + "text": "Excellent instructor and excellent program director", + "pos": 0.649, + "neu": 0.351, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d230" + } + }, + { + "text": "Intelligent guy that gets his panties in a twist when someone has better work than he does. Threatened and power hungry ppl should not be teachers..so happy when inwas through with this pos", + "pos": 0.144, + "neu": 0.709, + "neg": 0.147, + "_id": { + "$oid": "6711d573cd60fca157e5d231" + } + }, + { + "text": "Worst Professor!! Lazy and demanding! Can't teach and has no guidelines! He is supposed to teach student and not critized people's work!", + "pos": 0.0, + "neu": 0.603, + "neg": 0.397, + "_id": { + "$oid": "6711d573cd60fca157e5d232" + } + }, + { + "text": "Brad's the man. Had him for 1st year grad studio. Intelligent, but sometimes cryptic and eccentric. You will be worked like never before, but you're given an incredible amount of design freedom. He challenges you to push your limits. He almost always wears the same jacket, pants, and shoes. A very cool guy to have a beer with too.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d233" + } + }, + { + "text": "He does live a few blocks away, or at least used to so that's why he always seems to be around. Great guy, and an excellent professor (especially now that he's calmed down some.)", + "pos": 0.246, + "neu": 0.709, + "neg": 0.045, + "_id": { + "$oid": "6711d573cd60fca157e5d234" + } + }, + { + "text": "I had him on some of my reviews, he's a perfectly intelligent architect, who choses his words wisely, well-rounded,and most of all gives you a critique that is very constructive. I would take him but he teaches masters now...oh well", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d235" + } + }, + { + "text": "did not teach this year 2006-2007.. so who every wrote that is LIEINGGGGGGGGGGGG..by the way..he is good due to that he never LEFT SCHOOL..do not know if he ever WORKED or BUILT ANYTHING.. so... people need a prof that has both school and CAREER (BUILDING)DO NOT TAKE HIM..", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d236" + } + }, + { + "text": "Excellent professor. Alot of interesting work and very interactive. This is what Architecture should always be like.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d237" + } + }, + { + "text": "WOW.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d238" + } + }, + { + "text": "Sometimes he is a space cadet, but this was an incredible class. The ultimate teacher...the real experience. If you like Foucault, this is the man. But you will also learn about architecture...", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d239" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d573cd60fca157e5d23a" + } + }, + { + "text": "best architecture professor i ever had! dont take him if u cant read or draw!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d573cd60fca157e5d23b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d573cd60fca157e5d23c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d574cd60fca157e5d23e" + }, + "professor_name": "Vahdani Elahe", + "rating": 4.1, + "department": "Computer Science department", + "comments": [ + { + "text": "Very helpful and lenient professor. Those who are rating her lower than a 4-5 are just lazy students with 0 self accountability who expect CS courses to be beginner's difficulty, and expect to put in 0 effort. If you are still crying about having to put in work at this stage of your CS courses, it is definitely time to reevaluate your major.", + "pos": 0.11, + "neu": 0.753, + "neg": 0.137, + "_id": { + "$oid": "6711d574cd60fca157e5d23f" + } + }, + { + "text": "Took her for 217 and 220. A fantastic professor that genuinely cares that you understand the topics thoroughly and can use them in the real world. She teaches well and provides resources and practice problems for quizzes/tests. Very respected and caring. Curves grades in the end.", + "pos": 0.267, + "neu": 0.687, + "neg": 0.046, + "_id": { + "$oid": "6711d574cd60fca157e5d240" + } + }, + { + "text": "Grade savior", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d574cd60fca157e5d241" + } + }, + { + "text": "Great professor. Had her for 217 and 220. Relies a lot on the exams for final grades. At first she may seem difficult, but I think everyone comes through and does well on her exams at the end. She curves grades. Open to answering any questions you may have and makes sure you fully understand the topic before moving on.", + "pos": 0.124, + "neu": 0.85, + "neg": 0.027, + "_id": { + "$oid": "6711d574cd60fca157e5d242" + } + }, + { + "text": "Difficult Class but she helps you out by giving you resources and material to use so you can study. She does curve.", + "pos": 0.239, + "neu": 0.697, + "neg": 0.064, + "_id": { + "$oid": "6711d574cd60fca157e5d243" + } + }, + { + "text": "Good professor. Difficult class to follow but will accommodate you if you progress well throughout the class", + "pos": 0.36, + "neu": 0.564, + "neg": 0.076, + "_id": { + "$oid": "6711d574cd60fca157e5d244" + } + }, + { + "text": "good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d574cd60fca157e5d245" + } + }, + { + "text": "1 test, 1 final, quizzes and participation. Lectures can be confusing but her pdf slides are easy to understand and learn from. Quizzes every 2 weeks but only took 4 this semester. She likes to think and say she's a harsh grader but then curved everyone's final grade by 2 letter grades lol. Very respected, very caring. Would definitely take again.", + "pos": 0.299, + "neu": 0.637, + "neg": 0.064, + "_id": { + "$oid": "6711d574cd60fca157e5d246" + } + }, + { + "text": "Please avoid she shows favoritsm. Even though i knew how the algorithm works and did the right steps i still lose points on one of the quiz for god knows what reason.", + "pos": 0.118, + "neu": 0.751, + "neg": 0.131, + "_id": { + "$oid": "6711d574cd60fca157e5d247" + } + }, + { + "text": "Just reads slides explains problems already shown in slides. Barely any practice. Homework assigned after quiz which are not similar to lecture so difficult to study for expecially since no textbook is used. Goes over quiz/tests but does not return them. Grades everything at the end of the semester.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d574cd60fca157e5d248" + } + }, + { + "text": "She was awful. Very disorganized and doesn't give ANY grades. Pretty sure she graded everything based on the final. When I asked for my grades for the midterm and the final she threw out random numbers then was extremely rude. Would not take her again!!", + "pos": 0.1, + "neu": 0.729, + "neg": 0.171, + "_id": { + "$oid": "6711d574cd60fca157e5d249" + } + }, + { + "text": "She missed a few classes and I found it hard to pay attention In lectures. But, everything is on the slides, so if you do all the practice questions and HW, you should be able to do the midterm and final. She does not grade anything until the end of the semester and you have no idea what you get on the exams, which sucks.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d574cd60fca157e5d24a" + } + }, + { + "text": "Very disorganized, she missed so many lectures and never gave us our assignment grades. Difficult exams and unclear grading criteria. Additionally, she did not follow certain aspects of her syllabus, so be wary. I don't believe she curves.", + "pos": 0.0, + "neu": 0.745, + "neg": 0.255, + "_id": { + "$oid": "6711d574cd60fca157e5d24b" + } + }, + { + "text": "Very easy course with all homework and assignments on ZyBooks. Attendance optional so I didn't waste time listening to her reading off the book. Everything was online and she moved final exam to online as well. Very easy course, hard to fail. If you need help in course, your classmates definitely got your back!", + "pos": 0.247, + "neu": 0.677, + "neg": 0.076, + "_id": { + "$oid": "6711d574cd60fca157e5d24c" + } + }, + { + "text": "Great professor. Such a beautiful and sweet lady. Very understanding, nice, calm, and flexible. Love her. Took her back in the Spring 2021 Semester and she is amazing. I would have gotten an A in two conditions, if I didn't take the makeup exam for the 2nd exam and took it on the original day students took it and submitted HW#2 on time.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d574cd60fca157e5d24d" + } + }, + { + "text": "Very chill professor and doesn't make the class more stressful than it needs to be. She missed classes many times and her lectures are just reading off zybooks. She is an easy grader though. If you want to pass the class with good grades, take her class but you probably won't learn much as she is way too chill sometimes. Overall recommended.", + "pos": 0.108, + "neu": 0.834, + "neg": 0.058, + "_id": { + "$oid": "6711d574cd60fca157e5d24e" + } + }, + { + "text": "I usually watched the lecture recordings on my own and they were very helpful. You have to make sure to pay attention while watching them or it's easy to lose track of what she is saying. Overall pretty easy grader.", + "pos": 0.28, + "neu": 0.641, + "neg": 0.08, + "_id": { + "$oid": "6711d574cd60fca157e5d24f" + } + }, + { + "text": "Very nice", + "pos": 0.756, + "neu": 0.244, + "neg": 0.0, + "_id": { + "$oid": "6711d574cd60fca157e5d250" + } + }, + { + "text": "Elahe makes Statistics very easy for you. As long as you attend the lecture and do the homework, you should have yourself an A. The term consists of a midterm, a final and 3 homeworks. The only downside is I was not aware of my grade until she posted the final exam as she didn't post any grades for us. Don't be alarmed, she is a very nice person.", + "pos": 0.11, + "neu": 0.863, + "neg": 0.027, + "_id": { + "$oid": "6711d574cd60fca157e5d251" + } + }, + { + "text": "Homeworks, quizzes, and midterms. She makes the concepts very easy to understand but I felt like the problems were far from the practice problems she gives.", + "pos": 0.155, + "neu": 0.639, + "neg": 0.206, + "_id": { + "$oid": "6711d574cd60fca157e5d252" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d574cd60fca157e5d254" + }, + "professor_name": "Venus Green", + "rating": 2.6, + "department": "History department", + "comments": [ + { + "text": "DO NOT TAKE THE CLASS WITH HER I GOT A B MINUS N IT WASNT EASY U OF TO GO EVERY CLASS TO OFFICE HOURS TO GET A LITTLE MERCY SHE THINKS YOU SHOULD KNOW EVERYTHING ABOUT HER CLASS", + "pos": 0.053, + "neu": 0.889, + "neg": 0.058, + "_id": { + "$oid": "6711d574cd60fca157e5d255" + } + }, + { + "text": "This professor is T O U G H!! She is a great teacher and I love the topic (and her lectures), but if you hate reading then you will not survive this class. Also, SHE HATES LATENESS AND ABSENCES.", + "pos": 0.102, + "neu": 0.69, + "neg": 0.209, + "_id": { + "$oid": "6711d574cd60fca157e5d256" + } + }, + { + "text": "Consistently goes off on tangents. Unorganized. Assigns too much reading for a 101 class. Most lectures are just her reading off notes. Harsh Grader. Everything you don't want in a history prof.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d574cd60fca157e5d257" + } + }, + { + "text": "She is a fair grader, just do your work and you will pass. There is a handful of readings and she is available after class to discus grades and course work. Again she is a fair grader. SK", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d574cd60fca157e5d258" + } + }, + { + "text": "This prof. is the worst by FAR. She assigns WAY TOO MUCH READING! and she does not clarify what you have to know and what you dont. On papers she is a very VERY harsh grader. DO NOT take her.. there are other professors that you can take", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d574cd60fca157e5d259" + } + }, + { + "text": "Prof. Green requires way too much, esp. for a 101 class. Each class another chptr or 2 are due (each chapter about 50 pg). Even when students are answering questions she gets mad about no one reading. can't even use chapter summaries bc she expects you to know every little detail. needs to learn how to teach a 101 class. Exhausting and bad!!!", + "pos": 0.0, + "neu": 0.828, + "neg": 0.172, + "_id": { + "$oid": "6711d574cd60fca157e5d25a" + } + }, + { + "text": "MUST ATTEND CLASS. MUST BE ON TIME - she will stop class and stare at you the point out that you are late. The books she assigns are just part of the required reading. She will assign a S*!T TON of reading that she will provide. It seems as if she is losing interest in teaching, and the students suffer. I will NEVER TAKER HER AGAIN!!!", + "pos": 0.04, + "neu": 0.833, + "neg": 0.127, + "_id": { + "$oid": "6711d574cd60fca157e5d25b" + } + }, + { + "text": "don't take her for sure if u don't want to lower your GPA.", + "pos": 0.272, + "neu": 0.649, + "neg": 0.079, + "_id": { + "$oid": "6711d574cd60fca157e5d25c" + } + }, + { + "text": "Although Professor Green was hard in her grading and the amount of pages we had to receive every night, she was clear in what she expected of you as a student. As long as you attend her class and ask her for advice on your final protfolio you will receive a good grade. I received an A and I certainly worked hard for it. Overall you end up with a lo", + "pos": 0.103, + "neu": 0.86, + "neg": 0.037, + "_id": { + "$oid": "6711d574cd60fca157e5d25d" + } + }, + { + "text": "OMG BAD,...I worked so hard for her class and portfolio and she me a B, only class tht stressed me out. She wanted to to read around 100 pgs before class, she got mad if ppl did not read. Avoid her, I almost dropped and I could not keep up,..her grading is subjective. I workred harder than others in portfolio tht took my over month & they got same", + "pos": 0.025, + "neu": 0.874, + "neg": 0.1, + "_id": { + "$oid": "6711d574cd60fca157e5d25e" + } + }, + { + "text": "she is super hard", + "pos": 0.534, + "neu": 0.274, + "neg": 0.192, + "_id": { + "$oid": "6711d574cd60fca157e5d25f" + } + }, + { + "text": "Professor Greene is pretty easy if you just follow her insurctions. Make sure you come on time...lots of reading but only focus on material that she's dicussing you will pass..only write the essay in favor of the topic of the class don't be a show off..i got an A- for the whole class. she does treat the class like a graduate coarse", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d574cd60fca157e5d260" + } + }, + { + "text": "This professor teaches the course as if it is a upper-level master's class. She makes students give presentations, that wastes class time. Uses JSTOR in lieu of textbooks. Gives essay quizzes that require much more time than given. In sum an extremely hard course, with little guidance. Avoid this professor.", + "pos": 0.0, + "neu": 0.93, + "neg": 0.07, + "_id": { + "$oid": "6711d574cd60fca157e5d261" + } + }, + { + "text": "She is a horrible teacher. She is disorganized, comes with piles of notes but gets off topic and then gets upset when the class doesn't know how to answer one of her rambling questions. She is inconsistent and although obviously intelligent- she does not know how to pass the knowledge on- not a good teacher. Avoid at all cost!", + "pos": 0.057, + "neu": 0.752, + "neg": 0.191, + "_id": { + "$oid": "6711d574cd60fca157e5d262" + } + }, + { + "text": "Professor Green has a good heart, is incredibly smart, and passionate about the work...however, the lectures are a lil boring, she reads from her notes and she demands a ton of work. I would'nt suggest her if you're taking more than two other courses at a time. If you talk to her she's helpful though. She's also really fly!", + "pos": 0.234, + "neu": 0.735, + "neg": 0.032, + "_id": { + "$oid": "6711d574cd60fca157e5d263" + } + }, + { + "text": "this teacher is HORRIBLE . i dropped the class as soon as i could. TOO much work, TOO much reading and she skips a lot of material. She asks way too much of you, and had a knack for putting people on the spot. STAY AWAYYY !", + "pos": 0.0, + "neu": 0.91, + "neg": 0.09, + "_id": { + "$oid": "6711d574cd60fca157e5d264" + } + }, + { + "text": "This IS the worst professor at City, enough said.", + "pos": 0.0, + "neu": 0.661, + "neg": 0.339, + "_id": { + "$oid": "6711d574cd60fca157e5d265" + } + }, + { + "text": "Worst history professor I had at CCNY. Her lectures are incoherent and all over the map. Asks overly general questions then berates class for failing to give specific answers. Assessments are suspect in both scope and how much she actually reviews them. Highly advise to avoid -- a poor professor in an otherwise great department.", + "pos": 0.06, + "neu": 0.718, + "neg": 0.222, + "_id": { + "$oid": "6711d574cd60fca157e5d266" + } + }, + { + "text": "I am a black woman myself so it hurts me to say this but this **** is crazy!! She needs to be fired!! She is unorganized and completley unrealistic about what can be achieved during the time we in class. We had like 6 books required and then another 3 books and 3 articles to read for a portfolio which totalled about 200-300pgs.", + "pos": 0.044, + "neu": 0.802, + "neg": 0.154, + "_id": { + "$oid": "6711d574cd60fca157e5d267" + } + }, + { + "text": "You may want to think twice before having this professor.She is a good person, but the papers which you have to write are very hard. If she doesn't like your paper you will get an F. No one got an A in this course.The final was 50 short definitions and 11 essay questions. It's a lot. Consider having an easier professor.", + "pos": 0.098, + "neu": 0.794, + "neg": 0.108, + "_id": { + "$oid": "6711d574cd60fca157e5d268" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d575cd60fca157e5d26a" + }, + "professor_name": "Philip Clark", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "Prof. Clark was amazing! He fully explains everything and is quick to respond to emails. Sometimes he would have classes online. All you have to do is read the books and participate. My favorite teacher by far!", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d26b" + } + }, + { + "text": "I like the way professor Clark prepares you in certain areas considering if you are new to campus. He sounds and is very knowledgeable. Take him for a good grade if you put in the basic effort.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d26c" + } + }, + { + "text": "His class was very easy, just a lot of reading. He does in class discussions + in class writing assignments every week. He is really understanding of his students and often times will push back or extend due dates for students.", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d26d" + } + }, + { + "text": "One of the most amazing professors. Accomidating to students and pushing back deadlines. Provides a clear lecture to understand the texts in class. Overall amazing.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d26e" + } + }, + { + "text": "If I were to rate him anything higher than a 5, I would do so. Professor Clark is super caring about his students and wants the best out of you, even though it can be long. I hope to take another class with him soon", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d26f" + } + }, + { + "text": "He is very understanding and willing to accommodate students. There are quizzes every week, 3 discussion posts, one midterm paper, and one final paper (development of the midterm). He also gives great feedback.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d270" + } + }, + { + "text": "Great Professor and always really understanding. Do all your assignments and be sure to ask questions if you need to!", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d271" + } + }, + { + "text": "Great Professor, very understanding, and an easy grader. Just get the assignments done and let him know if you need extra time.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d272" + } + }, + { + "text": "If you are going to take this class, I will recommend this professor to everyone. He is so nice and understanding.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d273" + } + }, + { + "text": "This is the second time that I've chosen a course taught by Professor Clark! He is so passionate about every subject that he teaches and encourages students to find their academic passions as well. Participation drives this course. Most of class time will be based on discussions about short articles and videos. 100% would take Professor Clark again", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d274" + } + }, + { + "text": "Professor Clark is an amazing teacher! He is always willing to listen to his students. He also makes sure that his lessons are fun and meets the interests of the class. His workload is fairly light, most of his class is based on in-class discussions. He appreciates everyone's contributions. I highly recommend him!", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d275" + } + }, + { + "text": "This professor is an absolute gem. He is the most caring, sweet, and understanding professor. He cares about his students and makes sure they are comfortably learning. He gives amazing feedbacks on papers, listens to any of your problems and works with you conveniently. 100% would take his class again.", + "pos": 0.29, + "neu": 0.668, + "neg": 0.042, + "_id": { + "$oid": "6711d575cd60fca157e5d276" + } + }, + { + "text": "This class requires a seventy five min lecture video prior to class. The readings were pretty heavy especially the one on Tentacle. This class wasn't to bad not that much written work up until like the middle of the semester. After the reading and lectures you had to take a quiz. Just Do the work and you'll do just fine in this class. Clark cares!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d277" + } + }, + { + "text": "This man is no doubt one of the best professor at CCNY. Lenient grader. Quickly respond to email. Knowledgeable. Cares about our learning. If you see his name, please take him! He will make your semester a lot easier. Ignore any negative reviews about him as those comments are from lazy students who dont put any work in.", + "pos": 0.226, + "neu": 0.658, + "neg": 0.117, + "_id": { + "$oid": "6711d575cd60fca157e5d278" + } + }, + { + "text": "Professor Clark is one of the best professors in CCNY. He is very caring towards students. He will give a lot of writing to do but they are super easy. He gives an easy A. The lowest grade he gives is an A-.", + "pos": 0.307, + "neu": 0.635, + "neg": 0.058, + "_id": { + "$oid": "6711d575cd60fca157e5d279" + } + }, + { + "text": "After reading all the wonderful reviews. I thought it would be great taking his class. However, 2 weeks before class starts he sends out an email asking for a 1 page intro writing assignment and reading assignment. I dropped his class ASAP. Never in my college life have I received an assignment before class strats. This professor is not for me.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d27a" + } + }, + { + "text": "I had Professor Clark for Arts in New York; his knowledge and excitement about both art and New York left me feeling passionate about it too. Only thing is that he does assign a bunch of papers but just take the time to write honestly and you'll be fine. We also didn't go to as many shows/exhibits as I had hoped. But overall great professor!", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d27b" + } + }, + { + "text": "Great professor! All he really cares about is seeing his students succeed and grow as writers throughout the semester. As long as you put time and effort into your assignments you will do good in his class. He does sometimes call on people randomly. Available outside of school, emails back & flexible with the students schedules when assigning work.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d27c" + } + }, + { + "text": "His class is super easy. He just talks a lot about really nothing. He gave very few assignments because he didn't want us overwhelmed since we take other classes. Come to class frequently and participate here and there. If you need him outside of class, he's accessible. He provides great feedback on your writing if you ask for it.", + "pos": 0.162, + "neu": 0.803, + "neg": 0.035, + "_id": { + "$oid": "6711d575cd60fca157e5d27d" + } + }, + { + "text": "Clark is an amazing professor,hes so enthusiastic about what he teaches and his poetry. Cant wait to take his workshop in poetry course", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d27e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d575cd60fca157e5d280" + }, + "professor_name": "Hakan Pekcan", + "rating": 4.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "THE GOAT OF CCNY HE IS THE BEST PROFESSOR EVER!!!!!!!!!", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d281" + } + }, + { + "text": "What more can I say about Professor Pekcan, a gem of CCNY! Only 2 exams, some homeworks, and a final project that he allows you to go as easy as you want or as hard as possible that you should explain in 5 minutes tops. Absolutely amazing and always encourages us and tells us about his days working in the industry. I wish i could give him 10/5!", + "pos": 0.222, + "neu": 0.761, + "neg": 0.017, + "_id": { + "$oid": "6711d575cd60fca157e5d282" + } + }, + { + "text": "pekcan is the goat of EE at CCNY", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d283" + } + }, + { + "text": "THE BEST IN ALL OF EE!!!!!", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d284" + } + }, + { + "text": "THE BEST PROFESSOR IN ALL OF EE!!!!!!!!!!!!!!!!", + "pos": 0.472, + "neu": 0.528, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d285" + } + }, + { + "text": "Best EE professor hands down.", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d286" + } + }, + { + "text": "Nicest prof in EE and amazing curve. Easy class but important. 4 HW's, 1 Mid-term, 1 Final Project determine final grade. Make sure to do good in mid-term to get a good grade. Material is somewhat challenging but you do not need to memorize it all + cheat sheet. He will tell you what to focus on. I did all HW's, 62 on mid-term, and decent project", + "pos": 0.251, + "neu": 0.701, + "neg": 0.048, + "_id": { + "$oid": "6711d575cd60fca157e5d287" + } + }, + { + "text": "Had him for digital logic at NYIT. Fully expected to get a C or something, got B+ instead. Very generous curves. His lectures are not bad but it can get pretty confusing pretty quick (might just be the course itself though). He gives homework after every chapter. Overall, not bad, but I felt I had to do a lot of self-studying to stay on track.", + "pos": 0.213, + "neu": 0.757, + "neg": 0.03, + "_id": { + "$oid": "6711d575cd60fca157e5d288" + } + }, + { + "text": "He's a great professor and had him for EE 21000 back in the Fall 2020 Semester. His curves are amazing. He's really strict about cheating and strongly wanted to prevent it. I wish I got an A and that would have been amazing. Shouldn't have missed the 2nd exam and I wish I didn't have to take the makeup, therefore, I would have gotten an A.", + "pos": 0.267, + "neu": 0.686, + "neg": 0.047, + "_id": { + "$oid": "6711d575cd60fca157e5d289" + } + }, + { + "text": "One of the best professors in the EE department, I took EE344, EE459, and now EE472 (verilog) and I do not have a single thing I could complain about. He has a lot of experience in the industry and is very knowledgeable. Take him if you can, his classes get full really fast!", + "pos": 0.077, + "neu": 0.879, + "neg": 0.043, + "_id": { + "$oid": "6711d575cd60fca157e5d28a" + } + }, + { + "text": "material is heavy in the middle of the semester but manageable. He is very clear during the lectures and the slides pretty much explain everything. Make sure to pay extra attention to examples he writes down because they'll likely be on exam. Nice curve at the end. I got 88, 45, with 95 on Final. Do HW and attend lectures to help your grade", + "pos": 0.235, + "neu": 0.744, + "neg": 0.021, + "_id": { + "$oid": "6711d575cd60fca157e5d28b" + } + }, + { + "text": "He out of the ordinary professor. Actually cares about student's mental state of being in college and gives grades on curves. Wants to pass you", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d28c" + } + }, + { + "text": "If you have the opportunity to take his class definitely do. One of the best professors at CCNY", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d28d" + } + }, + { + "text": "Best Professor at CCNY, hands down. If u have a chance to get him, DOOOOO ITTT. You won't regret it.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d28e" + } + }, + { + "text": "This was a great class and its fun easy to understand the logic design of many devices such as k maps, binary, and flip flops. There was only 3 exams, which are fair and doable and we get 2 sheets of handwritten notes to use during the exam. He is very strict against cheating so just trust yourself and his curve is super generous. Good choice!", + "pos": 0.299, + "neu": 0.63, + "neg": 0.071, + "_id": { + "$oid": "6711d575cd60fca157e5d28f" + } + }, + { + "text": "Great choice for EE210 students. The material isnt hard to follow its just a bunch of ones and zeros and some common sense. Very nice professor, he curves so long as no one has similar answers. Hw 20%, two midterms 25% each and a final for 30%.", + "pos": 0.157, + "neu": 0.797, + "neg": 0.046, + "_id": { + "$oid": "6711d575cd60fca157e5d290" + } + }, + { + "text": "He's great prof, made me love the material so much that I wanna take more classes about it, esp if he's teaching. The material requires practice and the final really tests ur understanding of the material with a unique design question. submit the hw and then look over his answers, ask him questions and practice, and u'll get an A. recommended", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d291" + } + }, + { + "text": "He is awsome in class but struggled a bit online. Very proficient in the subject matter. Easy midterms to boost your score but be sure for a tough Final. Reasonable Homework; submission in time is a must. Approachable, Jolly, and enjoyable. Was lenient in the end for the final grade. I loved his class and behavior. I would certainly recommend.", + "pos": 0.393, + "neu": 0.552, + "neg": 0.056, + "_id": { + "$oid": "6711d575cd60fca157e5d292" + } + }, + { + "text": "His curves are so beautiful. Professor Pekcan is a charm he knows what he is doing. I wish there are more professors just like him. He definitely is the reason why I am in college and in EE.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d575cd60fca157e5d293" + } + }, + { + "text": "Hes the best EE prof at CCNY. He is as easy as taking the subway! Take him and you wont regret it. Get ready to work hard, dont think u can just show up to class and pass! Put in the effort and you will be fine!", + "pos": 0.256, + "neu": 0.719, + "neg": 0.025, + "_id": { + "$oid": "6711d575cd60fca157e5d294" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d576cd60fca157e5d296" + }, + "professor_name": "Seth Sebold", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "He's great ! I only took this class for credit, so I found lectures a bit boring. However, this class is not hard if you attend lectures. He gives a 3 page summary, a 6-8 page book review, a midterm and final. The written work was easy. The tests are not too bad if you go to lectures/take notes. The answers are in his slides and in the textbook.", + "pos": 0.177, + "neu": 0.794, + "neg": 0.029, + "_id": { + "$oid": "6711d576cd60fca157e5d297" + } + }, + { + "text": "I attended the summer, online class. Prof. Sebold is kind, very respectful, and patient. He made us feel comfortable asking any questions. His teaching style is super-organized, the PPs are easy to understand, and the tests are based on the PPs. Attend all classes and you'll get a good grade. I highly recommend him and will take him again.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d298" + } + }, + { + "text": "I learned a lot from Prof. Sebold. His lectures are interesting. You're graded on four exams (mcq, t/f, short answers) and one writing assignment. As long as you show up and study the PPT slides, it's an easy A.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d299" + } + }, + { + "text": "Professor Sebold was a great professor we started off as in class and had to transition to online classes. He is very polite, generous, and mindful although lectures are sometimes heavy if students are participating it is easier. I enjoyed taking this class and would take him again if I have the opportunity", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d29a" + } + }, + { + "text": "I took him in the summer of 2019. He was really nice, but his lectures were a little boring. He gives 4 exams, if you study from his power points you're good to go. He also give one 5-page paper, and it is to just summarize a research article. Provides extra credit work.", + "pos": 0.153, + "neu": 0.806, + "neg": 0.041, + "_id": { + "$oid": "6711d576cd60fca157e5d29b" + } + }, + { + "text": "Super chill and easy professor. Although it was a 300 level course I did not find it that difficult at all to pass. He gives you review sheets for each exam, 4 exams intotal. Study everything on the review sheets & you'll do just fine. The work consist of 4 exams and 1 paper, 6-7 pages. He's extremely understanding, a good professor overall.", + "pos": 0.163, + "neu": 0.803, + "neg": 0.035, + "_id": { + "$oid": "6711d576cd60fca157e5d29c" + } + }, + { + "text": "Seth is a generous professor in that he will not put anything on an exam that he does not discuss in class. Furthermore, throughout the semester there were numerous extra credit opportunities. If you study his slides and pay attention during his lectures I guarantee that you will get an A in the class. His slides include everything you need to know", + "pos": 0.152, + "neu": 0.827, + "neg": 0.02, + "_id": { + "$oid": "6711d576cd60fca157e5d29d" + } + }, + { + "text": "Professor Sebold was like your average easy professor, if you just sat down in class and listened then you would have been well off with an A. He gave mc exams that were really easy and gave out lots of opportunity for extra credit. He was kinda boring at times though, but I just sat and did other things on my laptop. Easy A. Take him!", + "pos": 0.203, + "neu": 0.777, + "neg": 0.02, + "_id": { + "$oid": "6711d576cd60fca157e5d29e" + } + }, + { + "text": "Horrible, horrible, professor! Very disorganized and unclear about what to expect on an exam. He takes simple things and overcomplicates things more than it needs to be. This class is supposed to be a fun, engaging, interesting class and with this professor it is nothing like that. Please stay away! The most painful class to take in the summer!", + "pos": 0.109, + "neu": 0.634, + "neg": 0.257, + "_id": { + "$oid": "6711d576cd60fca157e5d29f" + } + }, + { + "text": "Good professor. Sort answers and true and false worked as a great combination but changing exam format each time makes it harder. Textbook is not required. His slideshows and in class notes is what makes up his exam. Speaks too fast so better be attentive and fast. He is very understanding but he needs to let students be actively engage.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2a0" + } + }, + { + "text": "Wonderful professor. He tends to be repetitive, but his lectures are super helpful and at times, even better than the textbook. (Although the textbook, too, is great.) If you take detailed enough notes, textbook may not even be necessary. Four tests and one paper.", + "pos": 0.346, + "neu": 0.629, + "neg": 0.025, + "_id": { + "$oid": "6711d576cd60fca157e5d2a1" + } + }, + { + "text": "His tests are easy; usually, multiple choice, short answer, and true and false. However, be prepared to read the textbook, because his lectures are unclear, disorganized, and he tends to ramble about irrelevant things. I took the summer session, there were four tests and one paper.", + "pos": 0.144, + "neu": 0.777, + "neg": 0.08, + "_id": { + "$oid": "6711d576cd60fca157e5d2a2" + } + }, + { + "text": "A very enjoyable class. He encourages you even your answer to his question is incorrect. His essay exam makes you work hard, but he also works hard. He is a talented teacher.", + "pos": 0.222, + "neu": 0.705, + "neg": 0.073, + "_id": { + "$oid": "6711d576cd60fca157e5d2a3" + } + }, + { + "text": "Pro. Sebold is SUPER nice and attentive..he is a great listener and teacher. I think the reason I hated this class was the topic/material..it did not interest me so that is my own fault! He gives a review sheet for his two exams and the test is basically right off of them. There is also one research paper(9 pages) and one book review. Easy grader!", + "pos": 0.182, + "neu": 0.704, + "neg": 0.114, + "_id": { + "$oid": "6711d576cd60fca157e5d2a4" + } + }, + { + "text": "Great Professor! clearly states what is expected and explains all the material well. is also available if you have any questions.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2a5" + } + }, + { + "text": "He doesn't know what he is talking about.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2a6" + } + }, + { + "text": "He is very understanding and a really nice person. I would recommend that students go to class prepared (read the textbook) and participate. He answers students' questions and he's available for students. He takes 4 exams (do well in the first 3 so you don't take the final exam) and you write a paper on a topic he covered in class. Take his class!", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2a7" + } + }, + { + "text": "As long as you take notes during his lectures, you will do fine on his 4 tests. Most of it is multiple choice, few short answer and T/F questions. He usually uses textbook definitions and offers 1 writing assignment. Its an easy course if you attend his class regularly and take notes. Uses the textbook a lot so be sure to read.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2a8" + } + }, + { + "text": "Very Very Good Profesor. Take notes in class and you would be fine. Fair tests. Lets you know before hand what to study.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2a9" + } + }, + { + "text": "Easy A. read textbook and try to take notes. his voice is monotone and i kept falling asleep during class but i got an A. easy exams multiple choice, true and false and short answers.", + "pos": 0.227, + "neu": 0.742, + "neg": 0.031, + "_id": { + "$oid": "6711d576cd60fca157e5d2aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d576cd60fca157e5d2ac" + }, + "professor_name": "Michael Grossberg", + "rating": 3.5, + "department": "Computer Science department", + "comments": [ + { + "text": "VERY UNORGANIZED. The workload is a lot for his class, and the deadlines on the website don't match those on blackboard. There's no set deadline for homework(sometimes times due 1pm, 10am): don't expect them to be due 11:59pm on the due date. . His lectures honestly do not prepare you for the exams, you just need to practice a lot.", + "pos": 0.047, + "neu": 0.918, + "neg": 0.035, + "_id": { + "$oid": "6711d576cd60fca157e5d2ad" + } + }, + { + "text": "I loved his lectures!", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2ae" + } + }, + { + "text": "He could be better in his grading style.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2af" + } + }, + { + "text": "You will learn a LOT from his class. And i don't just mean textbook material but material that is going to be very useful in the real world. This has probably been my most helpful class I have taken at CCNY and a class I would recommend all CSC majors take. He really makes you work but it really is all worth it in the end.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2b0" + } + }, + { + "text": "Grade based on number of commits on bitbucket. Commit every single minor change you make for your assignments to bitbucket. Complete assignments properly. Concentrate on class properly to do better in exam. Exam will be very tricky and short answer oriented. Highly ambitious. But very good professor.", + "pos": 0.228, + "neu": 0.745, + "neg": 0.027, + "_id": { + "$oid": "6711d576cd60fca157e5d2b1" + } + }, + { + "text": "Make sure you finish all of your assignments properly. Other wise end of the semester you will be absolutely disappointed.", + "pos": 0.209, + "neu": 0.659, + "neg": 0.132, + "_id": { + "$oid": "6711d576cd60fca157e5d2b2" + } + }, + { + "text": "He is the best professor in CCNY computer science department. His courses are practical oriented and he teaches advanced technologies and I got a job after this class and thank you professor.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2b3" + } + }, + { + "text": "Important stuff in the class: Django, Flask, Python, HTML, CSS, Javascript, AJAX, unit tests, and acceptance tests. Most important thing in the class is project. Grade is based on code commits and assigned tasks through bitbucket. His expectation is scrum to post >10 issues/week and devs to have >10 commits/week. CODING IS MANDATORY(0 commits = F).", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2b4" + } + }, + { + "text": "Very useful class for CS majors. It's more work than most will expect but you will learn a lot. The most important part of your grade is the project and the grade is based on code commits and tasks assigned through Bitbucket (0 commits = F). Weak programmers should choose to be a scrum or product owner. Devs are expected to have >20 commits/day", + "pos": 0.101, + "neu": 0.844, + "neg": 0.055, + "_id": { + "$oid": "6711d576cd60fca157e5d2b5" + } + }, + { + "text": "Unorganized. Hard to keep up with the requirements of the class because professor changes requirements all the time. Requires a lot, teaches very little, so you have to google most of what you learn. But then why would you need to pay $$ if you end up educating yourself via google?", + "pos": 0.0, + "neu": 0.946, + "neg": 0.054, + "_id": { + "$oid": "6711d576cd60fca157e5d2b6" + } + }, + { + "text": "I had taken his course.He is amazing professor.This course helped me in all way.It helped me to develop sound technical skill,communication skill, boost confidence and helped me to get Internship.covers recent technologies and process ths followed in companies which will help you.take my words one must take his course.I enjoyed his course", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2b7" + } + }, + { + "text": "Does not prepares ahead of lecture in the Masters class. Very unorganized class lectures and very unfriendly class atmosphere", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d576cd60fca157e5d2b8" + } + }, + { + "text": "The materials learned in this class is more valuable than anything you will learn in any other engineering classes. It is true that the amount of materials that are covered are very large and intimidating in number. However, that is web development in a nutshell. He attempts to expose you to as many web technologies as time permits. Thank him!", + "pos": 0.149, + "neu": 0.782, + "neg": 0.069, + "_id": { + "$oid": "6711d576cd60fca157e5d2b9" + } + }, + { + "text": "This is a challenging professor. A strong programming background is needed to pass his class.If you are not a good programmer, stay away from this professor. He is going to turture the students every week asking the status of the project. Some of my class mates ended up with high blood pressure after taking this guy. Good luck", + "pos": 0.16, + "neu": 0.771, + "neg": 0.068, + "_id": { + "$oid": "6711d576cd60fca157e5d2ba" + } + }, + { + "text": "OO Des & Soft Engr, Good course , great teacher, very passionate about python and the process of creating a great project. If you want to learn and prepare your self for the real world, then take this class. Note do well you have to know how to program.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2bb" + } + }, + { + "text": "Stay away from this professor. He is arrogant, selfish, a big show-off. He can't even teach properly. He may know he stuff but he really shouldn't be teaching. He doesn't care about you or any of your problems with this course, nor will he even try to help. To much pride, I don't know over what. He's to proud. These are the types that you just have to avoid. Do yourself a favor and stay away from this guy.", + "pos": 0.146, + "neu": 0.712, + "neg": 0.142, + "_id": { + "$oid": "6711d576cd60fca157e5d2bc" + } + }, + { + "text": "My section learned Python (close to natural language). I found it easy to pick up. The secret to programming is... programming; i.e. practice. Do the homework, do textbook examples, and most of all trial and error. Grossberg is quarky, but straight fwd. Final was mad hard, but he grades the class on a curve.", + "pos": 0.098, + "neu": 0.777, + "neg": 0.125, + "_id": { + "$oid": "6711d576cd60fca157e5d2bd" + } + }, + { + "text": "Many students couldn't keep up with the large ammount of material covered.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d576cd60fca157e5d2be" + } + }, + { + "text": "He is a very smart guy. Knows programming like the back of his hand. Tests are fair. Definition and bug finder part of the test are easy points. Then the programming part is where it gets hard. You need to be a fast programmer as in read the problem, know how to tackle the problem and write the code fast. Curve applied to final grade.", + "pos": 0.179, + "neu": 0.734, + "neg": 0.088, + "_id": { + "$oid": "6711d576cd60fca157e5d2bf" + } + }, + { + "text": "Grossberg is a guy who knows what he's talking about. He knows the material so well but sometimes may have a hard time conveying it or assumes you know more than actually do. Great if you ask him a technical question, he'll always give you a good answer. He gives long tests, so you need to know your stuff in order to finish it all.", + "pos": 0.154, + "neu": 0.825, + "neg": 0.022, + "_id": { + "$oid": "6711d576cd60fca157e5d2c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d577cd60fca157e5d2c2" + }, + "professor_name": "Daniel Beliavsky", + "rating": 4.2, + "department": "Music department", + "comments": [ + { + "text": "Very easy class. Take him only graded by online quizzes and one group proj at the end of sem", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2c3" + } + }, + { + "text": "Dr.Beliavsky is very understanding professor.Literally easy to get an A.There were some online quizzes, short stories of music (discussions) and group presentation. Just do your best then you will be doing great. Overall, this class is very fun and energetic.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2c4" + } + }, + { + "text": "I feel like if you do the work you will see the results in this class. Your grade relies upon class participation matters, attendance matters, a few quizzes, and a group presentation. His lectures were okay, and he tried to make them engaging so get involved and watch the movies he talks about. Overall, it was a good class and not too demanding.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2c5" + } + }, + { + "text": "He was a decent professor. Don't stress about this class. Your graded on 6 quizzes (which are online and just have to watch the videos to do it), group discussions about a book, and a midterm/final presentation. If you do the work and stay active in class, you'll do fine. Don't try to sleep or use your phones in class, he doesn't like that.", + "pos": 0.099, + "neu": 0.87, + "neg": 0.031, + "_id": { + "$oid": "6711d577cd60fca157e5d2c6" + } + }, + { + "text": "There isnt any papers or anything for this course, grades are mostly just based on group work, online quiz (which isnt too difficult) and chapter discussions.", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2c7" + } + }, + { + "text": "To be honest too much work for a music elective. Try to find an easier professor. We were graded on six quizzes worth 55 percent and 35 percent discussion post and 10 percent final project. The quizzes were annoying so was the discussion post. For real avoid!", + "pos": 0.15, + "neu": 0.761, + "neg": 0.089, + "_id": { + "$oid": "6711d577cd60fca157e5d2c8" + } + }, + { + "text": "A great understanding professor that enjoys what he does. He makes you enjoy the class with his enthusiasm. During in person classes, he didn't assign much homework but did give a lot of notes. When we switched to online he gave more homework which was just quizzes based on videos. This class is honestly better in person, easy A if you do the work.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2c9" + } + }, + { + "text": "Okay so this class is super boring. You don't come in thinking you'll learn the things you do. It's half music history and half music theory. Know that before signing up for this course. Quizzes are strictly based on study guides so study those hard!! If you do well on both quizzes, you'll most likely get an A.", + "pos": 0.13, + "neu": 0.81, + "neg": 0.061, + "_id": { + "$oid": "6711d577cd60fca157e5d2ca" + } + }, + { + "text": "very good professor. has clear grading criteria. attendance mandatory. study off of the review sheets for the exams. very easy class", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2cb" + } + }, + { + "text": "His test are really hard. Gives review sheets but not even on the exam. His class boring and attendance mandatory.", + "pos": 0.064, + "neu": 0.747, + "neg": 0.189, + "_id": { + "$oid": "6711d577cd60fca157e5d2cc" + } + }, + { + "text": "He's great! Very passionate, great lectures, funny. No textbook and doesn't post grades on BB. Puts up some notes on BB. Tests are tough but there's extra credit. TAKE GOOD NOTES & COME TO CLASS or else you miss a lot and the test will be harder for you. 1 group presentation & concert, very little hw. He is LECTURE HEAVY! still good prof!", + "pos": 0.28, + "neu": 0.669, + "neg": 0.051, + "_id": { + "$oid": "6711d577cd60fca157e5d2cd" + } + }, + { + "text": "If you read any bad comments on him, just know that whoever wrote them is salty. He is very involved, charismatic and hand writes notes for you to take. His dad jokes are endless to lighten the mood of the class, and he isn't hard on you at all. His passion about music makes you want to learn more, too. This is easy to pass.", + "pos": 0.182, + "neu": 0.771, + "neg": 0.047, + "_id": { + "$oid": "6711d577cd60fca157e5d2ce" + } + }, + { + "text": "He is so passionate about what he does and he knows his stuff. He learns your name and he's not into homework or quizzes. There's only an exam and group project and you have to go to a concert. Puts up review vocab on BB. If you pay attention to his lectures, you will learn a lot. This man is a genius and it's an honor to be in his class.", + "pos": 0.098, + "neu": 0.884, + "neg": 0.018, + "_id": { + "$oid": "6711d577cd60fca157e5d2cf" + } + }, + { + "text": "Took this class cause I thought it'd be a not too difficult intro to music class. But he goes into bible stories(bleh), sculptures, paintings and how all of this is connected to music's development. Gotta do a lot of memorization of terms. Doesn't give tests but detailed quizzes that will ruin you. Got an A- in ALL my other classes this semester.", + "pos": 0.023, + "neu": 0.899, + "neg": 0.078, + "_id": { + "$oid": "6711d577cd60fca157e5d2d0" + } + }, + { + "text": "Hes a great and understanding professor, he doesnt want none of his students to failed. Just come to class, be respectful and stay off your phones. Hes funny and caring professor. Pay attention to his lectures and you will do fine in his quizzes.", + "pos": 0.264, + "neu": 0.632, + "neg": 0.104, + "_id": { + "$oid": "6711d577cd60fca157e5d2d1" + } + }, + { + "text": "Super nice guy. Need to go to every lecture and memorize material that you'll never use to pass his \"quiz\" which should be called an exam as that's what you grade mostly depends on. But, he gives plenty extra credit so you shouldn't complain. Other than that he's super friendly and open to talk to.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2d2" + } + }, + { + "text": "His lectures werent the best but interesting at times. Tests were very straightforward and he gave review sheets to help. Memorization of songs wasnt that hard because weve heard them in movies or other stuff before. Overall great teacher and when he plays the piano its soooo nice.", + "pos": 0.321, + "neu": 0.645, + "neg": 0.034, + "_id": { + "$oid": "6711d577cd60fca157e5d2d3" + } + }, + { + "text": "Nice person, but very strict. I don't know who said he's against tests, because he's not, that's all he gives! He thinks that everyone is there to become future musicians, but no one is except for 1. His lectures are extremely boring & makes u feel like ur in a 500 level course. Way too hard for a beginning course. U have to memorize to pass tests", + "pos": 0.068, + "neu": 0.824, + "neg": 0.107, + "_id": { + "$oid": "6711d577cd60fca157e5d2d4" + } + }, + { + "text": "The lectures were so boring. Funny guy but such a tough grader for an introduction class.", + "pos": 0.111, + "neu": 0.69, + "neg": 0.199, + "_id": { + "$oid": "6711d577cd60fca157e5d2d5" + } + }, + { + "text": "Professional. Intellectual. Genius. Talks about the history of music alongside the theory. He is passionate about and is expert in 'C'lassical and 'c'lassical stuff. Truly an honor to take classes with him.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d577cd60fca157e5d2d8" + }, + "professor_name": "Rodrigo Sanchez-Camus", + "rating": 4.4, + "department": "Political Science department", + "comments": [ + { + "text": "One of the best professor anyone could ever have!! Wish he taught more classes at CCNY", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2d9" + } + }, + { + "text": "ONE OF THE BEST CLASSES I'VE TAKEN!! AMAZING", + "pos": 0.589, + "neu": 0.411, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2da" + } + }, + { + "text": "The best one in poli science dep. He cares a lot about his students!", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2db" + } + }, + { + "text": "Easiest A you will ever get", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2dc" + } + }, + { + "text": "Loved the structure of the class. Lectures are perfectly balancing textbook discussion, personal experience, and student-teacher interaction. Weekly writing assignments requires you truly show your knowledge. Really have to study for the exams though! Overall genuinely interesting class, and Professor Camus cares for his students!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2dd" + } + }, + { + "text": "He's a really chill professor, as long as you do the weekly assignment (short and easy) and do your best on the 2 tests in the whole semester (yes, really!), you'll be fine. He makes the lectures interesting and it honestly can't get any better than this.", + "pos": 0.296, + "neu": 0.664, + "neg": 0.04, + "_id": { + "$oid": "6711d577cd60fca157e5d2de" + } + }, + { + "text": "If you want to be a lawyer, take it. If you don't, still take it b/c learning about the US legal system is important knowledge to everyone. While he wants more people to enter the legal profession, he's also painfully honest about the pitfalls about the legal trade. His grading Criteria: 2 quizzes, 2 briefs, and 1 open-notes final so it's an easy A", + "pos": 0.191, + "neu": 0.762, + "neg": 0.046, + "_id": { + "$oid": "6711d577cd60fca157e5d2df" + } + }, + { + "text": "Prof. Sanchez-Camus is a very funny guy. This guy is a ccny alumni and goes to Columbia Law School. He knows what he is teaching and he knows how to teach laws to people. Don't skip his class although he does not take attendance, because all the test answers are literally told by him. Two quiz, Two Briefs, and One Open-notes Final. It is easy an A.", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2e0" + } + }, + { + "text": "Professor Sanchez Camus is passionate, enthusiastic, and engaging every time he gives his lectures. I'm always excited to learn more about the topic and become an active learner. Thank you for making a positive difference in my academic career.", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2e1" + } + }, + { + "text": "He is an ok professor, but he does not care about us, his students. Exams were not connected to the readings that he assigned, but they were related to the class discussions.", + "pos": 0.046, + "neu": 0.856, + "neg": 0.098, + "_id": { + "$oid": "6711d577cd60fca157e5d2e2" + } + }, + { + "text": "This is a really good professor. It is a shame he does not teach any other classes at City College. Do the readings, participate in class, and you will be good.", + "pos": 0.164, + "neu": 0.753, + "neg": 0.083, + "_id": { + "$oid": "6711d577cd60fca157e5d2e3" + } + }, + { + "text": "Excellent professor. Clear about what he expects from his students and is a fair grader. Work load composed of various readings, two quizzes, two case briefs, and an open-note final exam. He even offers extra credit options. He is vastly knowledgeable about most aspects of law and politics, and will even offer legal advice. Chill, cool guy to boot.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2e4" + } + }, + { + "text": "Not sure what the other reviewers were saying, I loved professor Rodrigo. He's great and really tries to help everyone. Definitely take his class, you won't regret it.", + "pos": 0.4, + "neu": 0.551, + "neg": 0.049, + "_id": { + "$oid": "6711d577cd60fca157e5d2e5" + } + }, + { + "text": "He is an ok prof. Assigns readings, jokes around and does not care about students (hes a lawyer after all, and makes much more outside the CCNY.) Beware that the exams will be heavily based on your class discussion not on your book material! Well, good luck to you if you are about to take him this fall 2018 :c", + "pos": 0.175, + "neu": 0.744, + "neg": 0.08, + "_id": { + "$oid": "6711d577cd60fca157e5d2e6" + } + }, + { + "text": "This class was insane. His exams are not connected to his lectures or the book he assigns, so You will not be able to predict what he puts into the exams. He is very knowledgeable, but hey, take him if you love to risk.", + "pos": 0.113, + "neu": 0.799, + "neg": 0.088, + "_id": { + "$oid": "6711d577cd60fca157e5d2e7" + } + }, + { + "text": "Nah, hes not the best one in poli science dep. He doesnt care about his students at all.", + "pos": 0.0, + "neu": 0.67, + "neg": 0.33, + "_id": { + "$oid": "6711d577cd60fca157e5d2e8" + } + }, + { + "text": "Professor gets straight to the point and emphasizes on the topics. No review for exams, but if you pay attention in class and make notes, exams will be easy. It is shameful that he does not offer other classes within CCNY, because I would gladly take his courses again. Take this class, you will not regret it.", + "pos": 0.165, + "neu": 0.726, + "neg": 0.109, + "_id": { + "$oid": "6711d577cd60fca157e5d2e9" + } + }, + { + "text": "Professor Sanchez-Camus is absolutely terrific. Great person and has great experience. A CCNY and Columbia Law grad himself, he taught me a lot about my own desire to enter the legal profession. Take his class! You will learn something.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2ea" + } + }, + { + "text": "The best professor anyone could ever have. Very respectful and funny. Easy to get along with.", + "pos": 0.53, + "neu": 0.47, + "neg": 0.0, + "_id": { + "$oid": "6711d577cd60fca157e5d2eb" + } + }, + { + "text": "One of the best professors, he's passionate about what he teaches and what he does for a leaving. Let's you speak your mind even if he doesn't agree with you, just be sure to back up your idea!", + "pos": 0.22, + "neu": 0.734, + "neg": 0.046, + "_id": { + "$oid": "6711d577cd60fca157e5d2ec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d578cd60fca157e5d2ee" + }, + "professor_name": "Huseyin Cekirge", + "rating": 2.6, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Lab reports are super annoying, he teaches but you will only understand if you are in the very first row. The easiest class you'll ever take and the final is based solely on the hw. I couldn't imagine taking a real class with him but this doesn't really affect anything so just take the A.", + "pos": 0.103, + "neu": 0.867, + "neg": 0.031, + "_id": { + "$oid": "6711d578cd60fca157e5d2ef" + } + }, + { + "text": "Just ignore every other review. He aint good. Lectures are horrible, and you wont learn unless you teach yourself. The only reason people like him is cuz his classes are super easy to pass. Just submit all the assignments. Dont even need to attend his lectures. You should learn on your own because its unfortunate that he teaches fundamental classes", + "pos": 0.126, + "neu": 0.719, + "neg": 0.155, + "_id": { + "$oid": "6711d578cd60fca157e5d2f0" + } + }, + { + "text": "Easy class, our lectures are mainly just him putting on videos on the screen. He assigns lab reports every week and usually gives full credit. He accepts late homework which is a plus. However, the directions are very vague. I got a 98 on the final and I didn't pay attention in class. We were able to use our laptops during the test.", + "pos": 0.132, + "neu": 0.843, + "neg": 0.025, + "_id": { + "$oid": "6711d578cd60fca157e5d2f1" + } + }, + { + "text": "he doesn't give 2 shts about anything. terrible lecturer. He talks like Joe Biden without a script. If you want to learn don't take this class/course. He does not have a single sentence of instruction for homework. He gives you results and wants a lab report in return (no context in the lab other than a table).\nEasy 100 prof\nyou will not learn here", + "pos": 0.113, + "neu": 0.844, + "neg": 0.044, + "_id": { + "$oid": "6711d578cd60fca157e5d2f2" + } + }, + { + "text": "Annoying hws for 1 credit course, but usually gives full credit. Accent is hard to understand but gives you enough material to get by. Final exam is kind of easy as long as you somewhat paid attention throughout his lectures. Doesn't even provide a syllabus or introduction, literally did not even show up for first lecture. Everything done by email.", + "pos": 0.128, + "neu": 0.82, + "neg": 0.051, + "_id": { + "$oid": "6711d578cd60fca157e5d2f3" + } + }, + { + "text": "World class professor. His lectures are crazy good so make sure to attend them - gives minimal hw and quizzes but his exams are crazy difficult. You cannot solve even a single problem, even with digital assistance. Highly recommend nonetheless. From experience, I can say that he is the best at teaching in all of CCNY.", + "pos": 0.179, + "neu": 0.638, + "neg": 0.183, + "_id": { + "$oid": "6711d578cd60fca157e5d2f4" + } + }, + { + "text": "Great professor. Take him before is too late", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d2f5" + } + }, + { + "text": "A lot of assignments to submit. Everything is by email so youre constantly shuffling around. Used material from like 4 different textbooks during the semester. Submit the assignments and you can do good but its hard to learn since the lectures arent anything special. I do appreciate him using zoom. A big savior for busy students.", + "pos": 0.116, + "neu": 0.813, + "neg": 0.072, + "_id": { + "$oid": "6711d578cd60fca157e5d2f6" + } + }, + { + "text": "The professor made me feel prepared for ENGR but there are long reports to do for a 101 course but it's nothing crazy.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d2f7" + } + }, + { + "text": "Cekirge is a legend. He doesn't teach very well, instead he sends you to watch YouTube videos of other people teaching the subject. He doesn't always understand the questions being asked. Terrible drawings to demonstrate cycles, which looks like chicken scratch. He assigns a lot of homework and quizzes straight from the book.", + "pos": 0.075, + "neu": 0.837, + "neg": 0.088, + "_id": { + "$oid": "6711d578cd60fca157e5d2f8" + } + }, + { + "text": "its safe to say that after taking this guy, your foundation of mechanics will absolutely atrociously undeniably TERRIBLE. at least make sure to teach yourself some of the material before you get into dynamics because you definitely wont be learning it here.", + "pos": 0.196, + "neu": 0.724, + "neg": 0.08, + "_id": { + "$oid": "6711d578cd60fca157e5d2f9" + } + }, + { + "text": "hes got an accent. the lectures are very poor. hes disorganized. lots of homework. however, through all of that, you will still pass. hes a legend for the sole purpose of making the class passable. other than that, hes pretty much awful at everything else lol. if you want to learn, dont take him. if you just want to pass, take him. very simple.", + "pos": 0.116, + "neu": 0.766, + "neg": 0.119, + "_id": { + "$oid": "6711d578cd60fca157e5d2fa" + } + }, + { + "text": "Absolute Legend. CCNY profs be playin checkers, but Cekirge is out here playin chess. You'll never catch this man lackin. Definitely one if not the most hardest in the ME game right now. He really cares about his students so put some respeck on his name. After he taught me that Bernoulli eqn, I finally took out the last of the opps. Obla Bang Bang", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d2fb" + } + }, + { + "text": "I absolutely learned nothing from him. I am taking Dynamics in summer so he is the only professor. His diagram is messy on the blackboard and does not speak clearly. You are better off studying yourself than taking the lecture if you have him. He is clearly unprepared when he shows up for lectures. I am going to be underprepared for later classes.", + "pos": 0.109, + "neu": 0.823, + "neg": 0.068, + "_id": { + "$oid": "6711d578cd60fca157e5d2fc" + } + }, + { + "text": "Doesn't prepare you for later classes. Never did Navier Stokes w/ us. It's more like a light physics class w/ fluid-themed problems. Not a lot about fluids, really. Bad teaching. Reads from textbook PDF, erratically, I might add. Doesn't expect much of you though. You can pass the tests if you can do the HW. But again, you're underprepared later.", + "pos": 0.03, + "neu": 0.903, + "neg": 0.067, + "_id": { + "$oid": "6711d578cd60fca157e5d2fd" + } + }, + { + "text": "He just reads off the PDF and barely writes anything down because of that I learned almost NOTHING in the class. His tests, quizzes, and homework are really easy. You need to self study for the class though. If you want to pass easily take him. If you want to learn the material, I don't recommend taking him.", + "pos": 0.129, + "neu": 0.837, + "neg": 0.033, + "_id": { + "$oid": "6711d578cd60fca157e5d2fe" + } + }, + { + "text": "Cekirge is lazy and disorganized af. When he writes on the board he is so messy that it is hard to follow what he is drawing (free body diagrams is everything in mechanics and he draws them horribly) . He is never prepare about what he is going to teach and just opens the book on the laptop and reas from it. You have tonstudy everything by yourself", + "pos": 0.042, + "neu": 0.794, + "neg": 0.163, + "_id": { + "$oid": "6711d578cd60fca157e5d2ff" + } + }, + { + "text": "Prof. Cekirge is an awesome teacher. I didn't learn too much from class but I managed to expand my understanding of engineering. The tests are doable and you will get a guaranteed good grade. This man deserves some respect and if you give it to him, you will be rewarded at the end.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d300" + } + }, + { + "text": "Cekirge is a savior angel at CCNY. He gives hope to students who thought they lost all hope. He heals your soul. Shows examples from the book, exams are almost identical to these examples.", + "pos": 0.148, + "neu": 0.793, + "neg": 0.059, + "_id": { + "$oid": "6711d578cd60fca157e5d301" + } + }, + { + "text": "If you are ever blessed with the opportunity of taking a class with this wonderful man, take it, cherish it and enjoy.", + "pos": 0.498, + "neu": 0.502, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d302" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d578cd60fca157e5d304" + }, + "professor_name": "Primoz Ravbar", + "rating": 4.1, + "department": "Biology department", + "comments": [ + { + "text": "Primoz was a great help in my bio 207 class, led solid discussion sections with fair grading", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d305" + } + }, + { + "text": "He's really cool, though he takes some getting use to. He knows a lot about Bio and can explain things clearly if you know what to ask. Lab gets pretty boring with him, but he grades really fairly, and doesn't really care what youre doing as long as youre not distracting everyone. && he lets you just call him Primoz. Easy lab points", + "pos": 0.163, + "neu": 0.764, + "neg": 0.074, + "_id": { + "$oid": "6711d578cd60fca157e5d306" + } + }, + { + "text": "Very intelligent with a good sense of humor. Answers questions with a lot of detail, integrating real life examples that make the class interesting.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d307" + } + }, + { + "text": "Awesome lab instructor. Very helpful, gives great examples to relate to the subjects and is also a very funny guy. Moreover he is very easy to speak to and ask questions. The best lab instructor I've ever had and one of the best teachers at CCNY period.", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d308" + } + }, + { + "text": "He is no doubt the best Lab Instructor at CCNY.", + "pos": 0.441, + "neu": 0.559, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d309" + } + }, + { + "text": "He's very helpful but not always clear. Overall though, very good and approachable.", + "pos": 0.332, + "neu": 0.523, + "neg": 0.145, + "_id": { + "$oid": "6711d578cd60fca157e5d30a" + } + }, + { + "text": "he does a good job in explaining what we learned in lecture. he also helps with the labs when I am having trouble with something.", + "pos": 0.182, + "neu": 0.728, + "neg": 0.089, + "_id": { + "$oid": "6711d578cd60fca157e5d30b" + } + }, + { + "text": "i really like this guy. he is funny, engaging, and most of all, thoroughly explains the topic. if i have any questions, i am not afraid to ask him, because he always responds, and does not make me feel stupid for asking, like some other lab teachers do. thumbs up for primoz!!!", + "pos": 0.185, + "neu": 0.76, + "neg": 0.055, + "_id": { + "$oid": "6711d578cd60fca157e5d30c" + } + }, + { + "text": "He seems very knowledgable on the subject material. However he seems to get flustered a little when he is trying to explain things to the class.", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d578cd60fca157e5d30d" + } + }, + { + "text": "hes not clear i get lost in his class he needs to lighten up", + "pos": 0.0, + "neu": 0.728, + "neg": 0.272, + "_id": { + "$oid": "6711d578cd60fca157e5d30e" + } + }, + { + "text": "Primoz is helpful with answering questions...however, his teaching skills don't match up. helpful hint: pay attention to his diagrams they tend to help understand the concepts.", + "pos": 0.176, + "neu": 0.704, + "neg": 0.119, + "_id": { + "$oid": "6711d578cd60fca157e5d30f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d578cd60fca157e5d310" + } + }, + { + "text": "Great teacher! The guy knows his stuff, makes good analogies that help u totally understand the material. Someone here mentioned accent. Well, yeah, there's an accnet. But it's not stupid. And he speaks better English than many \"Americans.\"", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d311" + } + }, + { + "text": "He's very helpful.", + "pos": 0.607, + "neu": 0.393, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d312" + } + }, + { + "text": "good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d313" + } + }, + { + "text": "very good.", + "pos": 0.762, + "neu": 0.238, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d314" + } + }, + { + "text": "One of the easiest, very helpful explanations, he is a better lecture professor than any of the others out there. Would highly recommended :)", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d315" + } + }, + { + "text": "obviously knows what he is talking about and his lectures provide clarity on difficult concepts, clever and funny, definitely recommend", + "pos": 0.455, + "neu": 0.462, + "neg": 0.083, + "_id": { + "$oid": "6711d578cd60fca157e5d316" + } + }, + { + "text": "He's really helpful. Also, sometimes his reviews of lecture material are more clear than the lecture itself.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d578cd60fca157e5d317" + } + }, + { + "text": "Soooo easy. Even if you miss a quiz hes willing to help out. The quizzes are easy too just read the handouts.", + "pos": 0.302, + "neu": 0.641, + "neg": 0.057, + "_id": { + "$oid": "6711d578cd60fca157e5d318" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d579cd60fca157e5d31a" + }, + "professor_name": "Liu Timmy Chi", + "rating": 2.5, + "department": "Computer Science department", + "comments": [ + { + "text": "You'll do well in this class if you do your homework, pay attention in lecture, and RESEARCH. Quizzes are 35%. Study the slides and think of scenarios terms can be applied in... not that hard. The homework is 5% but they prepare you for those exams & serve as interview prep for comp sci students. Extra credit provided. Study DFS/BFS at the end!!!!", + "pos": 0.108, + "neu": 0.875, + "neg": 0.018, + "_id": { + "$oid": "6711d579cd60fca157e5d31b" + } + }, + { + "text": "He makes you dislike CS; he thinks you should already know everything. He reads off of slides (have access to) and writes down code on his computer (doesn't give you but helps with hw). He FOLLOWS the textbook. If you miss something, use it. Assignments are similar to textbook but bit harder. No feedback. No test files. Exams are like lectures.", + "pos": 0.127, + "neu": 0.78, + "neg": 0.092, + "_id": { + "$oid": "6711d579cd60fca157e5d31c" + } + }, + { + "text": "Had him for recitation on CSC 104, he is a great guy and a really good professor. That's it if you actually try, if you don't then don't expect him to love you... At a first glance he seems rude and curt, but once you actually spend some time together you'll see he isn't like that at all. Would recommend 10/10.", + "pos": 0.15, + "neu": 0.784, + "neg": 0.066, + "_id": { + "$oid": "6711d579cd60fca157e5d31d" + } + }, + { + "text": "He's an awesome professor. He helped me out a ton during the office hours. If your grade is struggling, I highly suggest going to his office hours. He offers a lot of extra credit that you need to take advantage of from the start. The class itself is straightforward and fairly simple if you work hard and do the homework.", + "pos": 0.128, + "neu": 0.81, + "neg": 0.062, + "_id": { + "$oid": "6711d579cd60fca157e5d31e" + } + }, + { + "text": "He is ok prof for csc220, he teaches very fast. We have four projects, one midterm and one final this term. Projects are not that hard but require many times to finish. They are good practices but they dont worth points. Midterm and Final are relatively easy. He prepares you for midterm and final and they worth 85% of your grade.", + "pos": 0.183, + "neu": 0.788, + "neg": 0.029, + "_id": { + "$oid": "6711d579cd60fca157e5d31f" + } + }, + { + "text": "Really useless Professor, had him for recitation . He doesn't really care about his students . If you ask him for any help he will hardly answer your question. You'd rather not ask him a question. Has a bad attitude aswell.", + "pos": 0.055, + "neu": 0.753, + "neg": 0.192, + "_id": { + "$oid": "6711d579cd60fca157e5d320" + } + }, + { + "text": "Took him for recitation in CSC103. Had a quiz every week. As long as you studied the lecture notes and paid attention the quizzes aren't anything difficult, they are very fair. Very helpful on the projects and answers any questions you have about the class. Pretty cool guy too.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d321" + } + }, + { + "text": "He should not be a prof. He gave way too hard homework and quizzes for an intro class.", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d579cd60fca157e5d322" + } + }, + { + "text": "way too much work. at least 5+ questions each week. need to do a big project at the end.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d323" + } + }, + { + "text": "lot of works. tough homework. tough grader.", + "pos": 0.0, + "neu": 0.625, + "neg": 0.375, + "_id": { + "$oid": "6711d579cd60fca157e5d324" + } + }, + { + "text": "Tough Quizzes. Tough Grader. Assigns lots of homeworks. He's available for office hours. We had to make programs that weren't meant for an introductory class like 10200. Those assignments were very tough. Prof. gave us so much work that as if it was the only class we were taking. Overall, it was a tough class.", + "pos": 0.043, + "neu": 0.85, + "neg": 0.107, + "_id": { + "$oid": "6711d579cd60fca157e5d325" + } + }, + { + "text": "dont take him", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d326" + } + }, + { + "text": "I spent insane amount of time doing homeworks. Hes helpful but assigned a lot of hw.", + "pos": 0.107, + "neu": 0.789, + "neg": 0.104, + "_id": { + "$oid": "6711d579cd60fca157e5d327" + } + }, + { + "text": "A lot of works. Problems due every week. Go too fast in lecture.", + "pos": 0.0, + "neu": 0.816, + "neg": 0.184, + "_id": { + "$oid": "6711d579cd60fca157e5d328" + } + }, + { + "text": "Dear professor, there is a section for you to comment on please do not continue to rate yourself 5 out of 5 pretending to be a student. Instead of giving yourself 5/5 how about you learn how to teach and give students more chances to practice the concepts and maybe then you wont have to.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d329" + } + }, + { + "text": "the majority is giving this professor a 1/5. Meaning this professor is TERRIBLE do not take", + "pos": 0.119, + "neu": 0.692, + "neg": 0.189, + "_id": { + "$oid": "6711d579cd60fca157e5d32a" + } + }, + { + "text": "Prof. Liu is not bad at all! It will take time to understand the material but you put in the effort, you will get the grade you deserve. Office hours are a must, that's what the hours are for! Utilize the textbook at times and of course prepare at your own time. Google if you must but don't copy off of someone! Be creative, and be logical!", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d32b" + } + }, + { + "text": "This professor is not bad as the other said. He expects students read and search for the information/lecture before and after class. Always available during office hours, just don't copy the homework from your classmate, try your best to do it. He will TAKE OFF points for a non-compilable program, but I know many professors give you a zero", + "pos": 0.074, + "neu": 0.926, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d32c" + } + }, + { + "text": "Helpful professor and wants students to learn. He is always willing to help students if you're willing to as well.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d32d" + } + }, + { + "text": "Weekly assignments have 6+ questions each. Expect you to finished in a week.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d32e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d579cd60fca157e5d330" + }, + "professor_name": "Rebecca Minnich", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "A big booklet of reading that you'll need to complete. It's okay if you don't do the reading but try to because sometimes there are in-class writing assignments. She's not a tough grader so she'll help you and give you feedback on your work if needed. Participation matters, I think I went the whole semester with her still not knowing my name.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d331" + } + }, + { + "text": "Professor Minnich is good person. Her class is very easy. She will give you course reader for the semester and respond to the course reader that you for the class. Her class feel like high school. Very easy grader and clear on her feedback. She like when study participants in her class.I would take her class again", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d332" + } + }, + { + "text": "PROFESSOR MINNICH IS SUCH A GOOD PROFESSOR WE DONT HAVE TO DO A LOT OF PAPERS, JUST READING RESPONSES FROM HER COURSE BOOK WHICH SHE PROVIDES FOR US. SHE'S A REALLY FAIR GRADER AND HER WORK ISN'T HARD AT ALL, JUST SHOW UP, PARTICIPATE A FEW TIMES DO THE HW AND YOU'LL PASS!!!", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d333" + } + }, + { + "text": "I liked the readings. She is a fair grader. If you read, which you're supposed to do, you will be fine.\nBut you should also participate, she likes that. I would take her again.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d334" + } + }, + { + "text": "We had 3 main papers that were worth a big part of the grade. There were smaller assignments that helped gather the writing material for it though. The textbook They Say I Say was given as a pdf too (so free). If you show up to her lectures, and do the assignments on time, her class is p light work.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d335" + } + }, + { + "text": "Gave us assigned readings from her course reader, and had to write papers based on those. Had Digital Portfolio at the end, where revision is allowed. Gives okay-ish feedbacks when necessary on the paper, or when asked. She is really nice and easygoing, not really difficult. Was very pleased with her class.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d336" + } + }, + { + "text": "Interesting class and easy quizzes. Take notes on everything in the lecture, some are on her exams and quizzes. Try to read all of the readings and sparksnote after. There are 1 midterm, 1 final and 2 essays. She's not a tough grader. The essays are easy to do. She tells you what's on the exam so as long you study, you can do very well.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d337" + } + }, + { + "text": "I really liked taking this class. I learned a lot. The class is not boring at all she makes the lecture interesting. The quizzes are easy as long as you took notes. Two papers, midterm and final. She's not a tough grader and her feedbacks are useful.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d338" + } + }, + { + "text": "Easy A!!! Give easy quizzes after every book and only a midterm and final. They are easy as well if you read or just sparknote the readings. 2 papers only which is great and not at all consuming. Super lenient grader as well.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d339" + } + }, + { + "text": "I had her for writing in the workplace and the class was beneficial. Her Final was a presentation with a classmate. She's very clear and easy. Do not waste your money on the book she gives out handouts from there every class so it's useless.", + "pos": 0.208, + "neu": 0.736, + "neg": 0.057, + "_id": { + "$oid": "6711d579cd60fca157e5d33a" + } + }, + { + "text": "Honestly, thinking back on it, i learned ALOT from her class. She's sometimes boring, but what else do you expect from a writing class. She takes her job seriously and you can tell she cares about us learning something of value from her classes. Much respect. Just come to class, PARTICIPATE, and do well on your essays.", + "pos": 0.228, + "neu": 0.718, + "neg": 0.053, + "_id": { + "$oid": "6711d579cd60fca157e5d33b" + } + }, + { + "text": "Well she is boring but her class is really useful. She cares that you learn what you have to. She's asking for books but you won't need them because she gives handouts anyway. Five essays and at the end chance to correct your grade. She will guide you and you need to follow. Overall she's a good GPA booster.", + "pos": 0.233, + "neu": 0.744, + "neg": 0.023, + "_id": { + "$oid": "6711d579cd60fca157e5d33c" + } + }, + { + "text": "She is the best professor. Very kind. Easy papers and easy grader. This is one of the few classes where the material was interesting and actually learned something in class. Not boring at all!", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d33d" + } + }, + { + "text": "Overall she's nice. Textbooks aren't necessary because she always gives out handouts. 5 essays and that's it. You can get a pretty good grade if you take your time. Easy, but lectures are kind of boring. Take her and you won't regret.", + "pos": 0.217, + "neu": 0.716, + "neg": 0.067, + "_id": { + "$oid": "6711d579cd60fca157e5d33e" + } + }, + { + "text": "She is awesome.", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d33f" + } + }, + { + "text": "She's super nice, and grades easily.", + "pos": 0.752, + "neu": 0.248, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d340" + } + }, + { + "text": "She's honestly a pretty good teacher. I took her WHUM class and she was really insightful. She is NOT a tough grader, I haven't read a single book in that class and still got an A. She goes over everything you need to know for the quizzes and she essentially goes over every question on the final. I can honestly say I learned something.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d341" + } + }, + { + "text": "Easy A if you are willing to work with her feedback. Professor Minnich is very clear with what is expected and is not a tough grader.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d342" + } + }, + { + "text": "She is a very laid back professor. Her class requires some effort, but in all its pretty easy. This was the composition course related to the literature course for FIQWS. She is informative and gives good feedback. For major papers DO NOT forget citations or you will fail it. She often lets us leave early too. Not a bad class at all.", + "pos": 0.225, + "neu": 0.698, + "neg": 0.077, + "_id": { + "$oid": "6711d579cd60fca157e5d343" + } + }, + { + "text": "Read the summaries before class, show up on time, participate occasionally. She goes over the material in class and the exam is recalling the story and class discussion. Not a tough grader. Easy A.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d344" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d579cd60fca157e5d346" + }, + "professor_name": "Mark Brown", + "rating": 2.6, + "department": "Mathematics department", + "comments": [ + { + "text": "The worst professor ever. Using really complicated solving every single question. Don't understand anything from the class. Learn everything by myself after the class by reading textbook. Useless.", + "pos": 0.077, + "neu": 0.723, + "neg": 0.2, + "_id": { + "$oid": "6711d579cd60fca157e5d347" + } + }, + { + "text": "He is a really nice professor, he answered questions before, during and after class (even via e-mail) for those who needed help. Except his teaching method and the way he does his problems is confusing. I basically taught myself the material. 3 quizzes (lowest grade dropped) + final. I wouldn't take him again....", + "pos": 0.095, + "neu": 0.787, + "neg": 0.118, + "_id": { + "$oid": "6711d579cd60fca157e5d348" + } + }, + { + "text": "Extremely smart guy, though not the greatest at teaching since he proceeds at his own pace (very fast). But he's clear, fair and answers any questions have during class. Sadly he's leaving for Colombia University, gonna miss this guy!", + "pos": 0.175, + "neu": 0.668, + "neg": 0.157, + "_id": { + "$oid": "6711d579cd60fca157e5d349" + } + }, + { + "text": "His exams are very straight forward. he even gives review sheets. Make friends, study! If you want an A+ read the chapter and take notes before class.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d34a" + } + }, + { + "text": "Math 346 is a pretty easy course. Prof. Brown's class is boring but he gives review sheets for exams and it is very helpful! His exams are pretty easy too. He lets you choose 3 out of 5-7. He also drops the lowest test grade out of 3. Very nice professor", + "pos": 0.302, + "neu": 0.625, + "neg": 0.073, + "_id": { + "$oid": "6711d579cd60fca157e5d34b" + } + }, + { + "text": "The main thrust of the course matter is the coordinate free, linear algebraic characterization of the F test and its offshoots in terms of projections on subspaces. The abstract discussion of the F test was then anchored in a somewhat more concrete exposition of linear models under the Gauss-Markoff setup with design matrices of full rank.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d34c" + } + }, + { + "text": "He's really nice. Kinda boring but that's because i hate probability myself. And i was worried about what someone said about him getting in the 90s on all 3 tests and getting a C as a final grade. That's false. I got an A. Was worried for nothing.", + "pos": 0.036, + "neu": 0.75, + "neg": 0.214, + "_id": { + "$oid": "6711d579cd60fca157e5d34d" + } + }, + { + "text": "Horrible professor. Only goes over examples that are in the book. Not helpful. Talks to the board, looks at the ceiling. Never makes eye contact. Horrible teacher. Tests are fair. Not enthusiastic about math. Very strange man. He's very boring as well. Didn't like his teaching methods at all. Has no teaching skills.", + "pos": 0.068, + "neu": 0.627, + "neg": 0.305, + "_id": { + "$oid": "6711d579cd60fca157e5d34e" + } + }, + { + "text": "Most boring class ive ever taken. He tries his best to clarify things but does a horrible job at doing so. He is a mathematician NOT a professor so explains a lot. Easy A.", + "pos": 0.15, + "neu": 0.698, + "neg": 0.152, + "_id": { + "$oid": "6711d579cd60fca157e5d34f" + } + }, + { + "text": "3 test and a final exam. The 3 tests are worth 60% and the final exam is worth 40%. He gives out PLENTY of practice exams and review sheets. Tests are almost identical in style as the tests/final. Take Mark Brown!", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d350" + } + }, + { + "text": "worst math teacher, didn't understand anything i basically just went to tutoring most of the time. he teaches straight from the book and he doesn't even check to see if we understand the material.people came in late left early. his class was a waste of money and time wished i never registered for it.If you're not good at math don't take his class", + "pos": 0.027, + "neu": 0.84, + "neg": 0.133, + "_id": { + "$oid": "6711d579cd60fca157e5d351" + } + }, + { + "text": "worst math teacher, didn't understand anything i basically just went to tutoring most of the time. he teaches straight from the book and he doesn't even check to see if we understand the material.people came in late left early. his class was a waste of money and time wished i never registered for it.If you're not good at math don't take his class", + "pos": 0.027, + "neu": 0.84, + "neg": 0.133, + "_id": { + "$oid": "6711d579cd60fca157e5d352" + } + }, + { + "text": "he is the worst math professor i never had, if you don;t have preview knowlege about math you wont understand anything, he show no emotion he just don;t care about students he is doing it for money, bbbbbaaad professor", + "pos": 0.07, + "neu": 0.791, + "neg": 0.138, + "_id": { + "$oid": "6711d579cd60fca157e5d353" + } + }, + { + "text": "Great Guy and funny too!", + "pos": 0.709, + "neu": 0.291, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d354" + } + }, + { + "text": "this guy is the best calc 2 prof there is in ccny. He gives you three exams, drops the lowest. Gives you 9-12 questions and you choose only 4 to do (25 pts each).Cant get better than this. Those who said got 90s on exams and got D probably got a 0 on the final. CCNY needs a man like him. Trust me. He says he doesnt curve but in the end he does:)", + "pos": 0.107, + "neu": 0.871, + "neg": 0.023, + "_id": { + "$oid": "6711d579cd60fca157e5d355" + } + }, + { + "text": "he is terrible! he never looks away from the board. only does problems that have solutions in the book. never goes over hw. he doesnt even care if u show up for class. my class was 2 hrs and ppl came an hr late and left early. takes NOO interest in students. tried to ask for help and he walked away!! AWFULLLLL", + "pos": 0.102, + "neu": 0.77, + "neg": 0.128, + "_id": { + "$oid": "6711d579cd60fca157e5d356" + } + }, + { + "text": "Not a bad professor, but below average maybe. He gives great review sheets, the exam questions are very similar, so you have no excuse not to get a good grade on any of his tests. The class was not fun, but at least it was easy. Not as theoretical as I expected, just dry computations", + "pos": 0.24, + "neu": 0.69, + "neg": 0.07, + "_id": { + "$oid": "6711d579cd60fca157e5d357" + } + }, + { + "text": "He's a very great professor and good grader. I got B+ even I got 73-78 for my three tests.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d579cd60fca157e5d358" + } + }, + { + "text": "Horrible ggrader. 3 tests and final drops lowest grade. Did EXCELLENT 90's on tests and got C- in class... I mean seriously.", + "pos": 0.147, + "neu": 0.595, + "neg": 0.258, + "_id": { + "$oid": "6711d579cd60fca157e5d359" + } + }, + { + "text": "Horrible! He gives 3 tests and drops the lowest grade and then the final. I got grades all in the 90s and either screwed the final horribly or hes an A-hole cause I got a D. Im going to fight the grade. Only good thing is that he pretty much gives you the test before hand to study from just changes the numbers.", + "pos": 0.116, + "neu": 0.688, + "neg": 0.195, + "_id": { + "$oid": "6711d579cd60fca157e5d35a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57acd60fca157e5d35c" + }, + "professor_name": "Shahera Jannah", + "rating": 4.9, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Jannah is a very nice person. She goes over and over the class to make students understand a concept. She also gives us extra material for reviews if a student wants to use it. I would take the class again with her.", + "pos": 0.069, + "neu": 0.931, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d35d" + } + }, + { + "text": "Mrs. Jannah is a great teacher who makes sure her class understands all of the material and she posts her lectures on YouTube if you missed them. She is very forgiving when it comes to grading and truly wants everyone to pass.", + "pos": 0.242, + "neu": 0.716, + "neg": 0.043, + "_id": { + "$oid": "6711d57acd60fca157e5d35e" + } + }, + { + "text": "I was apart of her class that she taught. She was nervous and overwhelmed at the beginning but she got the hang of it. She is very understanding and smart. She makes sure you get the material and teaches in depth. Highly recommend, you will learn.", + "pos": 0.215, + "neu": 0.756, + "neg": 0.029, + "_id": { + "$oid": "6711d57acd60fca157e5d35f" + } + }, + { + "text": "She's an amazing professor. She really cares a lot about you understanding the material and doesn't care how many times she has to go over it. I wish she can be my professor for all my math classes! She tries her very best and is always available outside of class. If you do the work, all the webassign homework, old finals, you'll do fine.", + "pos": 0.213, + "neu": 0.753, + "neg": 0.034, + "_id": { + "$oid": "6711d57acd60fca157e5d360" + } + }, + { + "text": "Professor Jannah is very caring. She does her best to make sure each and every one of her students understand the material. Shes the best math professor ive had! I would definitely recommend taking her class!", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d361" + } + }, + { + "text": "Professor Jannah is one of the best teachers i have taken so far at CCNY. She genuinely cares about her students and helps us to understand all the course materials. I 100% recommend her if you are trying to actually understand and pass math 190", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d362" + } + }, + { + "text": "Prof. Jannah is for sure one of the best professors I have had so far. She explains everything well, always makes sure everyone understands and really cares about her students. TAKE HER CLASS!", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d363" + } + }, + { + "text": "she is a good humble teacher but she needs more confidence and experiences", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d364" + } + }, + { + "text": "Very good professor. Explanations are amazing. she really takes her time to make sure we understand the topic. Homeworks are on webassign, quizzes and a final. definitely take her", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d365" + } + }, + { + "text": "Best math Professor at CCNY. She takes her time to answer all of our questions. makes sure we have all the understanding we need to answer the topic. even though we were online half of the semester due to Covid, she did not let it stop her from teaching us. i learned so much with her than any other math professor. You will not regret taking her.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d366" + } + }, + { + "text": "This professor right here is the best you will ever had. I've never had a professor care so much about her students understanding the topic. she makes sure to go over problems and topic numerous times if we don't understand. she is very helpful and patient with us. The only reason i passed math was because of her teaching. I highly recommend her.", + "pos": 0.207, + "neu": 0.757, + "neg": 0.036, + "_id": { + "$oid": "6711d57acd60fca157e5d367" + } + }, + { + "text": "I have taken math 190 3x !! Not because I am \"dumb\" but i honestly did not get the material. First part.. yea easy until trig comes in. The professor actually cares if you understand. If one student does not understand the material she will not continue unless we are close to our final. Honestly take this course!!! you will not regret it .", + "pos": 0.25, + "neu": 0.723, + "neg": 0.027, + "_id": { + "$oid": "6711d57acd60fca157e5d368" + } + }, + { + "text": "Prof. Jannah genuinely cares if students understand the material and she's very thorough in her teaching which made the math easier to understand for someone like me who struggles in this subject. She made an effort to make sure we passed despite the restrictions placed by the math department. Overall, really great professor!", + "pos": 0.236, + "neu": 0.725, + "neg": 0.039, + "_id": { + "$oid": "6711d57acd60fca157e5d369" + } + }, + { + "text": "Such a great professor. Really cares about her students including personal aspect. Worked hard to get us through this semester even with the pandemic going on.", + "pos": 0.233, + "neu": 0.723, + "neg": 0.044, + "_id": { + "$oid": "6711d57acd60fca157e5d36a" + } + }, + { + "text": "She is an amazing teacher please make her teach pre calculus Tuesday and Thursday from 4pm-5:45 i already registered for it. I loved this class and it was helpful. Please do my request as a birthday gift.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d36b" + } + }, + { + "text": "Professor Jannah is the best professor ever! She cares about her student's learning and understanding of the material in class. She cares and wants the best for her students. She explain everything steps by steps very clearly and easy to understand. If she teach any other math classes I would love to take every single one of them.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d36c" + } + }, + { + "text": "She goes over material enough for everyone to understand. She cares about all her students. Must take her class", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d36d" + } + }, + { + "text": "She is one of the best professors I've had so far!. She cares about her student's learning and understanding of the material in class. She has a lot of patience and is very good at explaining math step by step.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d36e" + } + }, + { + "text": "Solid teacher. Very admirable and reasonable.", + "pos": 0.579, + "neu": 0.421, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d36f" + } + }, + { + "text": "Professor Jannah is the best professor EVEEEEEEERRRRRRRRRR!!!!!!!!!!!! She is EXTREMELY thorough in her teachings, spending extra time on math questions if you need it. She cares very deeply for her students. She also is willing to extend assignments and tries to get the math department to give us extra credit. I love her. Best prof. hands down!!!!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d370" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57acd60fca157e5d372" + }, + "professor_name": "Barry Gross", + "rating": 3.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Beautiful chocolatee man", + "pos": 0.661, + "neu": 0.339, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d373" + } + }, + { + "text": "I have never seen a grown man act so unprofessional and childish in front of students only a third of his age. I have only had one lecture. ONLY 1HR spent with him thus far and my experience was already one of the worst in my 4yrs at CCNY. I dropped the same day. Take only if you enjoy yelling and belittling before lecture even starts. Good luck.", + "pos": 0.111, + "neu": 0.757, + "neg": 0.132, + "_id": { + "$oid": "6711d57acd60fca157e5d374" + } + }, + { + "text": "Professor Gross is one of the most knowledgeable professors @ CCNY. He may come across strong at times but at the end of the day, he just wants his students to learn and his lectures show that. Practice the problems and pay attention to the lectures!", + "pos": 0.042, + "neu": 0.813, + "neg": 0.145, + "_id": { + "$oid": "6711d57acd60fca157e5d375" + } + }, + { + "text": "He is a smart guy but he cant teach because he thinks his students are smart as him. You wont pass if you dont put a lot of time on the materials. Grade depends on exams only, and his exams are extremely hard (avg. 30-40). I dont recommend him unless you are smart as him.", + "pos": 0.141, + "neu": 0.785, + "neg": 0.074, + "_id": { + "$oid": "6711d57acd60fca157e5d376" + } + }, + { + "text": "He is really smart, he is a fan of electromagnetics, but the problem is that he can't explain this stuff, he thinks that his students have same knowledge as he does, gives tricky problems on exams, so if don't have solid knowledge of Electromagnetic you better avoid this guy, otherwise you will learn nothing", + "pos": 0.112, + "neu": 0.687, + "neg": 0.201, + "_id": { + "$oid": "6711d57acd60fca157e5d377" + } + }, + { + "text": "This man is a genius and he gives very good and very dense lectures. This is by far the hardest and most in detailed 330 section. His test are difficult but if you are willing to put in the time at home you will learn a lot. Requires good knowledge of 392 + phasers. His tests are challenging but he gives good partial if he can follow your work.", + "pos": 0.151, + "neu": 0.826, + "neg": 0.023, + "_id": { + "$oid": "6711d57acd60fca157e5d378" + } + }, + { + "text": "By far the most difficult Electromagnetics section, he covers way more material than the other classes. But he's fair, and a good lecturer, so you will learn the material if you work hard.", + "pos": 0.173, + "neu": 0.738, + "neg": 0.089, + "_id": { + "$oid": "6711d57acd60fca157e5d379" + } + }, + { + "text": "Not a great lecturer but not terrible. At least he speaks English. Tests on information that isn't in the assigned chapters and hw problems but is mentioned in class, so it's tough to properly study for the exams", + "pos": 0.074, + "neu": 0.752, + "neg": 0.174, + "_id": { + "$oid": "6711d57acd60fca157e5d37a" + } + }, + { + "text": "Expects you to read the chapter before coming to class. Knows his stuff so he gives lectures off the top of his head. However, once in a while, he forgetsmakes mistakes. His exams are similar to the medium difficulty problems found in the book but every so often he would addcreate his own problem that ties the concepts together. Lenient grader", + "pos": 0.06, + "neu": 0.81, + "neg": 0.13, + "_id": { + "$oid": "6711d57acd60fca157e5d37b" + } + }, + { + "text": "He is good although he is a lil bt messy, he is very smart though, he is not a harsh grader , make sure u do well on the final cause its 50%", + "pos": 0.301, + "neu": 0.64, + "neg": 0.059, + "_id": { + "$oid": "6711d57acd60fca157e5d37c" + } + }, + { + "text": "A fair professor.Doesn't cover much examples in the book or goes too deep into the material, but does a good job. Fair grader, and shows concern for his students.He always insists his students learn more MATLAB.Gave a hard final for such an easy course. Much better than Krancg.", + "pos": 0.269, + "neu": 0.698, + "neg": 0.033, + "_id": { + "$oid": "6711d57acd60fca157e5d37d" + } + }, + { + "text": "This guy knows his stuff but can't comprehend the fact that he is teaching it to students who need it broken down because they have just seen the stuff.He will help you alot out of class so thats one good point. He's an okay grader for this course, because its a 200 level,but difficult for higher levels.", + "pos": 0.146, + "neu": 0.748, + "neg": 0.106, + "_id": { + "$oid": "6711d57acd60fca157e5d37e" + } + }, + { + "text": "Crazy hard class for an elective but tries to help as best as he could. His exams and hw is super difficult. 30 students started class but only 5 remained to the end. I ended up with a B+ but worked my ass off. Expect to do a scientific term project. I think its worth all the effort though. Thumbs up Barry!!", + "pos": 0.214, + "neu": 0.654, + "neg": 0.132, + "_id": { + "$oid": "6711d57acd60fca157e5d37f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d57acd60fca157e5d380" + } + }, + { + "text": "He is the best professor in the EE deparment. He is willing to help you all the time. If you want to pass his class with a good grade, you have to understand all his lectures inside out. When I took EE330 with him, I did not touch the text book at all, but undertand his lecture very well. Then I got an A from his class. His final is very easy.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d381" + } + }, + { + "text": "hes the man, nuff said", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d57acd60fca157e5d382" + } + }, + { + "text": "the homework is real tough.", + "pos": 0.0, + "neu": 0.727, + "neg": 0.273, + "_id": { + "$oid": "6711d57acd60fca157e5d383" + } + }, + { + "text": "This professor wouldnt let students continue due to poor final examinations. He would not let students continue because he thinks all students have to take EE333. Half of the class will not take EE333 because they are Computer Engineering majors. I hope he reads this comment!", + "pos": 0.058, + "neu": 0.875, + "neg": 0.067, + "_id": { + "$oid": "6711d57acd60fca157e5d384" + } + }, + { + "text": "His teaching okay, but Exam are not clear and out of topics. Also, Grading is very very BAD.", + "pos": 0.056, + "neu": 0.578, + "neg": 0.366, + "_id": { + "$oid": "6711d57acd60fca157e5d385" + } + }, + { + "text": "He teaches very good, but his lecture are not very organized and this makes the exams very hard and tricky. Homeworks are hard to do also. I think if he was to get more organized with the lectures he would be an excellent prof.", + "pos": 0.137, + "neu": 0.749, + "neg": 0.114, + "_id": { + "$oid": "6711d57acd60fca157e5d386" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57bcd60fca157e5d388" + }, + "professor_name": "Leslie Paik", + "rating": 3.9, + "department": "Sociology department", + "comments": [ + { + "text": "She was all over the place and it was so hard to understand what she was saying because she jumped around so much. I didn't learn anything from her class due to this. Doesn't give a rubric but will knock you off points if you can't read her mind and do exactly what she wants. Legit feels like getting hit by a bus when leaving her class.", + "pos": 0.047, + "neu": 0.933, + "neg": 0.021, + "_id": { + "$oid": "6711d57bcd60fca157e5d389" + } + }, + { + "text": "Professor Paik handled the COVID-19 pandemic like a complete boss! She shared weekly presentations, broke down lectures, and shared an abundance of financial/social resources with her students. Aside from 3 short papers and final paper, she included weekly blackboard posts (min 200 words) to keep track of who read. She did an awesome job adapting.", + "pos": 0.181, + "neu": 0.775, + "neg": 0.043, + "_id": { + "$oid": "6711d57bcd60fca157e5d38a" + } + }, + { + "text": "A hilarious professor who makes you want to go to class. She definitely knows what she is talking about and when things get awkward in a classroom she knows how to handle it. A lot of work but you learn a lot.", + "pos": 0.11, + "neu": 0.861, + "neg": 0.029, + "_id": { + "$oid": "6711d57bcd60fca157e5d38b" + } + }, + { + "text": "She is very sweet and very knowledgeable about her topics!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d38c" + } + }, + { + "text": "She was a pleasure to take. This course consisted of three exams and one final paper. Every week you had to submit a blog post which were fairly easy. The tests were easy as well so long as you paid attention in class. It is easy to get away with skimming through the readings. Show up, participate, and pay attention. TAKE NOTES.", + "pos": 0.202, + "neu": 0.779, + "neg": 0.019, + "_id": { + "$oid": "6711d57bcd60fca157e5d38d" + } + }, + { + "text": "Dr. Paik is by far one of the best professors at CCNY. Her class is made up of textbook readings, articles, 3 short papers and one 15 pg final. Her lectures are really interesting. Participation is a must. If you are stuck on something she is incredibly helpful. Go to her office hours, it will make a big difference. You're gonna love her!!", + "pos": 0.201, + "neu": 0.773, + "neg": 0.027, + "_id": { + "$oid": "6711d57bcd60fca157e5d38e" + } + }, + { + "text": "She is great. She gives lecture notes before class. She helps break down the readings. Class only had 4 assignments. 2 Group projects, a midterm and a final. For the test, just read her lecture notes. For the group, CHOOSE WISELY. That's it! She pretty funny too. Makes the lectures engaging and tolerable.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d38f" + } + }, + { + "text": "Paik is Great! He lectures are awesome and her power points are so helpful. I didn't have to look at the textbook once! Also, she gives you online articles to read. Only midterm and Final 40% each and 20% for group projects and participation. She passes attendance around to sign. Awesome. Def recommend!!!", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d390" + } + }, + { + "text": "SHE IS AMAZING", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d391" + } + }, + { + "text": "She takes attendance, although it is not counted in the final grade. She is organized and follows the syllabus. She puts the slides on BB before class. She is very knowledgeable and cares about her students. If you meet her in her office, she is more than welcome to speaking with you and helping you. I recommend her for serious students.", + "pos": 0.164, + "neu": 0.817, + "neg": 0.019, + "_id": { + "$oid": "6711d57bcd60fca157e5d392" + } + }, + { + "text": "I love Professor Paik, although I'm not a SOC major I learned a lot from here during the semester in preparation from my thesis. The readings are interesting, she's funny and sweet. She definitely wants you to do your best and is willing to help. I highly recommend her!!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d393" + } + }, + { + "text": "Paik is well spoken and knows a lot about sociology. She engages with the students and all of the lectures are very interesting and funny. Make sure you attend all the classes and study the lectures in order to pass the midterm and final. Also, make sure to have a strong group to score high in any group projects.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d394" + } + }, + { + "text": "Took her Intro to Sociology class at Yonsei International Summer School in Korea. She is hard, demanding, but I gotta say she is fair. This class is not an easy A and definitely not a class for slackers.", + "pos": 0.144, + "neu": 0.729, + "neg": 0.127, + "_id": { + "$oid": "6711d57bcd60fca157e5d395" + } + }, + { + "text": "Paik is an excellent professor and is very knowledgable about sociology. Expect to do a lot of heavy reading, a lot of reviewing, and overall a lot of work. She is not an easy grader but she is very clear in her lectures- do your work, take notes, study, LISTEN, ask questions- she is very funny and nice. Great for soc majors who want to LEARN", + "pos": 0.263, + "neu": 0.716, + "neg": 0.021, + "_id": { + "$oid": "6711d57bcd60fca157e5d396" + } + }, + { + "text": "Amazing teacher! Hilarious, intelligent, helpful, an amazingly dry humor. If you like The Office, Seinfeld, you will love this class. And you get really into the topic because of her humor.", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d397" + } + }, + { + "text": "Had her for FIQWS linked with soc.Great teacher,knowledgeable&interested in material she taught so class was interesting.Follwed syllabus to a T and was very clear abt expectations of students.Easy class if u pay attention,do work&participate.", + "pos": 0.08, + "neu": 0.882, + "neg": 0.039, + "_id": { + "$oid": "6711d57bcd60fca157e5d398" + } + }, + { + "text": "very informative and intelligent. one paper, two exams. although your score is distributed evenly she gives you no margin at all for your performance thus your grade is only dependent on what you earn. make sure you read and go to each and every lecture to pass her exam. every point matters in this class", + "pos": 0.111, + "neu": 0.852, + "neg": 0.037, + "_id": { + "$oid": "6711d57bcd60fca157e5d399" + } + }, + { + "text": "Good, but..", + "pos": 0.661, + "neu": 0.339, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d39a" + } + }, + { + "text": "I have taken all 3 classes with her. She demands a lot but you learn a lot from her and if you work hard on what you are supposed to do you will be fine. I feel like I got more out of her classes than any soc classes. you definitely should take her soc. problems class to get the essentials of what sociology deals with.", + "pos": 0.12, + "neu": 0.812, + "neg": 0.069, + "_id": { + "$oid": "6711d57bcd60fca157e5d39b" + } + }, + { + "text": "She is very great. Makes the class very interesting and a lot of good things to learn. Just be sure you do draft papers before handing in final papers with her. Study, take notes, read what she assigns, although it's too much to read and you will be fine.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d39c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57bcd60fca157e5d39e" + }, + "professor_name": "Leah Abraha", + "rating": 4.1, + "department": "Art department", + "comments": [ + { + "text": "Amazing professor; she's really passionate of what she's doing. Interesting lectures; make sure you take good notes in every class and participate at least once. This class requires memorization for midterm and final so be prepared for that. The questions are based on the study notes she sends one week before exam so you know what to expect.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d39f" + } + }, + { + "text": "Really interesting lectures! The professor is sweet and caring. Be sure to participate at least once every class. There is a textbook but is optional. There's two main papers a midterm and a final. I love art history because of this professor, so I recommend to take her class!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a0" + } + }, + { + "text": "For an intro course the work was way too much; a paper, weekly quizzes, a research paper, and a final. This class took more time/effort than my calculus and chemistry classes combined. The professor is very analytical (will take points off for stupid things) and is pretty stubborn. Quizzes were usually posted 12 hours before they were due.", + "pos": 0.05, + "neu": 0.855, + "neg": 0.095, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a1" + } + }, + { + "text": "This class is way too rigorous for an introductory course. Her weekly quizzes get harder every time. If you like working hard and putting a lot of effort into assignments this is the class for you- although you will probably still NOT get the results you want because she is a harsh grader. The writing textbook is nice to refer to but not necessary.", + "pos": 0.071, + "neu": 0.859, + "neg": 0.07, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a2" + } + }, + { + "text": "This professor is super caring and smart. I really enjoyed her lectures when I was listening, although it could get boring. You don't need to buy the textbook since she goes over the content in class. Her final and midterms had a clear review sheet that helped a lot with studying. Great professor!", + "pos": 0.297, + "neu": 0.67, + "neg": 0.033, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a3" + } + }, + { + "text": "Honestly, it's one of the easiest classes you could take at CCNY. One major exam and one paper made up the bulk of the graded assignments. You do have to show up every day as she does take attendance. Even if the final paper is subpar, a great score on the midterm combined with good attendance will get you an A.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a4" + } + }, + { + "text": "Professor Abraha's class was extremely interesting and I enjoyed learning about art history. There are a few essays and a midterm and a final, so pay attention in class to be prepared for them. I got the textbook beforehand, but it wasn't needed. Most of the information I did need was said in her lectures. Great, sweet and intelligent professor!", + "pos": 0.264, + "neu": 0.716, + "neg": 0.019, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a5" + } + }, + { + "text": "Extremely nice, but blabbers on and on about art and had to rush the course in the last 3 days. Never refers to textbook but lectures like crazy. Midterm and final were based ENTIRELY off the study packet she sent, but she grades harshly on those. She also grades very hard on papers but she's vague with her expectations. Nice but never again.", + "pos": 0.124, + "neu": 0.784, + "neg": 0.093, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a6" + } + }, + { + "text": "Easy and pleasant class. Midterm and Final require memorization of about 15 artpieces (title, artist, ect) and to write comparative essays. I got away with just taking good notes in class and reading them before the exam. Participate at least once per meeting. Expectations on papers are very clear, but take them seriously.", + "pos": 0.138, + "neu": 0.827, + "neg": 0.035, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a7" + } + }, + { + "text": "Abraha's Art History 100 class was very interesting and she is a very great teacher. Her grading is very fair, and she does not make the class very difficult. Don't buy the textbook, just go take pictures of the assigned chapters from the available textbook in the library, you barely go through half the chapters of it anyway. Would deff take again", + "pos": 0.141, + "neu": 0.82, + "neg": 0.039, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a8" + } + }, + { + "text": "GREAT PROF!!! She teaches only the material needed for the test. Before the midterm and the final she gives a review sheet which has everything that is going to be on the test. She gives extra credit and is a very easy grader. I took this class as liberal art and did not put ANY work into it and left with A. DO NOT BUY THE TEXTBOOKS!!!!!", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3a9" + } + }, + { + "text": "Horrible!", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3aa" + } + }, + { + "text": "Really Great Teacher.", + "pos": 0.687, + "neu": 0.313, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3ab" + } + }, + { + "text": "If you're taking Art History, this is the professor to go with. She is knowledgeable, clear, grades fairly and her exams aren't that difficult (although there is a lot of memorization). She will help you if you go to her. Don't waste your money on the textbooks, you will barely crack them open. You'll only need it once or twice during the semester.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3ac" + } + }, + { + "text": "she expects a lot from a 1000 class. She has only 2 tests, both midterms and both are all straight up memorization. The tests have like 20 pictures and you have to state places of origin, date, painter, etc. Followed by vocabulary and an essay. She has 3 papers and isn't a harsh grader. Takes attendance. letter grades by 10s example b is 80-89", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3ad" + } + }, + { + "text": "She's a very kind and nurturing teacher, not hostile whatsoever. The power point lectures are very clear and accessible. You probably need the textbooks, but more for the vocabulary, as she does test on them. She also gives extra credit. Just write well/ get help to write well, pay attention in class, and memorize vocabulary for the tests.", + "pos": 0.286, + "neu": 0.691, + "neg": 0.023, + "_id": { + "$oid": "6711d57bcd60fca157e5d3ae" + } + }, + { + "text": "She is very sweet and knows a lot about art history. I just wish art history classes didn't involve memorizing dates, mediums, locations and all that for artworks. Her assignments are the easy and involve a few museum trips. Do those and pass the exams and you're solid.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3af" + } + }, + { + "text": "Easy Class,her voice is very well suited for story telling. And it probably doesn't help that lights are always off in this class because you learn from power points, because I was always knocked out. She gives pages to read every week but i never really read them. For the Tests i did last min memorization A EasyA +Nap time!", + "pos": 0.063, + "neu": 0.911, + "neg": 0.026, + "_id": { + "$oid": "6711d57bcd60fca157e5d3b0" + } + }, + { + "text": "You get back what you put into this class. It is very straight forward, and non-art majors should not fear! Small written assignments at the beginning might seem tedious if procrastinated, but very do-able. Midterm & final are very similar, just a matter of memorizing. Professor is VERY helpful and goes out of her way for her students. Highly Rec!!", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d57bcd60fca157e5d3b1" + } + }, + { + "text": "She is nice and knows her material. Pay attention in class, read the book and be ready to participate. The paper is okay as long as you don't save it until the last minute. I recommend taking her class, it is not an easy A, but you do learn a lot. I always looked forward to attending.", + "pos": 0.111, + "neu": 0.812, + "neg": 0.077, + "_id": { + "$oid": "6711d57bcd60fca157e5d3b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57ccd60fca157e5d3b4" + }, + "professor_name": "Jason Redman", + "rating": 4.3, + "department": "Mathematics department", + "comments": [ + { + "text": "He is the worst professor that I had. Act as if he cares, but he does not. Stay away from him.", + "pos": 0.085, + "neu": 0.807, + "neg": 0.108, + "_id": { + "$oid": "6711d57ccd60fca157e5d3b5" + } + }, + { + "text": "Jason is the best professor I've ever had. He's great at explaining the material and making sure you understand everything. There are 3 major tests no quiz or mandatory hw. He's really passionate about all things math related and makes class interesting by taking small breaks during class to chat about game theory. would totally recommend his class", + "pos": 0.269, + "neu": 0.68, + "neg": 0.05, + "_id": { + "$oid": "6711d57ccd60fca157e5d3b6" + } + }, + { + "text": "Great Instructor. He's really passionate about math and anything related to math. I really enjoyed the breaks where he'd chat a little about multiple dimensions or famous equations. He makes math seem like a game, a puzzle to be solved. Don't miss his classes. It takes longer to compensate for the missed class. Not worth it.", + "pos": 0.252, + "neu": 0.693, + "neg": 0.056, + "_id": { + "$oid": "6711d57ccd60fca157e5d3b7" + } + }, + { + "text": "Great professor, he applies so much to real world and things outside of just a calc class", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3b8" + } + }, + { + "text": "This guy really knows hows to teach . If you take his class i promise that you will learn. He doesn't make it mandatory to stay for his lecture. The only thing i hate about this class is that you only get graded on a midterm, final and quizzes. He does not give homework, so its hard to boost your grade.", + "pos": 0.074, + "neu": 0.828, + "neg": 0.098, + "_id": { + "$oid": "6711d57ccd60fca157e5d3b9" + } + }, + { + "text": "Knows his stuff and seems to be passionate about math. Quizzes every week and only 2 exams (midterm and final). This however can become a problem as you must do well on them as they make up most of your grade. He does not grade homework but assigns problems for each section. Overall, its an easy class but you must put in effort to obtain an A.", + "pos": 0.101, + "neu": 0.827, + "neg": 0.072, + "_id": { + "$oid": "6711d57ccd60fca157e5d3ba" + } + }, + { + "text": "He is in OK professor, although he is very nice, his practice exams don't prepare you for his exams. He also gave definition questions which btw were for like 10 points, if you don't write what he wants you to write he will mark it as wrong. Memorize his definitions word for word. If you want an A don't take him, he can be confusing and harsh.", + "pos": 0.126, + "neu": 0.772, + "neg": 0.102, + "_id": { + "$oid": "6711d57ccd60fca157e5d3bb" + } + }, + { + "text": "He's a very nice guy with good intentions in class lectures. However, you may not agree with all of his methods. He provides study guides that help you on the test. He also puts short answer questions on his math exams, hopefully he stops it. If he does is still, drop him. Your grade will drown.", + "pos": 0.165, + "neu": 0.697, + "neg": 0.138, + "_id": { + "$oid": "6711d57ccd60fca157e5d3bc" + } + }, + { + "text": "Very laid back, relaxed professor. However, it is Calculus. The material can be tough. Quizzes are pretty straight-forward from lectures.. Midterm and Final were a bit more challenging. Study.", + "pos": 0.244, + "neu": 0.713, + "neg": 0.043, + "_id": { + "$oid": "6711d57ccd60fca157e5d3bd" + } + }, + { + "text": "Jason, is a great professor. I had the wonderful opportunity to have him as my math 190 professor. He's very straight forward. There were no quizzes, just exams and the lowest was dropped. Teaches the material well and simple. Very easy to understand.", + "pos": 0.312, + "neu": 0.605, + "neg": 0.083, + "_id": { + "$oid": "6711d57ccd60fca157e5d3be" + } + }, + { + "text": "Jason Redman is one of the best professors I have had here at City College. I made an effort to talk to him after class and we developed a friendship as he was very approachable. He really cares about his students and is able to relate to them. He makes the class interesting & teaches the concepts more thoroughly than any other math prof I ever had", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3bf" + } + }, + { + "text": "Makes learning enjoyavle to a point, since it's math. Tests are hard but he is there every step of the way! Go to his office hours!", + "pos": 0.0, + "neu": 0.933, + "neg": 0.067, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c0" + } + }, + { + "text": "Best calc prof ever!!!! gives reviews that are very helpful for the exam. i never felt so prepared for a final in my life. if you can take him he is the best. absolute best. I'm so sad he isn't teaching 20900.", + "pos": 0.329, + "neu": 0.613, + "neg": 0.058, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c1" + } + }, + { + "text": "Jason is an extremely nice and understanding professor. He engages his students and has fun with the lessons (he even adds memes to exams and reviews to make learning fun). His exams sometimes may be challenging but he prepares you well, so by the time the final comes you'll be good!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c2" + } + }, + { + "text": "He's a young professor so he's very relatable and made math less intimidating. He was able to simplify topics, which was very helpful and shows he really understands the concept. Very understanding & easy to talk to, even it's not math related! overall cool guy.", + "pos": 0.169, + "neu": 0.782, + "neg": 0.05, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c3" + } + }, + { + "text": "Prof Redman is my most favorite professor so far. He's a great teacher, his lessons are clear and straightforward. The best part is that he's very helpful and considerate as well. He's easy to find during office hours and very open to questions in class. His personality makes the class comfortable and not intimidating at all. Highly recommend :)", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c4" + } + }, + { + "text": "Redman is a great professor, but prepare yourself for the final well. The final can either make you or break you.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c5" + } + }, + { + "text": "Redman is ok at teaching. If you 're going to take him be prepared, his tests will make you want to kill yourself. Unfortunately, one of the best math profs at city college.", + "pos": 0.22, + "neu": 0.618, + "neg": 0.162, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c6" + } + }, + { + "text": "He's the best professor ever! Even as I failed he still tried his hardest to making calc easy. He teaches amazingly and makes everything clear. If you have the chance, take his class. He's very funny and nice to all the students. By far my favorite professor =]", + "pos": 0.361, + "neu": 0.59, + "neg": 0.05, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c7" + } + }, + { + "text": "One of my best professor. Very easy to learn from him and he basically simplify all the material for us to disgust. great teaching style.", + "pos": 0.316, + "neu": 0.577, + "neg": 0.107, + "_id": { + "$oid": "6711d57ccd60fca157e5d3c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57ccd60fca157e5d3ca" + }, + "professor_name": "Charysse Scott", + "rating": 4.9, + "department": "Mathematics department", + "comments": [ + { + "text": "One of the coolest and most knowledgeable Prof in CCNY, she takes time to get to know her students and knows her math. I hate math but she actually made me understand it. she is funny and actually likes to grade assignments, you will get your test back within a day. Definitely take her class if you hate math, you wont after her.", + "pos": 0.145, + "neu": 0.758, + "neg": 0.097, + "_id": { + "$oid": "6711d57ccd60fca157e5d3cb" + } + }, + { + "text": "She is always prepared, her lessons are crystal clear and she obviously cares about her students. She gives 3 exams, 10 quizzes and extra problems to help prepare you for the final. She's mad funny too. Professor Scott, we will miss you!", + "pos": 0.244, + "neu": 0.619, + "neg": 0.137, + "_id": { + "$oid": "6711d57ccd60fca157e5d3cc" + } + }, + { + "text": "BEST PROFESSOR EVER! SHE EXPLAINS EVERYTHING IN DETAIL AND MAKES IT EASY FOR THOSE WHO DON'T SPEAK MATH. SHE'S A LOT OF FUN TOO! YOU GET HOMEWORK QUIZZES EVERY FRIDAY (THEY'RE NOT HARD), DO YOUR HOMEWORK B/C THAT WILL HELP YOU WITH EXAMS AND QUIZZES.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3cd" + } + }, + { + "text": "Nice, relaxed class. She's funny and seems happy every day. The sample exams are great and the time went by fast. I'd recommend her.", + "pos": 0.516, + "neu": 0.484, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3ce" + } + }, + { + "text": "She is great. Very helpful and concerned about every student. Her jokes are funny. Take her!", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3cf" + } + }, + { + "text": "This summer class was great. Math is still my least fav subject but this class was sooo much fun. Even after a full day's work, I looked forward to it. Ms. Scott is very clear, helpful, bright and energetic. She makes you want to start eating your vegetables. Lol. Get it?", + "pos": 0.392, + "neu": 0.584, + "neg": 0.024, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d0" + } + }, + { + "text": "Professor Scott was extremely coherent and made the class as painless as possible. She did her best to help students keep their grades up such as dropping lowest exam and homework scores and offereing extra credit research. A must for L.A. majors who are only taking the course for Gen ed. Wicked accent.", + "pos": 0.181, + "neu": 0.726, + "neg": 0.093, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d1" + } + }, + { + "text": "One word: AWESOME She is simply awesome! Born to teach. She is the best.", + "pos": 0.55, + "neu": 0.45, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d2" + } + }, + { + "text": "I have to agree. She is very cool and lenient. She gives reviews for each of her exams and they are really helpful. I thought this class would be so hard but I am getting good grades so far. She is the best.", + "pos": 0.311, + "neu": 0.662, + "neg": 0.026, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d3" + } + }, + { + "text": "She is so cool And very clear as well. i did not like math coming into the class but i end up getting great grades. The only problem is that i come late all the time she does not like latenesses the only time you actually use the text book is 4 h.w. and the Review for the tests are a great help she is the best math Teacher i Have EVERY HAD!!", + "pos": 0.275, + "neu": 0.645, + "neg": 0.08, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d4" + } + }, + { + "text": "I kept putting off this class for semesters and was terrified in the beginning. By the end of the semester this was my fav class. Ms. Scott is the kind of teacher you wish you had back in high school when you first had to take this stuff. Highly recommended!!!", + "pos": 0.148, + "neu": 0.784, + "neg": 0.068, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d5" + } + }, + { + "text": "She is a great professor and a great person in general. If you have a fear of math then this is the class for you. Yeah, I think she's cute too. Lol.", + "pos": 0.357, + "neu": 0.573, + "neg": 0.07, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d6" + } + }, + { + "text": "If this professor walks into your class the first day, breathe a sigh of relief. You might not like math but you will like this class. She is patient and very lenient. Her accent rocks!", + "pos": 0.236, + "neu": 0.727, + "neg": 0.038, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d7" + } + }, + { + "text": "She is really a wonderful and dedicated teacher. I still don't like math but for the first time in my life, I am passing a math class. I still cannot believe it. Thank you so much Professor Scott!", + "pos": 0.111, + "neu": 0.791, + "neg": 0.098, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d8" + } + }, + { + "text": "She is such a great teacher. Personally, I hate math but she made it very clear and interesting. She wants to make sure that the class understands and will go over anything that wasn't clear. Attendance is mandatory and homework is crucial. If you do everything that is required you should do fine.", + "pos": 0.253, + "neu": 0.671, + "neg": 0.076, + "_id": { + "$oid": "6711d57ccd60fca157e5d3d9" + } + }, + { + "text": "She's a very good teacher , however she is a horrible grader. Don't get me wrong she teaches and explains in detail, but like i said, SHE'S A HORRIBLE GRADER. Be very careful when taking your 10 quizzes. HORRIBLE GRADER!", + "pos": 0.167, + "neu": 0.582, + "neg": 0.251, + "_id": { + "$oid": "6711d57ccd60fca157e5d3da" + } + }, + { + "text": "I agree 100% with all of the comments here. She is wonderful and loves her job. Maybe that is the difference. Take her if you can.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d57ccd60fca157e5d3db" + } + }, + { + "text": "Unlike many of my other professors (who I am sure are smart too), teaching is her \"thing\". She is very good at explaining, especially when you approach her one on one. She's young but knows the subject very well. \"Isn't this fun?\" Hahaha, no math isn't fun, but yes, Prof. Scott, your class is!", + "pos": 0.123, + "neu": 0.637, + "neg": 0.24, + "_id": { + "$oid": "6711d57ccd60fca157e5d3dc" + } + }, + { + "text": "A very good teacher. She is intelligent, helpful and genuinely cares about all of her students. Take her if you want to get over your hatred of math lol. I felt very comfortable in her class like we were all friends sitting together. She's cute too : )", + "pos": 0.407, + "neu": 0.532, + "neg": 0.06, + "_id": { + "$oid": "6711d57ccd60fca157e5d3dd" + } + }, + { + "text": "Excellent, excellent, excellent! This class was at 7:55 am (ugh) and still I enjoyed it. Professor Scott would go over example after example to make sure everyone understood. She was fun and approachable and gave me hope that I could pass a math class. I hope I get her again for Mth 190 or PreCalculus. What a nice instructor.", + "pos": 0.358, + "neu": 0.607, + "neg": 0.035, + "_id": { + "$oid": "6711d57ccd60fca157e5d3de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57dcd60fca157e5d3e0" + }, + "professor_name": "James Morgan", + "rating": 3.9, + "department": "History department", + "comments": [ + { + "text": "Easy A class, just show up and pass. Gives three essays, and three vocabulary quizzes, in which the words on the test are in the same order as the study guide. Did not use the textbook, but he was very passionate about history. Great professor and clear-cut about what he teaches. I would take again.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e1" + } + }, + { + "text": "Hes an amazing teacher. Very informed. I loved his class and I recommend him to others. Just make sure to be in attendance. He is a stickler for that.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e2" + } + }, + { + "text": "SO BORING BUT STICK THROUGH IT, HE'S A GREAT GUY!", + "pos": 0.378, + "neu": 0.508, + "neg": 0.114, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e3" + } + }, + { + "text": "This class is amazing! I love the professor. Don't be late though but other than that the class is interesting. Pay Attention and you'll be fine. I recommend him because you do learn a lot :)", + "pos": 0.374, + "neu": 0.593, + "neg": 0.033, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e4" + } + }, + { + "text": "The class itself was kind of a drag and you never really learn anything other than political stuff, but other than that Professor Morgan himself is a pretty cool dude. Just don't be late, do his papers, pass the easy alphabetical ordered quizzes and you should be good. You'll use the book minimally, but it is helpful at times", + "pos": 0.255, + "neu": 0.725, + "neg": 0.02, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e5" + } + }, + { + "text": "MAKE SURE YOU ARRIVE ON TIME!!!!! He is very strict on attendance. Other than that, very easy class. There are four quizzes in which he reads the vocab list in alphabet order. Easy class to pass.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e6" + } + }, + { + "text": "Highschool level class. He's a very smart guy, you'll learn a lot from him but he is a tad boring. Very easy class with easy requirements.", + "pos": 0.289, + "neu": 0.627, + "neg": 0.084, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e7" + } + }, + { + "text": "ok so he is easy.. but be warned hes gotten very old so class is kinda a drag which seems really mean but there are hardly any real lessons.. his class is really boring. But if you try and listen professor morgan is very smart you will learn something.", + "pos": 0.131, + "neu": 0.733, + "neg": 0.136, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e8" + } + }, + { + "text": "DONT BE LATE! participate when he asks opinion questions, he likes that. and the chapter outlines are easy extra bonus points, so why not?", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3e9" + } + }, + { + "text": "Textbook only useful for the final exam. Rest of the class is 4 easy vocab quizzes, 3 easy papers, and watching films once every three days. Notes he gives in class aren't that important.", + "pos": 0.216, + "neu": 0.745, + "neg": 0.04, + "_id": { + "$oid": "6711d57dcd60fca157e5d3ea" + } + }, + { + "text": "he is the easiest!!!!! just dont be late to class. he hates that otherwise you have four vocab quizzes in which he gives you the words b4 hand and reads the definitions in alphabetical order. he also tells you exactly what is on the final. and 3 papers are also easy able to be done the day b4. no need to do reading just go to class", + "pos": 0.13, + "neu": 0.803, + "neg": 0.066, + "_id": { + "$oid": "6711d57dcd60fca157e5d3eb" + } + }, + { + "text": "do NOT be late for his class. easy class because of 4 vocabulary quizzes and 1 final", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3ec" + } + }, + { + "text": "DO NOT TAKE THIS CLASS IF YOU ARE NOT A SOCIALIST. i'm politically conservative and i wanted to pull my hair out every single class. if you don't care too much about that, take his class. morgan's as easy as they come.", + "pos": 0.064, + "neu": 0.879, + "neg": 0.058, + "_id": { + "$oid": "6711d57dcd60fca157e5d3ed" + } + }, + { + "text": "Really easy. Only 4 quizzes and one easy final.", + "pos": 0.465, + "neu": 0.535, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3ee" + } + }, + { + "text": "Great Professor. Is very considerate when it comes to personal problems. Doesnt require a lot of studying. Easy A", + "pos": 0.365, + "neu": 0.538, + "neg": 0.097, + "_id": { + "$oid": "6711d57dcd60fca157e5d3ef" + } + }, + { + "text": "Professor Morgan's class is fun, lively, and interesting. Despite his old age, white hair he is very helpful if you don't understand his class. He hates students who are late, he make sures that no body cheats during his quizzes! A++++ to him!", + "pos": 0.266, + "neu": 0.643, + "neg": 0.091, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f0" + } + }, + { + "text": "test are very easy, watch a lot of movies, shares his opinions and is very funny..easy A", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f1" + } + }, + { + "text": "He is a really nice professor, just do the work and you will pass the class with an A. He is also very funny.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f2" + } + }, + { + "text": "...good professor, an easy A+ if only you do the little work required...make sure u attend all his classes or have a note of abscence ready, classes are not too boring and he shows a lot of movies...overall he is a nice old prof with a girlfriend....", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f3" + } + }, + { + "text": "Fun class. An Erudite who is well vast in what he teaches. Take his class, study for the 4 vocabulary quizzes, get to class early because he marks attendant as you get to and you are sure to have an A+.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57dcd60fca157e5d3f6" + }, + "professor_name": "Almarex Paredes", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "great class", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f7" + } + }, + { + "text": "Rex is the BEST TA in CCNY! If you are taking chemistry and he is a TA, ATTEND HIS SESSIONS! You will not be disappointed! He will ask for volunteers, so volunteer. It really helps you to understand your mistakes.", + "pos": 0.226, + "neu": 0.724, + "neg": 0.05, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f8" + } + }, + { + "text": "Best Chem TA ! Take him and you won't regret it !", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3f9" + } + }, + { + "text": "He is the most amazing teaching assistant I have ever had the pleasure for having throughout my college chemistry career. He is extremely intelligent, patient, caring and diligent. Without Rex I would have certainly failed most of my chemistry classes, but he dedicated so much time to his students and ensured that they understand the material.", + "pos": 0.226, + "neu": 0.741, + "neg": 0.033, + "_id": { + "$oid": "6711d57dcd60fca157e5d3fa" + } + }, + { + "text": "Rex is one of the most caring instructors that I have ever met. He is able to go above and beyond when going through concepts and gives a lot of practice problems. I went to his workshops for organic and general chemistry and he was able to provide plenty of practice problems for every class. Rex is very knowledgable in chemistry--its almost scary.", + "pos": 0.049, + "neu": 0.833, + "neg": 0.117, + "_id": { + "$oid": "6711d57dcd60fca157e5d3fb" + } + }, + { + "text": "Rex is an extraordinary supplemental instructor He is very passionate and committed in helping his students He goes far and beyond to make sure that students understand the concepts He would give his students lots of practice problems and mock exams to help them Without him I wouldnt even imagine I was gonna get an A- in Orgo 1 and A in Chem103", + "pos": 0.177, + "neu": 0.749, + "neg": 0.074, + "_id": { + "$oid": "6711d57dcd60fca157e5d3fc" + } + }, + { + "text": "Rex held many recitation classes, review sessions, and supplemental instructions. He has made a tremendous impact on my education. He is an extraordinary lecturer, he knows how to explain concepts and helps teach you how to problem solve so you can do it yourself. I would be lost without him. Absolutely amazing teacher, especially for Organic Chem!", + "pos": 0.068, + "neu": 0.8, + "neg": 0.132, + "_id": { + "$oid": "6711d57dcd60fca157e5d3fd" + } + }, + { + "text": "Rex is an amazing teacher when it comes to chemistry. Took him for chem 1 and chem 2 (achieved A+ and A). Without him I especially didnt think I couldve achieved an A- in organic chem 1. Creates amazing mock exams, practice questions and is very accessible weekdays and weekends for group reviews. Makes things so easy to understand. So helpful!", + "pos": 0.231, + "neu": 0.732, + "neg": 0.037, + "_id": { + "$oid": "6711d57dcd60fca157e5d3fe" + } + }, + { + "text": "Best tutor ever!!! had him since chem 103, would really say my As in all my chem classes and even in organic chemistry this semester are all thanks to him! i love him", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d3ff" + } + }, + { + "text": "Best Tutor... really explains everything well and make sure you understand... amazing guy", + "pos": 0.585, + "neu": 0.415, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d400" + } + }, + { + "text": "I love him.", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d401" + } + }, + { + "text": "This man is a blessing and has saved me in chem 104. If not for Rex I would be in serious trouble. Rex is so articulate and thorough. An amazing TA/tutor!!", + "pos": 0.257, + "neu": 0.644, + "neg": 0.099, + "_id": { + "$oid": "6711d57dcd60fca157e5d402" + } + }, + { + "text": "Almarex is an amazing and very knowledgeable teacher. I have the utmost respect for him and his dedication to educate his students. He goes above and beyond to try an explain a subject, if he sees that you put in the work and youre serious about your education. He is a great motivator. Having him as your teacher will help you pass your class.", + "pos": 0.185, + "neu": 0.797, + "neg": 0.018, + "_id": { + "$oid": "6711d57dcd60fca157e5d403" + } + }, + { + "text": "He is one of kind and goes out of this way to make sure his students understand difficult concepts by simple explanations. Surely, one of the main reasons I got an A- in Chem 10401. Really makes time for his students, kind and patient. Would recommend to anyone.", + "pos": 0.246, + "neu": 0.712, + "neg": 0.042, + "_id": { + "$oid": "6711d57dcd60fca157e5d404" + } + }, + { + "text": "Rex was one of the best tutors I have ever had. I am in an intense program which required me to take the equivalent of one years chem in one semester and another years work of Organic chem in another semester. I was already failing Chem when I found him, however with his patience and endless devotion I passed chem and later received a B+ in Orgo.", + "pos": 0.114, + "neu": 0.842, + "neg": 0.044, + "_id": { + "$oid": "6711d57dcd60fca157e5d405" + } + }, + { + "text": "He is the best recitation teacher I have ever had. He makes sure you understand the material and takes time outside of class to help you if you need it. He tries to create mock exams/practice questions to help you out. He also has review sessions before exams and he isnt a harsh grader at all! Great teacher. I would definitely take again!", + "pos": 0.295, + "neu": 0.67, + "neg": 0.035, + "_id": { + "$oid": "6711d57dcd60fca157e5d406" + } + }, + { + "text": "Rex is a great teacher. He is patient, and has a great way of breaking concepts down to help us understand. The best!", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d407" + } + }, + { + "text": "Rex is why I passed both chem 103 (with an A) and chem 104 (with a B). Without him, chemistry would be way more difficult. His way of teaching is easy to understand and he does his best to make sure everyone is understanding. He makes himself available for anyone who needs help and cares for his students. I wish he was teaching all chem classes!", + "pos": 0.226, + "neu": 0.739, + "neg": 0.035, + "_id": { + "$oid": "6711d57dcd60fca157e5d408" + } + }, + { + "text": "Rex is an amazing teacher, he would do everything in his power to help you. It does not matter whether it is a weekday or weekend, he will make a group review and will help you to understand a material as much as he could. He explains everything in simple terms, and honestly, I would pass all of my chemistry classes if he would be teaching them.", + "pos": 0.162, + "neu": 0.824, + "neg": 0.014, + "_id": { + "$oid": "6711d57dcd60fca157e5d409" + } + }, + { + "text": "Only reason i'm passing chemistry", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d57dcd60fca157e5d40a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57ecd60fca157e5d40c" + }, + "professor_name": "Mohamed Ben Zid", + "rating": 3.6, + "department": "Mathematics department", + "comments": [ + { + "text": "Ben Zid is a great teacher. Before every quiz/exam he gives \"testbanks\" which are basically the test with different numbers. He is ALWAYS late, but he gets the material covered. He rarely takes attendance, but you should still go to class. Don't buy the text book, the hw comes from it but he never checks it. Highly reccommend him!", + "pos": 0.047, + "neu": 0.953, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d40d" + } + }, + { + "text": "Very tardy professor; usually 15 minutes late because he teaches at another school. He's very lenient and doesn't give homework unless it's requested. He bases his exams on the final questions and does fair grading. Overall, he cares about his students understanding the material. He will take his time to stop to make sure everyone comprehends.", + "pos": 0.158, + "neu": 0.807, + "neg": 0.035, + "_id": { + "$oid": "6711d57ecd60fca157e5d40e" + } + }, + { + "text": "He was never on time for class (his \"earliest\" was 5 minutes late) but he's a really kind and smart professor. He teaches the shortcuts and really goes in depth for certain topics, but I'm not sure if that's a good thing since it can really confuse some people. If you have any questions, ask him!! He'd be happy to explain and help you learn!", + "pos": 0.286, + "neu": 0.654, + "neg": 0.06, + "_id": { + "$oid": "6711d57ecd60fca157e5d40f" + } + }, + { + "text": "He will teach you the \"shortcuts\" the tricks to pass. Other professors teach the long and hardest way, because it is better for college to fail student (economic reasons) so ...he is the best and honest one. Great Professor !!", + "pos": 0.279, + "neu": 0.629, + "neg": 0.092, + "_id": { + "$oid": "6711d57ecd60fca157e5d410" + } + }, + { + "text": "take this class if you want to really learn Math", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d411" + } + }, + { + "text": "Prof Ben ZId is AMAZING.He will prepare you for the exams. I was surprised to find out he has the highest passing ratio in exams. A little strong accent but worth every penny you pay. Math goes easy and smooth...he will teach you many ways in order you understand the content.GREAT PROFESSOR..Students love him. he is funny and approchable.", + "pos": 0.265, + "neu": 0.713, + "neg": 0.022, + "_id": { + "$oid": "6711d57ecd60fca157e5d412" + } + }, + { + "text": "The GREATEST Teacher ever. He really cares about his students and he tries at best of his ability to make the class understand in depth the concepts of the subject. HIGHLY RECOMMEND HIM. I took his class during my 12th grade in high school. all the math i couldn't understand during my high school years, i understood itin two months of class withhim", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d413" + } + }, + { + "text": "Great Professor, really cares and wants you to pass. He does his best so that you do well in his class. I failed this class before but took it again with him and got an A+.", + "pos": 0.211, + "neu": 0.738, + "neg": 0.051, + "_id": { + "$oid": "6711d57ecd60fca157e5d414" + } + }, + { + "text": "Professor BenZid is extremely nice, funny and helpful. He gives people many opportunity to improve their test scores. He gives three exam, a midterm and a final. Two of the exams were take home. I got an A in his class and no one should fail his class, it's that easy", + "pos": 0.266, + "neu": 0.648, + "neg": 0.086, + "_id": { + "$oid": "6711d57ecd60fca157e5d415" + } + }, + { + "text": "people who fail this class, clearly were not working hard enough. He really cares and wants you to pass, if you listen to him and study no way you shouldn't get it. If you are still completley lost after this class you should look into something with less math involved.", + "pos": 0.123, + "neu": 0.742, + "neg": 0.135, + "_id": { + "$oid": "6711d57ecd60fca157e5d416" + } + }, + { + "text": "He is very caring... Loves his students and wants youu to pass. Gives you chance after chance, a very fair grader!!!! Thanks prof!", + "pos": 0.52, + "neu": 0.48, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d417" + } + }, + { + "text": "He really took the time to review the material to make sure we new it. I would definitely recommend him and would take another class with him again in an instant.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d418" + } + }, + { + "text": "I totally enjoyed this man as my professor. He took pre-calculus and broke it down. I truly enjoyed him and once you get it the tests are simple.the quizzes just give you extra points..i just wish he taught higher than 195 because i would take him all over again.... TAKE HIM!!! He prepares you very well for the final as well...nothing to lose..", + "pos": 0.204, + "neu": 0.725, + "neg": 0.071, + "_id": { + "$oid": "6711d57ecd60fca157e5d419" + } + }, + { + "text": "he is hard to understand and doesnt really get you prepared for the finals...Select a different teacher for this class...", + "pos": 0.1, + "neu": 0.835, + "neg": 0.065, + "_id": { + "$oid": "6711d57ecd60fca157e5d41a" + } + }, + { + "text": "Can't teach", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d41b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d57ecd60fca157e5d41c" + } + }, + { + "text": "He is one of the best professor I have ever had. I wish he would teach other levels too. i would take his class anytime because he cares and he is funny. he makes math easy. he loves when students ask questions and tries his best to help you pass. students....if you want to pass math take his class....he is Highly recommended by me...I mean highly!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d41d" + } + }, + { + "text": "What stands about this professor is that sometimes he can be very arrogant at times and ignore your question (depending on your behavior in his class) and can be extremely but other than that he's is an extremely easy professor with 3 midterms (tests) and a few 10th grade quizzes. Personally I'd look for a better teacher.", + "pos": 0.125, + "neu": 0.814, + "neg": 0.061, + "_id": { + "$oid": "6711d57ecd60fca157e5d41e" + } + }, + { + "text": "Prof Benzid is a good professor. He teaches clearly and will go over the work if you don't understand it. As long as you do your HW, pass the quizzes and the midterms then you will most likely pass.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d41f" + } + }, + { + "text": "Nothing is easy in life...everything is done with hard work...I HONESTLY DO NOT ENJOY MATH AT ALL....BUT WHEN I TELL U THIS PROFESSOR WAS EASY...ITS TRUE. i personally thought he was good. yes, sometimes a lil un clear....but quizes are eay..midterms....are only to see how u are doin....and the final of course ..piece of cake.. ..PLEASE TAKE HIM!!!", + "pos": 0.227, + "neu": 0.678, + "neg": 0.095, + "_id": { + "$oid": "6711d57ecd60fca157e5d420" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57ecd60fca157e5d422" + }, + "professor_name": "Shree Saha", + "rating": 3.2, + "department": "Mathematics department", + "comments": [ + { + "text": "This Professor is really great. If I'm being honest, the material was a little difficult to understand but it was fair. He puts in alot of effort to teach us and is very caring so I highly recommend him to anybody who is thinking about taking his class. On a further note, don't fall asleep or else you will be lost lol and try your best. Cheers", + "pos": 0.33, + "neu": 0.621, + "neg": 0.05, + "_id": { + "$oid": "6711d57ecd60fca157e5d423" + } + }, + { + "text": "RUN AWAY!!! He has ZERO teaching ability. He can't even read from slides in a normal way. Assignment not clear at all, and if you ask him something, he just makes it even more confusing and always gives different answers. ZERO GRADES WERE POSTED ON BLACKBOARD! Not one class I was able to understand what he was talking about. Absolutely the worst!", + "pos": 0.033, + "neu": 0.826, + "neg": 0.141, + "_id": { + "$oid": "6711d57ecd60fca157e5d424" + } + }, + { + "text": "Definitely a bad teacher, but his classwork is pretty easy. He doesn't prepare you for the exam and everyone fails. He also \"guesstimates\" the grades based on criteria that has nothing to do with the syllabus, leaving students who actually did well with bad grades.", + "pos": 0.206, + "neu": 0.619, + "neg": 0.174, + "_id": { + "$oid": "6711d57ecd60fca157e5d425" + } + }, + { + "text": "It is difficult. However, if you are consistent and do all of your work on time you can get a good grade. Everyone failed the final exam. I got a 46 on mine. I got 100s on all my homework assignments submitted on time and quizzes ; 90s on my exams and I completed all the extra credit assignments. He definitely curves well based on your efforts.", + "pos": 0.134, + "neu": 0.791, + "neg": 0.075, + "_id": { + "$oid": "6711d57ecd60fca157e5d426" + } + }, + { + "text": "Definitely doesn't give fair grades. I don't understand how people with lesser grades walk away with A's after a curve while I had 90's before the final and same final grade as some people and got a C. If you failed, definitely check again. He also has no fair or clear grading system so using the syllabus is apparently useless.", + "pos": 0.076, + "neu": 0.751, + "neg": 0.173, + "_id": { + "$oid": "6711d57ecd60fca157e5d427" + } + }, + { + "text": "He is super nice and a sweetheart. HOWEVER, he cant teach. Couldnt pay attention in class whatsoever, had to teach myself at the end, managed to pass the final( 65+) while handful failed. In the end, thankful for his curve!", + "pos": 0.28, + "neu": 0.635, + "neg": 0.084, + "_id": { + "$oid": "6711d57ecd60fca157e5d428" + } + }, + { + "text": "Prof. Saha is a GEM. He is very kind and compassionate. This semester was online, so Prof. Park set the final questions. The final was very hard and lengthy. The whole class suffered. Saha was kind enough to curve the score a lot. While teaching, both in class and online, he gave his 100 percent. He also works out lots of examples.", + "pos": 0.146, + "neu": 0.787, + "neg": 0.068, + "_id": { + "$oid": "6711d57ecd60fca157e5d429" + } + }, + { + "text": "Saha is the GOAT. PERIOD!!!! he's not the best lecturer, and since this semester was online, Park made the final 65% of the grade. the whole class ended failed, but we still got A and B bc Saha curved ode. Make sure you do the homework and extra credit and go to lectures and you will definitely get an A or B.", + "pos": 0.153, + "neu": 0.787, + "neg": 0.06, + "_id": { + "$oid": "6711d57ecd60fca157e5d42a" + } + }, + { + "text": "Tbh Saha isnt good at teaching at all... BUT this man CARES about his students. There are no real tests besides the midterm and final. Your grade is based on quizzes and hw for the most part (which are almost always online). BUT! Despite all that.. still TAKE HIM IF YOU CAN! I promise its an easy A. Just show up to lecture and do the hw", + "pos": 0.158, + "neu": 0.785, + "neg": 0.057, + "_id": { + "$oid": "6711d57ecd60fca157e5d42b" + } + }, + { + "text": "Wants his students to learn in his class and cares. Gives 4-6 quizzes, midterm, and final and tries to review for everything. Very easygoing with homework deadlines, but is not clear when he teaches. The whole class was lost most of the time. Easy to zone out in class and his accent doesn't help so good luck", + "pos": 0.23, + "neu": 0.655, + "neg": 0.115, + "_id": { + "$oid": "6711d57ecd60fca157e5d42c" + } + }, + { + "text": "he's so nice and caring, he doesn't know how to deliver the information to the class, but 209 isn't that hard. take him he grades really easy, and he drops two quizzes.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d42d" + } + }, + { + "text": "He's a great person but an okay professor. Just stay on top of the online work and attend the lectures. the tests counts as a lot but not doing the hw will hurt a lot", + "pos": 0.166, + "neu": 0.726, + "neg": 0.108, + "_id": { + "$oid": "6711d57ecd60fca157e5d42e" + } + }, + { + "text": "This Professor was very kind and caring towards his students. He wants to make sure you understand the material. This class is hard, but he curves and wants you to pass. REAL GEM! Department Final but if you take a PM section He makes the Final. All HW is departmental on Webwork. DO THE WORK and PAY ATTENTION! He teaches very WELL.", + "pos": 0.155, + "neu": 0.79, + "neg": 0.055, + "_id": { + "$oid": "6711d57ecd60fca157e5d42f" + } + }, + { + "text": "Professor Sha is one of the most lenient professors I have ever had For example, he has an online hw system, but he always willing to extend the due date He also gives extra credit towards your final grade and curves too Yes he may have a strong accent but if you ask him questions, he can clarify. His questions come from the book An A is doable", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d430" + } + }, + { + "text": "He's a great teacher, though he has an accent which could be tedious for some students to understand. But as far as you dedicate your time, and follow his lectures, you will have a better understanding. My math knowledge truly improved a lot better.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d431" + } + }, + { + "text": "He's nice, but in all honesty, he isn't the greatest. He doesn't explain his work and he got confused when doing work on the board. He really wants the best for students, but he fails to explain. I recommend watching YouTube videos to understand the material better (that's how I got an A) or find a tutor. Practice many problems, and you will pass", + "pos": 0.218, + "neu": 0.616, + "neg": 0.165, + "_id": { + "$oid": "6711d57ecd60fca157e5d432" + } + }, + { + "text": "My mathematics knowledge improved after taking his class.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d433" + } + }, + { + "text": "Prof. Saha is one of the best Maths teacher of City College. He is the only Professor who shows individual caring for the students. He is ready to answer all the questions and always clear our doubts. If you follow his class regularly and sincerely, the subject becomes much more easier. His classes are interactive. His exams are easy.", + "pos": 0.289, + "neu": 0.682, + "neg": 0.029, + "_id": { + "$oid": "6711d57ecd60fca157e5d434" + } + }, + { + "text": "he doesnt wait for students to finish reading his lecture notes, and moves really fast.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d435" + } + }, + { + "text": "He's a really nice guy and cares about his students. But let's face it, the greatest person in the world can also not be able to teach; Professor Shree is one of them. He doesn't have a clear lesson plan, and often just reads what the textbook says (during class), he doesn't teach it to you. He seems too overworked, and can't focus on being a prof", + "pos": 0.13, + "neu": 0.833, + "neg": 0.037, + "_id": { + "$oid": "6711d57ecd60fca157e5d436" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57ecd60fca157e5d438" + }, + "professor_name": "Henry Huttenbach", + "rating": 2.5, + "department": "History department", + "comments": [ + { + "text": "Dr. Huttenbach was wonder! His class was extremely interesting. Thats coming from an African American. He directed me to wonderful research topic in 2004: the first act of genocide in the twentieth century in Namibia by the Germans in1902.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d439" + } + }, + { + "text": "At the time I didn't appreciate Prof. H was. I took a European history class and also a class about genocide in early 90's. Prof H. is hard-I got my first C in his history class. I was a smart kid used to A's and B's w/out trying. For the first time I had to WORK & THINK-not a bad thing. As for approachable-he was very kind once I got to know him.", + "pos": 0.079, + "neu": 0.85, + "neg": 0.071, + "_id": { + "$oid": "6711d57ecd60fca157e5d43a" + } + }, + { + "text": "He is beyond retirement age - a monotonous tone and expressionless demeanor. He sits in a chair and talks from there the whole class. He also makes disparaging remarks about religion that are unfounded, of no consequence to the class, and can easily offend anybody. I would strongly advise against taking his class.", + "pos": 0.075, + "neu": 0.799, + "neg": 0.126, + "_id": { + "$oid": "6711d57ecd60fca157e5d43b" + } + }, + { + "text": "I have the feeling that I was not studying with the same Huttenbach.My Huttenbach as amazing, wonderful, thoughtful, helpful and in every way shaping my academic world!I heart Professor H. !!!", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d43c" + } + }, + { + "text": "This teacher is the worst in the entire college. He messed up my grades like nothing. he is not helpful at all and should retire asap. He does not belong in a teaching institution. First off, he does not know how to teach. he expects you to know everything and his lectures are useless. He doesn't care at all about students performances. AVOI", + "pos": 0.034, + "neu": 0.773, + "neg": 0.193, + "_id": { + "$oid": "6711d57ecd60fca157e5d43d" + } + }, + { + "text": "I had to take this class b/cuz its requirement. Huttenbach is funny at times and talks very softly. even if you're sitting in the first row, you can barely hear him. he barely uses the book and his lectures are useless. Avoid him!!!", + "pos": 0.059, + "neu": 0.82, + "neg": 0.12, + "_id": { + "$oid": "6711d57ecd60fca157e5d43e" + } + }, + { + "text": "I took World Civ with Prof. Huttenbach in the 90's and it sounds like he is the same. I was a hardworking A student, but I got my first and only B in his class--that was because his exams were all essay exams and graded very subjectively; we were not told what terms MUST be used on the exams and I don't think he really read all those hundreds of e", + "pos": 0.024, + "neu": 0.976, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d43f" + } + }, + { + "text": "This professor should retire. He is so mean and unhelpful and pray to your GOD if you disagree with him. His tests are unnecessarily hard and he does not seem to care for the students. DO NOT take this professor under any circumstance.", + "pos": 0.103, + "neu": 0.764, + "neg": 0.133, + "_id": { + "$oid": "6711d57ecd60fca157e5d440" + } + }, + { + "text": "Contrary to popular opinions I found Prof Huttenbach to be helpful , approchable , extreamly funny,very current and not in the least boring. He can be a bit intimidating at first glance . Nevertheless he was quite passionate about his subject and cares that his students leave with more than a passing grade. Keep up the good work Professor .", + "pos": 0.234, + "neu": 0.71, + "neg": 0.056, + "_id": { + "$oid": "6711d57ecd60fca157e5d441" + } + }, + { + "text": "3 hard exams no chance for a makeup. Distorted view of history. Boring, and full of crap.", + "pos": 0.0, + "neu": 0.528, + "neg": 0.472, + "_id": { + "$oid": "6711d57ecd60fca157e5d442" + } + }, + { + "text": "He is funny that something i dont take from him! But his test are super hard!! He dont follow the text book! The Final exam is 4 essay in in less than 3 hour!!!! Try to take another Prof, becuase w/ this one you will suffer!!!", + "pos": 0.149, + "neu": 0.739, + "neg": 0.112, + "_id": { + "$oid": "6711d57ecd60fca157e5d443" + } + }, + { + "text": "Knowledgeable man! However, he deviates from the topic. Not easily approachable & students hardly asked questions. The textbook was horrible & not in any order, which made studying for the midterm & final harder. The final was exhausting- 4 essays in the alotted time. I felt like I didn't know enough about the historical topics to write well.", + "pos": 0.07, + "neu": 0.804, + "neg": 0.126, + "_id": { + "$oid": "6711d57ecd60fca157e5d444" + } + }, + { + "text": "Maybe in his prime he was a good teacher. But he only babbles on all class long and does not follow the textbook. He also grades weird, when I thought I did good I did bad and vice versa. Do not take his class.", + "pos": 0.11, + "neu": 0.76, + "neg": 0.129, + "_id": { + "$oid": "6711d57ecd60fca157e5d445" + } + }, + { + "text": "This class is very boring. He dosen't teach according to the textbook and he is very sarcastic. Avoid him", + "pos": 0.0, + "neu": 0.685, + "neg": 0.315, + "_id": { + "$oid": "6711d57ecd60fca157e5d446" + } + }, + { + "text": "I took Prof. Huttenbach's wonderful Russian History class in 1975 and I loved every minute of it. He is a passionate man with a deep sense of ethics. Students who do not appreciate him are morons.", + "pos": 0.236, + "neu": 0.666, + "neg": 0.098, + "_id": { + "$oid": "6711d57ecd60fca157e5d447" + } + }, + { + "text": "The worst teacher I've so far at ccny. on my exams i got B's and A's but as for the final grade he gave me a C+. I have no idea how he grades.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d57ecd60fca157e5d448" + } + }, + { + "text": "hard test and not a helpful professor.", + "pos": 0.0, + "neu": 0.573, + "neg": 0.427, + "_id": { + "$oid": "6711d57ecd60fca157e5d449" + } + }, + { + "text": "Great brilliant knowledgeable professor", + "pos": 0.798, + "neu": 0.202, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d44a" + } + }, + { + "text": "Arrogant. Unhelpful. Demeaning. Insulting. Martinet. Complete lack of people skills. Lecture often lagged. I dropped this class after 3 weeks. Never regretted doing it. If you are not a history major do not take any of his classes, it will deflate your gpa and consume so much of your time.", + "pos": 0.038, + "neu": 0.775, + "neg": 0.188, + "_id": { + "$oid": "6711d57ecd60fca157e5d44b" + } + }, + { + "text": "I took a history course with Henry Huttenbach 26 years ago. I still remember how wonderful it was. I'm glad he's still teaching.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d57ecd60fca157e5d44c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57fcd60fca157e5d44e" + }, + "professor_name": "Mi Ok Lime", + "rating": 1.6, + "department": "Mathematics department", + "comments": [ + { + "text": "Extremely difficult to understand, was unsure what i was even learning.", + "pos": 0.0, + "neu": 0.653, + "neg": 0.347, + "_id": { + "$oid": "6711d57fcd60fca157e5d44f" + } + }, + { + "text": "It's really hard to understand her and basically I had to do everything myself.", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d57fcd60fca157e5d450" + } + }, + { + "text": "She's nice but we didn't really understand each other. Had to use outside resources to help me pass the class. Doesn't reply to emails as much, so it's best to talk to her after class.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d57fcd60fca157e5d451" + } + }, + { + "text": "she grades so harshly. Takes off too many points for micro mistakes. Lectures can become messy because there isn't a clear path for her to reach the solution. She's bad at teaching. Avoid if you can.", + "pos": 0.075, + "neu": 0.64, + "neg": 0.285, + "_id": { + "$oid": "6711d57fcd60fca157e5d452" + } + }, + { + "text": "Worst class ever! She talks way too fast/goes over things extremely quickly so if you write slow prepare for that. She has an incredibly thick accent so I couldn't even understand what she was saying half the time. Unfortunately this was the only class I could take to fit my schedule and it was all for nothing because I had to drop the course 0/10", + "pos": 0.035, + "neu": 0.843, + "neg": 0.123, + "_id": { + "$oid": "6711d57fcd60fca157e5d453" + } + }, + { + "text": "I will NEVER take this class again!! If you take this class, you're most likely are going to have to get tutors to help you understand the topics or you are going to have to teach yourself. This is completely stress you out the most if you do not have enough time to study the math material. She moves by so FAST! WORST!", + "pos": 0.037, + "neu": 0.832, + "neg": 0.13, + "_id": { + "$oid": "6711d57fcd60fca157e5d454" + } + }, + { + "text": "I'm not going to lie but her class is one of the WORST classes ever to be honest! The sad part about this is that she is a nice professor, but she is not understanding with the fact that some students can not be able to catch up based on her moving from topic to topic all the time. She doesn't have the time to review the topics. WORST!", + "pos": 0.09, + "neu": 0.708, + "neg": 0.202, + "_id": { + "$oid": "6711d57fcd60fca157e5d455" + } + }, + { + "text": "She was a nice professor but her class was really hard to manage, especially when dealing with the fact that the class is run in the summer at 1 month. I couldn't be able to catch up and fully understand the topics that fast in 1 month. She also is very fast and you are going to have to teach yourself outside of class. I DO NOT RECOMMEND THIS CLASS", + "pos": 0.026, + "neu": 0.9, + "neg": 0.074, + "_id": { + "$oid": "6711d57fcd60fca157e5d456" + } + }, + { + "text": "I took this course as I had no other options that fit my schedule. She has a thick accent so it is difficult to understand her, she also speedruns through the subjects. You will have to teach yourself EVERYTHING. There was 3 exams and 6 quizzes. I do NOT recommend her, save yourself and take another professor if available.", + "pos": 0.038, + "neu": 0.816, + "neg": 0.147, + "_id": { + "$oid": "6711d57fcd60fca157e5d457" + } + }, + { + "text": "Taking this class was unfortunately not my choice. It was the only thing that fit in my schedule. I had high hopes that I'd do well, given my decent grades in prior courses. I was wrong. Her accent creates a heavy barrier for students to understand. Although she is smart and doesn't mean bad, I could not understand a single thing she said.", + "pos": 0.198, + "neu": 0.71, + "neg": 0.092, + "_id": { + "$oid": "6711d57fcd60fca157e5d458" + } + }, + { + "text": "She tries her best to make sure everyone understands each individual topic and is open to discuss any previous topic with you. She does have an accent but you do eventually get used to it. Be prepared to study on your own if you don't ask questions.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d57fcd60fca157e5d459" + } + }, + { + "text": "She honestly might take Eminem's record for fastest rapper alive at the rate she covers material. I can't catch up with all the material she's throwing at us. The quizzes are by far the most appropriate use of the \"what the teacher taught us\" and \"what was on the test\" meme. It's ridiculous.", + "pos": 0.096, + "neu": 0.861, + "neg": 0.043, + "_id": { + "$oid": "6711d57fcd60fca157e5d45a" + } + }, + { + "text": "Worst teacher I've ever had in my life. Terrible thick accent completely doesn't know how to communicate and help the students. Constantly lost herself and doesn't understand simple questions. Blames you entirely and has high expectations for such a low-quality professor. I would not recommend ever taking her no matter what. Definitely stay away!!!", + "pos": 0.08, + "neu": 0.68, + "neg": 0.24, + "_id": { + "$oid": "6711d57fcd60fca157e5d45b" + } + }, + { + "text": "she's honestly a hard prof to work with. she's not lenient and only works based on the syllabus from the math dept. her lectures are super fast-paced and jumps from topic-to-topic. there's no extra credit and ur grade is based only on exams. if u can take another prof, TAKE ANOTHER PROFESSOR!!! she can also be a little rude at times ://", + "pos": 0.094, + "neu": 0.753, + "neg": 0.153, + "_id": { + "$oid": "6711d57fcd60fca157e5d45c" + } + }, + { + "text": "Honestly, I'm not even going to drag it, she's one of the worst professors I have ever had. You will literally have to teach yourself all the material because she doesn't help at all. She rushes through topics and does not even give out practice tests or quizzes. Very unprofessional and just outward bad.", + "pos": 0.045, + "neu": 0.723, + "neg": 0.231, + "_id": { + "$oid": "6711d57fcd60fca157e5d45d" + } + }, + { + "text": "Professor Lime is okay just be ready to take notes of everything she writes down and she writes really fast because those notes are going to save you for the exams there only 3 exams counting the final and trust me Im always lots of it werent for the notes I took she just smashed the Question and goes through a lesson really fast but not a bad", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d57fcd60fca157e5d45e" + } + }, + { + "text": "Professor Lime is very smart but when it comes to teaching, it is very difficult to learn. Her teaching style is not so organized so I had to learn by myself through the homework and textbook. She is really nice but I just didn't understand the way she taught, and most of the class can agree on that.", + "pos": 0.14, + "neu": 0.805, + "neg": 0.055, + "_id": { + "$oid": "6711d57fcd60fca157e5d45f" + } + }, + { + "text": "Do not recommend. I mean Shes okay and you can tell shes really nice and smart BUT her accent is super thick and its hard to understand most of the time and everything just went from bad to worse online because it was hard to understand the more harder topics in precalc when she would only go straight to the math w/o explaining.", + "pos": 0.165, + "neu": 0.664, + "neg": 0.171, + "_id": { + "$oid": "6711d57fcd60fca157e5d460" + } + }, + { + "text": "She is a nice person but when it comes to her teaching it is very disappointing. I did not understand her at all and she jumps from topic to topic. She is not clear with her lectures so be prepared to teach yourself outside of class. I gave her 2 stars because she is nice and caring. I do not recommend but if you are stuck with her good luck to you", + "pos": 0.216, + "neu": 0.651, + "neg": 0.133, + "_id": { + "$oid": "6711d57fcd60fca157e5d461" + } + }, + { + "text": "This professor is really hard to understand as well as what she wants her students to do in certain assignments. She has an accent, and the way she teaches her concepts can be confusing. The textbook also contains texts that are not written in proper English.", + "pos": 0.084, + "neu": 0.843, + "neg": 0.072, + "_id": { + "$oid": "6711d57fcd60fca157e5d462" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d57fcd60fca157e5d464" + }, + "professor_name": "Jonathan Levitt", + "rating": 3.7, + "department": "Biology department", + "comments": [ + { + "text": "He has great lectures and he works very hard to help students understand the material. I highly recommend students take his course. Its tough but totally worth it!", + "pos": 0.279, + "neu": 0.645, + "neg": 0.076, + "_id": { + "$oid": "6711d57fcd60fca157e5d465" + } + }, + { + "text": "Very strict about grades outlined in the syllabus. NO OPPORTUNITIES FOR EXTRA CREDIT. failed miserably on one of the midterms but I still passed the class. didn't really pay attention to lectures, but I read the textbook. A couple repeat questions used on the final so go over progress quizzes and workshop quizzes. workload isn't too bad.", + "pos": 0.173, + "neu": 0.717, + "neg": 0.11, + "_id": { + "$oid": "6711d57fcd60fca157e5d466" + } + }, + { + "text": "Dr. Levitt himself seems to be a nice guy. However, this class was one of the most annoying classes I've taken at CCNY. It's a 200 level course but there is SO MUCH WORK. On the plus side, nothing counts for much. The downside is that there is so much busy work. His lectures are very roundabout and don't always correlate to the exams.", + "pos": 0.028, + "neu": 0.905, + "neg": 0.067, + "_id": { + "$oid": "6711d57fcd60fca157e5d467" + } + }, + { + "text": "Prof. Levitt is a nice guy but he makes the material a lot of more complicated then it needs to be. He likes to throw in tricky, short answer questions on exams. The exams don't require a lot of memorization of terms but they do require a deep understanding of the material. Go to lecture, ask questions. He curves in the end.", + "pos": 0.084, + "neu": 0.887, + "neg": 0.029, + "_id": { + "$oid": "6711d57fcd60fca157e5d468" + } + }, + { + "text": "Decent lecturer, keeps it fun with clicker points/trivia questions. But, he thinks *tricking*teaching. Dont take this class with other sciences as this class will require more time than upper level bios. Studied extensively, reading the textbook & quizlet qs & still averaged on exams. Exam avgs were 40-60 and no curve. Tough, best to avoid.", + "pos": 0.146, + "neu": 0.768, + "neg": 0.086, + "_id": { + "$oid": "6711d57fcd60fca157e5d469" + } + }, + { + "text": "The other reviews were right. I had 88 average on midterm and final. Still got an \"A\". Earn as many points as possible in lab though. Lab Practical Final Exam pretty straightforward as long as you pay attention. Not much detail or memorization or reading required. Common sense is needed for this course. Think about how and why an animal works.", + "pos": 0.05, + "neu": 0.928, + "neg": 0.022, + "_id": { + "$oid": "6711d57fcd60fca157e5d46a" + } + }, + { + "text": "Levitt is an amazing professor, hes really into getting his lecture across. He's hilarious and such a sweet heart. He really cares if his students understand the material. And even if you aren't doing so well, he'll pass you. His exams were tough but the class was worth it.", + "pos": 0.265, + "neu": 0.713, + "neg": 0.022, + "_id": { + "$oid": "6711d57fcd60fca157e5d46b" + } + }, + { + "text": "He was a great professor and very passionate and clear about the material. He did teach the class with another instructor who's abilities were lacking- and I don't know who made the tests, but they were TOUGH and the wording was confusing. The material is also pretty difficult to grasp, in order to do well you have to read A LOT. Not easy A or B", + "pos": 0.184, + "neu": 0.676, + "neg": 0.14, + "_id": { + "$oid": "6711d57fcd60fca157e5d46c" + } + }, + { + "text": "Professor Levitt is one of the best professors I've had at CCNY. His lectures are crystal clear and he makes you want to pay attention to everything he teaches. Fascinating topics. This has been one of my favorite classes, and I still use what I learned in this class. He's very passionate about the subject and it shows. Highly recommend him!", + "pos": 0.282, + "neu": 0.699, + "neg": 0.018, + "_id": { + "$oid": "6711d57fcd60fca157e5d46d" + } + }, + { + "text": "Professor Levitt is pretty much useless. He spends his time lecturing things he does not test us on. If you want to do well make sure you understand the textbook well and use knowledge from upper level classes. You work hard in this class especially in lab, but its only worth 45% of your grade.Get as much points in lab because the tests are hard!", + "pos": 0.149, + "neu": 0.785, + "neg": 0.066, + "_id": { + "$oid": "6711d57fcd60fca157e5d46e" + } + }, + { + "text": "The class is hard and you will have to be on top of your work, but he is a great prof. and will do his best to make you understand the material. He wants his students to do well and is more than happy to help them outside the classroom. He is interested in how much effort you put into the class and he does curve at the end of the semester.", + "pos": 0.301, + "neu": 0.686, + "neg": 0.013, + "_id": { + "$oid": "6711d57fcd60fca157e5d46f" + } + }, + { + "text": "Prof levitt has to be the best bio prof I've ever had and yes I've had many. Although he may be tough and tricky, his lectures are extremely helpful and he makes sure he explains a point before moving on. His not like other bio prof were you learn terms and your good u have to apply what you've learned. Record lectures!!!!", + "pos": 0.216, + "neu": 0.715, + "neg": 0.069, + "_id": { + "$oid": "6711d57fcd60fca157e5d470" + } + }, + { + "text": "all bio classes, neuroscience or bio of organisms etc, he is gonna make u understand how a system works and not make you memorize. whatever you will learn in his class, you will retain that info. EXAMS are not hard at all, as long as you understand what he taught in class. record his lectures, cuz nothing useless is said.", + "pos": 0.059, + "neu": 0.941, + "neg": 0.0, + "_id": { + "$oid": "6711d57fcd60fca157e5d471" + } + }, + { + "text": "Be sure to have a general bio textbook handy for reference. At the beginning of the semester don?t waste your ink and paper on any administrative paperwork. It will all be provided. \r Pay attention to everything said in class. Nothing useless is ever said. Everything he utters is tested one way or other. Write on the lecture slides during class. It", + "pos": 0.07, + "neu": 0.866, + "neg": 0.064, + "_id": { + "$oid": "6711d57fcd60fca157e5d472" + } + }, + { + "text": "Very hard course. I escaped with an A by praying :). He curves in the end so an 88 will get you an A and 86 an A-. Get as many points as you can from lab since thats 45% of the grade. In fact you can not get a 90 on any of his tests and still theoretically get an A in the class (My highest test was 91.) KEY ADVICE: Get all the lab points please!", + "pos": 0.061, + "neu": 0.887, + "neg": 0.051, + "_id": { + "$oid": "6711d57fcd60fca157e5d473" + } + }, + { + "text": "Levitt is a GREAT prof. I have never worked so hard in a class, but it was VERY interesting and I actually enjoyed coming to class. The tests a very thought provoking and you have to really know your material (not straight out of the book questions at all) but he's helpful and I would really get to know him in office hrs. - trust me, it helps.", + "pos": 0.27, + "neu": 0.663, + "neg": 0.068, + "_id": { + "$oid": "6711d57fcd60fca157e5d474" + } + }, + { + "text": "He has a degree in biophysics/psychology-so he really has no idea about physiology. His lectures and tests are very ambiguous (he tries to outwit u). The tutorials take forever-take the labs seriously becuz that is 1/2 ur grade. We barely used the book. Review his slides for the tests.", + "pos": 0.0, + "neu": 0.918, + "neg": 0.082, + "_id": { + "$oid": "6711d57fcd60fca157e5d475" + } + }, + { + "text": "Hardest part of this class = understanding how to obtain/use the information given to you. Once you get used to the questions he asks on his test (most of them are tricky, he's very textbook based) it all comes together. He's very smart, and the class is overall interesting. Its tough, but worth it.", + "pos": 0.107, + "neu": 0.849, + "neg": 0.044, + "_id": { + "$oid": "6711d57fcd60fca157e5d476" + } + }, + { + "text": "half of students droped this class because of his tests. he is a genious no doubt but i think he expect too much out of you and expect you to read and know the book inside out, his quizes are very tricky not to mention includes calculations too, i think the only way to get an A- or B in this class is to give up your life and drop all other courses", + "pos": 0.02, + "neu": 0.915, + "neg": 0.065, + "_id": { + "$oid": "6711d57fcd60fca157e5d477" + } + }, + { + "text": "he is extraordinary genious person, his tests are PRETTY hard, im warning you.. you would only take his class if you like challenging yourself and are willing to work veryyy hard. only then u can get B+. so in short this class is for nerds, but if you are looking to get an easy A this class is not for you.", + "pos": 0.139, + "neu": 0.8, + "neg": 0.061, + "_id": { + "$oid": "6711d57fcd60fca157e5d478" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d580cd60fca157e5d47a" + }, + "professor_name": "Michael Busch", + "rating": 4.8, + "department": "Political Science department", + "comments": [ + { + "text": "MAN! PROFESSOR BUSCH IS AMAZING! HIS LECTURES ARE ON POINT! HIS LEVEL OF ENTHUSIAM IS ON POINT! HE IS SO INTELLEGENT! YOU WILL NOT RECEIVE ANOTHER PROF. LIKE HIM! SO IF YOU HAVE THE OPPORTUNITY TO TAKE HIM, TAKE HIM! I'VE DEVELOPED SO MANY SKILLS FROM HIM, I CAN'T WAIT TO COME ACROSS THIS PROF AGAIN IN THE FUTURE. PROF, THANK YOU! FROM, TG", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d47b" + } + }, + { + "text": "Amazing Lectures ! Lectures are well thought out and discussed , they also include current events", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d47c" + } + }, + { + "text": "This course was reading and lecture intensive but not so much for the writing. Although, it was mostly the professor lecturing he opened every class with a discussion on current events allowing us to bring in outside material or pose questions we had about things going on around us. Professor Busch was also very encouraging & caring", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d47d" + } + }, + { + "text": "We spoke about recent events in the class which connected to every reading he ever gave. Readings are not that long but are interesting. Final paper is about 10 pages and the final exam and midterm are a breeze.", + "pos": 0.085, + "neu": 0.915, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d47e" + } + }, + { + "text": "He is an amazing professor that is very helpful and give extremely good feedback to you for your work even though it can be a bit late at times he gives almost a page of review on your work and he is great to talk to outside of class.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d47f" + } + }, + { + "text": "He genuinely cares about his students. If you need help with something involving class or not (ex. cover letters) he's more than happy to help. Lectures are great because he's energetic. There's a lot of reading but it's all relevant.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d480" + } + }, + { + "text": "This is the best teacher to take if you have a full time job. He understands well where you come from. His lectures are interesting, one test online, final test on site. Lets you use notes and ppt slides. Easy A if you show up and do your weekly assignments. Extra credit too WPUNJ", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d481" + } + }, + { + "text": "There are tons of readings for his class, but you do not have to absolutely read everything. I was not really interested in economics at all, but he made me be! I would say it is an easy A if you work hard to get that.", + "pos": 0.074, + "neu": 0.828, + "neg": 0.098, + "_id": { + "$oid": "6711d580cd60fca157e5d482" + } + }, + { + "text": "The best class you will ever take. This professor is absolutely amazing. Makes the material very interesting. class consists of midterm and final and a 15 page final paper", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d483" + } + }, + { + "text": "He is a very nice teacher and is very laid back. Attendance is mandatory and the class consists of a lot of reading you need to read three textbooks and blackboard is used a lot. The midterm and final is an essay he gives you three choices you pick two to practice in the test you pick one, and the final paper is 15 pages due the day of the final", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d484" + } + }, + { + "text": "This professor is amazing, he cares about his class and students. So much respect for him, I never turn off my cellphone but I always did so in his class. Take him, you have so much to learn from him. Do your readings, take notes and study your notes and you will be fine.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d485" + } + }, + { + "text": "Sometimes when I'm feeling down I think of Professor Busch's smiling eyes.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d486" + } + }, + { + "text": "INTL POLI ECO. Buschs class was always entertaining. Lots of Reading, but he breaks it down, so it becomes clear to understand. 15pg paper. Midterm and Final are not hard. very opinionated and honest. Great Class. Material is engaging too. Make sure to do the readings. Highly recommended.", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d487" + } + }, + { + "text": "take this class youll never miss his class becuase its very interesting. he is the best teacher that the political science department could ever have. he is amazing, helps you a lot and always give good grades.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d488" + } + }, + { + "text": "I absolutely loved his teaching style. It was my favorite class, he is so interesting and passionate. He is a great speaker, it was hard to find a seat in class because people rushed to be there ahead of time. It was crazy. He gives the questions for the exam ahead of time. The final paper is short (8-10 pages). Plus he is a hottie!", + "pos": 0.233, + "neu": 0.72, + "neg": 0.047, + "_id": { + "$oid": "6711d580cd60fca157e5d489" + } + }, + { + "text": "He's a great prof got an A- in his class .The class was always interesting and never boring. My advise to anyone who is considering taking him dont fall behind in your readings because there is alot.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d48a" + } + }, + { + "text": "he's hot hot hot ******;)very funny..relaxed,,and very very interesting..luvvvv his clas.. neva missed any of his classes..they're way too interesting & helpful =)crystal clear..very informative and just a gr8 prof eva!!!", + "pos": 0.257, + "neu": 0.687, + "neg": 0.056, + "_id": { + "$oid": "6711d580cd60fca157e5d48b" + } + }, + { + "text": "All around good guy ..take him", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d48c" + } + }, + { + "text": "Extremely interested in his subject. If you do the readings, you'll be fine. (lots of interesting articles, less focus on the textbook)Class discussions are great. Tests are in essay format . Midterm, final + 7-10 page paper.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d48d" + } + }, + { + "text": "He is an excellect professor. If one wants to learn politics without studying books, he is the best source. No one should ever regret taking courses with Michael Busch.", + "pos": 0.119, + "neu": 0.739, + "neg": 0.142, + "_id": { + "$oid": "6711d580cd60fca157e5d48e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d580cd60fca157e5d490" + }, + "professor_name": "Leo Fuentes", + "rating": 4.2, + "department": "Fine Arts department", + "comments": [ + { + "text": "Professor Fuentes is a super chill guy who lets you take your time with your paintings. You honestly just have to keep up with the projects and make sure you don't fall behind. If you want to be in a class where stress is non-existent and you can create your own piece of art, take his class! He's an easy A if you really show him your effort!", + "pos": 0.201, + "neu": 0.764, + "neg": 0.035, + "_id": { + "$oid": "6711d580cd60fca157e5d491" + } + }, + { + "text": "Class is fun and interesting. His midterm and final are about the paintings so make sure you memorize the types of oil paint you use, etc. Make sure you don't miss a class because each painting you'll be doing WILL take time. Especially the final. Artist and Craftsman is the best place to get your materials. Cheap and affordable. Overall, great!", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d492" + } + }, + { + "text": "Even if you try your hardest, he doesnt take that into consideration. Ive taken so many other art classes, even if you are the worst the professors still gave an A. He favors the Hispanics more, so its harder to please him with your work.", + "pos": 0.085, + "neu": 0.833, + "neg": 0.081, + "_id": { + "$oid": "6711d580cd60fca157e5d493" + } + }, + { + "text": "This is one of the best professors I've had at CCNY. He is so nice and a great teacher, he will help guide you and inspire you. Overall this teacher is fantastic and will take more classes with him if I can! If you are an art major, take him! Or, if you want to take an art class, take him! He is just a fun and knowledgable teacher!", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d494" + } + }, + { + "text": "He is such an amazing professor. He's extremely nice and lenient so if you're missing any supplies for a class he'll offer you whatever extras he has which is super sweet of him. It's a really chill class so you paint the way he teaches and listen to music and work independently. And if you need help he will help you out tremendously.", + "pos": 0.273, + "neu": 0.696, + "neg": 0.031, + "_id": { + "$oid": "6711d580cd60fca157e5d495" + } + }, + { + "text": "Very good class, easy, but strict. Take it if you' are also hispanic. He gives hispanics special treatment.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d496" + } + }, + { + "text": "He's really,really,really boring. The supplies are expensive but that's a given since it's art course. He doesn't really tell you how well you are doing. He's boring. The class is long and very boring. Not taking this class again.", + "pos": 0.058, + "neu": 0.767, + "neg": 0.175, + "_id": { + "$oid": "6711d580cd60fca157e5d497" + } + }, + { + "text": "Professor Fuentes is one of my favorite professors at City. He is very helpful and patient. He also gives great advice. He's a fair grader and wants you to enjoy yourself. If I could I would take another class with him again.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d498" + } + }, + { + "text": "he is one of the best professors i have ever taken. he is a kind individual very relaxing. her TA MIRI is my favorite. i wish she was my sister. i will always miss Miri.", + "pos": 0.354, + "neu": 0.612, + "neg": 0.034, + "_id": { + "$oid": "6711d580cd60fca157e5d499" + } + }, + { + "text": "He is very caring and nice to all of his students. He explains his subjects very clearly and gives you enough time to complete the projects. Highly recommended! I love his class.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d49a" + } + }, + { + "text": "Great professor. He grades you based on your effort and is very helpful. Highly recommended.", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d49b" + } + }, + { + "text": "He is a very good professor. Period.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d49c" + } + }, + { + "text": "He is a good professor!", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d49d" + } + }, + { + "text": "Professor Fuentes is one of my favorite professors in the Art Department. Aside from being very knowledgeable in painting, he is also a great advisor. He offers advice and always has time for his students. Fuentes, also comes to the school even when it isn't his time to teach, so you can always ask for his help. TAKE THIS CLASS!! Very Relaxing. :", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d49e" + } + }, + { + "text": "Professor Fuentes is one of my favorite professors in the Art Department. Aside from being very knowledgeable in painting, he is also a great advisor. He offers advice and always has time for his students. Fuentes, also comes to the school even when it isn't his time to teach, so you can always ask for his help. TAKE THIS CLASS!! Very Relaxing. :", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d49f" + } + }, + { + "text": "Leo is a great teacher and gives lots of individual attention to anyone who wants or needs it. He is fair, helpful and as an added bonus, cute.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d4a0" + } + }, + { + "text": "he acts very cool, but he got his fav. in class and a very hard grader. the materials needed for the course will cost you $130-$150, even if your work hard and think you are doing well you will probably get a B- B or B+ if you get lucky. I was dissapointed with his gradings. 1 group proj 1 life proj 1 collge proj & 1 independent proj.", + "pos": 0.154, + "neu": 0.8, + "neg": 0.046, + "_id": { + "$oid": "6711d580cd60fca157e5d4a1" + } + }, + { + "text": "I have taken a variety of painting classes with this professor and have found him to be very knowledgeable, creative, encouraging. He really is one of the best professors that I have ever had in any field. He is very approachable and is an active New York artist.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d4a2" + } + }, + { + "text": "Absolutely the best professor ever! He is very helpful and spends at least 10 mins with students that needed help with their work. Very easy going and approachable. If you need an intro to painting class, he is the professor you should take.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d4a3" + } + }, + { + "text": "very cool professor", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d580cd60fca157e5d4a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d581cd60fca157e5d4a6" + }, + "professor_name": "Stanley Thangaraj", + "rating": 4.5, + "department": "Anthropology department", + "comments": [ + { + "text": "Prof. Thangaraj is one of a kind. His courses are especially difficult, due to the heavy workload (reading/exams). Yet, he is a person you need to have in your life as a colin powell student at city. Not only is he resourceful, but he's amazingly kind and caring. With him in your corner, expect to advance in your professional/academic career.", + "pos": 0.171, + "neu": 0.802, + "neg": 0.027, + "_id": { + "$oid": "6711d581cd60fca157e5d4a7" + } + }, + { + "text": "he's kind of good. He doesn't reply to emails though, which is a bit rude, and wants students to refer to themselves with pronoun usage. Take that for what its worth. This is over the zoom session. Two books, to read. Three writing assignments and a 5 age at the end. Not a bad professor but he has his quirks.", + "pos": 0.082, + "neu": 0.886, + "neg": 0.032, + "_id": { + "$oid": "6711d581cd60fca157e5d4a8" + } + }, + { + "text": "It's not recommended to take this class if you have other things to do around that time since he doesn't tolerate lateness or absence at all. But otherwise, if you're able to read the given stuff, participate, and do all given work, it should be relatively fine to pass the class. He's accessible as well if you have any issues pertaining to the work", + "pos": 0.072, + "neu": 0.908, + "neg": 0.019, + "_id": { + "$oid": "6711d581cd60fca157e5d4a9" + } + }, + { + "text": "Currently taking an online ANTH class with Dr. Thangaraj. As a college senior, I can undoubtedly say that he is my favorite professor. He is so absolutely kind, respectful & its evident that aside from being a good professor, he's a great person. His lectures are interesting, homework is manageable & he is very fair & understanding. 10/10 recommend", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4aa" + } + }, + { + "text": "He is very kind and understanding. The amount of work given in this class is neither too little nor too much. If you do all your homework, you will definitely get at least an A-. Mandatory attendance and 5 min quiz every class. I really don't have anything bad to say about this professor. He teaches well and does more than a professor should.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4ab" + } + }, + { + "text": "Truly a great man. From the first day he was engaging and outgoing. He makes sure everyone is engaged and far from being bored. Quizzes are given each class and are based on the reading; really easy if you read. We watched movies in class and he offered amazing activities and talks outside class for extra credit. This class is truly an experience.", + "pos": 0.35, + "neu": 0.625, + "neg": 0.025, + "_id": { + "$oid": "6711d581cd60fca157e5d4ac" + } + }, + { + "text": "A greatly respected professor, having a hilarious lecture class. participation does matter. Beware of quizzes. He grades fair and square, and according to the grading criterion.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4ad" + } + }, + { + "text": "The professor is very engaging and fun. There are two tests the whole semester and both of them are very easy if you read the textbook and pay attention in class. There is a quiz everyday of class but they are also pretty easy.", + "pos": 0.268, + "neu": 0.709, + "neg": 0.022, + "_id": { + "$oid": "6711d581cd60fca157e5d4ae" + } + }, + { + "text": "Such a caring person. He definitely wants you to be very successful and will give you all the tools to do so through his support. Definitely participate, you'll stand out to him and he'll make that known. Quizzes you on the readings that are due, which are super long and dreadful. Besides that, he's super open and super welcoming of modern society!", + "pos": 0.358, + "neu": 0.609, + "neg": 0.034, + "_id": { + "$oid": "6711d581cd60fca157e5d4af" + } + }, + { + "text": "Very fair and kind professor. It's hard to find professors like him in City College. You won't regret taking his class. Cares about students grade and understandble. Offers extra credit if you dont do well on his quizzes. If you read the assigned text every week, you will defintely get atleast an A- in his class.", + "pos": 0.246, + "neu": 0.707, + "neg": 0.047, + "_id": { + "$oid": "6711d581cd60fca157e5d4b0" + } + }, + { + "text": "Dr. Thangaraj is the best professor I've had so far. He cares about his students and makes sure we are alright whilst giving us exciting information on Anthropology. What you are being graded on is clear: a 2-question multiple choice quiz every class for attendance. He also gives a lot of extra credit opportunities. DO NOT COME LATE TO CLASS.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4b1" + } + }, + { + "text": "He is a great professor. Sometime he will cold call on people so beware of that. Tries to make himself scary or intimidating but is a total sweetheart. There are daily quizzes with 2 questions as attendance, but it can be on anything so DO THE READINGS! Graded by the quizzes, on short paper, and two main tests. Easy A if you do the work and study.", + "pos": 0.165, + "neu": 0.784, + "neg": 0.051, + "_id": { + "$oid": "6711d581cd60fca157e5d4b2" + } + }, + { + "text": "Professor Thangarajs class is lecture heavy but if you actually listen and pay attention its very interesting. I took this class for a credit and still enjoyed it. 2 major tests, one book report/essay. Thats the majority of your grade. Just do the readings and take good notes and youll pass.", + "pos": 0.248, + "neu": 0.727, + "neg": 0.025, + "_id": { + "$oid": "6711d581cd60fca157e5d4b3" + } + }, + { + "text": "This I'm my first semester at city college and Dr. Thangaraj is my already my best professor. He has high expectation with his students and he helps, cares and respect everyone.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4b4" + } + }, + { + "text": "This is my first semester but Dr. Thangaraj is my best experience thus far He has high expectations for his students and always challenges them to push their brains to the next level Extremely clear grading style, immaculate use of pedagogical strategies, very accessibly and reasonable individual Immense wealth of knowledge in his field", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4b5" + } + }, + { + "text": "The lectures were not stimulating and he seems imperious.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d581cd60fca157e5d4b6" + } + }, + { + "text": "PROS: He is one of the best professors in CCNY. He is so nice and open about anything. Thangaraj is a mentor professor because he always explains everything and he will always help you out if you dont understand. Nevertheless, you still have to work hard and participate in his class to get a good grade. CONS: He sometimes contadicts himself", + "pos": 0.189, + "neu": 0.791, + "neg": 0.02, + "_id": { + "$oid": "6711d581cd60fca157e5d4b7" + } + }, + { + "text": "Very boring class and lecture. Be on time because there are quizzes given at the beginning of each class.", + "pos": 0.0, + "neu": 0.874, + "neg": 0.126, + "_id": { + "$oid": "6711d581cd60fca157e5d4b8" + } + }, + { + "text": "Dr. Thangaraj is an amazing professor and all students would be lucky to have him. Unlike any 101 class I've taken, he was interested in how EVERYONE was doing throughout, the true definition of a caring professor. He was also around after class every so often to talk with you 1-on-1 if you had questions. Very interesting class as well!", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4b9" + } + }, + { + "text": "He's a tough professor but he assures you that you will learn a lot from the class and that your next anthropology class will be easier after taking him. He's very strict with attendance and starts on time; he will mark you late even if it's only a minute. I enjoyed his way of teaching, such as a conference setting.", + "pos": 0.162, + "neu": 0.819, + "neg": 0.018, + "_id": { + "$oid": "6711d581cd60fca157e5d4ba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d581cd60fca157e5d4bc" + }, + "professor_name": "Ralph Kopperman", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "Set theory was fun... Wish we had gone over continuum hypothesis more. He explained well, set theory was his thing. I understand that everyone who had him for 391 hates him, but it is clear that he is more of a metalogician than an applied mathematician, so I'd cut him some slack.", + "pos": 0.151, + "neu": 0.765, + "neg": 0.083, + "_id": { + "$oid": "6711d581cd60fca157e5d4bd" + } + }, + { + "text": "Excellent professor and an extraordinarily kind man. I can't see how anyone would say anything negative about Kopperman. He is generous and spends time typing up notes/help/problems. great guy.", + "pos": 0.344, + "neu": 0.569, + "neg": 0.088, + "_id": { + "$oid": "6711d581cd60fca157e5d4be" + } + }, + { + "text": "TOPOLOGY 1, A6300 GOOD LUCK!!! TRUST ME, YOU WILL NEED IT.", + "pos": 0.605, + "neu": 0.395, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4bf" + } + }, + { + "text": "Moderately clear, extremely patient if you have a question. He's crazy smart and can \"talk math\" without writing symbols down. Homework is lengthy, but helpful. He says some hilarious stuff too, which makes class more bearable.", + "pos": 0.25, + "neu": 0.711, + "neg": 0.039, + "_id": { + "$oid": "6711d581cd60fca157e5d4c0" + } + }, + { + "text": "Anyone who gave professor Kopperman a bad review is a moron of neanderthal caliber IQ who shouldn't be taking math in the first place!!!! he's the fairest, friendliest, most caring mathematics professor i know, plus he knows his $#!^!", + "pos": 0.165, + "neu": 0.701, + "neg": 0.134, + "_id": { + "$oid": "6711d581cd60fca157e5d4c1" + } + }, + { + "text": "He's the wrost thing ever. He shouldn't be teaching any courses. Just disgusting.", + "pos": 0.0, + "neu": 0.779, + "neg": 0.221, + "_id": { + "$oid": "6711d581cd60fca157e5d4c2" + } + }, + { + "text": "really bad", + "pos": 0.0, + "neu": 0.209, + "neg": 0.791, + "_id": { + "$oid": "6711d581cd60fca157e5d4c3" + } + }, + { + "text": "If you want to waste your time, money and get a bad grade then take Prof. Kopperman. He is ridiculous, he gave questions which he admitted didn't have any solutions. He is very lazy and write down the exact exercises from the book not teaching anything. If you are already in his class then get out!!!", + "pos": 0.041, + "neu": 0.746, + "neg": 0.213, + "_id": { + "$oid": "6711d581cd60fca157e5d4c4" + } + }, + { + "text": "Prof. Kopperman really cares. He'll devote as much time and energy to you as you need. He's not the best at explaining things, but he's definitely not bad at all. Gives homework every week, and grades it. Doesn't keep to any schedule and didn't really finish all the material, though. Nevertheless, I recommend him.", + "pos": 0.247, + "neu": 0.72, + "neg": 0.033, + "_id": { + "$oid": "6711d581cd60fca157e5d4c5" + } + }, + { + "text": "The person who just reviewed Dr.Kopperman is an idiot. Kopperman requires you to know definitions and theorems, a bare requirement in any math class. He speaks clearly and is very patient with any question you have. If you don't get it of course you're going to fail, jackass.", + "pos": 0.048, + "neu": 0.782, + "neg": 0.171, + "_id": { + "$oid": "6711d581cd60fca157e5d4c6" + } + }, + { + "text": "Avoid at all costs. Grades you on homework but is often too lazy to grade the large amounts of questions he assigns, so he quizzes you on it the first day back after it is assigned. If you didn't understand the questions that wind up on the quiz, you are out of luck. His exam questions are very difficult and he expects you to memorize far too much.", + "pos": 0.052, + "neu": 0.836, + "neg": 0.112, + "_id": { + "$oid": "6711d581cd60fca157e5d4c7" + } + }, + { + "text": "HE is a great professor, although he does go very slow, it is only because he wants to make sure everyone understands the work. He will work with you 1 on 1 and will give you fairness which is very hard to find with math professors. Take his class and as long as you show interest, you will be fine.", + "pos": 0.165, + "neu": 0.81, + "neg": 0.025, + "_id": { + "$oid": "6711d581cd60fca157e5d4c8" + } + }, + { + "text": "yoooooo, my dude is funny!!! he is so funny in class. i neve thought you could laugh at math class before. However, i agree with everyone else- he is very slow in each chapter but he makes sure every student understands each problem!", + "pos": 0.216, + "neu": 0.715, + "neg": 0.069, + "_id": { + "$oid": "6711d581cd60fca157e5d4c9" + } + }, + { + "text": "I think that he's a great professor though sometimes he has an attitude. He's a fair grader. He gives lots of quizzes so that you can keep up to date with the work.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4ca" + } + }, + { + "text": "The worse proffessor in the world", + "pos": 0.0, + "neu": 0.617, + "neg": 0.383, + "_id": { + "$oid": "6711d581cd60fca157e5d4cb" + } + }, + { + "text": "Horrible. While the other teachers covered ten chapters, he barely covered 4. Even if you got an A, you don't know differential equations and will be screwed in subsequent math and engineering courses. Confused himself and the students, tests were way too easy. This is not community college, Kopperman. Stay away!!!", + "pos": 0.049, + "neu": 0.786, + "neg": 0.165, + "_id": { + "$oid": "6711d581cd60fca157e5d4cc" + } + }, + { + "text": "worst professor ever for this course!!!!!!!", + "pos": 0.0, + "neu": 0.487, + "neg": 0.513, + "_id": { + "$oid": "6711d581cd60fca157e5d4cd" + } + }, + { + "text": "It was his first time teaching, however, his way of teaching was clear and simple. Gives quizzes every week or picks up homework, this is good because you always are updated and very prepared for the exams. Even though he didnt finish all the material, he graded just what he covered. His tests arent hard at all.. Easy A", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d581cd60fca157e5d4ce" + } + }, + { + "text": "He was teaching this course the first time and didn't know the material at all. He messed up every ones grades and alot of people failled, because of him. If he teaches this course again plz do yourself a favor and dont take him. Because of him I have to take 391 all over again.", + "pos": 0.068, + "neu": 0.89, + "neg": 0.041, + "_id": { + "$oid": "6711d581cd60fca157e5d4cf" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d581cd60fca157e5d4d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d582cd60fca157e5d4d2" + }, + "professor_name": "Dan Altano", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Although he usually teaches in the morning, he lightens up the mood and definitely keeps me awake with his lectures. Dan is so great because he doesn't feel like a mundane professor! He is just some guy passing us his knowledge. He is clear, concise and will help you in every way to learn. Definitely take this guy because he's the best!", + "pos": 0.266, + "neu": 0.707, + "neg": 0.027, + "_id": { + "$oid": "6711d582cd60fca157e5d4d3" + } + }, + { + "text": "Professor Altano is the best! His lectures are clear and interesting! He cares about his students. He is approachable!! I never knew an English class could be this fun.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4d4" + } + }, + { + "text": "His lectures wont bore you for sure because he wants you to learn unlike some other dumb professors in CCNY", + "pos": 0.166, + "neu": 0.698, + "neg": 0.136, + "_id": { + "$oid": "6711d582cd60fca157e5d4d5" + } + }, + { + "text": "Altano is the homie! He helped me out with many things and honestly, he's very inspirational and will be there for you. I would take his class again and I would recommend this to anyone!", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4d6" + } + }, + { + "text": "Professor Altano is just great! Some things he presents are a little too easy, but you establish a good foundation and really learn how to write concisely. Most assignments were relatively short, so you had to really edit. There was a lot of group work involved as well. He's there to help, even if it's not related to his class.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4d7" + } + }, + { + "text": "Best professor ever. I took Altano my first semester and only realize now how great a professor he really is. Young guy, sense of humor, really smart, and really cares about you and your grade. Occasional vocab assignments, several short papers, and helped us with our finals. Ask this lyrical genius to drop some bars too!", + "pos": 0.246, + "neu": 0.724, + "neg": 0.03, + "_id": { + "$oid": "6711d582cd60fca157e5d4d8" + } + }, + { + "text": "Professor Altano certainly raises the bar when it comes to caring for his students. He is always full of life and enthusiastic about what he teaches. He engages you into the material and makes learning fun! Great professor. Would certainly take again!", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4d9" + } + }, + { + "text": "Awesome teacher. Cares for students. Great personality and passion. Teaches you about the real world. Very humerous and chill overall. For an early class, it was ok. Make sure to take him.", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4da" + } + }, + { + "text": "The best teacher ever, forget all other teachers. Take him!!!! Funny dude and always dresses professionally. Lol sometimes he looks funny, maybe because he has a great personality", + "pos": 0.431, + "neu": 0.524, + "neg": 0.045, + "_id": { + "$oid": "6711d582cd60fca157e5d4db" + } + }, + { + "text": "No one cares about students like Prof. Altano. He is very organized and you write a lot, but he is funny and loves his job. He's just great", + "pos": 0.391, + "neu": 0.528, + "neg": 0.08, + "_id": { + "$oid": "6711d582cd60fca157e5d4dc" + } + }, + { + "text": "HE'S DAA BESSSSTZZ!!! IF he saw my awful grammar, id be toast.", + "pos": 0.0, + "neu": 0.739, + "neg": 0.261, + "_id": { + "$oid": "6711d582cd60fca157e5d4dd" + } + }, + { + "text": "Prof. Altano is the best. I like the way he teaches. I learned so much grammar and he shows you how to write really well.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4de" + } + }, + { + "text": "Altano is not bad at all. He's very nice, dresses casually and does his job. I recommend you take him.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4df" + } + }, + { + "text": "Altano is the best! This class rocks. He is so cool. makes you do a lot of writing, but he has great assignments and he really cares.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4e0" + } + }, + { + "text": "I think he loves his job, I loved his class, didn't wanna miss class because all my other class sucked.", + "pos": 0.322, + "neu": 0.571, + "neg": 0.107, + "_id": { + "$oid": "6711d582cd60fca157e5d4e1" + } + }, + { + "text": "Great teacher. One of my favorites at CCNY. Classes are fun and he keeps it interesting. He makes you write a lot. He's also big on grammar and participation.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4e2" + } + }, + { + "text": "He's the man!!!! Take him and you'll see English at its best. Papers are easy, doesn't always follow syllabus. Tough on grammar but it's only to help you", + "pos": 0.268, + "neu": 0.695, + "neg": 0.036, + "_id": { + "$oid": "6711d582cd60fca157e5d4e3" + } + }, + { + "text": "Professor Altano is the best teacher at City College! You can tell he loves what he's doing. He relates to you and is funny--plus he grades everything and gives you a lot of feedback. I usually hate english but he made it worth it. Take him-you won't regret it.", + "pos": 0.186, + "neu": 0.773, + "neg": 0.041, + "_id": { + "$oid": "6711d582cd60fca157e5d4e4" + } + }, + { + "text": "He specifically tells what he wants in your paper, if you can do that, than you can get a good grade. He's really nice and very charming :)", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d582cd60fca157e5d4e5" + } + }, + { + "text": "This guy is the best teacher ever. Hes nice and funny and he corrects everything you write. I don't like writing, but I did love his class.", + "pos": 0.342, + "neu": 0.614, + "neg": 0.043, + "_id": { + "$oid": "6711d582cd60fca157e5d4e6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d583cd60fca157e5d4e8" + }, + "professor_name": "Kyla Bender-Baird", + "rating": 3.6, + "department": "Sociology department", + "comments": [ + { + "text": "She's a very good prof. there is a weekly discussion board. Make sure you read and do the discussion bard before class or else you won't know what's going on in class. She go over the discussion board. There is 3 easy paper and a final exam. She's nice take her.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d4e9" + } + }, + { + "text": "WOW. AMAZING. Clear, organized, provided great content, I actually enjoyed the class readings and enjoyed the class overall. If you do not want to work for your grade, do not take this class. A LOT of reading but, I enjoyed it so it didn't bother me. Professor Bender-Braid is a true gem. Thank you for being great, especially during these times.", + "pos": 0.406, + "neu": 0.581, + "neg": 0.013, + "_id": { + "$oid": "6711d583cd60fca157e5d4ea" + } + }, + { + "text": "She taught the Social inequality (SOC 309) during the Summer 2020 Term at Lehman College. Be careful with the discussion questions and learning reports. They add up to 70 percent of the grade. Make sure you keep your response simple, straight, and on point. She actually hates long responses because it seems as if you are dominating the discourse.", + "pos": 0.089, + "neu": 0.832, + "neg": 0.079, + "_id": { + "$oid": "6711d583cd60fca157e5d4eb" + } + }, + { + "text": "She's the most boring professor alive, and possibly also the harshest grader. Makes you work hard for an A, as you have to complete 3 essays throughout the class and 1 presentation. You get extra credit if you don't miss more than 5 classes. A great class to do other homework in, as long as she can't tell.", + "pos": 0.157, + "neu": 0.73, + "neg": 0.113, + "_id": { + "$oid": "6711d583cd60fca157e5d4ec" + } + }, + { + "text": "Kyla Bender-Baird is a great professor despite what people are saying about her lectures. Yes, her articles are long, however, you gain knowledge through reading. She examines the articles through class discussions, this way, we are being helped with understanding what we are reading. I respect her work ethics! Participate and you will get an A!", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d4ed" + } + }, + { + "text": "I've had the pleasure to take Kyla Bender-Baird for SOC 31138. Here's the thing with her: if you don't read, you will have no knowledge of what the class discussions are about.. The semester project is very important as it 's accumulated for your overall grade.. ASK QUESTIONS ABOUT THE PROJECT EVEN IF SHE SEEMS PASSIVE ABOUT WHAT YOU'RE ASKING!!!!!", + "pos": 0.14, + "neu": 0.827, + "neg": 0.032, + "_id": { + "$oid": "6711d583cd60fca157e5d4ee" + } + }, + { + "text": "Take this class and you'll literally fall asleep. She lectures so much that you start to do online shopping and buy something just to stay awake. Also, she has so so many papers, and has really specific criteria even though she doesn't tell you anything about it ahead of time. Don't do it to yourself.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d4ef" + } + }, + { + "text": "She's very passionate about what she lectures. Be prepared to read a lot of lengthy articles ahead of time. Her idea of extra credit is if you're always on time and never miss a class. She's a very tough grader, but if you do her assignments on time, she is willing to grade it and give you feedback on how to improve before the deadline.", + "pos": 0.15, + "neu": 0.83, + "neg": 0.02, + "_id": { + "$oid": "6711d583cd60fca157e5d4f0" + } + }, + { + "text": "The professor marks you absent for even being a minute late . Very tough grader , readings were pretty interesting though .", + "pos": 0.221, + "neu": 0.712, + "neg": 0.067, + "_id": { + "$oid": "6711d583cd60fca157e5d4f1" + } + }, + { + "text": "She's very nice and laid back. Just do the reading and you should be fine. She will give you extra credit and boost up your grade even if you not really doing well in class.", + "pos": 0.241, + "neu": 0.711, + "neg": 0.048, + "_id": { + "$oid": "6711d583cd60fca157e5d4f2" + } + }, + { + "text": "The course work itself in this class is not too bad. You do have to read a 20-30 page article before each class. The class can get a little repetitive. If you follow the instructions you will be fine. However, she is awful when it comes to grading and is not lenient at all. She is very condescending. Stay away. I got A- in her class.", + "pos": 0.064, + "neu": 0.845, + "neg": 0.09, + "_id": { + "$oid": "6711d583cd60fca157e5d4f3" + } + }, + { + "text": "One of my favorite professors!!! She does give a lot of readings but they are actually interesting. The content and discussions were always engaging. And she gave you a certain number of no excuse needed absences which is great. She can be a bit of a tough grader but does give really give feedback. You will learn a lot in her class", + "pos": 0.252, + "neu": 0.707, + "neg": 0.04, + "_id": { + "$oid": "6711d583cd60fca157e5d4f4" + } + }, + { + "text": "This professor gives a lot of readings! Definitely read the readings before class in order to participate and make the lectures interesting. If you are one minute late, you are considered absent. Participate and do the readings and you will get an easy A. She gives a lot of group work in all her classes but they are pretty fun.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d4f5" + } + }, + { + "text": "Knowledgeable of topic", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d4f6" + } + }, + { + "text": "Have a question ask, very approachable and will take as much time as you need to help you understand", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d4f7" + } + }, + { + "text": "She marks you absent if you're even a minute late. After a certain amount of absences your grade gets deducted, which is really annoying. Readings are interesting but very heavy for each class. She assigns 2 papers, one of which is a research paper, a presentation, and an exam. Harsh grader and is unclear on what she wants for the research paper.", + "pos": 0.049, + "neu": 0.829, + "neg": 0.121, + "_id": { + "$oid": "6711d583cd60fca157e5d4f8" + } + }, + { + "text": "She is a nice Prof, but very tough when grading, beware of her quizes", + "pos": 0.118, + "neu": 0.746, + "neg": 0.136, + "_id": { + "$oid": "6711d583cd60fca157e5d4f9" + } + }, + { + "text": "A really great professor! great discussions and easy homework. Just do the readings and the homework! There are like 2 papers. She also gives an opportunity of 15 extra credits and that is awesome!", + "pos": 0.475, + "neu": 0.525, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d4fa" + } + }, + { + "text": "Not so bad, a little confusing with her lectures. Easy grader, and easy HW.. attendance matters and could've been a better class if she was more vivid with her lectures.", + "pos": 0.334, + "neu": 0.624, + "neg": 0.042, + "_id": { + "$oid": "6711d583cd60fca157e5d4fb" + } + }, + { + "text": "She makes the information very easy to understand (except on numerous occasions where she gets flustered if someone didn't get it). She gives extra credit, LOTS OF ONLINE READINGS OMG, BB posts every week, 7 page paper, 1 presentation, 1 personal narrative, and a final. Final was 21 q's plus 3 short essays. YOU HAVE TO COME TO CLASS TO UNDERSTAND!", + "pos": 0.092, + "neu": 0.878, + "neg": 0.03, + "_id": { + "$oid": "6711d583cd60fca157e5d4fc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d583cd60fca157e5d4fe" + }, + "professor_name": "Tecora Williams", + "rating": 2.8, + "department": "Psychology department", + "comments": [ + { + "text": "She is a very knowledgeable professor. Even though she is a little bit unorganized at not responding to emails and go behind the syllabus; however, in her lectures, she explains clearly and answers every question you may have. Assignments are kind of unclear but arent hard. The final paper is a combination of previous papers. She is very flexible.", + "pos": 0.097, + "neu": 0.877, + "neg": 0.026, + "_id": { + "$oid": "6711d583cd60fca157e5d4ff" + } + }, + { + "text": "Things to know: No textbook needed, all test material comes off of power points, professor cannot stay focused and gets lost on tangents, professor is very vague with descriptions to assignments which left students feeling lost, do the extra credit because it might just save your grade. Class was not impossible but very frustrating.", + "pos": 0.083, + "neu": 0.723, + "neg": 0.195, + "_id": { + "$oid": "6711d583cd60fca157e5d500" + } + }, + { + "text": "You are graded based on final, midterm, 10 page paper, and MAT training certificate. The paper was hard because she gives vague directions and you have to work hard on it because it is the majority of your grade. I always felt worried with her because I felt lost with the paper as did the whole class. Exams are based on textbook and lecture mainly", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d583cd60fca157e5d501" + } + }, + { + "text": "I was scared to take Professor Williams because of the other reviews but she was actually fine. She covers material on the slides well. Class gives you insight into how Clinical Psychology works. Class is graded on 2 papers, midterm, final, and one long research paper. Exams are easier online. More feedback on papers would have been nice though.", + "pos": 0.18, + "neu": 0.792, + "neg": 0.029, + "_id": { + "$oid": "6711d583cd60fca157e5d502" + } + }, + { + "text": "I took this class because I was interested in entering the field. I was not a full-time student. She was constantly late and didn't cover all the materials. Often would expect students to make up for her inability to finish lessons. I didn't receive a grade to gauge my understanding of the materials until months into the course AFTER the first exam", + "pos": 0.041, + "neu": 0.917, + "neg": 0.041, + "_id": { + "$oid": "6711d583cd60fca157e5d503" + } + }, + { + "text": "I had her for an online summer course, she's actually good. We had 3 quizzes and a final exam, all were open book. She recycles the same questions so it was easy. We also had 2 extra credit assignments. We didnt have the vignette paper since the class was only 1 month. If u want an easy version of this course, take her in the summer session :)", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d504" + } + }, + { + "text": "Simply put NEVER again.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d505" + } + }, + { + "text": "She was very unhelpful what she wants in a paper. As a result, you're writing the paper based on your own judgement which she may not like. Therefore, you will get a lower grade than others just cause your opinion is not understood by her. This is a weird way of assigning papers. Plus, she was lazy responding and scheduling on time. What a waste...", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d583cd60fca157e5d506" + } + }, + { + "text": "Disappointed. She was always cancelling classes, even before the pandemic. When the virus was already known here in NYC, she would come to class coughing and sneezing. Never bothered to double check if it is covid or not or to ensure the safety of students. Like if you don't want to teach classes, then don't teach any! Students pay tuition!", + "pos": 0.104, + "neu": 0.748, + "neg": 0.148, + "_id": { + "$oid": "6711d583cd60fca157e5d507" + } + }, + { + "text": "She has a poor work ethic and I did not like how she referred to her clients with mental illnesses as \"narcissistic \"instead of narcissistic disorder which is a derogatory rhetoric that psychologists are trained not to use. It rubbed me the wrong way since this class is about ethical behavior. For being just a TA she does not do a bare minimum.", + "pos": 0.044, + "neu": 0.765, + "neg": 0.191, + "_id": { + "$oid": "6711d583cd60fca157e5d508" + } + }, + { + "text": "While she was caring and answered questions during class, this would come at the expense of completing lectures. She'd upload pre-recorded PPTs to blackboard to make up for it. Assigned a paper, midterm, and final. Did not provide clear guidelines for the paper but graded harshly. Disorganized, barely responded to emails, and gave extra credit.", + "pos": 0.09, + "neu": 0.838, + "neg": 0.072, + "_id": { + "$oid": "6711d583cd60fca157e5d509" + } + }, + { + "text": "While she was caring and answered questions during class, she would drift away from lectures/PPTs and upload pre-recorded lectures on blackboard that we'd have to watch on our own time. Assigned a paper, midterm and final. Gave unclear guidelines for the paper but graded very harshly. Disorganized, barely answered emails, but gave extra credit.", + "pos": 0.091, + "neu": 0.83, + "neg": 0.078, + "_id": { + "$oid": "6711d583cd60fca157e5d50a" + } + }, + { + "text": "She's passionate about counseling but is NOT able to convey that through accurate teaching. Constantly was late/canceled class with little notice, and was unable to prepare us for the final or midterm. She rarely responds to emails and spends a majority of time speaking about personal experience or answering questions instead of teaching material", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d50b" + } + }, + { + "text": "Constantly was late or canceled classes, yet expected students to learn material not covered in class that she often forgot had not been covered. Often canceled class for a pre-recorded lecture in a PPT. Harsh grader, will not want to give you a 100% on any assignment. PPTs often poorly written and unclear. Often rude to students in class.", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d583cd60fca157e5d50c" + } + }, + { + "text": "I honestly do not recommend taking any of her courses. She's very disorganized and a super hard grader. Her assignments are vague so its difficult to understand what shes looking for. She's all over the place. Her lectures are interesting and she seems like a very nice person, but as a professor, I really don't recommend her.", + "pos": 0.151, + "neu": 0.689, + "neg": 0.16, + "_id": { + "$oid": "6711d583cd60fca157e5d50d" + } + }, + { + "text": "Amazing person & nice, but very disorganized in lectures. She forgot to post material on blackboard. Participation 5%, Exam1 30%, Exam2 30%, Final Paper 30%, Reporter Training 5%. Extra credit saved me from getting a B. So much material that was squeezed in (not her fault) but difficult exams, very conceptual & meticulous. Harsh grader on the paper", + "pos": 0.191, + "neu": 0.67, + "neg": 0.139, + "_id": { + "$oid": "6711d583cd60fca157e5d50e" + } + }, + { + "text": "Tecora is a gem! But don't let that trick you. Her exams seem straight forward but could be tricky. Two exams, and one paper (vignette) and that's all. The vignette appears fun and easy but doesn't let that get to you as she is a harsh grader! Show up to class, study for both the midterm & final also do the vignette, and you should be good!", + "pos": 0.202, + "neu": 0.729, + "neg": 0.07, + "_id": { + "$oid": "6711d583cd60fca157e5d50f" + } + }, + { + "text": "Powerpoints are dense with info, but posted on BB. You could easily pass the class by reviewing materials right before midterm and final. Interesting topics specially once it gets to the cultural aspects in counseling. Extra-cred opportunity given.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d510" + } + }, + { + "text": "She can seem kind of kooky but honestly I loved her. There's two tests, a midterm and a final. And one paper which is super easy and kind of fun to do. She was always willing to hear your thoughts and gives you real life examples from her work. The actual topics we learn in class were pretty redundant but as long as you follow along you'll be okay.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d511" + } + }, + { + "text": "Professor Williams is great. I would've tried harder in her class but it just wasn't my thing. Her lectures are fun, she keeps you hooked at times and she's very sweet. Overall, great professor and would definitely recommend her. She cares about her students.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d512" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d583cd60fca157e5d514" + }, + "professor_name": "Alexander Moser", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Good professor and caring, this clas is not hard just do the work and you will be fine.", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d515" + } + }, + { + "text": "Very respectful and fun. Amazing lectures", + "pos": 0.78, + "neu": 0.22, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d516" + } + }, + { + "text": "One of the Best professors I've ever had", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d517" + } + }, + { + "text": "Hes very understanding and still accepts late work, he gives good feedback when grading and usually gives good grades as long as the assignment is done", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d518" + } + }, + { + "text": "He will give you 5 essays to do through out the semester with 1 optional draft to be submitted prior to the final submission of each essay. he will give you complete feedback before the final draft is due so its super easy to correct your mistakes. He doesn't set you up for failure. And his laugh make anyone a least smile. Very chill prof.", + "pos": 0.141, + "neu": 0.758, + "neg": 0.102, + "_id": { + "$oid": "6711d583cd60fca157e5d519" + } + }, + { + "text": "Professor Moser is amazing! He's an incredible teacher and really cares about his students! Take his class, you wont regret it!", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d51a" + } + }, + { + "text": "professor moser is so far the best professor I have encountered returning back to college.. he makes it fun and actually cares about his student input and interpretation of the readings. replies to emails very quick and helps when you don't understand an assignment. Great class overall would take his class again! he's pretty funny too!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d51b" + } + }, + { + "text": "best professor at ccny! his class was amazing and i came out actually loving poetry. come to class, do the work and participate, youll get an A.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d51c" + } + }, + { + "text": "Great professor, pretty easy class. He gives good feedback and gives extensions if needed. Really chill guy, just do the essays and you're good. He's not a tough grader, quite the opposite honestly.", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d51d" + } + }, + { + "text": "The best professor i've had. His assignments aren't that hard and he made the class very fun. there was about 4-5 essays but most of them were pretty short. If you needed help, he would be there for you. Overall this professor really cared about his students and you can tell he wanted what was best for you.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d51e" + } + }, + { + "text": "-Gives amazing feedback on your work\n-Is so kind\n-Responds to emails very fast\n-His papers are not hard, just long", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d51f" + } + }, + { + "text": "When it comes to writing Moser helps a lot when grading papers and editing your work. You can always reach out to him outside of class hours if you need to. He is really caring and I was always comfortable participating in his class. The environment was positive and easy to navigate while attending classes online this semester.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d520" + } + }, + { + "text": "Prof. Moser was one of the best professors during the online semester; he was accommodating and always made time for his students. There were 4 major assignments, and as long as you are dedicated and do it, he will give you the proper feedback to get an A. As a freshman, I will forever be grateful for encountering a professor like this.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d521" + } + }, + { + "text": "This is the best proof in CCNY. like he teaches very good. I understood everything he taught. There was 4 projects throughout the semester and it was challenging but he helps you a lot and explains good. Please take him.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d522" + } + }, + { + "text": "It was a wonderful journey with him. Hardly felt any pressure though had to finish 5 big assignments. Classes are enjoyable and fruitful. Beyond everything, he is a very good person and definitely looks forward to sitting in class in the future.", + "pos": 0.243, + "neu": 0.719, + "neg": 0.038, + "_id": { + "$oid": "6711d583cd60fca157e5d523" + } + }, + { + "text": "This professor is not the usual as the other professors in City College. He is very creative and rarely you can find a class that is so enjoying as this class did. Will record this one as maybe one of the est classes I ever took in CCNY and keep in mind I took him for ENGL 11000 as well.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d524" + } + }, + { + "text": "I originally had an A but I didnt do the final assignment, bringing my grade to a C-. But he is very fun and caring. He teaches in depth and is great at making you a better writer.", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d525" + } + }, + { + "text": "This professor is funny, creative, and easy to understand. First time teaching for an engineering class. It was way more engaging and fun even staying at home during the pandemic. He will hear you out and you can ask him any questions during and after class. Take him if you have any classes!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d526" + } + }, + { + "text": "He's not a typical professor he's really good at teaching and he makes his lectures easy to understand, fun and interactive. He teaches old stuff in new ways.. for example one time he actually brought props for lecture purposes which was kinda funny.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d527" + } + }, + { + "text": "Professor Moser is UH-MAY-ZING. Although there is a lot of writing.. the course itself is very interesting and fun. His lectures are very interactive. He listens to his student's idea and usually gives good response to it.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d583cd60fca157e5d528" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d584cd60fca157e5d52a" + }, + "professor_name": "Latif Jiji", + "rating": 4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Great Professor! He requires/instills discipline from/into his students, and he will be a mentor if you prove to be worthy. You don't need to be either an A or B student, however you need discipline, as a result you will earn that A or B. I took his class in the Fall of 2001.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d52b" + } + }, + { + "text": "ask him a question he told me to look it up", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d52c" + } + }, + { + "text": "Some people dread of taking his class. He is very clear with his expectations and teaching. He makes Heat Transfer very interesting and fun. It is work intense class but material is not difficult if you put in time. Sadly he is retiring Spring 2014 but truly an amazing professor. Glad I took it with Prof Jiji!!", + "pos": 0.31, + "neu": 0.615, + "neg": 0.075, + "_id": { + "$oid": "6711d584cd60fca157e5d52d" + } + }, + { + "text": "It is a difficult class but the professor is nice. He is strict and DEMANDS the students to follow a certain procedure. Show him respect and NEVER be late for his class. Every time i needed help he took the time to advice me beyond the class and all with his good will. I dropped the class because it was too much for me with all my other classes", + "pos": 0.217, + "neu": 0.762, + "neg": 0.021, + "_id": { + "$oid": "6711d584cd60fca157e5d52e" + } + }, + { + "text": "His class may have been tough but you will learn a lot. This class will definitely let you know if you were meant to be an engineer. Do all the problems in the book and you are guarantee to pass with a B+ and up", + "pos": 0.117, + "neu": 0.791, + "neg": 0.093, + "_id": { + "$oid": "6711d584cd60fca157e5d52f" + } + }, + { + "text": "Jiji is a great lecturer and explains the materials very well. His book is well written and easy to follow and study from. However he is a harsh grader. Tests are somewhat difficult and tricky. Does not give much partial credit. Projects are very vague and difficult. Very time consuming class.", + "pos": 0.214, + "neu": 0.621, + "neg": 0.165, + "_id": { + "$oid": "6711d584cd60fca157e5d530" + } + }, + { + "text": "Wonderful lecturer. Very demanding class. Prepare to work hard if you want a passing grade.", + "pos": 0.255, + "neu": 0.561, + "neg": 0.183, + "_id": { + "$oid": "6711d584cd60fca157e5d531" + } + }, + { + "text": "It is possible to get an A in this guys class. His personal opinion affects your final grade when he curves. He grades test very harshly, how much curve depends on how much he likes you. Me and my friend had the same exact cumulative score and he received a very good grade, I didn't. Do HW on ur own, no help, no soln manual, he will find out.", + "pos": 0.143, + "neu": 0.828, + "neg": 0.029, + "_id": { + "$oid": "6711d584cd60fca157e5d532" + } + }, + { + "text": "Great prof. Strict, easy hw but a long format. Easy book and clear lectures. Design projects are long and somewhat hard. Gives no exceptions to his rules and due time. Not even a few minutes. During office hours very helpfull. Expect no help for design proj. Test are med to hard. Little to no curve on final grade.overall a demanding class. Enjoy!", + "pos": 0.22, + "neu": 0.621, + "neg": 0.159, + "_id": { + "$oid": "6711d584cd60fca157e5d533" + } + }, + { + "text": "Prof. Jiji is one of the best professors in the Mechanical Engineering department. His teaching is right to the point. His book is just perfect! It is understandable, easy to read, and has all the information needed to do every single problem in the book. Jiji gives lots of work but you will definitely learn a lot.", + "pos": 0.166, + "neu": 0.805, + "neg": 0.029, + "_id": { + "$oid": "6711d584cd60fca157e5d534" + } + }, + { + "text": "Please do not believe the positive comments posted. More than likely theyre White, or trying to score brownie points w/Jiji. He is spiteful and extremely ****. But he is the only one teaching 433. Hes never around for office hrs, huge ego and attitude problem w/minorities. Doesnt explain what was done wrong in reports. He's the worst!", + "pos": 0.064, + "neu": 0.693, + "neg": 0.243, + "_id": { + "$oid": "6711d584cd60fca157e5d535" + } + }, + { + "text": "I don't see how someone suppose to pass this class with his grading system. Also, the book lacks of example problem.", + "pos": 0.0, + "neu": 0.881, + "neg": 0.119, + "_id": { + "$oid": "6711d584cd60fca157e5d536" + } + }, + { + "text": "simply he is the best,this is how every professor should be ", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d537" + } + }, + { + "text": "Very tough teacher. Teach and follows the book because HE WROTE IT. Extremely discriminatory, hates minorities as pointed out earlier. He picks one student from a minority ethnic group and treat him like his child and forgets about the rest. The only good things about him are that he's NEVER late and he knows his materials and explains it clearly.", + "pos": 0.155, + "neu": 0.774, + "neg": 0.071, + "_id": { + "$oid": "6711d584cd60fca157e5d538" + } + }, + { + "text": "Professor Jiji is one of the best professors I have had in the department. Despite what the previous poster wrote, as a minority student myself, I do not see any bias in class- Professor Jiji is a fair and honest grader. He's a wonderful man who is easily the best in the department.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d539" + } + }, + { + "text": "Who are making these ratings??? The professors themselves? He is horrible, spiteful, and prejudice. He questions minorities if they'd copied solutions &make their lives impossible. For whites, it's easy street with hookups. He's a ****, always will be", + "pos": 0.095, + "neu": 0.684, + "neg": 0.221, + "_id": { + "$oid": "6711d584cd60fca157e5d53a" + } + }, + { + "text": "Superb professor. Extremely knowledgable in his field. By far, the best professor in the ME. department. Gives homework every single day and expects it on time the next class. It is a lot of work, but you get a sense of accomplishment when you're finally done.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d53b" + } + }, + { + "text": "Overrated professor teaches from Powerpoint not possible to follow unless you have prior knowledge. Great and fair grader.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d53c" + } + }, + { + "text": "One of the best professors I've ever had. His class was hard as heck, I had to work extremely hard, but I learned a ton.", + "pos": 0.096, + "neu": 0.81, + "neg": 0.094, + "_id": { + "$oid": "6711d584cd60fca157e5d53d" + } + }, + { + "text": "He's a good teacher - just make sure and do ALL HW on time and ask questions like they're going out of style. He'll answer.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d53e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d584cd60fca157e5d540" + }, + "professor_name": "Vanessa Valdes", + "rating": 4.5, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "She is a great Professor. The class is an easy A if you participate in class discussion. Even if you don't she's an easy grader. Highly recommend her.", + "pos": 0.271, + "neu": 0.663, + "neg": 0.066, + "_id": { + "$oid": "6711d584cd60fca157e5d541" + } + }, + { + "text": "Professor Valdes is extremely caring for her students. She understands if you are struggling with getting assignments done and need an extension, you just need to be open about it with her. As long as you finish your assignments mostly on time and follow all the directions and participate in any way that you can, easy A!! I learned a lot from her.", + "pos": 0.1, + "neu": 0.86, + "neg": 0.04, + "_id": { + "$oid": "6711d584cd60fca157e5d542" + } + }, + { + "text": "Her class required a lot of participation and the tests are okay once you complete the review sheet. There was an online homework system for every chapter, the due date is at the end of the semester and the textbook is attached there as well. Shes very inspirational and expect you to participate", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d543" + } + }, + { + "text": "FAVORITE SPANISH PROFESSOR BY FAR IN HISTORY ! She is really caring and tries to not only teach students about the spanish language but outside history. I would take her again and again and again. I want to say so many good things about her, but then I will pass the word limit. Definitely recommend her, take her class, easy A.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d544" + } + }, + { + "text": "Professora is amazing! She really respects her students and demands the same. She's hilarious, fun, and really cares about helping us learn Spanish. She's accessable outside of class and easy to talk to. She also prepares us before exams and quizzes. Homework is a a little time consuming but not getting behind and really trying helps you improve.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d545" + } + }, + { + "text": "She's really wonderful. One of my favorite professors ever! She's really funny and wants students to do well. She gives you the quizzes and tests the class before and reviews it. Dont show up late consistently or eat/ drink in class. Participate, she makes it easy. She's super cool, friendly and funny. EASY A for sure. Wish she was teaching 226.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d546" + } + }, + { + "text": "Don't be afraid to participate . She will always be for her students .. She is the best Spanish professor that I have taken .. You will be alright in her class do your homework and you will pass", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d547" + } + }, + { + "text": "She is a great professor. Very accessible Professor ...", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d548" + } + }, + { + "text": "I have to say that Professor Valdes is and has been my favorite professor since I have taken her. First off her teaching approach is not the usual boring one that too many professors take. She's energetic and encourages students to not just understand the material but to feel confident in it and ones' self. If you can get a class with her, do so.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d549" + } + }, + { + "text": "She is one of the best professors at city college. She cares for her students and their learning progress.", + "pos": 0.385, + "neu": 0.615, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d54a" + } + }, + { + "text": "She is an amazing person. I have a kid and she was very understanding about my attendance. She was willing to work with me as long as I was willing to work with her. She gives you the test as a study guide so you know exactly what will be on the test. She is just amazing. TAKE HER!", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d54b" + } + }, + { + "text": "She is a great Professor. Yes she only speaks Spanish during class but its expected if you want to learn. She will go out of her way to help you, and make sure you understand the material. The Best Spanish Professor!!! in CCNY.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d54c" + } + }, + { + "text": "She is the best Spanish professor at city college !!! if you need to take a elective class just take her , she is an accessible professor...", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d54d" + } + }, + { + "text": "This was a latin american lit class that was taught in english and the readings were bilingual. She put all the readings on blackboard no need to buy books. no where near as bad as some reviews make her seem. class is a little unorthodox but works for the type of class it is.", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d584cd60fca157e5d54e" + } + }, + { + "text": "Took Professor Valdes for my second semester of Spanish. She expected us not to speak one ounce of English in her class. Tough grader, lots of homework, expects her students to communicate purely in Spanish. Lots of homework, and three tests. Would seek other options if possible, but not an easy A. Will make you work for it. Great personality.", + "pos": 0.084, + "neu": 0.851, + "neg": 0.065, + "_id": { + "$oid": "6711d584cd60fca157e5d54f" + } + }, + { + "text": "Bless this woman, she's an excellent teacher. Gives you exactly what you need to LEARN Spanish. I didn't get 100% on every exam, but I learned to read, write, & speak more Spanish this semester than with any other professor. You have to participate (OBVIOUSLY) bc it is a language class. The only thing that might hold you back are lazy classmates.", + "pos": 0.064, + "neu": 0.887, + "neg": 0.049, + "_id": { + "$oid": "6711d584cd60fca157e5d550" + } + }, + { + "text": "She is an excellent professor. She genuinely cares for her students. I took her for SPAN12100 and I enjoyed her class so much that I made sure to take her for SPAN 12200. Make sure to participate in class, do her homework and ask questions. She doesn't allow any English in her class, but don't worry. It benefits you in the end.", + "pos": 0.182, + "neu": 0.76, + "neg": 0.058, + "_id": { + "$oid": "6711d584cd60fca157e5d551" + } + }, + { + "text": "By far the most understanding, entertainig and knowledgable teacher I've had in all my college experience. Awaikened my interest in Latin American lit and going for a Doctorate. Very clear on what what she expects from her students from day one. Participation is everything with her, she will put you on the spot if you're not talking in class.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d584cd60fca157e5d552" + } + }, + { + "text": "She's is a very good professor, very knowledgeable. How ever if you take a class with her make sure you participate or it will drastically affect your grade. As long as you participate and send her questions you'll be fine. She really cares about students even if at times she doesn't seem like it.", + "pos": 0.172, + "neu": 0.794, + "neg": 0.034, + "_id": { + "$oid": "6711d584cd60fca157e5d553" + } + }, + { + "text": "very tough..doesnt play around... she wants to make sure u learn but also might insult u in the process. always participate in class and u'll be her favorite... but if u do participate.. she may laugh at you and give u weird looks wen she thinks you should know something.. makes you feel really stupid..", + "pos": 0.172, + "neu": 0.667, + "neg": 0.16, + "_id": { + "$oid": "6711d584cd60fca157e5d554" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d585cd60fca157e5d556" + }, + "professor_name": "Elise Crull", + "rating": 3.7, + "department": "Philosophy department", + "comments": [ + { + "text": "Intelligent and passionate, to the point of being a little intimidating. Understanding if you reach out to her and open up, but normally assumes the worst of students. Material is challenging, particularly if you haven't taken a philosophy class before, should probably have prerequisites. Strict deadlines on wide range of assignments and very busy.", + "pos": 0.114, + "neu": 0.767, + "neg": 0.119, + "_id": { + "$oid": "6711d585cd60fca157e5d557" + } + }, + { + "text": "Phil 32200 - Phil of Sci \n\nThe professor for this class is very fair in all honesty, she will give you the grade you deserve. However the class itself is extremely difficult, it will take up the majority of your time and energy. The grading is harsh and your grade WILL suffer if you don't give it 100%. She has a clear grading criteria, follow it.", + "pos": 0.133, + "neu": 0.75, + "neg": 0.117, + "_id": { + "$oid": "6711d585cd60fca157e5d558" + } + }, + { + "text": "Taking her Phil of Science class, Prof. Crull reeealy made me question my beliefs and views on science. Not quite a class for first-time philosophy students, but an extremely interesting one for any science major. Get ready to read and write a decent amount, and get a chair to feel comfy during your weekly existential crises about science.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d559" + } + }, + { + "text": "The best professor I've had at CCNY. Very smart and very clear. Take class with her if you can!", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d55a" + } + }, + { + "text": "Professor Crull is an INCREDIBLY smart, passionate, and talented instructor. I personally felt like this class wasn't that great of a fit for me not because of Professor Crull but rather the nature of the material. I HIGHLY recommend this class for those who are serious about philosophy and epistemology, not those just testing the waters.", + "pos": 0.231, + "neu": 0.715, + "neg": 0.054, + "_id": { + "$oid": "6711d585cd60fca157e5d55b" + } + }, + { + "text": "One of my top 3 favorite professors. I was a bit weary of taking her 300 classes because I wasn't too sure if I was passionate enough about philosophy. Needless to say, I am now majoring in philosophy. The students leaving scalding reviews do not understand that college is supposed to be challenging- you need to put in the work and participate.", + "pos": 0.14, + "neu": 0.802, + "neg": 0.058, + "_id": { + "$oid": "6711d585cd60fca157e5d55c" + } + }, + { + "text": "This professor, teaches as if she is at Harvard, but forgot about the poor. Using objective analytics as the only thing when grading. She really doesnt care about the individual agent or the amount of work, time & effort, one puts in the class. She will destroy your gpa! Dont take her if you are struggling with school, youll want to drop out", + "pos": 0.019, + "neu": 0.732, + "neg": 0.249, + "_id": { + "$oid": "6711d585cd60fca157e5d55d" + } + }, + { + "text": "This class was one of the hardest I have ever taken . Professor Crull's was very difficult because there is something due almost every class and her homeworks take a minimum of an hour to complete . She is a very tough grader . Unless you want to major in Logic DO NOT take her .", + "pos": 0.022, + "neu": 0.9, + "neg": 0.078, + "_id": { + "$oid": "6711d585cd60fca157e5d55e" + } + }, + { + "text": "Really great professor. Clearly is passionate about the material. However, has high expectations despite it being an intro course. Really tough grader.", + "pos": 0.352, + "neu": 0.589, + "neg": 0.059, + "_id": { + "$oid": "6711d585cd60fca157e5d55f" + } + }, + { + "text": "She is a very fun/funny professor. She cares about the students learning and is ready to help. Doesn't assign that many major assignments, just a paper and final exam. There aren't any exams during the semester. She has some pop quizzes. There's a lot of reading but the readings are short.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d560" + } + }, + { + "text": "One of the best professors Ive ever had. Really knows her stuff and is approachable and helpful. Such an enjoyable experience.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d561" + } + }, + { + "text": "Incredible philosophy professor. Don't know about the rest of the department, but she is one of the leading reasons that I am leaning towards majoring in Physics and Philosophy.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d562" + } + }, + { + "text": "Professor Crull is a great professor for intro to logics, she teaches the material very well and makes the class very engaging. You need to be present every class or else you will fall behind on the material because the topics gets harder and harder. If you don't understand anything seek help from classmates or from her! She is willing to help!", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d563" + } + }, + { + "text": "She's absolutely brilliant and funny but honestly if you don't already know the subject matter completely, or have a REALLY easy schedule, or are a mathematically minded person (if you're taking her logic class) then avoid. In a world where GPA wasn't everything she'd be everyone's #1 pick because you'll learn a lot.", + "pos": 0.233, + "neu": 0.723, + "neg": 0.043, + "_id": { + "$oid": "6711d585cd60fca157e5d564" + } + }, + { + "text": "R U N", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d565" + } + }, + { + "text": "Elise Cruel is a harsh professor. If you are looking for an easy A this is not the class for you. As an engineering major i took this as an elective and it was a wasted semester. She over loads you with her reading exams and essays.", + "pos": 0.052, + "neu": 0.771, + "neg": 0.177, + "_id": { + "$oid": "6711d585cd60fca157e5d566" + } + }, + { + "text": "Crull was cool and her class was small. She like interaction with students so get ready to participate. Let her know you because it will help when she is grading you. She is picky with essays and really reads your paper. ALOT of reading and an Oral Midterm, which is 30% of your grade so, yeah I'd take her again. she is a good prof", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d567" + } + }, + { + "text": "Overall great professor. She loves her physics and philosophy blend. Really into the subject matter which made me feel confident throughout the semester. Prepare to read a lot of papers as phil science papers are not as easy as the maths and physics involved.", + "pos": 0.226, + "neu": 0.729, + "neg": 0.045, + "_id": { + "$oid": "6711d585cd60fca157e5d568" + } + }, + { + "text": "I really appreciate how detailed she got with the subject, it made it really easy to understand her class. If I had the chance to take her class again I would definitely do it because it it was an easy A she was very attentive and always helped if someone needed help in class which I don't really see now a days the class was SOO jokes", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d569" + } + }, + { + "text": "Dont take this prof, worst prof ever! hard grader wish i never took her class,", + "pos": 0.132, + "neu": 0.586, + "neg": 0.283, + "_id": { + "$oid": "6711d585cd60fca157e5d56a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d585cd60fca157e5d56c" + }, + "professor_name": "Alice Nicholas", + "rating": 4.6, + "department": "World Humanities department", + "comments": [ + { + "text": "This course is very manageable to take on throughout the semester. If you need an English writing course for your general requirements(or electives), take Professor Nicholas!!! As long as you complete the work, you'll do great. She will give students the chance to turn in work after the due date(with reasoning) and change due dates around.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d56d" + } + }, + { + "text": "Listen, Professor Nicholas is such an amazing instructor! Not only is she caring, but she is extremely understanding. Her assignments are very minimal but enough to make you understand the concept and the conduction of field reports. Please take her if you are looking for a professor who genuinely is compassionate and helpful.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d56e" + } + }, + { + "text": "She's really nice and cares a lot about your understanding to the point where she might over explain things in class. Overall the class is a typical writing class. She's pretty clear on her grading criteria. We did some practice things before doing the major project which was good practice. She's good. You should take her.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d56f" + } + }, + { + "text": "She explains things really thoroughly so you know what is expected from you. If you go to her office hours she is really helpful as well.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d570" + } + }, + { + "text": "She is a very caring teacher. Can be strict at times but can also be very chill. She gives papers with strict deadlines, is a fair grader. Teaches you what she wants to see in your writing. Is good for first and second year students. Best English teacher I've ever had.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d571" + } + }, + { + "text": "Your grade is dependent on the time you put into her assignments. Many papers given, but a great introduction to college-style writing as a freshman. Work can be intimidating but gives clear instructions and deadlines. Can be condescending to students and will ask you to put your phone away, repeatedly... which is annoying.", + "pos": 0.138, + "neu": 0.749, + "neg": 0.113, + "_id": { + "$oid": "6711d585cd60fca157e5d572" + } + }, + { + "text": "Great professor. She takes her profession seriously and genuinely cares for her students. Show up to class, do your assignments and whatever you don't understand ask her in class or in private and she will break it down to you until the point where the assignments seems a lot simpler. She has a sense of humor, speaks well and overall great.", + "pos": 0.214, + "neu": 0.763, + "neg": 0.024, + "_id": { + "$oid": "6711d585cd60fca157e5d573" + } + }, + { + "text": "Great professor!! She is very good at what she does! If i had to take it all over again i would. You will learn a lot in her class. She is a very easy grader and gives lost of opportunities to fix your grade. Show up to her class and do your work.", + "pos": 0.217, + "neu": 0.747, + "neg": 0.036, + "_id": { + "$oid": "6711d585cd60fca157e5d574" + } + }, + { + "text": "She had favorites and will give good grades to them. Her feed backs are not always helpful. However, she is very nice. You do have to work hard.", + "pos": 0.246, + "neu": 0.616, + "neg": 0.138, + "_id": { + "$oid": "6711d585cd60fca157e5d575" + } + }, + { + "text": "Great at her job, intelligent and understanding. She wants you to do well,so don't be afraid to ask her for help. Getting out of the class you will definitely feel like you learned something bc she wants you to understand not breeze through the class. Her goal is for you to improve. Highly recommend. Fair grader.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d576" + } + }, + { + "text": "She is willing to help if you are not sure of what to do. SUPER approachable and caring professor. She is a tough grader though. You have to hand in papers on time with what she wants. She is clear on what to expect on your paper. Choose her!", + "pos": 0.268, + "neu": 0.676, + "neg": 0.056, + "_id": { + "$oid": "6711d585cd60fca157e5d577" + } + }, + { + "text": "Not bad. You really have to work for your grade. She accepts late papers. Don't take advantage of that though. She helps a lot. Read what she assigns!", + "pos": 0.238, + "neu": 0.71, + "neg": 0.052, + "_id": { + "$oid": "6711d585cd60fca157e5d578" + } + }, + { + "text": "Excellent Professor. She provides students with sufficient guidance regarding all her assignments and even if students need additional help in fixing their papers, she is always more than willing to provide additional feedback and second chances. Show her that your care about your grade and she will support. A really excellent English Professor.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d579" + } + }, + { + "text": "Excellent professor, explains material very well and most importantly, super helpful.", + "pos": 0.726, + "neu": 0.274, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d57a" + } + }, + { + "text": "She is really clear about her assignments and you can ask her as many question you want. She is great! :D", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d57b" + } + }, + { + "text": "she is very helpful. You can understand the subject well if you do all your work. lots of homework given but worth it.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d57c" + } + }, + { + "text": "She really cares about her students! She wants everyone to become a good writer. She really gave us free will about what we wanted to write about so just put forth the effort and you will get a great grade.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d57d" + } + }, + { + "text": "She is a good professor if you're studious. You have to pay attention and READ READ READ. Sometimes it may seem impossible to read all of the chapters but you must in order to participate for the next class. PARTICIPATION is key and if you don't do it willingly, she will call on you.", + "pos": 0.035, + "neu": 0.943, + "neg": 0.022, + "_id": { + "$oid": "6711d585cd60fca157e5d57e" + } + }, + { + "text": "Lovely professor, very approachable and engaging. I have this class at 8 am but I'm still willing to get out of bed earlier just to take this class. Her class will be fun and you'll do well if you're not lazy ass student looking for an easy A. She gave five 5-page papers and a creative project but you'll be fine if you apply yourself and not panic.", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d57f" + } + }, + { + "text": "Very lovely teacher. There is a lot of reading required for this class. Two ten-page papers are required as well as a final and a midterm. Make sure you apply yourself wholly. Be punctual and ALWAYS participate. She looks out for it.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d585cd60fca157e5d580" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d586cd60fca157e5d582" + }, + "professor_name": "Frances Victory", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Prof. Victory is pretty relaxed. Class participation is a big part of her class so attendance is practically mandatory. Do the extra credit and take notes in class and you should have no problem passing with a high score. Rent of purchase the textbook online and save yourself some money its important but not as important as class discussions.", + "pos": 0.188, + "neu": 0.783, + "neg": 0.029, + "_id": { + "$oid": "6711d586cd60fca157e5d583" + } + }, + { + "text": "she is a good professor, her class was easy if you listen carefully in the class, the exams are about the examples that she and the classmates made in the class. and she will let you leave earlier. Nice professor, if she can have class at weekdays, i will take it again. Feeling sorry about she only has class on Saturday.", + "pos": 0.17, + "neu": 0.793, + "neg": 0.037, + "_id": { + "$oid": "6711d586cd60fca157e5d584" + } + }, + { + "text": "I had her for a FIT class my freshman year. She is very no nonsense and a little intimidating at first, but she gives breaks and lets you out a little early. The lectures are very closely linked to the slides that she posts. Class participation is encouraged, you work with your peers a lot. I would recommend her for Psychology.", + "pos": 0.169, + "neu": 0.805, + "neg": 0.026, + "_id": { + "$oid": "6711d586cd60fca157e5d585" + } + }, + { + "text": "There a few short papers plus a midterm and a final. The best part about her class is that the exams aren't cumulative, so you can really focus on the material you've most recently covered. She is tough, but in a good way. She pushes you to do better. She lets the class out early and normally gives a break. she is very big on participation.", + "pos": 0.14, + "neu": 0.843, + "neg": 0.017, + "_id": { + "$oid": "6711d586cd60fca157e5d586" + } + }, + { + "text": "There a few short papers plus a midterm and a final. The best part about her class is that the exams aren't cumulative, so you can really focus on the material you've most recently covered. She is tough, but in a good way. She pushes you to do better. She lets the class out early and normally gives a break. Definitely would recommend her.", + "pos": 0.224, + "neu": 0.76, + "neg": 0.016, + "_id": { + "$oid": "6711d586cd60fca157e5d587" + } + }, + { + "text": "I have her at City tech! She's the best and most coolest professor! You could ace her class easily if you do all the works!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d588" + } + }, + { + "text": "frances Victory was an amazing professor. her slides were always entertaining and she kept things interesting. She always was available for questions and comments. very few number of tests. but you do have to put in some work for the class, as long as u payed attention in class, made the effort to study, you should pass with a B.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d589" + } + }, + { + "text": "The professor does not give proper reviews and does not give extra credit. You have to really study the slides if you want to pass the two tests. But she is clear when explaining things and teaching. You have to study for hours, not just skim through the slides.", + "pos": 0.087, + "neu": 0.882, + "neg": 0.031, + "_id": { + "$oid": "6711d586cd60fca157e5d58a" + } + }, + { + "text": "The teacher makes the exams difficult and does not give exam reviews. She barely gives extra credit. I worked really hard and it didn't pay off. I was really disappointed.", + "pos": 0.1, + "neu": 0.69, + "neg": 0.209, + "_id": { + "$oid": "6711d586cd60fca157e5d58b" + } + }, + { + "text": "took her for intro- easier then my highschool class. responce papers which are jokes, some extra credit here and there. Midterm and Final are super easy. I got a 99 in the class and only memorized terms and did the responce papers. def take her when it comes to intro", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d58c" + } + }, + { + "text": "Frances is helpful and tries to make the best out of the class's boring portions, which is usually the first half. She gives several group assignments and exams throughout the term as well as a 20-25 that's broken down into small parts. This is an intense course.", + "pos": 0.183, + "neu": 0.722, + "neg": 0.095, + "_id": { + "$oid": "6711d586cd60fca157e5d58d" + } + }, + { + "text": "soo easy! the tests are very straight forward, not tricky at all. she gives a practice test beforehand. reading the textbook and youll be fine. she takes attendance. very nice and helpful.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d58e" + } + }, + { + "text": "she is very easy she feeds u the work. but she does have her favorites and her grading is not honest...", + "pos": 0.212, + "neu": 0.658, + "neg": 0.13, + "_id": { + "$oid": "6711d586cd60fca157e5d58f" + } + }, + { + "text": "She writes all notes on the board and you copy them and that's the extent of exams. She gives review sheets and sessions before exams which aren't cumulative. 1 or 2 questions on exam will be crappy and unclear. Overall it's an easy A if you do work, attend class, and PARTICIPATE. She refuses to give an A+ bc 'no one is perfect'.", + "pos": 0.093, + "neu": 0.829, + "neg": 0.079, + "_id": { + "$oid": "6711d586cd60fca157e5d590" + } + }, + { + "text": "mean mean, likes to give F", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d591" + } + }, + { + "text": "Do not take this teacher because she is not an honest person. She has her favorite students who she selects to answer her questions. She is not fit to be a teacher. She would say she will give you a good grade then she change her mind. Do not take this woman.", + "pos": 0.1, + "neu": 0.818, + "neg": 0.082, + "_id": { + "$oid": "6711d586cd60fca157e5d592" + } + }, + { + "text": "It was an easy class. Three response papers, three exams, no final. There's an exam on the last day of class but it's not cumulative so it's good.. She tries to be funny, but fails.. but she gets an E for effort. I actually enjoyed this class.. Take this class with Professor Victory if you want to get a good grade.", + "pos": 0.254, + "neu": 0.678, + "neg": 0.068, + "_id": { + "$oid": "6711d586cd60fca157e5d593" + } + }, + { + "text": "THE BEST!!! SO EASY TO UNDERSTAND. GREAT WAY TO EARN AN A WHILE TAKING MORE DIFFICULT CLASSES. A MUST TAKE WITH THIS PROFESSOR!!!!!!!!!!!", + "pos": 0.377, + "neu": 0.543, + "neg": 0.08, + "_id": { + "$oid": "6711d586cd60fca157e5d594" + } + }, + { + "text": "very easy and understandable in material and as professor.. had her for winter session, very simple grading system. went by book and had useful study sheets for test", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d595" + } + }, + { + "text": "She makes the course very interesting, and the more exhausted she is, the more fun she is in class. Tests and stuff are all right, so is the paper. Good professor.", + "pos": 0.242, + "neu": 0.687, + "neg": 0.071, + "_id": { + "$oid": "6711d586cd60fca157e5d596" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d586cd60fca157e5d598" + }, + "professor_name": "Margarita Kaplow", + "rating": 2.7, + "department": "Biology department", + "comments": [ + { + "text": "Prof Kaplow is a great lecturer but she is not good at giving feedback in a timely manner or responding to emails. She is a clear lecturer and her tests coincide with her lecture notes and assigned textbook readings perfectly. Her class is challenging but you can do well.", + "pos": 0.255, + "neu": 0.657, + "neg": 0.089, + "_id": { + "$oid": "6711d586cd60fca157e5d599" + } + }, + { + "text": "Prof Kaplow is a great lecturer but is not great with giving back feedback in a timely manner. Her tests are relatively difficult but her test questions coincide with her lectures and assigned reading perfectly. If you try to participate, show her you are trying and do decent on tests you can get a solid A.", + "pos": 0.145, + "neu": 0.709, + "neg": 0.145, + "_id": { + "$oid": "6711d586cd60fca157e5d59a" + } + }, + { + "text": "Very difficult class for an intro level course. Most of the grades in this class are based on critiquing professional research documents which were almost impossible to understand. Her lectures are okay but you need to study a lot from outside sources to really be prepared for tests. Try to avoid her.", + "pos": 0.074, + "neu": 0.843, + "neg": 0.083, + "_id": { + "$oid": "6711d586cd60fca157e5d59b" + } + }, + { + "text": "Study hard for the exams and you'll do well. Too many definitions to learn and quizzes were sometimes impossible", + "pos": 0.102, + "neu": 0.829, + "neg": 0.068, + "_id": { + "$oid": "6711d586cd60fca157e5d59c" + } + }, + { + "text": "she do not care about her students. She tried to teach a lower level class in summer and maded it seem like it was a 400 level class.She categorize everyone and do not keep her promises. if she says you will pass her class do not listen to her she is a liar.", + "pos": 0.041, + "neu": 0.789, + "neg": 0.17, + "_id": { + "$oid": "6711d586cd60fca157e5d59d" + } + }, + { + "text": "Simply said stay away if possible", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d59e" + } + }, + { + "text": "Uses very confusing sentence structure to explain. Even recording the lectures proved frustrating. Uses obscure biology words without having them mentioned on slides. No textbook to reference. Does not respond to emails!!! Gets annoyed with questions and frequently responds with \"why would you want to know that?\"", + "pos": 0.053, + "neu": 0.75, + "neg": 0.197, + "_id": { + "$oid": "6711d586cd60fca157e5d59f" + } + }, + { + "text": "Exams are hard mainly because scientific paper figures are on the exam. The papers are drawn from student class presentations so try to ask those students to give u an review of the main points in their papers. Her lectures are short and understandable; take notes and read the papers and you will get an A. She was hard to contact outside of class.", + "pos": 0.0, + "neu": 0.957, + "neg": 0.043, + "_id": { + "$oid": "6711d586cd60fca157e5d5a0" + } + }, + { + "text": "She was helpful and took time to ask if we understood and answer students questions. She was hard to contact outside of class except during midterm and final weeks. 2Exams 1 paper and 1 presentation. Short answer and matching for exams. Easy class just listen to her lectures and what she focuses on. Also go to review session.", + "pos": 0.092, + "neu": 0.886, + "neg": 0.023, + "_id": { + "$oid": "6711d586cd60fca157e5d5a1" + } + }, + { + "text": "NIGHTMARE!She seems to always be irritated when you ask her a question.She needs to go learn people skills because she has none whatsoever", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d586cd60fca157e5d5a2" + } + }, + { + "text": "Oh God!Try to avoid her! She is really tough, unclear, she teahes subjects she has no knowledge of and she doesnt know what to answer when you ask her any ques. Her exams are short answers. Study hard!", + "pos": 0.0, + "neu": 0.754, + "neg": 0.246, + "_id": { + "$oid": "6711d586cd60fca157e5d5a3" + } + }, + { + "text": "Strategy of Life. You can learn ALL the facts through SElf-Study but Lectures are helpful. To excell, one MUST read EVERY Chapter fully and the Lecture Blackboard Printouts!Recitation Classes are necessary but TAs do not enhance knowledge. Four(4) Easy multiple choice tests, non-cumulative.She's fine, Choose class for schedule needs not teacher.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d5a4" + } + }, + { + "text": "She is completely unorganized and unclear. DO NOT TAKE HER. She has these short lectures with slides that have so much useless info. She almost never gives you a study guide, and if she does its nothing like the test. Her test are very hard and like i said has nothing to do with the study guide. She takes random attendance! DO NOT TAKE HER", + "pos": 0.038, + "neu": 0.831, + "neg": 0.131, + "_id": { + "$oid": "6711d586cd60fca157e5d5a5" + } + }, + { + "text": "She is an amazing professor! Her expectations of the class are clear and straightforward. If you want to get an A, don't slack off and study all the papers. She tells you what's important for the exams.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d586cd60fca157e5d5a6" + } + }, + { + "text": "She's a terror. Don't get on her bad side. She can be hard to understand at times. We had the worst lab manual ever.", + "pos": 0.0, + "neu": 0.617, + "neg": 0.383, + "_id": { + "$oid": "6711d586cd60fca157e5d5a7" + } + }, + { + "text": "she is a very tough professor.YOU REALLY HAVE TO LISTEN AND UNDERSTAND WHAT SHE SAYS IN THE LAB. Her exam are easy \"ONLY IF YOU STUDY, AND IF YOU DONT UNDERSTAND HER REVIEW QUESTIONS YOU HAVE TO MEET HER BE4 THE EXAM\".", + "pos": 0.065, + "neu": 0.895, + "neg": 0.04, + "_id": { + "$oid": "6711d586cd60fca157e5d5a8" + } + }, + { + "text": "LAB SECTION: She's cute! Pretty hard class but she's nice. Really want A? work for it. She goes over labs pretty much in detail. Exams covers most of the material you learn in the lab. As long as you know what you are doing in the lab, no prob. 1 - 2 page lab report for lab, one major lab report at the end, and 3 exams.", + "pos": 0.182, + "neu": 0.766, + "neg": 0.051, + "_id": { + "$oid": "6711d586cd60fca157e5d5a9" + } + }, + { + "text": "margarita has a nice ass. All you want to do is stare at her in class. she looks small cute, but at same time sexy. other than that, she is very helpful, and smart. Be prepared for class and the ppl who say she is bad is because they dont pay attention(A means work)", + "pos": 0.288, + "neu": 0.614, + "neg": 0.098, + "_id": { + "$oid": "6711d586cd60fca157e5d5aa" + } + }, + { + "text": "She is like other TAs. Teaching + working in a lab (which is not easy). Overall, she is very nice, just be pacient with her and READ the BOOK in advance. She always discuss her exam questios on the review day for the exam..JUST PAY ATTENTION!!", + "pos": 0.117, + "neu": 0.797, + "neg": 0.086, + "_id": { + "$oid": "6711d586cd60fca157e5d5ab" + } + }, + { + "text": "She's very unclear. We had to go to other prof.'s to get our quesions answered. Also whenever you go to ask her questions she acts as though you're bugging her to death. And she wants to be a professor!!!!!!!", + "pos": 0.0, + "neu": 0.834, + "neg": 0.166, + "_id": { + "$oid": "6711d586cd60fca157e5d5ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d587cd60fca157e5d5ae" + }, + "professor_name": "Leon Guilhamet", + "rating": 2.6, + "department": "English department", + "comments": [ + { + "text": "Professor Guilhamet is kind, generous and BRILLIANT! He takes the time to explain during class and makes himself available to his students outside of class. Taking a class with Professor Guilhamet helped shape me into an English major. The class is demanding, so be prepared to think, read, and think again.", + "pos": 0.222, + "neu": 0.747, + "neg": 0.031, + "_id": { + "$oid": "6711d587cd60fca157e5d5af" + } + }, + { + "text": "Took satire with Prof. Guilhamet and loved every moment of it. Not only took the course once but twice! A brilliant mind, and has the necessary cynicism to help satire thrive and hone an appreciation of the great satirists like Pope, Swift, etc. A little eccentric I particularly enjoyed his withering wit and penchant for genius in this genre.", + "pos": 0.374, + "neu": 0.585, + "neg": 0.042, + "_id": { + "$oid": "6711d587cd60fca157e5d5b0" + } + }, + { + "text": "Prof. Guilhamet is one of the reasons I became an English major. A brilliant man, a thinker and generous with his time for students. A book-lover's professor, if ever there was one. Not easy and that's a GOOD thing.", + "pos": 0.227, + "neu": 0.723, + "neg": 0.05, + "_id": { + "$oid": "6711d587cd60fca157e5d5b1" + } + }, + { + "text": "Boring and evil!", + "pos": 0.0, + "neu": 0.125, + "neg": 0.875, + "_id": { + "$oid": "6711d587cd60fca157e5d5b2" + } + }, + { + "text": "Had him for two classes and absolutely horrible! He likes to ramble too much and unless you ask specific questions he'll talk about his war days, and how bad society is all class. There are 3 papers and many pop quiz. Couldn't wait to get out of the classes, WILL NEVER TAKE HIM AGAIN!!!", + "pos": 0.047, + "neu": 0.764, + "neg": 0.189, + "_id": { + "$oid": "6711d587cd60fca157e5d5b3" + } + }, + { + "text": "The class is easy as long as you follow directions for the papers EXACTLY. I recommend bringing other homework or a book to the class as he goes off topic all the time. He seems very cynical and loves to talk about how he hates everything modern. He'll love you if you enable his ramblings, but everyone else in the class will hate you.", + "pos": 0.118, + "neu": 0.763, + "neg": 0.12, + "_id": { + "$oid": "6711d587cd60fca157e5d5b4" + } + }, + { + "text": "Brilliant professor. Boring lectures, and he takes attendance. Knows his literature. Hard grader, and just three papers. If you're interested in English then he's your man.", + "pos": 0.202, + "neu": 0.683, + "neg": 0.115, + "_id": { + "$oid": "6711d587cd60fca157e5d5b5" + } + }, + { + "text": "a serious waste of money. i came to college to become enriched in knowledge, little did i know that i would just be wasting my time here and this professor just epitomizes my experience: boring, irrelevant, and indifferent.", + "pos": 0.0, + "neu": 0.752, + "neg": 0.248, + "_id": { + "$oid": "6711d587cd60fca157e5d5b6" + } + }, + { + "text": "had him for 2 classes and the man is a walking encyclopedia. i did get a lot out of his lectures, but you have to listen and ask him questions you are interested in. i have great respect for this prof, but many ppl find him boring since they just wait for him to tell them what they want to know instead of asking. does lots of history+discusses poli", + "pos": 0.181, + "neu": 0.783, + "neg": 0.036, + "_id": { + "$oid": "6711d587cd60fca157e5d5b7" + } + }, + { + "text": "Guilhamet offers perhaps the msot boring class in the history of higher education. However, he makes up for it by allowing you to sleep in his class without feeling slighted. His lectures don't focus on the stories as much as they do the historical context of the works. 3 easy papers and 1 in class essay. Just make sure you go to the class.", + "pos": 0.076, + "neu": 0.871, + "neg": 0.053, + "_id": { + "$oid": "6711d587cd60fca157e5d5b8" + } + }, + { + "text": "extremenly boring class, unfair grader...dont take it if u have other more important classes to deal with...i wish i hadnt taken it. That class was always on my back....very annoying..he goes off topic every 10 secs..with alll do respect he should retire...i've heard of more interesting and easier world hum professors...so just keep ur options open", + "pos": 0.204, + "neu": 0.717, + "neg": 0.079, + "_id": { + "$oid": "6711d587cd60fca157e5d5b9" + } + }, + { + "text": "this guy goes off the topic every class, half the time he's talkin about war and his own ideas. Make sure u bring a pillow to his class cuz ull need it", + "pos": 0.064, + "neu": 0.829, + "neg": 0.108, + "_id": { + "$oid": "6711d587cd60fca157e5d5ba" + } + }, + { + "text": "I'm an english minor and have never disliked any of my eng/lit classes EVER except this one. Very easy grader, only three papers and a quiz. However,his lectures are SO boring,goes off on completely unrelated topics to talk about his ultra conservative opinions,is generally very unclear. Makes a mess of otherwise good works of literature.", + "pos": 0.132, + "neu": 0.792, + "neg": 0.076, + "_id": { + "$oid": "6711d587cd60fca157e5d5bb" + } + }, + { + "text": "On one hand he's an easy grader, and not a taskmaster. On the other hand he has a tendency to go off on tangents during lectures and you learn very little about the actual subject. Take this class if you're heavy into doing your own research.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5bc" + } + }, + { + "text": "He's a terrible professor. He needs to get his pension and be on his way. I understand very little about both Milton and Defoe and all of my understanding came from my own pursuits.", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d587cd60fca157e5d5bd" + } + }, + { + "text": "Pay attention to what he is saying and you will not find it boring.", + "pos": 0.128, + "neu": 0.781, + "neg": 0.091, + "_id": { + "$oid": "6711d587cd60fca157e5d5be" + } + }, + { + "text": "This professor is quite boring, although he seems to have a lot of knowledge and insight on works of literature. e is easily distracted by himself and usually throws himself into side notes that seem endless.The easy part of the class was the TA and as long as you do your reading and can sit in a classroom full of bored people, youll do fine", + "pos": 0.097, + "neu": 0.806, + "neg": 0.097, + "_id": { + "$oid": "6711d587cd60fca157e5d5bf" + } + }, + { + "text": "Ok. Can see why some have problems with this teacher, but ok.", + "pos": 0.0, + "neu": 0.856, + "neg": 0.144, + "_id": { + "$oid": "6711d587cd60fca157e5d5c0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d587cd60fca157e5d5c1" + } + }, + { + "text": "damn I still thinking what the hell did I learn in that class and i got an A :-P hey really good teacher even though he doesnt teach shyt the only thing he does is talk crap the whole semester... but hey you can sleep in his class so don't worry :)", + "pos": 0.123, + "neu": 0.717, + "neg": 0.16, + "_id": { + "$oid": "6711d587cd60fca157e5d5c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d587cd60fca157e5d5c4" + }, + "professor_name": "Radhika Jha", + "rating": 4.4, + "department": "Economics department", + "comments": [ + { + "text": "Her class was pretty chill. She does not assign much work and she is pretty nice with office hours and extensions.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5c5" + } + }, + { + "text": "she's nice", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5c6" + } + }, + { + "text": "Her grading system is horrible, she is also a very harsh grader, even if you're getting the answer STRAIGHT FROM HER PPT she makes it incorrect and doesn't give you credit. She grades assignments weeks after its due and her final is very heavy. A 8 page paper... literally save yourself the headache and horrible grade and avoid her.", + "pos": 0.081, + "neu": 0.718, + "neg": 0.201, + "_id": { + "$oid": "6711d587cd60fca157e5d5c7" + } + }, + { + "text": "Jha's lectures are amazing and she is a great professor. Her presentations provide a lot of info that will allow you to succeed in this class as well as other econ classes you may take in the future (so save them!). Make sure you do the homework assignments carefully. The midterm and final were not too difficult. Use the homework to review.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5c8" + } + }, + { + "text": "Professor Jha is extremely caring and wants you to succeed. Her lectures are engaging and answer every question that you have after class. She assigns homework and a midterm and a final. She gives extra credit opportunities as well. I highly recommend her class.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5c9" + } + }, + { + "text": "Prof Jha was a really good professor to have. Throughout the course she will give her lessons based off of her own slides that she carefully catered for this class in specific. The homework and tests performance will be on how carefully you payed attention to the class and reviewed the slides. overall, this was a minimalistic yet fun class to have.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5ca" + } + }, + { + "text": "Professor Jha is a real gem. Attendance is not mandatory but she gives extra credit for attendance. Lectures are engaging and she makes sure that you understand the topic/concepts well. She cares about her student and is accessible in and out of class. Take her if you can!", + "pos": 0.275, + "neu": 0.706, + "neg": 0.019, + "_id": { + "$oid": "6711d587cd60fca157e5d5cb" + } + }, + { + "text": "Professor Jha is an extremely caring and attentive professor. She gives you every opportunity to pass and is more concerned about your comprehension of material rather than just memorizing. she allows for extra credit if you need it and was overall just great. please take her for econ classes you wont regret. her lectures are easy to follow", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5cc" + } + }, + { + "text": "with the pandemic. it was super hard to pass the class, her handwriting is absolutely terrible which made the course more difficult than it was already. only tests no homework which makes it harder, she goes super fast teaching and feels like the class goes by fast and you're more lost", + "pos": 0.157, + "neu": 0.655, + "neg": 0.188, + "_id": { + "$oid": "6711d587cd60fca157e5d5cd" + } + }, + { + "text": "Assigns homework but doesn't mandate you to do. Conceptual questions in tests are fine but sometimes the calculation questions are not based on the lectures. She is very accommodating, will address your doubts and concerns. Gives pop quiz and awards extra credit for them. Do bring to her attention that exam questions are difficult than homework.", + "pos": 0.144, + "neu": 0.765, + "neg": 0.091, + "_id": { + "$oid": "6711d587cd60fca157e5d5ce" + } + }, + { + "text": "Attendence is not mandatory but her lectures are full of unformation. So if you want a good grade, attend the lectures. 3 surprize quizzes which counts as extra credit (might just take attendence)! Exams are easy comparing to other classes.", + "pos": 0.268, + "neu": 0.709, + "neg": 0.023, + "_id": { + "$oid": "6711d587cd60fca157e5d5cf" + } + }, + { + "text": "Very easy and informative class. I took Money, Banking and Financial Markets with her, along with Options and Futures. Very nice professor. Most of the class got an A. Her tests are just like the review.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d0" + } + }, + { + "text": "This Professor will help you along the way. very helpful", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d1" + } + }, + { + "text": "Thanks to the way she teaches, you are sure to do well on her exams, plus she is a fair grader. She is super respectful and relatable. You will feel welcomed to ask questions and participate, and on top of that, you will get points for participating. Definitely an enjoyable and informative class. Excellent professor. Totally recomendable!", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d2" + } + }, + { + "text": "She is by far one of the best professors I have had (and I am in my senior year, so that means a lot). She is respectful, friendly, funny, and knowledgeable. She is always willing to answer questions in class and outside. The way she grades is fair and she will grade you only on what she teaches.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d3" + } + }, + { + "text": "Amazing professor. She is extremely smart and very attentive to her students, which shows in her teaching. I wish I could take all the courses she is teaching. I would highly recommend her classes to any of my peers. One of the best professors I've ever had.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d4" + } + }, + { + "text": "Best professor I've had at CCNY. She truly cares about your understanding of the material. The material isn't too hard if you study; everything she puts in the test she has explained before. She truly enjoys teaching (real teaching). You'll learn so much in one semester that you'll want to take another class w/ her. Just take the class!", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d5" + } + }, + { + "text": "Its worth the time! Good Prof!", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d6" + } + }, + { + "text": "Great Professor.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d7" + } + }, + { + "text": "Professor Jha, is an amazing person over all. She cares about her students getting ahead.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d587cd60fca157e5d5d8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d588cd60fca157e5d5da" + }, + "professor_name": "Jon Sigurjonsson", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Free online textbook. Attendance isn't mandatory. Easy quiz on every chapter. You can find many helpful resources. Fun to participate in. Nice guy who cracks a couple of jokes. Stresses one important assignment.", + "pos": 0.343, + "neu": 0.515, + "neg": 0.142, + "_id": { + "$oid": "6711d588cd60fca157e5d5db" + } + }, + { + "text": "Tough grader, but cares more that you learn and become observatn than to just sit around and listen to lectures.", + "pos": 0.172, + "neu": 0.774, + "neg": 0.054, + "_id": { + "$oid": "6711d588cd60fca157e5d5dc" + } + }, + { + "text": "Knowledgeable and inspiring. Classes are never boring and there's a lot of participation and debates so you will get to develop your ideas and think out of the box. Makes you work hard for your grade. I wanted to take him for experimental this fall but unfortunately he doesn't seem to be teaching any course. Take him if you can, a real gem in cuny.", + "pos": 0.049, + "neu": 0.888, + "neg": 0.063, + "_id": { + "$oid": "6711d588cd60fca157e5d5dd" + } + }, + { + "text": "He made a hard class easy. Is willing to go out of his way to help students out and gives extra credit. I highly recommend any course he teaches but i suggest that you take this specific course with him.", + "pos": 0.172, + "neu": 0.801, + "neg": 0.027, + "_id": { + "$oid": "6711d588cd60fca157e5d5de" + } + }, + { + "text": "Likes short assignments, max 5 pages. Lectures can get dry every now and then and you will hear \"consciousness\" ALOT!! Very understanding and lets you do a creative final which helps with your grade. Very fair grader! Topics are interesting but A LOT OF ARTICLES TO READ. I stopped reading them half-way through semester since he would recap it all!", + "pos": 0.157, + "neu": 0.808, + "neg": 0.035, + "_id": { + "$oid": "6711d588cd60fca157e5d5df" + } + }, + { + "text": "Be prepared to read 80+ articles", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e0" + } + }, + { + "text": "Took him for experimental psych. Great prof, had many quizzes but it helps your grade. one proposal paper thats submitted in parts. the lectures are amazing!you will love his teaching style. Loved this course only because he taught it.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e1" + } + }, + { + "text": "I waited to take this class with Prof. S because I heard he was terrific. He didn't disappoint. I learned so much about critical thinking and the scientific method. It changed how I see many things. It seems a lot harder at the beginning. The test are straight forward . Take the practice quizzes! He is really fair, funny and kind. Very supportive.", + "pos": 0.25, + "neu": 0.716, + "neg": 0.033, + "_id": { + "$oid": "6711d588cd60fca157e5d5e2" + } + }, + { + "text": "Hands down one of the most influential professors in my college career. His class is so thought provoking and inspiring that it makes you think very differently about psychology! Not only is his class very reasonable, its actually a very fun class if you follow directions. Very probable in getting an A in this class.", + "pos": 0.157, + "neu": 0.81, + "neg": 0.033, + "_id": { + "$oid": "6711d588cd60fca157e5d5e3" + } + }, + { + "text": "One of the best psychology professors at CCNY. He gives extra credit and his lectures are fun. He is really chill, his grading criteria is clear, and just following his directions can get you an A.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e4" + } + }, + { + "text": "Professor Sigurjonsson is one of the best lecturers in the Psychology Department at CCNY. I learned a lot in his class about how to write a good research paper. He is extremely picky, but if youre willing to put work in he will teach you what you need to do to get a good grade.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e5" + } + }, + { + "text": "One of the best classes", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e6" + } + }, + { + "text": "He is the best experimental professor!!! You should take his class, he gives extra credits to make sure you will pass the class. Ask him questions and he is very helpful. Assignments and tests are very straight forward.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e7" + } + }, + { + "text": "Best professor ever. Took him for experental psychology and Real life cognitive Psychology. Received a B for experimental and A in Real life cognitive psych. He very straightforward and if you have any concerns he will help you just speak to him. He is very understanding.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e8" + } + }, + { + "text": "HE IS AWESOME, take him!! His lectures are straight forward just as any assignment he gives. He is also very chill and cares about the students. If you do all the work you will be fine.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5e9" + } + }, + { + "text": "Sigurjonsson is a great professor, and is extremely intelligent. If you want an A in his class, he'll make you work for it. However, he does the best he can to help his students get to a B. Beware, he makes you write a lot. However, it sharpened my writing skills immensely, which I am ultimately grateful for.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5ea" + } + }, + { + "text": "Dr. Sigurjonssan is one of most awesome professor @ ccny. He helps you understand the material via his amazing lectures. He's down to earth, hilarious and inspirational. Took him for winter session. Gives extra credit. His test and quizzes are tough. You will have to spend time reading the material. It's not an easy A, you have to really earn it.", + "pos": 0.254, + "neu": 0.695, + "neg": 0.051, + "_id": { + "$oid": "6711d588cd60fca157e5d5eb" + } + }, + { + "text": "Great professor - very clear, funny, encourages participation. Tests are tough, but fair. He has each student run their own research project, which was interesting, and most of the work is done during class so it really breaks up the time. Can seem unapproachable at first, but he's actually a really nice guy - super helpful.", + "pos": 0.375, + "neu": 0.608, + "neg": 0.017, + "_id": { + "$oid": "6711d588cd60fca157e5d5ec" + } + }, + { + "text": "If only every Professor was like John", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5ed" + } + }, + { + "text": "Prof Sigurjonsson is really knowledgable about what he teaches and humorous as well which is clutch for a long class like experimental. He gives you a lot extra credit opportunity through sona system and gives good feedback on assignments. He wants his class to do well but you have to put in the work to get a good grade. 5 exams, 1 dropped!", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d588cd60fca157e5d5f0" + }, + "professor_name": "Michael Gregorek", + "rating": 3.6, + "department": "Media Arts department", + "comments": [ + { + "text": "He will be talking the whole time and all u have to do is listen, very easy class and u don't even need to show ur camera. He will ask for proof of life so definitely be on the lookout and will give pop quizzes on the Space Merchants reading, so definitely read that. But don't worry about that because they are simple and easy questions.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5f1" + } + }, + { + "text": "He really sees the world differently just have to get to know him and get used to how he teaches but he needs to give his students some slack.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5f2" + } + }, + { + "text": "CCNY's Wednesday 3:30-6:00 PM online synchronous class is information-rich, combining quizzes on readings with lecture discussions. The introductory course maintains a manageable workload, and the professor imparts useful knowledge. Highly recommend for learning foundational concepts.", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5f3" + } + }, + { + "text": "Professor Gregorek's class is worth taking, he really makes you look at the world differently. The class is lecture heavy but its interactive lectures, so you will never get bored plus he makes the material very catchy and simple to remember so you will actually learn something. The assignments are intimidating but he is accessible and helpful.!", + "pos": 0.119, + "neu": 0.822, + "neg": 0.06, + "_id": { + "$oid": "6711d588cd60fca157e5d5f4" + } + }, + { + "text": "Don't skip class, there is always a pop quiz or something else going on in the class. He's funny and keeps your attention but can be confusing sometimes. Email him or ask him after class, he's an interesting teacher.", + "pos": 0.125, + "neu": 0.821, + "neg": 0.054, + "_id": { + "$oid": "6711d588cd60fca157e5d5f5" + } + }, + { + "text": "Save your self, and your gpa and do not take this class. His teaching is very interesting yet quite confusing at times. If I would have know I would have taking any other elective course and saved myself the stress. If you can avoid this class avoid it TRUST ME.", + "pos": 0.202, + "neu": 0.652, + "neg": 0.146, + "_id": { + "$oid": "6711d588cd60fca157e5d5f6" + } + }, + { + "text": "If you actually have the chance to take him, do it. He is a no-nonsense professor, but he is also so funny. I had to take him for 3 hours straight and I was not bored. I actually played attention. The readings are short, the book is actually good once you get to chapter 3. (Not a textbook, is a novel) loved his class.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5f7" + } + }, + { + "text": "This is simply the worst class that I've had at this college, or for that matter, any college. His videos were worst part. In this new technological era, I expect at least a 4k video every once in a while. But not once wasn't I stuck watching a slide show, I could literally notice the frames.", + "pos": 0.052, + "neu": 0.863, + "neg": 0.085, + "_id": { + "$oid": "6711d588cd60fca157e5d5f8" + } + }, + { + "text": "The class was amazing and different from all the other classes i had at CCNY. I took during Covid. I wish I had this class in person as he was hilarious but he was personable, informative and interesting. He will give you some tough writing homeworks but it's a good class overall since I learned more than I intended.", + "pos": 0.198, + "neu": 0.777, + "neg": 0.026, + "_id": { + "$oid": "6711d588cd60fca157e5d5f9" + } + }, + { + "text": "He is smart, very nice person. Sometimes it is hard to know if he is being serious about his opinions or not. I don't like how he put one student on the spot light all the time (the one with good grades), it makes other feel unimportant to make it to the class. Not a horrible teacher, just that when it comes to opinions, it is a little annoying.", + "pos": 0.165, + "neu": 0.743, + "neg": 0.092, + "_id": { + "$oid": "6711d588cd60fca157e5d5fa" + } + }, + { + "text": "If you are straight out of HS and have not developed critical thinking skills, then this class is for you! If you have a shred of life experience, you will see right through this old school, conservative, power-hungry, god-fearing hypocrite. If he cared about ethics, he wouldn't force students to pander to his opinions.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5fb" + } + }, + { + "text": "I took ethics with this professor in 2012 and never wrote a review but years later I still remember the work ethics I developed in his class. He defiantly helped shape the person I am today.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d5fc" + } + }, + { + "text": "The worst professor I've ever had.", + "pos": 0.0, + "neu": 0.549, + "neg": 0.451, + "_id": { + "$oid": "6711d588cd60fca157e5d5fd" + } + }, + { + "text": "3 major \"essays,\" no tests but loads of pop quizzes! Gregorek seems intimidating at first and he'll really get under your skin but I cant imagine anybody teaching this class other than him. He goes through the material quick but is always accessible, even at wee hours of the night. And did I mention he is hot? Definitely a plus for a night class.", + "pos": 0.05, + "neu": 0.866, + "neg": 0.084, + "_id": { + "$oid": "6711d588cd60fca157e5d5fe" + } + }, + { + "text": "Love this professor! Sometimes the class can seem difficult and confusing, but if you take a moment to talk to the professor and ask for clarification everything gets better. If you try and take away a few things from this class it really prepares you for the future.", + "pos": 0.125, + "neu": 0.816, + "neg": 0.059, + "_id": { + "$oid": "6711d588cd60fca157e5d5ff" + } + }, + { + "text": "He will teach you to write better, think better and be better. His antics will keep you awake and entertained. He's kind of hot to boot. Intelligent and sexy. Glad he was my professor.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d600" + } + }, + { + "text": "one word: IRAC! Once you ACTUALLY GET this format, he'll love you forever and everything seems to flow. It's a confusing and overwhelming class at first but he guides you and prepares you for the real world. One of the best prof's I've ever had!", + "pos": 0.171, + "neu": 0.801, + "neg": 0.028, + "_id": { + "$oid": "6711d588cd60fca157e5d601" + } + }, + { + "text": "DO ALL OF THE WORK HE GIVES. He gives out so much EASY extra credit. It's foolish not to do it all. He's very particular about work length and format. 250 words means 250 or less. Some assignments were only 4 sentences long. Few were over a page. Seriously. Earn yourself an easy and fun A+. You'll look forward to his classes. He's entertaining.", + "pos": 0.219, + "neu": 0.731, + "neg": 0.05, + "_id": { + "$oid": "6711d588cd60fca157e5d602" + } + }, + { + "text": "Gregorek is one of the best professors in the MCA dept and teaching isn't even his day job! A very brilliant lawyer, Gregorek can be intimidating to underachieving students. He does not reward you for doing your best, but rather for doing things the right way. IRAC writing format is mandatory! His classes will expand your mind. Highly recommended.", + "pos": 0.219, + "neu": 0.725, + "neg": 0.056, + "_id": { + "$oid": "6711d588cd60fca157e5d603" + } + }, + { + "text": "Gregorek does not teach in a very clear fashion, he never answers your questions straight on and uses analogies no one understands. But if you put effort into the class work (a lot of group work is involved!), he will take note of this, and reward you fairly with a good grade.", + "pos": 0.206, + "neu": 0.768, + "neg": 0.026, + "_id": { + "$oid": "6711d588cd60fca157e5d604" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d588cd60fca157e5d606" + }, + "professor_name": "William Sit", + "rating": 2.2, + "department": "Mathematics department", + "comments": [ + { + "text": "He's not bad, but messes up on algebra. gives points on effort but still fails students without fear. Definitely a good professor in higher math but NOT an applied mathematician. i'd give him some slack...", + "pos": 0.201, + "neu": 0.655, + "neg": 0.144, + "_id": { + "$oid": "6711d588cd60fca157e5d607" + } + }, + { + "text": "disaster! this guy should be sent home ASAP. WHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "pos": 0.0, + "neu": 0.646, + "neg": 0.354, + "_id": { + "$oid": "6711d588cd60fca157e5d608" + } + }, + { + "text": "I took Math 391(Methods of Differential Equations) With this professor and out of like 20 students only 5 passed got grades abobe C. If you see him RUN!!!", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d609" + } + }, + { + "text": "he is horrible!!!", + "pos": 0.0, + "neu": 0.314, + "neg": 0.686, + "_id": { + "$oid": "6711d588cd60fca157e5d60a" + } + }, + { + "text": "Doesn't really explains the work, he goes into deeper teaching of it than what he really should be. I wouldn't recommened him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d60b" + } + }, + { + "text": "Even master students got confused in his class. Comparing with what he expects to students to learn, his support is not enough at all.", + "pos": 0.1, + "neu": 0.815, + "neg": 0.085, + "_id": { + "$oid": "6711d588cd60fca157e5d60c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d588cd60fca157e5d60d" + } + }, + { + "text": "incredibly helpful, gives marks for effort, not just ability tries to make sure all his students get good grades", + "pos": 0.328, + "neu": 0.594, + "neg": 0.078, + "_id": { + "$oid": "6711d588cd60fca157e5d60e" + } + }, + { + "text": "The worst teacher in school. Very hard to understand and teraches straight out the book. Does not go over hw and teaches in a master level. When talking to him, he makes you feel dumb. Not a good prof. Avoid any of his classes.very very Hard grader", + "pos": 0.033, + "neu": 0.698, + "neg": 0.269, + "_id": { + "$oid": "6711d588cd60fca157e5d60f" + } + }, + { + "text": "He is very nice as a person but as a professor he stinks. Stay away from his classes. You will not learn anything and at the end you will end uo with a headache", + "pos": 0.056, + "neu": 0.876, + "neg": 0.068, + "_id": { + "$oid": "6711d588cd60fca157e5d610" + } + }, + { + "text": "He is horrible. Keep urself away. He is very confusing and does not know how to teach. DO NOT TAKE HIM!!!!", + "pos": 0.0, + "neu": 0.735, + "neg": 0.265, + "_id": { + "$oid": "6711d588cd60fca157e5d611" + } + }, + { + "text": "Stay away. He says he is slick but he is not. First time ever that a teacher confused me more than the book. Not very helpful and will tell you that only 30% of the class will pass. Really boring classes. For insomniacs: Take his class, it will help you sleep.", + "pos": 0.059, + "neu": 0.781, + "neg": 0.16, + "_id": { + "$oid": "6711d588cd60fca157e5d612" + } + }, + { + "text": "Horrible professor. if you want to get yourself into trouble go ahead. just remember you will no one to talk to. Arrogant, and stubborn, not to mention all the mistakes he did in class.... stay away!!!!", + "pos": 0.027, + "neu": 0.601, + "neg": 0.372, + "_id": { + "$oid": "6711d588cd60fca157e5d613" + } + }, + { + "text": "Difficult professor.", + "pos": 0.0, + "neu": 0.286, + "neg": 0.714, + "_id": { + "$oid": "6711d588cd60fca157e5d614" + } + }, + { + "text": "He clearly explains the material and has good office hours. BUTTT he is a very hard professor, gives 3 exams, drops none, does not curve, focuses so much on matlab that you wont have enough time to study and do his endless HW. Worst of all, he does not mind failing you. I regret taking his class!!!", + "pos": 0.121, + "neu": 0.742, + "neg": 0.138, + "_id": { + "$oid": "6711d588cd60fca157e5d615" + } + }, + { + "text": "My fellow friends,please chose Mr.Sit as your professor.He is the most and one of the best math teacher in the City college of New York.very clear,talented and always prove the theory. However, some students just want to pass and get easy grades, they do not care about the knowledge.So, the get mad", + "pos": 0.137, + "neu": 0.768, + "neg": 0.095, + "_id": { + "$oid": "6711d588cd60fca157e5d616" + } + }, + { + "text": "Stay away from this professor if u can. Joys in failing. Less than 40% of his class passes. Gives 3 exams dont drop any and puts a lot of emphasis on matlab which is worth 10% of final grade", + "pos": 0.153, + "neu": 0.774, + "neg": 0.073, + "_id": { + "$oid": "6711d588cd60fca157e5d617" + } + }, + { + "text": "Me and another student were passing the class, me with a 73 and him with a 94 average. We both took the finals and receieved and F. The department final was much easier compared to his. I took it again and got a B- with not even trying.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d618" + } + }, + { + "text": "Sit is one of the better Calculus teachers I had. He puts alot of emphasis on the Mathlab part of Calculus 3 but he takes his time in the class and tries to explain as much as possible.", + "pos": 0.05, + "neu": 0.95, + "neg": 0.0, + "_id": { + "$oid": "6711d588cd60fca157e5d619" + } + }, + { + "text": "The good: clear, knowledgable, nice, you will learn in his class. The bad: staborn, very demanding. Grading: 3 exams + lecture final + matlab final. doesnt drop any grade.", + "pos": 0.261, + "neu": 0.593, + "neg": 0.147, + "_id": { + "$oid": "6711d588cd60fca157e5d61a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d589cd60fca157e5d61c" + }, + "professor_name": "Richard Braverman", + "rating": 4.2, + "department": "World Humanities department", + "comments": [ + { + "text": "Professor Braverman is lightest and easiest A you will ever get. Just show up to class, do some participation (if you want) and hand in the few papers he asks for. He cares less about the class than the students and often rambles and goes off track, so that is to your advantage. Would definitely recommend!!", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d61d" + } + }, + { + "text": "Great class. Books are all interesting and grading is very fair. If you need to take World Humanities course, take this one.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d61e" + } + }, + { + "text": "This guy is awful! Do not take!!!!", + "pos": 0.0, + "neu": 0.59, + "neg": 0.41, + "_id": { + "$oid": "6711d589cd60fca157e5d61f" + } + }, + { + "text": "He doesn't say anything if you are absent or late, but if you just show up to class for the attendance, he will call you out. Let him know ahead of time you gotta leave early. Lecture can make you sleepy at times but depending on what you reading, what he says is pretty interesting. You really learn how to analyze stories. I enjoyed a lot", + "pos": 0.163, + "neu": 0.82, + "neg": 0.017, + "_id": { + "$oid": "6711d589cd60fca157e5d620" + } + }, + { + "text": "his class was pretty easy and it's true he doesnt really care about tardiness or absence. just read the books because you have to use them in essays. sometimes it was difficult to hear him. no final.2 quizes 2 papers.", + "pos": 0.176, + "neu": 0.674, + "neg": 0.15, + "_id": { + "$oid": "6711d589cd60fca157e5d621" + } + }, + { + "text": "A very easy teacher. All you have to do is read the books, Some are interesting. I liked his lecture and he doesn't care if you are absent or late to his class.", + "pos": 0.216, + "neu": 0.719, + "neg": 0.065, + "_id": { + "$oid": "6711d589cd60fca157e5d622" + } + }, + { + "text": "loved this class. books are great. bives enough time to read things and assignments and quizzes aren't confusing. i had tsirelman for ta and this is the best pairing of lecture/recitation I had so far. both are chill and funny. (the ta is also easy on the eyes!)", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d623" + } + }, + { + "text": "Great professor. I really liked the books we read and the quizes were fair and the papers were reasonable. He explains the books clearly and shows parts of movies based on those books. simply Loved this class & The TA (tsirelman) was really helpful too. :)", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d624" + } + }, + { + "text": "Great professor. He's really clear and explains everything. You don't really need to read the book but its recommended. He gives lots of notes and the class itself is very easy.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d625" + } + }, + { + "text": "I recently took his Ango American lit class and it was really interesting. He's a really cool, fun and informative teacher who really relates to the students and texts well. I'd reccomend him any day of the week. Everything is very straightfoward. =]", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d626" + } + }, + { + "text": "Took 'global english lit' last semester to fulfill a requirement. while he could have pushed the class a bit harder, he was a clear, fair, and helpful professor overall.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d627" + } + }, + { + "text": "He gave good lecture, however he is not a fair grader. If you go to his class everyday and you do not participate, you automatically get a lower grade for his class, no matter how good you write for your paper. Participation and writing are extremely important in this professor's class.", + "pos": 0.136, + "neu": 0.774, + "neg": 0.09, + "_id": { + "$oid": "6711d589cd60fca157e5d628" + } + }, + { + "text": "So easy you don't have to read at all because he pretty much summarize all the books for you.the books are cheap.amazing prof. I miss his class dearly.", + "pos": 0.264, + "neu": 0.69, + "neg": 0.046, + "_id": { + "$oid": "6711d589cd60fca157e5d629" + } + }, + { + "text": "Excellent lecutures which made the books come alive. He knows his stuf.", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d62a" + } + }, + { + "text": "He is extremly boring u will fall asleep in your lectures. Altough the lectures are very helpfull u will understand the reading better. The class has too much books to read.", + "pos": 0.085, + "neu": 0.848, + "neg": 0.067, + "_id": { + "$oid": "6711d589cd60fca157e5d62b" + } + }, + { + "text": "This is a great class I'm learning a lot. The lectures are great.", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d62c" + } + }, + { + "text": "A phenomenal course by a great teacher. By far the best course I have taken in the grad program.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d62d" + } + }, + { + "text": "Just makes a reading list and expects you to teach class yourself. Does no research, does not lecture. Does not penalize for not attending, but he does penalize for not participating in class arguments? wtf?", + "pos": 0.0, + "neu": 0.749, + "neg": 0.251, + "_id": { + "$oid": "6711d589cd60fca157e5d62e" + } + }, + { + "text": "It waas a really great lecture part of the class. Really outstanding knowledge of the books which he made very clear", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d62f" + } + }, + { + "text": "A fantasitic lecturer. I really love the class.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d630" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d589cd60fca157e5d632" + }, + "professor_name": "Ion Antonescu", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Did not like math but he helped a ton! Now I understand what it takes to pass math classes and its a ton of practice! Class was fairly easy, no attendance, hw, just tests.", + "pos": 0.097, + "neu": 0.779, + "neg": 0.124, + "_id": { + "$oid": "6711d589cd60fca157e5d633" + } + }, + { + "text": "He is extremely great professor as a lecturer. He explains every concept very clearly.does a lot of examples in class. His first exam is always hard. but then next two exams are easy. So don't loose hope if you do bad on first exam", + "pos": 0.165, + "neu": 0.668, + "neg": 0.166, + "_id": { + "$oid": "6711d589cd60fca157e5d634" + } + }, + { + "text": "great professor: teach very clearly and is liked by all people. I like him a lot.", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d635" + } + }, + { + "text": "Great instructor that's also energetic and funny.", + "pos": 0.712, + "neu": 0.288, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d636" + } + }, + { + "text": "Prof. Antonescu is one of the best teachers I have ever had. He has a talent for explaining things clearly and it's obvious that he really loves teaching. He'll spend as much time as you need outside of class. He's also just a cool guy overall. Can't recommend highly enough.", + "pos": 0.258, + "neu": 0.709, + "neg": 0.034, + "_id": { + "$oid": "6711d589cd60fca157e5d637" + } + }, + { + "text": "he is very good prof. he teaches great and u will understand. He takes time to explain the important concept and simplifies it for ur imagination. but his exams are tough. u will have to do his homeworks and work hard to pass he is not easy A prof. but u will get A if u put the effort which he will know u are doing if u do well in his exams", + "pos": 0.107, + "neu": 0.813, + "neg": 0.08, + "_id": { + "$oid": "6711d589cd60fca157e5d638" + } + }, + { + "text": "I loved this prof. He is young an exciting and one of the very few good math profs in city. He is willing to help during his office hrs if you catch him or even by email.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d639" + } + }, + { + "text": "He is one of the best prof. I have ever come across. A perfect blend of extravagant teaching skill, humor and helpfulness. Although he goes real fast with the materials, therefore, you have to study hard. However, once you get the concept from him, it stays in your mind forever.", + "pos": 0.218, + "neu": 0.759, + "neg": 0.024, + "_id": { + "$oid": "6711d589cd60fca157e5d63a" + } + }, + { + "text": "He is the best professor I've ever had in my life. He is very good at explaining stuff. Very well prepared when come into class. He'd take so much time to grade tests tho. Take him if you wanna understand the math concepts.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d63b" + } + }, + { + "text": "Very Helpful. He tries to get students to understand the ideas behind calc, but doesn't solve any equations to prove it. You'll understand calc, but you wouldn't know how to apply it.", + "pos": 0.06, + "neu": 0.884, + "neg": 0.056, + "_id": { + "$oid": "6711d589cd60fca157e5d63c" + } + }, + { + "text": "I had this professor when he taught at DeVry. By far one of my favorite professors and missed alot at Devry. Hey Antonescu, its me Jose (you probably don't remember, hehe). Concerns himself with making sure you learn and understand the material. I was a lost case in Calc 2 and he helped me become one of the best in class (A+) thanks a million.", + "pos": 0.163, + "neu": 0.777, + "neg": 0.059, + "_id": { + "$oid": "6711d589cd60fca157e5d63d" + } + }, + { + "text": "He is the BEST!! Explains very well, offers students a lot of extra time if needed and a lenient grader. He does take a while to grade tests n exams but it's totally worth it =)", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d63e" + } + }, + { + "text": "Great professor, makes everything seems so easy, answers all your questions! The exams are tough, but he'll clarify the questions for you. Def. a professor worth taking, you'll learn a lot.", + "pos": 0.211, + "neu": 0.754, + "neg": 0.035, + "_id": { + "$oid": "6711d589cd60fca157e5d63f" + } + }, + { + "text": "He is an excellent prof. and very helpful!", + "pos": 0.541, + "neu": 0.459, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d640" + } + }, + { + "text": "This is one of the best math professors from City College. He has a unique style of teaching. He keeps students engaged. He is available to help you at all times. As well, he uses various techniques to solve a problem and if you do not understand, he will make sure to do his best to make the material understandable to you. He is nice and funny.", + "pos": 0.301, + "neu": 0.667, + "neg": 0.032, + "_id": { + "$oid": "6711d589cd60fca157e5d641" + } + }, + { + "text": "I think this is the perfect professor for students who are willing to become engineers. He tries to make sense of everything you are learning,not just a bunch of numbers and signs on the board, everything has to make sense for him and so he wants everything to make sense to you,I think he should be teaching all calculus courses in city college A+++", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d642" + } + }, + { + "text": "Very chill professor, makes the material seem really easy in class, but you still have to study! He is very smart and fair.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d643" + } + }, + { + "text": "he is by far the best math professor i had", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d644" + } + }, + { + "text": "One of the best professor I had so far. He is very clear and logical.", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d645" + } + }, + { + "text": "Great Professor!!! He is funny!", + "pos": 0.731, + "neu": 0.269, + "neg": 0.0, + "_id": { + "$oid": "6711d589cd60fca157e5d646" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58acd60fca157e5d648" + }, + "professor_name": "Kameron McCombs", + "rating": 4.9, + "department": "Mathematics department", + "comments": [ + { + "text": "So good looking and young and such a great professor. He will make you love math", + "pos": 0.469, + "neu": 0.531, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d649" + } + }, + { + "text": "Easy A come right here. He is so down to earth and can teach you during his office hours.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d64a" + } + }, + { + "text": "Okay let me be real, his tests are easy but once you get into the final you have to learn by yourself. This is because he does not make it, professor Auth makes the test. Even though Mr. McCombs grades your final. He tends to teach you slow until you understand the material. I love math and it is just hard once a professor teaches slow.", + "pos": 0.126, + "neu": 0.852, + "neg": 0.022, + "_id": { + "$oid": "6711d58acd60fca157e5d64b" + } + }, + { + "text": "He is one of the humblest professors I have ever had. If you are not good at math, take his class because you will definitely not be stressed out, and you will learn too. His exams and quizzes are based on whatever he goes over in class. Try to practice the suggested problems. I would definitely recommend him. Take it from me who used to hate math", + "pos": 0.126, + "neu": 0.762, + "neg": 0.112, + "_id": { + "$oid": "6711d58acd60fca157e5d64c" + } + }, + { + "text": "They say calc 2 is really hard but he made it sooo easy. The best guy", + "pos": 0.402, + "neu": 0.542, + "neg": 0.056, + "_id": { + "$oid": "6711d58acd60fca157e5d64d" + } + }, + { + "text": "He is the best professor Ive ever had of my 2 years at college. I had him over the summer and again for the fall and hes THE BEST. Hes SOO CARING and gives you the problems of whats going to be on his tests and quizzes. He even gives bonus questions. Young, cool, cute, hot and a babe. Imma miss his cute face. MVP", + "pos": 0.292, + "neu": 0.658, + "neg": 0.05, + "_id": { + "$oid": "6711d58acd60fca157e5d64e" + } + }, + { + "text": "He makes math so easy and he helps you a lot. One of the best professors at CCNY, I wish I could take him for my other math classes. He's also funny and cuteee", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d64f" + } + }, + { + "text": "Hottie Mcdottie, but also a very good professor! He cares for you and answers any questions you have", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d650" + } + }, + { + "text": "He is a great teacher. He is funny and smart. The way he teaches in his lectures is easy and he answers anybody's questions. Take him, I hope I take him for Pre-Calc next semester.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d651" + } + }, + { + "text": "Yeah hes cool but I dont see whats the hype with him. He teaches his stuff but you have to go home and study yourself soo", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d652" + } + }, + { + "text": "Young, smart, caring, good looking, dresses nice and funny because of the way he handles the chalks. Take him guys!", + "pos": 0.497, + "neu": 0.503, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d653" + } + }, + { + "text": "young, smart, caring, dresses really nice, and funny because of the way he handles the chalk. Take him guys!", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d654" + } + }, + { + "text": "You would think it's not worth taking an early morning class, but this guy made me get my tired butt out of my bed. I actually enjoyed coming to his class because of his enthusiasm. His lectures are great! had a horrible young pre-calc professor, but this one is dope", + "pos": 0.209, + "neu": 0.645, + "neg": 0.146, + "_id": { + "$oid": "6711d58acd60fca157e5d655" + } + }, + { + "text": "I love him because he made calculus easy. Like he cares for you and answers any questions you have. His quizzes are easy as long as you practice the web assign problems. He gives you hints on what the test and final will ask. The extra credit questions are usually really easy. Happy to have him again. Also, he's nerd hot so win win", + "pos": 0.37, + "neu": 0.576, + "neg": 0.054, + "_id": { + "$oid": "6711d58acd60fca157e5d656" + } + }, + { + "text": "Super chill, great lectures, and super lenient. If you ever miss a quiz or a test for any reason, he'll let you take a different version or not count it towards your grade so long as you have a legit excuse. Attendance wasn't really mandatory. TAKE THIS GUY NO MATTER WHAT. DO NOT PICK ANY OTHER PROFESSOR IF YOU GET THE CHANCE", + "pos": 0.235, + "neu": 0.679, + "neg": 0.086, + "_id": { + "$oid": "6711d58acd60fca157e5d657" + } + }, + { + "text": "One of favorite professors. He is really nice and caring. He's really young so I was nervous that he might not be a good professor, especially for a summer class but I was wrong. He is awesome! His lectures make sense and he answers any questions you have. He wants all his students to understand the material. He even gives bonus questions. MVP", + "pos": 0.213, + "neu": 0.692, + "neg": 0.095, + "_id": { + "$oid": "6711d58acd60fca157e5d658" + } + }, + { + "text": "He is the BESTTTT. He actually cares for his students. This guy knows how to teach and makes the lectures interesting. He actually enjoys teaching, which makes it even better. Take him guys. Im going to miss his cute young face", + "pos": 0.289, + "neu": 0.68, + "neg": 0.031, + "_id": { + "$oid": "6711d58acd60fca157e5d659" + } + }, + { + "text": "One of the best professors out there. Really explains everything to the point. A young teacher and actually understands the students. Tests are fair and give extra credit. Really enjoyable class and would love to take him again for another math class.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d65a" + } + }, + { + "text": "Babbee. Really nice and actually cares for his students. Love this dude", + "pos": 0.534, + "neu": 0.466, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d65b" + } + }, + { + "text": "he's really young so I thought he would not be a good professor but he is literally the best. He really knows how to explain the material. Just practice doing the webassign problems and you will be set for his tests/quizzes. Also, hes really cute", + "pos": 0.181, + "neu": 0.726, + "neg": 0.093, + "_id": { + "$oid": "6711d58acd60fca157e5d65c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58acd60fca157e5d65e" + }, + "professor_name": "Matthew Sunderland", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "He seems to genuinely cares, yet so disorganized and does not convey information properly. It took him about a month to grade tests. He was unable to control the room and teach properly. Hes also into useless technology, which makes the classroom even more chaotic.", + "pos": 0.057, + "neu": 0.777, + "neg": 0.166, + "_id": { + "$oid": "6711d58acd60fca157e5d65f" + } + }, + { + "text": "I had him a few years back and he's an amazing professor. Very helpful, goes through the material well and his tests are as expected. Not to mention he's pretty handsome.", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d660" + } + }, + { + "text": "His class was so easy for someone like me who doesnt like math at all! For a long class he kept it alive and was clear with the lessons, I definitely recommend taking him!!", + "pos": 0.376, + "neu": 0.579, + "neg": 0.045, + "_id": { + "$oid": "6711d58acd60fca157e5d661" + } + }, + { + "text": "He truly cares about students and will meet after class to go over anything you don't understand. The textbook is really useless but needed to do gradescope HW. Webwork is a lot more helpful than Gradescope. Do ALL of the review problems he gives. It's really helpful for his exams. He will not leave you out to dry. Trust, it's definitely doable!", + "pos": 0.271, + "neu": 0.66, + "neg": 0.07, + "_id": { + "$oid": "6711d58acd60fca157e5d662" + } + }, + { + "text": "He's a really nice guy & wants u to do well. His class is a joke: takehome quizzes, easy exams from reviews, but when it comes to the final you aren't prepared unless you study on your own. He's disorganized and rushes through the material, we barely finished in time. I had an A- but failed the final so failed the class. U have to study on your own", + "pos": 0.086, + "neu": 0.733, + "neg": 0.181, + "_id": { + "$oid": "6711d58acd60fca157e5d663" + } + }, + { + "text": "I love Matthew! He gives review prior to each exam, and he explains things very well. He doesn't give much homework, and his exams are definitely doable. He gives partial credit. I love him so much!!!! take him!", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d664" + } + }, + { + "text": "He's willing to walk you through questions you do not understand and he gives review sheets for each of the tests. He also gives feedback on tests to show what exactly you did wrong, but he also gives partial credit. Probably one of the best professors I've taken so far.", + "pos": 0.158, + "neu": 0.807, + "neg": 0.035, + "_id": { + "$oid": "6711d58acd60fca157e5d665" + } + }, + { + "text": "Amazing professor. He cares about his students a lot and is willing to explain problems to those who don't get it the first time. Prepares you well for his exams and final! Definitely would take him again. As a student who was never that good at math, with his help I improved and got an A in this course.", + "pos": 0.24, + "neu": 0.691, + "neg": 0.069, + "_id": { + "$oid": "6711d58acd60fca157e5d666" + } + }, + { + "text": "I would just say take him. He teaches very well. He will give review sheet before every exam. If you practice the review sheets, you will be fine. He does not cut whole points in a question, he gives partial credit. He is a great professor, take him for any math class.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d667" + } + }, + { + "text": "He is quite possibly the easiest choice for Calc 3 that you can take. Basically all of your grade except the final is assured- the quizzes are easy if you're following in class, with an option to correct them, the tests are basically rehashed quizzes. Give yourself 2 or 3 days for the final, though. One day didn't cut it for me.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d58acd60fca157e5d668" + } + }, + { + "text": "Plz don't take this guy, even he couldn't finish certain problems during the lecture...I basically taught myself Cal 3. The majority of the class wasn't prepared for the final at all. The only thing good was the no HW but a ton of quizzes which weighed more than the midterms :( so study for quizzes I guess cuz they mean more ugh", + "pos": 0.067, + "neu": 0.76, + "neg": 0.174, + "_id": { + "$oid": "6711d58acd60fca157e5d669" + } + }, + { + "text": "Yes, you would have to study a lot by yourself. So what? He cares about his students! He'd give you an opportunity to get an A as long as you study. There are so many professors who, no matter how hard you work, would give you B or C. His quizzes (sometimes take-home quizzes) and midterms are based on his lectures, no homework. He's just perfect!", + "pos": 0.17, + "neu": 0.769, + "neg": 0.061, + "_id": { + "$oid": "6711d58acd60fca157e5d66a" + } + }, + { + "text": "He is definitely one of the most caring professors at CCNY, with that in mind you have to be on top of the work. He gives very easy quizzes and no HW so you have to study on your own, otherwise come the final, you're screwed. If you like not going to class and can learn on your own, he's a great choice, but if you are lazy, you will not do well.", + "pos": 0.141, + "neu": 0.749, + "neg": 0.109, + "_id": { + "$oid": "6711d58acd60fca157e5d66b" + } + }, + { + "text": "Nice guy but who cares. He doesn't prepare you for the departmental final which is 49% of ur grade. Class was very easy till u go take the final then u realize the real cal 3. Would not take him ever again. I have warned u.", + "pos": 0.186, + "neu": 0.766, + "neg": 0.048, + "_id": { + "$oid": "6711d58acd60fca157e5d66c" + } + }, + { + "text": "The course felt a bit rushed and some topics had to be breezed by unfortunately. I thought I would not be prepared for the final but that wasn't the case. Do problems outside of class since there is no HW. His grading makes it possible for everyone to do well. I recommend going to his office hours if you have any questions on the material.", + "pos": 0.079, + "neu": 0.794, + "neg": 0.126, + "_id": { + "$oid": "6711d58acd60fca157e5d66d" + } + }, + { + "text": "He's definitely my favorite math professor I've had at CCNY so far. He's considerate and teaches at a very good pace, but does rush at times. He wants to see his students do good in class. The only problem is that I somewhat don't feel prepared for the final but I've noticed that other students from different classes are having the same issue.", + "pos": 0.163, + "neu": 0.767, + "neg": 0.071, + "_id": { + "$oid": "6711d58acd60fca157e5d66e" + } + }, + { + "text": "He gives quizzes every week but don't worry he has office hours and don't be afraid to ask questions. If you did bad on the quiz he allows you to correct it for extra points. Review sheets are just like the quizzes so you aren't surprised. It took a little getting used to his teaching style since its so much info in a small amount of time.", + "pos": 0.083, + "neu": 0.823, + "neg": 0.093, + "_id": { + "$oid": "6711d58acd60fca157e5d66f" + } + }, + { + "text": "Professor Sunderland was a good teacher don't get me wrong, the only thing I would say bad is that he wasn't organized with the way he taught his students. I took him over the summer at CCNY, which is one thing I would never do again. Don't miss class, you miss important information. All of this information was new to me. Study on your own.", + "pos": 0.119, + "neu": 0.81, + "neg": 0.07, + "_id": { + "$oid": "6711d58acd60fca157e5d670" + } + }, + { + "text": "His tests are very similar to his review sheets. He gives quizzes and well as quiz correction. No hw. Textbook is not required. If you ever come across him you should definitely take his class.", + "pos": 0.123, + "neu": 0.821, + "neg": 0.056, + "_id": { + "$oid": "6711d58acd60fca157e5d671" + } + }, + { + "text": "He explained everything very well, and answers any questions you may have. He is very available outside of class if you need help. Gave huge curves on his exams, but the departmental final was difficult. Webassign homework was annoying, but good practice. I would recommend him. Very cute also.", + "pos": 0.259, + "neu": 0.635, + "neg": 0.105, + "_id": { + "$oid": "6711d58acd60fca157e5d672" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58bcd60fca157e5d674" + }, + "professor_name": "Nick Magliato", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "You will pass if you 1) participate in the discussion boards (every week) 2) complete essays 3) show up to class 4 essays, and 1 essay for Digital portfolio, Plenty of discussion boards Easy-going, and cares for his students. Often times, though, digresses immensely during the class lectures, so we don't actually talk about the actual themes/topics", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d675" + } + }, + { + "text": "HE'S THE BESTTTT. TAKE HIM EVEN IF HE'S TEACHING NIGHT OR DAY. IF HE TEACH MORE CLASSES I WILL DEFINITELY TAKE HIM. HONESTLY JUST TAKE HIM AND YOU WON'T REGRET.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d676" + } + }, + { + "text": "Very very lenient grader as long you show up for class, do the homeworks and essays. He also gives good feedback if you talk to him. His class is very doable and enjoyable.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d677" + } + }, + { + "text": "Great class and professor! He's super lenient and understanding. Pretty easy grader. Grades are based around discussion responses on blackboard and 3 papers. He's really funny and down to earth. I would 100% recommend his class.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d678" + } + }, + { + "text": "Best professor ever. Hes a really lenient grader and lets us write about interesting stuff. We just spent most of class talking about random topics we had to write about. He assigns 3 essays and expects us to write 2 paragraphs on blackboard about articles we read once a week. The class isnt that much work take it with him.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d679" + } + }, + { + "text": "One of the best professors I had taken in CCNY. He is very easy-going and you learn a lot from his class. If you put some effort to your papers you will get an A. 10/10! Must take!", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d67a" + } + }, + { + "text": "He is a great professor, class discussions are great just pay attention to what he says. He gives great feedback on papers. Best English professor I have ever taken but just dont make being late a habit.i definitely recommend him.", + "pos": 0.333, + "neu": 0.644, + "neg": 0.023, + "_id": { + "$oid": "6711d58bcd60fca157e5d67b" + } + }, + { + "text": "Honestly, i don't rate teachers often but i had to for Prof Nick. He's so easy going, but you actually come out of class with a broader perspective of life from walking in. Wish he taught every class", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d67c" + } + }, + { + "text": "He gives good feedback on papers, and he's very chill. As long you do all the homeworks and papers, it should be an easy A. He's very informative and gives clear instruction on how to write each paper.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d67d" + } + }, + { + "text": "everyone here is saying that he is so chill (and he is!), but no one mentioned that he is gorgeous! I highly recommend that you take him. He really wants to give you an \"A\" and the class discussions are interesting. He's easy going, one of the best professors I've ever had, and his class is an easy A, so TAKE HIM!!", + "pos": 0.322, + "neu": 0.645, + "neg": 0.033, + "_id": { + "$oid": "6711d58bcd60fca157e5d67e" + } + }, + { + "text": "The best professor in the city college of new york, you will actually get an A and also will end up learning a lot from him. Very easy going, knows how to get work done, truly cares about students.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d67f" + } + }, + { + "text": "Nick is one of the best Professors in CCNY. He makes class fun, enjoyable and interesting. Definitely saw my writing increase at the end of the semester as well. His grading is very straight forward and fair. If you do all his work you'll be fine.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d680" + } + }, + { + "text": "His class is very laid back. His grading criteria is fair, just do all your work and you will be fine!", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d681" + } + }, + { + "text": "Nick is extremely chill. He edits your drafts and gives you feedback that, if you fix in final papers, will give you 100. Each assignment goes hand in hand, so you use the information from your previous paper in your next. No extra credit. 1 interview, 1 research paper, 3 papers, like 5 journal entrys. No textbook, gives printed readings. Funny", + "pos": 0.163, + "neu": 0.746, + "neg": 0.091, + "_id": { + "$oid": "6711d58bcd60fca157e5d682" + } + }, + { + "text": "He is the best English professor I had. Do all the assignments (fair) and you will do well in this class.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d683" + } + }, + { + "text": "He is a very good professor. He's very chill. He gives really good feedbacks. As you may know, if you get an A on the first draft you don't have to do a second draft lol. But if you want to you could. It'll be a really fun class. He lets you decide what topics you want to write about. Since it was his first time teaching this class why not! Enjoy!", + "pos": 0.174, + "neu": 0.784, + "neg": 0.042, + "_id": { + "$oid": "6711d58bcd60fca157e5d684" + } + }, + { + "text": "His expectations are clear, gives feedback in a constructive way and inspires you to keep writing. His laid back attitude made class more enjoyable/friendly. Creative writing course. Assignments: short stories, poetry theatrical dialogue. Class workshops: everyone gives feedback on your work (helpful, not as daunting as you may think.)", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d685" + } + }, + { + "text": "Amazing, insightful, caring professor! Each week there are readings so just make time for them so you can join the discussions and learn something new. No textbooks but a variety of interesting articles to read.", + "pos": 0.242, + "neu": 0.72, + "neg": 0.038, + "_id": { + "$oid": "6711d58bcd60fca157e5d686" + } + }, + { + "text": "Mr. Magliato was one of the better professors I've had at City. He was very understanding of my situation (I work 35+ hours on weekends) and worked with me to make sure I turn in assignments without losing points for grading. His class was interesting too. We read a lot about language and how we use it.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d687" + } + }, + { + "text": "Nick's a super nice instructor. Informal, in a good way. He's easy to talk to and keeps class interesting by switching up the format. First half of the semester, you'll read a short piece, respond, and then discuss as a class. Then, we workshop each other's writing. Definitely a lot of reading, but to be expected from a Creative Writing course.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d688" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58bcd60fca157e5d68a" + }, + "professor_name": "Mu \u2014", + "rating": 4.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "This man is literally the goat of the department.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d68b" + } + }, + { + "text": "my glorious king, ever since I can remember taking this course, I've had nothing but adoration for this professor. he adores and cares for us, and I would not have been able to pass without his help. Thank you, Muhammad.", + "pos": 0.161, + "neu": 0.652, + "neg": 0.187, + "_id": { + "$oid": "6711d58bcd60fca157e5d68c" + } + }, + { + "text": "MU is a goat. His 705 question midterm felt a little long at points, but everytime I looked stressed he strode up to my desk, whispered in my ear, and stroked my 10 foot schlonger, and all of a sudden I could feel the blood of Isaac Newton guiding my every move. The 4 million word essay was bullshit though, I only wrote 5 million and I lost points", + "pos": 0.0, + "neu": 0.854, + "neg": 0.146, + "_id": { + "$oid": "6711d58bcd60fca157e5d68d" + } + }, + { + "text": "teri asi de tasi", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d68e" + } + }, + { + "text": "According to all known laws of aviation a bee should not be able to fly", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d68f" + } + }, + { + "text": "What can I say about this professor that hasn't already been said. One of the very best professors I ever had the pleasure of learning from. An incredibly sharp sense of humor - balanced upon a foundation of genuine brilliance, with pillars of conciseness, and ornamentation of care. If you ever have the chance, you must take this professor.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d690" + } + }, + { + "text": "THE BEST MECH E TEACHER OF ALL TIME", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d691" + } + }, + { + "text": "MEDIOCRE PROF POUYAN BETTER / joke", + "pos": 0.593, + "neu": 0.407, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d692" + } + }, + { + "text": "Absolute genius. Got his degree from R.IZ.Z. University: top school in the entire matrix. Take his class!! Trust me, there is no chance you will fail, not because it's easy but because he tries hard to ensure everyone understands the content. Literal goat.", + "pos": 0.149, + "neu": 0.713, + "neg": 0.137, + "_id": { + "$oid": "6711d58bcd60fca157e5d693" + } + }, + { + "text": "Awesome", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d694" + } + }, + { + "text": "Give him Pouyans job", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d695" + } + }, + { + "text": "Mu is a good prof \npro yapper though so i cant rate him more than 1 tbh\nno txtbks makes this class feel a lil disorganized at times", + "pos": 0.09, + "neu": 0.774, + "neg": 0.136, + "_id": { + "$oid": "6711d58bcd60fca157e5d696" + } + }, + { + "text": "my goat", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d697" + } + }, + { + "text": "thats my orthogahomie fr, carried the whole class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d698" + } + }, + { + "text": "goated", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d699" + } + }, + { + "text": "He is really good at what he does. Mu is the most professional yapper I've heard.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d69a" + } + }, + { + "text": "An absolute W", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d69b" + } + }, + { + "text": "Mu carried", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d69c" + } + }, + { + "text": "A brother from another mother", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d69d" + } + }, + { + "text": "he is very nice", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d58bcd60fca157e5d69e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58ccd60fca157e5d6a0" + }, + "professor_name": "Matthew Gahler", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Just don't think twice, you will thank me after taking him,AN EASY AAAAAAAA", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a1" + } + }, + { + "text": "Best professor ever. Took him at Fordham in Fall 2023. Actually cares about students mental health and well beings. He had a lot of room and time to talk and he would talk about stuff that I actually still think about a couple of months later. He gave good feedback and also gave chances if you didn't get the grade you wanted. Take him!", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a2" + } + }, + { + "text": "Very easy class and a chill professor.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a3" + } + }, + { + "text": "He's very laid back and allows the students to have a lot of freedom when it comes to papers. As long as you are writing about something you care about and you put effort into it, he will give you a good grade and tell you what to improve on. In general, he's very relatable and a bit awkward at times but his classes were fun nonetheless.", + "pos": 0.173, + "neu": 0.81, + "neg": 0.017, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a4" + } + }, + { + "text": "An easy A", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a5" + } + }, + { + "text": "He's extremely kind and sweet. Very light grader and gives you about a month to write each paper. He tends to go off on tangents a lot in class but it does help pass the time. His papers are all connected so a lot of the work you put in at the beginning can be reused. I would definitely take him again if I could.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a6" + } + }, + { + "text": "He might've talked a lot of unrelated things about the class, but if you get your work done, you'll get the points. It's not even that hard.", + "pos": 0.053, + "neu": 0.947, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a7" + } + }, + { + "text": "Our original Professor left us at the end of the semester and Professor Gahler came in last minute and was an exceptional teacher. He helped us a lot and reasoned with us as much as he could. I would definitely take him again if I could!", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a8" + } + }, + { + "text": "Honestly, one of the most caring professors I have had the pleasure of meeting. He is very understanding of deadlines and usually has witty banter. Tends to get a little distracted but overall a nice dude. Easy A as long as you do your work.", + "pos": 0.259, + "neu": 0.713, + "neg": 0.028, + "_id": { + "$oid": "6711d58ccd60fca157e5d6a9" + } + }, + { + "text": "Professor Gahler is a very caring and inspirational person. He is a very knowledgeable and kind professor who is always willing to help out his students. His class is very laid back and an easy A as long as you show up and complete assignments.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6aa" + } + }, + { + "text": "Chill class. Gave readings and a few writing assignments. Had to hand in all assignments and participate in workshops and it was basically an easy A.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6ab" + } + }, + { + "text": "Professor Gahler is probably one of the best professors at CCNY. The readings he gives to his intro class are very inspirational and the class discussions are engaging. He truly cares about what his students take away from his class and he's pretty funny too. I'm glad I took his class, he creates an open/friendly environment for the class!!", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6ac" + } + }, + { + "text": "One of the most easygoing and kind professors at CCNY. The requirements of the class are pretty simple. He doesn't ask much of you so just do the readings. He sometimes forgets to take attendance at lecture but going to lecture helps with writing the papers because he explains what you read. No exams, no quizzes, just papers. An easy A for sure!", + "pos": 0.248, + "neu": 0.716, + "neg": 0.036, + "_id": { + "$oid": "6711d58ccd60fca157e5d6ad" + } + }, + { + "text": "Professor Gahler is extremely kind, he's very passionate about the readings. Gives one packet of poems + short stories that are gone over in class. Forgets to take attendance, only 2 books, short responses, the longest paper is 3 pages. Very easy and learned a lot more.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6ae" + } + }, + { + "text": "He's the so passionate about his readings and cracks jokes in between. Just show up to class and listen to what he says in class. It helps you write the papers. Overall a great teacher and very caring about his students.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6af" + } + }, + { + "text": "Great teacher, you read a lot but he prints most of it out in a course packet in the beginning. You buy two other books that don't cost a lot. You write a couple of papers but it's not too much. He says attendance matters but forgets to take it a few times. Overall great and really passionate about what he teaches. Would take again!", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b0" + } + }, + { + "text": "One of the best professors in City College, just do your work and show the effort and you're going to get a good grade.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b1" + } + }, + { + "text": "2ez.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b2" + } + }, + { + "text": "easiest teacher ever.", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b3" + } + }, + { + "text": "Gahler is the absolute BEST. He is a graduate school student and really cares about helping make class as simple and straight forward as possible. He doesn't put anything he doesn't teach on exams/papers. It's a very easy class, DEFINITELY TAKE HIM!!!", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58ccd60fca157e5d6b6" + }, + "professor_name": "Leonid Gurvits", + "rating": 2.2, + "department": "Computer Science department", + "comments": [ + { + "text": "Very well professor compared to rest!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b7" + } + }, + { + "text": "The smarter he thinks you are, the harsher he'll judge your performance. Want an A? Don't stand out. Hide your online profiles and work.", + "pos": 0.2, + "neu": 0.689, + "neg": 0.11, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b8" + } + }, + { + "text": "worst prof of all times in ccny", + "pos": 0.0, + "neu": 0.594, + "neg": 0.406, + "_id": { + "$oid": "6711d58ccd60fca157e5d6b9" + } + }, + { + "text": "I admit that he is knowledgeable but it is such a torture to take his class. On bb, it says synchronous but his class is asynchronous and he only posts chicken-scratched notes that could not be comprehended. No lecture videos. No feedback. If you actually wanna learn sth, prob take someone else.", + "pos": 0.062, + "neu": 0.802, + "neg": 0.136, + "_id": { + "$oid": "6711d58ccd60fca157e5d6ba" + } + }, + { + "text": "Do the HW on time along with the take home midterm and final and you should be expecting an A. You don't even need to get the questions right, just show you tried. The biggest con taking him is that you learn absolutely nothing. His lecture notes are BADLY written and the class is asynchronous. He's extremely nice and allows extensions when asked.", + "pos": 0.046, + "neu": 0.898, + "neg": 0.056, + "_id": { + "$oid": "6711d58ccd60fca157e5d6bb" + } + }, + { + "text": "Honestly...I have no words. From the very 1st lecture I didn't understand anything. We've never covered the material before, and we're just thrown into it. Lecture notes r hard to understand, hw is difficult to do, exams is hard as well. Difficult to even find materials online to understand. Did not learn a thing from this course.", + "pos": 0.033, + "neu": 0.808, + "neg": 0.158, + "_id": { + "$oid": "6711d58ccd60fca157e5d6bc" + } + }, + { + "text": "Everything that is said on this review page is true. I have ptsd about his assignments and his submission method is outdated. He seems smart, but cannot teach. His notes look like chicken scratch and here I thought my writing was bad... DO NOT TAKE", + "pos": 0.133, + "neu": 0.777, + "neg": 0.09, + "_id": { + "$oid": "6711d58ccd60fca157e5d6bd" + } + }, + { + "text": "This man is legitimately the worst professor I have ever taken. He does not give lectures and just sends you hard-to-follow notes with very poor handwriting and expects you to understand the material. Instead of even attempting to teach, he dedicates his time to creating extremely hard homework that has little to no resources online. Please avoid", + "pos": 0.066, + "neu": 0.737, + "neg": 0.196, + "_id": { + "$oid": "6711d58ccd60fca157e5d6be" + } + }, + { + "text": "I have never seen anyone worse in my life. Doesn't have any clue how to help students. He posts some assignments which require whole day of research and doesn't provide any clue at all. No lecture. Just some pdf files. How do people like him even qualify as a teacher?", + "pos": 0.139, + "neu": 0.822, + "neg": 0.039, + "_id": { + "$oid": "6711d58ccd60fca157e5d6bf" + } + }, + { + "text": "Took him during the pandemic. No live zoom or recorded lectures. Just handwritten notes with barely to no clue on what variable or the formulas mean. No textbook but that doesn't mean that's great, you cannot find external resources to help you understand the material. No syllabus either. Nothing. DO NOT TAKE HIM.", + "pos": 0.057, + "neu": 0.753, + "neg": 0.191, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c0" + } + }, + { + "text": "He is the worst professor i have ever taken. CCNY got some terrible professor but nothing tops him, not even Gertner. No video lectures. gives out sloppy handwritten written lectures that is hard to understand. dont answer questions via email. he acts like he get what hes talking about. no engagement or anything. How is this acceptable ccny?", + "pos": 0.125, + "neu": 0.695, + "neg": 0.18, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c1" + } + }, + { + "text": "He takes a significant detour away from the class description. instead the class feels like a survey of advanced math, which I found slow and boring. I actually had more fun in calculus 2. Also, he's the only professor here who gave me a grade below A- so take at your own risk. Participation might not always be a good idea despite what others say.", + "pos": 0.17, + "neu": 0.771, + "neg": 0.059, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c2" + } + }, + { + "text": "He seems like a nice guy, but he doesn't know how to teach. The assignments/exams he gives are hard and require too much time to understand. If you're not self motivated AND good at math, avoid him if possible and take Gladkova instead. She's just as hard but she actually teaches everything you need for an A in class, no Wikipedia torture required!", + "pos": 0.15, + "neu": 0.692, + "neg": 0.158, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c3" + } + }, + { + "text": "you won't learn anything in any of his classes. that pretty much sums him up", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c4" + } + }, + { + "text": "He is the best professor in this college i ever met. The exams are pretty easy as long as you took cal 2 already. The course is totally understandable. You don't need to focus on his lecture because it is so easy. Just take a few minutes to review his lecture notes you will get it.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c5" + } + }, + { + "text": "Word of caution, Prof. Gurvits's class is quite unorthodox. No midterm, no attendance, no hw. Just a final which is open book. He does not follow a book and he does cover more than the required amount in the class. The material is tough but they are cool stuff. Grade based on class participation. Dont take his class if u dont like learning.", + "pos": 0.085, + "neu": 0.832, + "neg": 0.083, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c6" + } + }, + { + "text": "Prof Gurvits is an extremely smart guy. His focus is to help students learn tho he has quite a high expectation. He doesn't follow a specific guideline or book but the material he teaches is current really interesting. His main focus is for students to learn and that's why he even keeps his exam open books. Exams are tough but he is an easy grader", + "pos": 0.159, + "neu": 0.817, + "neg": 0.024, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c7" + } + }, + { + "text": "So professor Gurvits has an easy grading style. Just participate in class and learn. That's all you need for this class. No homework, no midterm, no attendance. Just one final. His material is super hard but he knows that. And all he cares about is that you take an interest and participate. If you do, good grade guaranteed. Open book exams.", + "pos": 0.259, + "neu": 0.703, + "neg": 0.038, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c8" + } + }, + { + "text": "No proper syllabus. Every class, he says \"go look it up on wikipedia\". Professor Gurvits does not reference any textbooks so your best bet is to sit in class for an hour 15 and try your best to make out any topics that he verbally mentions so you can look it up without any clear understanding of what you should be looking for. Good luck.", + "pos": 0.187, + "neu": 0.757, + "neg": 0.056, + "_id": { + "$oid": "6711d58ccd60fca157e5d6c9" + } + }, + { + "text": "Gurvits has a lot of respect for his students, but expects too much from them. He doesn't follow the textbook, your best bet is to search up whatever he teaches and work with others, especially for the tests. He is very confusing, but show up, take the exams, and know that he doesn't fail students so don't worry even if he's too much to bare.", + "pos": 0.194, + "neu": 0.77, + "neg": 0.036, + "_id": { + "$oid": "6711d58ccd60fca157e5d6ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58dcd60fca157e5d6cc" + }, + "professor_name": "Griselda Rodriguez", + "rating": 3.6, + "department": "International Studies department", + "comments": [ + { + "text": "Although she's a pretty caring teacher in a sense that she responds to your email and will give you one off day she's the strictest grader i've ever had. She grades out of three and almost she's always giving me 2.5 or lower no matter how hard i've tried. Not worth it.", + "pos": 0.143, + "neu": 0.752, + "neg": 0.106, + "_id": { + "$oid": "6711d58dcd60fca157e5d6cd" + } + }, + { + "text": "The readings weren't so bad or too long either except for one or two of them. Her grading is tough, which isn't always a bad thing, but make sure to read. Sometimes her comments are a bit broad on discussion post. If you do email her about something she will get back to you. This wasn't the worst or best class, you just have to take it in stride.", + "pos": 0.213, + "neu": 0.772, + "neg": 0.015, + "_id": { + "$oid": "6711d58dcd60fca157e5d6ce" + } + }, + { + "text": "Shes a chill teacher and she doesn't give a lot of work (one homework a week) but she's very very tough on grading.", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d58dcd60fca157e5d6cf" + } + }, + { + "text": "She is amazing. Very nice and understanding and you could listen to her lecture for hours. She does have a lot of papers assigned but they should be pretty much straightforward if you do the readings. She gives great feedback and is a pretty lenient grader.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d0" + } + }, + { + "text": "She is one of the impossible Professor's. Avoid her! The text are so dense she wants daily reflections, which she publicly post your grades. She is an older Professor that believes because she struggled we should all have to struggle for good grades. There are so many other wonderful ANTH Professors at CCNY take Professor Lopez he is amazing!", + "pos": 0.158, + "neu": 0.745, + "neg": 0.097, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d1" + } + }, + { + "text": "I do agree with the other who commented. She do hold standards to a PhD level which she made clear. She also picks a lot to a very short essay. And she also assigns essays when she was absent. But here is the thing. If you talk to her in class, with everyone confronting her, she will listen and back down. That what makes her great and I have a 5.", + "pos": 0.118, + "neu": 0.858, + "neg": 0.024, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d2" + } + }, + { + "text": "The class was fun. A lot of reading but it is worth it. Reading and discussion are most of the class. Participation matters and effort! Is very understanding and will give an extension if needed.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d3" + } + }, + { + "text": "She has too many assignments and assigns ode work when she is absent. Don't take her she's assigns all this work and she can't even grade it in time. Everything is back to back so you have an essay due every week, especially during midterm season.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d4" + } + }, + { + "text": "She is a very tough grader. She expects you to write at the Ph.D. level when you are only an undergrad. You can't be absent and if you don't participate your grade is going down the drain. She assigns an essay if she is absent for two days. Don't take her if you are not a good writer, you will do terribly.", + "pos": 0.0, + "neu": 0.883, + "neg": 0.117, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d5" + } + }, + { + "text": "Honestly, shes a tough professor. Very nitpickey and detail oriented. Not much room for mistakes. She even made simple assignments difficult. ONLY take a class with her if you are good with deadlines, good at writing and are prepared to do lots of reading. The good thing is she gives feedback. You can use that to figure out her expectations.", + "pos": 0.189, + "neu": 0.721, + "neg": 0.09, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d6" + } + }, + { + "text": "I was excited to take her bc of the reviews from yrs ago now she is an extremely harsh grader, rude & does not grade work as fast as she assigns. the amount of work she gives makes it difficult to keep up. if u do the readings take the best notes & participate u still wont meet her standards def has faves & nitpicks at everything. made me depressed", + "pos": 0.08, + "neu": 0.772, + "neg": 0.148, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d7" + } + }, + { + "text": "Dr. G is one of the best profs at CCNY. She is passionate, always respectful and compassionate. She's the realest. Her class is easy, just three short essays, a midterm and final. She provides many extra credit opportunities and seems genuinely interested not only seeing her students do well but also in seeing their perspectives.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d8" + } + }, + { + "text": "In an age of Universal Decei_ her class was eye opening not just for me but all students. We got a very different world view(Mythical norm, Eco.H. man )than mainstream. I am glad I got her in my 1st semester. We just not learnt from her also ourselves as class setting was like dialogue/ round table model. Amazing professor. I am so proud of Dr. G.!", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6d9" + } + }, + { + "text": "Greatest mentor ever. She is very intelligent and allows the class to be incredibly interactive. One of the best classes I ever took with a professor. Really wish I could take another class with her.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6da" + } + }, + { + "text": "She is not the ideal but not the worst. Sometimes you don't know what to expect from her.", + "pos": 0.199, + "neu": 0.717, + "neg": 0.085, + "_id": { + "$oid": "6711d58dcd60fca157e5d6db" + } + }, + { + "text": "She is very passionate about what she teaches and she is not afraid to say what's on her mind. Yet, she is very respectful of other people's opinions, making her classroom a safe place to speak", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6dc" + } + }, + { + "text": "She is amazing. great professor and very friendly. She is smart. I would recommend anyone to take her class, she is helpful. read and come to class and participate and you will have a good grade", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6dd" + } + }, + { + "text": "One of the best professors I've ever had, and one of the greatest mentors. I literally go to her everytime I have some insight to share about a sociological or cultural observation I make. She taught me to open my eyes to alternative perspectives, and her teachings shape how i approach my life views till this day. HIGHLY recommended", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6de" + } + }, + { + "text": "Nice lady, very helpful. She always finds ways to get students engaged in her class and in various projects.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6df" + } + }, + { + "text": "She is the best professor I had in CCNY.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58dcd60fca157e5d6e2" + }, + "professor_name": "Jerry Guyden", + "rating": 2.8, + "department": "Biology department", + "comments": [ + { + "text": "WOW! They were not lying when they said Dr. Guyden's course will be the most difficult. You have to know everything and expect anything! He is really preparing you for the future and when you compete this course YOU WILL know how to master anything that is thrown at you. It's going to be tough but keep pushing!!! He's a great guy!", + "pos": 0.16, + "neu": 0.796, + "neg": 0.044, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e3" + } + }, + { + "text": "This is probably one of the hardest classes you've ever taken in your life. Read the textbook, listen to his lecture, and be able to apply. His class is not a regurgitation of the textbook like the other 229 professors,but really know how to go beyond what's given to you. He's very picky with his answers, use the all the vocabulary.", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e4" + } + }, + { + "text": "Run away as fast as you can from him.Well while you can...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e5" + } + }, + { + "text": "The class is not so hard if you take good lecture notes and read the textbook. For lecture, there are 4 exams, one dropped based on performance. For lab, there's a midterm, final, and some write ups. Overall, great class. It's very possible to get a good grade, you just have to work for it. Just make sure you get a good TA.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e6" + } + }, + { + "text": "I heard you should avoid Guyden, but when I took his class, as sad as it sounds, I finally learned biology. He is an amazing professor and has drive that is inspirational. I got a B in his class. His tests are very specific. You have to know your stuff and memorize everything. Take his class if your up for the ride.", + "pos": 0.131, + "neu": 0.79, + "neg": 0.078, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e7" + } + }, + { + "text": "His lectures are interesting, but Dr. Guyden also spends a great deal of time talking about his own importance, which gets old fast. His tests are written in such a way that you have to have write specific keywords he's looking for - demonstrating understanding is not enough. Overall, he is a pain in the ass. Avoid.", + "pos": 0.146, + "neu": 0.692, + "neg": 0.163, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e8" + } + }, + { + "text": "Despite the current ratings for Dr. Guyden, he is a great professor. If you can survive his class, you are ready for graduate work and/or medical school. He makes the material interesting. Just be aware that there is a lot of work and there will be no one to hold your hand. Best Professor @ CCNY for Biology by far.", + "pos": 0.229, + "neu": 0.741, + "neg": 0.03, + "_id": { + "$oid": "6711d58dcd60fca157e5d6e9" + } + }, + { + "text": "Dr. Guyden doesn't care what happens to kids' GPA after taking his class. Its all pleasant until exams cause he expects you to do his exams in certain way. Very nice person btw, but tough professor. If you got an A in Dr. Li's genetics than you can survive him.", + "pos": 0.106, + "neu": 0.829, + "neg": 0.066, + "_id": { + "$oid": "6711d58dcd60fca157e5d6ea" + } + }, + { + "text": "HONESTLY IF YOUR LOOKING TO GAIN TONS OF KNOWLEDGE YOU WILL IN THIS COURSE...HOWEVER PASSING WITH A B WOULD BE A GREAT CHALLENGE...HIS EXAMS ARE TOO DIFFICULT...AND HE COULD CARELESS IF MANY PPL FAIL..HIS ONLY RESPONSE IS TO SIMPLY DROP THE COURSE..AND HONESTLY DROPPING THE COURSE IS THE BEST DECISION TO MAKE..I STAYED AND FAILED..AVOID HIM IF UCAN", + "pos": 0.241, + "neu": 0.696, + "neg": 0.063, + "_id": { + "$oid": "6711d58dcd60fca157e5d6eb" + } + }, + { + "text": "bad professor, and horrible teaching. you have to come to class cuz u gotta kno what hes talkin about you cant just read the book and expect to pass. avoid him if u can!!", + "pos": 0.0, + "neu": 0.76, + "neg": 0.24, + "_id": { + "$oid": "6711d58dcd60fca157e5d6ec" + } + }, + { + "text": "It is commendable that Prof Guyden has worked hard and has attained some stature in the world. It does not take me, however, to commend him since he does so constantly himself in class while berating the \"minority\" students he professes to care about. He is a poor teacher; rigid and unimaginative, except insofar as his grading is inventive.", + "pos": 0.092, + "neu": 0.817, + "neg": 0.091, + "_id": { + "$oid": "6711d58dcd60fca157e5d6ed" + } + }, + { + "text": "Does not foster a sense of competence, only intimidation. Likes to berate current generation as if all we do is myspace.com. Overly specific and subjective with grades! Don't take him even if it is only section open. Wait till the next semester. Ask around.", + "pos": 0.059, + "neu": 0.882, + "neg": 0.059, + "_id": { + "$oid": "6711d58dcd60fca157e5d6ee" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d58dcd60fca157e5d6ef" + } + }, + { + "text": "he didnt drop a test for our class.. but he never said he would in the first place (usually in the past he did, but not this time) Read the book and know the material really well.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6f0" + } + }, + { + "text": "does not always drop the grade. not for those who want an easy A, need to read the book", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6f1" + } + }, + { + "text": "This is an intense class. It's great if you want to get a feel for medical school take since he covers MCAT material. However, if you just want to get a good grade then maybe you should consider another professor.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6f2" + } + }, + { + "text": "He is not a good prof. He tooooo pride of himself. He is a hard working man so he wants you to be one. He make this soo hard that you will teriblly enjoy this course.", + "pos": 0.134, + "neu": 0.742, + "neg": 0.125, + "_id": { + "$oid": "6711d58dcd60fca157e5d6f3" + } + }, + { + "text": "good teacher..just read book and come to class you will be fine..take advantage of extra credit on the exams...listen for hints of test questions..he does it allt the time..and he always drops the grade but he doesnt let you know until its getting closer to the second test.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d58dcd60fca157e5d6f4" + } + }, + { + "text": "If you are looking to be mentally abused, he is your best bet. Good luck!", + "pos": 0.421, + "neu": 0.445, + "neg": 0.134, + "_id": { + "$oid": "6711d58dcd60fca157e5d6f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58ecd60fca157e5d6f7" + }, + "professor_name": "Abby Mowshowitz", + "rating": 1.5, + "department": "Computer Science department", + "comments": [ + { + "text": "Just reads off of slides, you will probably fall asleep, and not very much willing to answers questions in class. And in the end, grades harshly. So I would not recommend.", + "pos": 0.0, + "neu": 0.934, + "neg": 0.066, + "_id": { + "$oid": "6711d58ecd60fca157e5d6f8" + } + }, + { + "text": "Man this guy can not teach. He pretty much reads through the textbook (which isn't clear) and gets angry or flustered when people ask questions. His test are open book but closed notes. Advice is to do the supplemental questions at the end of every chapter. Really tough class mixed with bad teaching style. Plus side is the HUGE curve.", + "pos": 0.057, + "neu": 0.746, + "neg": 0.197, + "_id": { + "$oid": "6711d58ecd60fca157e5d6f9" + } + }, + { + "text": "Got horrible. Does not explain anything in a clear way. The whole class is always confused. Tests are nothing like HW, Class problems, or the Textbook. If you can take someone else, do it, don't take it with this guy.", + "pos": 0.054, + "neu": 0.726, + "neg": 0.22, + "_id": { + "$oid": "6711d58ecd60fca157e5d6fa" + } + }, + { + "text": "Absolutely horrendous instructor. Illegible handwriting, doesn?t explain concepts well, and when students ask for clarification, often gets annoyed at them. Worst of all, much of his tests bear no relation to the homeworks and practice problems, so you can study hard but still do awfully on his tests. Only positive thing is that he curves heavily.", + "pos": 0.098, + "neu": 0.727, + "neg": 0.175, + "_id": { + "$oid": "6711d58ecd60fca157e5d6fb" + } + }, + { + "text": "OMG RUN WHILE YOU STILL CAN!!! HE IS EXTREAMLY BORING!! HE DOESNT EVEN SOUND LIKE HE'S SPEAKING IS MORE LIKE MUMBLING!! EVERYTHING HE TEACHES IS OUT THE TEXTBOOK AND THE TEXTBOOK IS REAL HARDD!! WHEN YOU GO TO HIM FOR HELP HE GETS MAD....STILL DONT KNOW WHY.....BUT YEA HE DEFENATLEY SHOULD HAVE BEEN LAYD OF OR FIRED A LONG TIME AGO! DO NOT TAKE HIM", + "pos": 0.074, + "neu": 0.804, + "neg": 0.123, + "_id": { + "$oid": "6711d58ecd60fca157e5d6fc" + } + }, + { + "text": "This professor is boring. It's hard to pay attention for over an hour because he talks so dull. He gets annoyed and alittle mad if you ask him questions. He's not very helpful for such a hard confusing class. The textbook is hard to completely understand.", + "pos": 0.0, + "neu": 0.625, + "neg": 0.375, + "_id": { + "$oid": "6711d58ecd60fca157e5d6fd" + } + }, + { + "text": "getting angry on each question which he dont know answer.", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d58ecd60fca157e5d6fe" + } + }, + { + "text": "He is not helpfull.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d6ff" + } + }, + { + "text": "Well, what can I say? If you have to take this guy's class, be very well prepared to work your butt off to get a decent grade. You will not get anything from him and the book is even more ridiculous. So plan for a tough one, all his questions are drawn from the book but the book's question are really hard.", + "pos": 0.073, + "neu": 0.848, + "neg": 0.079, + "_id": { + "$oid": "6711d58ecd60fca157e5d700" + } + }, + { + "text": "The class may seem boring, but if you work hard it's not that hard to get an A. His tests are open book which helps, and he curves if class does badly.", + "pos": 0.123, + "neu": 0.688, + "neg": 0.189, + "_id": { + "$oid": "6711d58ecd60fca157e5d701" + } + }, + { + "text": "Darn this **** still teaching? I remember taking this guy for CS 375 in 2002 and he sucks. PLEASE DO YOURSELF a favor and stop teaching u to old and ****ed up to teach. U don't know anything", + "pos": 0.129, + "neu": 0.765, + "neg": 0.106, + "_id": { + "$oid": "6711d58ecd60fca157e5d702" + } + }, + { + "text": "dunno why everyone left him bad comments. i thought he was a nice guy. his handwriting is hard to read at times, but the homework will reinforce it. tests ARE hard, but everyone gets 30s and he curves it.", + "pos": 0.045, + "neu": 0.834, + "neg": 0.12, + "_id": { + "$oid": "6711d58ecd60fca157e5d703" + } + }, + { + "text": "This is the WORST professor ever. He MUST and MUST stop teaching. He takes to the blackboard, you won't be able to hear him until you hug him. His teaching was very bad and his exams were VERY HARD. And he is VERY hard Professor.", + "pos": 0.053, + "neu": 0.667, + "neg": 0.28, + "_id": { + "$oid": "6711d58ecd60fca157e5d704" + } + }, + { + "text": "This guy is worst of the worst in the whole universe. His hand writing is so illegible that u have to spend days to understand the point.Suggestion, walk away from him and if u ever see him, dig a hole and put ur head in it like a ostrich. Just be gone.", + "pos": 0.092, + "neu": 0.775, + "neg": 0.132, + "_id": { + "$oid": "6711d58ecd60fca157e5d705" + } + }, + { + "text": "The worst professor that I have encountered in my life besides Kumar, lol, don't ever take this guy's class. You don't get anything out of the course. Boooo....", + "pos": 0.085, + "neu": 0.79, + "neg": 0.125, + "_id": { + "$oid": "6711d58ecd60fca157e5d706" + } + }, + { + "text": "This guy doesn't know how to teach.He comes to class and writes the exact same thing in the book onto the board,and when you ask this guy a question, you still won't understand it and be even more confused.His tests are open book but its extremely hard.I dont think he himself can solve those probs.", + "pos": 0.039, + "neu": 0.961, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d707" + } + }, + { + "text": "Mowshowitz is total disgrace to the CS department. He is boring,talk as if we were all sitting around his desk, and most of all his exams are ridiculous.Not because you have a Ph.D means that u can teach, u can't Abby you are boring. Get lost", + "pos": 0.0, + "neu": 0.842, + "neg": 0.158, + "_id": { + "$oid": "6711d58ecd60fca157e5d708" + } + }, + { + "text": "If I had to make a wish, one will be to for Mowshowitz to stop teaching.This is a guy who talks like a living dead,give some boring papers to read and the exam is from the whole book like 300 pages.Luckly I pass his class.DON'T TAKE HIM.", + "pos": 0.142, + "neu": 0.775, + "neg": 0.083, + "_id": { + "$oid": "6711d58ecd60fca157e5d709" + } + }, + { + "text": "This guy talks like he is teaching to the blackboard.Bad handwritting the worst in CCNY. He is boaring.This guy probably paying to keep his teaching job.He needs to be inwritting 101 and speech 101.Abby u need to stop teach its not foru.", + "pos": 0.052, + "neu": 0.816, + "neg": 0.132, + "_id": { + "$oid": "6711d58ecd60fca157e5d70a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58ecd60fca157e5d70c" + }, + "professor_name": "Victor Alvarez", + "rating": 1.9, + "department": "Mathematics department", + "comments": [ + { + "text": "NEVER take his class!!!! The WORST professor I've ever had. Everything about his class is awful.", + "pos": 0.0, + "neu": 0.609, + "neg": 0.391, + "_id": { + "$oid": "6711d58ecd60fca157e5d70d" + } + }, + { + "text": "The worst learning experience I have ever had. Terrible at teaching lower levels of math, finds it too easy and \"trivial\" to explain anything. Would never take a course from him again, dont make the mistake of doing so either.", + "pos": 0.1, + "neu": 0.688, + "neg": 0.212, + "_id": { + "$oid": "6711d58ecd60fca157e5d70e" + } + }, + { + "text": "This is the worse and most uncomfortable class I have ever taken. I am shocked that this person is allowed to teach a professional college course because he is the complete opposite of what a professional is. He goes through the material so quickly, skips steps, uses other textbooks than the one that is required for this specific course.", + "pos": 0.0, + "neu": 0.871, + "neg": 0.129, + "_id": { + "$oid": "6711d58ecd60fca157e5d70f" + } + }, + { + "text": "He knows his stuff, but doesn't know how to teach the material.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d710" + } + }, + { + "text": "VERY HORRIBLE ADJUNCT, DO NOT, AND I STRESS DO NOT TAKE HIM.", + "pos": 0.145, + "neu": 0.62, + "neg": 0.235, + "_id": { + "$oid": "6711d58ecd60fca157e5d711" + } + }, + { + "text": "he has to cram a lot of material in a short amount of time. crystal clear in explanations but talks fast so you may miss a lot. makes sure you understand how you get from point A to point B and makes sure you are not doing it by rote but rather because you understand the process. is very blunt and to the point and some people take offense to that.", + "pos": 0.098, + "neu": 0.841, + "neg": 0.061, + "_id": { + "$oid": "6711d58ecd60fca157e5d712" + } + }, + { + "text": "I took him this semester and I wasn't crazy about him at first but he grew on me as the semester went on. He comes off arrogant but it's actually really funny and most of the time he's right anyway. He only helps those who put in the effort and really wants students to pass.", + "pos": 0.143, + "neu": 0.791, + "neg": 0.067, + "_id": { + "$oid": "6711d58ecd60fca157e5d713" + } + }, + { + "text": "While he comes off as arrogant and pompous, he IS good at math and knows what he's doing. He's not going to always hold your hand, but he has a good deal of knowledge which always to be appreciated. As long as you don't have an attitude and actually try your best, he'll help you, and if you pay attention you might learn a few things.", + "pos": 0.26, + "neu": 0.695, + "neg": 0.044, + "_id": { + "$oid": "6711d58ecd60fca157e5d714" + } + }, + { + "text": "He is a young, but old school in the form of teaching. You must read the text and go over the chapter be4 class, must do hw!, quizzes are based off it. CNT STAND HS KIDS. Be mature, and grow up this is college. He will help you see him after class or during office hours. He will not help students who dnt put the effort or hours in this class!", + "pos": 0.1, + "neu": 0.864, + "neg": 0.037, + "_id": { + "$oid": "6711d58ecd60fca157e5d715" + } + }, + { + "text": "Extremely intelligent, he must be if he's teaching. He hates HS kids, so if you're right out of HS, be prepared for trouble. He is helpful in class, but if you ask TOO many questions, he gets pissed and moves on if you get it or not. First test wasn't too bad, 2nd test was extremely difficult, 3rd test and final were hard but passable.", + "pos": 0.116, + "neu": 0.699, + "neg": 0.186, + "_id": { + "$oid": "6711d58ecd60fca157e5d716" + } + }, + { + "text": "don't even bother taking class with him, unless you know for sure u can get 90's or above in his exams... worst math teacher i've ever taken in my life", + "pos": 0.122, + "neu": 0.762, + "neg": 0.116, + "_id": { + "$oid": "6711d58ecd60fca157e5d717" + } + }, + { + "text": "He is very knowledgeable about the subject but he is a 3rd year ph.d student who does not seem very interested in teaching. He is easy on the eyes.", + "pos": 0.113, + "neu": 0.793, + "neg": 0.094, + "_id": { + "$oid": "6711d58ecd60fca157e5d718" + } + }, + { + "text": "omg this teacher is the WORST math teacher ive ever had in my life!!!...me and him go at it every single class...he feels like he doesnt need to go over work because we can \"doitourselves\" wth is the point of teaching if yur not going to help us w/ things we DONT UNDERSTAND...no one in the class understands nything!!!...hes very very rude omg", + "pos": 0.033, + "neu": 0.766, + "neg": 0.201, + "_id": { + "$oid": "6711d58ecd60fca157e5d719" + } + }, + { + "text": "Stay away from this professor!Many things trivial to him, \"so it's not neccesary to go over, let's skip it\". Often off the topic. I think there is no need to waste so much time to prove forumlas(did so many!),better if we do some more problems instead!. While doing problems he often skip a few steps at once so the student is very confused and lost.", + "pos": 0.0, + "neu": 0.765, + "neg": 0.235, + "_id": { + "$oid": "6711d58ecd60fca157e5d71a" + } + }, + { + "text": "The worse teacher I ever had. Do not take him or you will fail. He does not know how to teach, it is very hard to understand what is trying to explain.", + "pos": 0.0, + "neu": 0.778, + "neg": 0.222, + "_id": { + "$oid": "6711d58ecd60fca157e5d71b" + } + }, + { + "text": "he is a really bad bad professor and doesn't understand the way of students are trying to learn. he doesn't like asking questions because he likes to finish the course in time as he said '' TIME FRAME''. don't take his class if you want to understand the math or want a good grade ( STRONGLY RECOMMENDED!)", + "pos": 0.195, + "neu": 0.67, + "neg": 0.135, + "_id": { + "$oid": "6711d58ecd60fca157e5d71c" + } + }, + { + "text": "HE IS REALLY BAD. REALLY REALLY BAD. I GUESS THIS IS WHY THE CLASS HAS A HIGH FAIL RATE.", + "pos": 0.0, + "neu": 0.585, + "neg": 0.415, + "_id": { + "$oid": "6711d58ecd60fca157e5d71d" + } + }, + { + "text": "A horrible professor. I hope I never have him again.", + "pos": 0.201, + "neu": 0.556, + "neg": 0.243, + "_id": { + "$oid": "6711d58ecd60fca157e5d71e" + } + }, + { + "text": "This prof. is not good. He finds everything to be trivial or easy. He does not try to make the class any easier. Has no office hours. The class has a high fail rate but he does nothing to try and help except tell people to shut up or tough luck. Drops only 1 quiz grade even though some professors drop 4. No extra credit. Stay away from him.", + "pos": 0.134, + "neu": 0.671, + "neg": 0.195, + "_id": { + "$oid": "6711d58ecd60fca157e5d71f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58ecd60fca157e5d721" + }, + "professor_name": "Koby Frances", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "AWRSOME TEACHER. Took his summer class. Nice, helpful, I learned a lot. Makes you want to go to class", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d722" + } + }, + { + "text": "He is a great Professor, funny and helpful. I took him during the summer. He made everything clear. Read the book, and you will be fine.", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d723" + } + }, + { + "text": "he is an excellent teacher. he is fair, funny, and interesting. listen to his lectures and take notes and you will be fine. he is not boring so you will have fun", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d724" + } + }, + { + "text": "he is good professor and he give good lectures and class notes just need to pay attention and take good notes for the quizzes and tests", + "pos": 0.271, + "neu": 0.685, + "neg": 0.044, + "_id": { + "$oid": "6711d58ecd60fca157e5d725" + } + }, + { + "text": "He is a wonderful professor. He likes to keep his class awake, very funny. You just have to read the assignments and he gives a quiz of 5 questions every week, a mid-term and a final. He is very helpful. he made me really enjoy psy even more. I really enjoy take this class with him. I learned a lot. He is very easy grading. My grade A-.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d726" + } + }, + { + "text": "Good professor! Easy Class.", + "pos": 0.753, + "neu": 0.247, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d727" + } + }, + { + "text": "He's a nice guy. Makes corny jokes about everything. You'll do fine in his class if you pay attention, READ the book and study hard. Quizes once a week, 2 exam (midterm & final) and a group presentation.", + "pos": 0.156, + "neu": 0.778, + "neg": 0.066, + "_id": { + "$oid": "6711d58ecd60fca157e5d728" + } + }, + { + "text": "Koby is the best case closed. He is a very nice, funny, and cool dude. His quizes are easy, the midterm and the final are not hard at all. The group presentation is interesting and fun. And above all he is a fair grader. Because of him i'm considering to take another psychology class as an elective course and with him..!!", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d729" + } + }, + { + "text": "the best. he does not give written home work. just read the assignments and he gives a quiz of 2 questions every week. very funny, and helpful. made me really enjoy psy even more. i wish i could take him for my other psy classes but he is only teaching abnormal psy. highly recommended", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d72a" + } + }, + { + "text": "this class is great! he's really funny, so the class is never tedious or boring and he's a cutie. i definitly recommend this class", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d72b" + } + }, + { + "text": "Great sense of humor and covers topics in detail. Simply keep up with the reading so that you do well in the weekly quizzes, attend classes, participate, take great notes, and read the textbook and you're guaranteed an A. He's cute in a wierd way and he's really sweet.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d72c" + } + }, + { + "text": "easy, cool, fun. definitely buy text book!!", + "pos": 0.797, + "neu": 0.203, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d72d" + } + }, + { + "text": "Is a great professor. Is funny in weird way. If you pay attention to his lecture and read the book you be fine.", + "pos": 0.294, + "neu": 0.602, + "neg": 0.104, + "_id": { + "$oid": "6711d58ecd60fca157e5d72e" + } + }, + { + "text": "Great class. His syllabus is so detailed you can almost pass the course by following it alone. But he gives quizzes so you MUST keep up with the reading. The lectures are interesting and fun. You will learn a lot if you take Psychology with him.", + "pos": 0.195, + "neu": 0.777, + "neg": 0.028, + "_id": { + "$oid": "6711d58ecd60fca157e5d72f" + } + }, + { + "text": "Frances is so unorganized. I basically had to learn by reading on my own b/c he couldn't get through the material without deviating. The best thing about this class is that he chose a great textbook. The group projects were good and better than the actual lecture b/c at least they were organized.", + "pos": 0.159, + "neu": 0.787, + "neg": 0.054, + "_id": { + "$oid": "6711d58ecd60fca157e5d730" + } + }, + { + "text": "I think Professor Frances is very down to earth. I enjoyed the group presentations and visual aids. Wish there was more material though.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d731" + } + }, + { + "text": "a funny guy. you'll enjoy his class but besides the group presentation, there's a midterm and final exam that'll be graded.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d732" + } + }, + { + "text": "Excellent professor. Only drawback is he gives midterm and final only. I enjoyed class presentations, I just wished it was indvidual instead of group. I highly recommend", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d58ecd60fca157e5d733" + } + }, + { + "text": "great teacher! no papers...just quizzes every 4th class and 1 final...all multiple choice. a really fun class!", + "pos": 0.338, + "neu": 0.572, + "neg": 0.09, + "_id": { + "$oid": "6711d58ecd60fca157e5d734" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58fcd60fca157e5d736" + }, + "professor_name": "Judite Dos Santos", + "rating": 3.3, + "department": "Design department", + "comments": [ + { + "text": "the worst teacher ive ever had in my entire life", + "pos": 0.0, + "neu": 0.687, + "neg": 0.313, + "_id": { + "$oid": "6711d58fcd60fca157e5d737" + } + }, + { + "text": "This professor will go over and over the assignment and not be clear about it. You will have to guess what exactly she wants. Won't stop talking during class and won't let you concentrate while working on your assignment. Always got out of class discouraged by her.", + "pos": 0.037, + "neu": 0.867, + "neg": 0.096, + "_id": { + "$oid": "6711d58fcd60fca157e5d738" + } + }, + { + "text": "Prof Dos Santos helped me become more disciplined and rigorous in my approach. She urges students to demand more of themselves and work impeccably. Her assignments are specific and require you to be deliberate in how you resolve the tasks. I got so much out of this class. Haphazard/looking for an easy A? Don't waste her time or yours.", + "pos": 0.119, + "neu": 0.822, + "neg": 0.059, + "_id": { + "$oid": "6711d58fcd60fca157e5d739" + } + }, + { + "text": "Rambles without clear instruction, passive aggressive w/students, pointless assignments, inconsistent grader. Us students eventually turned to one another for help, and rejoiced when our semester with her was over.", + "pos": 0.163, + "neu": 0.684, + "neg": 0.153, + "_id": { + "$oid": "6711d58fcd60fca157e5d73a" + } + }, + { + "text": "The Ultimate HACK: Make sure you find an Art buddy ASAP so you can buy materials together and share them (some materials cannot be shared tho so use common sense). Santos is super wasteful so make sure you don't buy everything on the first day, only buy what you need for the incoming project (she'll tell you).", + "pos": 0.169, + "neu": 0.8, + "neg": 0.031, + "_id": { + "$oid": "6711d58fcd60fca157e5d73b" + } + }, + { + "text": "Yes, she takes a lot of unnecessary time to explain assignments but if you do your projects exactly how she says it, you should be fine. Expect to spend severals hoursdays on projects and spend a lot of money on supplies. Once again the trick to passing this class is following her instructions exactly. Don't be a hero by squeezing in creativity", + "pos": 0.107, + "neu": 0.819, + "neg": 0.074, + "_id": { + "$oid": "6711d58fcd60fca157e5d73c" + } + }, + { + "text": "She expects a lot from students but she doesn't seem to be willing to give much feedback to some students but gives plenty of it to others. Her assignments take hours of explaining and in the end manage to stay somehow entirely ambiguous. What she asks in terms of materials are expensive and she is very wasteful of them. Would not take again.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d73d" + } + }, + { + "text": "Dos Santos is strict and expects a lot. You really have to put in the time. Expect to spend time away from class working on your projects.Doesn't accept late work, and is a hard, but fair grader. She talks quietly so you really have to listen. No textbook required, but you have to buy maybe $100. of supplies. Don't buy so much paper, I had too much", + "pos": 0.041, + "neu": 0.881, + "neg": 0.078, + "_id": { + "$oid": "6711d58fcd60fca157e5d73e" + } + }, + { + "text": "She is a very nice woman. But she will DEFINITELY get on your case for little things. She takes an 1.5 hours to explain projects when 30 min will suffice. Lateness is a no with her, be early. Which I understand. This class is EXPENSIVE not non art majors. I am running out of characters but I can go on about her.", + "pos": 0.098, + "neu": 0.861, + "neg": 0.041, + "_id": { + "$oid": "6711d58fcd60fca157e5d73f" + } + }, + { + "text": "Very nice woman. Over explains projects but that isn't a bad thing. Expects work to be extremely precise. She basically says that because this is a \"design\" class, each project is focused on developing skill and perfection.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d740" + } + }, + { + "text": "I believe she's a good professor. She is a bit hard on some students. Speaks a lot and over explain things (which is good for those who do not major in art) I personally like her strictness, although it is a little annoying at time. She stays with you after class and let's you make up a class if you were absent.", + "pos": 0.12, + "neu": 0.825, + "neg": 0.055, + "_id": { + "$oid": "6711d58fcd60fca157e5d741" + } + }, + { + "text": "This professor is a nice lady but her class is actually painful to sit through. she talks too much when explaining things. She's very strict. Lucky for me im a good artist, but if you're not don't bother with this class for it will only hurt you. worst of all, ipods are forbidden so you must sit in silence for 3 hrs of cutting paper.", + "pos": 0.113, + "neu": 0.64, + "neg": 0.248, + "_id": { + "$oid": "6711d58fcd60fca157e5d742" + } + }, + { + "text": "A low talker and very hard to hear. She over explains and does not stop talking. A simple 5 minute talk would suffice in these easy A assignments. Expensive if you have never taken an art class before.", + "pos": 0.112, + "neu": 0.798, + "neg": 0.089, + "_id": { + "$oid": "6711d58fcd60fca157e5d743" + } + }, + { + "text": "EXTREMELY biased with grading, takes too long to explain things that don't need explaining and doesn't bother to explain things that DO need to be explained, plays favorites, works are INCREDIBLY boring and uncreative.", + "pos": 0.162, + "neu": 0.686, + "neg": 0.153, + "_id": { + "$oid": "6711d58fcd60fca157e5d744" + } + }, + { + "text": "it is the second week of class and she is the best professor I have had in city college. She gives time after class and talks hours and hours and explains everything. I was really scared to start with but she helped me a lot. Take her if you are an organized person that is willing to learn...She is the best!", + "pos": 0.126, + "neu": 0.843, + "neg": 0.03, + "_id": { + "$oid": "6711d58fcd60fca157e5d745" + } + }, + { + "text": "Come to her class early. If you're late, she might put you abscent.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d746" + } + }, + { + "text": "WELL, SHE IS IS AGREAT PROF. She is very clear and so to point about what she wants she force students to think cratively and let them to find basic design elements many other helpful things for other design classes But you must be well orgnized and be on time and show respect and interest to class u ll be fine:))", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d747" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d58fcd60fca157e5d748" + } + }, + { + "text": "She talks a lot and because of that sometimes it's boring. Overall, the class wasn't too hard. We did some fun projects. It's not too bad.", + "pos": 0.235, + "neu": 0.693, + "neg": 0.072, + "_id": { + "$oid": "6711d58fcd60fca157e5d749" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d58fcd60fca157e5d74b" + }, + "professor_name": "Gerardo Blumenkrantz", + "rating": 4.5, + "department": "Media Arts department", + "comments": [ + { + "text": "B obviously loves creativity and loves teaching how to develop it. Very invested in our success, he helped me a lot during the program's 2 years. Bumenkantz demands serious work, he always says quality comes from quantity so he expects to see tons of ideas. Great mentor.", + "pos": 0.296, + "neu": 0.682, + "neg": 0.022, + "_id": { + "$oid": "6711d58fcd60fca157e5d74c" + } + }, + { + "text": "Blumekratz holds you to high professional standards. He cares and you should too if you decide to take his class. I wasn't very focused at first & he made it clear that I was just \"checking the boxes\" and that if I wanted a job in the industry that attitude would not get me far. I started focusing and my work improved. He helped me a lot.", + "pos": 0.117, + "neu": 0.85, + "neg": 0.032, + "_id": { + "$oid": "6711d58fcd60fca157e5d74d" + } + }, + { + "text": "Only take Blumkratz if you're serious about pursuing a creative career. Or if u r serious about research. Class is supposed to be run like an agency to prepare u for the real world. I can see how his class is not for everyone.", + "pos": 0.113, + "neu": 0.833, + "neg": 0.054, + "_id": { + "$oid": "6711d58fcd60fca157e5d74e" + } + }, + { + "text": "I will definitely pursue a career in creative advertising because of this Professor. Inspiring. Tough but caring recommended great internship program.", + "pos": 0.539, + "neu": 0.423, + "neg": 0.038, + "_id": { + "$oid": "6711d58fcd60fca157e5d74f" + } + }, + { + "text": "Yikes. Well, if he doesn't like you, Blumenkrantz will beat your ideas to death, barely recognizable by the time the class ends. He talks in circles and goes at length to make long, contrived and often metaphorical points. He has a strong creative direction but like Chitkara, often bumble important elements of the class with just their personality.", + "pos": 0.168, + "neu": 0.771, + "neg": 0.061, + "_id": { + "$oid": "6711d58fcd60fca157e5d750" + } + }, + { + "text": "Tough class. Prof Blumencranz sets a high standard and pushes us. I want to be a creative director so i feel lucky the instructor cares so much. Many team mates that just want to pass don't like that much work. This is not easy.", + "pos": 0.216, + "neu": 0.672, + "neg": 0.112, + "_id": { + "$oid": "6711d58fcd60fca157e5d751" + } + }, + { + "text": "This guy is amazing. Last class he gave us a lecture with the goal of making the creative process accessible and it was one of the most inspiring things I've ever seen. He actually inspired me to pursue the creative side of branding.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d752" + } + }, + { + "text": "Hardest class ever. A MUST if u really want to get into the creative world within the field of advertising or PR. Hard not to care when Prof. B cares so much. Tough grader, though bc if u don't do your best u won't do well.", + "pos": 0.133, + "neu": 0.673, + "neg": 0.195, + "_id": { + "$oid": "6711d58fcd60fca157e5d753" + } + }, + { + "text": "It's a privilege to have instructors like Blumnkratz. I learnt so much, and I learnt to trust my instincts.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d754" + } + }, + { + "text": "Totally agree with cmment below. This class was an unexpected great surprise. It requires thinking in a different way. Prof. B is really helpful and very inspiring.", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d755" + } + }, + { + "text": "Completely unexpected. Fun class. Blumenkrantz is cool and dedicated. WARNING: tons of homework. Fun if you like creative stuff.", + "pos": 0.537, + "neu": 0.367, + "neg": 0.096, + "_id": { + "$oid": "6711d58fcd60fca157e5d756" + } + }, + { + "text": "I didn't know anything about the creative side of the ad business and this class opened my eyes to it. Blumenkrantz is great and a sweet guy too if you do the work There's a lot of work and it's kinda weird because it looks easy but it's hard. Don't text in class. he hates it.", + "pos": 0.132, + "neu": 0.764, + "neg": 0.104, + "_id": { + "$oid": "6711d58fcd60fca157e5d757" + } + }, + { + "text": "Love this guy. Check out his work online: awesome stuff.Great mentor. Be prepared to work your tail off, though. He pushes you hard.", + "pos": 0.333, + "neu": 0.621, + "neg": 0.046, + "_id": { + "$oid": "6711d58fcd60fca157e5d758" + } + }, + { + "text": "This class was City College's most pleasant surprise. Instructor is an award-winning creative pro. He opened my eyes to the fact you can earn a living doing what I love which is coming up with witty stuf. I thought that was gonna be a hobby but now I will pursue it as a career. Will definitely take him for workshop next year.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d58fcd60fca157e5d759" + } + }, + { + "text": "Best instructor ever. He's da man! Super smart guy, super nice. He takes no BS, though. He cares and, if you do, he will hook you up with top ad people he knows and help you develop your portfolio. If you don't care listen to the other comments: take an easier teacher. Guy is flexible and easygoin but will give you a bad grade if you slack off.", + "pos": 0.242, + "neu": 0.66, + "neg": 0.098, + "_id": { + "$oid": "6711d58fcd60fca157e5d75a" + } + }, + { + "text": "Very inspiring. Backs everything he talks about with creative work he has done, which helps me learn. I wish other professors would come from the real world like Prof. B does. He's also very nice and respectful of each student's unique point of view. Lots of hard work, so be warned that if u are not into pushing the envelope, you may not enjoy it.", + "pos": 0.246, + "neu": 0.658, + "neg": 0.096, + "_id": { + "$oid": "6711d58fcd60fca157e5d75b" + } + }, + { + "text": "Amazing instructor. Lectures are very inspiring, for instance he showed us great ads and then bad versions he created to show us the difference. Funny guy. He's tough, though, if you're checked out or don't care. Take the other sessions if you're not serious about advertising.", + "pos": 0.277, + "neu": 0.599, + "neg": 0.124, + "_id": { + "$oid": "6711d58fcd60fca157e5d75c" + } + }, + { + "text": "This class made me want to pursue a creative career. Instructor was very inspiring and supportive. It's a hard class because you have to put a lot of hours and creativity, which not everyone enjoys. I do. it's not like you memorize stuff and do well. He spent lots of time helping me enter a competition. Solid guy. Gave me a good grade too.", + "pos": 0.267, + "neu": 0.655, + "neg": 0.078, + "_id": { + "$oid": "6711d58fcd60fca157e5d75d" + } + }, + { + "text": "very unorganized, he's late to class, you can text and do whatever you want, and he probably wont notice. i still have no interest in copywriting", + "pos": 0.047, + "neu": 0.864, + "neg": 0.089, + "_id": { + "$oid": "6711d58fcd60fca157e5d75e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d590cd60fca157e5d760" + }, + "professor_name": "Emel Taskakan", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "If you are serious about substance abuse, make sure to do your own research while taking this class. Some of the information taught was questionable, where many research papers went on to disprove the knowledge given.", + "pos": 0.055, + "neu": 0.762, + "neg": 0.183, + "_id": { + "$oid": "6711d590cd60fca157e5d761" + } + }, + { + "text": "Contrary to all the reviews here, Professor Emel is one of those rare professors who will always keep things real with you. She will never lie to your face about what she expects from you in class, and PSY 347 is a class everyone should take once in their college careers if possible. Highly recommend taking this class with Professor Emel!", + "pos": 0.049, + "neu": 0.951, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d762" + } + }, + { + "text": "Take her if you can!! There are two exams (midterm and final), 5 short homework assignments, and one paper. As long as you go to class it's an easy A and her lectures are very interesting and engaging, but be warned bc she is very strict about her deadlines!", + "pos": 0.123, + "neu": 0.829, + "neg": 0.049, + "_id": { + "$oid": "6711d590cd60fca157e5d763" + } + }, + { + "text": "Strict deadlines! The only way to have them moved is if you tell her way in advance. There's only one test for the class (the cumulative final), everything else is attendance, short papers, and a major paper at the end. You can't make up anything you've missed, you just have to keep going in the class. Kind of easy to get an A though.", + "pos": 0.043, + "neu": 0.924, + "neg": 0.033, + "_id": { + "$oid": "6711d590cd60fca157e5d764" + } + }, + { + "text": "Professor Taskakan is amazing. She's truly passionate about teaching. The course is pretty easy. 2 online exams, 1 experiment, and 5 reaction papers. Extra credit opportunities are available. She's very strict on deadlines though. Very very fair grader. Take her!", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d765" + } + }, + { + "text": "This professor is just amazing. Great interesting lectures, super understanding, so helpful. Take her class if you can! Just 5 brief reaction papers , 2 tests, and 1 experiment. Tests are all based on her notes and the discussion. Pay attention to the little summary she gives at the beginning of every class.", + "pos": 0.27, + "neu": 0.709, + "neg": 0.021, + "_id": { + "$oid": "6711d590cd60fca157e5d766" + } + }, + { + "text": "If you wanna take her for credit then sure. Don't take knowledge from her not that she is bad. This class is full of sh*t social information some are true and some are BS. Side note: arguing with her isn't good at all. I don't think she is bad but her some of her ideas are full of sh*t and maybe even tasteful hate.", + "pos": 0.072, + "neu": 0.751, + "neg": 0.178, + "_id": { + "$oid": "6711d590cd60fca157e5d767" + } + }, + { + "text": "She's a very caring and knowledgeable professor! Low key want her as my therapist lol. her work is very manageable and lots of extra credit opportunities. Sensitive topics are discussed but she makes you feel very comfortable to voice your opinion. Definitely take her :)", + "pos": 0.365, + "neu": 0.608, + "neg": 0.026, + "_id": { + "$oid": "6711d590cd60fca157e5d768" + } + }, + { + "text": "I've taken both Professors Taskakan's classes and she's been wonderful in both. A very caring individual who clearly loves to educate us on what she knows. She'll always grade unbiased so you don't need to worry about not agreeing with her. Gives clear and concise feedback on work. There is a small group project, but it isn't anything serious.", + "pos": 0.206, + "neu": 0.755, + "neg": 0.039, + "_id": { + "$oid": "6711d590cd60fca157e5d769" + } + }, + { + "text": "The class is super easy with only two exams, six papers, and four extra-credit opportunities.", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d76a" + } + }, + { + "text": "Emel is a great professor. In this class, she touches on various types of racism, sexism, and prejudice faced by people. There's an easy group project, a final, and an ad assignment that make up your entire grade. She's extremely caring and fair. She provides a safe space to share and discuss. Tak her if you can.", + "pos": 0.244, + "neu": 0.657, + "neg": 0.099, + "_id": { + "$oid": "6711d590cd60fca157e5d76b" + } + }, + { + "text": "Really nice lady. HW were easy just 2 page papers based on a reading. She gives extra credit. The exams looked hard if I had to take in class.", + "pos": 0.246, + "neu": 0.714, + "neg": 0.04, + "_id": { + "$oid": "6711d590cd60fca157e5d76c" + } + }, + { + "text": "Emel's super nice! She makes the class interesting but it's more like a sociology class than psych. Because of COVID all my tests were online, but I think they would've been much harder in person because there are so many dates, etc. Overall, this class was pretty easy and I'm glad I took it. She gives notes before each class that really help!", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d76d" + } + }, + { + "text": "She's one of the best professors to teach this class. You have to go to class for attendance, but she is lenient on timing, so you can be late, and you still pass. You have 7 papers, which are super short and super easy, one group presentation, midterm, and final. The midterm and final questions cane easily be found online :)", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d76e" + } + }, + { + "text": "Professor Taskakan is an amzing professor and truly cares about her students. Her requirements are striaght forward, 3 exams, group essay and a presentation. Attandance is key, but extra credit is given ( the xtra cred assignments are actually intersting). You will not be dissapointed taking this and honeslty it is the most Ive lerned in any class.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d76f" + } + }, + { + "text": "I highly recommend taking her. She values your thoughts and feedback. She also is a fantastic human being and you also learn so much. This is the class I've learned the absolute most in this semester. 3 exams and 1 group paper/presentation. Make sure you go to class not that you'd want to miss it, and read the textbook to prepare for exams!", + "pos": 0.163, + "neu": 0.797, + "neg": 0.039, + "_id": { + "$oid": "6711d590cd60fca157e5d770" + } + }, + { + "text": "Thank you for extra credits.", + "pos": 0.625, + "neu": 0.375, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d771" + } + }, + { + "text": "Prof Taskakan has a heart of gold. You take 3 exams, a group paper & a group presentation. U get full credit for presenting btw. She truly cares abt her students/their knowledge of the material. Just take notes, study 'em, and u will be fine. Only warning: some exam q's come from the textbook but not many. Extremely kind and worth taking!", + "pos": 0.176, + "neu": 0.745, + "neg": 0.078, + "_id": { + "$oid": "6711d590cd60fca157e5d772" + } + }, + { + "text": "One of the best psychology professors I had in CCNY. She cares a lot about his students and is very sweet. DO not take her for granted and attend her lectures because she writes important material on the board that will come in the exam! You should be good if you do the readings and the extra credit", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d773" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d590cd60fca157e5d775" + }, + "professor_name": "Pamela Stemberg", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "Easiest professor ever, haven't received my grade yet, but got full credit for everything, just do the work and don't leave it till the last minute, since everything can pile up super fast.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d776" + } + }, + { + "text": "She is super nice! One of the best professors I've had!!! Cares about her students and is always willing to help you. Her workload is pretty light and she is very reasonable when it comes to due dates. Definitely recommend her class.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d777" + } + }, + { + "text": "wonderful prof, very forgiving and understanding, doesn't grade harshly, do all the projects and assignments and you will get an easy A", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d778" + } + }, + { + "text": "Amazing Professor. Absolutely accommodating. I was going through a rough patch and she was so understanding of my late work. She genuinely likes to teach. I cant seem to think of anything else but to take her class.", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d779" + } + }, + { + "text": "Professor is fun and creates a safe space, but class is disorganized. Syllabus and deadlines changed often, which was difficult to keep track of. I didnt feel I learned new skills in this class because most of the projects were group work instead of introducing new material. Communication with group members was stressful and unrewarding.", + "pos": 0.087, + "neu": 0.752, + "neg": 0.161, + "_id": { + "$oid": "6711d590cd60fca157e5d77a" + } + }, + { + "text": "She is an easy A. The whole semester was revolved around group work. There were four projects which were easy if you participate and do your part. The Professor is really understanding and lenient with grading and late assignments.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d77b" + } + }, + { + "text": "Super easy. Like its impossible to fail literally. Shes super sweet and will explain things over until we understand. Workload is simple.", + "pos": 0.454, + "neu": 0.448, + "neg": 0.098, + "_id": { + "$oid": "6711d590cd60fca157e5d77c" + } + }, + { + "text": "easy going, highly recommend", + "pos": 0.74, + "neu": 0.26, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d77d" + } + }, + { + "text": "She is a very good Proferssor, and she is kind, but do not take her kindness for granted. Show that you are also serious with your studies. She loves everyone and she loves doing group projects which makes the work easy because he work is shared among ts the group. Take her and respect her kindness toward you by doing the work she asked you to do.", + "pos": 0.345, + "neu": 0.604, + "neg": 0.05, + "_id": { + "$oid": "6711d590cd60fca157e5d77e" + } + }, + { + "text": "Very nice and fair professor. A lot of small, annoying assignments like discussions, blogs, ect. but very doable. It really is an EASY A and we only met once a week for the majority of the semester. Very flexible and willing to work with you. Just be prepared for the last two weeks cuz she gives those 3 big assignments that are crucial. Take her.", + "pos": 0.212, + "neu": 0.764, + "neg": 0.024, + "_id": { + "$oid": "6711d590cd60fca157e5d77f" + } + }, + { + "text": "She tends to drag out materials such as the literature books we were advised to read for class. Be prepared to do many quizzes and essays on each book. Overall a nice instructor.", + "pos": 0.128, + "neu": 0.82, + "neg": 0.052, + "_id": { + "$oid": "6711d590cd60fca157e5d780" + } + }, + { + "text": "As a science major, her writing for sciences class was an easy A. Just need to do the homework, which are a bother, and need to do her assignments. Participation is a must. Talk with her about your grade and she will change it or give you another chance to re-write. Very easy professor! Brings your GPA up!", + "pos": 0.133, + "neu": 0.83, + "neg": 0.037, + "_id": { + "$oid": "6711d590cd60fca157e5d781" + } + }, + { + "text": "I encourage science major students to take this class with this professor. She tries out different kind of activities for students to learn writing scientifically. A week or more to do each assignment. No quiz nor exam. There are 5 blogs, about 10 homework, a research project, an interview with a scientist, and group literature review. late issue.", + "pos": 0.054, + "neu": 0.911, + "neg": 0.036, + "_id": { + "$oid": "6711d590cd60fca157e5d782" + } + }, + { + "text": "She gives too much pointless work. If this were an online class I would understand, but she assigns things and doesn't even grade them. There are so much readings and assignments that are pointless and stupid. its an easy A, just so much work amongst actual important classes, but do the work and you will receive an A. One 30 pg group paper at end", + "pos": 0.083, + "neu": 0.853, + "neg": 0.063, + "_id": { + "$oid": "6711d590cd60fca157e5d783" + } + }, + { + "text": "she is really nice and easy as compared to other writing professors. she is good with the due dates. there will be plenty of time to finish one assignment and the work load is pretty bearable. easy to pass. just do everything and you will get an A for sure.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d784" + } + }, + { + "text": "she is funny and the class its pretty easy and simple . She always trying to make a joke about something and it makes us feel like we are in a good environment .She is a good teacher but sometimes she gets lost and unorganized.", + "pos": 0.249, + "neu": 0.695, + "neg": 0.055, + "_id": { + "$oid": "6711d590cd60fca157e5d785" + } + }, + { + "text": "Good teacher", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d590cd60fca157e5d786" + } + }, + { + "text": "She can be better. Very unorganized in the class room. A lot of the time she would ramble on about the very topic no one in the class understands. I am passing the class, but also feel as if I am not learning as much as I should be.", + "pos": 0.038, + "neu": 0.927, + "neg": 0.034, + "_id": { + "$oid": "6711d590cd60fca157e5d787" + } + }, + { + "text": "Although her instructions werent always clear the 2nd time around, 3rd time's a charm. She cares if you pass. She is slways available through email and if you ever \"forget\" to hand in that research paper, she is flexible with deadlines. I handed in a paper last day of the semester when it was due two months ago and still received a B. Thank you!!", + "pos": 0.183, + "neu": 0.763, + "neg": 0.054, + "_id": { + "$oid": "6711d590cd60fca157e5d788" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d591cd60fca157e5d78a" + }, + "professor_name": "Anna Arakelyan", + "rating": 4.3, + "department": "Economics department", + "comments": [ + { + "text": "She is a super kind and nice person. I just think she is so smart she doesn't realize how tough this material is for a rookie. She does not take attendance but the exams are strictly related to what she teaches which forces you to be there. Be prepared to work hard for your grade. Three exams, one final group project. Yes, I would take her again.", + "pos": 0.198, + "neu": 0.781, + "neg": 0.021, + "_id": { + "$oid": "6711d591cd60fca157e5d78b" + } + }, + { + "text": "she was a very good professor. her grading policy is very lenient. exams are related to chapter problem handouts. homeworks are easy if you do problem sets.", + "pos": 0.236, + "neu": 0.613, + "neg": 0.15, + "_id": { + "$oid": "6711d591cd60fca157e5d78c" + } + }, + { + "text": "I am a weak Math student . So I was scared to take this class and fail, but the professor made it so easy and clear that even i could I understand. A lot of work, a lot information but clear and concise. Note* At some point you will feel overwhelmed but if you study and attend her class you should do well.", + "pos": 0.21, + "neu": 0.709, + "neg": 0.081, + "_id": { + "$oid": "6711d591cd60fca157e5d78d" + } + }, + { + "text": "Professor Arakelyan was one of the most caring professors I had. She was passionate about the subject she taught and was open to helping one on one. She knew the material very well. Her way of teaching was simple which helps students better understand the material. Take her if you want to pass the class. The effort you put is the grade you earn.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d78e" + } + }, + { + "text": "Professor Arakelyan is an amazing professor. Very professional and educated about the subject. The lectures are clear and she makes sure everybody understands the subject. There is a lot of homework online which is mandatory and graded, but after doing that - it is easy to prepare for similar exams. If you have to take Macroeconomics - take her!", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d78f" + } + }, + { + "text": "Do not take her!!! she goes super fast and expects the students to know everything. she just writes the answers on the board to questions and you just gotta follow along. she gives three tests and drops one and the rest is a group project and homework including spss assignments. Avoid her!!!", + "pos": 0.088, + "neu": 0.873, + "neg": 0.038, + "_id": { + "$oid": "6711d591cd60fca157e5d790" + } + }, + { + "text": "Professor Arakelyan is very knowledgeable about economics. The problem that I got from her is that she teaches upper classes, which means that, if you are uninterested in or do not know anything about economics, then, you should NOT take her because she is unable to explain topics in a form that students who are new to the topic understand.", + "pos": 0.0, + "neu": 0.956, + "neg": 0.044, + "_id": { + "$oid": "6711d591cd60fca157e5d791" + } + }, + { + "text": "This class was not easy. But Professor Arakelyan did everything possible to make the subject matter as understandable as possible. She was organized, fair, intelligent and understood the material well (which can be a rare thing at CCNY). In the end I felt I learned so much that I can apply to the field and life in general.", + "pos": 0.164, + "neu": 0.81, + "neg": 0.026, + "_id": { + "$oid": "6711d591cd60fca157e5d792" + } + }, + { + "text": "This class is easy. Just take notes and do weekly homework. The exams are not hard at all. The only reason I give it 4/5 on easiness is due to group project. The group project itself isn't too hard but coordinating with group members can be tedious if no one is on the same page. It would be great if she give us the option to go solo.", + "pos": 0.153, + "neu": 0.81, + "neg": 0.037, + "_id": { + "$oid": "6711d591cd60fca157e5d793" + } + }, + { + "text": "Anna's teaching style was very optimal yet laid back. First, it was lecturing about the background of the topic, then we would do questions. We would do questions that tackle just exactly every single aspect of the topic, so there would be no confusion afterwards. Good class, and I recommend you taking her.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d794" + } + }, + { + "text": "Great Professor. Went above and beyond her duties to help her students understand the material.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d795" + } + }, + { + "text": "She is very knowledgeble and cares about her students understanding whats really going on. If you ask her for help, she will always be willing to provide. The material is not very easy to learn, but the professor does a good job sparking your interest. Overall she is a great professor and if possible I would personally like another class with her.", + "pos": 0.267, + "neu": 0.709, + "neg": 0.023, + "_id": { + "$oid": "6711d591cd60fca157e5d796" + } + }, + { + "text": "Prof Arakelyan made statistics a very worthwhile experience, and I unexpected ly looked forward to her class! The material was difficult but her lectures were informative and (gasp) not boring recitations of the textbook. She explained concepts until you understood, offered real-world examples, and genuinely cared about her students' progress.", + "pos": 0.238, + "neu": 0.733, + "neg": 0.029, + "_id": { + "$oid": "6711d591cd60fca157e5d797" + } + }, + { + "text": "She is one of the most helpful professors I have ever worked with. This class is challenging, but if you do the homework assignments, attend class, take notes you will get an A. Professor Arakelyan is very professional and just by copying her notes, it will be enough of a reference when you study, because her lectures are well prepared.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d798" + } + }, + { + "text": "If you are not willing to work hard, do not bother taking this class! Arakelyan is very professional and well prepared for each of her lectures. You must submit your assignments promptly and study for exams. She is always willing to assist and answer your questions. I first took took stats with Foster, failed miserably. I scored an A with her!", + "pos": 0.09, + "neu": 0.789, + "neg": 0.12, + "_id": { + "$oid": "6711d591cd60fca157e5d799" + } + }, + { + "text": "She is very good. It is one of those classes that you need to do all homework assignments, attend classes, take notes, and do additional problems. It is not your easy PSY 101, however if you do what's assigned, you will get that A. She grades exams very fairly. If you want to know the material well after completing this class, take it with her.", + "pos": 0.092, + "neu": 0.837, + "neg": 0.071, + "_id": { + "$oid": "6711d591cd60fca157e5d79a" + } + }, + { + "text": "Professor Arakelyan is an AMAZING Statistics professor who provides plenty of practice sheets to prep you for upcoming exams. If you make the effort to learn the material she provides, you will perform very well in the class and walk out with a complex understanding of basic statistics. After taking her course I was genuinely interested in stats.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d79b" + } + }, + { + "text": "You might want to think twice picking her for stats. She said this semester was the first time being 1hr 15mins and shes rushes the lectures every time, more than half the class couldn't keep up and have to understand the subjects by ourselves. At the last 2-3 week of the semester she throws everything at you with 4 to 5 HW,a project and a FINAL.", + "pos": 0.02, + "neu": 0.98, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d79c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d591cd60fca157e5d79e" + }, + "professor_name": ". Powers", + "rating": 4.1, + "department": "Humanities department", + "comments": [ + { + "text": "GREAT material. However, he criticizes students IN FRONT of the entire class. Very awkward.", + "pos": 0.24, + "neu": 0.547, + "neg": 0.213, + "_id": { + "$oid": "6711d591cd60fca157e5d79f" + } + }, + { + "text": "Professor Powers is awesome. He thinks completely outside the box-I wish other professors would take a page out of his book and stop teaching like the living dead and inject some personality into their lectures. Not to mention he's do damn hot with those locks! Definitley a treat. If he taught more classes, I may never graduate.", + "pos": 0.172, + "neu": 0.699, + "neg": 0.129, + "_id": { + "$oid": "6711d591cd60fca157e5d7a0" + } + }, + { + "text": "He is a good professor, but very disorganized. I still haven't gotten my grade for the semester and I don't even know what I got on any of my papers. His disorganization gives him minus points.", + "pos": 0.05, + "neu": 0.868, + "neg": 0.083, + "_id": { + "$oid": "6711d591cd60fca157e5d7a1" + } + }, + { + "text": "the class was ok overall, and he was very funny. my one pet peev is that i have no idea what grade i got on 2 of my 3 papers, so i dont; even know what grade i have for this class. if he fails me for \"not handing in work\" that i did turn in, i will be upset", + "pos": 0.079, + "neu": 0.809, + "neg": 0.112, + "_id": { + "$oid": "6711d591cd60fca157e5d7a2" + } + }, + { + "text": "Be prepare to do 6 2-3 pages in his class. He is okay - not really one of the best but is a fun kind of teacher. Don't sleep on him, he is kinda tough on the grading.", + "pos": 0.194, + "neu": 0.776, + "neg": 0.03, + "_id": { + "$oid": "6711d591cd60fca157e5d7a3" + } + }, + { + "text": "he is really cool. his jokes make us laugh, and we learn well.", + "pos": 0.54, + "neu": 0.46, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7a4" + } + }, + { + "text": "He's really cool...he really helps you see things in a different perspective...You got to have him atleast once", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7a5" + } + }, + { + "text": "Hes very insightful, he really makes you think. I looked forward to his class and actually reading the books. Even writing the papers are fun because he gives you so many interesting topics to choose from", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7a6" + } + }, + { + "text": "Take this course if you want a real college experience. He loves to open your mind up to new things and there's always an interesting conversation going on in his class. He has his own book out and it's great. There are some papers to do, but they'll be interesting too. He opened my eyes to what's out there and I wish I could take his class again.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7a7" + } + }, + { + "text": "He is a great teacher and a great personality to have as a teacher. The class is simply put 'one of the best' since I've been here.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7a8" + } + }, + { + "text": "This class is GREAT! You just don't know until you try. TRY it. It's easy too. You'll enjoy what you learn and talk about in class.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7a9" + } + }, + { + "text": "Casual, but challenging in terms of our thoughts. Has a great sense of humor which makes class easygoing but engaging. Encouraging to everyone. Papers are plentiful only because required reading is a lot. Take this class if you want a true college experience and have a passion for learning/thinking.", + "pos": 0.446, + "neu": 0.554, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7aa" + } + }, + { + "text": "Very insightful. Makes you really think by asking thought-provoking questions. Great class discussions. Admits he was able to learn from the life-experience of older students...good trade-off, I'd say.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7ab" + } + }, + { + "text": "Be prepare to do atleast 6 papers (2-3 pages each) for the whole semester.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7ac" + } + }, + { + "text": "Amazing, one of the best prof. I have even had. This guy is awesome. Knows how to motivate a class and you will never fall asleep. Beware at first he comes off as a tough guy but he is really reasonable, helpful, understanding and kind. He is the greatest mind I have met at CCNY. Thanks Powers", + "pos": 0.36, + "neu": 0.624, + "neg": 0.016, + "_id": { + "$oid": "6711d591cd60fca157e5d7ad" + } + }, + { + "text": "He is a cool teacher. He tries to enlighten our mind with classics and modern style events/ situation. He gets students involve in the classwork and it actually becomes fun. Take this class I recommend it, for anyone who doesn't want a boring class. A modern day teacher for a modern world.", + "pos": 0.221, + "neu": 0.759, + "neg": 0.02, + "_id": { + "$oid": "6711d591cd60fca157e5d7ae" + } + }, + { + "text": "Powers is a cool professor. He makes the class fun. After a while, it doesn't feel like a class because he makes people feel so comfortable. He shows current movies and compares them to old books. HOWEVER, be prepared to write a paper for each book. But the papers are short (2-3pgs), so Don't Fret!", + "pos": 0.137, + "neu": 0.837, + "neg": 0.026, + "_id": { + "$oid": "6711d591cd60fca157e5d7af" + } + }, + { + "text": "Very fun teacher, loves to talk and talk and talk with students. Tries to engage each individual in the class. Watches movies and compares them to the classics, for ex compares Oedipus to The Matrix and actually let us watch parts 1 and 3 in class. Very cool guy!", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d591cd60fca157e5d7b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d592cd60fca157e5d7b2" + }, + "professor_name": "Jin Ok Lee", + "rating": 4.4, + "department": "Music department", + "comments": [ + { + "text": "She is just incredible! One of my best professors of music! I am truly blessed to be her student. She is always willing to help, very patient and kind, and funny. She is not a harsh grader, very understanding professor. She expects some respect and discipline, but that is totally fine for me. If you do your homework, you'll be great. RECOMMENDED", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7b3" + } + }, + { + "text": "Have her at BMCC. Totally not easy. Maybe at. City college she was but def not here. Yes funny, nice and sarcastic, ETC but she's intimidating. HW everyday, midterm and final. It's a beginners piano course not a Piano expertise course. Too strict. She could lighten up a bit. ESP since most students take this as an ELECTIVE FOR BASIC REQUIREMENTS.", + "pos": 0.051, + "neu": 0.755, + "neg": 0.195, + "_id": { + "$oid": "6711d592cd60fca157e5d7b4" + } + }, + { + "text": "She is the best you will ever find. of course if your not asian you wont get an A. but its extremely easy. shes hilarious and keeps the class entertained. sarcasm is her key to success. participate and memorizing her notes (which isnt a lot) should get you a good grade", + "pos": 0.334, + "neu": 0.632, + "neg": 0.034, + "_id": { + "$oid": "6711d592cd60fca157e5d7b5" + } + }, + { + "text": "I LOVE HER! She has a great sence of humor, always happy and cheerful, explains material really well, makes her class enjoyable and entertaining! To pass you just have to study lectures and her final will be a summary of all your previous testes. I wish i could retake her, sadly im not a music major! it was really fun having her as a professor!", + "pos": 0.374, + "neu": 0.595, + "neg": 0.031, + "_id": { + "$oid": "6711d592cd60fca157e5d7b6" + } + }, + { + "text": "She is funny and nice. I highly recommend this class!!! Her finals are easy, you just have to study your old exams. There are 2 concert reports, 1 presentation, 4 exams (she drops the lowest) and a final", + "pos": 0.256, + "neu": 0.689, + "neg": 0.054, + "_id": { + "$oid": "6711d592cd60fca157e5d7b7" + } + }, + { + "text": "Smokin' hot, cute and funny. Very interesting class, I love it. Did I mention she's hot?", + "pos": 0.522, + "neu": 0.478, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7b8" + } + }, + { + "text": "very interesting, friendly, patient and humorous professor. Barely any work, except the reports that the department asked. Tests are always easy. Easy A. Haha very enjoyable class", + "pos": 0.513, + "neu": 0.487, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7b9" + } + }, + { + "text": "She is an awesome lady! Shes nice if our nice to her. Attendance is a must in her class; and her test are really easy if you just pay attention in class! Her final is based on the 4 class test she previously gave during the semester! Awesome lady! Take her", + "pos": 0.281, + "neu": 0.697, + "neg": 0.022, + "_id": { + "$oid": "6711d592cd60fca157e5d7ba" + } + }, + { + "text": "Her course should be taken my all city college students. Not only she is an easy grader and extremely helpful, she makes her lectures very easy to understand. If you study your lectures you will do very well. And also because the final was based on the previous test, I actually was able to really absorb the information. Very good professor!!", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7bb" + } + }, + { + "text": "She's gotten a little harsher in grading since the department scolded her.Still a pretty easy class. An A+if you study for the tests and there's listening sections on the test as well so you have to remember pieces and composers. 2 Concert reports were cake and final had same exact questions taken from 4 previous tests. Attendance is absolutey mand", + "pos": 0.122, + "neu": 0.834, + "neg": 0.043, + "_id": { + "$oid": "6711d592cd60fca157e5d7bc" + } + }, + { + "text": "She is hot... All you gotta do is take notes what she teaches you in class. you will have to do four tests, 2 concert reports, one presentation, and the final. In the final, the questions will be taken out from the previous four tests. It's kind of easy. She is really funny and friendly. She gave me an A on it.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7bd" + } + }, + { + "text": "Great teacher, pretty hot too. So long as you take notes and do the presentations and concert reports and come to class on time, you'll get a good grade. She makes the class fun and is a funny and approachable person.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7be" + } + }, + { + "text": "She is supper cute!!! Very ncie professor. attendence is mandatory. she gives 4 quized 2 assignments a final and a class presentation. its not as much as it seems. very organized. i brought the book but it was useless, ass long as you copy all her notes that she gives and listen to her carefully you do not need a book at all. very easy to get an A.", + "pos": 0.123, + "neu": 0.773, + "neg": 0.104, + "_id": { + "$oid": "6711d592cd60fca157e5d7bf" + } + }, + { + "text": "Super nice. A little bit quirky but quite charming. Take good notes unless you want to depend on the book. Some people found the book dense but I studied straight from the book, took no notes, and got an A.", + "pos": 0.324, + "neu": 0.623, + "neg": 0.053, + "_id": { + "$oid": "6711d592cd60fca157e5d7c0" + } + }, + { + "text": "Really cool professor. Makes the class easy enough to pass.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7c1" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d592cd60fca157e5d7c2" + } + }, + { + "text": "TAKE HER!attendance is man. She's funny, and extremly helpful. Take notes in class and those notes are on her four quizzes, go over the quizzes(she gives back with corrections) and thats the final. simple! theres a 10 minute final presentation. you need to go to two classical or jazz concerts, one in city college, one out of city.2 page paper each!", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7c3" + } + }, + { + "text": "She is fun, kind and makes class enjoyable...we don't really use the text for class often but she gets upset when no one has it. 2 concert papers a couple quizes and one final project, but its all very easy. just read and listen to the lecture and you'll be alright", + "pos": 0.179, + "neu": 0.722, + "neg": 0.099, + "_id": { + "$oid": "6711d592cd60fca157e5d7c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d592cd60fca157e5d7c6" + }, + "professor_name": "Dylan Barnes", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "Great teacher made experimental so much easier than expected. every clear and direct. gives a lot of in class time to work on papers. very clear slides. don't use the book much and attendance isn't mandatory. MUST TAKE! (:", + "pos": 0.321, + "neu": 0.655, + "neg": 0.024, + "_id": { + "$oid": "6711d592cd60fca157e5d7c7" + } + }, + { + "text": "such a good professor! Class super easy, well organized and an easy A. She is super understanding and is easy to talk to. Best professor I've had at City College.", + "pos": 0.542, + "neu": 0.458, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7c8" + } + }, + { + "text": "She is absolutely amazing! So glad I got to take this class with her. Makes the class engaging and makes sure everyone gets the concepts! Highly recommend 10/10", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7c9" + } + }, + { + "text": "If you do you all your works and attend all the lectures its goinna be easy to get a good grade, she keeps people posted about grades and how to improve.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7ca" + } + }, + { + "text": "BEST TEACHER EVER. I've never had a more interesting and informative class in my life. Ms. Barnes was thorough, clear, and exceptionally reasonable with her students. If I could, I would take her class over and over again. Thank you, Ms. Barnes!!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7cb" + } + }, + { + "text": "She speaks quickly but she will take the time during class to make sure you understand the material. Her tests are veryyy easy - keep all of the tests that she gives during the semester and you will ace the final. She gives extra credit if you come to class on time. Loved her!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7cc" + } + }, + { + "text": "She knows the material very well. But she has 2 flaws: she needs to have patience and she needs to have compassion for her students, in order to be a good teacher/professor.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7cd" + } + }, + { + "text": "Avoid taking her class!!! She is not a good Teacher. She speaks too fast, is not helpful & does not look approachable. Her midterm exams are tricky & hard. Based on my experience, it does not seem that she is interested in students getting good grades in her class. I think she needs to be more student-centered in order to be a good Teacher & Prof.", + "pos": 0.11, + "neu": 0.75, + "neg": 0.14, + "_id": { + "$oid": "6711d592cd60fca157e5d7ce" + } + }, + { + "text": "She is a great professor,she is wonderful.She possesses wonderful character.She is willing to answer students questions.She gives alot of extra credits,but you have to be early.If you do not understand something she explains it again.I would recommand you to take her,she is amazing,a fault she has; is she talks fast,butjust tell her to slow down.", + "pos": 0.125, + "neu": 0.832, + "neg": 0.043, + "_id": { + "$oid": "6711d592cd60fca157e5d7cf" + } + }, + { + "text": "Best professor, no question. - warm, rational, really intelligent and helpful! Thoughtfully baked delicious cookies for the class for our finals. Likes to get things done on time or ahead of time (early dismissals!!) Personally this was my favorite class this semester", + "pos": 0.42, + "neu": 0.543, + "neg": 0.036, + "_id": { + "$oid": "6711d592cd60fca157e5d7d0" + } + }, + { + "text": "Extremely helpful, sweet, and really funny comments and jokes. If I could, I'd take her class 100 times over again. Extra credits if you come to class regularly. Don't be late for presentations! Loves olfactory system (smell) :) One of the best professors I've ever had. Do your work, participate, and you'll get the A you deserve. A+ Teacher!!!", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7d1" + } + }, + { + "text": "Prof. Barnes is a fantastic instructor - I highly recommend you take her. The material isn't exactly easy. It can actually be a lot to take in but professor makes it easy for us to understand and takes the time to answer whatever questions we have. She sticks to a set schedule so it's easy to follow along. Make the effort and you'll love the class", + "pos": 0.227, + "neu": 0.752, + "neg": 0.021, + "_id": { + "$oid": "6711d592cd60fca157e5d7d2" + } + }, + { + "text": "Barnes is awesome. shes funny and she always makes sure that you understand the material and she takes time after class to explain things to you if you still don't get it. her quizzes are not easy but they aren't impossible and she gives out a study sheet and gives extra credit opportunities. and when its nice out she has class outside =]", + "pos": 0.261, + "neu": 0.717, + "neg": 0.022, + "_id": { + "$oid": "6711d592cd60fca157e5d7d3" + } + }, + { + "text": "Professor Barnes is a great professor. She makes here class interesting and always available for help. Not a hard grader, she gives students many opportunities to do extra credits to improve their grads. She simplifies materials and even uses YouTube videos to illustrate her points. I highly recommend taking her, especially for Psych 254.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7d4" + } + }, + { + "text": "She is a great professor. She makes sure her students understand the topic before moving on. Show up to her lectures and you will do great. Barnes, also shows slides, youtube videos, and powerpoints. Recommend to take her class", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7d5" + } + }, + { + "text": "She is a great prof. and really helpful. She basically gives exams from the slides so study her slides and go to class. her classes are mostly fun. I recommend take her than any other prof. in city college.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d592cd60fca157e5d7d6" + } + }, + { + "text": "Obviously the first reviewer wants to come to class late, not read or study and be entertained every class! He also needs to take an English class. Ms. Barnes is an engaged instructor who cares about her students and challenges them to master a tough subject. She is available for assistance and goes above and beyond to help students.", + "pos": 0.189, + "neu": 0.789, + "neg": 0.022, + "_id": { + "$oid": "6711d592cd60fca157e5d7d7" + } + }, + { + "text": "DONT TAKE HER. She does not tolerate any lateness. when students asks her questions, most of the time her answer is I Don't Know. She makes you read the text book, powerpoint and class notes. The average of class is 60s and she blames on us the STUDENTS. She does not show any sympathy. She is MEAN. make people fell a sleep. BORING!!!!", + "pos": 0.0, + "neu": 0.869, + "neg": 0.131, + "_id": { + "$oid": "6711d592cd60fca157e5d7d8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d593cd60fca157e5d7da" + }, + "professor_name": "Raghavan Srinivasan", + "rating": 3.3, + "department": "Economics department", + "comments": [ + { + "text": "i took him online during the summer and he's a good professor like others have said. i don't understand the past low ratings for him but he's a nice person. graded based on homework and exam. homework was mediocre but exam was fairly easy. he curves in the end which is a bonus. i'd take him again.", + "pos": 0.233, + "neu": 0.744, + "neg": 0.023, + "_id": { + "$oid": "6711d593cd60fca157e5d7db" + } + }, + { + "text": "I have no complaints, professor is easy going and truly wants the best for his students. he's open to feedback and makes changes based on student's requests. and he curves grades at the end, which is a bonus.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7dc" + } + }, + { + "text": "Great professor. Always ask for student feedback and teaches very well.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7dd" + } + }, + { + "text": "He Is a great professor, took him last semeter and wish he had more classes I could take. He is very punctual and post's all the lectures and slides online after classes making the material easy to access. He is Like a champ 4 real.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7de" + } + }, + { + "text": "This was a really hard calss but the professor was very nice and helpful, i wish i paid attention more. He even stayed after class to help me review before the exams", + "pos": 0.351, + "neu": 0.618, + "neg": 0.031, + "_id": { + "$oid": "6711d593cd60fca157e5d7df" + } + }, + { + "text": "I love this professor I would reccomend his class to anyone that really want's to learn econometrics, he is caring and loves to teach unlike some professors. I wish he had more classes i could take", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7e0" + } + }, + { + "text": "Good professor and very knowledgeable on topics that we were learning. Graded by a few things such as homeworks and exams which were not bad at all. If you attend his lecture this class should be an easy A for you His lectures are very clear and he give very good examples. He gives enough review for tests. Very caring and understanding.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7e1" + } + }, + { + "text": "I took this class thinking it woud not be as good based on the previous reviews but the class was actually fun and he tried his best to teach the class online. I definately feel that taking it inperson would have been better but the professor made the best of the situation and tought the class. I woukd take a class with him again if i needed.", + "pos": 0.238, + "neu": 0.742, + "neg": 0.02, + "_id": { + "$oid": "6711d593cd60fca157e5d7e2" + } + }, + { + "text": "This was a hard but fun class but if you failed this class, it's on you. the professor made it crystal clear what was expected of us. He provided all the resources we needed to ace the course. He even gave us extra support and guidance if we were struggling. So, if you didn't make the grade, it's time to look in the mirror and take responsibility.", + "pos": 0.139, + "neu": 0.746, + "neg": 0.114, + "_id": { + "$oid": "6711d593cd60fca157e5d7e3" + } + }, + { + "text": "Dude, let me tell you, his online econometrics class was a total blast! Despite the challenges of the online format, he really gave it his all to make it a fun and effective learning experience. I gotta say, his long lectures were something else! I don't know how he did it, but he managed to keep us hooked the entire time. RIP his cat", + "pos": 0.072, + "neu": 0.912, + "neg": 0.017, + "_id": { + "$oid": "6711d593cd60fca157e5d7e4" + } + }, + { + "text": "Prof. Raghavan Srinivasan's online econometrics class was an absolutely fantastic learning experience that exceeded all my expectations. Throughout the course, Prof. Srinivasan showcased a remarkable ability to simplify complex econometric concepts and make them accessible and engaging for students. I just wish that the class was inperson.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7e5" + } + }, + { + "text": "Literally don't take him. You won't get grades until AN HOUR before final grades are due. If he actually took the time to respond to students and respect their time, he could be a good professor. Absolutely no feedback was given for any of the homework or exams. Take literally any other professor for this course.", + "pos": 0.098, + "neu": 0.862, + "neg": 0.041, + "_id": { + "$oid": "6711d593cd60fca157e5d7e6" + } + }, + { + "text": "He does absolutely nothing. He graded everything at the end when it was time to submit grades. No communication, no comments, just a grade you don't deserve with 0 explanation. If you're considering him lemme just tell you take him if you wanna lower your gpa because he is just the worst professor.", + "pos": 0.032, + "neu": 0.825, + "neg": 0.143, + "_id": { + "$oid": "6711d593cd60fca157e5d7e7" + } + }, + { + "text": "He has a heavy Banglades accent(no offense), don't pick him if you are an ESL student. The lectures are below the standard line, you will have to read the textbook something confuse you. 6 HW, he will drop 1 bad HW. 3 exams. He will show lenients to you> If 1 exam is bad but your HWs are good shape; He will give you a good grade somehow(my example)", + "pos": 0.098, + "neu": 0.788, + "neg": 0.114, + "_id": { + "$oid": "6711d593cd60fca157e5d7e8" + } + }, + { + "text": "He had covid so we were all considerate but he barely gave us feedback on homework or exams. When he did, he rushed through it and was days late (before he got covid). He once gave us homework 2 days before it was due when it was suppose to take a week to complete(B.C19). Our midterm grades were delayed and was very difficult, things we never knew.", + "pos": 0.027, + "neu": 0.889, + "neg": 0.084, + "_id": { + "$oid": "6711d593cd60fca157e5d7e9" + } + }, + { + "text": "All you are going to learn is nothing because this professor really slacks a lot and does not do his job. He gives lots of exams without notice and curves a lot in this class. For God sakes, this is an introductory class, not a Physics class. Take the other professors for ECO 10250 they are much better than him.", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7ea" + } + }, + { + "text": "Listen, this mans curve is crazy, like I should have failed. I found his lectures confusing and unhelpful, apparently they got better later in the semester according to my peers, but i stopped going. I'm honestly grateful for the pass, and thats really all i can say.", + "pos": 0.201, + "neu": 0.668, + "neg": 0.131, + "_id": { + "$oid": "6711d593cd60fca157e5d7eb" + } + }, + { + "text": "This professor is the hardest professor I have taken ever in my life and this is an introductory class. He gives homework that he does not even mention in class, gives hard tests that take 7 hours to complete, and that is the minimal time to complete in one run. Please if you are considering taking him please don't unless you want a 2.0 GPA.", + "pos": 0.067, + "neu": 0.894, + "neg": 0.038, + "_id": { + "$oid": "6711d593cd60fca157e5d7ec" + } + }, + { + "text": "I don't even know where to start with this professor. He is a dude who gives sloppy lectures, does not give you what he tells you at the end, makes announcement at the most random time, not as available on office hours and harsh on grading. Honestly find another professor he will make this class hard for you and this is an introductory class!", + "pos": 0.044, + "neu": 0.889, + "neg": 0.067, + "_id": { + "$oid": "6711d593cd60fca157e5d7ed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d593cd60fca157e5d7ef" + }, + "professor_name": "Armel Ngamaleu", + "rating": 4.8, + "department": "Languages department", + "comments": [ + { + "text": "Professor Armel is outstanding. He ensures students grasp French thoroughly, cultivates an engaging atmosphere where students feel comfortable, and offers accessible support outside of classroom hours. His humor and approachability make learning enjoyable. With thorough exam reviews, students feel confident and prepared. This was for FRN 226, 10/10", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f0" + } + }, + { + "text": "The professor is very caring and understanding. He gives extra credit and makes sure you understand the topic and assignments that he gives out. Easy to reach out to him , he responds in good time period.\n\n10/10 would recommend", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f1" + } + }, + { + "text": "Professeur Armel is a great and funny professor who cares about his students, his so passionate about his work, he always talk about how much he enjoys teaching us. I would definitely recommend anyone that is interested in learning French to take his class. You will laugh a lot as well as learn so much:)", + "pos": 0.41, + "neu": 0.59, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f2" + } + }, + { + "text": "I took Professeur Ngamaleu for French 226. Professeur Ngamaleu is very caring and understanding. He takes his time teaching lessons to make sure we understand all topics for our tests. He gives many extra credit opportunities and is very passionate about teaching. Perfect for beginner French students!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f3" + } + }, + { + "text": "Fun and caring professor. Definitely a good time.", + "pos": 0.752, + "neu": 0.248, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f4" + } + }, + { + "text": "Professeur Ngamaleu provides a very intellectual and fun classroom experience, he answers every question and does his best to help you understand the language. He assigns interesting homework assignments and mostly gives you good grades for just trying. Would recommend for any level of French. Overall 10/10!!", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f5" + } + }, + { + "text": "Good choice for learning French for the first time. Explains clearly and gives good feedback. Very kind and very flexible. Class can make you feel a little nervous at first, but eventually you feel more comfortable. There are two oral exams, two exams and a final, as well as online homework.", + "pos": 0.28, + "neu": 0.698, + "neg": 0.023, + "_id": { + "$oid": "6711d593cd60fca157e5d7f6" + } + }, + { + "text": "great professor, highly recommend!", + "pos": 0.782, + "neu": 0.218, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f7" + } + }, + { + "text": "Very enthusiastic professor who takes his time to ensure all students understand the material.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f8" + } + }, + { + "text": "Hes a great proffesor that teaches intro french pretty well. it is a fully emerged class in french and one participates quite a lot.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7f9" + } + }, + { + "text": "Professor Ngamaleu provides a comfortable environment to teach and provide the necessary material for the course. He responds well to questions and concerns and makes sure you always understand. I recommend this class if you are a beginner in learning French as a language.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7fa" + } + }, + { + "text": "Professor Ngamaleu is a wonderful professor! He is able and willing to help, even more so when you express confusion. Now, this class isn't easy but it can be if you pay attention, ask for help and clarification, and most of all participate. Jess :)", + "pos": 0.219, + "neu": 0.692, + "neg": 0.089, + "_id": { + "$oid": "6711d593cd60fca157e5d7fb" + } + }, + { + "text": "He teaches French words during this class. It is my first time speaking French and it's not the same as English language. I was difficult understanding but I am sure some words went easy to me.", + "pos": 0.164, + "neu": 0.794, + "neg": 0.042, + "_id": { + "$oid": "6711d593cd60fca157e5d7fc" + } + }, + { + "text": "Professor Ngamalue is one of CCNY's top professors, he is extremely active (helpful) in his class and outside of class. He gives a lot of extra credit assignment and willing to go above and beyond for his students to learn French. I definitely recommend taking him as a professor.\n\nS.K", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7fd" + } + }, + { + "text": "Professor Ngamaleu is a fantastic instructor. He truly cares about his student success. He teaches you the core concepts of French. The class is fun and very interactive. By the semester's end, you will learn the basics of French and more. He uses examples to make sure you are grasping the information. I recommend his class to anyone. Crystal C.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7fe" + } + }, + { + "text": "This is a great professor and taking his class helped me prepare. He is very interactive with the class so you will participate at some point. He gives good examples and encourages you to ask questions when you don't know something. A tip I will add is that only French is encouraged he will ask you to only speak french at some point.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d593cd60fca157e5d7ff" + } + }, + { + "text": "He's a very good professor who always tried his best to help us pass as well as always there for us outside the lectures.\nHe's a very nice professor and is very kind and caring. He works very hard", + "pos": 0.407, + "neu": 0.562, + "neg": 0.031, + "_id": { + "$oid": "6711d593cd60fca157e5d800" + } + }, + { + "text": "This teacher focuses on exposure to teach the students. We go to class everyday and we can say we start learning as soon as the class starts. There is a lot of practice and a lot of opportunities for us to learn and relearn anything we are not sure about. I would recommend this teacher, he is also very funny. I feel like I did learn a lot.", + "pos": 0.142, + "neu": 0.832, + "neg": 0.026, + "_id": { + "$oid": "6711d593cd60fca157e5d801" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d594cd60fca157e5d803" + }, + "professor_name": "Jennifer Lutton", + "rating": 4.1, + "department": "Honors department", + "comments": [ + { + "text": "She is a bit disorganized but so sweet and engaging. She really wants you to participate and share your thoughts about the readings, which are long but very interesting. A few papers that are graded pretty easily. She wants you to do well. Overall Jenn is an awesome person and professor.", + "pos": 0.411, + "neu": 0.567, + "neg": 0.022, + "_id": { + "$oid": "6711d594cd60fca157e5d804" + } + }, + { + "text": "She's great! Class is very heavy on the NYC Caribbean population and there're TONS of readings (2 books, multiple journal articles) for every class. She's not very punctual about getting assignments back to us with feedback BUT you'll never have to worry about your grade as long as you actually do the work. She's super nice about extensions too!", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d805" + } + }, + { + "text": "She's an amazing professor! Super caring, considerate of people's circumstances, and passionate about the Caribbean diaspora. The readings are long, but there are no exams and the assignments are not too difficult.", + "pos": 0.336, + "neu": 0.597, + "neg": 0.067, + "_id": { + "$oid": "6711d594cd60fca157e5d806" + } + }, + { + "text": "LOTS OF READING. And she likes to discuss them in class and wants student to participate. Love the Professor, she is very ambitious about the Caribbean diaspora in NY. But the readings are SOOOO LOOONG...", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d807" + } + }, + { + "text": "Professors Lutton was an amazing Anthropology professor. Eventhough, she assigned a lot of reading and a few papers, the class itself was very easy. No tests; classes were mostly discussions. If you participate in the class and do your work there is no doubt you will get A in the class.", + "pos": 0.155, + "neu": 0.802, + "neg": 0.042, + "_id": { + "$oid": "6711d594cd60fca157e5d808" + } + }, + { + "text": "I made an account just to let you guys know that Jennifer is an absolute gem. She is one of the most caring and understanding professors you'll ever have and really puts an emphasis on understanding the concepts vs some material grade. Postpones assignments if students request it and she's one of the most caring profs at CCNY", + "pos": 0.109, + "neu": 0.858, + "neg": 0.033, + "_id": { + "$oid": "6711d594cd60fca157e5d809" + } + }, + { + "text": "Professors Lutton was great for Anthropology! Though she did assign a lot of reading and a few papers too, if you put in the right time and effort, youll be fine. No tests; classes were mostly discussions. It was also really interesting and she facilitated the class very well, encouraging participation and introducing thought-provoking ideas.", + "pos": 0.23, + "neu": 0.737, + "neg": 0.033, + "_id": { + "$oid": "6711d594cd60fca157e5d80a" + } + }, + { + "text": "If you are applying for a scholarship Jennifer will pretend to help you when she takes 3 months vacation over the summer. How long does it take for to review a draft? Apparently more then 2 months. Clearly her post should be vacated and given to someone who cares about helping students.", + "pos": 0.18, + "neu": 0.797, + "neg": 0.024, + "_id": { + "$oid": "6711d594cd60fca157e5d80b" + } + }, + { + "text": "She's super nice but she seems to be one of the most boring teachers I've had in a while. Our class only talks about Caribbean population, focused in Brooklyn and Harlem, and people who were not from that background couldn't really connect to what she was teaching us. Also, she gives 20-30 page readings PER class making it impossible to read it.", + "pos": 0.112, + "neu": 0.839, + "neg": 0.049, + "_id": { + "$oid": "6711d594cd60fca157e5d80c" + } + }, + { + "text": "You can tell she's very passionate about her subject, but the class focuses ENTIRELY on the Caribbean population. It's kinda boring, and she gives readings for EACH class that are 20 pages long as if we don't have other classes. She's super nice, but she doesn't realize that we're not all interested in the same topics as her.", + "pos": 0.163, + "neu": 0.759, + "neg": 0.077, + "_id": { + "$oid": "6711d594cd60fca157e5d80d" + } + }, + { + "text": "She's a very nice woman who knows her stuff, however, she does lecture a lot and doesn't leave much room for discussion. She also assigns a lot of reading, but if you skim it it's fine because she will talk about it again in class. She's also an easy grader but takes forever to give back papers. Just pay attention and you'll be fine.", + "pos": 0.16, + "neu": 0.817, + "neg": 0.023, + "_id": { + "$oid": "6711d594cd60fca157e5d80e" + } + }, + { + "text": "She's a great person and is very interested in her subject. However, she assumes everyone else is as passionate about the Caribbean as she is, which is clearly not the case. Expect A LOT of reading. If you want an A, you need to participate. I did well on every assignment and got a B because I didn't talk enough.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d80f" + } + }, + { + "text": "The instructor probably thought we had nothing better to do than read and learn about West Indians in New York when we had a plethora of much more important things to do. She made us do superfluous work and always asked for more. Every week she assigned essays on articles and books and made us work on a long research paper at the end.", + "pos": 0.031, + "neu": 0.932, + "neg": 0.036, + "_id": { + "$oid": "6711d594cd60fca157e5d810" + } + }, + { + "text": "Intimidating at first, but one of the nicest professors at CCNY. Very passionate about the course, which revolves around Caribbean migration, and is beyond knowledgable on the subject matter. There to talk after class or in her office if you don't fully understand an assignment. Expect readings assigned for each class. Awesome experience overall.", + "pos": 0.241, + "neu": 0.73, + "neg": 0.029, + "_id": { + "$oid": "6711d594cd60fca157e5d811" + } + }, + { + "text": "She gives a lot of assigned readings, and the final project is pretty long, but overall, she made it a very interesting class.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d812" + } + }, + { + "text": "Passionate about her research, takes her role seriously, expects you to do the work - reasonable since we're college students - and very helpful. She is straight forward and clear about the material and the work. I recommend her to the studious.", + "pos": 0.264, + "neu": 0.703, + "neg": 0.033, + "_id": { + "$oid": "6711d594cd60fca157e5d813" + } + }, + { + "text": "The best professor I've had so far!!! Easy grader but really helpful. Presents information really clearly. A lot of readings but interesting ones!", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d814" + } + }, + { + "text": "She is passionate about her research and she tries very hard to endow that interest on us. She gives a lot of reading and writing, it might be hard to believe at first, but it's really for us. She treated us like college students, and I learned a lot from her class, recommended if you're ready to a lot of work.", + "pos": 0.186, + "neu": 0.778, + "neg": 0.037, + "_id": { + "$oid": "6711d594cd60fca157e5d815" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d594cd60fca157e5d817" + }, + "professor_name": "Jhunior Morillo", + "rating": 4.8, + "department": "Biology department", + "comments": [ + { + "text": "The best TA EVER. I am a freshman so I was terrified to take BIO 101 my first semester. Jhunior genuinely cares about his kids doing well. Very knowledgeable in his work and very helpful in the lab room. Super funny as well. If you are working hard, you will be fine.", + "pos": 0.326, + "neu": 0.594, + "neg": 0.08, + "_id": { + "$oid": "6711d594cd60fca157e5d818" + } + }, + { + "text": "Unfortunately for various reasons I have had to take Bio 101, 3 times. I have had various lab TAs and Professor Morillo, is by far the best. Caring, understanding, friendly, there are so many adjectives I can use. If you're going to take this class. Take it with him.", + "pos": 0.183, + "neu": 0.776, + "neg": 0.041, + "_id": { + "$oid": "6711d594cd60fca157e5d819" + } + }, + { + "text": "There were three papers. Grammar is five points for each so go to the writing center. Lab was fun, he really likes what he does. The final lab exam was stressful, so make sure you take good notes from each lab... like the purpose of it or the purpose of things that were used. I really liked him, plus he's cute so that was a bonus.", + "pos": 0.284, + "neu": 0.676, + "neg": 0.039, + "_id": { + "$oid": "6711d594cd60fca157e5d81a" + } + }, + { + "text": "Follow the lab manual for the lab reports. He explains what he wants in the reports, so take notes on what he wants. He's really passionate about the field he is in, and it made lab fun. There were three papers and a final for lab. There are also group presentations, hopefully you have good partners. One of the best TA's I have had.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d81b" + } + }, + { + "text": "He is one of best TA for biology, he knows exactly what he is doing and he knows his martial very well, he teach you how to do the assignments and lab reports very well, try to do your work and be responsible for your assignments and he will take care of you, great guy and hilarious , I wish I can take him again, fun lecture, you will learn a lot.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d81c" + } + }, + { + "text": "He was great. I miss his class even 3 years later. He's very knowledgeable and knows what he's talking about. Gave 3 exams, final presentation, and weekly homework assignments. Not bad to look at either.", + "pos": 0.171, + "neu": 0.789, + "neg": 0.039, + "_id": { + "$oid": "6711d594cd60fca157e5d81d" + } + }, + { + "text": "I don't know why this TA has such high ratings. This lab was a tremendous amount of work and he just makes it harder. Fill in the blank quizzes at the start of EVERY single lab. Super strict with tardiness and missing lab. I think he thinks he's being funny with some of his comments but it seemed like many times he was offending people in class.", + "pos": 0.101, + "neu": 0.819, + "neg": 0.08, + "_id": { + "$oid": "6711d594cd60fca157e5d81e" + } + }, + { + "text": "Even though he is pretty young, probably the same age as the students, he was respected. He has a passion for what he teaches and is willing to clarify things if you don't understand. He gave 3 exams and no final. I could not believe how much I learned in this course by him. Highly Recommended.", + "pos": 0.176, + "neu": 0.79, + "neg": 0.034, + "_id": { + "$oid": "6711d594cd60fca157e5d81f" + } + }, + { + "text": "One of ccny's best profs. He certainly has a passion for what he teachers. He gave 3 exams and no final and a presentation. He gives extra credit and really knowledgeable. His exams are easy arena reviews before every exam. Easy A and you learn a lot of interesting things about the environment. Certainly not bad to look at either.", + "pos": 0.332, + "neu": 0.64, + "neg": 0.028, + "_id": { + "$oid": "6711d594cd60fca157e5d820" + } + }, + { + "text": "He was a down to earth professor and really cares about what he teaches. He wanted everyone to learn about the environment and was always open to questions. He gave 3 exams. No final and no midterm. Weekly 2 paragraph writings on a 10 minute video. Not hard at all. Reviews before every exam. Easy A.", + "pos": 0.119, + "neu": 0.811, + "neg": 0.07, + "_id": { + "$oid": "6711d594cd60fca157e5d821" + } + }, + { + "text": "An amazing professor. I never had such an enjoyment from taking a science class before. He is super clear, knowledgeable, fun, and keeps you interested. He makes sure each and everyone understands what is being taught and keeps the class interesting. You know he loves what he is doing!!!!!! One of the best professors I've had.", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d822" + } + }, + { + "text": "The best professor at City College! I really loved taking his class ! Super knowledgable! I highly recommend taking his class!", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d823" + } + }, + { + "text": "He's honestly been the best professor I've had in my 3 years at City College. He's very clear and knowledgable about his material. He's always willing to help his students if necessary. I recommend him 100%. This professor deserves a raise!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d824" + } + }, + { + "text": "Take him, he is the best TA in lab bio 102. He is very helpful and clear. His exams very fair and could be easy if you really understand everything and study well. Do not miss a lab or tell him your excuse of missing a lab. He cares about his students and help them to pass and gives good grades. He is the best TA I ever had.", + "pos": 0.364, + "neu": 0.612, + "neg": 0.024, + "_id": { + "$oid": "6711d594cd60fca157e5d825" + } + }, + { + "text": "Solid TA. Super smart guy, fun to be around, helpful with assignments, and generous with grading and deadlines and such. Overall, I had a great experience in the lab with Jhunior, which made up for a pretty miserable experience in the lecture hall with the actual professor. Funny.", + "pos": 0.403, + "neu": 0.551, + "neg": 0.046, + "_id": { + "$oid": "6711d594cd60fca157e5d826" + } + }, + { + "text": "an amazing tutor", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d827" + } + }, + { + "text": "He was very helpful and always made time to help me with tutoring if I needed it. Very understanding. All about getting the students to pass and giving them chances.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d828" + } + }, + { + "text": "I had him for the lab section of Bio 1004. He's a pretty cool guy and loves to help his students. I would definitely take him again!", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d594cd60fca157e5d829" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d595cd60fca157e5d82b" + }, + "professor_name": "Nian Lo", + "rating": 2.8, + "department": "Psychology department", + "comments": [ + { + "text": "boring lectures, quizzes are only 5 questions so easy to fails, she will fail u if u miss more than one class", + "pos": 0.12, + "neu": 0.545, + "neg": 0.335, + "_id": { + "$oid": "6711d595cd60fca157e5d82c" + } + }, + { + "text": "She has a heavy accent & does get confused sometimes. You have to really put in work to pass this class & I mean actually study, You cant just rely on her teaching. Im horrible at math but I made sure to go over the problems everyday and I ended up with an A! Shes super sweet. If you show her you want to understand she will help you.", + "pos": 0.204, + "neu": 0.709, + "neg": 0.087, + "_id": { + "$oid": "6711d595cd60fca157e5d82d" + } + }, + { + "text": "If I be honest with you all, I don't even know how she's a professor at CCNY. Before I took this class, I looked her up ratings were decent but she's AWFUL. She doesn't even know how to fix technical issues the app she wants us to have for the class, barely responding to emails. I'd give her a rating of 0 if I had the ability, she SUCKS", + "pos": 0.064, + "neu": 0.817, + "neg": 0.119, + "_id": { + "$oid": "6711d595cd60fca157e5d82e" + } + }, + { + "text": "Very Caring, give deadline extensions, very understanding to student's schedule. she will go over the materials as many times necessary if your having a hard time. She's a great professor. She does have a strong accent but I seem to understand her just fine. Theres alot of homework and quizzes. Give extra credit and prepare you for exam", + "pos": 0.191, + "neu": 0.791, + "neg": 0.018, + "_id": { + "$oid": "6711d595cd60fca157e5d82f" + } + }, + { + "text": "Unclear lectures. She confuses herself sometimes. Steps are unclear. Doesn't manage time well. Too many assignments/quizes/exams. You need to be a perfect student to do well in this class.", + "pos": 0.157, + "neu": 0.623, + "neg": 0.22, + "_id": { + "$oid": "6711d595cd60fca157e5d830" + } + }, + { + "text": "For anyone good at math, this will be an easy A! Professor Lo, teaches the material clearly, gives a lot of homework, 4 exams + 1 Final and lowest Exam dropped, 2 HW dropped. A quiz every class at the beginning and 2 lowest dropped. Extra credit opportunities. She cares about her students! Ask questions and participate! I loved her! Would recommend", + "pos": 0.298, + "neu": 0.638, + "neg": 0.064, + "_id": { + "$oid": "6711d595cd60fca157e5d831" + } + }, + { + "text": "One of the Worst teachers Ive ever taken so far, you would think you're getting your masters the she gives out test and grades. Also most boring teacher in this university. Beware do not take save yourself you will thank me.", + "pos": 0.051, + "neu": 0.758, + "neg": 0.191, + "_id": { + "$oid": "6711d595cd60fca157e5d832" + } + }, + { + "text": "WORST CLASS/TEACH EVER!! everyone told me PSYCH 100 would be fun so I decided to take it WRONG ! the most boring class I've ever been to not only are her classes ultra boring but so is what she teaches. REGRET ! choosing this class and professor. BEWARE OF TEST EVERY WEEK! never answers emails although she tells you to email her. heavy accent also", + "pos": 0.028, + "neu": 0.777, + "neg": 0.194, + "_id": { + "$oid": "6711d595cd60fca157e5d833" + } + }, + { + "text": "Her lecturer method is too vague for anyone to understand her heavy acsent interfere with delivery of the content too", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d595cd60fca157e5d834" + } + }, + { + "text": "Most amazing professor ever. The course was tough but she really looks after her students and wants everyone to succeed. Im glad I took her !", + "pos": 0.324, + "neu": 0.64, + "neg": 0.036, + "_id": { + "$oid": "6711d595cd60fca157e5d835" + } + }, + { + "text": "super heavy accent, which makes her very difficult to understand. you have to read this dense boring textbook. she gives a lot of quizzes and tests back to back. She runs through lectures at a very quickly. save yourself the unnecessary difficulty by taking a different professor.", + "pos": 0.13, + "neu": 0.739, + "neg": 0.132, + "_id": { + "$oid": "6711d595cd60fca157e5d836" + } + }, + { + "text": "Her tests are harder than the department final which isnt even hard to begin with. Shes a great teacher and gives extra credit throughout the semester. Her accent is pretty heavy so its hard to follow sometimes but overall would recommend.", + "pos": 0.23, + "neu": 0.742, + "neg": 0.028, + "_id": { + "$oid": "6711d595cd60fca157e5d837" + } + }, + { + "text": "She is nice but her tests are hard. Do your hw it will help your grade. She gives a few extra credit options. Must use textbook and if needed tutor. She does have a strong accent which made it hard to hear and understand in such a big room. Do not wait til end of semester to talk to her if you are worried about your grade", + "pos": 0.168, + "neu": 0.757, + "neg": 0.076, + "_id": { + "$oid": "6711d595cd60fca157e5d838" + } + }, + { + "text": "She is a perfect lecture who can teach the concepts well. She takes care all of us in the class. Gave extra credits so my grades were improved! Thanks a lot!", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d595cd60fca157e5d839" + } + }, + { + "text": "I got a A+ because she taught me well.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d595cd60fca157e5d83a" + } + }, + { + "text": "good", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d595cd60fca157e5d83b" + } + }, + { + "text": "expectations are clear. homework is a must. she is really soft spoken but is very educated on the topics. she is tough! sometimes she gets frustrated if no one wants to participate but the material is hard. 4 exams, quizzes on each chapter AND a departmental cumulative final! very hard if you don't pay attention or do the homework.", + "pos": 0.047, + "neu": 0.758, + "neg": 0.195, + "_id": { + "$oid": "6711d595cd60fca157e5d83c" + } + }, + { + "text": "Winter session class, easy enough even though she's a little soft spoken. It can get boring because of the 4 hours of learning but simple enough material. Lots of extra credit.", + "pos": 0.153, + "neu": 0.8, + "neg": 0.047, + "_id": { + "$oid": "6711d595cd60fca157e5d83d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d595cd60fca157e5d83f" + }, + "professor_name": "Carla Cappetti", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "She is very dedicated to her teachings and yes, shes a tough one. She does assign a lot of work and reading (be prepared to discuss readings). The 6 journals she requires are only 75-100 words. There is a 12+ term paper but you are aware of this paper from day 1. It is an advanced course, so expect to be put to work. STAY ORGANIZED AND PREPARED!", + "pos": 0.156, + "neu": 0.827, + "neg": 0.017, + "_id": { + "$oid": "6711d595cd60fca157e5d840" + } + }, + { + "text": "Amongst a pandemic you'd think any professor would be understanding, not Carla. She gave us a total of six journal entries each week. One term paper 10+ pages only focusing on one of the readings for the semester. Does not allow making up any missing work so if you missed it, might as well forget about it. SHE DOES NOT CARE ABOUT YOUR PERSONAL LIFE", + "pos": 0.029, + "neu": 0.814, + "neg": 0.157, + "_id": { + "$oid": "6711d595cd60fca157e5d841" + } + }, + { + "text": "Professor Cappetti is a wonderful professor. You might be shocked at first at how much work is ahead of you, but you shouldn't forget that she is training you to become a good student. Follow her instructions and you'll do great. The corpus she put together was amazing: you're likely to discover nice pearls.", + "pos": 0.319, + "neu": 0.658, + "neg": 0.023, + "_id": { + "$oid": "6711d595cd60fca157e5d842" + } + }, + { + "text": "She's a very sweet person and she's knowledgable in her work. I've had her for two separate courses, so I was able to see the different ways she taught. There are a lot of things to read, no matter which course you take of hers. She gives plenty of work to keep you occupied and wants her students to work diligently; otherwise she's upset. Enjoy!", + "pos": 0.095, + "neu": 0.854, + "neg": 0.051, + "_id": { + "$oid": "6711d595cd60fca157e5d843" + } + }, + { + "text": "I had a wonderful experience. She is definitely available and approachable for office. She even proactively contacts students who are lagging behind to ensure they get back on track. She assigns lots of work in terms of volume, but its nothing in terms of difficulty. She grades easy, and you can revise most of your stuff. I'll never forget her.", + "pos": 0.17, + "neu": 0.763, + "neg": 0.067, + "_id": { + "$oid": "6711d595cd60fca157e5d844" + } + }, + { + "text": "Lots of work mandatory online comments were ugh. professor didnt gave us feedback on these so u wonder what the point was. Hard to make appointment for office. Last day was student evaluations so she tried to bribe us by bringing food,holding a party, and inflating grades on the final paper, so obvious. I got A on my paper but so did many others.", + "pos": 0.045, + "neu": 0.887, + "neg": 0.068, + "_id": { + "$oid": "6711d595cd60fca157e5d845" + } + }, + { + "text": "The workload was demanding but still doable and worthwhile. She is a nice professor. Her lectures are clear. She knows the subject thoroughly. I recommend!", + "pos": 0.398, + "neu": 0.562, + "neg": 0.041, + "_id": { + "$oid": "6711d595cd60fca157e5d846" + } + }, + { + "text": "Know what youre getting into. She gives too much work.Before each class you have to do a book report. And after each class (within 24 hours) you have to post an analytic comment online. this was counterproductive, I feel. It took away time that we could've used for reading the material closely (and the reading for her class was intense and hard!)", + "pos": 0.021, + "neu": 0.953, + "neg": 0.027, + "_id": { + "$oid": "6711d595cd60fca157e5d847" + } + }, + { + "text": "Gives enormous amount of work - almost too much. Heavy reading. Weekly book reports. We also have to post a comment online after each class, which was a nuisance. The final assignment was a massive 10 page essay. But, on a positive note, her lectures and assignments are clear. She is really nice if you ever visit her office. You will learn a lot.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d595cd60fca157e5d848" + } + }, + { + "text": "Professor Cappetti is one of the most helpful and knowledgeable professors of American Literature. She is very passionate about literature and also very respectful of the subaltern and traditionally oppressed people.", + "pos": 0.251, + "neu": 0.672, + "neg": 0.077, + "_id": { + "$oid": "6711d595cd60fca157e5d849" + } + }, + { + "text": "In a small class, she does a very bad job getting the class involve in the class discussions. She gives boring lectures on the reading, which anyone can get that from spark notes. I advise not taking ENGL 311 (Herman Melville Studies). She grades either hard or \"wierd\". Give daily quizzes about the readings and the readings are intense.", + "pos": 0.049, + "neu": 0.835, + "neg": 0.116, + "_id": { + "$oid": "6711d595cd60fca157e5d84a" + } + }, + { + "text": "If you are not prepared to do A LOT of work, DO NOT take her class. You will be quizzed on the readings every single class and the prompts are extremely involved. However, she is amazingly bright and will force you to think. Her work is lengthly but necessary for good discussion. I got an A in her class but it required a good amount of time.", + "pos": 0.132, + "neu": 0.85, + "neg": 0.018, + "_id": { + "$oid": "6711d595cd60fca157e5d84b" + } + }, + { + "text": "This is an American Lit course- I thought personally it would be interesting but I regret signing up for it. This woman is never absent. She takes attendance 5 minutes before class begins, her accent is annoying, she gives too much reading and wastes paper on making us type notes to hand in to her. She makes me want to quit school and not write.", + "pos": 0.102, + "neu": 0.802, + "neg": 0.097, + "_id": { + "$oid": "6711d595cd60fca157e5d84c" + } + }, + { + "text": "Early American Lit undergrad & grad courses--excellent instructor--reading list is heavy, but she gives it all she's got with a Marxian edge and wants you to learn as much as possible. No dogma or rhetoric; great primary & secondary readings, great lectures & lots of writing to keep you sharp & critical. You get what you give with this professor.", + "pos": 0.155, + "neu": 0.767, + "neg": 0.079, + "_id": { + "$oid": "6711d595cd60fca157e5d84d" + } + }, + { + "text": "very easy class as long as you keep up w/ the readings", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d595cd60fca157e5d84e" + } + }, + { + "text": "First the bad. She gives tons and tons of readings and quizzes every week. Don't let it deter you if you genuinely are interested in the subject. When it comes to the final grade, she is EXTREMELY fair. Also, she is VERY helpful. I was having difficulty researching my paper and she sat with me in her office and gave me extremely helpful advice.", + "pos": 0.168, + "neu": 0.755, + "neg": 0.077, + "_id": { + "$oid": "6711d595cd60fca157e5d84f" + } + }, + { + "text": "So far she is okay. But I who added her, will be back to comment in December this is the third week of school.\r Hardest professor by far, especially on grading when you give the papers your all. She squeezes your brain like an orange trying to get all the juice out of it. I had Science along with her class and English is my thning but unfortunately, her class required more attention than science :|. I got a B, but i'm not happy with that. And if one of the required texts happens to be \"Literary Theory: An Anthology\" ...Run. That book is hell in hell. Don't say someone did not warn you.", + "pos": 0.046, + "neu": 0.804, + "neg": 0.15, + "_id": { + "$oid": "6711d595cd60fca157e5d850" + } + }, + { + "text": "She's incredibly tough. I hate those daily quizzes. And the books are not fun at all. She assigns to much reading so I didnt absorb anything at all except the fact that I dislike Dante's \"Inferno\"", + "pos": 0.0, + "neu": 0.743, + "neg": 0.257, + "_id": { + "$oid": "6711d595cd60fca157e5d851" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d596cd60fca157e5d853" + }, + "professor_name": "Susan Delamare", + "rating": 3.1, + "department": "English department", + "comments": [ + { + "text": "She discusses 2-3 assignments and all the due dates at the same time, which makes students confused about what's going on and which hw to work on. In the syllabus, even though it mentions about 4-5 major papers, be ready to have 2-3 homework each week. Good thing: grades on time and gives feedback. Had to spend too much time in her class.", + "pos": 0.083, + "neu": 0.883, + "neg": 0.034, + "_id": { + "$oid": "6711d596cd60fca157e5d854" + } + }, + { + "text": "Pay attention during class and maybe take notes about formats for citations, indentations, figures, everything. She's not good at giving strict instructions, but is strict about grading. Not a hard class, just a lot of detail oriented work. Submit drafts early so she can tell you the mistakes. Also the way she uses blackboard is clinically insane.", + "pos": 0.023, + "neu": 0.801, + "neg": 0.176, + "_id": { + "$oid": "6711d596cd60fca157e5d855" + } + }, + { + "text": "Great professor; clear grading criteria. 4-5 papers, somewhat time-consuming. Use Citation Machine to cite your sources, but double-check them. Don't worry about the other reviews, if you can type English on a college level, not plagiarize, and cite sources, you'll be fine. Submit your rough draft -> follow her feedback for a higher grade.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d596cd60fca157e5d856" + } + }, + { + "text": "Delamare class isn't difficult, but she outright ignores the countless emails addressing the lack of work done from other peers. Being that this is the case, your grade will plummet even if you've done your part.", + "pos": 0.039, + "neu": 0.822, + "neg": 0.139, + "_id": { + "$oid": "6711d596cd60fca157e5d857" + } + }, + { + "text": "She stresses the most important stuff to include in each assignment during class, so if you include those + follow the rubric as if it was the bible, she's not as harsh of a grader. When you submit draft to her, write it as if you were submitting the final b/c she'll give good, detailed feedback. Ask any questions over email (answers before 8pm)", + "pos": 0.105, + "neu": 0.852, + "neg": 0.043, + "_id": { + "$oid": "6711d596cd60fca157e5d858" + } + }, + { + "text": "Prof. Delamare is a very nice, caring person, but it is really hard to keep track of the workload. The way she uses Blackboard is extremely confusing and gives the student body a headache. The classes are meh, and it's half asynchronous. Prof gives great feedback on your writing and is always willing to help out. You need organization skills here.", + "pos": 0.183, + "neu": 0.732, + "neg": 0.085, + "_id": { + "$oid": "6711d596cd60fca157e5d859" + } + }, + { + "text": "I hated this class so much. She assigns work as if this is the only class that matters. She nitpicks every detail and reads every source. Sometimes she'll even complain about wording when nothing was wrong to begin with. She assigns a bunch of smaller assignments and quizzes. She will not negotiate with her grading unless you go to extreme lengths", + "pos": 0.054, + "neu": 0.846, + "neg": 0.099, + "_id": { + "$oid": "6711d596cd60fca157e5d85a" + } + }, + { + "text": "There are 4 small papers (1 page), 2 major papers. 1 major paper around 3 pages (rhetorical) and 1 major paper (5-6 pages). There is a group project as well. The teacher is very organized. Some classes were more interesting than others. There is a chance to redo a paper. She is a fair grader.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d596cd60fca157e5d85b" + } + }, + { + "text": "She is a decent professor. She wants you to do well and encourages students to practice their writing skills. There are 3 major papers. One is a rhetorical analysis, one is an informative and one is a collaborative group paper and presentation. Do the work and you'll be fine. But her lectures are boring and I tended to zone out.", + "pos": 0.077, + "neu": 0.877, + "neg": 0.046, + "_id": { + "$oid": "6711d596cd60fca157e5d85c" + } + }, + { + "text": "I learned a lot about writing with correct citation and using the conventions for Writing in the Sciences. There are a lot of papers, but they helped me improve my writing. The professor gives excellent feedback. Not all the lessons are interesting, but they are geared towards writing which is not always exciting.", + "pos": 0.192, + "neu": 0.755, + "neg": 0.053, + "_id": { + "$oid": "6711d596cd60fca157e5d85d" + } + }, + { + "text": "Her class is a hybrid course, which isnt a problem. Her teaching, however, is a huge obstacle. Anything that doesnt walk along the mundane line of her lesson plan leaves her in a state of bewildered distress. Gives too many menial assignments for her class to be taken seriously. Essentially, her whole class can be summed up with a 5 min video.", + "pos": 0.066, + "neu": 0.824, + "neg": 0.11, + "_id": { + "$oid": "6711d596cd60fca157e5d85e" + } + }, + { + "text": "Pr Delamare reads every source you cite for your essays. She has an ample amount of time on her hands. She is one of the teachers that likes things done her way even if its contradictory of basic science principles. You can not exaggerate anything because she actually reads all sources of your 10-page essay. She assigns a lot of homework and papers", + "pos": 0.064, + "neu": 0.9, + "neg": 0.036, + "_id": { + "$oid": "6711d596cd60fca157e5d85f" + } + }, + { + "text": "Prof Delamare rereads the entire textbook in class before she gives an assignment. There is so much homework that is just unnecessary. I was looking forward to learning more about writing in the sciences, but I have learned the exact opposite in her class. I am only taking this class because it is a requirement. I would definitely not take it again", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d596cd60fca157e5d860" + } + }, + { + "text": "Hybrid course: She does care but she gives a lot of little assignments. They do add up to your overall grade so do the work. She is very particular on the rubric word count and format! Show up do the online discussions and regular assignments by her rubrics. You will use textbook but it can be copied do not use the whole text", + "pos": 0.037, + "neu": 0.963, + "neg": 0.0, + "_id": { + "$oid": "6711d596cd60fca157e5d861" + } + }, + { + "text": "Great Professor and the class was actually fun. There are quiet a lot of papers to be submitted so I would recommend starting them early and not leaving them till last minute. Also Professor gives you great feedback on draft before submitting the final paper so you can finalize it and make it better. Overall, Professor Delamare is a solid choice!", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d596cd60fca157e5d862" + } + }, + { + "text": "Easy class as long as you do your work. She gives great feedback and alot of time to do the paper. Would take this professor again", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d596cd60fca157e5d863" + } + }, + { + "text": "Prof. Delamare gives great feedback on your drafts. Just fix those mistakes and you'll do very well. She's great. If you want a good professor that cares for you, take her.", + "pos": 0.405, + "neu": 0.539, + "neg": 0.056, + "_id": { + "$oid": "6711d596cd60fca157e5d864" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d596cd60fca157e5d866" + }, + "professor_name": "Ling LI", + "rating": 3.7, + "department": "Chemistry department", + "comments": [ + { + "text": "he is upright nightmare . exams are super hard", + "pos": 0.317, + "neu": 0.569, + "neg": 0.114, + "_id": { + "$oid": "6711d596cd60fca157e5d867" + } + }, + { + "text": "He is very knowledgeable on Organic chemistry and really wants his students to learn. Do not expect an easy class- you have to do a lot of reading a problem solving but I think that professor Li prepares us for Orgo2 quite well. It was a tough seven weeks but I will look back at it as a positive experience", + "pos": 0.14, + "neu": 0.783, + "neg": 0.077, + "_id": { + "$oid": "6711d596cd60fca157e5d868" + } + }, + { + "text": "He knows his stuff, but almost everthn was straight from the book. If you want a good grade read the book and do all the problems. No multiple choice!! 3 class exams were fair but the final(40%)was harder than department final. For the first time teaching he was ok but at least he should have a review before the exam or give detailed review sheets.", + "pos": 0.174, + "neu": 0.744, + "neg": 0.081, + "_id": { + "$oid": "6711d596cd60fca157e5d869" + } + }, + { + "text": "Difficult to understand. Grade is based solely on 3 exams and a final worth 40% of the grade. The no attendance policy demotivated some students. Uses the book as only means of info. Doesn't explain in his own words. Review sheets for tests very vague and most material not on tests. Tests are difficult and long. Nice guy, not recommended professor.", + "pos": 0.068, + "neu": 0.781, + "neg": 0.152, + "_id": { + "$oid": "6711d596cd60fca157e5d86a" + } + }, + { + "text": "Very unclear, and difficult proffessor to study for. More experienced professors set expectations very early on. He just says you are responsible for everything. This was demoralizing for many students. Others just relied on the internet and the book for understanding concepts. Even his responses via email were cryptic at best.", + "pos": 0.111, + "neu": 0.803, + "neg": 0.086, + "_id": { + "$oid": "6711d596cd60fca157e5d86b" + } + }, + { + "text": "Not the best professor, this was his 1st time teaching and they should have given him an easier class to teach. His notes were word for word from the book and he barely did any practice problems in class. He gives a review sheet but his test barely covers 2 topics. LOVES NMR stuff. hard to understand accent. exams are super hard.", + "pos": 0.177, + "neu": 0.727, + "neg": 0.096, + "_id": { + "$oid": "6711d596cd60fca157e5d86c" + } + }, + { + "text": "A good Professor. Gives outlines of what will be on the exams. His accent is sometimes hard to understand but you get used to it. He is very fair. He makes himself available for you. He wants you to pass but of your own merit. I recommend him. I got a B and I hate orgo.", + "pos": 0.179, + "neu": 0.73, + "neg": 0.091, + "_id": { + "$oid": "6711d596cd60fca157e5d86d" + } + }, + { + "text": "He is a very nice guy and very helpful. Organic Chemistry is not easy at all for me, but he advisers me to memories everything and do practice more and more. If someone wants to get a good grade in organic chemistry just do more and more practice problem and memories it.", + "pos": 0.131, + "neu": 0.775, + "neg": 0.094, + "_id": { + "$oid": "6711d596cd60fca157e5d86e" + } + }, + { + "text": "The material, exams, and pace were all very challenging (partly due to it being ORGO 1, but mostly due to it being a summer course). However, I've never learned more in a summer than I have in his class. The professor was very helpful, enthusiastic, and willing to stop for any questions. Read ahead, play with your models, and form study groups!", + "pos": 0.186, + "neu": 0.776, + "neg": 0.038, + "_id": { + "$oid": "6711d596cd60fca157e5d86f" + } + }, + { + "text": "The exams would be impossible if he didn't give us the extra time to do them. He wants his students to do well and is available to assist with any issues they have. I feel like City College could use more professors like him. Don't expect easy when you take his class", + "pos": 0.128, + "neu": 0.831, + "neg": 0.042, + "_id": { + "$oid": "6711d596cd60fca157e5d870" + } + }, + { + "text": "Very nice and helpful professors. Exams are tough though", + "pos": 0.451, + "neu": 0.439, + "neg": 0.11, + "_id": { + "$oid": "6711d596cd60fca157e5d871" + } + }, + { + "text": "his exams are hard.given the fact,its an summer course , he goes very fast and expect students to know very quick. some of his questions are hard to think. but he is helpful if have problems. we should do more problems in the review sessions. overall i would recommend him", + "pos": 0.115, + "neu": 0.741, + "neg": 0.144, + "_id": { + "$oid": "6711d596cd60fca157e5d872" + } + }, + { + "text": "He is very nice and helpful though his exams are tough. He loves the topic of spectra and questions he expects us to answer seem almost unreasonable based on the preparation provided. he does give partial credit though and he is willing to help out all students in need. Considering it's his first semester teaching he is ahead of the curve", + "pos": 0.212, + "neu": 0.768, + "neg": 0.021, + "_id": { + "$oid": "6711d596cd60fca157e5d873" + } + }, + { + "text": "Very enthusiastic. Wants students to understand the material. Has a very strong accent. Some students found this to be a problem, but if you are a good student you'll be able to decipher what he is saying. Makes himself available to students and is a lenient grader.", + "pos": 0.201, + "neu": 0.765, + "neg": 0.034, + "_id": { + "$oid": "6711d596cd60fca157e5d874" + } + }, + { + "text": "He is very nice and helpfu. He made himself also available after class via emails besides office hours. His exams are not too easy but definitely reasonable.", + "pos": 0.179, + "neu": 0.767, + "neg": 0.054, + "_id": { + "$oid": "6711d596cd60fca157e5d875" + } + }, + { + "text": "He is very nice and helpful and he is also available via emails besides office hours. The exams are not too easy but reasonable.", + "pos": 0.152, + "neu": 0.784, + "neg": 0.064, + "_id": { + "$oid": "6711d596cd60fca157e5d876" + } + }, + { + "text": "The professor is very knowledgeable.He does make himself available after the lecture which is helpful.He wants students to learn chemistry.Exams are a little hard but reasonable if you study and put the time into it.Definitely read the chapters before coming to lecture because the materials are so vast and cumulative that one can easily get lost.", + "pos": 0.052, + "neu": 0.882, + "neg": 0.067, + "_id": { + "$oid": "6711d596cd60fca157e5d877" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d597cd60fca157e5d879" + }, + "professor_name": "Stephen O' Brien", + "rating": 2.6, + "department": "Chemistry department", + "comments": [ + { + "text": "He's laid-back!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d87a" + } + }, + { + "text": "Dr. O'Brien only lectured us for 1 hour before we worked with his TAs in the lab all day. They grade the lab reports. If you do your lab reports correctly, they will be around 8-15 pages depending on the lab. He assigns a final project to each student at random. You can ask him to change which to present on. He asks many questions so be prepared.", + "pos": 0.031, + "neu": 0.969, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d87b" + } + }, + { + "text": "He's laid-back, but also very helpful, supportive, and compassionate when needed: he restructured a lot of stuff for me when I got sicker and did it with so much cheerfulness - amazing professor", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d87c" + } + }, + { + "text": "This professor is the easiest Chem 103 professor you will find. TAKE HIM !!! He drops the lowest grade, curves every test and all tests are multiple choice. If you are half decent and put in a decent amount of work, not to much, you will for sure get an A.", + "pos": 0.106, + "neu": 0.848, + "neg": 0.046, + "_id": { + "$oid": "6711d597cd60fca157e5d87d" + } + }, + { + "text": "he is a nice professor and easy you dont need to put a lot of effort into the class !!!! he curves a lot !!! he is better than average chem professors", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d87e" + } + }, + { + "text": "such a great teacher absolutely love him and super hot. He is very nice to the students and helps you out when you need help .. i was doing well in class and lab but failed the final which was 40% of our grade and got a B =)", + "pos": 0.303, + "neu": 0.628, + "neg": 0.07, + "_id": { + "$oid": "6711d597cd60fca157e5d87f" + } + }, + { + "text": "I dont know why every1 is rating obrien as a bad professor, i just had him nd he is a gr8 professor, very understanding, easy exams, which r str8 foward and str8 from the online quizes and past exams that hes given, i would reccommend him to anyone wanting to take chem 103, plus hes a good looking man, he'll answers any questions u have, TAKE HIM!!", + "pos": 0.135, + "neu": 0.82, + "neg": 0.046, + "_id": { + "$oid": "6711d597cd60fca157e5d880" + } + }, + { + "text": "This class requires alot of self study. He even saids at the beginning of the semester if u learn something from this class take the work habit of working on ur own.tat being sed ur textbook is ur prof, make sure u read n practice as many problems as possible. The books website has self quizzes he takes questions directly from there for exams.", + "pos": 0.034, + "neu": 0.925, + "neg": 0.04, + "_id": { + "$oid": "6711d597cd60fca157e5d881" + } + }, + { + "text": "Man this guy really doesn't care about lecturing. He's absent an obscene amount of time, never at his office hours, and takes a million years to answer emails. Frequently doesn't cover enough material and still tests on it. Goes off on tangents in class and seems cocky. Seems cool at first, but soon you'll see. Rely on the workshop and self study.", + "pos": 0.025, + "neu": 0.889, + "neg": 0.086, + "_id": { + "$oid": "6711d597cd60fca157e5d882" + } + }, + { + "text": "My first impression of this guy was: He is a young professor who understand the students. But after a couple of lectures and exams I realized I was completely wrong. The worst thing about him are his exams. They are unpredictable. He is willing to answer your questions from class but his exams will f**k u off. Take Kovack or Lazaridis instead.", + "pos": 0.02, + "neu": 0.83, + "neg": 0.15, + "_id": { + "$oid": "6711d597cd60fca157e5d883" + } + }, + { + "text": "W/ this professor you might be able to tweak an A if you had AP chem in HS. But, O'Brien is unclear. Very strict grader, if you don't have exactly what he wants, he takes off marks. Does allow you to ask him why he took off certain marks. I did get an A, and all I did was read the textbook. Just read read read the textbook, that's your real prof.", + "pos": 0.065, + "neu": 0.902, + "neg": 0.033, + "_id": { + "$oid": "6711d597cd60fca157e5d884" + } + }, + { + "text": "He chooses the most minor topics in the book to include in his tests. Some topics are from the CHEM 104 curriculum and we only have the chapters for the CHEM 103 in the book that was sold from the bookstore. Not fair. But does allow you to negotiate marks back on tests and explains why he takes marks off your test. Though, reasons can be ridiculous", + "pos": 0.033, + "neu": 0.9, + "neg": 0.067, + "_id": { + "$oid": "6711d597cd60fca157e5d885" + } + }, + { + "text": "Professor O'Brien is physically appealing but that's the only thing going for him. He knows his stuff but he cannot translate it to students. His tests are completely unpredictable. I taught myself from the textbook and studied my butt of for all three exams but I only managed to get a B+ for most of them. I am completely screwed for the final.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d597cd60fca157e5d886" + } + }, + { + "text": "The tests are difficult. He is not an easy grader. He focuses a lot on the terminology, and is not helpful in solving chapters problems. He finishes class early and is absent often.", + "pos": 0.0, + "neu": 0.7, + "neg": 0.3, + "_id": { + "$oid": "6711d597cd60fca157e5d887" + } + }, + { + "text": "His exams are unpredictable and tricky, sometimes hard. Don't take him. Also hard to find him during his office hours.", + "pos": 0.0, + "neu": 0.794, + "neg": 0.206, + "_id": { + "$oid": "6711d597cd60fca157e5d888" + } + }, + { + "text": "He is the worst prof. I have had so far. His test formats are very unpredictable and tricky. Students don't know what to expect on the exams. I would not recommend him unless you want to ruin your GPA.", + "pos": 0.028, + "neu": 0.721, + "neg": 0.252, + "_id": { + "$oid": "6711d597cd60fca157e5d889" + } + }, + { + "text": "The professor is very interested in teaching, but somehow his way of educating does not keep the student engaged. Ready to answer students' questions.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d88a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d597cd60fca157e5d88c" + }, + "professor_name": "Yachi Patel", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "She really explains hard materials in a way that it becomes easy to understand. Very empathetic and fair when it comes to grading. Took her for Psy 254.Taking her for neuroanatomy again.", + "pos": 0.222, + "neu": 0.734, + "neg": 0.044, + "_id": { + "$oid": "6711d597cd60fca157e5d88d" + } + }, + { + "text": "Very clear with expectations, I was her ta but have now had Prevention Psychology with her. She is absolutely amazing to have for this graduate course. 10/10", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d88e" + } + }, + { + "text": "She is very chill and understands that students have their own lives outside of college so she makes an effort to try and accommodate everyone. All the tests can be taken online, and she doesn't give homework. However, she goes through the slides fast so you don't get down all of the notes that you need but she does post the slides after class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d88f" + } + }, + { + "text": "Yachi is an amazing professor. She is very respecting and lighten ups the mood in the classroom. Has various extra credit opportunities for us, and she is a very fair professor. Definitely take her for psychology if you can, one of the brightest gems in the psychology department in my eyes.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d890" + } + }, + { + "text": "Nice lectures with good explanations!", + "pos": 0.666, + "neu": 0.334, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d891" + } + }, + { + "text": "This class was easy and professor was nice. Its very lecture heavy but I didnt pay attention to most of the class and got an A. Just make sure to copy or write the notes down before a test and quiz, and your ready. She usually posts it on blackboard. The only nuisance was attendence as she would post an attendnce question at the end of class.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d892" + } + }, + { + "text": "Her lectures are interactive. She breaks down difficult material and accommodates all her students. She's very lenient.", + "pos": 0.12, + "neu": 0.754, + "neg": 0.126, + "_id": { + "$oid": "6711d597cd60fca157e5d893" + } + }, + { + "text": "Not much I can say other than that she is a GEM. A true good human. I have not met many professors like her. She gave me advice on life and school. Take her for whatever she teaches.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d894" + } + }, + { + "text": "Yachi is such a sweetheart and so so understanding. I took her for Bio Basis of Behavior. 3 quizzes, 3 exams, 1 paper, weekly discussion boards, and in class warm-up which counts for attendance. Exams and quizzes were a bit tricky but if you ask for practice problems and pointers, she provides them.", + "pos": 0.046, + "neu": 0.87, + "neg": 0.084, + "_id": { + "$oid": "6711d597cd60fca157e5d895" + } + }, + { + "text": "I had prof Patel at FSC. She is very nice and understanding. She is very quick to grade tests, about 3 minutes after you hand it in. There is quite a lot of hw bec of a state required website. Test can get a bit tricky; lectures are straight forward.", + "pos": 0.147, + "neu": 0.824, + "neg": 0.029, + "_id": { + "$oid": "6711d597cd60fca157e5d896" + } + }, + { + "text": "I had her for experimental online and she really made everything easy to complete. She was very understanding.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d897" + } + }, + { + "text": "Professor Patel makes most classes interesting. I have taken her for 2 masters classes and I did well in both. She is very understanding and eliminates stress.", + "pos": 0.159, + "neu": 0.753, + "neg": 0.088, + "_id": { + "$oid": "6711d597cd60fca157e5d898" + } + }, + { + "text": "She cares about her students. Her lectures are not just her lecturing. They are interactive.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d899" + } + }, + { + "text": "Her advice is truly the best. She tells you more valuable information than your advisor will. Take her class!", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d89a" + } + }, + { + "text": "Yachi is awesome. She is exactly the kind of professor you need for an 8 AM class. She is patient, thorough with her lectures, provides great notes, and prepares students well for tests with her material. Studying outside of class and attendance are mandatory to do well. She is a breath of fresh air and willing to help if you approach her.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d89b" + } + }, + { + "text": "I had her for recitation class and she was amazing. She always answers emails and any questions you may have. I barely had to pay attention to the lectures. I only paid attention to her and did well on the first exam.", + "pos": 0.128, + "neu": 0.847, + "neg": 0.025, + "_id": { + "$oid": "6711d597cd60fca157e5d89c" + } + }, + { + "text": "Professor Patel cares a lot about her students. Her dedication to helping the students always made going to this class enjoyable. She takes time out on the weekends, early mornings and late evenings to help review. I wish she taught more classes. If you have the option to take her with Dr. Horvitz- DO IT!! You will not regret it.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d89d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d597cd60fca157e5d89f" + }, + "professor_name": "Sylvia Netzer", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "She is really nice, she does talk a lot sometimes and slow but her class is fun although the class was lacking materials", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8a0" + } + }, + { + "text": "Prof. Sylvia is really sweet and all but can occasionally be a bit slow. Most of the class is just working with clay & presenting them at the end of class. Shes really patient too so if you mess up she allows you to re-do them. As for assignments, there's one paper 3-5 pg & a 10min presentation (both on a ceramic artist from a list she gives us).", + "pos": 0.029, + "neu": 0.92, + "neg": 0.05, + "_id": { + "$oid": "6711d597cd60fca157e5d8a1" + } + }, + { + "text": "Sylvia is great! She is comfortable with students to talk about personal things. She can be curious about students' lives. She is a real sweetheart and is adorable. She is interesting for sure and so are the assignments, working with clay. The class was very relaxing. During making clay pieces, the class would be quiet and it is relaxing. Take it!", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8a2" + } + }, + { + "text": "She's really nice and laid back. The class itself is pretty much a small clay activity and we usually end like 30 min early. We had more time than we knew what to do with. If you want a easy class to chill and relax in, this is the one for you.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8a3" + } + }, + { + "text": "Have you ever heard of doing a collaboration in ceramics? No. She is very innovative and wants you to experience clay, not just make scholarly work. A real gem for sure.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8a4" + } + }, + { + "text": "Shes a very nice professor but honestly she does a very poor job. She really doesnt teach she only talks and talks about her personal life. You can make the most beautiful piece and if another student does a very weird piece she will favor that piece which tell me that shes to old to recognize real art from crappie art. Shes also biased.", + "pos": 0.187, + "neu": 0.694, + "neg": 0.118, + "_id": { + "$oid": "6711d597cd60fca157e5d8a5" + } + }, + { + "text": "She is the best art teacher I have ever had. She loves clay and is very passionate about her work. She is there to guide you (not direct you) in your creative endeavors and cares about your progress as an artist. If you put the extra effort into your work she will notice it.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8a6" + } + }, + { + "text": "Professor makes the class enjoyable as you feel relax during the therapeutic clay manipulation and class conversation. With practice and lab time, you can get better. Use your time wisely and have the paper in on time and all projects done by the end of the semester for an A. It's hard to fail this class. Projects r lost from poorly managed room.", + "pos": 0.152, + "neu": 0.725, + "neg": 0.124, + "_id": { + "$oid": "6711d597cd60fca157e5d8a7" + } + }, + { + "text": "Professor Sylvia Netzler is a true, working artist who teaches with passion. She gives her students freedom to explore and experiment with each new class lesson. You cannot miss a class or it will truly put you behind. A class trip to the MET is very informative - I loved it! - take notes and phone photos because paper is due after.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8a8" + } + }, + { + "text": "Okay here's the deal, she is definitely an eccentric art teacher but if you take the time to really listen to her instead of pointing out her \"oddness\" to your friends in the class you will really learn a lot about ceramics. She is very sensitive but show her kindness and respect and she will do the same for you.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8a9" + } + }, + { + "text": "She does a good job teaching beginners, but she seems to have lost her spark for art. I don?t think she is a good listener, but she like to talk about herself and some of the things she says makes me very uncomfortable. My pieces were frequently lost or damaged and I think the studio is poorly managed.", + "pos": 0.152, + "neu": 0.667, + "neg": 0.181, + "_id": { + "$oid": "6711d597cd60fca157e5d8aa" + } + }, + { + "text": "If you listen to her lecture you will get an A easy. Pay atention! For goodness sakes, Cobalt blue is purple until AFTER firing! Awesome professor if you get to know her.", + "pos": 0.256, + "neu": 0.652, + "neg": 0.092, + "_id": { + "$oid": "6711d597cd60fca157e5d8ab" + } + }, + { + "text": "i disagree with the previous person, shes nice doesnt ask for much, the class is fun , i would say she's an easy A", + "pos": 0.285, + "neu": 0.633, + "neg": 0.082, + "_id": { + "$oid": "6711d597cd60fca157e5d8ac" + } + }, + { + "text": "She sweats a lot. The class is very borring at the begining. She will make u go to the museum and write a stupid paper she would never read. If u want to get an A+ in her class do the most wier pieces u can ever imagine. She also likes to talk about her personal life in class and she doent like the students to speak any language other than english.", + "pos": 0.085, + "neu": 0.872, + "neg": 0.044, + "_id": { + "$oid": "6711d597cd60fca157e5d8ad" + } + }, + { + "text": "this is by far the most easiest class to get a A+ and believe me im lazy and i got that A+. all you got to do is a couple of pieces and make sure she sees ur doing the work and be nice to her and you got the grade", + "pos": 0.142, + "neu": 0.815, + "neg": 0.043, + "_id": { + "$oid": "6711d597cd60fca157e5d8ae" + } + }, + { + "text": "i disagree with the first person. she is really cool and she doesnot talk to herself, she talks to us, and on a level like we are her friends. she is a really nice lady. the ones who hate the course are those that don't want to show up and still want an A. so if you want a class that will relieve stress and raise your GPA, this is it.", + "pos": 0.191, + "neu": 0.69, + "neg": 0.119, + "_id": { + "$oid": "6711d597cd60fca157e5d8af" + } + }, + { + "text": "loves clay...its her life.", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d597cd60fca157e5d8b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d598cd60fca157e5d8b2" + }, + "professor_name": "Chiam Tarshish", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "the final exam questions had nothing to do with the course material taught, dont bother studying. strict deadlines. lectures were interesting enough and he wasn't rude. 1 paper, 3 exams, 1 group presentation. the paper is a 5 pg lit review, group presentation is an APA poster. focus on the paper & poster to meet the deadlines. attendance mandatory", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8b3" + } + }, + { + "text": "He's a great professor! His class was so interesting. Definitely take him! The course matter is interesting and he really makes sure we understood the material well. Highly recommend, not an easy A but doable", + "pos": 0.359, + "neu": 0.602, + "neg": 0.039, + "_id": { + "$oid": "6711d598cd60fca157e5d8b4" + } + }, + { + "text": "Take him!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8b5" + } + }, + { + "text": "While some of his lectures tend to feel lengthy and at times boring, Professor Tarshish is extremely thorough and clear, so you'll learn a lot from him. He's also very caring and considerate. But, being a textbook based course, it's really important that you read and prepare for all the 3 tests and multiple quizzes and assignments.", + "pos": 0.142, + "neu": 0.831, + "neg": 0.026, + "_id": { + "$oid": "6711d598cd60fca157e5d8b6" + } + }, + { + "text": "Tarshish is a decent professor, it's his TA that makes it difficult to pass the class. No need to pay attention in lectures, post the slides on bb. LOVE his little Susie and Bob examples! haha", + "pos": 0.181, + "neu": 0.684, + "neg": 0.135, + "_id": { + "$oid": "6711d598cd60fca157e5d8b7" + } + }, + { + "text": "Tarshish is a great professor, he is very understanding and compassionate. I would take him again if I could.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8b8" + } + }, + { + "text": "Professor Tarshish was a nice professor who listened to u if u had any complains or comments. But his class was VERY long and boring enough to put u to sleep. There were 2 long papers (12 pages each) that needed approval. There were 2 quizzes, midterm, and final. If you study the slides, you should do well or pass. U also need perfect attendance!", + "pos": 0.177, + "neu": 0.745, + "neg": 0.077, + "_id": { + "$oid": "6711d598cd60fca157e5d8b9" + } + }, + { + "text": "This is by far the worst professor in the psych department I have ever came across so far. He never grades things on time and when you do get your grades back there is no way to dispute them because it's literally right before the deadline for grades. He cares more for a couple of latenesses rather than your actual overall performance in his class", + "pos": 0.041, + "neu": 0.836, + "neg": 0.123, + "_id": { + "$oid": "6711d598cd60fca157e5d8ba" + } + }, + { + "text": "He is an experienced,competent Professor who is fair to every student.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8bb" + } + }, + { + "text": "Read the textbook because the lectures are basically repeating it. He's extremely soft spoken and monotone so his class gets boring and you get really sleepy. There were two papers and you need to get approval for the topic before you can start so it takes some time. Research papers are also long ... 12-16 pages ...", + "pos": 0.051, + "neu": 0.911, + "neg": 0.038, + "_id": { + "$oid": "6711d598cd60fca157e5d8bc" + } + }, + { + "text": "Professor is very nice and caring. 2 long research papers due 12-16 pages. Never gives back grades on times. Still waiting for grades from September homeworks. Gives lots of homework. His work is not hard, if you read the textbook the class is very easy to understand. He just never gives back work. Attendance 5% 2 quizzes 5% final 20%", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8bd" + } + }, + { + "text": "One of the best professors CCNY has. He makes use of the textbook, and he gives a review day before the test. He comes to class prepared with videos, and encourages class discussion. His test questions are all from the book, and he makes sure that the material was presented clearly.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8be" + } + }, + { + "text": "He is the best professor who can make you smarter. Don't miss an opportunity!", + "pos": 0.42, + "neu": 0.47, + "neg": 0.11, + "_id": { + "$oid": "6711d598cd60fca157e5d8bf" + } + }, + { + "text": "MR. Tarshish is a great professor who takes his time to answer student's questions about the course. He even ask you again if you understand his respond by your facial expression. He has 3 exams and a few quizzes which is straight forward. he presents power point of the courses student need to be focus on. He's just a professor that know his job.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8c0" + } + }, + { + "text": "You learn alot in his class even though the class is boring. He gives out review sheets for the midterm and final and sample essay questions which are extremely helpful because some of those essays are on the exams. study his slides, skim through the textbook, and prepare for the essays, you will do fine. midterm 40%, final 40% and 2 quizzes", + "pos": 0.074, + "neu": 0.891, + "neg": 0.035, + "_id": { + "$oid": "6711d598cd60fca157e5d8c1" + } + }, + { + "text": "If you really want to learn take his course, he is very thorough with his lectures and answers everyone's question no matter how long it is. It is a tough course but honestly you really learn a lot from the class. I am not good in science or brain anything and I learned a lot. Definitely recommended class.", + "pos": 0.164, + "neu": 0.756, + "neg": 0.08, + "_id": { + "$oid": "6711d598cd60fca157e5d8c2" + } + }, + { + "text": "Definitely not an easy course but I learned a lot! He is a friendly professor and encourages students to participate. I recommend reading before class, and pay attention. The exams are not tricky but comprehensive. He is very fair w/ grading and allows for some extra credit! You have to be really lazy to fail the class.", + "pos": 0.273, + "neu": 0.552, + "neg": 0.175, + "_id": { + "$oid": "6711d598cd60fca157e5d8c3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d598cd60fca157e5d8c5" + }, + "professor_name": "Fuad Alnajjar", + "rating": 4.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "nice professor ever met, you will learn a lot with him", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8c6" + } + }, + { + "text": "Great professor. Focuses on practical topics that are relevant in the real world. I have had job interview questions that were straight out of his lecture.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8c7" + } + }, + { + "text": "Prof. Alnajjar is a good instructor, he is very straight forward and want everyone to understand his lecture. He is very informative, very helpful and easy going.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8c8" + } + }, + { + "text": "I recommend students to take the course with him. He helps students a lot but his exams is hard. The course is well organized. I learned in this class how to do research.", + "pos": 0.168, + "neu": 0.788, + "neg": 0.043, + "_id": { + "$oid": "6711d598cd60fca157e5d8c9" + } + }, + { + "text": "not too much to say.. HE'S SIMPLY THE BEST EVER.. THE BEST CCNY TEACHER..", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8ca" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8cb" + } + }, + { + "text": "great prof.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8cc" + } + }, + { + "text": "I learned a lot of this professor. he helps students a lot but his exams are not easy.", + "pos": 0.086, + "neu": 0.765, + "neg": 0.149, + "_id": { + "$oid": "6711d598cd60fca157e5d8cd" + } + }, + { + "text": "he is the best professor in the city college. the way he explain is fantastic. he is a good grader too. his exams are not easy but u can do it.", + "pos": 0.193, + "neu": 0.759, + "neg": 0.048, + "_id": { + "$oid": "6711d598cd60fca157e5d8ce" + } + }, + { + "text": "Great Teacher, very helpful. The one thing I did not like was the amount of cheaters in this class. About 100% of the class were cheaters that causes him to constantly acknowledge that we copy and paste from old exam and homework. As a result, he dosen't curve and takes off points for ridiculous reason like giving him non-simplified fraction.", + "pos": 0.162, + "neu": 0.698, + "neg": 0.14, + "_id": { + "$oid": "6711d598cd60fca157e5d8cf" + } + }, + { + "text": "Good class and good professor", + "pos": 0.659, + "neu": 0.341, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8d0" + } + }, + { + "text": "Excellent Professor", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8d1" + } + }, + { + "text": "He is a good Professor. I learned a lot from him. I got an easy A with him. Study and prepare for his class.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d598cd60fca157e5d8d2" + } + }, + { + "text": "this guy only good to talk he will make sure that you will get a bad grade", + "pos": 0.229, + "neu": 0.617, + "neg": 0.154, + "_id": { + "$oid": "6711d598cd60fca157e5d8d3" + } + }, + { + "text": "Professor Alnajjar is a fair straight forward professor. Come to class study the materials taught in lecture, and homeworks you will do fine in the quizes, midterm, and the Final. Don't cheat. If he catches you, you're done for. He is very nice though. Just study very hard and you should be fine. No curves, so becareful.", + "pos": 0.202, + "neu": 0.739, + "neg": 0.059, + "_id": { + "$oid": "6711d598cd60fca157e5d8d4" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d598cd60fca157e5d8d5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d599cd60fca157e5d8d7" + }, + "professor_name": "Hannah Aizenman", + "rating": 3, + "department": "Computer Science department", + "comments": [ + { + "text": "Isn't a freebie but is a fair professor absolutely. Grade is mostly projects so although its a lot of work you end up learning a good amount of coding. Good intro to github as well. Lectures are easygoing. Lenient grader; good grade if prove some understanding on test and no run/compile errors on projects. Take test over group proj was 2 much work!", + "pos": 0.308, + "neu": 0.638, + "neg": 0.054, + "_id": { + "$oid": "6711d599cd60fca157e5d8d8" + } + }, + { + "text": "Professor Aizenman's lectures are confusing. Often times there would be bugs in the code she's demoing and that would lead to 15-20 minutes of waste of lecture time trying to fix it. Also, her in class assignments were confusing as there was a lack of understanding of what needs to be done and lack of starter code.", + "pos": 0.0, + "neu": 0.823, + "neg": 0.177, + "_id": { + "$oid": "6711d599cd60fca157e5d8d9" + } + }, + { + "text": "As a person she isn't bad, but as a professor she is one of the worst. Lectures are confusing. You are not kept up to date with how well you are doing in class. She does not start grading assignments until near the end. All homework are due at the end of the semester. Some assignments were really vague and didn't provide example inputs and outputs.", + "pos": 0.061, + "neu": 0.807, + "neg": 0.133, + "_id": { + "$oid": "6711d599cd60fca157e5d8da" + } + }, + { + "text": "This will be a difficult class. You have to work hard for every grade you get, and it is time consuming if you have no programming background. Be sure to ask for help if you need it, she is willing to work out your problems", + "pos": 0.095, + "neu": 0.739, + "neg": 0.167, + "_id": { + "$oid": "6711d599cd60fca157e5d8db" + } + }, + { + "text": "Hannah is one of the best teachers for CSC 102. She is very helpful and gives great feedback. She is available outside of class and willing to help with any problems you have. She is highly underrated because her tests are difficult. But if you work hard and you really care about the class you'll do well. Just don't slack off.", + "pos": 0.223, + "neu": 0.706, + "neg": 0.071, + "_id": { + "$oid": "6711d599cd60fca157e5d8dc" + } + }, + { + "text": "If you have no prior knowledge of C++, you will suffer. But, professor is understanding and cares about her students. There is an insane curve but only if you show effort and try your hardest. You will learn the most with this professor.", + "pos": 0.079, + "neu": 0.774, + "neg": 0.147, + "_id": { + "$oid": "6711d599cd60fca157e5d8dd" + } + }, + { + "text": "Take this class if you want to put effort into actually learning how to code C++. Other professors go at a slower pace, so you'll learn less with them. If you don't put effort into this class (2 hours for every hour in class), don't expect a good grade. Best professor to take for electrical engineering majors, ee259 will be very easy after this.", + "pos": 0.122, + "neu": 0.844, + "neg": 0.034, + "_id": { + "$oid": "6711d599cd60fca157e5d8de" + } + }, + { + "text": "Hannah is a good professor. Tests are hard, and for those of you who are new to C++ programming, you will struggle. The textbook is helpful, and so are her lecture slides on Blackboard (which is ESSENTIAL for this class). Homeworks make you think. Grading policy is fair. You'll learn more with Hannah than with the other CSC 102 profs.", + "pos": 0.12, + "neu": 0.825, + "neg": 0.055, + "_id": { + "$oid": "6711d599cd60fca157e5d8df" + } + }, + { + "text": "I thought Hannah was a really good professor. She makes you work for your grade but she will spend as much time as you need during and after class answering questions. If you do all the homework and ask when you don't understand something, you should be fine. Do the work and you'll learn a lot.", + "pos": 0.074, + "neu": 0.926, + "neg": 0.0, + "_id": { + "$oid": "6711d599cd60fca157e5d8e0" + } + }, + { + "text": "Her examples are bad knockoff of the textbook examples. Her tests don't test your understanding of the lessons so much as some random task that just so happens to use loops or functions. Study often, preferably with a group of classmates. HW helps a lot. The textbook is also super helpful to read on your own.", + "pos": 0.144, + "neu": 0.802, + "neg": 0.054, + "_id": { + "$oid": "6711d599cd60fca157e5d8e1" + } + }, + { + "text": "She is not clear in her lectures. The 1st exam was easy, the 2nd exam, and the final, were very very difficult. The first 5 homeworks were smooth sailing as well, but the last 4 were frustrating and very tedious, especially since she changes the autograder for homeworks 6 onwards, for reasons that are unknown to me. Tough grader.", + "pos": 0.053, + "neu": 0.806, + "neg": 0.14, + "_id": { + "$oid": "6711d599cd60fca157e5d8e2" + } + }, + { + "text": "She will help if you reach out to her. First exam was easy. The last two were soul draining. The same goes with her homework. The first five homeworks were easy. The last four were frustrating! If you are new to programming, you must be diligent in practicing c++ all throughout the semester. If you are familiar, this class may be smooth sailing", + "pos": 0.14, + "neu": 0.819, + "neg": 0.041, + "_id": { + "$oid": "6711d599cd60fca157e5d8e3" + } + }, + { + "text": "In my opinion shes really cool as a person per say, one of the nicest professors in the engineering department who actually cares for her students. but man, her tests are the killers. good luck with her. she nice but she aint easy", + "pos": 0.284, + "neu": 0.569, + "neg": 0.147, + "_id": { + "$oid": "6711d599cd60fca157e5d8e4" + } + }, + { + "text": "if you know something about cpp then maybe she is easy", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d599cd60fca157e5d8e5" + } + }, + { + "text": "I don't think she's a bad professor ,I've had a worse programming teacher in high school, but her tests are really, really hard in my opinion. I just hope she curves the final... like a lot.", + "pos": 0.158, + "neu": 0.691, + "neg": 0.151, + "_id": { + "$oid": "6711d599cd60fca157e5d8e6" + } + }, + { + "text": "She is one of the more frustrating professor's Ive ever taken. She's not malicious, but her exams are ridiculous both in content and length.", + "pos": 0.0, + "neu": 0.804, + "neg": 0.196, + "_id": { + "$oid": "6711d599cd60fca157e5d8e7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d599cd60fca157e5d8e9" + }, + "professor_name": "YingLi Tian", + "rating": 4.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Professor Tian is one of the better professors in the Electrical Engineering Department which makes learning switching system really engaging and fun. I suggest sitting in the front and going up on the board to participate. Going on the board and working out the problems with her really helps when doing the hw later. Really hard to fail!", + "pos": 0.173, + "neu": 0.713, + "neg": 0.114, + "_id": { + "$oid": "6711d599cd60fca157e5d8ea" + } + }, + { + "text": "She is probably the best teacher for Switching Systems. She takes her time covering things in class and gives tons of examples. Her exams arent bad, they are alot like the examples she gives in class and the homework she assigns. Homework is 40% of your grade too. There is no reason you shouldnt pass this class", + "pos": 0.147, + "neu": 0.819, + "neg": 0.034, + "_id": { + "$oid": "6711d599cd60fca157e5d8eb" + } + }, + { + "text": "Tina, her TA does a lot of the grading and answering questions regarding homework. Any confusion on topics and/or techniques Professor Tian will help(in class). She has online notes(very helpful). Homework counted for 40% total of the grade. Professor Tian has a slight accent but still understandable. Take her class, she is one of the best.", + "pos": 0.124, + "neu": 0.851, + "neg": 0.026, + "_id": { + "$oid": "6711d599cd60fca157e5d8ec" + } + }, + { + "text": "she is simply the best to take for ee 210", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d599cd60fca157e5d8ed" + } + }, + { + "text": "I'm not sure why she got only 3.8, but she is really an amazing professor. She explains everything till the entire class understands what's going on. She will encourage you to participate and will explain things as many times as you need. The homework she assigns are far more difficult than her exams - so if you do the homework, you will get an easy A.", + "pos": 0.174, + "neu": 0.762, + "neg": 0.065, + "_id": { + "$oid": "6711d599cd60fca157e5d8ee" + } + }, + { + "text": "The professor teaches well in class but her homework assignments are sometimes different/difficult compared to what she does in class. She will go back and take the time for anyone who asks for the help. Her midterm and final were not difficult, but if you make one propagated error, it will hurt you. Also, you should pace yourself for the exams.", + "pos": 0.108, + "neu": 0.779, + "neg": 0.113, + "_id": { + "$oid": "6711d599cd60fca157e5d8ef" + } + }, + { + "text": "She is very cool and nice. Whenever you are in trouble, she will render help (except questions showing that you are NOT read before class). You have to work on several projects.", + "pos": 0.214, + "neu": 0.717, + "neg": 0.069, + "_id": { + "$oid": "6711d599cd60fca157e5d8f0" + } + }, + { + "text": "Professor Tian is overall a good, caring professor. You can get confused sometimes however. Her TA is responsible for a majority of the grading, and he grades pretty harshly. HW is essential to this class, since it's 40%. Her midterm was definitely harder then her final. If you want to pass, read the textbook. Little to no curve, but she is fair.", + "pos": 0.197, + "neu": 0.759, + "neg": 0.045, + "_id": { + "$oid": "6711d599cd60fca157e5d8f1" + } + }, + { + "text": "Very good professor who knows how to present sophisticated subjects in a simple way.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d599cd60fca157e5d8f2" + } + }, + { + "text": "This Professor is okay. She is generous when extending homework assignments. There is a TA. He is somewhat helpful in clarifying the fundamental ideas you may not fully grasp during class. The professor does care, but definitely throws you in the water without providing several examples that help you build a fundamental understanding.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d599cd60fca157e5d8f3" + } + }, + { + "text": "Great professor, cares that students understand the material, gives a decent amount of homework (enough that you learn but not too much). She's also very nice, and her lectures are very interesting. She is a somewhat tough grader, so you have to work hard. If you are truly interested in digital electronics, this is a fantastic class.", + "pos": 0.329, + "neu": 0.632, + "neg": 0.038, + "_id": { + "$oid": "6711d599cd60fca157e5d8f4" + } + }, + { + "text": "Useless in class. She has a bad accent but she's still mostly clear when she speaks. Problem with her is that she will often contradict herself when teaching, saying one thing and then saying the opposite is true. The textbook isn't much help either. Heard she's the best teacher but she's not good. I recommend downloading an app. That's what I did.", + "pos": 0.153, + "neu": 0.617, + "neg": 0.229, + "_id": { + "$oid": "6711d599cd60fca157e5d8f5" + } + }, + { + "text": "HW is tedious & annoying & takes a lot of time to do. It's a terrible idea to do it the night before- I learned this the hard way. Exams (though not hard) require speed and abstinence from careless mistakes. One small mistake and most points are gone. It's a good idea to make a useful formula sheet. DO NOT LOSE MIDTERM'S formula sheet for final!!", + "pos": 0.122, + "neu": 0.691, + "neg": 0.187, + "_id": { + "$oid": "6711d599cd60fca157e5d8f6" + } + }, + { + "text": "Tian is the professor you want to take for EE 210. It won't be easy, and the homeworks may mentally drain you a little. But you will learn. There is one midterm, one final, and about 8 HWs (Don't wait until the last minute to do HW). She teaches well and makes the class engaging, which is good because the book may be a bit dense at times. Take her!", + "pos": 0.142, + "neu": 0.836, + "neg": 0.022, + "_id": { + "$oid": "6711d599cd60fca157e5d8f7" + } + }, + { + "text": "Overall was an easy class. She has her website where she uploads the powerpoints shown in class and has the homework assignments there. 40% of grade is based on homework so you have to do it. There's only one midterm in the first half of the semester and overall the class is easy.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d599cd60fca157e5d8f8" + } + }, + { + "text": "Each class day has it's own Powerpoint she teaches with. Whole course is outlined on her website. All notes and homeworks are online (hws require textbook). Midterm is open note (as in, your whole notes, even textbook if you want) and calculator allowed. Encourages questions and participation. Slight accent but very understandable.", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d599cd60fca157e5d8f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59acd60fca157e5d8fb" + }, + "professor_name": "Aracelli Tinajero", + "rating": 3.1, + "department": "Languages department", + "comments": [ + { + "text": "If you want an A, you need to work for it. She always will give you feedback. Feel free to ask her a question. She is always available to help. However, she is very strict. Always read any material that she gives you and be ready for discussion during class. She expects your participation in each class, so you can prove that you did your job.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d59acd60fca157e5d8fc" + } + }, + { + "text": "Prof. Tinajero is a good professor yet she is a very tough person. She tends to be sarcastic and very strict. Try not to miss class or leave early because she will mark you absent. Finally, be aware when it comes to important assignment due to the fact that she is not an easy grader.", + "pos": 0.1, + "neu": 0.78, + "neg": 0.12, + "_id": { + "$oid": "6711d59acd60fca157e5d8fd" + } + }, + { + "text": "She's an ok professor but she's extremely picky and strict. She can never be wrong, so don't argue with her. She likes to interrupt when you're talking and critiques you for the smallest things. Gives asignments for every class.", + "pos": 0.238, + "neu": 0.698, + "neg": 0.064, + "_id": { + "$oid": "6711d59acd60fca157e5d8fe" + } + }, + { + "text": "Not an easy A at all. If you do the work (every single assignment) and the extra credit and participate, you will get a decent grade. She gives a lot of feedback and handouts to help you get a good grade because she's very specific, follow those to the letter.", + "pos": 0.145, + "neu": 0.813, + "neg": 0.043, + "_id": { + "$oid": "6711d59acd60fca157e5d8ff" + } + }, + { + "text": "At first she is rather intimidating and scary; I almost dropped her class. If you want to learn Spanish and speak Spanish take her! I have no regrets! Her exams are straight forward (make sure you practice!!) and she always stayed after class to help anyone who needed it. She did her best to help so that nobody failed the class, that's a professor!", + "pos": 0.224, + "neu": 0.658, + "neg": 0.118, + "_id": { + "$oid": "6711d59acd60fca157e5d900" + } + }, + { + "text": "I've had zero interest in learning Spanish my whole life but her Intro class was my favorite course of the semester and though the class itself is tough, she definately taught me more than anyone else has ever been able to. Absolutely a great teacher to have.", + "pos": 0.212, + "neu": 0.757, + "neg": 0.031, + "_id": { + "$oid": "6711d59acd60fca157e5d901" + } + }, + { + "text": "This prof. permitted and allowed an east indian student who was trying to seduce, and impress 2 naive chickenheads to disrupt, and disrespect her class everyday for the entire semester, with his histrionics, antics, language, and carrying on and she enjoyed him doing that and he was her favored student because of that.", + "pos": 0.145, + "neu": 0.775, + "neg": 0.079, + "_id": { + "$oid": "6711d59acd60fca157e5d902" + } + }, + { + "text": "This lady (I won't bother calling her professor) is not prepared to be teaching Spanish at a master level. Besides of being rude, she is a wannabe professor. I don't hate her, I just want my money back.", + "pos": 0.144, + "neu": 0.75, + "neg": 0.106, + "_id": { + "$oid": "6711d59acd60fca157e5d903" + } + }, + { + "text": "Shes moody...But shes not the worst. I don't hate on her for talking about herself, shes proud of her accomplishments and that respectable. However you will hate having to present in her class a 20 minute presentation. However, she is ok. She has an attitude but it is tolerable,", + "pos": 0.149, + "neu": 0.807, + "neg": 0.043, + "_id": { + "$oid": "6711d59acd60fca157e5d904" + } + }, + { + "text": "Easy class, no drama, just do what you have to and you'll get a decent grade. But beware, you wont really learn much, and you'll have to stand her speeches about how wonderful and smart she is. Loves flatteresr, anyway easy class, and that's what matters.", + "pos": 0.337, + "neu": 0.637, + "neg": 0.026, + "_id": { + "$oid": "6711d59acd60fca157e5d905" + } + }, + { + "text": "Es una clase f\u00e1cil siempre y cuando no faltes y cumplas las tareas. Hay presentaciones simples y los examenes son bastante sencillos. La profesora tiene un estilo bastante particular para dar las clases, puede o no gustar, pero la verdad es que mas bien opta por dejar todo a los estudiantes, suele ser algo sarcastica.", + "pos": 0.0, + "neu": 0.923, + "neg": 0.077, + "_id": { + "$oid": "6711d59acd60fca157e5d906" + } + }, + { + "text": "She is the worst professor in the language deaprtment. She is rude to her students and is always in a bad mood. Her class is a dissaster.", + "pos": 0.0, + "neu": 0.694, + "neg": 0.306, + "_id": { + "$oid": "6711d59acd60fca157e5d907" + } + }, + { + "text": "la prof. Tinajero es muy ruda y irrespetuosa ante los alumnos durante todo el semestre. en m\u00faltiples oportunidades interrumpi\u00f3 las exposiciones de los alumnos dando comentarios fuera de lugar y haciendoles pasar un muy mal rato. Es extremadamente c\u00ednica y piesa siempre tener la raz\u00f3n. Es arbitraria.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d59acd60fca157e5d908" + } + }, + { + "text": "very strict about lateness (yours and papers). She know about literature, but not about history, which is basically this course. She is unfair, and she wants you to give comments about something that sometimes cannot be commented. Her class are kind of boring.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d59acd60fca157e5d909" + } + }, + { + "text": "She's a great professor. She knows her stuff very very well - always comes prepared. She also allows group work for final paper. You can learn a lot from her.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d59acd60fca157e5d90a" + } + }, + { + "text": "She can be kind of rude at the beginning but she is a good professor. Very picky about lateness, wants papers in on time. Classes are fun.", + "pos": 0.241, + "neu": 0.697, + "neg": 0.062, + "_id": { + "$oid": "6711d59acd60fca157e5d90b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59acd60fca157e5d90d" + }, + "professor_name": "Ranajeet (ronny) Ghose", + "rating": 2.6, + "department": "Chemistry department", + "comments": [ + { + "text": "will not learn anything run way. Do not take him if you want to learn.", + "pos": 0.085, + "neu": 0.915, + "neg": 0.0, + "_id": { + "$oid": "6711d59acd60fca157e5d90e" + } + }, + { + "text": "Doesnt care about the students. Obviously not interested in being a good teacher", + "pos": 0.163, + "neu": 0.562, + "neg": 0.275, + "_id": { + "$oid": "6711d59acd60fca157e5d90f" + } + }, + { + "text": "Rude and lazy. Can't teach what he doesn't understand. Avoid.", + "pos": 0.131, + "neu": 0.487, + "neg": 0.382, + "_id": { + "$oid": "6711d59acd60fca157e5d910" + } + }, + { + "text": "This Professor giving the lecture with accent. Is going through the reaction nicely. Not problem with understanding. One problem is that prof favorites. Giving Quizzes helpful but make exam so difficult. Personally, I do not recommend this class to take, since student hard work does not meet balanced grade from prof side. Something wrong.", + "pos": 0.158, + "neu": 0.629, + "neg": 0.214, + "_id": { + "$oid": "6711d59acd60fca157e5d911" + } + }, + { + "text": "Worst professor I ever took. Avoid his class at all costs. AVOID AT ALL COSTS. He assigns a text book that sucks. Then gives cryptic lectures. The way to ace this class is to just learn practice exams and copy them verbatim onto test note card.", + "pos": 0.0, + "neu": 0.782, + "neg": 0.218, + "_id": { + "$oid": "6711d59acd60fca157e5d912" + } + }, + { + "text": "I love this professor, he is very kind, clear, helpful and smart. I would definitely recommend him, you will learn a lot.", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d59acd60fca157e5d913" + } + }, + { + "text": "Attendance is not mandatory. All notes are on his website. Provides solutions to quiz and test on website. Simplifies difficult concepts. \"mad chill\" as a commenter said. droppes two lowest quizzes out of 4. Easy to pass. Text book is optional. Gives own notes which are provided for. Problem sets also have solutions. Very helpful. Recommend him.", + "pos": 0.17, + "neu": 0.658, + "neg": 0.171, + "_id": { + "$oid": "6711d59acd60fca157e5d914" + } + }, + { + "text": "Mad chill.", + "pos": 0.0, + "neu": 0.238, + "neg": 0.762, + "_id": { + "$oid": "6711d59acd60fca157e5d915" + } + }, + { + "text": "He sounds like he knows what he is doing completely. Thing is he solves questions in such a confusing and hard way compared to the book and other professors. Time to time he even confuses himself and the class has to correct him. He might know what he is doing but he is a very goofy, confusing, and difficult professor. Avoid if possible.", + "pos": 0.046, + "neu": 0.77, + "neg": 0.184, + "_id": { + "$oid": "6711d59acd60fca157e5d916" + } + }, + { + "text": "This is seriously the silliest class ever. He's just not a good lecturer. Avoid.", + "pos": 0.099, + "neu": 0.552, + "neg": 0.348, + "_id": { + "$oid": "6711d59acd60fca157e5d917" + } + }, + { + "text": "Got an A in 103, thought I was prepared for 104. But this guy is something else. Cant find him at his office, wont answer questions, should not be teaching. If you have him for 104 run for it.", + "pos": 0.037, + "neu": 0.963, + "neg": 0.0, + "_id": { + "$oid": "6711d59acd60fca157e5d918" + } + }, + { + "text": "This guy is so smart, and explains everything clearly until you undertand. He really wants his students to do well. When i took chem 103 i was terrify of 104 but after having Pro. Ghose it was great.", + "pos": 0.243, + "neu": 0.711, + "neg": 0.046, + "_id": { + "$oid": "6711d59acd60fca157e5d919" + } + }, + { + "text": "OMG!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d59acd60fca157e5d91a" + } + }, + { + "text": "This guy is damn smart and knows the material very well. Extremely fair exams;everything that is tested on the exams, is covered in the lectures. He should be teaching chem 330 as well. Michael Green should be sent to an elders home!", + "pos": 0.207, + "neu": 0.739, + "neg": 0.054, + "_id": { + "$oid": "6711d59acd60fca157e5d91b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d59acd60fca157e5d91c" + } + }, + { + "text": "Made such a difficult subject understandable and easy by his unique approach.", + "pos": 0.188, + "neu": 0.649, + "neg": 0.162, + "_id": { + "$oid": "6711d59acd60fca157e5d91d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59bcd60fca157e5d91f" + }, + "professor_name": "Amy Huelsman", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "The professor was often unclear/confusing as she rambles a lot, and there were times where she'd change assignment requirements last minute. Her critiques can be helpful at times, but more often than not, they were vague or she doesn't really give us any. Overall, I did not grow as an illustrator through this class, and was highly disappointed.", + "pos": 0.053, + "neu": 0.874, + "neg": 0.073, + "_id": { + "$oid": "6711d59bcd60fca157e5d920" + } + }, + { + "text": "She's a strict grader but she rambles with her instructions. So things will be unclear. She will change her mind about a project last minute. She can be demanding and sometimes it's hard meeting her criteria, she'll say \"this isn't exactly what I want\". I felt limited because she strictly wants projects to be done more in her own way than yours.", + "pos": 0.022, + "neu": 0.848, + "neg": 0.131, + "_id": { + "$oid": "6711d59bcd60fca157e5d921" + } + }, + { + "text": "Shes a great Professor who actually cares about you and your future and she really wants you to excel and be prepared for after college. She provides insightful criticism and takes the time to actually go over things breaking things down at a very nice pace and shes very patient with it. She is a Professor who really cares about her students.", + "pos": 0.241, + "neu": 0.721, + "neg": 0.038, + "_id": { + "$oid": "6711d59bcd60fca157e5d922" + } + }, + { + "text": "Professor Huelsman is a seasoned illustrator with many job titles under her belt. She always makes time for you, whether it be to talk or to learn. Her perspective on illustration leads her to give feedback on things you might overlook, whether it be good or bad. You will learn a lot about the process of illustration under her instruction.", + "pos": 0.045, + "neu": 0.901, + "neg": 0.054, + "_id": { + "$oid": "6711d59bcd60fca157e5d923" + } + }, + { + "text": "Amy is one of the best illustrators i have ever met. She gives incredible criticism and she will definitely help you improve your art skills and learn new tricks to make amazing art. She is always open to help the students and its truly amazing. I will highly recommend this professor for anyone pursuing work in illustration or any art field.", + "pos": 0.343, + "neu": 0.601, + "neg": 0.056, + "_id": { + "$oid": "6711d59bcd60fca157e5d924" + } + }, + { + "text": "AVIOD THIS PROFESSOR. Unless you enjoy boring projects with little direction, want to spend over 3 hours going over useless details and want to take a class that leaves you with no work for your portfolio. I really regret taking this class, so will you.", + "pos": 0.102, + "neu": 0.705, + "neg": 0.193, + "_id": { + "$oid": "6711d59bcd60fca157e5d925" + } + }, + { + "text": "This is a professor who constantly goes off topic during instruction to the point that she runs out of time and then asks you to stay for longer after a 3 hour class so she can finish. Work for this course is outdated, unenjoyable, and not usable for portfolio.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d926" + } + }, + { + "text": "This professor is really into illustration which is why she has strict guidelines. There were a totally of 4 projects which could be done by hand or on adobe illustrator. She also like to critique, she might sound like she doesn't like your work but knows you could do better.", + "pos": 0.169, + "neu": 0.803, + "neg": 0.028, + "_id": { + "$oid": "6711d59bcd60fca157e5d927" + } + }, + { + "text": "Great professor that gives useful feedback. She doesn't care if you can't finish the work on time, as long as you show her the process and get everything done at the end of the semester. Interesting assignments that helped me to become a better illustrator. However, there's a lot of work and have to follow the guideline carefully.", + "pos": 0.205, + "neu": 0.757, + "neg": 0.038, + "_id": { + "$oid": "6711d59bcd60fca157e5d928" + } + }, + { + "text": "Just okay.", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d929" + } + }, + { + "text": "I do not recommence taking her. She talks a lot about outside work. Wants thing her way, not always open to your own style confusing.", + "pos": 0.0, + "neu": 0.927, + "neg": 0.073, + "_id": { + "$oid": "6711d59bcd60fca157e5d92a" + } + }, + { + "text": "Very boring assignments, not good on feedbacks.", + "pos": 0.0, + "neu": 0.5, + "neg": 0.5, + "_id": { + "$oid": "6711d59bcd60fca157e5d92b" + } + }, + { + "text": "She loves what she does & transmits that energy to you. Inspires you to create and gives all the tools possible to develop your full potential. You'll use pinterest for inspiration and gives projects which you can put your own style on it. Very friendly professor and available outside class. More than class it will feel like working with friends", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d92c" + } + }, + { + "text": "Great teacher who really cares about the success of her students. She gives a lot of great feedback and is almost always available outside of class either over email or in person. One problem is that she's really confusing with her assignments and what's due but the class is overall easy once you get what's due.", + "pos": 0.204, + "neu": 0.744, + "neg": 0.052, + "_id": { + "$oid": "6711d59bcd60fca157e5d92d" + } + }, + { + "text": "AMAZINNNNG!! SHE'S AWESOME! Highly recommended! She's funny, cheering and super helpful. She gives you a lot of comments about your works and is always willing to help even outside of class. Take her, she is one of the best.", + "pos": 0.476, + "neu": 0.524, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d92e" + } + }, + { + "text": "Professor Huelsman is great, I recommend everybody to take her class. She have such a young spirit and teach her class the same way. I took her for Illustration 1 & 2. She gives you good feedback for the class and for the professional world (Jobs) and also gives you the freedom to develop your own style and voice within your projects.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d92f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59bcd60fca157e5d931" + }, + "professor_name": "Patricia Ackerman", + "rating": 4.1, + "department": "Women's Studies department", + "comments": [ + { + "text": "The class was alright and so was the professor. You have weekly blackboard posts, a midterm and a final paper with final presentations. It is an easy class to pass but you have to but in some work and dedication so if you have no thrive or interest do not take!", + "pos": 0.061, + "neu": 0.828, + "neg": 0.111, + "_id": { + "$oid": "6711d59bcd60fca157e5d932" + } + }, + { + "text": "I loved this class and it was really informative and the professor was very passionate about the lectures and the discussion boards werent diffcult to do and the only thing you have to for a final is write an 8 page research paper about your choice of women issue. also do a powerpoint but she is pretty chill just as long as you arent late.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d933" + } + }, + { + "text": "She was a very engaging professor, very witty, and informative. I definitely recommend that you take her class. You won't regret it! Participation is key and discussions can get intense but they are very eye-opening. Professor Ackerman is brilliant, caring, and funny.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d934" + } + }, + { + "text": "Very poorly prepared . Outdated. Take half hour of the class to plug in movie. Does not really responds to posts on blackboard. High school level.", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d935" + } + }, + { + "text": "Really knowledgeable, great guest speakers. She sometimes cuts you off in the middle of a sentence which can be off-putting.", + "pos": 0.228, + "neu": 0.683, + "neg": 0.088, + "_id": { + "$oid": "6711d59bcd60fca157e5d936" + } + }, + { + "text": "Where to start? She is extremely passionate about what she teaches which is great. However, her mood and attitude depends on the day. She never answers emails and if she does it's vague and one worded. Not always clear on what she wants and instructions on papers, tough grader. Work load is not excessive, she is just not clear.", + "pos": 0.115, + "neu": 0.779, + "neg": 0.107, + "_id": { + "$oid": "6711d59bcd60fca157e5d937" + } + }, + { + "text": "Professor Ackerman is passionate about what she teaches. She is inspirational, helpful, and motivational. She represents all that is about woman and woman rights. She is truly a practitioner of woman. Learnt a great deal from her, and she was even kind enough to provide the textbook free of charge online. Would recommend taking her.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d938" + } + }, + { + "text": "Awesome professor! She is so nice and caring. She gets all her students engaged!", + "pos": 0.591, + "neu": 0.409, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d939" + } + }, + { + "text": "She was an amazing professor posted the readings. I am taking her again for my Women's Studies minor. I learned so much from her. She really opened my mind. I totally recommend to take her. She is a fair grader. There are weekly reflections (about 12), a midterm, a 6 page final reflection paper, a presentation based on that paper, and a midterm.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d93a" + } + }, + { + "text": "SHE IS SO NICE BUT GRADES TOUGH", + "pos": 0.255, + "neu": 0.552, + "neg": 0.193, + "_id": { + "$oid": "6711d59bcd60fca157e5d93b" + } + }, + { + "text": "This class is VERY interesting because of Professor Ackerman! She is also very nice and helpful!!! Even though I got a B on her class, it's probably because I did bad on the midterm. weekly 1-page reflections, 5-page paper, presentation, and midterm. She cares A LOT about YOUR experiences, thoughts, opinions, and questions. Highly recommend!", + "pos": 0.243, + "neu": 0.707, + "neg": 0.05, + "_id": { + "$oid": "6711d59bcd60fca157e5d93c" + } + }, + { + "text": "Best professor I had so far! Be prepared to learn the lesson of your life. She is very politically active and one of the few rare people who still gives a SH!!! about this world. Classes were very interesting and fun: discussions about current events and relating them to the text book. I learned a lot from her, and highly recommend her to anyone!!!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d93d" + } + }, + { + "text": "I love this professor. So far one of my favorite professors in college. She is an awesome professor. Class is interesting, involved, passionate, fun, easy enough but you'll learn a lot. You'll have a reading reflection each week but it's manageable. You'll also have a final paper and group presentation.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d93e" + } + }, + { + "text": "Awesome teacher, reallllllyyyy lenient. Just show up to her class and you'll be fine. Only work is every week you have a 2 page paper reflection of the chapter due. Easy! midterm no final just presentation and 8 page paper. Easy A", + "pos": 0.269, + "neu": 0.688, + "neg": 0.042, + "_id": { + "$oid": "6711d59bcd60fca157e5d93f" + } + }, + { + "text": "cons:12 two page-long chapter reflections, 1 eight page-long research paper, doesnt go into depth; just restates material in txtbook, unstructured lessons; just her talking about current events concerning women.pros:really nice about handing said writing assignments late/extending the due date, easy midterm+no final b/c of 8pg paper.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d59bcd60fca157e5d940" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59ccd60fca157e5d942" + }, + "professor_name": ". Hansen", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "Dr. Les Hansen was a pretty cool professor. He's very clear about what he wants to see on his papers and he grades on improvement. What I did was that I would visit him on his office hours and have him look over my papers before they were due. One things he does is that he'll read someone's paper a lot and point out the good and bad.", + "pos": 0.179, + "neu": 0.777, + "neg": 0.044, + "_id": { + "$oid": "6711d59ccd60fca157e5d943" + } + }, + { + "text": "Great teacher!!! He is one of the best professors I ever had. He is very funny and might get off topic sometimes but he makes sure he covers whatever he teaches. Very strict on grammar!!! Make sure you study grammar before taking his class otherwise you will receive bad grades on your essays. If you want to learn how to write; take his class.", + "pos": 0.203, + "neu": 0.735, + "neg": 0.061, + "_id": { + "$oid": "6711d59ccd60fca157e5d944" + } + }, + { + "text": "After taking his class, I started receiving A's on all my papers - he is that good! He actually teaches grammar and makes it enjoyable. Great book selection, discussions etc One of the best professors!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d945" + } + }, + { + "text": "GREAT TEACHER!!!! got a C+ but it dosent matter. this writing class will be the last time you write in class and will be carried with u throughout your life. TAKE HIM!!! HIGHLY RECOMMEND!!!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d946" + } + }, + { + "text": "interesting, funny, smart professor. engages students and makes writing essays fun - he gives crazy topics and inspires everyone to write what they really think instead of the same old tired bs", + "pos": 0.36, + "neu": 0.524, + "neg": 0.116, + "_id": { + "$oid": "6711d59ccd60fca157e5d947" + } + }, + { + "text": "Interesting teacher, in a good way...Always a trip and definitely knows what he's doing.", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d948" + } + }, + { + "text": "he is a very interesting and good professor.very tough grader.never be late or miss an assigment.", + "pos": 0.29, + "neu": 0.565, + "neg": 0.146, + "_id": { + "$oid": "6711d59ccd60fca157e5d949" + } + }, + { + "text": "hard grader. available out of class but needs to explain better in class. spends too much class time making jokes and not enough actually teaching.", + "pos": 0.215, + "neu": 0.745, + "neg": 0.041, + "_id": { + "$oid": "6711d59ccd60fca157e5d94a" + } + }, + { + "text": "Hansen is the perfect example of what a teacher should be. You not only learn English, but you learn what's important in and outside of the class. Of course it's difficult and you won't remember everything, but it's a start. If you want to open your mind and learn, take any class with him.", + "pos": 0.101, + "neu": 0.844, + "neg": 0.055, + "_id": { + "$oid": "6711d59ccd60fca157e5d94b" + } + }, + { + "text": "He is a very funny proffessor. u learn a lot in his class. But if u r looking for a good grade than he is certainly not a good professor.", + "pos": 0.237, + "neu": 0.681, + "neg": 0.081, + "_id": { + "$oid": "6711d59ccd60fca157e5d94c" + } + }, + { + "text": "He is a very strict guy, but he is very funny. He can makes the entire class to laugh. It is very difficult to receive perfect grade from him. Even though i know i will fail my course, I learned alot and have fun to listen to his jokes.", + "pos": 0.296, + "neu": 0.586, + "neg": 0.118, + "_id": { + "$oid": "6711d59ccd60fca157e5d94d" + } + }, + { + "text": "He is a very good teacher. Although strict, you learn at the end of class how to write for the rest of your life. You'll enjoy him and I guarentee you will never sleep. He has fun whith his words and so will you after learning subordinate conjuction, appositives, and participles.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d94e" + } + }, + { + "text": "He's helpful, but strict in grading essays. You have to pay a lot of efforts to get a good grade. Lazy students: DON'T TAKE HIM!!", + "pos": 0.197, + "neu": 0.652, + "neg": 0.151, + "_id": { + "$oid": "6711d59ccd60fca157e5d94f" + } + }, + { + "text": "Funny guy, yet a bit scary at the same time. Upside: When the semester ends, you'll know how to write really good papers. Downside: Grades too hard, but that can also be a good thing...depends on how you look at it. Warning: Never EVER miss an assignment.", + "pos": 0.169, + "neu": 0.689, + "neg": 0.142, + "_id": { + "$oid": "6711d59ccd60fca157e5d950" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d59ccd60fca157e5d951" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59ccd60fca157e5d953" + }, + "professor_name": "Brent Lucia", + "rating": 4, + "department": "World Humanities department", + "comments": [ + { + "text": "I absolutely love professor lucia and his teaching methods (also helps that he's so good looking). He does an amazing job at going over/explaining readings and homework and really implements engaging of his students and the number one thing I love is that he'll always ask \"do you get that?\" and not in a belittling way but a genuine, sincere one", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d954" + } + }, + { + "text": "He cares alot about attendance. He would remind students attendance is important if students do not show up to class. The class was a hybrid course so we had to do an online portfolio. He makes due dates clear though and gives good feedback on writing assignments", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d955" + } + }, + { + "text": "All in all, Great Professor. Probably my best professor in an otherwise dull semester. I am glad that I chose to take his class. His class was the only class I felt any remorse for being late to (8am classes suck). Cares about his students' success. Gives GREAT comments on drafts to help really improve your final draft.", + "pos": 0.344, + "neu": 0.563, + "neg": 0.092, + "_id": { + "$oid": "6711d59ccd60fca157e5d956" + } + }, + { + "text": "He's so sweet and caring also very good looking. He will listen to you and classes aren't boring at all. Let's you out early most of the time too.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d957" + } + }, + { + "text": "Prof. Lucia is a great guy. He is caring and makes sure we succeed. He helped me out so much with writing for social sciences and knows his stuff. I recommend him", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d958" + } + }, + { + "text": "So hot! Hes super sweet when giving a lecture and laid back. I got As on all my paper and participated a lot. However he gave me an A- :( I dont know if he had anything against me bc I dont understand why Id get that. But still really good and great class discusions really trys to make us engaged and feel comfortable one of the best!", + "pos": 0.337, + "neu": 0.642, + "neg": 0.021, + "_id": { + "$oid": "6711d59ccd60fca157e5d959" + } + }, + { + "text": "There are a lot of books needed for this class, however, that goes for every world humanity class. He is a great professor, no finalmidterm only 3 papers and sometimes journals. There is a lot of class discussions and he respects the students. I would love to take him again! I recommend him!", + "pos": 0.214, + "neu": 0.751, + "neg": 0.034, + "_id": { + "$oid": "6711d59ccd60fca157e5d95a" + } + }, + { + "text": "He is a cool guy. As long as you did what he ask you to do and shows improvement throughout the semester, you will get an A. Avoid things he tells you not to put on your paper!!! He gives extra credit at the end of the semester. It is a pretty relaxing class, but he assign a lot of reading and response papers, which you can get by BSing.", + "pos": 0.138, + "neu": 0.841, + "neg": 0.021, + "_id": { + "$oid": "6711d59ccd60fca157e5d95b" + } + }, + { + "text": "He's cool but you need to really know what you're writing about. I feel like I deserved an A, because I was always in class, always participated, but he gave me a B plus whatever, he's not a bad teacher, you may just have to suck upp. he's cute btw", + "pos": 0.206, + "neu": 0.731, + "neg": 0.063, + "_id": { + "$oid": "6711d59ccd60fca157e5d95c" + } + }, + { + "text": "Great professor, as long as you follow what he asks for you're good to go. Got an A in his class. Attendance doesnt really matter. He has a great attitude and is relaxed.", + "pos": 0.328, + "neu": 0.642, + "neg": 0.03, + "_id": { + "$oid": "6711d59ccd60fca157e5d95d" + } + }, + { + "text": "I got a B- in his class; however, I deserved less. I did a very poor final paper yet I was somehow surprised by my grade. His class discussions are very interesting and he will never disagree on your comments so long as you can back them up with evidence. Cool guy and he's still learning as a professor too.", + "pos": 0.138, + "neu": 0.812, + "neg": 0.05, + "_id": { + "$oid": "6711d59ccd60fca157e5d95e" + } + }, + { + "text": "He is easy but it is true he grades harshly. To pass you just need to do what he says should do and avoid what he says to avoid. And he is very relaxed and with the attitude of a 16 year old.", + "pos": 0.192, + "neu": 0.704, + "neg": 0.104, + "_id": { + "$oid": "6711d59ccd60fca157e5d95f" + } + }, + { + "text": "Very little work expect two major essays. He may seem easy going but he grades harshly. When I questioned his grading he couldn't even give me an explanation on the grade I received. He does not challenge his class. Feels like I'm in junior high school. He's unorganized and doesn't seem like he knows what he is doing. His class was a waste of time.", + "pos": 0.071, + "neu": 0.803, + "neg": 0.127, + "_id": { + "$oid": "6711d59ccd60fca157e5d960" + } + }, + { + "text": "isnt he a hottie?? just attend his class and participate as much as you can...thats all it matters..", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d961" + } + }, + { + "text": "He's really cool and down to earth. He made the topics that we covered in the Man vs. Machine class very interesting and engaging. He's a great teacher, I would recommend having a class with him any day.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d962" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59ccd60fca157e5d964" + }, + "professor_name": "Damon Stanek", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "Taking a film study class with him but dislike his teaching method. I don't doubt he is a very knowledgable person, but he is very subjective. He insists on asking \"open ended\" questions but is actually seeking one particular answer, and he will dismiss all others. He is also very passive aggressive to communicate.", + "pos": 0.087, + "neu": 0.819, + "neg": 0.094, + "_id": { + "$oid": "6711d59ccd60fca157e5d965" + } + }, + { + "text": "Make no mistake Damon is fine as a beginning art history professor, but in any advanced classes he is an assassin of rest. He doesn't care about his students,his assignments are extremely vague, and immensely time consuming.", + "pos": 0.126, + "neu": 0.746, + "neg": 0.128, + "_id": { + "$oid": "6711d59ccd60fca157e5d966" + } + }, + { + "text": "Seriously so intelligent when it comes to Art. Made me love art and had be so interested during all his classes. Very clear, and pretty simple to pass, just show up and read.", + "pos": 0.377, + "neu": 0.586, + "neg": 0.037, + "_id": { + "$oid": "6711d59ccd60fca157e5d967" + } + }, + { + "text": "Explains material really well and make the class very fun. I never lost focus.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d968" + } + }, + { + "text": "I love it when Prof. Stanek brings his voluminous knowledge of music into his lectures ob art. But after all, music IS art... What a great instructor!I'll remember his teaching forever!!", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d969" + } + }, + { + "text": "The entire semester he will be the only one talking in class. He is definitely not an easy grader. He will only know like 3 students by name and not know everyone else. I did most of my work and had decent grades on my midterm and final but he only gave me a B. If you really need a art/music please try to avoid this professor.", + "pos": 0.09, + "neu": 0.849, + "neg": 0.062, + "_id": { + "$oid": "6711d59ccd60fca157e5d96a" + } + }, + { + "text": "Stanek teaches my Critical Reading and Writing II class at the New School and he is honestly one of the worst professors I have ever had. What he calls playing devil's advocate is actually just him trying to start conflicts with his students and then letting those arguments affect how he grades. DO NOT TAKE HIS CLASS.", + "pos": 0.071, + "neu": 0.756, + "neg": 0.173, + "_id": { + "$oid": "6711d59ccd60fca157e5d96b" + } + }, + { + "text": "I am now a senior but I took his class during my freshman year in 2006... My favorite Professor EVERR!!!", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d59ccd60fca157e5d96c" + } + }, + { + "text": "at first he seems very strict and scares students so they will do the work. but he is not that hard.if you study the list he gives you..you are good to go. He is a very easy grader. I was never interested in art before I took this course. Take him you wont regret it!", + "pos": 0.173, + "neu": 0.756, + "neg": 0.071, + "_id": { + "$oid": "6711d59ccd60fca157e5d96d" + } + }, + { + "text": "Yes, if u go to every class & pay attention(which is hard cuz he's coma inducing!) &study from those notes,ull do fine. BUT, if u misunderstand 1 thing, or want xtra help he will NOT help. He believes u should use your fellow students to help you answer your questions. A teacher that doesn't answer questions?!? SERIOUSLY come on!", + "pos": 0.214, + "neu": 0.67, + "neg": 0.117, + "_id": { + "$oid": "6711d59ccd60fca157e5d96e" + } + }, + { + "text": "Stanek made this my favorite all time art class. Not that I don't like art, just I find most of the art history prof. ruthlessly coma enducing. You really don't need the book if you can pay attention in class, he basically spells out what you should be comparing and contrasting in the essays. I only used the book to study the images (not the words)", + "pos": 0.043, + "neu": 0.906, + "neg": 0.05, + "_id": { + "$oid": "6711d59ccd60fca157e5d96f" + } + }, + { + "text": "He's a great professor, Just Come on Time, Do your readings before going to class, and Easy A. However, He is a tough grader. One Essay, Two test and Final. Easy. Just memorize the painting, description, date and Author. All paintings are on the book.", + "pos": 0.189, + "neu": 0.782, + "neg": 0.029, + "_id": { + "$oid": "6711d59ccd60fca157e5d970" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d59ccd60fca157e5d971" + } + }, + { + "text": "He's a good teacher. His exams are basically memorizing paintings and their dates and writing essays on comparing and contrasting two works of art. Main thing though: A LOT OF READING HAS TO BE DONE FOR THIS CLASS!!! You have to read before you come to class and after or else you will be lost. There's only two exams in his class, midterm and final.", + "pos": 0.055, + "neu": 0.912, + "neg": 0.033, + "_id": { + "$oid": "6711d59ccd60fca157e5d972" + } + }, + { + "text": "BORING. Had him for 3 hrs every Friday. I never thought I'd hate looking forward to Fridays. He's not a bad teacher... He knows what he talking about but every word that comes out of his mouth pushes you further and further into dreamland.", + "pos": 0.084, + "neu": 0.873, + "neg": 0.043, + "_id": { + "$oid": "6711d59ccd60fca157e5d973" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59dcd60fca157e5d975" + }, + "professor_name": "Daniel Puntier", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Waste of time. I sat with other students the whole semester talking about stuff not related to the class.", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d59dcd60fca157e5d976" + } + }, + { + "text": "He is awesome. One of the best professor at CCNY. he has very clear expectation from what he wants form you. he makes very easy to participate in class because he makes you feel like you want to share about yourselves and your experience. 100% recommended.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d977" + } + }, + { + "text": "Not much to say, amazing prof and cool guy. If your thinking about taking his class, DO IT!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d978" + } + }, + { + "text": "This is my second time taking Professor Puntier. He is really caring and understanding. The lectures in this class are something you can relate to and the peer mentor groups encourage you to share your thoughts with others. There are simple reading reflections every week and 2 straightforward papers. Highly recommend taking any class with Daniel!", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d979" + } + }, + { + "text": "such an understanding and caring professor! If you ever can't come, communicate with him and he'll understand. All slides are accessible on blackboard, do all the assignments and you'll get a good grade. Class talks are more conversational which is nice.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d97a" + } + }, + { + "text": "Love this professor! One thing I really appreciated about him throughout the semester was his use of online resources. He put all the slides online and even included all lecture recording at the beginning of the semester! This made it possible for me to get ahead and complete all his work without worrying about clashing with other classes.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d97b" + } + }, + { + "text": "Professor Puntier is great! His lectures are great and he always makes sure to address any questions. Just two simple reflection papers and a final paper. Easy weekly quizzes. Caring and considerate of his students. He is able to relate with his students and does his best to engage the class in discussions. Highly recommend any class with him!", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d97c" + } + }, + { + "text": "Go take him, he is the best!", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d97d" + } + }, + { + "text": "Prof Puntier's class was very interesting. He assigns weekly quizzes and 3 short writing assignments. If you read the textbook, you can get an easy A. He's very understanding and cares about his students. Do the work and you should do well.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d97e" + } + }, + { + "text": "This is my second semester in one of Professor Puntier's classes and he is honestly the best. He is very considerate and understanding when it comes to assignments and cares about how is students are doing in and out of school. I really recommend this class.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d97f" + } + }, + { + "text": "He was by far one of the best profs ive had since starting online classes. Very understanding and willing to hear students out. Also very knowledgeable and great at breaking down different theories and hard to understand concepts. Discussion posts and quizzes aren't hard and are a great way to boost your grade. I would def take him again!", + "pos": 0.238, + "neu": 0.743, + "neg": 0.02, + "_id": { + "$oid": "6711d59dcd60fca157e5d980" + } + }, + { + "text": "Take him!! He's super nice and chill, & very lenient with grading. There are weekly quizzes based on powerpoint slides so just study (super easy), weekly 1 paragraph reflections, and a final paper that's really easy. COVID-19 messed the syllabus up, so he didn't give us a final exam. He added discussion board posts which counts as participation.", + "pos": 0.271, + "neu": 0.693, + "neg": 0.036, + "_id": { + "$oid": "6711d59dcd60fca157e5d981" + } + }, + { + "text": "He's awesome ! very easy clas.", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d982" + } + }, + { + "text": "If you are considering taking him, please do! He is so chill, nice and explains the concepts clearly. He does care for his students so he is super flexible, gives easy quizzes and the final paper is actually fun to write since you get to chose what you want to do. His final is based on everything he goes over, never any surprises.", + "pos": 0.315, + "neu": 0.664, + "neg": 0.021, + "_id": { + "$oid": "6711d59dcd60fca157e5d983" + } + }, + { + "text": "he's aiiight", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d984" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59dcd60fca157e5d986" + }, + "professor_name": "Sahar Tariq", + "rating": 2.1, + "department": "Mathematics department", + "comments": [ + { + "text": "Some professors are geniuses in the subject but don't know how to effectively communicate the material to their students.\nUnfortunately, Professor Tariq is one of those protessors.", + "pos": 0.121, + "neu": 0.782, + "neg": 0.097, + "_id": { + "$oid": "6711d59dcd60fca157e5d987" + } + }, + { + "text": "Professor tariq really cares about her students. She teaches the material thoroughly and very well. If you have trouble understanding the material she is extremely helpful during office hours.", + "pos": 0.246, + "neu": 0.68, + "neg": 0.073, + "_id": { + "$oid": "6711d59dcd60fca157e5d988" + } + }, + { + "text": "Took this class for four weeks in the winter time. Not very difficult if you study and pay attention to the lectures. The course does involve a lot practice and studying on your own.", + "pos": 0.065, + "neu": 0.896, + "neg": 0.039, + "_id": { + "$oid": "6711d59dcd60fca157e5d989" + } + }, + { + "text": "Compared to the other math classes, I prefer this class. The professor is always there for office hour and helps the students understand the topic. The packets provided are very helpful and as long as you pay attention to the lectures and practice this class shouldn't be too hard to pass", + "pos": 0.126, + "neu": 0.849, + "neg": 0.025, + "_id": { + "$oid": "6711d59dcd60fca157e5d98a" + } + }, + { + "text": "Do not take this class if you want to learn/understand the material. She teaches fast and bases it on the textbook. You're better off reading the textbook yourself. The class I took was online but they made exams in person. Unfair. Our grade was based on just the exams. She seems nice but not a good teacher in my opinion.", + "pos": 0.098, + "neu": 0.796, + "neg": 0.105, + "_id": { + "$oid": "6711d59dcd60fca157e5d98b" + } + }, + { + "text": "Don't take this class. There are few tests, nothing like the practice questions, and extremely difficult. The professor seems like a nice woman but does not know how to teach. All the lectures are just copies of the textbook with no explanation. Had to drop the class, and was very disappointed.", + "pos": 0.06, + "neu": 0.72, + "neg": 0.221, + "_id": { + "$oid": "6711d59dcd60fca157e5d98c" + } + }, + { + "text": "Did not grade homework, no quizzes, extremely hard to follow in lectures, doesn't upload notes from class, grades were based off of tests (of which there were only 3 and they weren't even curved). If you need to pass this class, switch or drop early in the semester.", + "pos": 0.037, + "neu": 0.888, + "neg": 0.075, + "_id": { + "$oid": "6711d59dcd60fca157e5d98d" + } + }, + { + "text": "If you take this class\ufffd\ufffd stay safe", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d59dcd60fca157e5d98e" + } + }, + { + "text": "Professor Tariq cannot teach at ALL!!! She basically copies the textbook word for word and does not explain ANYTHING. She does not even go through the step of a new unit thoroughly and if we ask her to go back and explain so repeats exactly what she said AKA the textbook. Her tests are too blank with little to no instruction. NEVER TAKE HER CLASS!", + "pos": 0.0, + "neu": 0.954, + "neg": 0.046, + "_id": { + "$oid": "6711d59dcd60fca157e5d98f" + } + }, + { + "text": "Professor Sahar is very kind, she is definitely available during office hours and also by email. As a professor, she is not very good. Her way of teaching does not work. Everything she teaches in class are mostly from the textbook. If you want to learn, don't take her. But if you have already taken pre-calc and remember it, then take it.", + "pos": 0.082, + "neu": 0.89, + "neg": 0.028, + "_id": { + "$oid": "6711d59dcd60fca157e5d990" + } + }, + { + "text": "I already had a lot of knowledge of math from HS thus did not feel the need to have to really pay attention but the professor is not optimal for a beginner. Regurgitates the textbook and goes too slow whilst not teaching much anyways. Quizzes and exams make up the chunk of your grade. Sweet lady but no good at her job.", + "pos": 0.058, + "neu": 0.839, + "neg": 0.103, + "_id": { + "$oid": "6711d59dcd60fca157e5d991" + } + }, + { + "text": "Professor Tariq is a sweet person but an absolutely horrific professor. I learned barely anything and was completely confused all day. I ended up failing the class because the final looked like a foreign language to me. I retook it & got three letter grades higher. She cannot teach at all - if you have a chance not to have her, take it & run.", + "pos": 0.084, + "neu": 0.736, + "neg": 0.179, + "_id": { + "$oid": "6711d59dcd60fca157e5d992" + } + }, + { + "text": "As a person Prof. Tariq may not be a bad person, she's caring and nice but as a professor she's not so great. She has very poor skills of teaching. If you actually want to learn something don't take her. I definitely would not recommend.", + "pos": 0.179, + "neu": 0.608, + "neg": 0.213, + "_id": { + "$oid": "6711d59dcd60fca157e5d993" + } + }, + { + "text": "Makes you you get the material and will let you pass as long as she see's that you're trying. Understands that math doesn't come easy to everyone.", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d59dcd60fca157e5d994" + } + }, + { + "text": "The professor is not a bad person but she only teaches by rewriting what the textbook had already stated and her lectures are so boring. I can barely understand what she saying and only puts very few examples on the board that we have to do on our own.", + "pos": 0.036, + "neu": 0.888, + "neg": 0.075, + "_id": { + "$oid": "6711d59dcd60fca157e5d995" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59ecd60fca157e5d997" + }, + "professor_name": "Massimo Pigliucci", + "rating": 3.3, + "department": "Philosophy department", + "comments": [ + { + "text": "We had many interesting discussions in class and overall the class is very easy to get a good grade.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d998" + } + }, + { + "text": "If you like order and tend to dislike professors who have no lesson plan, Professor Pigluicci is a supe solid choice. Grade based on discussion boards, interesting lectures, and only two papers, also a very easy grader, cares about word count most of all. Class was always calming and predictable, and made Black Mirror that much more fun to watch.", + "pos": 0.259, + "neu": 0.677, + "neg": 0.064, + "_id": { + "$oid": "6711d59ecd60fca157e5d999" + } + }, + { + "text": "This was a fun class, very easy to do well. Just show up and write 10 discussion board posts and 2 short essays and you will do well - I honestly think he grades those based on word count. The discussions were always interesting, but it was pretty obvious that sometimes he was reading word-for-word from the textbook.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d99a" + } + }, + { + "text": "I've had Professor Pigliucci in person and virtual. Let's just say he was better in person. His classes are an easy A, however he comes off very inconsiderate when it comes to virtual learning. Not all students can show their cameras, not all students have perfect connection. Please be more considerate of this but otherwise he's a good professor.", + "pos": 0.204, + "neu": 0.765, + "neg": 0.031, + "_id": { + "$oid": "6711d59ecd60fca157e5d99b" + } + }, + { + "text": "He is veryyy laid back. Just write down notes during lectures and read the assigned chapters. There is an online midterm and final exam so its open book. Attendance isn't mandatory but the notes he gives helps with the midterm and final. Honestly it was an easy A", + "pos": 0.2, + "neu": 0.781, + "neg": 0.02, + "_id": { + "$oid": "6711d59ecd60fca157e5d99c" + } + }, + { + "text": "This man was so chill and laid back. His lectures actually help you for the midterm which is really easy. The discussions are great and insightful. Don't go to class sleepy it will not be good. He needs to give longer breaks but its not a big deal. His assignments are fun and easy. Attendance is based on you, he doesn't even take attendance but go.", + "pos": 0.193, + "neu": 0.784, + "neg": 0.022, + "_id": { + "$oid": "6711d59ecd60fca157e5d99d" + } + }, + { + "text": "Guy makes the class really boring. You don't need to show up to any of his lectures because he LITERALLY teaches from the books. He puts notes up but they are the exact ones from the books. For the midterm and final, just have the books out and you will have a good grade. He tells you to come for the final review but it DOES NOT HELP!", + "pos": 0.052, + "neu": 0.871, + "neg": 0.078, + "_id": { + "$oid": "6711d59ecd60fca157e5d99e" + } + }, + { + "text": "very boring lectures; will put you to sleep. i took him for philosophy:logical reasoning. just have the textbooks out during online exams. and make sure to do a reading response every week they're worth a lot. majority of the notes taken in lectures are useless.", + "pos": 0.083, + "neu": 0.81, + "neg": 0.107, + "_id": { + "$oid": "6711d59ecd60fca157e5d99f" + } + }, + { + "text": "just read the textbook and have it out during midterm and final (which are both online). His lectures are a bit boring. 50% of notes taken from lecture were completely useless because those parts didn't come up on the test.", + "pos": 0.0, + "neu": 0.876, + "neg": 0.124, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a0" + } + }, + { + "text": "He talks to too much and when u ask him to explain something, he literally just gives the book's definition. He doesn't know how to explain something. Also, he gives no extra credit so make sure to have those books out during the midterm and final", + "pos": 0.052, + "neu": 0.861, + "neg": 0.088, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a1" + } + }, + { + "text": "He just rambles on about stuff. Really boring class. You seriously don't even have to show up to class. He says that you should show up or else u will fail but literally all you have to do is read the two books. The notes he gives are exactly the same from the books. Just have the books out during the final", + "pos": 0.0, + "neu": 0.916, + "neg": 0.084, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a2" + } + }, + { + "text": "He is a well-known professor who makes philosophy really interesting and easy to understand.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a3" + } + }, + { + "text": "He is so nice and he made philosophy interesting. I recommend in 100% and would take that class again. Easy A", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a4" + } + }, + { + "text": "Might have been the funnest class I've taken so far. Gets you really interested in philosophy, and teaches it in a way the younger people would understand. Test are really easy too", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a5" + } + }, + { + "text": "We all need to take an intro to philosophy, so take him! He is the best teacher ever and knows how to make a boring subject not boring. He teaches philosophy in a way that is relatable to us.", + "pos": 0.144, + "neu": 0.804, + "neg": 0.051, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59ecd60fca157e5d9a8" + }, + "professor_name": "Nayanda Moore", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "She is very patient and willing to help. Also, if you work hard in essays, she will give you a very good grade even your paper may be not perfect", + "pos": 0.162, + "neu": 0.716, + "neg": 0.121, + "_id": { + "$oid": "6711d59ecd60fca157e5d9a9" + } + }, + { + "text": "She is overall a good professor, and she gives extension. Class is easy but just be cautious that if you don't follow her mixed instructions you will do bad on your work. I reached out to her but was still confused anyway. She did not make things very clear...", + "pos": 0.154, + "neu": 0.693, + "neg": 0.153, + "_id": { + "$oid": "6711d59ecd60fca157e5d9aa" + } + }, + { + "text": "She is such an awesome professor. I never knew how good I can write, until I enrolled into her class. I would take her 10 times over if I had to.", + "pos": 0.115, + "neu": 0.817, + "neg": 0.068, + "_id": { + "$oid": "6711d59ecd60fca157e5d9ab" + } + }, + { + "text": "Professor Moore was a caring and loving teacher you write about your life stories. She gives good feedback on all your essay I didn't like to write at all but with her encouragement, she really brought the best out of me and I would definitely take her class again. I.m able to express myself more through my writing", + "pos": 0.275, + "neu": 0.703, + "neg": 0.021, + "_id": { + "$oid": "6711d59ecd60fca157e5d9ac" + } + }, + { + "text": "Awesome class. Excellent professor. You will love her", + "pos": 0.706, + "neu": 0.294, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9ad" + } + }, + { + "text": "Professor Moore is a great person. We had a weekly essay that was around 2-3 pages and then we had three papers that were around 5-6 pages. Her prompts were interesting, with a few of them focused on change. She shows some tough love and she is very honest. When you are successful she is very proud. I would love to be in her class again.", + "pos": 0.328, + "neu": 0.655, + "neg": 0.017, + "_id": { + "$oid": "6711d59ecd60fca157e5d9ae" + } + }, + { + "text": "She is amazing!! I dont like to write but her prompts made me a better writer. She is clear with her grading and makes the class more comfortable for those of us who dont usually writes. Stay on top of your essays!", + "pos": 0.319, + "neu": 0.653, + "neg": 0.028, + "_id": { + "$oid": "6711d59ecd60fca157e5d9af" + } + }, + { + "text": "Real diamond in the rough. I love her teaching style, so unique. You will laugh. You will cry. You will WRITE. I re-awoken my love of writing with her interesting Prompts. She will work with you if you reach out to her. My class this past semester was just as amazing. Not an Easy A. But She explains EVERYTHING in detail, so it's impossible to fail", + "pos": 0.184, + "neu": 0.709, + "neg": 0.108, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b0" + } + }, + { + "text": "Ms, Moore is a doll. I Love how she is so passionate about her work. she cares about her students and gives great advice and feedback on papers. expects us to be awesome writers and that is what I love about her.", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b1" + } + }, + { + "text": "This Course is all about papers and It is mandatory to write all of the essays assigned. Professor Moore was my best experience at CWE she is truly amazing. A wonderful, and caring person who shares great ideas about writing, how to write, and writing improvements. I will never forget her great energy and passion. She is just WOW!!!!!!!", + "pos": 0.454, + "neu": 0.509, + "neg": 0.037, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b2" + } + }, + { + "text": "Where do I begin to describe Ms. Nayanda. She is so incredible. I started this class thinking it was going to be your typical writing class but no. This class was much more. I've discovered so much about myself through my writing and learned to dream big. This class was therapeutic and felt like a place where I wanted to be all the time. SHE ROCKS!", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b3" + } + }, + { + "text": "Professor Moore is a great teacher. I have enjoyed each one of her classes. Yes there is a lot of paper but because of the way she teaches classes and gives assignment I love writing her papers. You will not regret taking her class.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b4" + } + }, + { + "text": "Awesome professors, I would take her again if I could but she only teacher The Essay which is great. All the papers you write are about your life experiences. Which is easy. Every paper is due in two weeks but you will find yourself giving something in every week. Only thing is you gotta write a book as your final but it's all the essays you wrote.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b5" + } + }, + { + "text": "She is not your usual professor. She uses her heart when she works. She is kind and listens to your needs. She goes by the book, but she does it gracefully. She expects you to be great writers and after taking her, you will be. She makes you feel more than a student. Love her! Would jump to have a chance to take her class again. She's GREAT!", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b6" + } + }, + { + "text": "Great professor! Very understanding and clear when it comes to what she wants. Her assignments were fair and reasonable. She's also very encouraging when it comes to writing and she's looking out for her student's success. She is there when you need her and she responds to emails quickly. Really nice class, I would take her class again.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d59ecd60fca157e5d9b7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59fcd60fca157e5d9b9" + }, + "professor_name": "Lynn Foster", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "this professor is very Awesome and understand your difficulty if you don't understand the assignment ask her she will explaining to you very clearly. if i can i will definitely take her class again!!!!!!!!", + "pos": 0.258, + "neu": 0.687, + "neg": 0.055, + "_id": { + "$oid": "6711d59fcd60fca157e5d9ba" + } + }, + { + "text": "Her class was awful, almost half of the time in class viewing students work, and the other half watching videos. She has no teaching skills at all, I havent learned a lot from her. Worse, she clearly has a preference for some students. I wont take her class again.", + "pos": 0.048, + "neu": 0.804, + "neg": 0.148, + "_id": { + "$oid": "6711d59fcd60fca157e5d9bb" + } + }, + { + "text": "If you ever want to meet a professor that would open your eyes to not only the art world but to how amazing you can be as an individual, Foster is certainly that professor. Nothing but positives to say about this class, always a joy to participate in and learn", + "pos": 0.231, + "neu": 0.711, + "neg": 0.058, + "_id": { + "$oid": "6711d59fcd60fca157e5d9bc" + } + }, + { + "text": "Absolutely loved her class. She's very easy to approach and talk to about anything. You'll learn Photoshop and a bit of Illustrator, with a basic animation. Her assignments are interesting and were fun to do. Be creative! You'll have a lot of time to finish work. She gives a week to brainstorm and draft, then final pieces are due the week after.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9bd" + } + }, + { + "text": "I took Foster for 2 d imaging and illustration this semester. This class is not a a class in software but your level of understanding is taken into consideration. Foster gives assignments that are planned to get you to understand different parts of the software.. I came away with a different way of seeing how I can use computer software in my art.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9be" + } + }, + { + "text": "She encouraged us to be creative. She was very nice and respectful to students during critique. I had no experience in watercolor before, but I learned a lot from her class. One of my favorite professors at CCNY!", + "pos": 0.266, + "neu": 0.699, + "neg": 0.035, + "_id": { + "$oid": "6711d59fcd60fca157e5d9bf" + } + }, + { + "text": "Professor Fosters Beginning I class was one of my favorite classes. She gives honest feedback during critiques and wants you to give her your best. I took this class thinking it would be only about drawing and painting. I have learned how to come up with ideas.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c0" + } + }, + { + "text": "She is one of my favorite professor. I would recommend her to anyone who is taking Art 295. She is clear on instructions, made the class actually interesting and fun. You can learn a lot from the class and have your assignments done weekly.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c1" + } + }, + { + "text": "She is a great professor. She encourages students to do their best and and be their best. She is tough but fair. She knows her stuff. I reap act her critiques because she is trying to make me a better artist . She points me in a direction and then let's me go .", + "pos": 0.255, + "neu": 0.726, + "neg": 0.019, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c2" + } + }, + { + "text": "I am a design student and I took 2D Imaging with her and I have to say, I havent learn a lot from her. She has poor teaching skills, she will talk about something and few words in and she will start a new topic. She will give out the assignment and say its due in 2 weeks, any questionss. She will not explain in detail.", + "pos": 0.0, + "neu": 0.954, + "neg": 0.046, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c3" + } + }, + { + "text": "Great professor who encourages students to push themselves. She may seem easy going but if you want an A you must work hard, complete work on time and never miss class. Wait to buy supplies until you need them for an assignment.", + "pos": 0.203, + "neu": 0.763, + "neg": 0.034, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c4" + } + }, + { + "text": "If it wasnt for my fella student i would not even know how to copy and paste in photoshop. I really did not learn much from her, i learned a lot more from you tube. If you have no idea about the program dont expect her to teach you, bc she wont. She is pretty flexible with attendance but be careful at the end with portfolios. Good Luck!", + "pos": 0.149, + "neu": 0.806, + "neg": 0.044, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c5" + } + }, + { + "text": "My favorite professor!...she's very cool and friendly, her class is a lot of fun and she's an easy grader, no pressure just do the assignments, you'll be fine.", + "pos": 0.478, + "neu": 0.522, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c6" + } + }, + { + "text": "easy class, but u will not learn much, i was highly dissapointed, and not challenged at all. the only good thing is you get to work on different mediums, and have fun trips.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c7" + } + }, + { + "text": "This is one of those teachers who wants her students to learn and grow and to do that you have to work. This teacher is fair, and pushes her students forward. From critique to visiting studios and museums and working in different mediums this teacher is solid and a true artists. It is a pleasure to have to work as hard as this clas demands.", + "pos": 0.145, + "neu": 0.836, + "neg": 0.019, + "_id": { + "$oid": "6711d59fcd60fca157e5d9c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d59fcd60fca157e5d9ca" + }, + "professor_name": "Priya Patel", + "rating": 3.4, + "department": "Psychology department", + "comments": [ + { + "text": "a nice person, but a horrible professor. her class is extremely disorganized.", + "pos": 0.101, + "neu": 0.476, + "neg": 0.423, + "_id": { + "$oid": "6711d59fcd60fca157e5d9cb" + } + }, + { + "text": "Easy A without a doubt. This is my second time taking a class with her and my second time getting an A. Just come to class and raise your hand every now and there. Some students don't like her cause they're just lazy to do the work. She gives extra credit and says whats on exams. You'll learn and ace this class.", + "pos": 0.151, + "neu": 0.784, + "neg": 0.065, + "_id": { + "$oid": "6711d59fcd60fca157e5d9cc" + } + }, + { + "text": "This prof is useless, she complains alot and unable to teach. She gave extra attentions to students who know her. Talks about irrelevant facts during lectures that students cannot comprehend how her teaching goes from one thing to another. She is mean-spirited although you won't know it until she gets you.", + "pos": 0.0, + "neu": 0.901, + "neg": 0.099, + "_id": { + "$oid": "6711d59fcd60fca157e5d9cd" + } + }, + { + "text": "Makes u read most of the chapters. she basically gets all her ques from the book so you must READ. its all multiple choice ques n theres one paper due and you get to chose the topic, overall interesting class. she takes attendance and theres a group slide show due at the end of the semester. she complains a lot but who wouldn't, schools tough", + "pos": 0.051, + "neu": 0.923, + "neg": 0.027, + "_id": { + "$oid": "6711d59fcd60fca157e5d9ce" + } + }, + { + "text": "just not focused on helping the student.", + "pos": 0.0, + "neu": 0.551, + "neg": 0.449, + "_id": { + "$oid": "6711d59fcd60fca157e5d9cf" + } + }, + { + "text": "she can be a pain at times and complains she's always stressed. she's a good prof and gives great examples. her simple explanations makes text material easier to understand. If you read the text u'll get an A.", + "pos": 0.196, + "neu": 0.639, + "neg": 0.166, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d0" + } + }, + { + "text": "Material was complex so you really had to keep up with the readings which was what the quizzes and exams were based on. Patel was an outstanding prof. She was really down to earth, easily approachable not to mention HOT and ridiculously intelligent. Highly recommended. However, if you don't want to do the work, don't take as you will not pass.", + "pos": 0.164, + "neu": 0.784, + "neg": 0.052, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d1" + } + }, + { + "text": "took 2 of her courses-turns out same material was covered in both;easy A. she gets upset if she thinks u r only taking her for the easiness so pretend u r interested & that she is actually challenging u. she can get a bit testy & is a bit self-absorbed but who cares cause you will leave with the A unless she thinks u find her easy, then its a C+", + "pos": 0.159, + "neu": 0.784, + "neg": 0.056, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d2" + } + }, + { + "text": "i read the book, did the work, and still got a bad grade. don't know why. she is nice, but not that nice.", + "pos": 0.07, + "neu": 0.737, + "neg": 0.193, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d3" + } + }, + { + "text": "There are surprise questions on Final Exam. If you take good notes than you'll receive an easy A. If you're absent get the notes from a friend.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d4" + } + }, + { + "text": "This class is very interesting to take and the professor makes it more interesting and not too tedious, because there is a lot of infor. This class is an easy A if you go to class and take notes, don't even have to read the book.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d5" + } + }, + { + "text": "Ms. Patel is a wonderful professor. She is very passionate about the subject. Just do the readings and it's an easy A!", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d6" + } + }, + { + "text": "She is awesome,i'm taking her again in the summer...She has a lot of work to do on her own so she may be apathetic at times but overall great! 4 tests, fair grader and also a stupid presentation. JUST READ THE BOOK and A is guaranteed", + "pos": 0.156, + "neu": 0.736, + "neg": 0.109, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d7" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d59fcd60fca157e5d9d8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a0cd60fca157e5d9da" + }, + "professor_name": "Edward Grossman", + "rating": 4.3, + "department": "Mathematics department", + "comments": [ + { + "text": "Very nice guy who explains material very clearly and precisely.", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9db" + } + }, + { + "text": "Really good math professor! Although sometimes, he goes off topic and teaches things that is not required for the course. Other than that, he's a wonderful math professor. Could be a strict grader with his tests but he teaches the material very good. The only bad thing is that I felt unprepared for the final exam, it may just because of me..", + "pos": 0.126, + "neu": 0.808, + "neg": 0.066, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9dc" + } + }, + { + "text": "Extraordinary human being", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9dd" + } + }, + { + "text": "Grossman has a thorough understanding of that material AND the ability to clearly communicate his understanding, which is such a rare quality among math teachers. Exams are pretty fair, he gives practice tests. He's also compassionate which is very hard to find. He takes effort into account! He also gives extra points if you do h/w! Great prof.", + "pos": 0.259, + "neu": 0.718, + "neg": 0.024, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9de" + } + }, + { + "text": "Highly recommend this professor. I took him several semesters ago and am still learning from notes he typed and sent to our class. One of the BEST math professors I have ever had.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9df" + } + }, + { + "text": "This professor is horrible. He goes over everything so fast that its hard to keep up with. He sticks 5 chapters in a 50 minute exam which I think is just way too much to study. He expects you to know math as if you're in a calculus class already. Never reviews before a test, doesn't go over the test. I regret taking this professor.", + "pos": 0.0, + "neu": 0.89, + "neg": 0.11, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e0" + } + }, + { + "text": "Extremely helpful professor that does know how to teach unlike most math professors in CCNY. His tests are not that hard as long as you study, do hw, and problems on your own. He is a very lenient grader. He will take 1 point off if you forgot a minus sign and got the whole problem wrong. I got 90+/100s in all his midterms. I got an A.", + "pos": 0.088, + "neu": 0.802, + "neg": 0.11, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e1" + } + }, + { + "text": "Prof. Grossman is extremely easy to follow, his explanations are crystal clear and he is kind and patient. He calmly leads the class through complicated ideas, and I actually enjoyed his nurdy sense of humor! Great professor, take his class.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e2" + } + }, + { + "text": "The best math professor! I REALLY learned calculus, not just how to do problems.", + "pos": 0.234, + "neu": 0.625, + "neg": 0.141, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e3" + } + }, + { + "text": "Hard grader? Are you kidding me? He's very generous. I got a B because I fell behind, but an A is very possible if you work really hard. Good guy, and like the other person said...STUDY THE SAMPLE TEST! Do the HW, but when it comes to test time, just do the sample test over several times and you'll be OK.", + "pos": 0.167, + "neu": 0.787, + "neg": 0.046, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e4" + } + }, + { + "text": "He's a great teacher, just pay attention in class, and also make sure you practice a lot. don't make silly mistakes...the tests are hard but what do you expect when taking Calculus I. don't be scared or imitated about the information. Willing to help, but likes it when students go see tutors, and do that. Good luck on taking him!", + "pos": 0.298, + "neu": 0.657, + "neg": 0.045, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e5" + } + }, + { + "text": "I have only two words to say tough grader, and don't care about anybody.", + "pos": 0.0, + "neu": 0.744, + "neg": 0.256, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e6" + } + }, + { + "text": "extremele helpful and makes sure u noe wats going on. he gives sample tests beforehand and they are essentially he same thing as what would be on the real test, so take him if u can.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e7" + } + }, + { + "text": "He was the chairman of the math department and he is a great listener and understands when students have problems. If you are going to take a class with him practice alot and do all the homeworks because he adds them to your final grade if you are missing a few points. If you are taking cal 2, practice the integrating problems ALOT.", + "pos": 0.058, + "neu": 0.835, + "neg": 0.107, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a0cd60fca157e5d9ea" + }, + "professor_name": "Derek Levine", + "rating": 4.1, + "department": "Asian Studies department", + "comments": [ + { + "text": "So Knowledgeable", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9eb" + } + }, + { + "text": "He doesn't write good notes on the blackboard. You can actually google the answers for the papers however, it doesn't mean you can get good grades. I do not understand most of the things that he talks about in class.", + "pos": 0.067, + "neu": 0.877, + "neg": 0.056, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9ec" + } + }, + { + "text": "He knows his stuff really good. He knows language and culture 2", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9ed" + } + }, + { + "text": "Levine seems very knowledgeable about the material he teaches. Sometimes you can get a little confused but overall a good class to take.", + "pos": 0.146, + "neu": 0.797, + "neg": 0.057, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9ee" + } + }, + { + "text": "really smart guy, keeps the class simple and kinda goodlooking ;) But, has difficulty remembering my name. Oh well that's a college professor for you!", + "pos": 0.206, + "neu": 0.692, + "neg": 0.102, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9ef" + } + }, + { + "text": "Great prof. Funny, friendly and always has a interesting story aout his experience overseas ..reminds of Ross from friends!!! lol ..great guy!!! too bad he is leaving CCNY", + "pos": 0.506, + "neu": 0.42, + "neg": 0.074, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f0" + } + }, + { + "text": "Have to read the books in class for the paper. I didn't know this and haven't read them all semester.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f1" + } + }, + { + "text": "Be prepared for interesting discussion on Asia. He assigns papers and I am not great writer so I didn't get an A. he let me improve my grade by rewriting my papers. Good prof", + "pos": 0.244, + "neu": 0.679, + "neg": 0.077, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f2" + } + }, + { + "text": "Levine is the man! He's cool, funny, and has much knowledge of eastern Asia. The class is an easy A. All you have to do is do three essays, no readings, no tests. Just come to class and pretend like your listening and you'll do fine like me =)", + "pos": 0.323, + "neu": 0.62, + "neg": 0.057, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f3" + } + }, + { + "text": "Super nice professor, little readings and NO EXAMS!!!!! I am not kidding, only three papers to write in the whole semester!!!! I got an A from him!!!!", + "pos": 0.226, + "neu": 0.66, + "neg": 0.114, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f4" + } + }, + { + "text": "Good Prof. That's funny; the Professor only started tecahing here last year.Excellent prof I rec that you take hime for all courses he tecahes", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f5" + } + }, + { + "text": "very understanding with personal situations.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f6" + } + }, + { + "text": "Professor is very smart and passionate about the material.", + "pos": 0.487, + "neu": 0.513, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f7" + } + }, + { + "text": "He really knows Asia and speaks Chinese.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9f8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a0cd60fca157e5d9fa" + }, + "professor_name": "Anke Geertsma", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "One of the best professor's I've had. Very helpful. Have to write few essays and 2 tests. Also gave homework sometimes. For one of the tests, I plagiarized somewhat and she let me write it over. very understanding", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9fb" + } + }, + { + "text": "She is great English professor, but the papers she assigns are usually quiet long. Other than that everything is clear, interesting and worth your effort!", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9fc" + } + }, + { + "text": "One of the best professors in City College, very helpful.", + "pos": 0.477, + "neu": 0.523, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9fd" + } + }, + { + "text": "Really great professor, very understanding! Lots of reading but is interesting!", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9fe" + } + }, + { + "text": "she is such a lovely person. She cares about her students. And even if she is still studying for her phD, she still takes time to care for the class she is teaching. She is genuinely a good professor.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5d9ff" + } + }, + { + "text": "EXPECT TO READ EVERY WEEK but you'll learn a lot from Literature around the world. It's enlightening. you wouldn't even know that english wasn't her first language.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5da00" + } + }, + { + "text": "She's extremely helpful ad understands how stressful it is to be a college student. The class contains a good amount reading but some are very interesting. You can travel the world in a semester! She gives a few quizzesin class writing assignments, a midterm and a final research paper. She's a little harsh grader but is very understanding!", + "pos": 0.128, + "neu": 0.79, + "neg": 0.083, + "_id": { + "$oid": "6711d5a0cd60fca157e5da01" + } + }, + { + "text": "She is incredibly wise in the field that she is teaching. The amount of works of literature that she assigns is a lot for one semester but offers students the freedom of which one to focus on. She uses technology a lot and I admit that it helps us get more interested. Overall very helpful, down to earth, very hands on, funny and inspiring.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5da02" + } + }, + { + "text": "Really caring, kind professor who is there for students. Easily reached via email and office hours. Knows how to give helpful feedback on essays and goes over the basic functions of writing. Essays are easy, just go to the writing center, guaranteed an A at least. Put in effort.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5da03" + } + }, + { + "text": "She is really easy as long as you do the work. She helps you a lot. She basically babysits you throughut your assignments.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5da04" + } + }, + { + "text": "Email her whenever and she will get back to you whenever she can. She wrote me a letter of recommendation. She is so sweet and definitely a great professor. Email her your essay and she will edit a lot of it will great feedback. Absolutely great.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5da05" + } + }, + { + "text": "Love her she assigns two papers that you can pick the due date for, final paper and is understanding. Feel free to email her shes really nice and helpful. Def taking another class with her.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5da06" + } + }, + { + "text": "Great professor. Helpful accommodating and fair. I Recommend taking the class with this professor.", + "pos": 0.539, + "neu": 0.461, + "neg": 0.0, + "_id": { + "$oid": "6711d5a0cd60fca157e5da07" + } + }, + { + "text": "Very sweet! Her work is a bit on the heavy side, just have to make sure you show up and stay on the papers and their due dates. Lots of group work, peer review, definitely helped w. my writing. Awesome professor! Eh grader. Just work hard it'll pay off.", + "pos": 0.221, + "neu": 0.732, + "neg": 0.048, + "_id": { + "$oid": "6711d5a0cd60fca157e5da08" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a1cd60fca157e5da0a" + }, + "professor_name": "Ruben Rangel", + "rating": 4.7, + "department": "English As A Second Language department", + "comments": [ + { + "text": "Professor Rangel is one of the best professor I have had in the course of my life. He is very caring and although he sends a lot of homework, he is easygoing with the dates due (so much that you have until the last day of class to submit your assignments) and you decide your grade for the class. I'd take every class he teaches if I had time.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da0b" + } + }, + { + "text": "He will change your life I wish every professor is like him.. so understanding, Easily aAa and will change your life forever...", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da0c" + } + }, + { + "text": "Professor Rangel is one of the best professors in Bmcc. He always helps students to give their best. I really recommend him. He gives a lot of HW but don't freak out he gives you the entire semester to deliver it, But a tip do not leave it for last minute because is a lot. If you do Everything is a pretty easy A !! Good Luck :)", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da0d" + } + }, + { + "text": "Professor Rangel is very easy going. He gives extra credit to improve grade or make up for an absence. There is a lot of homework but he gives you until the last day of class to hand everything in. You will have to present in his class. Sometimes he lets you leave early. He is very helpful. Expect to think A LOT. Interesting discussions.", + "pos": 0.234, + "neu": 0.749, + "neg": 0.017, + "_id": { + "$oid": "6711d5a1cd60fca157e5da0e" + } + }, + { + "text": "Amazing Professor, In the beginning of the semester I was lost and didn't believe I was going to change my mind but he help me do it. Thanks to this professor I change my views. I started meditation and it help me become a better person for myself. Thanks professor for sharing your wisdom. You guys should take him.", + "pos": 0.362, + "neu": 0.617, + "neg": 0.02, + "_id": { + "$oid": "6711d5a1cd60fca157e5da0f" + } + }, + { + "text": "Professor Rangel cares. Definitely take his class, and pay attention. You might be changed for it.", + "pos": 0.284, + "neu": 0.647, + "neg": 0.07, + "_id": { + "$oid": "6711d5a1cd60fca157e5da10" + } + }, + { + "text": "He is very easy. He makes you think outside of the box. do his housework. He very easy. Take him. I got an A.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da11" + } + }, + { + "text": "Awesome professor! His topics were very interesting. I enjoyed his class and learned so much from it. Hand in your work, it helps your grade. He is also very understanding. Highly recommend.", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da12" + } + }, + { + "text": "You will learn a lot.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da13" + } + }, + { + "text": "Very kind professor.. easy a...", + "pos": 0.696, + "neu": 0.304, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da14" + } + }, + { + "text": "This class is alot of fun. You dont only learn new styles and skills to write, but you learn different way of thinking and u get exposed to different cultures. The professor helps students think outside of the box and prepare them for the future as a student and a person.But u have to know that no progress can be made with out struggle.", + "pos": 0.077, + "neu": 0.82, + "neg": 0.103, + "_id": { + "$oid": "6711d5a1cd60fca157e5da15" + } + }, + { + "text": "He is simply the best, I learned alot.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da16" + } + }, + { + "text": "He is a very good teacher...funny helpful and a good grader . if u want get an a you should take his class.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da17" + } + }, + { + "text": "I thought this was going to be a very boring class but me makes it interesting. he only make you write 1 essay per week and is easy. You can send it to him or hand it ina hard copy. He is one of the easiest teacher I ever had. You have to tak him.", + "pos": 0.227, + "neu": 0.723, + "neg": 0.05, + "_id": { + "$oid": "6711d5a1cd60fca157e5da18" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a1cd60fca157e5da1a" + }, + "professor_name": "Jerry Carlson", + "rating": 4.3, + "department": "Film department", + "comments": [ + { + "text": "He knows his stuff but he's an arrogant prof. He tries to come off as caring but he isn't. He also fired the best film professor ever, Dr. Tomasullo, because of a misunderstanding.", + "pos": 0.28, + "neu": 0.56, + "neg": 0.16, + "_id": { + "$oid": "6711d5a1cd60fca157e5da1b" + } + }, + { + "text": "Carlson seems to be very popular with A students, but the rest of us fall short of his high expectations. He thinks he knows it all, and he does know MOST everything about film history but he conveys it like he's on stage. He has little respect for B students and I'm sure he doesn't not give any Cs or Ds.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da1c" + } + }, + { + "text": "Prof. Carlson lectured me in film studies (MCA & MFA). He posesses a vast knowledge of early, latin & overall film history. His classes are like master classes provoking thinking with an immense amount of information and intellectual explanation of film. A host of film TV series he should publish an accompanying book: \"Encyclopedia Cinematica\".", + "pos": 0.097, + "neu": 0.872, + "neg": 0.03, + "_id": { + "$oid": "6711d5a1cd60fca157e5da1d" + } + }, + { + "text": "One of the most interesting and educated film teachers in the program. His lectures are sometimes more interesting than the movies, and they are some classics!. Only problem is he goes off-topic sometimes, but I'm sure going to miss him. Two exams (3 essays in 2 hours) and one 5 page paper.", + "pos": 0.125, + "neu": 0.811, + "neg": 0.065, + "_id": { + "$oid": "6711d5a1cd60fca157e5da1e" + } + }, + { + "text": "He's a great teacher. He's one of my favortie professors. I still keep in touch with him. If you write a lot on the midterm and final, you would get an A.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da1f" + } + }, + { + "text": "Besides being very cute, he is the best professor in the program. Period!", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da20" + } + }, + { + "text": "No doubt, the best teacher in the University.", + "pos": 0.513, + "neu": 0.487, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da21" + } + }, + { + "text": "He is great! One of the best, if not the best, teacher in CCNY. The exams could be a little more fair (3 essays in 2 hours).", + "pos": 0.293, + "neu": 0.617, + "neg": 0.09, + "_id": { + "$oid": "6711d5a1cd60fca157e5da22" + } + }, + { + "text": "Great professor indeed. Great sense of humor. Whatever I know about movies it's thanks to his theachings. If you ever regret going to City College wait until you yake his class. He is worth the money and time you put in. way to go professor, I owe you.", + "pos": 0.252, + "neu": 0.701, + "neg": 0.047, + "_id": { + "$oid": "6711d5a1cd60fca157e5da23" + } + }, + { + "text": "CARLSON FOR PRESIDENT!!!!!! this guy is THE best professor that i have ever had in the history of my education! he is intelligent, cultured, funny, noble, and an all around GREAT person. TAKE THIS CLASS EVEN IF YOU ARE NOT A FILM MAJOR!!!!", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da24" + } + }, + { + "text": "Very knowledgeable. Great resource.", + "pos": 0.593, + "neu": 0.407, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da25" + } + }, + { + "text": "The smartest film teacher I have ever met...CARLSON = THE MAN !", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da26" + } + }, + { + "text": "Quite possibly the smartest man alive.", + "pos": 0.632, + "neu": 0.368, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da27" + } + }, + { + "text": "He is really nice, and he knows a lot about the subject he is teaching.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d5a1cd60fca157e5da28" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a2cd60fca157e5da2a" + }, + "professor_name": "Robert Weston", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor cares about his students and that they understand the subject and do well in his class. BUT you have to pull your own weight too and stay on top of the homework. His lectures are clear and he makes the subject interesting. He doesn't curve grades, but he is very FAIR. I highly recommend taking his class.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da2b" + } + }, + { + "text": "wonderful calculus professor. hes nerdy and funny. one of the best math teachers ever. do your homework and you will do well in his class. he teaches very clearly and is actually very passionate about math. highly recommend", + "pos": 0.418, + "neu": 0.56, + "neg": 0.022, + "_id": { + "$oid": "6711d5a2cd60fca157e5da2c" + } + }, + { + "text": "This professor is very helpful. He knows what hes doing and can teach the material thoroughly and clearly. He's also hilarious in class and somehow manages to teach everyone perfectly at the same time.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da2d" + } + }, + { + "text": "Do the homeworks religiously because there will be of help a lot. It is very helpful but very tedious work. Prepare to spend atleast1-2hours on homeworks. Tests will be based on the understanding of topics. There will be curveballs but if you understand the topic at hand, it will be of ease.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da2e" + } + }, + { + "text": "He is great at making abstract math concept clear to non math people. He structured the class so that it was easy to manage the course work. HE WAS GREAT! I would never have passed without his teaching.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da2f" + } + }, + { + "text": "Absolutely great professor. If you go to class you will definitely get math. He quizzes often, with 3-5 questions per quiz based on homework and class discussion, and if you miss something you can make it up. Weston is very helpful, hilariously funny, and a bit nerdy but overall a great teacher. I ACED this class and you will too", + "pos": 0.205, + "neu": 0.76, + "neg": 0.034, + "_id": { + "$oid": "6711d5a2cd60fca157e5da30" + } + }, + { + "text": "very helpful! always willing to explain something for the 300000th time or answer stupid questions.\r totally aweesome!\r ;D", + "pos": 0.261, + "neu": 0.603, + "neg": 0.137, + "_id": { + "$oid": "6711d5a2cd60fca157e5da31" + } + }, + { + "text": "Great teacher who explains everything thoroughly. He also has a great sense of humor and interacts with the students.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da32" + } + }, + { + "text": "Very nice person and a helpful instructor.", + "pos": 0.541, + "neu": 0.459, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da33" + } + }, + { + "text": "For a grad student, he is so much better than many professors. The only complaint I have is that he barely gives partial credit on the exams but does on the HW. Other than that, this guy, in my opinion will get sooo far if he chooses a career teaching. He is an amazing teacher who is available when you need help n who cares that you do well.", + "pos": 0.231, + "neu": 0.749, + "neg": 0.019, + "_id": { + "$oid": "6711d5a2cd60fca157e5da34" + } + }, + { + "text": "Probably one of the best Math teachers in CCNY. He will explain everything even if you don't know how to factor polynomials. A+++++ Would recommned.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da35" + } + }, + { + "text": "Very helpful teacher and test and quiz are straight forward no surprises and a lenient grader", + "pos": 0.342, + "neu": 0.578, + "neg": 0.08, + "_id": { + "$oid": "6711d5a2cd60fca157e5da36" + } + }, + { + "text": "He is very helpfull and a good teacher. He explains everythig until everyone in the class gets it. If you go to the class you will get an A or A+. He is a graduate student", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da37" + } + }, + { + "text": "Down to Earth guy probabaly because he just started. Makes the material easy to learn. Makes you feel comfortable in class.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da38" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a2cd60fca157e5da3a" + }, + "professor_name": "Zhou Lu", + "rating": 4.1, + "department": "Economics department", + "comments": [ + { + "text": "Professor Lu is one of the best professor in Economic department. He makes class easy to understand and give reasonable exams. usually there are 3 exams and he made first two exams a little be difficult. However, as long as you stay, you will be surprised because the last exam is way easier than before. Amazing professor, passionate in teaching.", + "pos": 0.256, + "neu": 0.714, + "neg": 0.03, + "_id": { + "$oid": "6711d5a2cd60fca157e5da3b" + } + }, + { + "text": "This professor made us change our thesis 4 times, then gave us a B- on our paper implying we should have picked a different topic during our presentation! He is a very tough grader that looks for specific words for answers. He gave someone a bad grade on their exam for adding answers from the text book to his exam questions not taking again!", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d5a2cd60fca157e5da3c" + } + }, + { + "text": "Mr. Lu I feel has the ability to be a great teacher but he over complicated his course tremendously. I learned more about his tests from YouTube and his take home assignments than his lectures. He's there during office hours so there is help for you but sometimes it's hard to comprehend his way of teaching. Disclaimer: I had stats and calc also", + "pos": 0.118, + "neu": 0.858, + "neg": 0.023, + "_id": { + "$oid": "6711d5a2cd60fca157e5da3d" + } + }, + { + "text": "Lu respects hard work and effort. He is really specific when it comes to grades. Take good notes and show effort and it's a straight up class. You will learn Micro.", + "pos": 0.2, + "neu": 0.761, + "neg": 0.039, + "_id": { + "$oid": "6711d5a2cd60fca157e5da3e" + } + }, + { + "text": "if you really want to learn about economic development and economics in general i suggest you should take this class.", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da3f" + } + }, + { + "text": "Really liked the course and the professor. He explains very clear and is always available after class and during office hours. You can use a textbook if you don't get something in class, otherwise just notes will be enough. He gives 5 pop quizes, which are really easy if you just read your notes, two midterms and final, all are non-cumulative.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da40" + } + }, + { + "text": "Really liked the course and the professor. He explains very clear and is always available after class and during office hours. You can use a textbook if you don't get something in class, otherwise just notes will be enough. He gives 5 pop quizes, which are really easy if you just read your notes, two midterms and a final, all are non-cumulative.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da41" + } + }, + { + "text": "Really liked the course and the professor. He was always available after class and during office hours. He explains very clear. You can use a textbook if you don't get something in class, otherwise just notes will be enough. He gives 5 pop quizes, which are really easy if you just read your notes, two midterms and a final, all are non-cumulative.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da42" + } + }, + { + "text": "Really liked the course and the professor. He was always available after class and during office hours. He explains very clear. You can use a textbook if you don't get something in class, otherwise just notes will be enough. He gives 5 pop quizes, which are really easy if you just read your notes, two midterms and final. All are non-cumulative.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da43" + } + }, + { + "text": "Great professor. Seriously...", + "pos": 0.603, + "neu": 0.147, + "neg": 0.25, + "_id": { + "$oid": "6711d5a2cd60fca157e5da44" + } + }, + { + "text": "He's honestly one of the best economics professors in the school, hands-down. I took two of his classes and both were amazing.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da45" + } + }, + { + "text": "He is a great professor!!! Knows his stuff and knows how to teach it! His notes are very helpful and the key of getting an A!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da46" + } + }, + { + "text": "beware! Makes the class super tough, just because he thinks he's above intelligent. Makes the students do the same.", + "pos": 0.291, + "neu": 0.648, + "neg": 0.061, + "_id": { + "$oid": "6711d5a2cd60fca157e5da47" + } + }, + { + "text": "A rare combination of great professor and great guy. he maybe the best professor the economics department has right now. he is super smart. makes the lectures crystal clear and is also a wonderful person. his classes are never boring. we need more like him!!", + "pos": 0.46, + "neu": 0.54, + "neg": 0.0, + "_id": { + "$oid": "6711d5a2cd60fca157e5da48" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a3cd60fca157e5da4a" + }, + "professor_name": "Jonathan Mcvey", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "He's so chill and gives a lot of opportunity for extra credit. Just a little strict with attendance and lateness so make sure you're on time. I'm glad I took him my first semester and would've taken him again if he taught more classes.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da4b" + } + }, + { + "text": "Class was easy and gives a lot of extra credits", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da4c" + } + }, + { + "text": "best prof ever!!", + "pos": 0.705, + "neu": 0.295, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da4d" + } + }, + { + "text": "Best English professor, I've had so far!", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da4e" + } + }, + { + "text": "Had Composition with him Fall of 21'. We had to do 3-4 essays if i remember correctly but they were relatively easy if you're doing the work. Easy to approach if you have questions and he'll give you honest and straight up feedback on your writing.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da4f" + } + }, + { + "text": "This class was amazing, challenged you but it wasn't too hard <3", + "pos": 0.238, + "neu": 0.495, + "neg": 0.267, + "_id": { + "$oid": "6711d5a3cd60fca157e5da50" + } + }, + { + "text": "Super funny and down to earth. He's not afraid to tell you the honest truth. He doesn't take the work too seriously as long as you make the effort.", + "pos": 0.325, + "neu": 0.63, + "neg": 0.045, + "_id": { + "$oid": "6711d5a3cd60fca157e5da51" + } + }, + { + "text": "Participation matters, that's a no brainer since you're going to a topic class in which discussion is the main focal point. This is in order to be the background for your writing for composition. To discussion boards to in-class discussions are where this class truly shines. Professor Mcvey creates this engagement with enforcing critical thought.", + "pos": 0.152, + "neu": 0.777, + "neg": 0.071, + "_id": { + "$oid": "6711d5a3cd60fca157e5da52" + } + }, + { + "text": "An amazing writing professor. He gives meaningful feedback without being harsh and he is clearly well-versed in writing. He sends out email reminders to everyone for homework, and he is also flexible with deadlines, so it's pretty hard to fail. Make sure to stay engaged in class, it's worth it because it makes you critically think about writing.", + "pos": 0.31, + "neu": 0.621, + "neg": 0.068, + "_id": { + "$oid": "6711d5a3cd60fca157e5da53" + } + }, + { + "text": "Definitely take Prof McVey! Hes assigns virtually ZERO hw and is extremely easy to follow along with. He does get a bit upset with participation, but its perfectly reasonable. He gives us reminder emails periodically and makes it practically impossible to fail the class. Overall, amazing teacher and great person", + "pos": 0.297, + "neu": 0.61, + "neg": 0.093, + "_id": { + "$oid": "6711d5a3cd60fca157e5da54" + } + }, + { + "text": "McVey is a really good professor. he's quite understanding of the students and will give u extensions if u request it. he understands that we have private lives and doesn't get very worked up. Communicates with the students often (asking them if it was too hard or how they feel about the work). overall a p solid professor", + "pos": 0.078, + "neu": 0.899, + "neg": 0.023, + "_id": { + "$oid": "6711d5a3cd60fca157e5da55" + } + }, + { + "text": "He was a great professor and encourages students to challenge their writing style and improve. Genuinely felt great doing work for this class. I didn't feel pressured and it was more about how creative I can be within the limits of the prompt, which I enjoyed.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da56" + } + }, + { + "text": "He was very lenient and respected whatever his students discussed in class. He does get a bit irritated if students do not participate, which is understandable. Students SHOULD be participating in class. He gives good feedback and is very communicative.", + "pos": 0.182, + "neu": 0.755, + "neg": 0.063, + "_id": { + "$oid": "6711d5a3cd60fca157e5da57" + } + }, + { + "text": "He is stingy about how work should be handed in and hates when students don't reply with received to his emails. He sends ALOT of emails about classwork and due dates. He says he is available out of class but every time you email him, he doesn't reply whatsoever as if your email goes to his junk. Gets mad when students don't participate.", + "pos": 0.0, + "neu": 0.882, + "neg": 0.118, + "_id": { + "$oid": "6711d5a3cd60fca157e5da58" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a3cd60fca157e5da5a" + }, + "professor_name": "Richard Clark", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "Great professor! Lectures are easy to understand and she makes the class very engaging. Check-ins (tests) are fair if you take notes on the power points. She is caring and REAL! She connects the material back to our own personality, which I love. I recommend her to all psych majors!!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da5b" + } + }, + { + "text": "I took Professor Clark last semester, there was only 1 spot left and I'm so glad I was able to take her class. Her lectures' topics are a little bit hard, but she always does her best and makes it easier for students to understand.", + "pos": 0.221, + "neu": 0.759, + "neg": 0.02, + "_id": { + "$oid": "6711d5a3cd60fca157e5da5c" + } + }, + { + "text": "love love love her. she is so cool and fun and approachable. just do your work and you'll be fine. no tests just easy assignments and extra credit", + "pos": 0.555, + "neu": 0.399, + "neg": 0.046, + "_id": { + "$oid": "6711d5a3cd60fca157e5da5d" + } + }, + { + "text": "to this day, ONE OF THE BESTTT PROFESSORS AT CCNY!! I took Professor Clark like a year ago and I still remember how kind and fun they were. Actually made me enjoy the class too!!", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da5e" + } + }, + { + "text": "Professor clark was an amazing professor they made the lectures very interesting and the coursework was clearly outlined and was very easy to complete if you go to class. Would recommend everyone takes them even having to get up at 9 am to go was so worth it.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da5f" + } + }, + { + "text": "Professor Clark is a wonderful professor! Professor Clark's lectures are informative and changes how you approach psychological research. There are only 3 papers that build off each other and simple weekly check-in's. Professor Clark is really considerate of students' situations and cares for them. Would highly recommend!", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da60" + } + }, + { + "text": "The rumors are true!! Professor Clark is LITERALLY the most caring and understandable professor out there. They are what all psych professors should be!! Professor prioritized our mental health more than the assignments and it truly did help me in the end. This semester was horrible in terms of my mental health but professor really came through!!!!", + "pos": 0.144, + "neu": 0.821, + "neg": 0.036, + "_id": { + "$oid": "6711d5a3cd60fca157e5da61" + } + }, + { + "text": "TAKE HIM. He is really good and genuinely care for his students. He would give out extra credit and there are no finals exams. Just 3 assignments and a couple of personality check ins. It is the most easiest class I have ever taken.", + "pos": 0.227, + "neu": 0.732, + "neg": 0.041, + "_id": { + "$oid": "6711d5a3cd60fca157e5da62" + } + }, + { + "text": "One of the BEST prof in CCNY. He will give you an extension with no question. Only 3 assignments and a few personalities check-ins. His class is very light and the personality check-ins are from your experience. He is very caring and makes every class interesting. I WOULD TAKE ANY CLASS I FIND WITH HIM AGAIN!", + "pos": 0.174, + "neu": 0.792, + "neg": 0.034, + "_id": { + "$oid": "6711d5a3cd60fca157e5da63" + } + }, + { + "text": "one of the most amazing professor in CCNY", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da64" + } + }, + { + "text": "Professor Clark has been the best professor I ever had. Very considerate and understanding. Managed to make the class and the assignments fun which we enjoyed to learn. The assignments were also incredibly easy to get done as long as you understood the work. Lastly, the best parts were the journal entries that though mandatory were very easy to do.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da65" + } + }, + { + "text": "Prof Clark's lectures are always interesting. He does fun breakout room group activities. This course was held online, but I felt as though I was in the classroom. He has an amazing personality regardless of his gender preferences. Show up, participate and do the essays, you can achieve an easy A. There are no test or quizzes.", + "pos": 0.192, + "neu": 0.766, + "neg": 0.041, + "_id": { + "$oid": "6711d5a3cd60fca157e5da66" + } + }, + { + "text": "Clark is wonderful. There are two 3-page papers, a weekly check-in, and a final 5 page paper OR presentation (your choice). Very nice with grading and gives a lot of extra credit. Just do the work, participate, attend lectures, and you'll do good! She is always available if you ever need help.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da67" + } + }, + { + "text": "His class pretty simple just do the 3 paper and one final presentation or paper. He is fair when comes to grading so I will suggest do a good job the paper. HE IS AN INTERESTING CHARACTER so good luck.", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d5a3cd60fca157e5da68" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a4cd60fca157e5da6a" + }, + "professor_name": "Nadine Brown", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "She is very understanding and super helpful", + "pos": 0.582, + "neu": 0.418, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da6b" + } + }, + { + "text": "Professor Brown grades only by a few things. There are two quizzes, a midterm exam and a final. Make sure you participate in class because she bases grades off of participation.", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da6c" + } + }, + { + "text": "Nadine's disorganized, cancels classes without notifying students, doesn't bother to reply to emails and shows up unprepared to teach. Class consisted of Zoom breakout rooms meetings that were too long without proper guidance, a summary of said meetings and ending class early. Take someone else if you can. Also, she takes too long to grade papers.", + "pos": 0.034, + "neu": 0.896, + "neg": 0.069, + "_id": { + "$oid": "6711d5a4cd60fca157e5da6d" + } + }, + { + "text": "I found her to be warm and helpful, in addition to caring. I understand some people say she graded them unfairly but I generally find her to be a fair and superb professor. I also understand that a situation resulted in many students needing to speak with the Dean, but, in the second class I took with her (PSY B9903), she learned from her mistakes.", + "pos": 0.184, + "neu": 0.773, + "neg": 0.043, + "_id": { + "$oid": "6711d5a4cd60fca157e5da6e" + } + }, + { + "text": "She seems kind at first, but her grading doesn't follow a rubric. She's often late to class & began class 15 min later. She wasn't kind when asking for grading clarity. When my final grade came, my grade math-wise didn't add up. When asked about this, she didn't help me. I went to the head & turns out she was off about my real grade by 12%!", + "pos": 0.076, + "neu": 0.833, + "neg": 0.091, + "_id": { + "$oid": "6711d5a4cd60fca157e5da6f" + } + }, + { + "text": "Professor Brown was very laidback and chill. We had group work for the midterm and a final along with 2 certifications so it was a pretty easy course. Overall, if you're looking for a course that isn't demanding and an easygoing class, I recommend taking Professor Brown's class.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da70" + } + }, + { + "text": "Professor was very passionate about her work and well informed about this course topics. I enjoyed coming to class and participating in the class discussion/ Clear syllabus, assignments were easy. There was four assignments including midterm and final paper. There was two certification training. Professor is very kind. best professor in CCNY", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da71" + } + }, + { + "text": "I was ready to rate her very positively up until she submitted my final grade. Her lectures were great and she genuinely cared about her subject. And then everyone's grades came and both of her classes are writing complaints to the dean. Apparently, 367/402 is B- edging into C+ and 372/402 is A-. My worst grade in 3 years and completely undeserved.", + "pos": 0.173, + "neu": 0.738, + "neg": 0.09, + "_id": { + "$oid": "6711d5a4cd60fca157e5da72" + } + }, + { + "text": "This class was amazing. Our lectures ended up turning into discussions because the topics were so good. Professor Nadine makes sure the class is engaged. Weekly discussion boards, 2 papers, midterm group paper, additional MA assignment and final paper. Assignments were straightforward and fairly easy in my opinion. I would recommend taking it.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da73" + } + }, + { + "text": "One of the best professors at CCNY!! Her lectures are amazing, it is a class that makes you look forward to attending. Do your reading and attend lectures and you will be set. Truly a safe place for you to be yourself. The group assignments are fun so if you're someone that's shy like myself, this is the class for you. Would take again!! TAKE IT", + "pos": 0.254, + "neu": 0.722, + "neg": 0.024, + "_id": { + "$oid": "6711d5a4cd60fca157e5da74" + } + }, + { + "text": "WOW when I say this class was the best class I've taken, I mean it. Prof Nadine is such a caring person and sure makes learning fun. I learned a lot even though the winter semester is short. I had so much fun even writing the papers we had to write! She really encourages group work and I think that's dope! Thank you for everything prof!", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da75" + } + }, + { + "text": "Professor Brown is a very caring and knowledgeable person. She shared experiences and explained in detail your questions. Her class is a safe place to talk and share. No exams, no quizzes; however, there are weekly journals, two 3 to 5-page assignments, and 5 to 7-page midterm and final papers. I definitely learned a lot in her class.", + "pos": 0.227, + "neu": 0.741, + "neg": 0.032, + "_id": { + "$oid": "6711d5a4cd60fca157e5da76" + } + }, + { + "text": "Great porfesor. Really cares about her students and will give amazing advice. Very knowledgeable.", + "pos": 0.504, + "neu": 0.496, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da77" + } + }, + { + "text": "The most chillest professor I've ever had. Very compassionate of the students and wants to make sure you learn.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da78" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a4cd60fca157e5da7a" + }, + "professor_name": "Demetri Papacostas", + "rating": 4.1, + "department": "Economics department", + "comments": [ + { + "text": "One of the best Professor at CCNY! I truly loved his class and learned a lot about foreign exchange marke and bloomberg terminal. Definitely recommended! If you study regularly and keep up with the class, an A should not be hard to achieve. There is a high learning curve and you will not regret taking his class.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da7b" + } + }, + { + "text": "This is not an easy class, but Prof. Papacostas makes it easier for the students to understand. There are two books used in class. Its important to read the assigned chapters before class so youll understand better the concepts and content in class. This is a great opportunity to learn information from the real financial world, so take it!", + "pos": 0.266, + "neu": 0.711, + "neg": 0.023, + "_id": { + "$oid": "6711d5a4cd60fca157e5da7c" + } + }, + { + "text": "I was really nervous about having to take this course, but Professor Papacostas made it one of the best experiences of my college career. As a professor he was such an amazing source of knowledge and support, I really couldn't have passed this class without him.", + "pos": 0.25, + "neu": 0.721, + "neg": 0.029, + "_id": { + "$oid": "6711d5a4cd60fca157e5da7d" + } + }, + { + "text": "A hard class that he makes understandable. He wrote a book on this stuff so he's a knowledgeable source", + "pos": 0.0, + "neu": 0.928, + "neg": 0.072, + "_id": { + "$oid": "6711d5a4cd60fca157e5da7e" + } + }, + { + "text": "A great class to take for finance students", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da7f" + } + }, + { + "text": "Great lecturers; if you take notes and attend class its an enjoyable class. He uses real-world examples which really helps. I'm going into finance so glad I took this course", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da80" + } + }, + { + "text": "I didn't do that well in this class but I learned more here than many other courses. Papacostas is very knowledgeable in his field; wrote the book on it. If you attend class and take notes you can get an A", + "pos": 0.0, + "neu": 0.966, + "neg": 0.034, + "_id": { + "$oid": "6711d5a4cd60fca157e5da81" + } + }, + { + "text": "Great professor. The class seems extremely hard at first but he makes it very relatable provides great real-world examples.", + "pos": 0.331, + "neu": 0.617, + "neg": 0.052, + "_id": { + "$oid": "6711d5a4cd60fca157e5da82" + } + }, + { + "text": "Very informative class; I learned a lot more in this class than any ECO class. Papacostas really knows what he is talking about and connects well. He literally wrote the book on this stuff. Amazing teacher. Good guy recommend to anyone looking to pursue a job in finance", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da83" + } + }, + { + "text": "He is the best Professor I have taken in city college. The class is not easy, a lot of reading and it's a complicated subject. If you are not familiar with stock market I'd advise you to ready a lot about the terms. Once you understand it you'll enjoy his class a lot! This class is very exciting once you are able to understand (mainly options)", + "pos": 0.178, + "neu": 0.791, + "neg": 0.031, + "_id": { + "$oid": "6711d5a4cd60fca157e5da84" + } + }, + { + "text": "Simply awful. Do not take him. Waste of time and money. Only got an A+ because of my study ethics. He is unable to teach.", + "pos": 0.082, + "neu": 0.812, + "neg": 0.106, + "_id": { + "$oid": "6711d5a4cd60fca157e5da85" + } + }, + { + "text": "This is the best class I've taken in city college so far. Professor is passionate about the subject and he goes out of his way to get people evolved. He tries to bring his colleges to class to explain topics like commodities, blockchain that are not his expertise. You do have to put effort into this class, the project, and NEED to read the books!", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da86" + } + }, + { + "text": "If you dont have to take his class, dont take it!!! He can NOT teach and makes bad jokes to which only he laughs. Very random grader. Doesnt know his next plans. Tags along his friends to class. Talks about unrelated events. Definitely makes students buy and pay for his own book which are full of typos. Youve been warned. NEVER take his class!!", + "pos": 0.16, + "neu": 0.748, + "neg": 0.092, + "_id": { + "$oid": "6711d5a4cd60fca157e5da87" + } + }, + { + "text": "Extremely unprofessional. Talks more about his work than actually teaching. Very off topic. Inexperienced and never taught before this class. Grades randomly. Never gives accurate feedback. Forces students to buy his book. Makes same mistakes constantly. Does not like to be corrected. Brings family and friends to lectures. Avoid him no matter what.", + "pos": 0.05, + "neu": 0.763, + "neg": 0.186, + "_id": { + "$oid": "6711d5a4cd60fca157e5da88" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a4cd60fca157e5da8a" + }, + "professor_name": "Pamela Clenance", + "rating": 1.4, + "department": "Engineering department", + "comments": [ + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d5a4cd60fca157e5da8b" + } + }, + { + "text": "Class is all over the place, she is tough on the wrong things, easy on the wrong things, unprepared for dealing with students or conflict in opinions.", + "pos": 0.083, + "neu": 0.63, + "neg": 0.287, + "_id": { + "$oid": "6711d5a4cd60fca157e5da8c" + } + }, + { + "text": "Not a respected professor. She is extremely unprofessional and plays favorites. If you English is not your first language you will be butchered", + "pos": 0.168, + "neu": 0.629, + "neg": 0.203, + "_id": { + "$oid": "6711d5a4cd60fca157e5da8d" + } + }, + { + "text": "clenance is a very tough grader... be aware", + "pos": 0.0, + "neu": 0.796, + "neg": 0.204, + "_id": { + "$oid": "6711d5a4cd60fca157e5da8e" + } + }, + { + "text": "Professor will never be satisfied with what you write. Icen if you think its perfect!!! Also never consistent with directions.", + "pos": 0.184, + "neu": 0.723, + "neg": 0.094, + "_id": { + "$oid": "6711d5a4cd60fca157e5da8f" + } + }, + { + "text": "This was such an awful experience for a whole year!", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d5a4cd60fca157e5da90" + } + }, + { + "text": "ok prefessor. makes you work hard. some projects were not fair since there was not enough info about them so most are theoretical. be patient with her lol", + "pos": 0.155, + "neu": 0.742, + "neg": 0.104, + "_id": { + "$oid": "6711d5a4cd60fca157e5da91" + } + }, + { + "text": "can be very offensive to students. be aware. she is a tough grader. Make sure she likes you since day one to be on her side!!! no matter the hard work you do, she will still say you have to improve it.", + "pos": 0.174, + "neu": 0.684, + "neg": 0.142, + "_id": { + "$oid": "6711d5a4cd60fca157e5da92" + } + }, + { + "text": "This professor is the WORST! She's unprofessional and unfair. She has favorites since the first day of the semester. Her feedback is useless, she is so discouraging. Report her... she is way too comfortable doing all the wrong things. She is unwilling to change grades and makes excuses for her mistakes and discrepancies in grading. GOOD LUCK!", + "pos": 0.161, + "neu": 0.551, + "neg": 0.287, + "_id": { + "$oid": "6711d5a4cd60fca157e5da93" + } + }, + { + "text": "one of the worst professors. judges based on everything. if you add too many figures to presentation she complains. if not too many are added, she will complain. she says we always read from our notes but THAT IS NOT TRUE. she always assumes things. she will have a favorite team which is not fair for the rest of the class no matter how hard we try.", + "pos": 0.051, + "neu": 0.756, + "neg": 0.193, + "_id": { + "$oid": "6711d5a4cd60fca157e5da94" + } + }, + { + "text": "I wish I could give her zero stars. the worst experience with her. ccny needs to hire someone who has more patience and who can express herself without hurting people. all she cares is about how you write. this should be a grad English course and not engineering. literally complains about little dumb things.", + "pos": 0.155, + "neu": 0.736, + "neg": 0.109, + "_id": { + "$oid": "6711d5a4cd60fca157e5da95" + } + }, + { + "text": "clenance shouldve been an english teacher. i found it funny how she asked us to use the writing center as a source to get a good grade and SHE GAVE ME An 80 for a simple summary AFTER I got feedback from the writing center (they had zero issues understanding what I wrote). no matter how perfect your writing is, she will still say u hav bad grammar", + "pos": 0.123, + "neu": 0.817, + "neg": 0.059, + "_id": { + "$oid": "6711d5a4cd60fca157e5da96" + } + }, + { + "text": "She was bad at describing the assignments,you had to read her mind to figure out what she wanted. Once you know its easy. She didn't seem to care about content at all, only that your paper was pretty and organized. I had some super obv mistakes in my paper she didnt even notice because she wasnt reading that close, only commented on a few sections.", + "pos": 0.129, + "neu": 0.76, + "neg": 0.111, + "_id": { + "$oid": "6711d5a4cd60fca157e5da97" + } + }, + { + "text": "Since shes the only senior design professor youre stuck with her. She is very difficult to work with and its her way or the highway. She doesnt grade fairly nor does she actively give help in engineering concepts, just formatting and the style she likes. If youre 5 min late your absent. Basically keep a low profile and be a yes man and your ok", + "pos": 0.136, + "neu": 0.747, + "neg": 0.116, + "_id": { + "$oid": "6711d5a4cd60fca157e5da98" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a5cd60fca157e5da9a" + }, + "professor_name": "Nadjwa Norton", + "rating": 2.3, + "department": "Education department", + "comments": [ + { + "text": "Assignments are painful, wordy, and confusing. The language is so confusing, it is a struggle to grasp concepts. There was also a lot of reading due each week. For a three-credit course, the workload was too much. Big EGO", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d5a5cd60fca157e5da9b" + } + }, + { + "text": "Although the workload is heavy, you learn so much. Your knowledge will not become inert. She is a really strong professor and can only be taken by those who are willing to do the work. She cares about her students and is dedicated to her work. Take her!!", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5da9c" + } + }, + { + "text": "To be honest, as difficult as this course was in terms of workload, I will say this: it was the best choice I ever made! This course alone has taught me how to be a teacher by changing my perspective on teaching and becoming self-sufficient in the classroom. Everyday I benefit from the strategies and logic I have acquired through this course.", + "pos": 0.149, + "neu": 0.788, + "neg": 0.062, + "_id": { + "$oid": "6711d5a5cd60fca157e5da9d" + } + }, + { + "text": "This class was awful! It was the worst course ever. Tons of work due every single week and assignments are not clear. You don't get a good grade even if you work so hard. It is so stressful. You will be suffering in her class. Do Not Take Class with her. If you have to take this class, apply for e-permit to take it from other CUNY institution.", + "pos": 0.0, + "neu": 0.742, + "neg": 0.258, + "_id": { + "$oid": "6711d5a5cd60fca157e5da9e" + } + }, + { + "text": "This class was a nightmare! I was warned by a few colleagues about her but I thought knowing myself I can handle anything. From being a straight A student for my entire Graduate studies, this class broke my streak. A lot of readings and a few assignments due every week. She asks for too much. I feel like I learned nothing.", + "pos": 0.086, + "neu": 0.836, + "neg": 0.077, + "_id": { + "$oid": "6711d5a5cd60fca157e5da9f" + } + }, + { + "text": "Don't take any of her classes. It is not worth the stress.", + "pos": 0.167, + "neu": 0.714, + "neg": 0.119, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa0" + } + }, + { + "text": "Say goodbye to your social life.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa1" + } + }, + { + "text": "tons of work...dont fall behind or you will never catch up", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa2" + } + }, + { + "text": "HORRIBLE!!!!!! NEVER HAD TO WORK SO HARD FOR B. SHE IS COLD AND INTIMIDATING AND SHOWS FAVORITISM IN HER GRADING. ALMOST ALL GRAD STUDENTS IN CLASS ARE TEACHING YET SHE STILL GIVES A UNMANAGEABLE AMOUNT OF WORK. WROTE 20 PAGE LESSON PLANS AND STILL WAS GRADED 13 OUT 20 POINTS... SHE WILL RUIN YOU GPA AND YOU WILL BE MISERABLE DONT TAKE HER!", + "pos": 0.03, + "neu": 0.707, + "neg": 0.263, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa3" + } + }, + { + "text": "She's tough! But, you learn a lot. She's helpful during office hours.", + "pos": 0.262, + "neu": 0.656, + "neg": 0.082, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa4" + } + }, + { + "text": "This professor is the worse she is insultive, disrespectful, unhelpful,shows favoritism, gives tons of assignments and grades very hard DO NOT TAKE HER your GPA WILL SUFFER.", + "pos": 0.05, + "neu": 0.682, + "neg": 0.268, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa5" + } + }, + { + "text": "THIS PROFESSOR IS HORRIBLE!! SHE IS EXTREMELY DISRESPECTFUL TOWARD HER STUDENTS AND WON'T OFFER ANY HELP TO HER STUDENTS. SHE PUTS HER STUDENTS DOWN AND MAKES YOU FEEL COMPLETELY WORTHLESS. WHEN YOU TRY TO MAKE A POINT OR STATEMENT IN CLASS SHE WOULD MAKE SMIRK COMMENTS AND MAKE YOU FEEL LIKE YOU'RE STUPID! STAY FARRRRRRRRRRR AWAY AS POSSIBLE!!!", + "pos": 0.036, + "neu": 0.768, + "neg": 0.196, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa6" + } + }, + { + "text": "She is terrible, very condescending, treats you like a child. DO NOT TAKE. Her methods are a joke, just random examples you'll never find useful. Nadjwa is easily 1 of the most incompetent, disrespectful individuals I've ever experienced. She tells you to \"be a man\" if you question her. Maybe someone should show her how to \"BE A PROF.\" So bad!", + "pos": 0.095, + "neu": 0.722, + "neg": 0.183, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa7" + } + }, + { + "text": "I am learning but disagree with her methods of instruction and tactics. She chided me in front of the whole class for failing to bring beads that we had been given the week before to class. I haven't been subjected to that kind of abuse since law school!", + "pos": 0.0, + "neu": 0.758, + "neg": 0.242, + "_id": { + "$oid": "6711d5a5cd60fca157e5daa8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a5cd60fca157e5daaa" + }, + "professor_name": "Corinna Messina", + "rating": 4.8, + "department": "Italian department", + "comments": [ + { + "text": "great teacher! will make sure you really know the material. textbook is needed but very cheap. highly recommend professoressa messina", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5daab" + } + }, + { + "text": "Honestly the nicest and she is such a fair grader! She is a wonderful teacher and won't make you feel dumb if you make mistakes. She gives tests and quizzes often, but she prepares you immensely for them. Your textbook is your bestfriend! If you have to take Italian, TAKE HER!", + "pos": 0.155, + "neu": 0.778, + "neg": 0.067, + "_id": { + "$oid": "6711d5a5cd60fca157e5daac" + } + }, + { + "text": "She's great. She was an understanding professor and she was very clear with her lessons.", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5daad" + } + }, + { + "text": "Professor Messina is a caring, patient and amicable person. She is a great lecturer.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5daae" + } + }, + { + "text": "She is the nicest professor ever and extremely helpful if you ever need it . As long as you do her assignments and study for the exams and quizzes you shouldn't have a problem getting an A.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5daaf" + } + }, + { + "text": "Great professor! I would definitely take her again, she is very helping when teaching material and will clarify and explain if anyone is confused. Very sweet and we even went on class related trips around the city!", + "pos": 0.277, + "neu": 0.674, + "neg": 0.048, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab0" + } + }, + { + "text": "awesome professor, very energetic, makes the environment comfortable and fun.", + "pos": 0.698, + "neu": 0.302, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab1" + } + }, + { + "text": "Messina is an inspiring Italian professor and makes sure everyone understands the days lesson before moving on to another topic. Drops 1-2 low quiz grades which can save your grade! Overall, very sweet and patient professor.", + "pos": 0.264, + "neu": 0.689, + "neg": 0.047, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab2" + } + }, + { + "text": "I love her! She is one of the best professors I've had at CCNY. She is passionate, professional, engaging, charming, and genuinely interested in making the process of learning Italian practical and enjoyable. I find her to be beautiful as well which further highlights her charisma and adds to her natural talents as a professor...a professoressa!", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab3" + } + }, + { + "text": "Amazing professor!! You would surely learn with her. 12 homework, 10 quizzes and 5 exams plus final but if you participate and do all this you'll get an A", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab4" + } + }, + { + "text": "She is the best....she is nice to the students and very helpful...take her for anything...", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab5" + } + }, + { + "text": "8-10pg paper in italian, tests throughout semester, midterm, final as well as homework assignments. The amount of work is plenty but not so difficult as she's helpful and flexible.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab6" + } + }, + { + "text": "Awesome professor! she is extremely helpful and nice. I am going to Italy to study this summer and she helped me out with some stuff that had nothing to do with the class but with my trip. Very clear! TAKE HER!", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab7" + } + }, + { + "text": "She's a great professor! She teaches material extremely well because she is very clear in her explanations and always reviews her lessons. She is always open to questions and she makes sure that each individual student is included in and understands each lesson. If you are considering taking Italian, I strongly suggest taking Prof. Messina!", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d5a5cd60fca157e5dab8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a6cd60fca157e5daba" + }, + "professor_name": "Vahid Azadeh Ranjbar", + "rating": 4.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Hard to understand his teaching.... Didn't like at all.", + "pos": 0.0, + "neu": 0.666, + "neg": 0.334, + "_id": { + "$oid": "6711d5a6cd60fca157e5dabb" + } + }, + { + "text": "LISTEN UP GUYS. HES THE BEST CS PROFESSOR EVER well i actually only took one cs class and I suck pretty bad but he made things way less painful and he was extremely caring. i learned so much from him and he was always available outside of class and really took the time to help out his students. hands down nicest prof i had at BU.", + "pos": 0.229, + "neu": 0.68, + "neg": 0.091, + "_id": { + "$oid": "6711d5a6cd60fca157e5dabc" + } + }, + { + "text": "Vahid was always supportive and engaged his students in lecture. The class is not easy and requires excellent fundamental knowledge of areas such as Fluid Mechanics, Thermodynamics, Differential Equations and very importantly, MATLAB. Vahid was always there to make sure no student fell behind. I highly recommend you take him.", + "pos": 0.259, + "neu": 0.668, + "neg": 0.073, + "_id": { + "$oid": "6711d5a6cd60fca157e5dabd" + } + }, + { + "text": "In reality, Vahid saved my career when he became my mentor for Senior Design. He is a great guy and it is very important to him that his students learn. Not all professor do that for the students. WHen I took ME43600 he put special interest in our understanding of the phenomena behind each Lab. Teaching is just natural for him.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dabe" + } + }, + { + "text": "Vahid was my mentor for Senior 1 and 2 ( ME473 and 474) for a year long, vahid was there, spring, summer, and fall. took time of his day to make sure that my group understood the project at hand and helped us complete our senior design project. truly great individual, enthusiastic, one of the best teachers i had in CCNY", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dabf" + } + }, + { + "text": "For mechanical engineers, this course is an elective however i fully recommend that you take this class. its not an easy class or an easy A but the lecturer vahid makes this class so much more enjoyable that it becomes one of your favorite. he teaches with enthusiasm everyday. readily available to help anytime and i do mean anytime. great teacher", + "pos": 0.319, + "neu": 0.66, + "neg": 0.021, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac0" + } + }, + { + "text": "Vahid is more than readily available. he is always there for his students, he will take time out of his day to make sure you understand and comprehend whatever you need. for ME473(senior Design1), he was my mentor and was there everyday to answer any given questions at any given time.", + "pos": 0.044, + "neu": 0.956, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac1" + } + }, + { + "text": "The lectures might be a bit intense sometimes because of the amount of useful info being presented on the board and you wouldn't have time to process it all. It is in your best interest to ask questions (if don't want to raise your hand in class, just go to his office). He is a lecturer who cares whether or not his students understand the material.", + "pos": 0.226, + "neu": 0.758, + "neg": 0.016, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac2" + } + }, + { + "text": "What's so good about Vahid is that he really puts in all his energy to each lesson to make sure you understand the material in a true deep way- not just a surface understanding. A real privilege to have him for aerostructures. Highly recommend him to anyone who is serious about the subject.", + "pos": 0.249, + "neu": 0.73, + "neg": 0.021, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac3" + } + }, + { + "text": "Professor always there for students. I do also take my senior design project with him as our adviser. He is not only help us to finish our project but also make do understand what we doing.", + "pos": 0.0, + "neu": 0.956, + "neg": 0.044, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac4" + } + }, + { + "text": "He takes his time to explain to you and answer any questions you have regarding the labs. Good lab instructor. It is also a cool class to take as an engineer as you do hands on stuff.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac5" + } + }, + { + "text": "One of the best instructors you can take. Brings in lots of energy and motivation to the class. Never a boring lecture. Knows how to convey information to the students properly. Always there to help during and after class.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac6" + } + }, + { + "text": "He knows his material. This class demands you to be involved and review your notes. The class is really hard but the professor presents the material in an organized manner. Expect to learn/review Matlab, thermodynamics, fluids etc. Participate and get involved.", + "pos": 0.0, + "neu": 0.967, + "neg": 0.033, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac7" + } + }, + { + "text": "Vahid is a very good teacher. He really cares about his students and knows about the materials very well. He is Clear in lecture and helpful even out of the class. This course is really tough. You need to know Matlab programming, concepts of fluid dynamics and also thermodynamics along with good knowledge of math. But finally you learn a lot.", + "pos": 0.195, + "neu": 0.785, + "neg": 0.021, + "_id": { + "$oid": "6711d5a6cd60fca157e5dac8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a6cd60fca157e5daca" + }, + "professor_name": "Stephanie Jean", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "She's okay. The worst thing about writing for the engineering is the group research paper/project, but she would pair you up with people based on your interest/major, so there won't be any problems.", + "pos": 0.118, + "neu": 0.813, + "neg": 0.069, + "_id": { + "$oid": "6711d5a6cd60fca157e5dacb" + } + }, + { + "text": "Do yourself a favor and take 21007 with Jean! She's the most caring and interesting proffesor in the entire campus. She's incredibly passionate and puts a lot of work into her course material. She wants you to learn so much! She's not a harsh grader, the work is easy. She has a great smile and makes class enjoyable. You'll love her!", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dacc" + } + }, + { + "text": "She's an amazing professor and the class is not difficult. For the whole semester it's about 3-4 papers and group project that you will be working on for most of the semester. I recommend to take her when you need a lighter class with your more demanding ones.", + "pos": 0.154, + "neu": 0.806, + "neg": 0.04, + "_id": { + "$oid": "6711d5a6cd60fca157e5dacd" + } + }, + { + "text": "Get ready to write a lot!!!", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dace" + } + }, + { + "text": "I took Jean-Stern for writing for engineering. She is a really nice prof who brought us snacks and candy once in a while. She makes the writing process simple by laying out everything you need to do and helping you along the way.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dacf" + } + }, + { + "text": "Prof. Jean Stern made lectures a really fun experience. She had us do ice-breakers the first day and everybody got to know each-other. The discussions in class are very interesting and Prof. keeps it real. She is one of the nicest Profs in CCNY. Take her if you have the chance.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad0" + } + }, + { + "text": "Kind, and listens to what you have to say. Class is not too demanding, and she keeps things pretty simple. As long as you're decent with grammar structure, doing some outside research (on whatever you decide to write about), and answering some questions in class (like for in-class activities), you should be able to get a good grade", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad1" + } + }, + { + "text": "To be honest, I loathed this course. Regardless it was required for engineering majors. Prof Jean made it as good as it could possibly be. She was very caring, motivated, and always had a great attitude.", + "pos": 0.34, + "neu": 0.598, + "neg": 0.062, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad2" + } + }, + { + "text": "The class may get boring at times but this teacher is really good. She knows her stuff. In order to pass, simply show up everyday and participate. You will have several major writing assignments as well as a final project and presentation. The project was about ten pages but choosing a topic that has a lot of information can help.", + "pos": 0.154, + "neu": 0.822, + "neg": 0.024, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad3" + } + }, + { + "text": "Amazing human being! Best technical writing professor ever! Spaces out projects and assignments, and not a harsh grader.", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad4" + } + }, + { + "text": "Stephanie is a fantastic professor, probably your best bet for Writing for Engineers. She's SUPER understanding and teaches technical writing really well. There are a decent amount of papers but she's also really lenient with the grading and gives you plenty of time to do them. She gives a sample of each paper from the txtbook which is rarely used", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad5" + } + }, + { + "text": "Great teacher, would definitely recommend her. She's lenient, teaches the material well, and cares about her students. She takes her time grading papers in order to give good feedback so that you can improve as a writer. Gives a fair amount of work, but she gives you plenty of time to do it.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad6" + } + }, + { + "text": "I took her Writing for Engineers class. She is a dedicated teacher and really flexible with her students. While she does assign a significant amount of work, she keeps students informed of deadlines and is really considerate when it comes to schedules. If you do your work and show you are putting in effort you will get a good grade.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dad7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a6cd60fca157e5dad9" + }, + "professor_name": "Adam Poltrack", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "Great professor, very well organized.\nMany quizzees but they are not hard", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dada" + } + }, + { + "text": "hard to reach by email. quiz each week. have to do 4 discussion board. an essay for midterm and final. if you try to email him he would not reply. have to wait for class to talk to him", + "pos": 0.028, + "neu": 0.937, + "neg": 0.035, + "_id": { + "$oid": "6711d5a6cd60fca157e5dadb" + } + }, + { + "text": "He does not reply to email and don't care about his students.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d5a6cd60fca157e5dadc" + } + }, + { + "text": "He does not care about his students. He rarely replies to emails and does not even have regular office hours.", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d5a6cd60fca157e5dadd" + } + }, + { + "text": "I hope he could provide more help to us.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dade" + } + }, + { + "text": "HE IS AMAZING. One of the best professors ever. He is so caring and the class was easygoing, just do the work! His class had 3 papers, 2 easy quizzes (review sheet provided) and blog posts on blackboard (hw). Lenient with grading, and lectures were interesting. He gives back great feedback on rough drafts. Must participate. VERY COOL & CHILL.", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dadf" + } + }, + { + "text": "Such a nice guy. His class is very easy if you do your papers on time. He gives feedback on your rough draft for the papers. Take him if you can.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dae0" + } + }, + { + "text": "He was one of he best professors I had freshman year. He takes his job serious and clearly cares about his students. Available outside of class. Papers are staraightfkrward and gives good feedback. Take him if you get the chance you wont regret it.", + "pos": 0.309, + "neu": 0.667, + "neg": 0.023, + "_id": { + "$oid": "6711d5a6cd60fca157e5dae1" + } + }, + { + "text": "Prof Poltrack is the BESTTT!! TAKE HIM!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dae2" + } + }, + { + "text": "Amazing professor. Provides great feedback on papers and help you improve your writting", + "pos": 0.6, + "neu": 0.4, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dae3" + } + }, + { + "text": "Super nice and great class to learn the basic's of English.", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dae4" + } + }, + { + "text": "Prof. Poltrack is a really nice guy. He's always willing to help you with whatever you need. Take if you want a great teacher and a great grade.", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dae5" + } + }, + { + "text": "I'm surprised Prof. Poltrack isn't on here! To be honest, he's great! You can expect thorough feedback on every assignment he gives you whether it be a rough draft or a final. HIS CLASS IS A MUST! He makes sure you understand the writing techniques and how to better your writing. He won't disappoint.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d5a6cd60fca157e5dae6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a7cd60fca157e5dae8" + }, + "professor_name": "Shahabedin Mansoorbaghaei", + "rating": 4.2, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Teaching and understanding the course \"Dynamics\" is not easy at all. I believe that the Mechanical Engineering Departments is the Schools of Engineering should find professional lecturers to teach \"Dynamics\". Unfortunately, the thick accent of this lecturer, and on top of that, his \"unorganized\" way of teaching caused a very hard time to me. Avoid.", + "pos": 0.096, + "neu": 0.766, + "neg": 0.139, + "_id": { + "$oid": "6711d5a7cd60fca157e5dae9" + } + }, + { + "text": "I liked the way he did the final for us. For the last few lectures, he would tell us which of the examples in class would be similar to final exam questions and when the final came a long, the questions were exactly as he said they were. Made it very easy to study for the final and get partial credit for knowing the process of solving the question.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d5a7cd60fca157e5daea" + } + }, + { + "text": "Very good professor. Try to answer all the exam questions because he gives a lot of partial credit. If you show that you have the right technique, he'll give you points even if the final answer is wrong. You can't really cheat either because he makes his own Qs. He gives extra credit worth 8pts to final grade. It is a hard class but try your best.", + "pos": 0.192, + "neu": 0.766, + "neg": 0.042, + "_id": { + "$oid": "6711d5a7cd60fca157e5daeb" + } + }, + { + "text": "HE IS AMAZING. CCNY.. I dont know how you havent signed this guy on a $100Million contract yet because he is a gem. His lectures are amazing and he teaches so well. best online class ive ever taken by far. My only criticisms are that the grade is entirely assessments so theres very little room for error. the TA also grades the quizzes too harshly.", + "pos": 0.197, + "neu": 0.748, + "neg": 0.055, + "_id": { + "$oid": "6711d5a7cd60fca157e5daec" + } + }, + { + "text": "Good prof. Clearly the rating below me must have the wrong guy because Prof Mansoor gave good lectures and does examples in class unlike many other profs.", + "pos": 0.246, + "neu": 0.665, + "neg": 0.09, + "_id": { + "$oid": "6711d5a7cd60fca157e5daed" + } + }, + { + "text": "I am not sure about the reality, originality and authenticity of the comments in below, but this adjunct lecturer does not present the as said quality as the commenters below. Thick accent, going off the topic frequently, forgetting the schedule, picking on the students, sensitive to late presence, unclear grading procedure, and grammatic errors!", + "pos": 0.0, + "neu": 0.874, + "neg": 0.126, + "_id": { + "$oid": "6711d5a7cd60fca157e5daee" + } + }, + { + "text": "Gives amazing lectures, and was very understanding with the transition to online bc of pandemic. Does a lot of examples instead of just concepts. Very helpful&cares that we understand. His tests are tough and combine a lot of concepts together, but if u do your best you'll be fine. He tells u what examples to study from hws. AMAZINGG, love the guy!", + "pos": 0.221, + "neu": 0.763, + "neg": 0.017, + "_id": { + "$oid": "6711d5a7cd60fca157e5daef" + } + }, + { + "text": "One of the best engineering professors in CCNY. Unlike most engineering professors, he actually shows example problems and gives clear explanations in how to approach them. Do not doze off during class because his lectures really help. Homework is assigned every week, but be sure to do all of them as they will prepare you for exams/quizzes.", + "pos": 0.148, + "neu": 0.823, + "neg": 0.029, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf0" + } + }, + { + "text": "He is a nice teacher but lacks few things.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf1" + } + }, + { + "text": "By far the best engineering professor I've had at City so far. His lectures are incredibly clear, with a lot of examples throughout, and it's obvious that he really wants everybody to understand the material. Would definitely recommend.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf2" + } + }, + { + "text": "MANSOOR IS MY MAIN MAN. He is straight up the best teacher I have had. He is pedagogy at its finest. He is tough since you have to do all the sample problems and take good notes and PAY ATTENTION. BUT it's WORTH IT. If you work hard, ask questions, and study, you will get an A, no doubt. He is VERY GOOD, but don't take if you dont know how to study", + "pos": 0.212, + "neu": 0.717, + "neg": 0.071, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf3" + } + }, + { + "text": "Unlike other professor in CCNY, he is one of the best professor who really does problems in ME department. Explain the material in detail and steps clearly through presetning problem. Even he is physics major but i really like his class. Exams are fair but you have to study REALLY HARD to get an A. No curve but willing to give extra credtis", + "pos": 0.144, + "neu": 0.715, + "neg": 0.141, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf4" + } + }, + { + "text": "Professor Shahab is awesome. Unlike other professors, he is willing to do problems on textbook in class which makes everyone understand dynamics really well. Exams are neither easy nor difficult. But if you study hard for them, you will do fine. No curve. But willing to give extra credits. he is great, take him!!!", + "pos": 0.253, + "neu": 0.613, + "neg": 0.134, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a7cd60fca157e5daf7" + }, + "professor_name": ". Fedock", + "rating": 3.5, + "department": "Philosophy department", + "comments": [ + { + "text": "I was dreading taking Intro to Philosophy over the summer; but she was very relaxed, kind, well prepared, and well-rehearsed on the subject matter. I strongly recommend taking her!", + "pos": 0.492, + "neu": 0.46, + "neg": 0.048, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf8" + } + }, + { + "text": "Professor Fedock is a good professor and nice person. Unless you are philosophy major of course the material is not going to be interesting. Take good notes easy A/B. She breaks down all course material.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d5a7cd60fca157e5daf9" + } + }, + { + "text": "Good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d5a7cd60fca157e5dafa" + } + }, + { + "text": "Can get boring but pretty easy. Just review the class notes and read summaries online if necessary.", + "pos": 0.342, + "neu": 0.588, + "neg": 0.069, + "_id": { + "$oid": "6711d5a7cd60fca157e5dafb" + } + }, + { + "text": "She was awfully reliant on our textbook and didn't seem too enthusiastic to be teaching (logical reasoning) last summer. But she was nice, had clear expectations, and wasn't too difficult.", + "pos": 0.294, + "neu": 0.658, + "neg": 0.048, + "_id": { + "$oid": "6711d5a7cd60fca157e5dafc" + } + }, + { + "text": "an easy A if there ever was one, but she's also the most boring professor i've had @ city. dumbs down topics, so in the end, ppl HATE philosophy if they never had it. she's detrimental to the department. i tried to start a discussion, but she's set in her ways - no talking while she's scribblin' whole chapter summaries on the board.. fire her!", + "pos": 0.024, + "neu": 0.738, + "neg": 0.237, + "_id": { + "$oid": "6711d5a7cd60fca157e5dafd" + } + }, + { + "text": "I am learned from the class and she is a good prof , she does make it boring. Papers are straight from your notes .", + "pos": 0.165, + "neu": 0.756, + "neg": 0.079, + "_id": { + "$oid": "6711d5a7cd60fca157e5dafe" + } + }, + { + "text": "she is a nice person but unfortunately she makes the clas more boring than what it already is. She's not a hard grader..ah...doesn't care about attendance!", + "pos": 0.097, + "neu": 0.608, + "neg": 0.296, + "_id": { + "$oid": "6711d5a7cd60fca157e5daff" + } + }, + { + "text": "She is new at the teaching thing, The book is hard but she breaks down every thing she goes over. Paper are straight forward and her tests too. Nice professor", + "pos": 0.177, + "neu": 0.788, + "neg": 0.035, + "_id": { + "$oid": "6711d5a7cd60fca157e5db00" + } + }, + { + "text": "she paraphrases the textbook - BORING!", + "pos": 0.0, + "neu": 0.601, + "neg": 0.399, + "_id": { + "$oid": "6711d5a7cd60fca157e5db01" + } + }, + { + "text": "most boring class ever, find another teacher for the rational animal.. she doesnt care about her students at all. she doesnt care about attendance and is pretty easy but she is just so damn boring.", + "pos": 0.089, + "neu": 0.614, + "neg": 0.297, + "_id": { + "$oid": "6711d5a7cd60fca157e5db02" + } + }, + { + "text": "If you want an A take her. If u care to learn Phil, then sorry she is not for you. Good luck", + "pos": 0.266, + "neu": 0.603, + "neg": 0.131, + "_id": { + "$oid": "6711d5a7cd60fca157e5db03" + } + }, + { + "text": "Boring class. Just read what she tell you and you will be okay and probably would have to do extra research to better understand what she is saying.", + "pos": 0.15, + "neu": 0.779, + "neg": 0.072, + "_id": { + "$oid": "6711d5a7cd60fca157e5db04" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a8cd60fca157e5db06" + }, + "professor_name": "Alexander Stavropoulos", + "rating": 3, + "department": "History department", + "comments": [ + { + "text": "not a good professor at all. If you like studying more than 100 terms each time you have a test or quiz then take him. He takes attendance but no one pays attention. you dont need to.", + "pos": 0.043, + "neu": 0.845, + "neg": 0.112, + "_id": { + "$oid": "6711d5a8cd60fca157e5db07" + } + }, + { + "text": "nice guy but awful professor. No one pays attention in class b/c what he says during class has no relation to what you need to know for exams. Classes are boring. Tests are 2 essay questions and 5 words to define. For each test theres about 100+ vocab words to study but you only have to define 5 and he doesnt tell u which. Would not take again.", + "pos": 0.025, + "neu": 0.813, + "neg": 0.162, + "_id": { + "$oid": "6711d5a8cd60fca157e5db08" + } + }, + { + "text": "He may not be the most interesting or well-spoken professor, but he is very nice and tries his hardest to make the class easy. It is difficult to pay attention in class just bc of the context of the lectures, but his tests and quizzes are so easy. Only 2 HW assignments. Super nice guy, I recommend this class.", + "pos": 0.333, + "neu": 0.608, + "neg": 0.059, + "_id": { + "$oid": "6711d5a8cd60fca157e5db09" + } + }, + { + "text": "He's an ok prof. His midterm is based off his lecture. You don't even need the text. Gave us 3 essays. You need books for them. Attendance is mandatory and its best you go. He sends his notes to you by email. He is very helpful. You don't really need to buy the text but you do need to buy the books he assigns on the syllabus. Ask questions.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db0a" + } + }, + { + "text": "Not a hard class, easy midterm and final, and only 3 2-4 pages papers", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db0b" + } + }, + { + "text": "He's not the most interesting teacher but he understands that we have order extremely hard classes so he takes it easy. You might fall asleeep a lot but I highly recommend him. He's so nice it's unbelieveable", + "pos": 0.258, + "neu": 0.663, + "neg": 0.078, + "_id": { + "$oid": "6711d5a8cd60fca157e5db0c" + } + }, + { + "text": "I don't care how boring he is, or how he doesn't look at anyone directly when they are talking, or how he mumbles on for hours after we have all lost interest, he is such a nice man. ANYONE who fails his class must wonder how they even got into college. HE JUST SO NICE!", + "pos": 0.195, + "neu": 0.693, + "neg": 0.112, + "_id": { + "$oid": "6711d5a8cd60fca157e5db0d" + } + }, + { + "text": "he is a great professor! he email the notes and explains everything in class. i like the fact that he uses a projector (very sophisticated). he doesn't give any work.......only a midterm, a research paper and a final. he is also very easy going and cool. i highly recommend his class to anyone!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db0e" + } + }, + { + "text": "Good professor, talks in class and emails the notes. I happen to like him and I think his grading policy is somewhat fair.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db0f" + } + }, + { + "text": "no in class work only mid term one reseach paper and final only. reads from the projector every day boring no one pays attention", + "pos": 0.0, + "neu": 0.758, + "neg": 0.242, + "_id": { + "$oid": "6711d5a8cd60fca157e5db10" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5a8cd60fca157e5db11" + } + }, + { + "text": "The class could be engaging and fun BUT the Prof has sucked all the life and vitality out of the subject(the study of ALL world civilizations from prehistory to about the renaissance) and reduced it to a horrible lecture. His use of the overhead projector should be banned!", + "pos": 0.11, + "neu": 0.679, + "neg": 0.211, + "_id": { + "$oid": "6711d5a8cd60fca157e5db12" + } + }, + { + "text": "Do me a favor, stop lecturing and forget the transparencies, be yourself, you seem like a really cool guy, use that to your advantage. The only problem with this professor is he talks and talks and talks and talks. He doesn't really involve the class but maybe that will change, it is his first year", + "pos": 0.115, + "neu": 0.803, + "neg": 0.082, + "_id": { + "$oid": "6711d5a8cd60fca157e5db13" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a8cd60fca157e5db15" + }, + "professor_name": "Victoria Chevalier", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Professor Chevalier is very deceiving and confusing. She acts like she likes your work but then when you get back your paper its way less than what you expected. She rolls her eyes constantly and is very sarcastic. She expects the students to be on her doctoral level which isn't fair. Trust me, unless you registered last minute, don't take her.", + "pos": 0.052, + "neu": 0.771, + "neg": 0.177, + "_id": { + "$oid": "6711d5a8cd60fca157e5db16" + } + }, + { + "text": "BE AWARE OF MID-SEMESTER EVALUATION. SHE IS A GOOD PROFESSOR BUT SHE CAN BE VERY DECEIVING WHEN IT COMES TO YOUR GRADE. SHE POINTS OUT THAT SHE DOES NOT GIVE A's WHICH MEAN SHE IS TOUGH & HARD TO PASS VERY VERY MISLEADING WITH YOUR GRADE I STRESS. IF YOU WANT TO SERVIVE THE SEMESTER DO NOT TAKE HER CHANGE FOR ANOTHER PROFESSOR ASAP.", + "pos": 0.057, + "neu": 0.666, + "neg": 0.277, + "_id": { + "$oid": "6711d5a8cd60fca157e5db17" + } + }, + { + "text": "Do not take her class unless you want to fail. You will not know where you stand in this class until you receive your grade. Every paper was a failing grade and is very discouraging when i actually tried so hard. Very sarcastic and gets annoyed easily when asking a question.", + "pos": 0.058, + "neu": 0.675, + "neg": 0.267, + "_id": { + "$oid": "6711d5a8cd60fca157e5db18" + } + }, + { + "text": "BE AWARE OF MID-SEMESTER EVALUATION. SHE IS A GREAT PROFESSOR BUT SHE CAN BE A DRAGON AND ROLL HER EYES. SHE IS REALLY TOUGH TO PASS AND MISLEADING AT TIMES WITH YOUR GRADE. CAN BE VERY \"PERSONAL\" AND BE HARD ON YOU FOR MANY REASONS.", + "pos": 0.05, + "neu": 0.806, + "neg": 0.144, + "_id": { + "$oid": "6711d5a8cd60fca157e5db19" + } + }, + { + "text": "She was so easy. My whole class got A's, even if you missed a few papers.", + "pos": 0.188, + "neu": 0.702, + "neg": 0.11, + "_id": { + "$oid": "6711d5a8cd60fca157e5db1a" + } + }, + { + "text": "shes hot as hell so itll be hard to pat attention in class, but once you get past that youll actually like the class", + "pos": 0.115, + "neu": 0.74, + "neg": 0.146, + "_id": { + "$oid": "6711d5a8cd60fca157e5db1b" + } + }, + { + "text": "VERY GOOD TEACHER< VERY SEXY< VERY INTELLIGENT<", + "pos": 0.723, + "neu": 0.277, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db1c" + } + }, + { + "text": "Pretty good professor. Her class is not that hard to understand and there is also nothing suspicious about defending homosexuality unless you're homophobic, which is a different thing all together.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db1d" + } + }, + { + "text": "very good but strange teacher. she's 2 honest on the papers. she lets the whole class see everyone else's sentences if it has a fragment in it. i grew alot of suspicion after she was defending homosexuality to an extent.", + "pos": 0.161, + "neu": 0.717, + "neg": 0.123, + "_id": { + "$oid": "6711d5a8cd60fca157e5db1e" + } + }, + { + "text": "All I can say is that she is very lenient and just expects the class to participate. (Hint: Do not take this morning if you are a late sleeper... Otherwise you'll just stay asleep.)", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db1f" + } + }, + { + "text": "I remember her because she is very gorgeous. She is very helpful and will clarify things for you. She will give you honest feedback on your papers. Most important of all, she makes the class enjoyable, especially in the morning classes.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db20" + } + }, + { + "text": "She is a very easy going, vibrant professors...who caters to her students needs..I had her this semester (Fall04)..and she made me like english as a math major....(I thought that was my weakest area)..now I actually want to minor in english.....", + "pos": 0.218, + "neu": 0.715, + "neg": 0.067, + "_id": { + "$oid": "6711d5a8cd60fca157e5db21" + } + }, + { + "text": "I am an old student of her's. I am surprised that no one else rated her the best professor. So, new students get online and start rating her the best.", + "pos": 0.268, + "neu": 0.675, + "neg": 0.057, + "_id": { + "$oid": "6711d5a8cd60fca157e5db22" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a8cd60fca157e5db24" + }, + "professor_name": "Wesley Mathewson", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "He's very clear about the course material. Makes full use of technology. The best part: he sends emails about whats going on and about HW dues.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db25" + } + }, + { + "text": "One of the best professors in CCNY. Learned a lot and got an A.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db26" + } + }, + { + "text": "EASY TEACHER There is are some requirements by the department like papers which all classes have to do but this guy is the most helpful and easiest grader there! AMAZING PROFESSOR He will help you and pass you TAKE THIS GUY TO GET AN A!!!", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db27" + } + }, + { + "text": "Wes is a cool professor that gives good feedback on your essays, which is 4 essays and one final project paper. Random stuff happens to him so expect random absences. He does not lash out on anyone, has the most patience & benevolence & honesty a professor should have. He's laid back and expects work done, so show up. Recommend as an easy A.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db28" + } + }, + { + "text": "This class felt like a remedial class - no momentum. 90% of the time he's answering rhetorical questions by students. If you're a fast learner, I suggest taking someone else. Although it's an easy A, you get bored from this class incredibly fast. Was told I don't participate - when in reality everything's been said! Material is not that difficult!", + "pos": 0.12, + "neu": 0.816, + "neg": 0.064, + "_id": { + "$oid": "6711d5a8cd60fca157e5db29" + } + }, + { + "text": "one of the best professors I've had thus far. he loves doing peer review each time he gives a writing assignment which is great since i like to get more than one person giving their input on my writing. he explains clearly about what he wants in his assignment and gives these thoughtful short writing warm ups every morning that are enjoyable", + "pos": 0.337, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db2a" + } + }, + { + "text": "Wes is the man!!! He gave us a 4 essays to do this semester and one research paper. He usually gives us like 1-1.5 weeks to draft up the essay and corrects it throughout the following week. Wes is a really cool professor that layouts all the guidelines in class and all you have to do is follow it. He's not an easy A, but you get what you deserve", + "pos": 0.06, + "neu": 0.916, + "neg": 0.023, + "_id": { + "$oid": "6711d5a8cd60fca157e5db2b" + } + }, + { + "text": "Awesome young teacher that is willing to help you whenever you need help. Gives assignments with different parts that will help you write the essays that are given throughout the semester. Not a harsh grader. As long as you try you will not fail!", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db2c" + } + }, + { + "text": "This man right here is a beast. He gives a fair amount of work but that's all to help you. He gives a lot of feedback on writing and gives you a chance to boost your essay grade up.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db2d" + } + }, + { + "text": "He was an amazing teacher and I had a good time in his class. He dances a lot and isn't boring at all. I had a lot of fun and he's the easiest class ever.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db2e" + } + }, + { + "text": "He is a great professor who explains everything. He does have lot of papers but they are divided into smaller assignments to make them easier for you. He helps out at every turn and there are no tests at all. The final is also a paper which you get to work on for nearly 6 weeks with his help. I think its safe to say its an easy A relatively.", + "pos": 0.241, + "neu": 0.727, + "neg": 0.032, + "_id": { + "$oid": "6711d5a8cd60fca157e5db2f" + } + }, + { + "text": "He's probably one of the coolest english teacher at the school. The assignments aren't that hard, and he's always trying his best to help you when you need it.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db30" + } + }, + { + "text": "Hes a great teacher whos really interactive with his students. He is always available via email. Scheduling a meeting with him was very easy and his times are very flexible. He does give a lot of work but he does his best to prep you for the essays. Overall he is a great teacher and I would highly recommend him.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d5a8cd60fca157e5db31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a9cd60fca157e5db33" + }, + "professor_name": "Michelle Thompson", + "rating": 3.4, + "department": "African-American Studies department", + "comments": [ + { + "text": "Your final grade in this class is solely based on how well you execute your final project and handing in 10 weekly wikis. You have to complete an annotated bibliography on your topic and do a presentation of it anyway you want. If you do these required tasks you are almost guaranteed an A.", + "pos": 0.061, + "neu": 0.939, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db34" + } + }, + { + "text": "I had taken her during the Covid pandemic. Personally its better to take her in person but even with online coursing you still had a feel of the real class. She was very caring and supportive. The class is based around one main project that you do throughout the semester, and I know some may not like that. However, it is definitely an easy A.", + "pos": 0.219, + "neu": 0.747, + "neg": 0.034, + "_id": { + "$oid": "6711d5a9cd60fca157e5db35" + } + }, + { + "text": "Not a very good professor. Grades entire class on one project. Lectures weren't helpful or informative. Boring class !", + "pos": 0.0, + "neu": 0.679, + "neg": 0.321, + "_id": { + "$oid": "6711d5a9cd60fca157e5db36" + } + }, + { + "text": "worst prof ever. do not see how ccny employs her it makes them look terrible. the rudest/mean/inconsiderate woman. grades us on 1 project the whole semester and gave multiple students F or incomplete. disappointment. boring irrelevant movies & when she did lecture it was pointless. complained & obv took it out on us with her unfair grades. immature", + "pos": 0.0, + "neu": 0.737, + "neg": 0.263, + "_id": { + "$oid": "6711d5a9cd60fca157e5db37" + } + }, + { + "text": "Prof Thompson only cares about her own research. She is lazy and she doesnt teach anything. She doesnt work with her students. I dreaded going to her class every week. She doesnt respond to emails either. You have one project and you are basically on your own. In class we would watch boring irrelevant movies. I regret taking that class. Horrible.", + "pos": 0.041, + "neu": 0.755, + "neg": 0.203, + "_id": { + "$oid": "6711d5a9cd60fca157e5db38" + } + }, + { + "text": "she is lazy. did not teach a single lesson. does not respond to emails. gets mad if you ask her questions but students have a right to ask about their grade and coursework. basically treats us as if we are a burden, yet this is her job? graded on one thing the entire class which she took forever to grade. this whole class was dissapointing.", + "pos": 0.0, + "neu": 0.89, + "neg": 0.11, + "_id": { + "$oid": "6711d5a9cd60fca157e5db39" + } + }, + { + "text": "Personally, I did not enjoy this class. I thought I would be learning about women in the African Diaspora but instead the entire class was self research. We spent each class just hearing each students update on their project. Thompson makes it clear that she does not want to be contacting once final grades are posted. She will indeed ignore you", + "pos": 0.051, + "neu": 0.853, + "neg": 0.096, + "_id": { + "$oid": "6711d5a9cd60fca157e5db3a" + } + }, + { + "text": "There are three response papers and a final project you complete throughout the semester. Do it how she wants, and it is an easy pass. When you get the website for office hours on the syllabus, BOOK IMMEDIATELY! If you wait, there will be nothing left. She goes by office hours ONLY.", + "pos": 0.059, + "neu": 0.941, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db3b" + } + }, + { + "text": "She really blessed it up. Take her class if you want an easy A", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db3c" + } + }, + { + "text": "She totally inspired me to become a Black studies major... Michelle is comical and fair. Her guidelines to do well are easily spelled out in the syllabus and she is very helpful outside of class. Your bet bet to contact her is possibly through office hours or scheduling another time to meet her because she receives a lot of emails.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db3d" + } + }, + { + "text": "Three response papers, one final paper. As long as you do ALL the work and plan your time wisely, this class is easy. You can set up appointments to meet with her (do it early because they get taken fast) and you can email her (she tries her best to send emails fast). If you like showing your creative side with history, this is the class for you!", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db3e" + } + }, + { + "text": "Very nice lady. Relaxing course. Only 5 response papers throughout the semester, can be submitted at any time, 1 project , and a take home final(which is an essay). Easy A, could've got one but was too caught up in other classes.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db3f" + } + }, + { + "text": "Shes okay. She just talks and is condescending at times.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db40" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5a9cd60fca157e5db42" + }, + "professor_name": "Chunyu Yuan", + "rating": 2.4, + "department": "Computer Science department", + "comments": [ + { + "text": "Lectures are difficult and kinda useless, you can learn on your own using the notes he provides. Attendance is mandatory though. Allowed to use a cheat sheet on midterm, and final project was extremely short and simple. Quizzes are tricky however, and it is very easy to mess up with a small mistake. Would recommend otherwise.", + "pos": 0.102, + "neu": 0.684, + "neg": 0.215, + "_id": { + "$oid": "6711d5a9cd60fca157e5db43" + } + }, + { + "text": "He will help if you ask questions. For CSC 103 lab, everything is mostly on zybooks, so you just have to get that lab done during the time you have with him and you can leave early if you show him that you got it done!", + "pos": 0.062, + "neu": 0.913, + "neg": 0.025, + "_id": { + "$oid": "6711d5a9cd60fca157e5db44" + } + }, + { + "text": "He's so chill. I don't know why the reviews were mean lmfao. Attendance and quizzes are taken every class. Quizzes were announced before class. All his notes are shared online. Def gotta take this man. He's an easy A+", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db45" + } + }, + { + "text": "10% Weekly Quizzes & Attendance | 60% Assignments (3) | 15% Midterm Exam | 15% Final Project | The assignments are similar to basic LeetCode problems. Midterm was fair (gives past midterms to study). Final Project was implementing a binary tree (with extra credit). Lectures sometimes dragged but overall a nice professor!", + "pos": 0.13, + "neu": 0.819, + "neg": 0.051, + "_id": { + "$oid": "6711d5a9cd60fca157e5db46" + } + }, + { + "text": "He gives weekly quizzes at the end of each class testing you on the previous week's material. The quizzes are super easy if you read the material. The class is extremely basic and can be learned out of class. His final project was super generous with the bonus on top.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db47" + } + }, + { + "text": "The lectures are very confusing but if you have knowledge from CSC10300 and some knowledge from CSC21200, it is not very difficult.\nThere are very trivial weekly quizzes and a midterm, and a final project which was moderately difficult.", + "pos": 0.067, + "neu": 0.788, + "neg": 0.145, + "_id": { + "$oid": "6711d5a9cd60fca157e5db48" + } + }, + { + "text": "I have him as my TA for csc 103 and the labs are basically just zybooks. I see no point in attending lab other than attendance because it's mandatory. He does post notes in blackboard but those notes are something you can learn from zybooks.", + "pos": 0.025, + "neu": 0.94, + "neg": 0.035, + "_id": { + "$oid": "6711d5a9cd60fca157e5db49" + } + }, + { + "text": "This is supposed to be a 1 credit intro course to python and the lectures fit that. HOWEVER, his assignments were way outside the scope of what he taught and way too difficult for what the class should have been. Quiz at the end of every class counts as attendance. Doesn't curve, way too many people fail. Take any other teacher if you can!!", + "pos": 0.071, + "neu": 0.837, + "neg": 0.092, + "_id": { + "$oid": "6711d5a9cd60fca157e5db4a" + } + }, + { + "text": "For a one credit class, he made it way too difficult than it already is. The project that covers 30% of your grading was confusing and covered topics that he did not even go over during class. 3 other homework assignments and in class quiz. Make sure to attend class.", + "pos": 0.089, + "neu": 0.832, + "neg": 0.08, + "_id": { + "$oid": "6711d5a9cd60fca157e5db4b" + } + }, + { + "text": "This man wants a 1 credit class to be a 4 credit class. Makes the class unnecessarily hard for no reason and we are doing basic things in python too. The project he assigns at the end had unclear instructions, and he decided it was a good idea to send in a series of clarification emails 4 days before the project is due, seconding guessing ourselves", + "pos": 0.11, + "neu": 0.814, + "neg": 0.076, + "_id": { + "$oid": "6711d5a9cd60fca157e5db4c" + } + }, + { + "text": "I put hilarious because he makes you do so much just for one credit + a basic Python class (which he makes unnecessarily complicated). His instructions never make sense Im honestly impressed to how he got to become a professor in the first place. If you have a different choice for a professor please do so", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d5a9cd60fca157e5db4d" + } + }, + { + "text": "One of the worst professor i have ever seen will give u topics that he never discussed in the class he is just an hard grader and will grade u tough beware of the final project", + "pos": 0.0, + "neu": 0.825, + "neg": 0.175, + "_id": { + "$oid": "6711d5a9cd60fca157e5db4e" + } + }, + { + "text": "The professor is awful. This course is a 1 credit class but somehow he goes way beyond to make it a 4 credit. On the easiest language too. His attendance and quiz grades are mixed so even if you make it to class but not understand the material by the end of the class for the quiz you attendance doesn't even matter. Rubrics unclear. NO CURVES.", + "pos": 0.116, + "neu": 0.772, + "neg": 0.111, + "_id": { + "$oid": "6711d5a9cd60fca157e5db4f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5aacd60fca157e5db51" + }, + "professor_name": "Joseph Boisvere", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "He values quality over quantity. Don't worry about handing in your assignments late, as long as you try your best, even if it is 2 months late, like me, he gave me a 95% on it. 3 essays and 1 final group project. The first two essays were hard for me as I had to read a 180 page book and a 50 page book, but I doubt anyone else read that in my class", + "pos": 0.097, + "neu": 0.848, + "neg": 0.055, + "_id": { + "$oid": "6711d5aacd60fca157e5db52" + } + }, + { + "text": "Prof Boisvere is an angel from heaven istg, hes a really funny guy and grabs his students attention very easily it's a lit class which means a lot of reading but he gave us movies to watch and very interesting literature to read. He doesn't mind if you're absent sometimes, but participation is a part of the grade. he only gave three papers for sem", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db53" + } + }, + { + "text": "nice prof", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db54" + } + }, + { + "text": "I had Prof Boisvere for French lit, he makes it easy for students to pass. There was a lot of novel reading involved (good selection), and discussion that followed. There were three papers and the final paper. Loved his class, super chill!", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db55" + } + }, + { + "text": "I wish all my professors were like Joseph. Took him for French lit, it was his first semester teaching that class and it was AWESOME! 10/10", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db56" + } + }, + { + "text": "Such a nice guy!", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db57" + } + }, + { + "text": "Such a charm. He has a youthful personality, which is rare to find from professors. He gives you an A as long as youre putting in your best effort. He is also very caring and understands if you have too much going on with other Major classes, so as long as you talk to him about extensions beforehand, he will permit them. He LOVES discussion boards", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db58" + } + }, + { + "text": "VIP!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db59" + } + }, + { + "text": "I took Professor Boisvere pre-pandemic and he was amazing. Very funny and witty. He makes class exciting. Best English teacher by far. I'm sure if I had him online it would have been the same. Syllabus is clear and concise and he's an easy grader! I recommend to complete all the assignments to the best of your ability and your guaranteed an A.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db5a" + } + }, + { + "text": "Professor Boisvere was honestly one of the best English teachers you could ask for. He was always willing to help and made the online class very entertaining. He is very helpful, patient and goes out of his way to accommodate his students. I highly recommend him!", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db5b" + } + }, + { + "text": "One of the best professors I've had by far. He's very clear as to what he's grading you on, it's not difficult to keep up with the class. He's very accessible outside of class and is willing to help you with what you need! If you do your work on time and keep up with every assignment, you are certain to get the grade you deserve!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db5c" + } + }, + { + "text": "HE IS AMAZING AND INCREDIBLE. He is fair and nice. Best English for science professor and if you did not take with him you lost your amazing chance and you are the one losing. I can say a whole speech on how amazing he is and never get tired. He deserves the best. First comment rated him 4 by mistakes but he deserves 5 so I have to rate him again.", + "pos": 0.237, + "neu": 0.701, + "neg": 0.062, + "_id": { + "$oid": "6711d5aacd60fca157e5db5d" + } + }, + { + "text": "since I am the first to rate him as student in CCNY. He is totally amazing and nice. It is an easy A if you participate and do your work. He grades fair and his assignments is fair enough. I recommended him to my friends from how nice he is. 1 discussion post every week. 2 easy and 1 group easy. He is always welling to help happily through anything", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db5e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5aacd60fca157e5db60" + }, + "professor_name": "Hayley Hancock", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Super kind and understanding, one of the easiest grades with work that's efficiant", + "pos": 0.502, + "neu": 0.498, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db61" + } + }, + { + "text": "Prof Hancock is really the best. Her syllabus is very clear and her assignments are super easy to do and understand. I definitely recommend taking this FIQWS class. She's caring and sweet!", + "pos": 0.519, + "neu": 0.481, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db62" + } + }, + { + "text": "She is so great! I had her last semester and she is so funny and nice. She cares for her students and if you have any questions with the lesson or assignments she will help you. There was assignments but fairly easy if you took notes and see the notes she posted on BB.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db63" + } + }, + { + "text": "Took her for PSY 36300, best professor: super nice, works with you, interesting lectures.", + "pos": 0.576, + "neu": 0.424, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db64" + } + }, + { + "text": "Professor Hancock is one of the best professors I have had as a student here at CCNY. She makes her lectures entertaining, which allows you to stay focused. She gave us four papers which were a page and a half each. All of her exams were online and were open-book. I would recommend taking any of her courses.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db65" + } + }, + { + "text": "She was such an amazing professor. All her lectures were interesting and she always provided the notes for the lectures. Very funny and engages in conversation with all her students. Very easy grader and is always accessible via email or after class. Would definitely take her again!!", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db66" + } + }, + { + "text": "Hayley is such a great professor! She is super personable and somehow makes lectures fun and 8am! She shows genuine concern for her students and has a great sense of humor. She gives tests every few chapters and some reflection papers throughout the semester which are doable. Overall, having her as a teacher for this class especially was a blessing", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db67" + } + }, + { + "text": "took hayley for psychology of human sexual behavior & she was a constant delight! very funny, informative, REAL & was always considerate of her student's wellbeing. Tests are online, homeworks are not paper heavy & is always wiling to offer extensions/extra credit to those who believe they may need it. shes the best!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db68" + } + }, + { + "text": "Currently taking the PSY 363 course and she is a awesome professor! she is very easygoing and knows how to give a great lecture. You're going to enjoy your time in this class, she recently graduated and truly is able to sympathize with students. She is great! Take her if you can.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db69" + } + }, + { + "text": "Was my TA for Psychpathology. The best first TA I've ever had. Love her lightheartedness and how easy going her class was. She made it so comfortable to be there and was extremely lenient with practically everything. Responds to emails quickly and also incorporates her own experiences into her teachings which makes understanding a lot more helpful.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db6a" + } + }, + { + "text": "This professor is extremely caring. She was really lenient about late work and also made her classes super interesting. She's also easy to reach outside of class and responds to emails in a timely manner.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db6b" + } + }, + { + "text": "It honestly makes me extremely happy to have been able to be with such an easy and understanding professor. As one of my first college professors she definitely set the bar and expectations very high for me and the future of my education. She is extremely loving and her class is super interesting. 1000/10 recommend", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db6c" + } + }, + { + "text": "When I say this is the best professor ever, I really mean it. She genuinely cares about your mental and physical wellbeing. This class is not at all stressful. I had her for Intro to Psychopathology and she made the class very interesting. 10000000000/10 the best ever. Attendance was not mandatory and it is very easy to catch up and make up work.", + "pos": 0.262, + "neu": 0.722, + "neg": 0.016, + "_id": { + "$oid": "6711d5aacd60fca157e5db6d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5aacd60fca157e5db6f" + }, + "professor_name": "Jenny Schiff", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "I LOVED HER CLASS. SHE IS A GREAT PROFESSOR AND HER CLASS IS PRETTY EASY TAKE HER!!!!!!", + "pos": 0.54, + "neu": 0.46, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db70" + } + }, + { + "text": "Great professor! Weekly HM (10 minutes to do), a group online presentation, and a final group presentation & write-up. Takes about 2 phone calls with your group, each about 3 hours. She rarely takes off points; if you do the assignment, you get an A. Responds to emails fast. We had a girl in our group not do any work, and she sided with us. Easy A", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db71" + } + }, + { + "text": "Professor Schiff is one of the best professors I ever had. Very nice and knowledgeable. I took Biomedical Ethics course and it was very interesting and engaging! Read the texts before class and it helps with the case examples that she goes over every class!", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db72" + } + }, + { + "text": "really easy class, two group presentations and they are pretty light discussions weekly but your allowed to miss some. shes super nice great attitude. try to participate here and there", + "pos": 0.422, + "neu": 0.536, + "neg": 0.042, + "_id": { + "$oid": "6711d5aacd60fca157e5db73" + } + }, + { + "text": "She is just soo great, take it before anyelse takes the spot. An Easy A class. Just read some readings and there is only 3 papers which are so easy especially the final. Take it and you wont regret it.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db74" + } + }, + { + "text": "If you need to take this class then look no further then professor Schiff. She's one of the best professors I've had thus far, and makes the lectures very interesting. There are no tests, just projects and papers. This class was a great experience with her in my opinion.", + "pos": 0.189, + "neu": 0.737, + "neg": 0.074, + "_id": { + "$oid": "6711d5aacd60fca157e5db75" + } + }, + { + "text": "She's just super down to Earth and makes the topics sound interesting by relating them back to things we as students would know and care about. The final project was wonderful because she gave each student the opportunity to express their understanding of a specific philosopher in their own way. She's a great teacher, like honestly. TAKE HER!!", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db76" + } + }, + { + "text": "She's probably the best professor I had so far. Coming from a pre med, her class is just a great place to explore the part of yourself that you don't get to explore in your typical classes. She can really relate to her students well and that's what I love about her. She is one of the few teachers who can actually teach retainable information.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db77" + } + }, + { + "text": "I love her so much, we have to do 10 reading journals for the first 10 weeks of class but she basically gives everyone who does it full credit. She gives chances to resubmit and we're graded on 2 outlines and a paper. She gives a final project as the final. She likes participation and attendance and always respects everyone's answers.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db78" + } + }, + { + "text": "Theres a weekly journal entry based on the reading. Participation in class is a must, sometimes will put you into groups for discussions. Theres no finals just a project but its super easy. Gives feedback on your work and will give you the chance to resubmit. Theres no right answer and is respectful of everyones different views. I love her!!!", + "pos": 0.28, + "neu": 0.664, + "neg": 0.055, + "_id": { + "$oid": "6711d5aacd60fca157e5db79" + } + }, + { + "text": "Jenny is absolutely amazing! This was my first time taking philosophy and I was scared thinking what I was getting myself into but she made it very easy for me. Definitely recommend!!", + "pos": 0.334, + "neu": 0.621, + "neg": 0.045, + "_id": { + "$oid": "6711d5aacd60fca157e5db7a" + } + }, + { + "text": "You have to show up and participate. Listen to her class and easy to pass with good grade. You write 2 papers and 1 midterm. There is no final and it is just final project.", + "pos": 0.145, + "neu": 0.8, + "neg": 0.055, + "_id": { + "$oid": "6711d5aacd60fca157e5db7b" + } + }, + { + "text": "The best professor, this how they suppose to teach philo. She isn't telling how you should think but helping to understand, have open mind but also not to take everything what someone tell. Think, understand and find a truth and knowledge. Exactly what philo is. Take her especially if you have philosophy as major and it is easy A as well.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d5aacd60fca157e5db7c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5abcd60fca157e5db7e" + }, + "professor_name": "Matthew Cotter", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "One of the best professors in CCNY. He is super understanding and is always accessible outside of class. His lectures and essays are though-provoking and interesting. There are no late penalties, he really wants to see his students prosper so just talk to him! He makes history enjoyable and digestible because you can tell how passionate he is.", + "pos": 0.243, + "neu": 0.726, + "neg": 0.031, + "_id": { + "$oid": "6711d5abcd60fca157e5db7f" + } + }, + { + "text": "I had an INC in this class. This professor did everything he could to help me get my work in and pass his class. He is a gem, such a rare professor who wants all his students to succeed. Show up, participate, and do your work on time, and there is no reason you should not get an A+. The workload is extremely manageable; don't procrastinate!", + "pos": 0.087, + "neu": 0.882, + "neg": 0.031, + "_id": { + "$oid": "6711d5abcd60fca157e5db80" + } + }, + { + "text": "This is the second class I took with Professor Cotter. He is an inspirational professor that wants his students to succeed. Grading is straightforward and classes are extremely interesting. I am blessed to have had this amazing teacher as one of my college professors.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db81" + } + }, + { + "text": "I recommend taking Professor Cotter. My class involved respectfully studying certain sensitive historical issues relating to American education. You are expected to complete short papers and participate in class. Assignments are spaced out, so you should not get overloaded. I have a disability and did very well.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db82" + } + }, + { + "text": "Professor Cotter is a great professor.", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db83" + } + }, + { + "text": "He is the best. I feel like his grading criteria is pretty lenient. Super kind. Talk to him if u need help or more time. the class was p light, 3 papers( 4 pages) and 7 journal entries(2 paragraphs each). Also, he was super nice with the due dates and no late penalty!", + "pos": 0.416, + "neu": 0.555, + "neg": 0.029, + "_id": { + "$oid": "6711d5abcd60fca157e5db84" + } + }, + { + "text": "Prof. Cotters class consisted of 3 short papers and weekly journals. He is very understanding and knowledgeable. His lectures gave controversial topics that were interesting to analyze. Overall, interesting class and requires creative writing.", + "pos": 0.207, + "neu": 0.748, + "neg": 0.045, + "_id": { + "$oid": "6711d5abcd60fca157e5db85" + } + }, + { + "text": "An excellent teacher! \nUsing a great method of teaching- no exams, only essays. \nBest way to teach and study history.", + "pos": 0.403, + "neu": 0.525, + "neg": 0.072, + "_id": { + "$oid": "6711d5abcd60fca157e5db86" + } + }, + { + "text": "Professor Cotter was great because he wants you to learn. The deadlines for weekly journals, short responses, and papers were very flexible due to COVID. His lectures are discussions based on readings so make sure you read from the online book he provides (it is very helpful). Start your papers early and make them creative and full of detail.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db87" + } + }, + { + "text": "Missed class once a week without warning thinking class was asynchronous. Gave journal assignments without due dates. You can tell he knows what he's talking about but is disorganized. Lecture heavy and boring. Doesn't do much to keep everyone engaged. Posted his notes to use for papers, but weren't understandable. Didnt use blackboard", + "pos": 0.084, + "neu": 0.794, + "neg": 0.122, + "_id": { + "$oid": "6711d5abcd60fca157e5db88" + } + }, + { + "text": "Professor Cotter is a beautiful lecturer. He made classes so immersive and really expands on your own ideas that you bring to the discussion. Great guy!", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db89" + } + }, + { + "text": "Professor Cotter is exceptional. His method might of teaching might be unconventional, but quite effective. If you are eager to learn, you will learn a lot in his classes & you will take away the satisfaction that you have evolved. I wish he taught more classes at City College. Lots of reading & not hard if you follow the materials & pay attention.", + "pos": 0.222, + "neu": 0.757, + "neg": 0.021, + "_id": { + "$oid": "6711d5abcd60fca157e5db8a" + } + }, + { + "text": "Highly inteligent, almost brilliant. Witty and engaging. Teached history in a way that is sure to interest almost anyone. Please do not take for granted that your writing skills must be sharp to get a good grade. Harsh grader. Papers are challenging. Requires creative ability moreso than mastery of subject matter.", + "pos": 0.358, + "neu": 0.574, + "neg": 0.068, + "_id": { + "$oid": "6711d5abcd60fca157e5db8b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5abcd60fca157e5db8d" + }, + "professor_name": "Karl Levy", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "Hes a KING. Take him, you wont regret it.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db8e" + } + }, + { + "text": "One of the worst Math Professor. He's unprofessional, talks about every thing unrelated to math. Doesn't really teach just does the examples from the book. Turns his back to the class when he's doing a problem on the board so you can't see what he's doing. He doesn't belong in the classroom at all. Stay away from any class he's assigned.", + "pos": 0.0, + "neu": 0.852, + "neg": 0.148, + "_id": { + "$oid": "6711d5abcd60fca157e5db8f" + } + }, + { + "text": "Yes, he is such a funny doll,joking around, but I came to that class for knowledge. Unfortunetely, that guy is no help AT ALL. If you think you coul get help at tutoring center - Good Luck! He is not professional: no teaching skill, no explanation, no review of the problematic homework.", + "pos": 0.281, + "neu": 0.586, + "neg": 0.133, + "_id": { + "$oid": "6711d5abcd60fca157e5db90" + } + }, + { + "text": "He is def. a nice person & somewhat funny, but he doesnt teach! His tests are fair and the homework is bleh. We used a CD instead of a txtbk, so things arent exactly that greatly explained or in detailed. Not enough excercises are provided and he doesnt do anything to clarify. You can go up to him and ask stuff, but again he DOES NOT TEACH!", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db91" + } + }, + { + "text": "Take him when you can. The final might be tough, but his grading policy will twist bend and turn to give you the best possible grade. Very laid back, but you need to do the homework. You can get extra credit for googling random stuff for him and submitting it at the end of the semester. Fun class, doesn't take attendance, tough material though.", + "pos": 0.202, + "neu": 0.782, + "neg": 0.017, + "_id": { + "$oid": "6711d5abcd60fca157e5db92" + } + }, + { + "text": "To be perfectly honest he wasnt very helpful during class. I stopped going after a while. The great thing about him is that he doesnt take attendence. If you do not go to class for the entire semester and take none of the tests, you can still get an A if you get an A on the final. For that i love him.", + "pos": 0.205, + "neu": 0.738, + "neg": 0.058, + "_id": { + "$oid": "6711d5abcd60fca157e5db93" + } + }, + { + "text": "his class was the best!!! i have learned so much in his class and I just hope i can take him next semester again.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db94" + } + }, + { + "text": "his class is all about theories, he does not give examples and class exercise, even he does, the examples are all exactly the same as the ones in the textbook, the majority of the class does not understand him, however, he grades easy on exams, u will get the higher grade than you expect", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db95" + } + }, + { + "text": "You are alone in this class it would be much cheaper if I bought the book and just go for the exam. DON'T TAKE HIM EVEN IF YOU HAVE NO CHOISE HE WILL RUIN YOUR SEMESTER", + "pos": 0.0, + "neu": 0.777, + "neg": 0.223, + "_id": { + "$oid": "6711d5abcd60fca157e5db96" + } + }, + { + "text": "This man is pure genius. Very laid back.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db97" + } + }, + { + "text": "This man is the best. He is very brilliant. He is very very helpful and understands students' needs for his class. One good thing about him is that he curves his grades, thereby giving hope to the hopeless. This is not an exaggeration, he is just too much.", + "pos": 0.311, + "neu": 0.642, + "neg": 0.047, + "_id": { + "$oid": "6711d5abcd60fca157e5db98" + } + }, + { + "text": "damn i falled it!!! don't take him...", + "pos": 0.0, + "neu": 0.627, + "neg": 0.373, + "_id": { + "$oid": "6711d5abcd60fca157e5db99" + } + }, + { + "text": "He's a good teacher that makes class intresting....he gets off topic sometimes but thats okay. Hes funny sometimes and makes it intresting.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d5abcd60fca157e5db9a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5accd60fca157e5db9c" + }, + "professor_name": "Jay Singletary", + "rating": 2.9, + "department": "Speech department", + "comments": [ + { + "text": "He is really moody. He makes it tough to learn since he is a tough grader. He is a good lecturer though.", + "pos": 0.109, + "neu": 0.674, + "neg": 0.217, + "_id": { + "$oid": "6711d5accd60fca157e5db9d" + } + }, + { + "text": "makes things personal. If you say something that offense him, he going to pick on you the whole class.", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d5accd60fca157e5db9e" + } + }, + { + "text": "he is hard for a speech class. But he is really nice grading wise at the end. a harsh critic.", + "pos": 0.277, + "neu": 0.478, + "neg": 0.245, + "_id": { + "$oid": "6711d5accd60fca157e5db9f" + } + }, + { + "text": "He can be moody and does not do a good job of building confidence in the class. I would've expected to have been taught techniques on how to give a good speech, instead he relied on the book to do all of the teaching. He expects professionalism but does not always act professional himself. He can also be inconsistent on expectations.", + "pos": 0.064, + "neu": 0.883, + "neg": 0.053, + "_id": { + "$oid": "6711d5accd60fca157e5dba0" + } + }, + { + "text": "This class was a class i thought was going to be an easy A. It turned out i got the A but it wasn't easy AT ALL. So much work compared to the other speech teachers my friends had. He teaches from the book and learn to accept critiques based on your work. Oh, and word of advice, he loves well used quotes in your speech's conclusion.", + "pos": 0.212, + "neu": 0.75, + "neg": 0.038, + "_id": { + "$oid": "6711d5accd60fca157e5dba1" + } + }, + { + "text": "Terrible professor. Very full of himself, make students do busy, pedantic work, totally inappropriate for college. Unstable moods coupled with his power trips make the class not only useless, but unpleasant as well. Has favorites in the class, picks on the same person over and over again. Not nearly as intelligent or informed as he thinks he is.", + "pos": 0.114, + "neu": 0.727, + "neg": 0.159, + "_id": { + "$oid": "6711d5accd60fca157e5dba2" + } + }, + { + "text": "He is a tough grader for a speech professor. If you take this professor it's not an easy A. He makes the students evaulate you on your speeches.", + "pos": 0.0, + "neu": 0.869, + "neg": 0.131, + "_id": { + "$oid": "6711d5accd60fca157e5dba3" + } + }, + { + "text": "He is a very smart and funny person. BUT he can be moody, and he definitely breaks down whatever confidence you ever had left in you. he wastes too much time saying how bad your speech is and brags about Columbia. He makes everyone do at least 6 speeches. But he's funny and ok, good person to crack some jokes with.", + "pos": 0.271, + "neu": 0.632, + "neg": 0.097, + "_id": { + "$oid": "6711d5accd60fca157e5dba4" + } + }, + { + "text": "Professor Jay is an awesome professor. Yes, he can be tough at times. However, he is this way to mold you into the speaker you are all capable of being. Overall, he's a nice and pretty cool dude.", + "pos": 0.353, + "neu": 0.618, + "neg": 0.03, + "_id": { + "$oid": "6711d5accd60fca157e5dba5" + } + }, + { + "text": "Very knowledgeable about public speaking. Has the potential to be a very effective professor, but he isn't. He is not very approachable, and destroys confidence rather than helping students build it. If you have a fear of public speaking and want to improve, take a different professor. He is a likable guy at times, but needs a new teaching approach", + "pos": 0.191, + "neu": 0.685, + "neg": 0.124, + "_id": { + "$oid": "6711d5accd60fca157e5dba6" + } + }, + { + "text": "A pretty likable guy, except on his bad days. He tends to have hissy fits when in a bad mood. Definitely stay on his good side and you'll be fine. He is intimidating though because he sits in front of you when you give a speech and critiques you after you're finished, while you're still standing up there. He also makes the class critique you too.", + "pos": 0.133, + "neu": 0.742, + "neg": 0.125, + "_id": { + "$oid": "6711d5accd60fca157e5dba7" + } + }, + { + "text": "If you do the work and take the skills he teaches you in class you will do fine. He is a tough cookie and will let you know how it is because to him and i quote \"He is God\" in the class room.", + "pos": 0.084, + "neu": 0.884, + "neg": 0.032, + "_id": { + "$oid": "6711d5accd60fca157e5dba8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5accd60fca157e5dbaa" + }, + "professor_name": "Mohamad Zoghi", + "rating": 4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Boring loong lectures. Does not keep class in the lecture. Grades by textbook quizez. You can jump through hoops for him but if you fail/ do bad on quizez and tests, Youre not passing", + "pos": 0.0, + "neu": 0.735, + "neg": 0.265, + "_id": { + "$oid": "6711d5accd60fca157e5dbab" + } + }, + { + "text": "He is the BEST professor in Farmingdale State College. Makes the class so interesting. Extremely helpful. He cares about the students and so friendly. He gives daily quiz which makes you follow the class and learn the material quickly. Do your homework and get on time to the class for quizzes. Strongly recommended. You Will Never Walk Alone.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d5accd60fca157e5dbac" + } + }, + { + "text": "Very difficult teacher. There is usually a quiz at the start of each class. (even the day after an exam.) He also follows the textbook very closely. he is a nice guy, but he moves a little too fast and doesn't offer very in depth explanations. He will simply bombard you with difficult examples.", + "pos": 0.033, + "neu": 0.879, + "neg": 0.089, + "_id": { + "$oid": "6711d5accd60fca157e5dbad" + } + }, + { + "text": "quiz before every class and loads of hw for a one credit class. hand in your quiz 10 seconds late and ur grade gets reduced by 50%. not recommended!", + "pos": 0.181, + "neu": 0.772, + "neg": 0.047, + "_id": { + "$oid": "6711d5accd60fca157e5dbae" + } + }, + { + "text": "Three words, \"I love him\". the best professor in the dept. He is more of a friend than a professor. Straight forward class and his note are all u need to Ace the class.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d5accd60fca157e5dbaf" + } + }, + { + "text": "i like him", + "pos": 0.556, + "neu": 0.444, + "neg": 0.0, + "_id": { + "$oid": "6711d5accd60fca157e5dbb0" + } + }, + { + "text": "Prof Zoghi. is a great a guy he cares about the student progress.He knows the material. Need to do the homework and the daily quizzes :). He gives extra credit project to help you get a better grade. Strongly recommended. Exams are open book but dont let this fool you. Need to study the material. DONT PROCRASTINATE .", + "pos": 0.194, + "neu": 0.739, + "neg": 0.067, + "_id": { + "$oid": "6711d5accd60fca157e5dbb1" + } + }, + { + "text": "Make sure you do all the homework. In exam if you don't understand, you better ask him. I didn't ask him during exam or in class so I did very bad. Lucky exam is open book and you gotta review the topic before the exam. Otherwise you will end up flipping pages all around.", + "pos": 0.087, + "neu": 0.812, + "neg": 0.101, + "_id": { + "$oid": "6711d5accd60fca157e5dbb2" + } + }, + { + "text": "Very good professor. Work hard, and you will be rewarded.", + "pos": 0.432, + "neu": 0.473, + "neg": 0.095, + "_id": { + "$oid": "6711d5accd60fca157e5dbb3" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5accd60fca157e5dbb4" + } + }, + { + "text": "Prof. Zoghi is an outstanding professor and deserves to be recognized as one of the best part-time faculty members of the ME Department. He is always available during his office hours and is extremely helpful and clear. You can tell that he really cares about your progress. His tests are challenging but straight forward. You will learn a lot!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d5accd60fca157e5dbb5" + } + }, + { + "text": "Great professor. Is really helpful. He works with you and not against you. Do your homework and get to class on time for his quizzes..", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d5accd60fca157e5dbb6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5accd60fca157e5dbb8" + }, + "professor_name": "Maribel Vazquez", + "rating": 1.9, + "department": "Biomedical Engineering department", + "comments": [ + { + "text": "Finished 460, graduating now. Can officially confirm shes the worst BME prof, in CCNY. Not friendly to non-native English speaker student,terrible teaching. Claims to give you material when she does not. She know she does not and when you question her she give you attitude. Good researcher, terrible prof. That is why she not in MIT or Columbia", + "pos": 0.043, + "neu": 0.809, + "neg": 0.147, + "_id": { + "$oid": "6711d5accd60fca157e5dbb9" + } + }, + { + "text": "I think those who are lazy and don't realize that she is an excellent professor. If you are willing to work hard, then you will get the grade.", + "pos": 0.113, + "neu": 0.767, + "neg": 0.12, + "_id": { + "$oid": "6711d5accd60fca157e5dbba" + } + }, + { + "text": "This Professor has no clue about the subject, does not seem to be interested in teaching. Changes her mind in every class about what she wants. Confuses the students with her stupid questions. Wonder how she passed out of MIT, is it so easy? And what a shame CCNY has recruited her to teach us.", + "pos": 0.097, + "neu": 0.737, + "neg": 0.166, + "_id": { + "$oid": "6711d5accd60fca157e5dbbb" + } + }, + { + "text": "She is a nightmare, who shouldn't even be teaching or directing a class. Smiles with her teeth and in overall just utterly ruthless.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d5accd60fca157e5dbbc" + } + }, + { + "text": "she is very harsh, not at all sensitive to students problems.", + "pos": 0.0, + "neu": 0.604, + "neg": 0.396, + "_id": { + "$oid": "6711d5accd60fca157e5dbbd" + } + }, + { + "text": "professor apparently does not know very much about the subject she teaches. makes mistakes all the time on subject supposed to be well-versed on. condescending attitude towards students, very disappointed in class and instructor. MIT should be embarrassed.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d5accd60fca157e5dbbe" + } + }, + { + "text": "Phrases questions unclearly, and then assumes student should know what she was trying to ask. However, she knows her subject well and gives interesting lectures.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d5accd60fca157e5dbbf" + } + }, + { + "text": "She is very moody and loves to pick on people. She is rude and unpolite.", + "pos": 0.182, + "neu": 0.552, + "neg": 0.266, + "_id": { + "$oid": "6711d5accd60fca157e5dbc0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5accd60fca157e5dbc1" + } + }, + { + "text": "very unclear in wording of her the questions. sometimes her attitude can be quite condescending, and wouldn't admit when she makes mistakes.", + "pos": 0.0, + "neu": 0.748, + "neg": 0.252, + "_id": { + "$oid": "6711d5accd60fca157e5dbc2" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5accd60fca157e5dbc3" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5accd60fca157e5dbc4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5adcd60fca157e5dbc6" + }, + "professor_name": "Muharrem Uyar", + "rating": 3.8, + "department": "Engineering department", + "comments": [ + { + "text": "It was very hard time", + "pos": 0.0, + "neu": 0.703, + "neg": 0.297, + "_id": { + "$oid": "6711d5adcd60fca157e5dbc7" + } + }, + { + "text": "I LOVE UYAR HE IAS THE EST", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbc8" + } + }, + { + "text": "TAKE UYAR NOWWWWWWWWWWWWWWWWWWWW!!!!!!!!!!!!!!!!!!!!!!!!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbc9" + } + }, + { + "text": "I would never take a class with this prof again. Extremely rude to students & loves picking on them. Makes the class so hard so its impossible to pass. Harsh grader and doesn't care about his students, expects you to learn advanced coding on your own as an electrical eng. major. Do not recommend him at all. worst prof in ccny", + "pos": 0.075, + "neu": 0.699, + "neg": 0.226, + "_id": { + "$oid": "6711d5adcd60fca157e5dbca" + } + }, + { + "text": "Uyar is awesome man u gotta take his class to learn more about C++ he is so mart and lmowes a lot of stuff about how to code adn use C++ on the exams. Hes way better than duale ali lol so take uyar guys and u will pass this class with an A+. Easy A+", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbcb" + } + }, + { + "text": "he's a good professor and you'll learn from him if you don't mind his attitude, he's rude, he doesn't care about students at all and he's a bit sarcastic. I would recommend him if you want learn C++ but it's not an easy class to pass especially with his manners", + "pos": 0.086, + "neu": 0.764, + "neg": 0.15, + "_id": { + "$oid": "6711d5adcd60fca157e5dbcc" + } + }, + { + "text": "Very nice professor, nice teaching style. Care about students and it's a free A.", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbcd" + } + }, + { + "text": "Awesome class!!!", + "pos": 0.833, + "neu": 0.167, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbce" + } + }, + { + "text": "He is a nice professor and is good. I recommend him. His midterm was not hard and it is open notes. I 100% recommend him. Please take him. He gives good feedback as well.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbcf" + } + }, + { + "text": "You gotta be smart in this class. Solid professor, good choice.", + "pos": 0.474, + "neu": 0.526, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd0" + } + }, + { + "text": "He really puts things into perspective. I feel pretty bad for him since he ends up teaching these kids with little to no background in programming and dont know anything. CSC 102 was a joke so most EE CCNY kids dont know how to program. Hes harsh but if you pay attention to what he says, He really wants the best for us all. I suggest study ahead!!", + "pos": 0.133, + "neu": 0.775, + "neg": 0.092, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd1" + } + }, + { + "text": "The worst professor alongside Jamal Manassah for Electrical Engineering. He is a bully, with a narcissitic complex. He made people cried and doesn't like answering questions. Get ready to read a textbook, help each other out, avoid talking to him and you'll be fine.", + "pos": 0.122, + "neu": 0.629, + "neg": 0.248, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5adcd60fca157e5dbd4" + }, + "professor_name": "Emily Rosenblatt", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "the atmosphere in her class is so comfortable, even just online. participate and take full advantage of her class if you have her. she gives great feedback and encourages you to do the same for fellow students. i once sent her a long email rambling about a creative project i was doing and she was really encouraging so lol. real for that", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd5" + } + }, + { + "text": "She was a solid professor who gave feedback on all of our assignments albeit not always immediately. She did as well as she could have given that the class was held online.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd6" + } + }, + { + "text": "Professor Rosenblatt is a really cool professor that cares about her students. I really enjoyed workshops with her because she made it interesting and special for me and the rest of my peers. She's amazing!", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd7" + } + }, + { + "text": "I took professor Rosenblatt in Spring 2018, and again in Spring 2020. I can assure you, you won't ever find a cooler professor. She's one of the best professors I've ever taken. She always makes classes interesting and makes sure that everyone is engaged. The assignments will push you to become a better writer also. I HIGHLY suggest taking her.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd8" + } + }, + { + "text": "A truly dedicated and wonderful instructor who is clearly invested in the success of her students. The feedback she gives is truly helpful. She inspired me to take up writing once again.", + "pos": 0.509, + "neu": 0.491, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbd9" + } + }, + { + "text": "I have taken two classes with her and I love it. She's very clear what she wants but also wants you to have fun with your creative writing. You'll have at least one meeting with her to talk about your writing and where you can take it. Would 100% take her class again", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbda" + } + }, + { + "text": "Emily is a great professor, who cares about her student's work. Her ability to coach a group of 20+ students at once and individually on their writing ability is outstanding. She takes her student's work seriously and I would gladly accept any and all criticism she gives me, because I know it will be useful at some point in my writing career.", + "pos": 0.294, + "neu": 0.648, + "neg": 0.057, + "_id": { + "$oid": "6711d5adcd60fca157e5dbdb" + } + }, + { + "text": "Great professor that really encourages, helps and is always there for the students. Her grading isnt that tough but she looks for certain criteria that you will know before hand through her half-sheets. Definitely put the extra effort in cause youll easily get an A in her class. Participate. Itll be mad awkward and quiet if no one does.", + "pos": 0.273, + "neu": 0.612, + "neg": 0.115, + "_id": { + "$oid": "6711d5adcd60fca157e5dbdc" + } + }, + { + "text": "Very simple class, do your work and you pass, gives good feedback on all assignments.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d5adcd60fca157e5dbdd" + } + }, + { + "text": "took her for FIQWS. she makes the class very fun although its a boring subject. she gives four essays and a final portfolio throughtout the semester and she tells you exactly how she wants it. she replies to her emails very fast and provides many examples. she's also very caring and understand. take her for FIQWS you wont regret it.", + "pos": 0.139, + "neu": 0.827, + "neg": 0.034, + "_id": { + "$oid": "6711d5adcd60fca157e5dbde" + } + }, + { + "text": "Tool her this semester. Really nice teacher and relaxed. The class is boring though. Not fer fault. Would definitely take her again for another English class. Just have to do a few essays and she tells you exactly how she wants it. Plus, a lot of time to do them. Overall, pretty good teacher.", + "pos": 0.26, + "neu": 0.705, + "neg": 0.035, + "_id": { + "$oid": "6711d5adcd60fca157e5dbdf" + } + }, + { + "text": "She's pretty chill. Class is a bit on the boring side but its relaxed and you meet some cool people. I like her. Just have to write a few essays for class, but you get a lot of time.", + "pos": 0.261, + "neu": 0.705, + "neg": 0.034, + "_id": { + "$oid": "6711d5adcd60fca157e5dbe0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5aecd60fca157e5dbe2" + }, + "professor_name": "Cynthia Chen", + "rating": 1.8, + "department": "Engineering department", + "comments": [ + { + "text": "She quit the school..End of horror story", + "pos": 0.0, + "neu": 0.619, + "neg": 0.381, + "_id": { + "$oid": "6711d5aecd60fca157e5dbe3" + } + }, + { + "text": "Knowledgeable professor, but lacks a soul.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5aecd60fca157e5dbe4" + } + }, + { + "text": "Analytical Techiques in Trans. Terrible class, useless professor. Unfortunately, everyone in the master's degree must take her since her class is required. Good Luck", + "pos": 0.178, + "neu": 0.572, + "neg": 0.25, + "_id": { + "$oid": "6711d5aecd60fca157e5dbe5" + } + }, + { + "text": "please avoid her as much as possible. worst experience i ever had in city college.i have no idea why she is still teaching.she has no teaching skills at all.she is a useless professor and person in city college.", + "pos": 0.048, + "neu": 0.669, + "neg": 0.282, + "_id": { + "$oid": "6711d5aecd60fca157e5dbe6" + } + }, + { + "text": "Worst experience ever... Major issues with explaining matherial... Strong personal attitude to some students.. any arguments make her to freak out. Espessialy if it on something related to Transp.Plan. but require some general knowledge in other subjects (she simply doesnt have much). Only plus - all tests were from HW so there is a chance to pass", + "pos": 0.074, + "neu": 0.825, + "neg": 0.101, + "_id": { + "$oid": "6711d5aecd60fca157e5dbe7" + } + }, + { + "text": "She is a nice professor. Material is doable as long as you go to class. Tests are similar to Homework. So go to class! JR", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d5aecd60fca157e5dbe8" + } + }, + { + "text": "Prof. Chen knows the material well but sometimes has trouble explaining it. She curves to the point where even if you have above a 90 you might find yourself with a B. Class may become stressful due to her pickiness.", + "pos": 0.033, + "neu": 0.795, + "neg": 0.172, + "_id": { + "$oid": "6711d5aecd60fca157e5dbe9" + } + }, + { + "text": "Really nice, always available for the students. Exams are from the class notes and the homework, no surprises", + "pos": 0.149, + "neu": 0.771, + "neg": 0.08, + "_id": { + "$oid": "6711d5aecd60fca157e5dbea" + } + }, + { + "text": "The most miserable educational experience I have ever had.", + "pos": 0.0, + "neu": 0.696, + "neg": 0.304, + "_id": { + "$oid": "6711d5aecd60fca157e5dbeb" + } + }, + { + "text": "not clear, no help, bad overall", + "pos": 0.48, + "neu": 0.301, + "neg": 0.219, + "_id": { + "$oid": "6711d5aecd60fca157e5dbec" + } + }, + { + "text": "Oh my God how hard can it be to convey an idea. Major communication problems. Hopefully she improves with experience. Unsettled teacher right now. If I have to take her again I am not doing transportation.", + "pos": 0.177, + "neu": 0.674, + "neg": 0.15, + "_id": { + "$oid": "6711d5aecd60fca157e5dbed" + } + }, + { + "text": "May possibly be the worst teacher due to her inability to effectively communicate her ideas. Woe unto all those who take this course. You will seriously reconsider leaving the Transportation specialty", + "pos": 0.072, + "neu": 0.647, + "neg": 0.281, + "_id": { + "$oid": "6711d5aecd60fca157e5dbee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5aecd60fca157e5dbf0" + }, + "professor_name": "Hongzhong Zhang", + "rating": 2.4, + "department": "Mathematics department", + "comments": [ + { + "text": "He is a very fast teacher who flies through class and doesn't feel the need to explain", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf1" + } + }, + { + "text": "The semester just started, but I honestly think he may be the worst teacher I've ever had. I don't have any problem with his accent, and he seems knowledgable about the subject matter, but the guy needs to take a teaching class.\r He tends to confuse subjects more than elucidate & sneer at our questions. I have no problem doing the work, but for the", + "pos": 0.14, + "neu": 0.757, + "neg": 0.103, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf2" + } + }, + { + "text": "His english is not very good, and he skips steps sometimes. I got a tutor who helped me out alot. Attend class and go over the practice exam you'll be fine.", + "pos": 0.054, + "neu": 0.868, + "neg": 0.078, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf3" + } + }, + { + "text": "he is a very good professor, he give little homework but it is useful. he reviews every question type on the quiz and exam. some people are saying he move too fast, not true, he have an accent but he is understandable. those that say he is bad are just lazy and dont come to class regularly, the work is doable but if ur absent you will fail.", + "pos": 0.071, + "neu": 0.741, + "neg": 0.188, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf4" + } + }, + { + "text": "This dude is not THAT bad of a prof. It's hard to understand what hes saying sometimes as well as writing. He goes fast through the lessons. He NEVER takes attendance. He gives 1 take on test, WHICH IS GREAT! He does reviews befor every exam. Hes ok.", + "pos": 0.182, + "neu": 0.793, + "neg": 0.025, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf5" + } + }, + { + "text": "this professor is the best teaching math. I have had really good ones but he know how to advance in the class and teach. those who did not pass are fools becasue they kept being absent in class opr just do not paying attention... I REALLY RECOMEND THIS PROFESSOR FOR ANY CLASS THAT YOU ARE PLANING TO TAKE", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf6" + } + }, + { + "text": "This school has the worst Math department and the worst professors to teach such a hard class. DO NOT TAKE THIS PROFESSOR. He is not interested on his students passing or understanding the material, its like he is just waiting for his paycheck.", + "pos": 0.048, + "neu": 0.726, + "neg": 0.226, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf7" + } + }, + { + "text": "THOSE WHO WROTE BAD COMMENT ABOUT THIS PROFESSOR DONT NEED TO COME TO COLLEGE ANYMORE. YOU DONT STUDY AND THEN FAIL AND BLAME ON PROFESSOR. I TOOK HIS CLASS AND GOT AN A. HE IS THE BEST MATH PROFESSOR I HAVE EVER HAD", + "pos": 0.08, + "neu": 0.741, + "neg": 0.179, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf8" + } + }, + { + "text": "The bad thing about taking math 1900 is that the professors name won't be listed and you won't know who it is, until you are in his/her class. If you manage to find out who your professor will be, DO NOT TAKE THIS PROFESSOR he is the worst, the material is confusing in part because he can't speak englihs, second he doesn't know how to teach.", + "pos": 0.0, + "neu": 0.869, + "neg": 0.131, + "_id": { + "$oid": "6711d5aecd60fca157e5dbf9" + } + }, + { + "text": "DO NOT TAKE THIS FOOL. HE DOESN'T EXPLAIN OR SPEAK CLEAR AND CONCISELY. YOU WONT UNDERSTAND ANYTHING. IF YOU GET HIM, DROP HIS CLASS IMMEDIATLEY UNLESS U WANNA FAIL. THE FRIKEN BOOK TALKS BETTER THAN HE DOES!", + "pos": 0.118, + "neu": 0.684, + "neg": 0.198, + "_id": { + "$oid": "6711d5aecd60fca157e5dbfa" + } + }, + { + "text": "One Word \"run\" run to the farthest part of the class room and drop his class, he is by far THE WORST!!! You can't understand what he is teaching or saying, yuo might as well hire a tutuor if you want to pass, but I STRONGLY advise not to take him and if you do you will see...", + "pos": 0.113, + "neu": 0.818, + "neg": 0.069, + "_id": { + "$oid": "6711d5aecd60fca157e5dbfb" + } + }, + { + "text": "he is an ok teacher, but you barely can understand what he is teaching.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d5aecd60fca157e5dbfc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5afcd60fca157e5dbfe" + }, + "professor_name": "A. Boyd", + "rating": 2.9, + "department": "World Humanities department", + "comments": [ + { + "text": "DO not take her! she is strict and is extremely picky on ur work! she expects way too much than a freakin teacher shud in WHUM class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dbff" + } + }, + { + "text": "Strict professor. But, if you do things according to her guidelines and hand in everything on time, you should be just fine.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc00" + } + }, + { + "text": "Their was not as much reading as the other students say. However, there will be more in this class than in many others because that is what the course is all about!! WHUM101 was way more intense than this course and the readings are not hard to follow. Sweet teacher, short papers, and fair grader. Take her!", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc01" + } + }, + { + "text": "Expect a lot of readings and last minute writing assignments.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc02" + } + }, + { + "text": "Horrible. She expects you to read these books in a short amount of time and have no remorse for students that have difficult classes. If you want a drop in your gpa take her class, otherwise avoid it.", + "pos": 0.069, + "neu": 0.705, + "neg": 0.227, + "_id": { + "$oid": "6711d5afcd60fca157e5dc03" + } + }, + { + "text": "She is a really smart young teacher and she expects a lot in very little time, 300 page books in 2 days. If you want an easy A don't take this class, plus if you already have a demanding class don't take this.", + "pos": 0.15, + "neu": 0.811, + "neg": 0.04, + "_id": { + "$oid": "6711d5afcd60fca157e5dc04" + } + }, + { + "text": "Complete waste of time. Don't take her class unless you want to ruin your GPA.", + "pos": 0.065, + "neu": 0.603, + "neg": 0.332, + "_id": { + "$oid": "6711d5afcd60fca157e5dc05" + } + }, + { + "text": "This professor has pop quizzes that she calls \"commentaries\" which are based on the reading. If you have alot of classes, don't take this class because you'll have to do LOTS of reading. No tests or exams but you have to write papers. Very picky and uncaring of her students", + "pos": 0.0, + "neu": 0.968, + "neg": 0.032, + "_id": { + "$oid": "6711d5afcd60fca157e5dc06" + } + }, + { + "text": "If your looking for an easy A dont take this class. Her work load is very excessive. She expects 300pg books to be read in 2 days and 8-10 papers to be written. She has a bit of an attitude problem and is not linient on 5 min lateness when its a night class. The class is not a fun class at all. She just expects way to much for an undergrad course.", + "pos": 0.037, + "neu": 0.894, + "neg": 0.069, + "_id": { + "$oid": "6711d5afcd60fca157e5dc07" + } + }, + { + "text": "do not take this professor if you have demanding classes. Her class requiers a lot of reading, and she is not the consedering type. Demanding and picky of your work. If your looking for easy going, she is not the one.", + "pos": 0.065, + "neu": 0.85, + "neg": 0.085, + "_id": { + "$oid": "6711d5afcd60fca157e5dc08" + } + }, + { + "text": "Graduate student that is really dedicated to exploring the ideas and themes in the readings. Also, a stunningly attractive statuesque blonde!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc09" + } + }, + { + "text": "Cool teacher. Grad students who is really really into this stuff.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc0a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5afcd60fca157e5dc0c" + }, + "professor_name": "Janis Salek", + "rating": 4.6, + "department": "Art department", + "comments": [ + { + "text": "Easy grade, not very understanding. Learned nothing new, it was all basically gesture drawing so it'll be good for any beginners. She'll call out any late kids even if there was an accident and scribble on your work.", + "pos": 0.137, + "neu": 0.793, + "neg": 0.07, + "_id": { + "$oid": "6711d5afcd60fca157e5dc0d" + } + }, + { + "text": "Class was good overall, no homework but the classes got a bit repetitive because each time we would do the same thing. I feel like she could have made class more interesting/done group critiques or something. Don't be late to class unless you want to be called out by the professor. Overall class improved my drawing skills.", + "pos": 0.164, + "neu": 0.774, + "neg": 0.062, + "_id": { + "$oid": "6711d5afcd60fca157e5dc0e" + } + }, + { + "text": "Super chill, no work outside class. Professor is a bit too comfortable scribbling over students work so watch out if that's something that bothers you. Attendence matters a lot.", + "pos": 0.229, + "neu": 0.661, + "neg": 0.11, + "_id": { + "$oid": "6711d5afcd60fca157e5dc0f" + } + }, + { + "text": "Professor Salek is amazing!!! She's such a great and caring professor! In class, she educates about figure drawing lessons and then brings the models in class to draw. Plus the techniques on how to draw them so clean and perfect. Professor Salek is so sweet and makes sure no one is behind with anything. Take her, you won't regret it!!!", + "pos": 0.347, + "neu": 0.626, + "neg": 0.027, + "_id": { + "$oid": "6711d5afcd60fca157e5dc10" + } + }, + { + "text": "You will learn alot in this class. You will learn how to draw a human figure, even if you have been struggling for years, you will pick up what you've been missing throughout your drawing years to make your drawings better. Your going to learn different techniques and using different materials. You will draw alot in this class. Beginner friendly!", + "pos": 0.095, + "neu": 0.831, + "neg": 0.074, + "_id": { + "$oid": "6711d5afcd60fca157e5dc11" + } + }, + { + "text": "This is professor is really great! As long as you make an effort with your work she'll love it. She explains everything really well.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc12" + } + }, + { + "text": "she is my far the best art professor I have taken at CCNY. I improved in the most simplest way. she knows how to fix your work easily, and is a positive person and cares about your skills.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc13" + } + }, + { + "text": "She is one of the best professors I've ever had. She's very focused and serious about the subject and very helpful. She make students comfortable and confident for the subject. She is so sweet and caring! I really loved her and taking her class. Hope to taker her other classes.", + "pos": 0.43, + "neu": 0.548, + "neg": 0.021, + "_id": { + "$oid": "6711d5afcd60fca157e5dc14" + } + }, + { + "text": "She is very professional, nice person!", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc15" + } + }, + { + "text": "Wonderful classes!", + "pos": 0.8, + "neu": 0.2, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc16" + } + }, + { + "text": "I've love to paint, but I took Prof Salek's watercolour class just to get some further instruction and see what more I could learn. She really taught me a lot. Her projects are aimed not only at exploring the media, but having a varied array of subject matter which pushes the student out of their comfort zone, which I totally needed. Great class!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc17" + } + }, + { + "text": "If you are serious about learning to paint, you need this class.", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d5afcd60fca157e5dc18" + } + }, + { + "text": "the best class i've ever taken! prof Salek is fair, inspires you to be creative, even provides materials. I loved this class. I am hoping to take it again for credit. We also visited the metropolitan museum of art, painted (when it warm) outside.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d5afcd60fca157e5dc19" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b0cd60fca157e5dc1b" + }, + "professor_name": "Yelena Zhuravlev", + "rating": 3.3, + "department": "Biology department", + "comments": [ + { + "text": "Had her for bio lab (1111) at Temple, such a good teacher. Made 3 hour labs bearable.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc1c" + } + }, + { + "text": "One of the best teachers I Baruch College. Extremely nice and makes the lectures enjoyable.", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc1d" + } + }, + { + "text": "Best most enthusiastic professor, super nice and helpful, and super funny. Best class", + "pos": 0.851, + "neu": 0.149, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc1e" + } + }, + { + "text": "SO enthusiastic about bio!! She tries to make the topics as relatable/understandable as possible. The tests are NOT MCAT style as other reviewers have said, but you obviously still have to study to do well. Responds to emails quickly and is very fair with grading in the lab portion. Would definitely recommend if you're willing to put in the work.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc1f" + } + }, + { + "text": "She is funny, caring and has a lot of energy. Tries to relate topics to real life examples . Great prof. but the class is hard.", + "pos": 0.265, + "neu": 0.683, + "neg": 0.052, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc20" + } + }, + { + "text": "Finally a professor that is honest and talks about scientific research without filters. She is so passionate about biology that it is contagious. Creative, inspirational and helpful. The class is fast pace and you would have to keep up with the lecture. You'll have to study for this class not because of the prof. but because it is BIOLOGY!", + "pos": 0.169, + "neu": 0.805, + "neg": 0.026, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc21" + } + }, + { + "text": "Brutally unforgiving class and professor. Take any other class if you can.", + "pos": 0.0, + "neu": 0.733, + "neg": 0.267, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc22" + } + }, + { + "text": "Closer to a class on theology than biology. She compares hormones to the story of Adam and Eve. It's so bad it's kinda hilarious. The other reviewers are right in saying she's a transphobe. Really blatant and hateful at that.", + "pos": 0.051, + "neu": 0.781, + "neg": 0.168, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc23" + } + }, + { + "text": "She gave us a review sheet for the midterm that had a bunch of errors on it. She then told us that those errors were OUR responsibility. In other words, if she gave us incorrect information and we study it and mess up on the exam its our fault. Huh??? What??? Ive never seen a professor this out of touch with her class before. Avoid at all costs", + "pos": 0.0, + "neu": 0.827, + "neg": 0.173, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc24" + } + }, + { + "text": "Coming to class doesn't help, you've gotta study from the book or else you fail. I don't think she's experienced or knows what she's doing. The exams are way too hard and take most of their questions from the MCAT, which only students who want to go to medical school usually take. Honestly I would not mind this if she was a better teacher.", + "pos": 0.1, + "neu": 0.802, + "neg": 0.099, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc25" + } + }, + { + "text": "One of the worst professors I have had at Baruch, she does not teach the material so most of the students dont go to class and just learn from the book instead. Tests are hard though! She also goes on bizarre transphobic rants about how HRT lowers IQ and causes alzheimers. She honestly doesn't deserve to have a teaching job. Disgusting and awful.", + "pos": 0.039, + "neu": 0.721, + "neg": 0.24, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc26" + } + }, + { + "text": "Amazing, accessible, cares for her students, helps as much as she humanly can. Needs to be tenured!", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc27" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b0cd60fca157e5dc29" + }, + "professor_name": "Keith Gandal", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Professor Gandal was pretty good at giving feedback back to students. Please make sure you read your classmates' work as a sign of respect not only for the professor but for them as well. This is directed to workshop, this is a class to focus on YOUR stories, so please take that personally.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc2a" + } + }, + { + "text": "He's super chilled and laid back. He knew how to give good feedback on everyone's readings while also letting the students lead the workshopping discussion. Also very approachable in terms of questions.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc2b" + } + }, + { + "text": "Professor Gandal was funny and overall, he is a professor you would want to take. His class was easy. Few readings in the beginning of the course. However, there were times where he would go off topic which would make the class feel so long. Overall, great professor and would highly recommend. Just do the work.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc2c" + } + }, + { + "text": "He's a real gem of a person, indeed. He tries his best to engage everyone and also a very understanding guy. I'm glad I choose to take this class with him this term. In fact, I had to drop another class that he was teaching only because of my schedule and creative writing is not what my concentration is. Overall, sweet guy, highly recommend.", + "pos": 0.236, + "neu": 0.737, + "neg": 0.027, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc2d" + } + }, + { + "text": "Hes a great professor with a good sense of humor which makes class all the more intriguing along with the interesting readings he assigns and the course topic in general. One of my favorite classes and best professors. Definitely recommend!", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc2e" + } + }, + { + "text": "Gandal made me uncomfortable and his lectures were boring and the books assigned were uninspiring.", + "pos": 0.0, + "neu": 0.726, + "neg": 0.274, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc2f" + } + }, + { + "text": "His grading criteria are very unusual. He grades in a way that it's not fair to the students being that it has no feedback, but codes. Most of the time we were joking and getting off task. A waste of time. But if you prefer a \"fun\" professor who barely teaches and grades harshly, then this is your guy. Good luck!", + "pos": 0.197, + "neu": 0.713, + "neg": 0.09, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc30" + } + }, + { + "text": "Great professor! Great sense of humor that will keep you up throughout class. The readings are interesting as well. He gives you a list of the books to read for the semester but most of them can be found on good if you look for the PDF. Doesn't ask for two much except 2 papers and a take home final paper \"exam\". Recommend him very much!!!", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc31" + } + }, + { + "text": "LOVE THIS GUY. clear cut. how a professor should be. take him and contribute. hes such a lovely guy.", + "pos": 0.399, + "neu": 0.528, + "neg": 0.074, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc32" + } + }, + { + "text": "Great professor. The readings are very interesting. The lectures were amazing, and they help you understand the readings in greater depth. The professor provides very useful feedback in order to help you become a better writer. I would definitely take him again in the future. Highly recommended.", + "pos": 0.445, + "neu": 0.555, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc33" + } + }, + { + "text": "Great professor, the assigned reading are interesting as well as the lectures.", + "pos": 0.497, + "neu": 0.503, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc34" + } + }, + { + "text": "Good professor. He has a very professional, assertive, and genuine demeanor. He's very intelligent and polite. He's available for questions and discussions outside class. Take his course.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc35" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b0cd60fca157e5dc37" + }, + "professor_name": "Jesus Fraga", + "rating": 3.9, + "department": "Education department", + "comments": [ + { + "text": "He is amazing. GREAT professor!", + "pos": 0.748, + "neu": 0.252, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc38" + } + }, + { + "text": "Fraga is a great professor. You will learn a lot in this class, but he is also very accommodating and understanding. I highly recommend!", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc39" + } + }, + { + "text": "dont take him", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc3a" + } + }, + { + "text": "dont ask him for help if you need clarity. needed help with an assignment and emailed him for help and had a attitude about it. said take notes on the assignment but still need help. he was not much help and can tell in his email was getting annoyed with me asking questions. if you dont have patience dont take him. he would annoy you.", + "pos": 0.14, + "neu": 0.73, + "neg": 0.13, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc3b" + } + }, + { + "text": "Interesting discussions however there are only a few assignments given that go towards your final grade including a group project. Tough grader and does not give the option to revise work. Not very understanding when approached regarding grade.", + "pos": 0.067, + "neu": 0.896, + "neg": 0.037, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc3c" + } + }, + { + "text": "He is super effective in his teaching style and very helpful. He is firm but fair and passionate about education. I learned so much in this class that will be useful in the classroom.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc3d" + } + }, + { + "text": "Professor Fraga keeps his classes very interesting and lively. The material discussed is usually very interesting. However, when it comes to grading, he clearly isn't fair; other students and I have noticed that in his classes there tends to be favoritism towards 'male' students.", + "pos": 0.253, + "neu": 0.71, + "neg": 0.037, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc3e" + } + }, + { + "text": "The best be raedy to learn something", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc3f" + } + }, + { + "text": "Prof Fraga teaches an interesting and important subject: Multicultural Education; however, he is extremely bias and dry. He has us do a lot of group work that becomes boring after a while and his grading methods are unreasonable. He gives guidelines for an assignment but using a completely different grading system when actually grading work!", + "pos": 0.062, + "neu": 0.886, + "neg": 0.052, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc40" + } + }, + { + "text": "One of my favorite professors ever. Uses a variety of methods to keep class interesting. Final project was the first final project that I really enjoyed doing and didn't mind doing it at all.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc41" + } + }, + { + "text": "the class was great he will make sure you learn intresting all the way for education majors he is a must", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc42" + } + }, + { + "text": "Meeting Prof. Fraga was a great experience for me. He is very knowledgeable and brings many of his teaching ideas into the classroom. You will definitely get a lot out of this class, and apply what you have learned to your own classroom. I strongly encourage you to take this professor. He is one of the best professors that I have met!", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d5b0cd60fca157e5dc43" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b1cd60fca157e5dc45" + }, + "professor_name": "Jeffrey Morris", + "rating": 4.1, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "He is not organized. His lectures are confusing. He makes a lot of errors in lectures and grading. He is soooo unfair in grading the exams!!!. He relies on the TA doing the homework solutions who is always late in posting the solutions.", + "pos": 0.068, + "neu": 0.765, + "neg": 0.167, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc46" + } + }, + { + "text": "Prof. Jeff Morris is the best professor I have had in my entire academic career (this is coming from a perfectionist who has very high standards) . He is one of the few masters of Fluid Mechanics. He has a wonderful presence of mind; very passionate and funny; amazing in answering your questions; very respectful, polite, and diligent. Enough said.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc47" + } + }, + { + "text": "Prof. Morris is a nice and respected professor, but he was a tad bit unorganized in presenting the topics for our Transport I class. His grading scale was difficult to work with 40% Midterm, 40% final and 20% HW. He did however allow a re-work of the midterm for those who did not do so well, and always had his TAs type up the midterm/HW solutions.", + "pos": 0.149, + "neu": 0.807, + "neg": 0.044, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc48" + } + }, + { + "text": "very nice guy. but his class is not very organized. you cannot have a basic idea of his semester.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc49" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc4a" + } + }, + { + "text": "Probably the best prof. at CCNY. Explains the material really well. Makes you think a lot.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc4b" + } + }, + { + "text": "The tests and grading are kinda weird :S because the exams are very short and i did not know what to do to get a different grade! the scores are variant, but how and where he finds the small differences between tests in just 2 problems! BUT he is extremely nice and intelligent, he is very helpful and i highly respect him. WRITE A LOT IN THE EXAMS!!", + "pos": 0.214, + "neu": 0.709, + "neg": 0.077, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc4c" + } + }, + { + "text": "He taught this class brillantly and is one of the best professors in City college.Very goodlooking and is highly recommended professor.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc4d" + } + }, + { + "text": "One of the best, if not the best professor, I've had at City College. He knows his material, explains it very well, and cares about his students. If you listen to him, you will understand and do well. Homework and tests are fair. Also, he is extremely sexy, funny, and easy to converse with. I love this man!", + "pos": 0.357, + "neu": 0.601, + "neg": 0.042, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc4e" + } + }, + { + "text": "He's a great dude... is helpful and understanding. but when it comes to teaching and giving tests, he just needs to get better. His tests have no pertinence to the homework and his teaching style is often too technical. I know its engineering, but still us students still just don't have great ease with math and physics yet.", + "pos": 0.158, + "neu": 0.705, + "neg": 0.137, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc4f" + } + }, + { + "text": "he is the best!!!!!!!!! he teaches very well. he is fair in grading he understand students he grades according to student's progress. Exams and homewroks are fair. Also, he is very good looking and very funny. He made this class very interesting. I love him", + "pos": 0.446, + "neu": 0.554, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc50" + } + }, + { + "text": "Intelligent and sexy professor. Explains in detail and tells you what is going to be the exams. Read the book prior to class to participate, he loves that!!! Exams are straight forward and so is the homework. I love transport phenomena because of him...learned a lot plus enjoyed watchig him teach.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc51" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b1cd60fca157e5dc53" + }, + "professor_name": "Ramona Hernandez", + "rating": 4.1, + "department": "Sociology department", + "comments": [ + { + "text": "Class is not difficult to keep up with as you have weekly readings and discussion post, two small papers,and a final. She is very clear with her expectations and grading. Very enthusiastic about what her students think. Only difficulty is during lectures, they do not always follow the readings and discussions.", + "pos": 0.147, + "neu": 0.812, + "neg": 0.041, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc54" + } + }, + { + "text": "KEEP UP w. readings and ALL of the papers. complex readings but usually googled the topic instead to get a better understanding. disliked that she would ramble on during lectures, forgot some assignment SHE assigned, lost my paper and sometimes go off topic and start speaking Spanish even to the non-Spanish speaking people. not necessary for SOCIO", + "pos": 0.06, + "neu": 0.839, + "neg": 0.101, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc55" + } + }, + { + "text": "You should be able to pass this class. Everything is on blackboard for you. you have to do a lot of readings and participate in class. make sure she knows your name from the start. borrow the book if you can to save some money. No exams, but you have about 3 or 4 paper assignments.", + "pos": 0.064, + "neu": 0.908, + "neg": 0.027, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc56" + } + }, + { + "text": "I bought three books for no reason. I haven't even opened them yet. Dr. Hernandez is amazing and she cares for her students! 1 midterm proposal 3-5 pages. 2 quick oral presentations and 1 final paper 10-15 pages. Don't wait till the last minute to do the paper she has certain guidelines that must be followed.", + "pos": 0.145, + "neu": 0.82, + "neg": 0.035, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc57" + } + }, + { + "text": "SHE IS AMAZING!!! IF YOU TAKE HER CLASS YOU WILL NOT REGRET IT, SHE HAS SO MUCH KNOWLEDGE AND PASSION FOR HER WORK ITS INSPIRING...AWESOME PROFESSOR, THE BEST AT CCNY!", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc58" + } + }, + { + "text": "very energetic,helpful and fun", + "pos": 0.543, + "neu": 0.457, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc59" + } + }, + { + "text": "She is a wonderful professor and woman. I learned so much from her and I am so happy that I took her Dominican Community Class. She is passionate about her people and her work. I recommend any of her classes to any body who is passionate about learning. I hope you enjoy her class as much as I did.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc5a" + } + }, + { + "text": "she is nice in person. no in-class exam. 3 term papers and short essays. as long as you know how to write well-organized, gramatically correct paper, you will be fine. although she is highly disorganized and does not excel at teaching, her passion for education is inspiring.", + "pos": 0.181, + "neu": 0.695, + "neg": 0.125, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc5b" + } + }, + { + "text": "Helpful and sometimes amusing.. passionate also", + "pos": 0.746, + "neu": 0.254, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc5c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc5d" + } + }, + { + "text": "The class was so so, you must do your own reserach if you want to really know what's going on. The material was not updated, and not always avilable to the students.", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc5e" + } + }, + { + "text": "Really a great professor, very interesting and easy to talk to. She has great ideas and loves to argue with students about them. I highly recommend taking anything she teaches.", + "pos": 0.454, + "neu": 0.494, + "neg": 0.052, + "_id": { + "$oid": "6711d5b1cd60fca157e5dc5f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b2cd60fca157e5dc61" + }, + "professor_name": "Daniel Akins", + "rating": 1.5, + "department": "Chemistry department", + "comments": [ + { + "text": "Very nice and smart guy. but a horrible professor. he really can't teach. going to lectures is useless. The book is way more complex than his lectures and his exams are WAY HARDER THAN PROBLEMS IN THE BOOK. I walked out of class with an A but with less interest in chemistry than i had before. I do not recommend this professor.", + "pos": 0.097, + "neu": 0.702, + "neg": 0.201, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc62" + } + }, + { + "text": "All right everyone... Don't take this guy.... He is a really really bad teacher!!!!!!!!!!!! He doesn't know how to teach, and he can't answer difficult questions. He reads everything from slides!!!", + "pos": 0.058, + "neu": 0.798, + "neg": 0.144, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc63" + } + }, + { + "text": "Seems like a nice guy, but does not know how to tend to a freshman or undergraduate audience. Generally reads word for word off of the powerpoint presentations he posts on the internet. Workshop helps you understand the material much better than his lectures do.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc64" + } + }, + { + "text": "The man is a cool, chill individual. BUT, lectures are useless because he reads off of slides verbatim. Second, the example problems in his lecture notes are WAY easier than anything on the exams! You must go to tutoring to pass exams and buy the ARIS code IF you want 5 points for HW. screw that, $50 just for a code..I'm a broke student!", + "pos": 0.088, + "neu": 0.741, + "neg": 0.171, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc65" + } + }, + { + "text": "He is a nice and funny guy, noes Chem, but he cant teach. He is not a good speaker and dnt answer questions u ask(goes on to saying something irrelevant). TO PASS OR GET GOOD GRADE just print out & study the slides, do the HW and ask questions to TA during recitation. Not a hard grader, PPL WHO HATE HIM NEED 2 CHILL, THOSE COMMENTS R INACCURATE", + "pos": 0.126, + "neu": 0.761, + "neg": 0.114, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc66" + } + }, + { + "text": "It's obvious he's new to lecturing Chem 103. He almost always reads the lecture notes verbatim. You're on your own in this class. He didn't assign any homework nor did he require you to get the textbook. Do the work in workshop and at least print out his lecture notes and go over the problems. The final was easier than any of the test he gave.", + "pos": 0.04, + "neu": 0.921, + "neg": 0.039, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc67" + } + }, + { + "text": "Nice guy, but bad Gen. Chem. professor. Maybe he's good for upper level courses. His exams may catch you off guard if you don't study hard. Some of the calculation questions are quite difficult. Overall, he's okay. Just be prepared to teach yourself chemistry. I got a good grade only after studying on my own and with someone else for hours on end.", + "pos": 0.19, + "neu": 0.703, + "neg": 0.108, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc68" + } + }, + { + "text": "Akins is a nice guy, understanding about religious requirements, but is not a good teacher. He reads off of the slides which he makes from the textbook, half of which are wrong. When you ask him questions in class he circumvents answering you and just rambles about something else. He's a smart guy but he can't teach what he knows.", + "pos": 0.079, + "neu": 0.815, + "neg": 0.106, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc69" + } + }, + { + "text": "He's a very nice/chill person but he is a very bad professor. He is basically teaching straight out of the textbook. Don't take this class if you're lazy because he will not teach you, you have to learn everything yourself.", + "pos": 0.049, + "neu": 0.774, + "neg": 0.177, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc6a" + } + }, + { + "text": "he's a good guy, but can't handle a lecture hall of this size. Sack up!", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc6b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc6c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b2cd60fca157e5dc6e" + }, + "professor_name": "Mark Shattuck", + "rating": 3.2, + "department": "Physics department", + "comments": [ + { + "text": "He is an ok teacher. it was his first time teaching honor physics. his tests were extremely hard and there was almost no time 2 check over the answers. he curved the tests however and that slightly helped. in the beginning he said if u do bad on the test but pass the final, then u will pass the class. overall, he can be improved but he is good", + "pos": 0.149, + "neu": 0.787, + "neg": 0.064, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc6f" + } + }, + { + "text": "i guess he is just an OK professor. His tests are long but he is generous in his gradings...gives u lot of partial credits. avoid if u can...i mean i found his lectures easy to get but applying the concept to the problems in the book and his examples was a task..", + "pos": 0.205, + "neu": 0.698, + "neg": 0.096, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc70" + } + }, + { + "text": "Ok, here's the deal, physics is a diffic. subject, bcause it's not something u can just memorize and go 2 the test and ace. If u are willing to put in work to LEARN, take Shattuck, this is the lowest grade I've ever gotten, but I definitely learned a whole lot and probably won't forget. He does his part as a teacher to make sure u do your best!!", + "pos": 0.184, + "neu": 0.793, + "neg": 0.022, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc71" + } + }, + { + "text": "This guy is one of the worst professors, do yourself a favor and DON'T TAKE HIM FOR ANY CLASSES!!! and dont listen to those dumbasses that gave him a good rating because i did and i failed.", + "pos": 0.119, + "neu": 0.704, + "neg": 0.177, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc72" + } + }, + { + "text": "goshness, he is not a good professor at all. He doesn't teach!! He basically just stands in front of the class and reiterates the textbook, confuses himself, and then the students. I mean I have much love for physics, but with this guy I'll be extremely lucky to get a B", + "pos": 0.127, + "neu": 0.815, + "neg": 0.058, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc73" + } + }, + { + "text": "Horrible professor....sitting here wondering why i believed you ppl who said he was really good....damn what a big mistake...he doesnt give any curve and no dropping and no help at all...he doesnt even give u pratice questions...your on ur own way doomed to fail", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc74" + } + }, + { + "text": "Lots of partial credit! always available office hours, no surprises on the test, huge curve... if you study --this is an easy B.", + "pos": 0.281, + "neu": 0.661, + "neg": 0.058, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc75" + } + }, + { + "text": "Very generous grader, clear explanations, always available office hours.", + "pos": 0.48, + "neu": 0.52, + "neg": 0.0, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc76" + } + }, + { + "text": "VERY CLEAR and sometimes can be genious on the way he grades his exams, if he sees that u get the idea but have the wrong answer he'll give u the points. Overall good but the material can be challenging.", + "pos": 0.174, + "neu": 0.741, + "neg": 0.085, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc77" + } + }, + { + "text": "Good, clear lecturer, but hard and long exams that you'd have to rush to finish, and a harsh grader.", + "pos": 0.155, + "neu": 0.62, + "neg": 0.225, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc78" + } + }, + { + "text": "Good lecturer, but long exams and harsh grader.", + "pos": 0.165, + "neu": 0.508, + "neg": 0.326, + "_id": { + "$oid": "6711d5b2cd60fca157e5dc79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b3cd60fca157e5dc7b" + }, + "professor_name": "Judith Stein", + "rating": 4.3, + "department": "History department", + "comments": [ + { + "text": "Judith Stein is a nice enough woman , she is really accomplished and knows what she is talking about I've recently took her this past fall 14 semester for us history from 1945 to present. all you need to do is do her papers and go okay on the mid-term and final and you'll do fine.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc7c" + } + }, + { + "text": "She lectures way too much, it can get boring but she has great knowledge on the subject area.", + "pos": 0.242, + "neu": 0.687, + "neg": 0.071, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc7d" + } + }, + { + "text": "Judy has an interesting style, with interesting twists. She also gets exotic with topics. Assignments for research paper topics are selected in an arbitary capricious manner.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc7e" + } + }, + { + "text": "She talks too much and its boring.. I signed up for the class thinking it would be interesting and Its really boring.. a lot of people in my class doze off while she talks.. shes nice and all but I withdrew because it was just a waste of time.", + "pos": 0.068, + "neu": 0.802, + "neg": 0.13, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc7f" + } + }, + { + "text": "She is enthusiastic about her subject and very prepared. She mostly lectures, but encourages students to ask questions. There is a lot of reading, but most graduate history classes are similar. I think your grade will reflect that amount of work you put into the final paper and to some extent participation.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc80" + } + }, + { + "text": "She is the best! Great classes, great lectures, great reading, and incredibly concerned about her students. What's not to love?", + "pos": 0.478, + "neu": 0.427, + "neg": 0.096, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc81" + } + }, + { + "text": "very good techer, you will more out of her class than any other in school. looking for an education in history? she is the white elephant of teching", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc82" + } + }, + { + "text": "Terrific. Wonderful Professor. Has done it all from marching with Dr.King to writing prestigous works. A credit to the History dept. Could be teaching at Havard or Yale. CCNY is lucky to have her. Also very funny and down to earth. Don't challenge her with stupidity or you'll go home with your head in your hands. GREAT.", + "pos": 0.276, + "neu": 0.668, + "neg": 0.056, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc83" + } + }, + { + "text": "Smart, quick, enthusiastic, funny, quirky, lively, a real scholar, doesn't suffer fools gladly. I learned a great deal. Immense amounts of reading.", + "pos": 0.57, + "neu": 0.375, + "neg": 0.055, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc84" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc85" + } + }, + { + "text": "A+ professor. Loves to talk but is very visual and uses a number of one-liners to illustrate her points. In a former life she probably wanted to do stand-up comedy. On an academic note: She assigns a lot of reading but its cool and usually interesting. She demands your best so be ready to give it.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc86" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b3cd60fca157e5dc88" + }, + "professor_name": "Evgeniya Koroleva", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "Her comments on rough drafts are basically guidelines to an A. She asks everyone. Lectures seem to be very long. Deadlines are deadlines. No joke. She is really not trusted in returning papers on time. (never returned one of my essays). Just have general understanding about the books and main themes so you can write the essay. Overall, good prof.", + "pos": 0.045, + "neu": 0.882, + "neg": 0.073, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc89" + } + }, + { + "text": "Read the required material and you should be fine. 3 Essays and participation are what make up your grade. She expects every student to give their opinion so be sure to chime in. Her class can get a little tedious; allot of repetitious work and she extends certain topics in order to make her lecture longer. Otherwise, good teacher, great person.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc8a" + } + }, + { + "text": "Class goes by really slow but she's nice. She's really lenient with late work if you have a valid excuse (my printer broke, etc). You can miss a few classes but not many. Her accent is thick but understandable. Always be at least halfway paying attention at all times because she calls on people at random. Do the blogs required and write the essays", + "pos": 0.113, + "neu": 0.81, + "neg": 0.077, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc8b" + } + }, + { + "text": "The sweetest person you will ever come across. She always emails you to keep you up to date with everything in the class. She is very intelligent and knows a lot about what she teaches. She surprises you with her level of vocabulary. She has a strong russian accent but you get used to it. The best professor. Just read and participate", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc8c" + } + }, + { + "text": "Her accent is tough at first, but after a few classes you'll understand her. I like that she communicated a lot by email: often sent out assignment descriptions, reminders, & tips(helpful if you're absent). She's a slow grader - it took weeks to get back our essays, & when we got it back, the only feedback was \"This is a wonderful paper! A+\"", + "pos": 0.123, + "neu": 0.859, + "neg": 0.018, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc8d" + } + }, + { + "text": "She is very clear and helpful. Very lenient on the grading as long as you get the form/structure of the writing piece correct. Does everything by the book. Would recommend this professor to everyone.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc8e" + } + }, + { + "text": "Most of the class is focus on interesting discussions. The grade is based on 4 papers and 1 final presentation. She is very open-minded and always ready to learn new things from the students. Take her as your ENGR 10100 or FIQWS 10026 professor. She is very nice with the grading policy.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc8f" + } + }, + { + "text": "She is a sweetheart, very smart and helpful. She really knows what she is talking about. However, she has some strong Russian accent which made it hard for me to understand her sometimes. With time, you start to get used to it and are able to understand better.", + "pos": 0.276, + "neu": 0.701, + "neg": 0.023, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc90" + } + }, + { + "text": "Professor Koroleva is straightforward. Unlike alot of the professor's I've encountered at City, she initiates her intentions, plans and goals for the semester and actually sticks to them. With her, there are no surprises. Everything is outlined in her syllabus. She assigns the reading, do them. She quizzes after all assigned readings.She assigns pa", + "pos": 0.0, + "neu": 0.97, + "neg": 0.03, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc91" + } + }, + { + "text": "She gave us a well organized and enjoyable sample of tragedy from different periods and cultures. The discussions were guided for the benefit of the students. I did she did wonderful. Half of her students were retarded though. It was an honor to have her as my instructor.", + "pos": 0.233, + "neu": 0.641, + "neg": 0.127, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc92" + } + }, + { + "text": "She comes to class with a specific idea in mind, and leads discussion that way. She doesn't listen to students ideas. Her grading is extremely harsh, again you have to conform to her ideas. And although this was a comparative lit class, there wasn't much comparing done!! Really boring class.", + "pos": 0.0, + "neu": 0.883, + "neg": 0.117, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc93" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b3cd60fca157e5dc95" + }, + "professor_name": "Elizabeth Von Uhl", + "rating": 2.2, + "department": "English department", + "comments": [ + { + "text": "Professor von Uhl, is very nice when class is going well; however, she's very tough and I should say, she is passive aggressive once the class is confused by her own mistake by using strong language and slamming her desk. She is alright for the most part but she clearly just wants to get her job over with", + "pos": 0.184, + "neu": 0.725, + "neg": 0.091, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc96" + } + }, + { + "text": "Not a great professor. ALWAYS off topic some of the readings don't even go along w the curriculum. So picky on grammar. making small mistakes costs u big time.", + "pos": 0.0, + "neu": 0.823, + "neg": 0.177, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc97" + } + }, + { + "text": "She's a nice person, but the toughest grader I've seen in my 2 years in college. Don't skip any assigned work even if it's very small. I mostly got affected because I skipped some in-class free writes.", + "pos": 0.149, + "neu": 0.773, + "neg": 0.078, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc98" + } + }, + { + "text": "This class was online during the pandemic and I will say this class was very disorganized. Too much peer reviews and less lectures, too much misunderstandings towards students, and tough grader.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc99" + } + }, + { + "text": "I recommend not taking this professor if you don't want to get stressed, she doesn't teach what suppose to be taught and only focuses on the grammar and punctuation of papers. Very lazy and prepare for peer review every week and reading articles that have nothing to do with the class.", + "pos": 0.045, + "neu": 0.841, + "neg": 0.115, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc9a" + } + }, + { + "text": "She taught the composition section of my class. I often times felt very confused because she assigned work and wouldn't meet with us for the week to explain. I really feel that I was able to pass because of my peers. Her class isn't horrible it's not as supporting as it should have been, especially for what she expects. Gives harsh but good feedbac", + "pos": 0.082, + "neu": 0.84, + "neg": 0.078, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc9b" + } + }, + { + "text": "Overall pretty good. Her assignments/lectures were straightforward, enjoyable, and relevant to the literature aspects of an engineering degree. The only things that were a bit annoying were the multiple grammar worksheets. If you participate in class, you should have no problem receiving a good grade.", + "pos": 0.253, + "neu": 0.698, + "neg": 0.048, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc9c" + } + }, + { + "text": "worst professor ever,doesn't know hot to teach and at one point even called us stupid because we couldn't say what GDP meant. she would send us to writing center to give us bad grades and like 2pts extra credit. the only day she treated us well was when she was being watched. also most ppl dropped the class and she passed whoever was left with -c", + "pos": 0.092, + "neu": 0.767, + "neg": 0.141, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc9d" + } + }, + { + "text": "She will not make you a better writer. All she taught was how to cite in APA style. Like okay thanks, its not like I couldnt just use the internet to figure out how to do that. Also, she graded the final portfolio in like 2 days which is strange bc how could she check that many things that fast? She just assigned random grades", + "pos": 0.17, + "neu": 0.777, + "neg": 0.052, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc9e" + } + }, + { + "text": "Doesnt have anything planned. Gives one grammar worksheet and thats it. Moves on to peer reviews. Her grading is rough which is weird since she doesnt explain anything for the assignments", + "pos": 0.0, + "neu": 0.946, + "neg": 0.054, + "_id": { + "$oid": "6711d5b3cd60fca157e5dc9f" + } + }, + { + "text": "Awful. Doesnt know how to teach. Just keeps doing peer review because shes too lazy", + "pos": 0.0, + "neu": 0.703, + "neg": 0.297, + "_id": { + "$oid": "6711d5b3cd60fca157e5dca0" + } + }, + { + "text": "Professor Liz Is one of the best professors. she's extremely nice, and will always make you feel like your opinion matters. She's not an easy grader, but she is always willing to give extra credit. Her love for writing is so inspiring. I would say this class is an easy A if you read the homework, and do your work.", + "pos": 0.311, + "neu": 0.666, + "neg": 0.022, + "_id": { + "$oid": "6711d5b3cd60fca157e5dca1" + } + }, + { + "text": "She is good teacher, but very difficult to score grades.", + "pos": 0.143, + "neu": 0.587, + "neg": 0.271, + "_id": { + "$oid": "6711d5b3cd60fca157e5dca2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b4cd60fca157e5dca4" + }, + "professor_name": "Julianna LeMieux", + "rating": 3.5, + "department": "Biology department", + "comments": [ + { + "text": "Doesn't require attendance, but you need to watch the lecture in order to get a good grade. She gives out a few homework assignments which are easy grades. The exams can be a bit overwhelming because she asks very specific questions from individual class presentations. Some people never got email responses but she usually responded to mine.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dca5" + } + }, + { + "text": "If this course is mandatory for u, do not take her. She doesn't know how to teach. She basically reads off slides and is not prepared for student's questions. She does not respond to emails, so its clear that this class is not her priority. She doesn't grade the hw on time. If ur going to give us a deadline, at least meet ur deadline. Do not take.", + "pos": 0.059, + "neu": 0.918, + "neg": 0.024, + "_id": { + "$oid": "6711d5b4cd60fca157e5dca6" + } + }, + { + "text": "I disagree with every negative review of this professor. She's really nice and does her job. The exams are a little tough, but theres honestly way harder classes in ccny. Most people hated on her because they wanted easy As. If you have a good background in biology/biochem then this class should be a breeze. If you study then you won't fail.", + "pos": 0.214, + "neu": 0.646, + "neg": 0.14, + "_id": { + "$oid": "6711d5b4cd60fca157e5dca7" + } + }, + { + "text": "I got fooled by the good reviews posted before. I took the mistake of taking her. She doesnt teach at all but thats not new with CCNY. However, I didn't see much of her slides reflect much of her exams or maybe it was just the wording. She is fake nice. She doesnt care about us, and half the time goes off on tangents.", + "pos": 0.076, + "neu": 0.776, + "neg": 0.148, + "_id": { + "$oid": "6711d5b4cd60fca157e5dca8" + } + }, + { + "text": "As an adjunct lecturer who is a journalist instead of researcher, she makes erroneous statements, sometimes does not know what she's supposed to teach and cannot answer some technical questions. Also does not respond to emails and changes grading policy arbitrarily at the expense of the students.", + "pos": 0.0, + "neu": 0.943, + "neg": 0.057, + "_id": { + "$oid": "6711d5b4cd60fca157e5dca9" + } + }, + { + "text": "She is passionate, has clear lectures & very specific with what she wants. She is an EXTREMELY tough grader. She's nice but she's fake nice. Since we were online half the time she made it seem like she's going to be very lenient with us, which she was with the hw and paper but she changed the grading criteria last minute and graded really harsh.", + "pos": 0.194, + "neu": 0.682, + "neg": 0.124, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcaa" + } + }, + { + "text": "She was a tough grader, especially during this pandemic. She does not curve at all. Make sure you study the lecture word for word, as the exams are very specific. It is also difficult to reach her over email.", + "pos": 0.08, + "neu": 0.825, + "neg": 0.094, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcab" + } + }, + { + "text": "One of the best professors in CCNY! She is so passionate about microbiology and it shows because her class is not boring. To pass her class I suggest reviewing her slides, watch videos on YouTube, and do her homework. Her exams are fair and she only asks questions that she went over in class! TAKE HER CLASS!", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcac" + } + }, + { + "text": "Tough grader. Kinda hard to get feedback from & hard to reach via email. Great lectures wish she did all of them herself instead of having guest lectures. Exams are ok includes both MC & short response & fill in the blank. You NEED to know everything on each slide for exams, she asks about a very small detail. Attend ALL lectures or record them", + "pos": 0.14, + "neu": 0.804, + "neg": 0.056, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcad" + } + }, + { + "text": "I honestly wouldn't have passed this class if I didn't have a good study group. Tests can be difficult and contain SO MUCH INFO. Every little detail from slides and what she says you must write down or record because it can show up on the test. You have to dedicate a lot of time for this class. Interesting topics though.", + "pos": 0.084, + "neu": 0.843, + "neg": 0.073, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcae" + } + }, + { + "text": "She is one of the best lecturers I ever had. Her exams are all based on lecture slides. Just read her slide very carefully, including the smallest details and unimportant information. This class is a lot of work, make sure you have time. Beware of the TA , many of them are harsh graders. She does not curve. The average grade for the class is a B.", + "pos": 0.11, + "neu": 0.821, + "neg": 0.069, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcaf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb1" + }, + "professor_name": "Ian Grant", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Professor Grant is very detailed in his lectures and gives concise feedback so that all of his students can pass. Would definitely recommend.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb2" + } + }, + { + "text": "The class was fully asynchronous, the workload was not bad at all yet that professor Ian gave us enough time to do each assignment. He gave extensive feedback on our rough draft, so we knew what needed to be fixed in order to get a good grade. Overall the professor prepared me to feel more confident about my writing as a freshman in college.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb3" + } + }, + { + "text": "Just keep up with your work.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb4" + } + }, + { + "text": "Perfect class to prepare for college level writing. Only few major assignments and we get 2 weeks to do them, submitting an optional rough draft for feedback. gave us few chill weeks so dont know why people are complaining (yall lazy) This is college, writing is only gonna get difficult. Completely asynchronous, take his class! Slow grader...", + "pos": 0.058, + "neu": 0.831, + "neg": 0.111, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb5" + } + }, + { + "text": "For all, he's pretty straightforward, and he makes this class easy to understand, not complicated at all. A lot of writing, but that's the course description anyway, so if you put in the effort, you're going to receive a quick A. It's just that simple.", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb6" + } + }, + { + "text": "If you're going to take his class get ready to write a 750-word essay every week.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb7" + } + }, + { + "text": "He's really straight-forward with his requirements and cares whether students understand the material. He made his lessons interesting while still being clear with what he wanted, yes, the writing was intensive but it definitely prepared me for my other writing courses. He's also very considerate and friendly.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb8" + } + }, + { + "text": "Professor Grant is really helpful with writing and wants to help everyone do well. He is easily reachable by email or during his office hours. If you show up to class you can easily pass.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcb9" + } + }, + { + "text": "He grades too harshly and assigns absurd amounts of work.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcba" + } + }, + { + "text": "this guy can't teach. all he does is assign 8-10 page essays weekly and force you to peer review your classmates sh!tty papers EVERY SINGLE class. he has no experience teaching and it shows. do not take him at all or you will regret it!!!", + "pos": 0.0, + "neu": 0.875, + "neg": 0.125, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcbb" + } + }, + { + "text": "Young and very outgoing. Really easygoing and his class is easy if you put in the work for it.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d5b4cd60fca157e5dcbc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b5cd60fca157e5dcbe" + }, + "professor_name": "Qi Yao", + "rating": 1.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Yao for sure knows his stuff. However, not everyone's cut out to teach. It's tough to follow what he's saying as he doesn't explain things well. He's a genuinely a nice person though, so he doesn't mind going over things again but it doesn't help much. Lots of the info in this class you will have to teach yourself. Choose a different professor.", + "pos": 0.073, + "neu": 0.844, + "neg": 0.082, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcbf" + } + }, + { + "text": "One of the worst professors that I have had so far. His thick accent makes it very difficult to understand what he is talking about. Before the transition to online learning, he was very messy and disorganized while teaching on the blackboard.", + "pos": 0.0, + "neu": 0.758, + "neg": 0.242, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc0" + } + }, + { + "text": "Yao's thick accent made it very difficult to understand him. He gave 3 exams, well, actually he gave 2 exams and did not show up for the last one, which he was giving the day before the final. The second to last class he handed us a review sheet, and that was it. Would try to talk to him after class and not helpful. Take him at your own risk!", + "pos": 0.058, + "neu": 0.844, + "neg": 0.098, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc1" + } + }, + { + "text": "He's a math teacher with a heavy accent who is both boring and hard at the same time. At least his homework is optional and he doesn't grade you for attendance, but you're wasting your time taking his class and the payoff is exams with complicated questions. Want to pass? Either self-study or find a better professor. Yao is a bad choice for Calc 1.", + "pos": 0.07, + "neu": 0.782, + "neg": 0.148, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc2" + } + }, + { + "text": "Hard to understand him during lectures because of his accent and he rushes his lessons. Better off teaching yourself.", + "pos": 0.136, + "neu": 0.798, + "neg": 0.066, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc3" + } + }, + { + "text": "He goes tooo fast in class as if we need to absorb the class in seconds. He is a very picky grader and does not know what a curve is.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc4" + } + }, + { + "text": "This is a very bad professor he cannot teach right. His tests are really heavy but gives very hard hard extra credit. Barely anyone in the class understands the lecture. He has a very heavy language meaning it was hard for him to understand what he is saying. Better off dropping the course.", + "pos": 0.116, + "neu": 0.754, + "neg": 0.129, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc5" + } + }, + { + "text": "Good professor, but he is quite hard to understand at times because of his accent. Very lecture heavy, he doesn't attempt to make concepts easier to understand. If you struggle with mathematical language, you'll struggle in this class.", + "pos": 0.121, + "neu": 0.708, + "neg": 0.17, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc6" + } + }, + { + "text": "It is really hard the average is really bad. I hope he curves it or else my grade will suffer. He is good but with a thicc accent. I just hated it. Math is so hard. He is nice but I wish his test were easier and accessible.", + "pos": 0.223, + "neu": 0.567, + "neg": 0.21, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc7" + } + }, + { + "text": "Professor Yao is pretty good. He knows what he is talking about and doesn't give misleading methods to sold problems. I especially admire his calm and serious attitude.", + "pos": 0.364, + "neu": 0.534, + "neg": 0.102, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc8" + } + }, + { + "text": "Let me say this GET READY to READ. He ain't teaching you baby steps it is all up to you. I dropped his class class cause it's hard. He is a nice teacher but the lecture is a bit heavy.", + "pos": 0.095, + "neu": 0.876, + "neg": 0.028, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcc9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b5cd60fca157e5dccb" + }, + "professor_name": "Gay Wilgus", + "rating": 4.1, + "department": "Education department", + "comments": [ + { + "text": "Very experienced in this field and is always willing to share. Accessible. Would take another class with her.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dccc" + } + }, + { + "text": "She is a great Professor. Very happy to have been in her class. She gives us readings but we discuss them in groups and then everyone gets a chance to participate. Only two important papers and one small presentation at the end. I recommend 10/10 :)", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dccd" + } + }, + { + "text": "One of the worst professors in CCNY. You will waste your time and money. This professor is very disorganized, rude, and pretentious. She wont allow you to express yourself through writing. Instead, she will grade your papers in red and all Caps. Teaching is not her passion, its her hobby. Go figure.", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcce" + } + }, + { + "text": "Professor Wilgus is a solid choice. Her classes were very interactive and meaningful. Her grading is very critical which may frustrate you at times, but overall it is to benefit you to do better to improve your writing. Overall, it was a nice and easy class.", + "pos": 0.354, + "neu": 0.586, + "neg": 0.06, + "_id": { + "$oid": "6711d5b5cd60fca157e5dccf" + } + }, + { + "text": "Professor Wilgus is a great professor. She's always interested in the class and you can tell she's very into her field. She makes her class very easy to pass and just asks for participation from her students. She's very lenient and understanding. Overall she's a very efficient professor and you'll leave the class learning more than you thought.", + "pos": 0.225, + "neu": 0.757, + "neg": 0.017, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd0" + } + }, + { + "text": "I really recommend this professor. She is very helpful advice for writing papers. She has a lot of knowledge in her field and she really wants her students to do well in her class.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd1" + } + }, + { + "text": "Dr. Wilgus is a nice teacher. She explains things well and is understanding. She is a little critical about your writing but I think she is just trying to help student for the better. I recommend her as a teacher.", + "pos": 0.284, + "neu": 0.685, + "neg": 0.03, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd2" + } + }, + { + "text": "This is the best teacher I've ever had. Love her. She is the kind of teachers that is interested in her students success. She is able to explain things over and iver in different ways, and at the end of that class you realize how much you learned with her. And it didnt hurt =. She goes step by step, not as others that give a lot of material @ once.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd3" + } + }, + { + "text": "Her grading on papers may be frustrating at times but the rewrites is a plus when it comes to your GPA. No tests or exams just two presentations and two small essay papers. TAKE HER!!!!", + "pos": 0.0, + "neu": 0.848, + "neg": 0.152, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd4" + } + }, + { + "text": "It's difficult to complain about her grading because I am a college student. Nevertheless, I think she should choose a color other than red. Her grading is intimidating, yet she is very personable. I really hope it was just me", + "pos": 0.068, + "neu": 0.764, + "neg": 0.168, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd5" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd8" + }, + "professor_name": "Soye Zaid-Muhammad", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "Dr. Z is amazing! He really and truly cares for his students! The professionalism of students is super important to him and wants his students to participate. His lectures were great and also very informative. I learned so much about mental health in children and families. We did do group work and individual work as well. Overall he is awesome!", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcd9" + } + }, + { + "text": "Dr. Z provides his students with lots of important information that are very important for you to grow as a professional. If you are looking to get a master's degree in any field I do recommend taking him because he can be a great inspirational individual. He does mean business and expects his students to respect him, and everyone in the room.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcda" + } + }, + { + "text": "Provides PDF textbook. Expects a lot from you on a professional level but it is worth it. Several social psychology posts throughout the semester on the topic of your choice. Just read and study the slides and you will pass the tests. Final paper on a psychology theory and last day is a pretty cool symposium. Will be taking him again next semester!", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcdb" + } + }, + { + "text": "Dr. Z means business. He is a consummate professional and requires the same level of professional responsibility from his students. His class is no cake walk. Expect to work, and hard -- However, you will come away with immense knowledge of psychology. He holds symposiums at the end of the semester to reward the class on their hard work.", + "pos": 0.058, + "neu": 0.863, + "neg": 0.078, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcdc" + } + }, + { + "text": "this professor teach at a high standard. student with interest in psychology should be somewhat prepared to take on graduate study level because he prepare students at such level.keep up the good work profesor!!!!!!!!!!", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcdd" + } + }, + { + "text": "Professor talks too much, too fast and is one-sided. Diverse social psychology teaching is missing.", + "pos": 0.0, + "neu": 0.864, + "neg": 0.136, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcde" + } + }, + { + "text": "Professor on a mission.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dcdf" + } + }, + { + "text": "I TOOK THIS CLASS THIS PASS SUMMER AND IT WAS ONE OF THE BEST CLASSES I EVER TOOK. THE PROFESSOR WAS EXCELLENT, WELL MANNERED AND EDUCATED. I WOULD RECOMMEND THIS PROFESSOR TO ANYONE. HIS WORK IS TEDIOUS HOWEVER HE IS PREPARING YOU FOR GRAD SCHOOL. RIGHT NOW I'M TAKING ABNORMAL PSYCHOLOGY AND PSYCHOLOGY OF ORGANIZATIONAL BEHAVIOR WITH HIM.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dce0" + } + }, + { + "text": "I took Intro to Dev Psych with him- it was an amazing class- very different from what I was used to! I highly recommend taking a class with prof. Mohammed- he's knowledgeable, funny and caring. You will not be bored in his class!", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d5b5cd60fca157e5dce1" + } + }, + { + "text": "I had never been so disappointed in a professor. He is knowledgeable but has no control over his class or his own thought process. He's torn between being a friend and a professor. He needs to be a professor.", + "pos": 0.091, + "neu": 0.743, + "neg": 0.166, + "_id": { + "$oid": "6711d5b5cd60fca157e5dce2" + } + }, + { + "text": "he's easy going, but his midterm and paper is crazy long. he puts us in team work which is very difficult for everyone to work together..", + "pos": 0.061, + "neu": 0.725, + "neg": 0.214, + "_id": { + "$oid": "6711d5b5cd60fca157e5dce3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b6cd60fca157e5dce5" + }, + "professor_name": "Nir Krakauer", + "rating": 2.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "I liked Professor Krakauer's class a lot. The material wasn't too challenging. I didn't always understand everything in lecture but when I went to his office hours, he was always able to help me figure things out. He won't just give you answer, you have to prove that you're willing to work for it. His exams are pretty similar to homework questions.", + "pos": 0.141, + "neu": 0.841, + "neg": 0.018, + "_id": { + "$oid": "6711d5b6cd60fca157e5dce6" + } + }, + { + "text": "His lectures can feel long and a lot of the material is stuff you learn in Linear and differentials but if you keep up with the hw you shouldnt have a hard time in this class. He was one of the few professors who accommodated his students for online learning during the quarantine, his availability and feedback allowed for a smoother transition.", + "pos": 0.023, + "neu": 0.977, + "neg": 0.0, + "_id": { + "$oid": "6711d5b6cd60fca157e5dce7" + } + }, + { + "text": "He may be a very smart dude when it comes to computational math, matlab, and climate science but he is more stingy than past semesters. Lectures are pointless since he doesnt have good hand writing, his matlab homeworks are usually impossible to finish and his online compiler, where we had to input code, barely works which he fails to acknowledge.", + "pos": 0.028, + "neu": 0.774, + "neg": 0.198, + "_id": { + "$oid": "6711d5b6cd60fca157e5dce8" + } + }, + { + "text": "He expects you to work for your grade and there is no way around it. Lectures can be long and boring but as long as you read and do the homework you should be ok. He is willing to help but will not spoon feed you the answer.", + "pos": 0.069, + "neu": 0.869, + "neg": 0.063, + "_id": { + "$oid": "6711d5b6cd60fca157e5dce9" + } + }, + { + "text": "This class requires A LOT of work, every week up to 2 assignments. Prof. is really knowledgeable, will help you if he sees your work. You must ask direct questions, vague questions will get you nowhere. His lectures are dry but will help you for the most part. Webwork assignments are a MUST, do them on your own & you'll do well in exams.", + "pos": 0.118, + "neu": 0.865, + "neg": 0.017, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcea" + } + }, + { + "text": "Gives difficult matlab homeworks and asks for a 10 page singled space report based on small research . or experimental topic using matlab. lectures are pretty pointless to go to and his handwriting is so ineligible. exams were much more lenient than i thought after he grades them. Other than that, he seems to be a genius in global climate.", + "pos": 0.086, + "neu": 0.876, + "neg": 0.038, + "_id": { + "$oid": "6711d5b6cd60fca157e5dceb" + } + }, + { + "text": "He's alright, very knowledgeable, definitely likes to teach this course. Lectures are great for going over examples that are in homework assignments and answers student's questions. Homework is difficult, but exams are based on homework and in-class examples. Exams are also open-book. Keep track of everything - labs, homeworks, past exams, etc.", + "pos": 0.142, + "neu": 0.827, + "neg": 0.031, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcec" + } + }, + { + "text": "He is ok as a professor. Most of the stuff from class can be learned from online material he posts - still need to attend class since he goes over examples used in hw and exams. His project grading is completely unfair and has no reasoning to it so do well in everything else and you should come out with a B.", + "pos": 0.067, + "neu": 0.851, + "neg": 0.082, + "_id": { + "$oid": "6711d5b6cd60fca157e5dced" + } + }, + { + "text": "Start assignments as soon as you get them because you might be able to solve a problem by hand in an hour but you might spend 2 days writing and debugging a very simple program. Study ABSOLUTELY EVERYTHING on his lecture notes so when the exam comes there aren't any surprises, btw his practice exams are good for letting you know what not to study:)", + "pos": 0.103, + "neu": 0.843, + "neg": 0.054, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcee" + } + }, + { + "text": "Dr. Krakauer hates me because I could not handle the hard work. But you see, he saved my life because his course is a real learning experience though was pressured.", + "pos": 0.138, + "neu": 0.74, + "neg": 0.122, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcef" + } + }, + { + "text": "He is a good professor. However, if he does not like you, there is no way you can get an A. Even though if you are the top leading student in class. My advise is to try to be friendly with him", + "pos": 0.161, + "neu": 0.752, + "neg": 0.088, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf2" + }, + "professor_name": "Meghan Duffy", + "rating": 2.2, + "department": "Honors department", + "comments": [ + { + "text": "I wouldn't say professor Duffy is terrible, but she is certainly not the easiest. You definitely have to put in a lot of effort, if you slack off on any assignment your grade will reflect that. I took this class as a free elective, but it turned out to be my hardest course.", + "pos": 0.173, + "neu": 0.748, + "neg": 0.079, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf3" + } + }, + { + "text": "Don't take this class if you don';t have too, especially with this professor. She'll lie to you and she's extremely discouraging, she told me without this class I wouldn't be able to get a job as and actor. Her class and herself drains your energy.", + "pos": 0.043, + "neu": 0.89, + "neg": 0.066, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf4" + } + }, + { + "text": "She is very touch grader but will help you outside the class with your problems.", + "pos": 0.177, + "neu": 0.647, + "neg": 0.177, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf5" + } + }, + { + "text": "Duffy is overall the most disgusting prof. in CUNY. She is the meanest person I've ever met in my life. Duffy is unprofessional and rude. Duffy is the first educator I have ever met who encourages her students to fail. Duffy does not want to see her students succeed. I will pray for this woman who purposely destroys the GPA of CUNY Students.", + "pos": 0.104, + "neu": 0.669, + "neg": 0.227, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf6" + } + }, + { + "text": "dont take if you want to go to the writing center for every paper and read emails in all caps as for what i will do for christmas, havent planned yet.", + "pos": 0.042, + "neu": 0.958, + "neg": 0.0, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf7" + } + }, + { + "text": "Amazing.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf8" + } + }, + { + "text": "One of the best professors at CCNY. Very helpful and the lectures are very engaging and interesting. You will never be bored and would wish to take this class again. This class was also an easy A as long as you do what you're supposed to do. Very easy grader (basically takes whatever you write that is relevant).", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcf9" + } + }, + { + "text": "I just threw up a little.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcfa" + } + }, + { + "text": "x.x", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcfb" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcfc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b6cd60fca157e5dcfd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b7cd60fca157e5dcff" + }, + "professor_name": "Laura Diaz", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "She is really a very good professor and really wants to help students with a problem, always answers emails. I highly recommend her!!! Although she has a lot of tasks, but you will do it easily. By the way, the class topics are very interesting and helpful for personal life.", + "pos": 0.288, + "neu": 0.682, + "neg": 0.029, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd00" + } + }, + { + "text": "She was very kind but unorganized with teaching. I honestly didn't retain a single thing from this class. We'd go off topic so much during lectures & jumped back & forth from chapter to chapter constantly. Expect lots of group work, blackboard assignments, and quizzes. But if you actually wanna learn, do yourself a favor and pick another professor.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd01" + } + }, + { + "text": "If you want to learn about psychology and you are pursuing this major, this class might not be the one for you!!! The professor is disorganized, she reads off of the slides, and she needs to improve more on explaining her assignments and going into more detail in her lectures.", + "pos": 0.094, + "neu": 0.866, + "neg": 0.041, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd02" + } + }, + { + "text": "Laura is nice but she does have disorganized lectures and does not like when we email her so is very hard to communicate sometimes.", + "pos": 0.064, + "neu": 0.671, + "neg": 0.265, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd03" + } + }, + { + "text": "SHE IS ABSOLUTELY AMAZING!!! If you have the chance to have her as a professor please do it!!! Super understanding and kind but she does not like late work and won't accept it so stay on top of deadlines. Submit an assignment that has everything she wants and you get a 100, really simple. Attendance is MANDATORY and alot of classwork so don't miss.", + "pos": 0.247, + "neu": 0.684, + "neg": 0.069, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd04" + } + }, + { + "text": "She is so caring and kind to her students! She make sure you understand everything and answers all your questions. I had her for the summer term and with remote classes, she does not go strict on your or anything. You need to buy the textbook but it's like around thirty bucks online. Powerpoint slides are easy to access, had 7 quizzes and 4 tests.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd05" + } + }, + { + "text": "She's amazing, understanding. Makes things a lot easier currently taking her for the summer abnormal psychology. Open book for exams 3 exams and a quiz for almost every chapter. The quizzes are timed for sometimes. Attendance is mandatory but she's a good grader. Take her easy A or B. She truly cares.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd06" + } + }, + { + "text": "She is quite unorganized; she would upload her exams late and sometimes emailed us incorrect info. Some of the exam questions were also topics never covered in class. Her lectures are boring; she reads directly from the slides and takes forever to go over chapters (took 3 classes to cover chap 1) Besides that, she is really kind and understanding.", + "pos": 0.058, + "neu": 0.906, + "neg": 0.036, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd07" + } + }, + { + "text": "she is one of the best professors I have ever had, she can be slightly confusing at times, but she is one of the most sincere and wonderful people ever, she clearly cares about her students and is so smart and inspiring. highly recommend", + "pos": 0.469, + "neu": 0.512, + "neg": 0.019, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd08" + } + }, + { + "text": "Disorganized. No lesson plan prepared. Reads off of slides. Doesn't know what she plans to cover. Tests are random topics half of which she doesnt cover in class. Doesnt respond to emails. Killed my interest in psych. Didn't learn anything. STAY AWAY FROM THIS PROF.", + "pos": 0.091, + "neu": 0.743, + "neg": 0.165, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd09" + } + }, + { + "text": "She is a TA in this school but she is very sweet and friendly. Just pay attention and you'll do fine", + "pos": 0.379, + "neu": 0.568, + "neg": 0.053, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd0a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b7cd60fca157e5dd0c" + }, + "professor_name": "Soha Ibrahim", + "rating": 4.7, + "department": "French department", + "comments": [ + { + "text": "I had Professor Ibrahim and she's the best I love her so much. Whatever disdain you have for the language don't take it out on her, she's so sweet and really was understanding to students who really needed it. I hope the best for her, if you care about really learning French you can with her.", + "pos": 0.301, + "neu": 0.654, + "neg": 0.045, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd0d" + } + }, + { + "text": "Wonderful professor, literally top 5. You will not regret taking her class. She doesn't grade hard as long as you try she wants everyone to pass. Do your work, participate or try to. You will enjoy every single one of her classes she's always full of joy. You'll probably sing and dance too lol. She's really one of the best at CCNY", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd0e" + } + }, + { + "text": "Ive never had a professor as great as her, she really cares and wants all her students to succeed. Doesn't grade harsh , we had a couple exams (not hard) and a lot of group assignments which were for extra credit. You will sing and dance. Really cried, will miss her class. If your having a bad day her class will uplift your spirt. She's awesome.", + "pos": 0.246, + "neu": 0.657, + "neg": 0.097, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd0f" + } + }, + { + "text": "Professor Ibrahim is a great French professor. She will always try and make sure the whole class is on the same page before moving on to the next topic. Always do your work and hand it in even if it's late because she'll take it. She also makes intermediate French very clear. Greatest professor ever! If you have the chance to take her the do so.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd10" + } + }, + { + "text": "Sweetest teacher ever. She really cares about you enjoying the class. She loves to sing and chat and laugh. The class is hard but daily because languages are hard. Should be easy enough to do well in her class since she will be willing to help you at whatever level of French you are at.", + "pos": 0.281, + "neu": 0.678, + "neg": 0.041, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd11" + } + }, + { + "text": "Math: She wants you to be successful. Nice. Smart. Language barrier, moves too quickly, doesnt relate to students point of view. Not open to change her teaching style during class time to meet needs of student. However, always available outside of class and gets back to questions via email in 24hrs. Allows students to turn in late homework.", + "pos": 0.144, + "neu": 0.833, + "neg": 0.023, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd12" + } + }, + { + "text": "Attendence and participation mandatory. Study for exmas if you want a good grade. Take notes in class since that's what she tests on the the exam.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd13" + } + }, + { + "text": "Professor Ibrahim is a LIGHT in the language department at Fordham University. She is one of the most caring people I have ever met and she wants to make sure that each student understands French on a deeper level then they think they are capable of. Overall a great semester and a great introduction to French! Take her class if you have the chance!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd14" + } + }, + { + "text": "Greatest Professor I have taken at City College. She made the semester very memorable because of her positive and loving attitude towards the class. She is amazing at what she does and will do everything in her power to make sure that her students learn the language. She made learning Arabic seem like one of the easiest things", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd15" + } + }, + { + "text": "Good pace", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd16" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b7cd60fca157e5dd18" + }, + "professor_name": "Robert Messinger", + "rating": 4.1, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Professor Messinger is a brilliant teacher who genuinely wants you to understand the material. He makes complex topics engaging and simplifies them into bite-sized pieces. The class is very well-organized, and his love for teaching and the effort he puts into his lectures are very visible. Great professor and class, would take him again anytime!", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd19" + } + }, + { + "text": "Prof. Messinger is an excellent lecturer, so missing even a day of lecture would be disadvantageous. What I liked about him is how organized he was, which made the class manageable. He also curves, mainly to not discourage students. There were many homework, but they were very helpful for test preps. This class wasn't \"that\" easy, so always study.", + "pos": 0.146, + "neu": 0.756, + "neg": 0.098, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd1a" + } + }, + { + "text": "Prof. Messinger is the best professor that you could ever think of. His lectures are amazing and very organized. His exams are hard, but he curves a lot. If you attend his lectures and complete the HW and lab reports on time, you could end up with an A even if you don't do well in the exams. Cares about students, very helpful during office hours.", + "pos": 0.172, + "neu": 0.784, + "neg": 0.045, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd1b" + } + }, + { + "text": "Professor Messinger is a terrific professor. his lectures were interesting and his expectations are clear. go to office hours! he is very helpful. he gives a lot of partial credit and he curves so don't worry about your grade as long as you put in the work. there is a difference between studying and learning, and in his class, you always learn.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd1c" + } + }, + { + "text": "He is an ok teacher. The lectures are fine, my issues are that he is never available, does give us a lot of practice and his jokes are corny. But overall do not worry he curves a lot, but do your best.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd1d" + } + }, + { + "text": "He is an amazing Professor. Not giving him a 5 because of his choice for textbook. The textbook doesn't have enough problems for practice. Otherwise professor's lectures are delivered with clarity. His TA's are okay not the best. They weren't able to help all the time. He curves a lot so don't worry if you don't do well on the exam.", + "pos": 0.178, + "neu": 0.695, + "neg": 0.127, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd1e" + } + }, + { + "text": "He's really nice. The textbook is really messy so even the professor got confused sometimes. There are 3 tests including the final, homework every week, and 3 lab reports. He is kinda tough professor but does try to make you understand the materials. And He curves.", + "pos": 0.042, + "neu": 0.862, + "neg": 0.095, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd1f" + } + }, + { + "text": "He needs more years to get better at teaching. He makes so many mistakes in lectures, homework, and exams. The textbook is not helpful. there are no problems to practice as the textbook is useless. his materials are not enough to prepare for his hard exams. I Won't recommend! but he's the only one teaches che228.", + "pos": 0.059, + "neu": 0.802, + "neg": 0.139, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd20" + } + }, + { + "text": "Great professor, exams are fair and he's a fair grader. Goes over all the examples in the book which makes it easier for students to understand.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd21" + } + }, + { + "text": "He is a very pleasant person. I would give him 4 out of 5 for his teaching skills, but only because he was new to teaching Intro to ChemE class, after a few semesters he will definitely get a full 5 since he is a smart and thinking person. He cares about the students and is willing to help as much as you can ask for it. Grading is ok, as expected.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d5b7cd60fca157e5dd22" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b8cd60fca157e5dd24" + }, + "professor_name": "Jing Fan", + "rating": 3.2, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "writes on chalkboard, takes important information from the textbook, clear lectures. Shows genuine passion for fluids. Tests often use textbook questions, semi-harsh grader, must follow a certain way of problem solving to earn most credits. pop quizzes for attendance. formula sheet allowed for tests, one page front and back. rlly solid professor.", + "pos": 0.259, + "neu": 0.698, + "neg": 0.043, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd25" + } + }, + { + "text": "final(20) 2midterms(30) participation(10 basically attendance)hw(20) quiz(20). syllabus is very fair and helpful, tough exams and tough grader. She gives great lectures and uses chalk instead of mindlessly reading from slides like most other ME professors. curves final grade(95: A+ 90: A 85: A- 80: B+ 75: B 70: B- 65: C+ 60: 50: D) take her!", + "pos": 0.191, + "neu": 0.763, + "neg": 0.046, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd26" + } + }, + { + "text": "One of the most difficult Professors at campus. Absolutely ignores students' concerns, instead just refutes them with her magic theory. Quizzes and exams are very partially related to what she teaches!", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd27" + } + }, + { + "text": "Very good lecturer, is always open to answering questions, and provides helpful notes but her exams are HARD. Review the notes each week to prepare for her frequent quizzes. If she sees you make progress throughout the semester, she'll give you a grade boost. Very stressful class but she's one of the better professors", + "pos": 0.217, + "neu": 0.674, + "neg": 0.109, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd28" + } + }, + { + "text": "Professor Fan is a good lecturer but her exams are crazy hard. She allows open notes but it didn't really help so much to be completely honest. Make sure to study like crazy and pay attention during lectures. She curved a lot in the end so that was nice.", + "pos": 0.275, + "neu": 0.544, + "neg": 0.181, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd29" + } + }, + { + "text": "Difficult professor. Exam questions are crazy hard. Reads mostly from slides. She gives quizzes every week so you have to constantly study. Attendance MANDATORY she takes attendance everyday.", + "pos": 0.063, + "neu": 0.742, + "neg": 0.195, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd2a" + } + }, + { + "text": "Final was really hilarious because power was off. Students was allowed to go wherever they want and finish the final. Some students cheated on the final and walked away free! Make sure you start the project(pick one out of three) early. You have to make many assumptions for first/second project and you better ask her in person. Good luck XD", + "pos": 0.302, + "neu": 0.655, + "neg": 0.042, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd2b" + } + }, + { + "text": "Good professor. Teaches directly from textbook. Answers questions. HARD EXAMS though. Final exam for us was very hard. Most people (best students) couldn't finish it all. Regular HWs. Do the extra credit/last project thing. 1 midterm. 1 final. Partial credit, but still - you have to know the material. She cares. Solid choice for Heat Transfer.", + "pos": 0.193, + "neu": 0.762, + "neg": 0.045, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd2c" + } + }, + { + "text": "Jing fan is a great professor and extremely nice and caring of her students. however her exams are extremely hard. Class avg of 45 on midterm. Final was difficult and the only way yOu can pass is if you study like crazy. Quizzes every week or other week, whenever a chapter finishes. One project at the end, she switches it every year. Study n pass!!", + "pos": 0.201, + "neu": 0.716, + "neg": 0.083, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd2d" + } + }, + { + "text": "I took him for heat transfer, I personally liked him as a professor, at first he seemed easy but when the class got going you really had to work for my grade. I was lucky I was only taking one other class, I felt like I learned a lot, don't know how I would fair if I had more classes.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd2e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b8cd60fca157e5dd30" + }, + "professor_name": "Alice Baldwin Jones", + "rating": 1.9, + "department": "Anthropology department", + "comments": [ + { + "text": "I took Professor Alice Baldwin Jones my first year of college, as a joint venture for the FLQWS introductory course, mandated by all CUNY freshmen at CCNY. Her teaching mentality is not great; she lectures almost quietly and boring. Gives little to no homework. Take her if you must, however, seek other options, if possible. Received a B.", + "pos": 0.0, + "neu": 0.884, + "neg": 0.116, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd31" + } + }, + { + "text": "just avoid taking her! her lectures are boring, she speaks very low and almost has no enthusiasm to teach. she is not clear at all on the assignments she gives, its almost as if she gives them just to give them. her class is not impossible to pass but is very boring", + "pos": 0.0, + "neu": 0.777, + "neg": 0.223, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd32" + } + }, + { + "text": "A+ student. i got b-. it was a joint class with other prof and all the assgnmnts r graded by 2 profs. the other one gave me A-, while alice gave me B-. So how did I get 2 totally diff grades on same hws? cuz she got no grading criteria. no one knew how she graded hws or based on what. she has 0 interest to class. do urself a favor, stay away!", + "pos": 0.075, + "neu": 0.871, + "neg": 0.055, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd33" + } + }, + { + "text": "I had two classes with Baldwin-Jones. She likes students to participate, which seems like where most of the grade comes from. I didn't speak much in class, but managed to get a B in both classes. Her personality is a little cold..? She doesn't seem to be excited about teaching.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd34" + } + }, + { + "text": "This class is really boring. She's very unclear and confusing. She really doesn't talk much about the material. I never felt so lost in a class like this one.", + "pos": 0.068, + "neu": 0.657, + "neg": 0.275, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd35" + } + }, + { + "text": "im a anthro major! this lady has no idea what shes talking about! she doesnt even know how to answer your question! AND she expects you to write a paper without even telling you what it is she wants in it! then she grades the paper and youre stuck with a C because you didnt include what she wanted!!! she doesnt know anything about anthropology!", + "pos": 0.0, + "neu": 0.921, + "neg": 0.079, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd36" + } + }, + { + "text": "I learned more and enjoyed the class more than I expected. She knows her stuff and has a good rapport with the students. I liked the in-class discussions also, really great insights from the other students. If you stay motivated to do the readings, and turn your papers in on time, you can't go wrong with this class. Recommended.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd37" + } + }, + { + "text": "The class wasn't that bad! All you have to do is, do the readings (or at least skim them..or have previous knowledge) and make sure you hand in the assignments based on her guidelines in the syllabus. There's a midterm, final exam, two paper assignments, & a final paper. And the grades have been posted since yesterday night (12/29). I got an A-!!!", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd38" + } + }, + { + "text": "BORING! You can barely hear her voice, she speaks too low. She has lots of powerpoint slides, which you have to copy to your notes. Her tests are very difficult considering the fact that she doesn't teach well. Her term paper is 9 pages long about a 300+ pg book, and shes not a fair grader. no xtra credit. Don't take her class.", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd39" + } + }, + { + "text": "Alice Baldwin-Jones was the worst professor I ever had. Not only could you not hear her soft timid voice, but she took an intersting subject and made it so boring that it made me wish that I got hit by a bus.", + "pos": 0.072, + "neu": 0.766, + "neg": 0.162, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd3a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b8cd60fca157e5dd3c" + }, + "professor_name": "Gregory Baggett", + "rating": 4.7, + "department": "African-American Studies department", + "comments": [ + { + "text": "Professor Baggett is one of the best professors I ever had. His command over the subject matter is impressive. He forces you to think past the everyday social constructions such as Racism(NOT RACE)and Sexism(NOT SEX).He is brutally honest and he sets and expects a high standard and nothing less. There is a method to his \"madness\". Just listen!!!", + "pos": 0.178, + "neu": 0.725, + "neg": 0.096, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd3d" + } + }, + { + "text": "One of the most brilliant professors I have had! His demand for excellence will refine your critical thinking skills, your writing skills, and your reading skills. His style is unconventional, so be prepared to have long held beliefs about history completely shattered and replaced by an enlightened shift in point of view when examining the past.", + "pos": 0.198, + "neu": 0.699, + "neg": 0.103, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd3e" + } + }, + { + "text": "One of the best professors I've ever had. He cares about grammar. He cares about the format of your assignments. Because of him I am EXTREMELY conscious of semi-colons, comma placement, run-on sentences, and the like. He is very knowledgeable in his area.If you expect to get more out of the class than just a regular lesson, take Baggett.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd3f" + } + }, + { + "text": "An incredibly intelligent man who truly wants to share his intellect with the world. Who better to learn from than a man like that? His expectations are incredibly tough &his criticism tougher. However, you will walk away knowing how you truly stand as a student,&even as a human being... And that's a pretty rare find in your typical college course.", + "pos": 0.313, + "neu": 0.624, + "neg": 0.063, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd40" + } + }, + { + "text": "If you are looking for a professor who seriously challenges you, this is the professor for you. And that's pretty rare at ccny. More then teaching the contents of the course, he opens up the space for intense discussion where you will open your mind in a unique manner. He is one of the best I had.", + "pos": 0.157, + "neu": 0.816, + "neg": 0.027, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd41" + } + }, + { + "text": "Dear Professor Baggett, I enjoyed your class and you thought me discipline in class and also a good way of reading through long articles.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd42" + } + }, + { + "text": "Very helpful to those who recognize that they need help. It's only a matter of you the student wanting to help yourself. He has a very interesting personality and demands that you attend class. Attendance can make or break you! He is a very progressive man, and can help open up doors for you. Very knowledgeable as well. You will learn a lot!", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd43" + } + }, + { + "text": "A very good professor, I was just a bad student. Very helpful to those who recognize that they need help. It's only a matter of you the student wanting to help yourself. He has a very interesting personality and demands that you attend class. Attendance can make or break you! He is a very progressive man, and can help open up doors for you.", + "pos": 0.24, + "neu": 0.715, + "neg": 0.045, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd44" + } + }, + { + "text": "He is one of the best professor's I have taken a class with. He is not a professor who coddles students. When it come to Africana studies, his perspectives are unique and tends not be as didactic as other black professors but it is profound in thought & will have you thinking about course material a lot more than most black studies professors.", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd45" + } + }, + { + "text": "Professor Bagget is a resourceful, knowledgable, and well informed individual. His honesty is one I appreciate the most because he not only dishes it but receives it greatly as well. He promotes the deepest of analytical thoughts and promotes and supports strong minded individuals with challenging minds. All should take this course!", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d5b8cd60fca157e5dd46" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b9cd60fca157e5dd48" + }, + "professor_name": "Mike Metzel", + "rating": 4.8, + "department": "Speech department", + "comments": [ + { + "text": "He is a friendly, cheerful, dynamic, and encouraging person. He grades fairly, is readily available, and is just downright caring. Last day, he shook everyone's hands when he/she was leaving and told us good luck. He also wrote down his email on the board and said he'd love to hear from us if we need a letter of recommendation or anything. So nice!", + "pos": 0.355, + "neu": 0.629, + "neg": 0.017, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd49" + } + }, + { + "text": "This is one of the best professors you will ever come in contact with at BMCC. He has a great sense of humor and is pretty straight forward. It's an easy A if you on time for class and get all the presentations done to the best of your ability. Amazing, jovial, easy going and understanding are the best words to describe him. Take speech 100 guys!!!", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd4a" + } + }, + { + "text": "Excellent professor. He is very enthusiastic and passionate about his class. He gives 3 or 4 small easy speeches and 2 more speeches, which are more elaborate. Don't be late to class and be prepared for every speech and you'll get and easy A. Oh and give feedback to other students about their speeches, he loves that.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd4b" + } + }, + { + "text": "Awesome instructor. Very enthusiastic; a necessary trait for an evening course. Incredibly helpful. Does not tolerate lateness/cel phones", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd4c" + } + }, + { + "text": "I love this instructor. Make sure you don't come in late. Attendance is a huge percentage of the grade. Teaches very well. This guy will actually give u a confidence boost, so you feel great about your speech. I love it. I will miss this guy.", + "pos": 0.4, + "neu": 0.575, + "neg": 0.025, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd4d" + } + }, + { + "text": "He is a good speech teacher and he is also very funny. He doesnt like when people have their cell phones out he will make a notice of how many times your on your phone lol . He is an easy A make sure you show up on time speak clear and remain calm and you will pass", + "pos": 0.267, + "neu": 0.703, + "neg": 0.03, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd4e" + } + }, + { + "text": "EXCELLENT! EXCELLENT! EXCELLENT! He is the greatest professor for speech. He is really enthusiastic and is very fair with grades. Dont be late because attendance is crucial. Just do all the work and you will get an easy A.", + "pos": 0.461, + "neu": 0.539, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd4f" + } + }, + { + "text": "Really nice guy. Not too controlling and he's is respectful of his students...meaning he doesn't treat you like babies. Also, he allows alot of freedom with topics for assignments. Just don't be late to class, he hates that.", + "pos": 0.208, + "neu": 0.646, + "neg": 0.147, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd50" + } + }, + { + "text": "Professor Metzel is one of the easiest professor I have seen in my life. He is very nice and helpful. Just do what you have to do and you will definitely get an A. Not very hard. You should definitely take him for speech.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd51" + } + }, + { + "text": "Man this professor was great. Probably one of the easiest professors I'll ever take. Tremendously nice. Grading is not too harsh. Just do the assignments (there's not a lot) and you should be fine:)", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd52" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5b9cd60fca157e5dd54" + }, + "professor_name": "Charles Maldarelli", + "rating": 4.3, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Prof. Charles Maldarelli is one of the best professors I have had in my entire academic life. He is a wonderful Fluid Dynamicist with an amazing presence of mind. He is extremely funny and pleasant. I am so honored that I took \"Interfacial Phenomena\" with him. It was a once-in-a-life-time opportunity for me. Thank you.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd55" + } + }, + { + "text": "His teaching method wasn't helpful for me. He tends to be 15 minute late to class. He is a nice person to go talk to, but he tends to be unorganized when teaching the course.", + "pos": 0.052, + "neu": 0.902, + "neg": 0.046, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd56" + } + }, + { + "text": "This guy is a fluid mechanics BEAST!!!! ..... the material is very difficult but understandable after extensive hours of study and consultations with the professor. The math is thick so being able to understand the math is key. I loved this class and would recommend it to anyone.", + "pos": 0.172, + "neu": 0.794, + "neg": 0.033, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd57" + } + }, + { + "text": "I guess one could say this professor is nice and all. However....what ever happened to coming to class on time and honoring your obligations of professor. I think he is highly unorganized, and his ways are forcing me and my class mates to learn a difficult subject from the book. He should do his job!!!!!!!!!!!", + "pos": 0.118, + "neu": 0.842, + "neg": 0.04, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd58" + } + }, + { + "text": "He is one of the best prof at chem dep. Great teacher. I hope all of you will enjoy his class.", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd59" + } + }, + { + "text": "Wonderful teacher, gifted researcher and a great human being. Having patience is extremely helpful for students wishing to pursue research under his guidance", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd5a" + } + }, + { + "text": "Great Professor: \"self-respecting,\" knows his material, and cares for his students. Why aren't there more professors like this one?", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd5b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd5c" + } + }, + { + "text": "This professor is one of the best at city college. He gets pretty inspire every time he is teaching his students. He tries his best to explain the material in a way that students can comprehend and absorb the material. His tests are not hard if you understood the material.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd5d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5b9cd60fca157e5dd5e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bacd60fca157e5dd60" + }, + "professor_name": "Karel Hrbacek", + "rating": 4.5, + "department": "Mathematics department", + "comments": [ + { + "text": "Probably the best Math and a one the best prof. in general at city college. His explainations are very clear. He really teaches and then there are no surprises. Simply put, he teaches and wants you to learn and then he wants to give you the best grade possible(Based on what you did)! Want to learn and get a good grade, take his class.", + "pos": 0.254, + "neu": 0.725, + "neg": 0.021, + "_id": { + "$oid": "6711d5bacd60fca157e5dd61" + } + }, + { + "text": "prof. hrbacek is one of the greatest professors. He taught very clearly and was helpful as well. I would recommend him to everyone. It was a pleasure being in his class", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd62" + } + }, + { + "text": "Great professor. Highly recommended. He is clear and available for help. His test are a some what easy but don't expect that for the final. The final was is much harder.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd63" + } + }, + { + "text": "I loooooooove this man! He is one of the best professors I have ever had at CCNY. He is clear, his explanations of the material are extremely precise and he is very willing to help his students at any time.If you go to him when he's in his office, he will put everything down for you.He's also a flexible grader and a very compassionate man.Take him!", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd64" + } + }, + { + "text": "Great Professor. Flexible in class, won't test on anything he doesn't get to in class. No final (3 tests, 6 HW). Very helpful. He co-wrote the book, but he isn't the kind of professor who just says \"its in the book.\" In fact, he teaches some alternate proofs in class, which is great for studying. Flexible grader as well. Highly recommend.", + "pos": 0.272, + "neu": 0.707, + "neg": 0.021, + "_id": { + "$oid": "6711d5bacd60fca157e5dd65" + } + }, + { + "text": "very neat and systematic presentation of material, approachable and helpful during his office hours, one of the best professors in math dept.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd66" + } + }, + { + "text": "Very Helpfull Prof. He is there for the students but his tests are very chalenging. You must know the staff very well. His tests are harder than the department's.", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd67" + } + }, + { + "text": "This guy is sooooooooooooo cooooooollll....easy class, just read the book before the exam and ull get an A....didnt do any excel homemork and still got a A+", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd68" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5bacd60fca157e5dd69" + } + }, + { + "text": "He explains things very fast, then runs out of things to say for the last 40 minutes of class, so he starts going back repeating and elaborating things that he already spoke about, which makes things very confusing.", + "pos": 0.0, + "neu": 0.944, + "neg": 0.056, + "_id": { + "$oid": "6711d5bacd60fca157e5dd6a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bacd60fca157e5dd6c" + }, + "professor_name": "Samleo Joseph", + "rating": 3.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "This professor is totally cool. It is basic requirement for every engineer to know his stuff. Take him if u really want to know stuff. He teaches good and he gives the requirement for every lab and explains what he expects. Doesn't show any ego like some of the other professor. He is honest. He corrects ur lab in front of u and tells ur mistakes.", + "pos": 0.171, + "neu": 0.796, + "neg": 0.033, + "_id": { + "$oid": "6711d5bacd60fca157e5dd6d" + } + }, + { + "text": "He is a grad student, not a professor - and it shows. He doesn't really know how to teach or work with people. He is useless if you have a problem, and he doesn't hand reports back, so you have no idea what grade you got or what problems need to be fixed. He has an attitude and it's easy for him to get in a bad mood and start snapping at people.", + "pos": 0.034, + "neu": 0.77, + "neg": 0.196, + "_id": { + "$oid": "6711d5bacd60fca157e5dd6e" + } + }, + { + "text": "The professor is very helpful when it comes to the projects assigned. He lets the class chose on a final project or a final exam close to the end of the semester. I would recommend a final project since I learned so much more with my final project. He is available pretty much all the time at his office and through email. He pushes you to learn.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd6f" + } + }, + { + "text": "This professor takes advantage of his students to have him work in his Ph.D. project. The guy is friendly, but his Indian/British accent is intolerable (to me). I haven't got a grade yet, but I'm not willing to be black-mailed to code his own doctorate's project implantation on assisted navigation for the blind people.", + "pos": 0.062, + "neu": 0.877, + "neg": 0.061, + "_id": { + "$oid": "6711d5bacd60fca157e5dd70" + } + }, + { + "text": "Great professor. If you really want to learn, take it with him. Very helpful, very co-operative, interesting projects.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd71" + } + }, + { + "text": "This course is different from all the other classes you take but is an easy class if you pay attention to the lecture and read the textbook. The most difficult aspect is the final project but if you ask he will try his best to help you.", + "pos": 0.218, + "neu": 0.694, + "neg": 0.087, + "_id": { + "$oid": "6711d5bacd60fca157e5dd72" + } + }, + { + "text": "Attendance is a must. If u are incompetent and lazy, then this class is just a hell. He is friendly but strict and often makes confused. Too much work and this is a very time consuming class but at the end he gives good grades.", + "pos": 0.109, + "neu": 0.716, + "neg": 0.175, + "_id": { + "$oid": "6711d5bacd60fca157e5dd73" + } + }, + { + "text": "Cool Professor. The project is indeed tough, but you actually LEARN something. professor TEACHES with examples from robots and helps u to understand perfect. I recommend him especially, if you want to do practical. I got an A+.", + "pos": 0.314, + "neu": 0.661, + "neg": 0.026, + "_id": { + "$oid": "6711d5bacd60fca157e5dd74" + } + }, + { + "text": "It was meant to be cool class. Not with this guy. Very mean, treats others bad. Unless you r willing to help him with his project, which he does in order to do his DR degree. Not helpful at all. Any question raised to him, he makes you feel stupid. Reason for that, most likely he doesn't know the answer himself. Avoid this guy. Got A= a lot of work", + "pos": 0.062, + "neu": 0.796, + "neg": 0.142, + "_id": { + "$oid": "6711d5bacd60fca157e5dd75" + } + }, + { + "text": "gives more importance to the final project than the course work", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d5bacd60fca157e5dd76" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bbcd60fca157e5dd78" + }, + "professor_name": "Oleg Goushcha", + "rating": 2.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Was alright the first few months and then he gave a 7 question final exam where one question was WORTH 72 POINTS?! This makes NO SENSE bc you can't show work or demonstrate the process. If you make a minor error you fail the final, even if you were on top of all your other homeworks and projects, your grade drops a whole letter grade.", + "pos": 0.086, + "neu": 0.788, + "neg": 0.126, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd79" + } + }, + { + "text": "Awful instructor, mostly unpredictable, doesn't revise any submission, he just eyes them and decides the grade, you might do nothing and get an A, or do everything and get a B. He's not the worst at city, but can't own up to his mistakes total power trip for him. First instructor I take the time to give negative review 371. He lacks consistency.", + "pos": 0.03, + "neu": 0.826, + "neg": 0.144, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd7a" + } + }, + { + "text": "Professor Oleg is a very knowledgeable professor who puts in a lot of effort in explaining the material. Grades were just based on homeworks, a midterm take home report, and a final project. Clear instructions are always given for the homework and if you're struggling, he is always there to guide you. Solid Professor!", + "pos": 0.077, + "neu": 0.875, + "neg": 0.048, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd7b" + } + }, + { + "text": "Professor Oleg is one of the best professor I have come across in CCNY. No exams, only homeworks and projects. Homework can be difficult but he is always there to help. This professor gives clear instructions for HW and knows his stuff really well. We used MATLAB heavily in this course, but, professor was always there to guide us. Great professor!", + "pos": 0.228, + "neu": 0.726, + "neg": 0.045, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd7c" + } + }, + { + "text": "\"NO COMMENT\" is the best comment for this LECTURER! However, good luck to his students. Happy holidays", + "pos": 0.582, + "neu": 0.418, + "neg": 0.0, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd7d" + } + }, + { + "text": "This Profess Oleg is only an adjunct in the City College of New York. His permanent position is somewhere else not famously called Manhattan College, a small College around here. He has his lecture notes but made by another Professor who is retired now. He explains things On and Off and running away. Avoid him.", + "pos": 0.0, + "neu": 0.951, + "neg": 0.049, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd7e" + } + }, + { + "text": "The lab manual was originally prepared by an OLD PROFESSOR years ago and now Doctor O.G. is putting his own name on it only :(", + "pos": 0.068, + "neu": 0.827, + "neg": 0.104, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd7f" + } + }, + { + "text": "Really bad. Very strict with hws but barely teaches good.", + "pos": 0.248, + "neu": 0.578, + "neg": 0.173, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd80" + } + }, + { + "text": "He has high expectations, but they are clear from the start. He gives you everything you need to succeed in his class though. MATLAB coding is a must, but he is helpful if you are unsure. Final exam is reasonable. You have to pay attention in the labs and follow directions well to succeed in this class. LOVED this class. No regrets. Wonderful time.", + "pos": 0.307, + "neu": 0.603, + "neg": 0.09, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd81" + } + }, + { + "text": "Consists of 5 labs, 1 group project presentation, and 1 final all worth 14.3% each. Labs aren't hard but where you lose points is the reports. They have to follow his format exactly or else suffer low grades for the reports. Must know Matlab coding. Test is simple uncertainty, trapezoid rule and derivation not too bad. Too much work for 1 credit.", + "pos": 0.126, + "neu": 0.694, + "neg": 0.181, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd82" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bbcd60fca157e5dd84" + }, + "professor_name": "Shalom Doron", + "rating": 1.7, + "department": "Political Science department", + "comments": [ + { + "text": "Clear and brilliant man!", + "pos": 0.77, + "neu": 0.23, + "neg": 0.0, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd85" + } + }, + { + "text": "Professor Doron cannot give constructive criticism. He is extremely tough and has his subjective view on grading. Additionally, he cannot teach. The entire class is spent talking about assignments and how we are such poor writers. DO NOT TAKE!", + "pos": 0.055, + "neu": 0.826, + "neg": 0.119, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd86" + } + }, + { + "text": "Drop the class if you do not read, lack discipline, or if you're about to graduate and expect an easy A. However, if you want to learn, read a lot, and be challenged mentally, this course is for you! Hardest class I've taken, nonetheless, I respect Professor Shalom for sniffing out bull and truly being an intelligent professor. You'll learn a ton!", + "pos": 0.215, + "neu": 0.737, + "neg": 0.048, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd87" + } + }, + { + "text": "Where should I start? Avoid taking his courses.", + "pos": 0.0, + "neu": 0.761, + "neg": 0.239, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd88" + } + }, + { + "text": "Not clear in what is being requested for exams or anything that is required for class. Not a good professor and very unprofessional. Does not know how to give students constructive criticism.", + "pos": 0.0, + "neu": 0.716, + "neg": 0.284, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd89" + } + }, + { + "text": "I did not enjoy this class nor the professor's unorganized teaching style.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd8a" + } + }, + { + "text": "Three essays for midterm and three essays for final. Prompts were unclear and class was not enjoyable. Half the class withdrew.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd8b" + } + }, + { + "text": "Professor is unorganized and assigns way too many readings. No grading guidance and rarely responds to e mail. Not recommended.", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd8c" + } + }, + { + "text": "All Supreme Court cases as assignments. Class is very unorganized and grading is not clear.", + "pos": 0.192, + "neu": 0.692, + "neg": 0.116, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd8d" + } + }, + { + "text": "Tough grader. Not clear about essays guidelines. If everybody in your class did bad on your exams, maybe theres something wrong with the way the class is being taught.", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd8e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bbcd60fca157e5dd90" + }, + "professor_name": "Jorge Sanchez-Diaz", + "rating": 4.8, + "department": "Theater department", + "comments": [ + { + "text": "Pretty nice professor. Took him for required speech and he was a good professor. Just try your best during speeches and do the homework.", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd91" + } + }, + { + "text": "Jorge is a really funny guy and he makes his lectures very engaging. He knows what he's doing and gives really great feedback. His assignments are very straightforward. As long as you can follow the structure and make him laugh, you'll get a really good grade.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd92" + } + }, + { + "text": "He is a very honest grader and the same way with feedback. As long as you are prepared and committed to improving, you should be fine. Participation is a must, he doesn't like tardiness if you can help it. But overall super funny and genuine.", + "pos": 0.343, + "neu": 0.629, + "neg": 0.027, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd93" + } + }, + { + "text": "Took online speech class with him in Fall of 21'. Speech isn't my strong suit at all but overall I think I came out of that class better at public speaking and he gave great feedback after our speeches. He wasn't a super tough grader so long as he sees improvement and that you're trying", + "pos": 0.215, + "neu": 0.699, + "neg": 0.087, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd94" + } + }, + { + "text": "I have a lot of anxiety and at first, this class was the END of me. He was assertive but I started to appreciate the feedback he gave everyone (including myself). Lectures were always fun and he's very honest. He helped those who were struggling & offered 1 one 1 meetings. We picked our own topic discussions which made the class more enjoyable!!", + "pos": 0.223, + "neu": 0.714, + "neg": 0.063, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd95" + } + }, + { + "text": "Had to present three speeches for this class, which he explains the requirements for in great detail. Amazing professor who is extremely understanding and looks for improvement overall. His class will really help you improve your public speaking skills in a safe and encouraging environment.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd96" + } + }, + { + "text": "He's a cool person, very funny and chill. Gave me a lot of good feedback on my presentations. This class is presentation heavy and you have to be ready to prepare a presentation like every week but he never shames you if you make a mistake or freeze. 10/10", + "pos": 0.233, + "neu": 0.713, + "neg": 0.054, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd97" + } + }, + { + "text": "My god, what a total gem of a professor. Took his speech class expecting to be bored to death but I have had nothing but a GREAT time with this class. If he has any flaw it is that he will occasionally have to extend presentation classes because he has so much great feedback. It helps that he obviously cares about his students on a personal level.", + "pos": 0.196, + "neu": 0.695, + "neg": 0.109, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd98" + } + }, + { + "text": "This professor is one of CCNY's Gems. He is very understanding and lectures are interesting. The only thing though-participation. Just show up to class do the assignments. He isn't harsh about deadlines and always tries to work with you. Interesting class discussions. If you fail his class its your fault because he is amazing! assignments are easy", + "pos": 0.208, + "neu": 0.704, + "neg": 0.087, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd99" + } + }, + { + "text": "Amazing teacher. I took him for speech class, and he was very chill. Very little homework, but easy and helpful. Lectures are mandatory but never dull. Cameras must be on since it is speech class, and you choose your own speech topics. He provides students with the readings he assigns, great feedback, encouragement, and a chill and safe classroom.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d5bbcd60fca157e5dd9a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bccd60fca157e5dd9c" + }, + "professor_name": "Omnia Khalil", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "Such a sweet professor, I would take her class ten times if I could. Class discussions were always extremely interesting and she encouraged class participation and voicing your opinions. Work was always easy to fair, and she really cares deeply about all her students. It ended up as one of my favorite classes and always left me thinking afterwards.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5dd9d" + } + }, + { + "text": "Professor Omnia is a very good prof she does care about her students listen, and the grade are fair. One thing you must know every week you have a discussion board due but the reading are interesting and not hard at all.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5dd9e" + } + }, + { + "text": "She's a really nice professor. Allows cheat sheets on every quiz and the final is open book. I found out that instead of actually studying, you could just copy paste every slide onto your cheat sheat and were basically guaranteed a perfect score on the quizzes. For the final, just print out every slide at the NAC library and you will be okay.", + "pos": 0.12, + "neu": 0.798, + "neg": 0.083, + "_id": { + "$oid": "6711d5bccd60fca157e5dd9f" + } + }, + { + "text": "She is very thoughtful and cares about her students, she is always available to answer question and talk. \nThe lecture is very interactive and contained aspects of history and modern issues.There are quizzes at the end of every unit but they only consist of 5-6 questions, there was a lot of extra credit offered.\nOverall she is an amazing professor.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5dda0" + } + }, + { + "text": "This is indeed a 2k level class, so expect to put a decent amount of work (reading, small projects and essays). Omnia is really caring for her students and compassionate. Good lectures and the topics are interesting, great way to teach anthropology cultural perspectives. Her class is easy as long as you keep up with the readings.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5dda1" + } + }, + { + "text": "Her professional demeanor, knowledge base and precision in the realm of cultural anthropology leave nothing to question. She has been a pleasure to have as an instructor and look forward to it again. I highly recommend her for anyone seeking to complete their general education course requirements.", + "pos": 0.126, + "neu": 0.851, + "neg": 0.023, + "_id": { + "$oid": "6711d5bccd60fca157e5dda2" + } + }, + { + "text": "Prof Khalil is one of the most caring, personable, and understanding professors I've ever had at City College. She genuinely cares about her students and made every lecture enjoyable and interesting. The homework was relatively easy, and she even gave us extensions whenever needed. I never expected to enjoy her class as much as I did. Def take her!", + "pos": 0.216, + "neu": 0.747, + "neg": 0.037, + "_id": { + "$oid": "6711d5bccd60fca157e5dda3" + } + }, + { + "text": "She is SO unbelievably kind, sincerely, so kind. I loved her online class, she was so understanding when I had to move my presentation day, she didn't skip a beat. She provides the reading and then you do short responses to the reading. Mid-term was 500 words. Professors like her are what keep me going in college, I wish I had her for every class.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5dda4" + } + }, + { + "text": "Truly such an amazing Professor, Omnia is so thoughtful and understanding. If you need help, she's always there. Her assignments are relatively fair and easy as long as you finish the reading (which are a decent length). Her lecture style is very friendly conversation based. She's just the best, a 100/10 course. If I could take her again I would.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5dda5" + } + }, + { + "text": "Amazing professor honestly! you learn so much each class she explains very well, the homework is simple and self-explanatory, no exams just projects, and each are easy to do if you follow along in class and do the required readings for each week, highly recommend this professor for anthropology, she cares about her students and what she teaches.", + "pos": 0.255, + "neu": 0.715, + "neg": 0.031, + "_id": { + "$oid": "6711d5bccd60fca157e5dda6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bccd60fca157e5dda8" + }, + "professor_name": "Sebastian Cordoba", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Cordoba is the ideal teacher, teaching the ideal form of class. He cares greatly about you learning what you will be using , with no extra or added content. He allows you to do what you find best to solve problems using your own tools. Hes extremely accessible and consistently kind. I cannot recommend him enough.", + "pos": 0.259, + "neu": 0.647, + "neg": 0.094, + "_id": { + "$oid": "6711d5bccd60fca157e5dda9" + } + }, + { + "text": "Professor Cordoba is a nice guy. He was reachable outside of class all the time. He was lenient because of the pandemic. We didn't use a textbook but we did use an online course called Hawkes to do assignments, our midterm and final. We used SPSS and Excel to do separate assignments. You're going to need a study group in this class (it helped me)", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5ddaa" + } + }, + { + "text": "He is a great professor he creates his own in depth slides and makes sure you understand the material gave 3 exams all in class in essay format but made sure to go over the fair exam questions before-hand and even offered to check drafts and give a hypothetical grade for your essay I would definitely recommend taking him..", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5ddab" + } + }, + { + "text": "He was an amazing professor, gave amazing and interesting lectures, and gave great feedback. He is very passionate about what he teaches which is good because he cares about the content he gives. He is very understanding and has a great personality. Would definitely take him again.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5ddac" + } + }, + { + "text": "Honestly if I can put more tags i would professor Cordoba has to be hands down one of the best professors I've had in CCNY. The exams are super easy, at first a bit intimidating when you read the syllabus but when he explains them they're so easy. I actually learned in this class because of the testing format, I recommend professor Cordoba 100%", + "pos": 0.228, + "neu": 0.747, + "neg": 0.026, + "_id": { + "$oid": "6711d5bccd60fca157e5ddad" + } + }, + { + "text": "Great professor!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d5bccd60fca157e5ddae" + } + }, + { + "text": "I was beyond nervous coming into this class as it is a requirement and I totally suck at anything coming remotely close to math! Sebastian explained the material super well and his jokes made the class entertaining. He's there for his students: answers emails immediately, offers extra credit, and is available during his office hours.", + "pos": 0.206, + "neu": 0.716, + "neg": 0.079, + "_id": { + "$oid": "6711d5bccd60fca157e5ddaf" + } + }, + { + "text": "I'm still currently taking him, but I can tell anyone that he is a great professor. He makes the lessons easy to understand. He is also a very nice person, and gives extra credit. As long as you pay attention and understand the material passing is easy.", + "pos": 0.329, + "neu": 0.646, + "neg": 0.025, + "_id": { + "$oid": "6711d5bccd60fca157e5ddb0" + } + }, + { + "text": "Being that he's just finishing grad school, Sebastian still gets what it's like to be a student. He's relatable and cleared up anything that was confusing in the main lecture class (he was my TA). He always tries to make things as easy as possible and is honestly as fair as possible. He's a cool teacher. Taking him again for PSY 226. Can't wait.", + "pos": 0.196, + "neu": 0.778, + "neg": 0.026, + "_id": { + "$oid": "6711d5bccd60fca157e5ddb1" + } + }, + { + "text": "Good prof, easy to understand, occasionally cracks a joke or two that keep students awake and interested to some degree. Understands the material quite well, and comes off as a generally happy and caring person, but don't expect any mercy for cutting class or not reading the assignments/doing the homework.", + "pos": 0.227, + "neu": 0.698, + "neg": 0.075, + "_id": { + "$oid": "6711d5bccd60fca157e5ddb2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bdcd60fca157e5ddb4" + }, + "professor_name": "Lisa Weinstein", + "rating": 2.1, + "department": "Psychology department", + "comments": [ + { + "text": "Professor never response to emails and you will not learn from this class. she is a nice person but as a professor I don't recommend. She reads off slides and is disorganized. She is overall hard to reach and her class is very confusing. You're better off learning on your own and google. she also does not give any feedback on any paper.", + "pos": 0.1, + "neu": 0.766, + "neg": 0.135, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddb5" + } + }, + { + "text": "This professor sucks. Never responds to emails and you can barely get in contact with her. Extremely boring class and just reads off slides. You'll learn nada in her class and will never get a response from her", + "pos": 0.0, + "neu": 0.876, + "neg": 0.124, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddb6" + } + }, + { + "text": "She is a very kind person, but as a professor I honestly did not learn much from her. The slides she reads off of had a lot of typos and a half of the class time is lost due to disorganization/tech issues. She is a little too lax which makes it difficult to take her seriously. I did enjoy some of the videos she showed which helped me understand", + "pos": 0.13, + "neu": 0.769, + "neg": 0.101, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddb7" + } + }, + { + "text": "She is very disorganized and not even prepare for the lecture. she is a very hard grader and confusing.", + "pos": 0.0, + "neu": 0.724, + "neg": 0.276, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddb8" + } + }, + { + "text": "Spring 2018 Prof. Weinstein is very approachable. She works with you on your course concerns. She utilizes powerpoint and videos a lot. She also encourages participation and feedback, give lots of extra credit and a few written papers - stick to the criteria for her papers. She actual wants you to learn rather than memorize and regurgitate.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddb9" + } + }, + { + "text": "She's very laid back but knows her stuff. Her quizzes are online, no major final exam, the final is a 10 page paper. Sometimes her lectures can be boring or interesting. As long as you get most of the quizzes correct, you should be fine. Advice: quizlet will save you.", + "pos": 0.165, + "neu": 0.74, + "neg": 0.095, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddba" + } + }, + { + "text": "If you care about learning abnormal psychology take her. Reading the textbook and using the textbook helps a lot with the online quizzes. She easy except for the papers. So use as much outside sources (textbook, slides, and articles) as you can for the writing assignments. However you will learn a lot from her.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddbb" + } + }, + { + "text": "She is pretty disorganized in terms of grading. She's late to class a lot and just reads off the powerpoint. The most interesting part is her stories from her practice. There are no tests, just quizzes on blackboard which is based on the textbook. Basically, i didnt pay attention a lot in class and read the textbook.", + "pos": 0.117, + "neu": 0.814, + "neg": 0.069, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddbc" + } + }, + { + "text": "She knows a lot about the subject. However, she is very disorganized and often change the requirements and deadline of assignments. She assigns a term paper that is 10 pages and is very harsh at grading it. Although she gives extra credit, but it seems like it didn't help at all. Please don't take her classes, if you are not required to.", + "pos": 0.113, + "neu": 0.792, + "neg": 0.095, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddbd" + } + }, + { + "text": "She cares about the subject (learning disabilities) but is quite disorganized. The requirements to pass the class often change. dont bother buying the textbook because her quizzes are based on blackboard slides. In person, she seems reasonable and nice but when it comes to grading, completely different. If possible, choose a different course.", + "pos": 0.136, + "neu": 0.81, + "neg": 0.054, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddbe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc0" + }, + "professor_name": "Tudor Protopopescu", + "rating": 2.8, + "department": "Philosophy department", + "comments": [ + { + "text": "Don't take him. Lots of homework and if copy answer from the internet he will give you a zero. Even though you only copy one sentence he will still give you a zero. Don't have clear guidelines for the essay. Don't have mid-term, the final grade is based on your homework and your final. Just don't take him. He is the worst professor.", + "pos": 0.019, + "neu": 0.888, + "neg": 0.093, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc1" + } + }, + { + "text": "Professor Protopopescu is a very nice man. He's friendly and down to Earth, and will always be there to help. With that said, his lectures are quite boring and he is very monotonous. He gives one assignment a week and three essays but ALL SINGLE SPACED if you're into that. Tough grader but no midterm. He also always shows up, never late or absent.", + "pos": 0.085, + "neu": 0.825, + "neg": 0.09, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc2" + } + }, + { + "text": "Not an easy prof expects a lot from his students, but is really helpful if you do the work. Read drafts of my papers and gave me comments on how to improve which really helped, made time to meet with me and answer my emails...take his class if you are seriously interested in philosophy but be prepared to put in the work.", + "pos": 0.189, + "neu": 0.76, + "neg": 0.051, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc3" + } + }, + { + "text": "Ugh. This professor is useless. The majority of the grade is based on weekly assignments, due Mondays. We spend most of Monday and some of Wednesday reviewing the HW, and (sometimes) we have time for a new lesson on Weds. Basically, you teach yourself the GRADED assignments from the text...which he takes forever to grade. No idea what my grade is..", + "pos": 0.0, + "neu": 0.881, + "neg": 0.119, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc4" + } + }, + { + "text": "Knowledgable, neat, organized,clear presentation-everything what a professor should have! Study, take notes-that's what you should have. Not for students looking for an easy A!", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc5" + } + }, + { + "text": "I don't understand why so many negative comments on this professor-he is pretty much neat and clear when teaching,readings are not hard to understand(especially if you like philosophy:). Otherwise attend his lectures (take notes)and you'll do well.Not an easy A!", + "pos": 0.299, + "neu": 0.625, + "neg": 0.075, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc6" + } + }, + { + "text": "Do yourself a favor and skip this professor if you don't want your life at college to be misarable!", + "pos": 0.141, + "neu": 0.801, + "neg": 0.058, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc7" + } + }, + { + "text": "This professor is a court jester who should be sent back to the middle ages.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc8" + } + }, + { + "text": "Do not take this guy. He only gives bad grades.", + "pos": 0.0, + "neu": 0.72, + "neg": 0.28, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddc9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bdcd60fca157e5ddcb" + }, + "professor_name": "Panteleymon Anastasakis", + "rating": 4.6, + "department": "World Civilizations department", + "comments": [ + { + "text": "He is one of the best professors at CCNY. He has a wicked sense of humor, knowledgable, is easy going and the class is relatively easy. Be prepared to read but at least he chooses interesting sources. My favorite part about his class was how transparent and simple he had structured the semester. 2 essays, midterm, final and some short responses.", + "pos": 0.236, + "neu": 0.734, + "neg": 0.03, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddcc" + } + }, + { + "text": "Prof. Anastasakis is great! All the necessary materials, questions for quizzes and exams, lists of terms are given beforehand. He always gives a hint if there is a pop-up quiz during the next class. The lectures are amazing. Fair grader. Prof. answers all the exam questions asked during the recitation session.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddcd" + } + }, + { + "text": "You don't have to purchase a textbook, all the readings are posted. He gives you the test/pop quiz questions in advance. He also gives extra credit opportunities. If you pay attention in class and do the work you'll pass.", + "pos": 0.122, + "neu": 0.845, + "neg": 0.033, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddce" + } + }, + { + "text": "Great Professor. He's very straightforward when it comes to his exams by giving both the exam format and questions (Minus the terms of course). Do the readings and pay attention to his lecture and its pretty much an easy A. Also, pop quizzes are often given as soon as the readings are complete. Lastly, lots of extra credit opportunities.", + "pos": 0.25, + "neu": 0.73, + "neg": 0.02, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddcf" + } + }, + { + "text": "Really tries to get you to think. Incredible teacher. Would frequently find him outside of class in the library and have amazing conversations with him analyzing history. This class is not about learning what happened but thinking about what happened and why did it happen and how we can learn from it. Incredible professor, also a very real individu", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddd0" + } + }, + { + "text": "Very caring and wants his students to do well in his class! Easy A cuz he gives you all the essay questions before the midterm/final (essay is 70% of test). Also gives plenty of bonus opportunities. Gives pop quizzes BUT don't stress, they're not terrible. Down side- lectures are really dry!!! I would say take him for a GPA booster mostly tbh.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddd1" + } + }, + { + "text": "I honestly took this course not expecting much from the professor. In reality, he was actually pretty great. His lectures are very insightful, he knows the material very well, answers your questions @ any given time, and is available outside the classroom. He may teach a bit fast but that's honestly the only flaw. Oh, and his readings are long!!", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddd2" + } + }, + { + "text": "Gives pop quizzes almost every week in the beginning of the class on the readings from previous nights readings. In addition, his readings are long and boring just like his lectures. However, he is kind when it comes to grading and will show some sympathy if you show some effort and dedication.", + "pos": 0.143, + "neu": 0.818, + "neg": 0.039, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddd3" + } + }, + { + "text": "WCIV with him is great! He has clear expectations and lays it out in front of you. Understanding the readings of primary sources are essential to passing the quizzes he gives every week. He is very understanding and very approachable so you can always go to him with concerns. However his lectures can be very boring. He was very helpful during exams", + "pos": 0.143, + "neu": 0.821, + "neg": 0.037, + "_id": { + "$oid": "6711d5bdcd60fca157e5ddd4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5becd60fca157e5ddd6" + }, + "professor_name": "Ana Marjanovic", + "rating": 3.9, + "department": "Art department", + "comments": [ + { + "text": "To be honest I was having a great time in this class till she crapped on my essay because she said and i quote, \"Don't place modern values on old work\" when I mentioned racism in the art world. Very disgusting. Had to report her and her boss got involved.", + "pos": 0.118, + "neu": 0.721, + "neg": 0.161, + "_id": { + "$oid": "6711d5becd60fca157e5ddd7" + } + }, + { + "text": "Her instructions are as clear as water. She is understanding and communicative. But this class requires a lot of work! If you have the discipline and like to write a lot, this class and prof is for you.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d5becd60fca157e5ddd8" + } + }, + { + "text": "A gem! She was super helpful and never seemed to be bothered when I asked for help. However, since this is a writing class, you have to be prepare ... especially for the final. Read and do the papers and ask for help when need be and you will good!", + "pos": 0.252, + "neu": 0.711, + "neg": 0.037, + "_id": { + "$oid": "6711d5becd60fca157e5ddd9" + } + }, + { + "text": "There's a lot of papers with this class because it is a writing about art class... however, do the readings and complete all paper/outlines and you will do just fine! Gives you a lot of resources and sample papers for reference. Great professor and I would definitely take her again! Super helpful and enthusiastic.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d5becd60fca157e5ddda" + } + }, + { + "text": "Ana is amazing and one of the sweetest instructors Ive had. She is super helpful when you ask her questions and she provides a ton of resources for you. Theres no way to not do well in her class unless you slack on the papers. Its a writing class and is mandatory for art majors, so take it seriously! You get as much as you put in.", + "pos": 0.155, + "neu": 0.769, + "neg": 0.077, + "_id": { + "$oid": "6711d5becd60fca157e5dddb" + } + }, + { + "text": "I like Prof. Marjanovic, the class I took was a bit dense with lots of essay assignments but there isn't any other homework outside of the essays and no tests, she is funny and tries to make things relatable, she breaks down the writing assignments so they aren't overwhelming. If you enjoy writing and like to laugh, you'll like her!", + "pos": 0.279, + "neu": 0.685, + "neg": 0.036, + "_id": { + "$oid": "6711d5becd60fca157e5dddc" + } + }, + { + "text": "This is a writing class so you will be writing a lot. The way she breaks down the assignments and the grades are completely fare and do able. And I don't even love writing but this turned out to be one of the most interesting class and she is sooo fare when she grades. Gives extra credit, allows rewrites. Great class recommend it.", + "pos": 0.213, + "neu": 0.758, + "neg": 0.029, + "_id": { + "$oid": "6711d5becd60fca157e5dddd" + } + }, + { + "text": "The prof is unfair with the attendance. Class starts at 12:30, and you arrive at 12:30 and are considered late. Back to back papers doesnt let you breathe. Knowledge of art history is best to have in this class. Boring class as well.", + "pos": 0.124, + "neu": 0.769, + "neg": 0.107, + "_id": { + "$oid": "6711d5becd60fca157e5ddde" + } + }, + { + "text": "3 short papers , 1 final paper, 2 quizzes, few presentations, and extra credit. Pay attention in class ( or read the excerpts she provides) and you will pass. Offers re-writes and gives good feedback", + "pos": 0.141, + "neu": 0.823, + "neg": 0.036, + "_id": { + "$oid": "6711d5becd60fca157e5dddf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5becd60fca157e5dde1" + }, + "professor_name": "Andy Nagel", + "rating": 2.9, + "department": "Computer Science department", + "comments": [ + { + "text": "He is very helpful and attentve", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d5becd60fca157e5dde2" + } + }, + { + "text": "TAKE CSC 103 with him!!! Easy A for sure. Yaah he is lazy sometimes. But he explains everything very good. His assignments are good. His exams are very easy. Overall he is good.", + "pos": 0.428, + "neu": 0.536, + "neg": 0.036, + "_id": { + "$oid": "6711d5becd60fca157e5dde3" + } + }, + { + "text": "His explanations are poor and he's not really willing to help you. He sets office hours and isn't even available for them. Also did not curve for my class while many other classes have a curve. Would not recommend him at all.", + "pos": 0.063, + "neu": 0.827, + "neg": 0.11, + "_id": { + "$oid": "6711d5becd60fca157e5dde4" + } + }, + { + "text": "Affable but not a very good teacher. Lectures are mostly narrations of his own code, but they too fast to copy down and he delays weeks before posting the code. So you have to learn everything on your own. This semester he has not graded any assignments, either, as of the last week of the course. Not a useful course, taught this way.", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d5becd60fca157e5dde5" + } + }, + { + "text": "Friendly teacher. Takes a little while to grade projects but he knows what he's talking about and is willing to help out.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d5becd60fca157e5dde6" + } + }, + { + "text": "he dont be helpin me smh", + "pos": 0.0, + "neu": 0.685, + "neg": 0.315, + "_id": { + "$oid": "6711d5becd60fca157e5dde7" + } + }, + { + "text": "This is an easy class if you keep up, try, and pay attention. Lab was more than long enough to ask Andy for help with writing programs and most of us left before class ended.", + "pos": 0.144, + "neu": 0.821, + "neg": 0.036, + "_id": { + "$oid": "6711d5becd60fca157e5dde8" + } + }, + { + "text": "He is prof. mccracken's T.A and absolutely horrible in explaining in lane man terms.For some reason he thinks every one has basic knowledge of C++ prior to this class. I believe he sets the Finals and they are tough, I bet you.", + "pos": 0.0, + "neu": 0.883, + "neg": 0.117, + "_id": { + "$oid": "6711d5becd60fca157e5dde9" + } + }, + { + "text": "He takes you a lot of points from your programs. He is basically a T.A. But whenever he explains something is out of this world.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5becd60fca157e5ddea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bfcd60fca157e5ddec" + }, + "professor_name": "Norma Cofresi", + "rating": 1.6, + "department": "Psychology department", + "comments": [ + { + "text": "Thoroughly unqualified to teach college level courses. I felt like I was back in high school and the substitute was teaching class. Most of the people in my class felt the same way even though they got As & Bs, which is why she wasn't able to keep her job.", + "pos": 0.049, + "neu": 0.951, + "neg": 0.0, + "_id": { + "$oid": "6711d5bfcd60fca157e5dded" + } + }, + { + "text": "LET ME SAY PEOPLE ARE IDIOTS. ANYWAY THIS PROFESSOR IS A GREAT PROFESSOR. HER WERE EASY, HER REVIEWS HELPED US UNDERSTAND THE MATERIAL BETTER, ALTHOUGH SHE DIDNT TOUGH BASE ON CERTAIN SUBJECTS I FOUND HER TO BE A GREAT TEACHER. TOO BAD SHE WONT BE TEACHING @ CITY ANYMORE. I GOT AN A IN HER CLASS.SUCKS FOR THE REST WHO DIDNT LEARN MUCH..I SURE DID.", + "pos": 0.254, + "neu": 0.667, + "neg": 0.079, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddee" + } + }, + { + "text": "easy grader but you will learn nothing in her class.. even if you do learn - 50% will be inconsistent, contradictory or plain wrong. she seems to count on the students to teach her class. very boring too.. can be a bit snappy at times. u can find interesting easy graders instead of this.", + "pos": 0.138, + "neu": 0.706, + "neg": 0.156, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddef" + } + }, + { + "text": "She was a mediocre prof, didn't really add a lot of insight to the subject. She has a sense of humor and is generally a nice person. Gives plenty of extra credit and bonus points for perfect attendance. Exams were based on online ques bank. Participation not required though probably helps for her to know you.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf0" + } + }, + { + "text": "Boring class, She does not know how to teach and it even feels like she does not know the material. she was inconsistant with everything she said and it effected people's grades. she does not do anything by herself other then sitting in class, and the exams are directly from the book (so you have to memorize the chapters to answer correctly!)", + "pos": 0.043, + "neu": 0.922, + "neg": 0.035, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf1" + } + }, + { + "text": "One of those professors you really wonder about... Why is she teaching and, more importantly, why am I paying for this?! Easy grader but will torture you with boredom and often incorrect information.", + "pos": 0.096, + "neu": 0.698, + "neg": 0.207, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf2" + } + }, + { + "text": "What a terrible professor. You will get an A if you're present, but will not learn a single thing. Her lectures were very boring, but easy. She can be nice yet seems to have 'favorites' in class. Although I got my A, I would never take her again.", + "pos": 0.194, + "neu": 0.716, + "neg": 0.091, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf3" + } + }, + { + "text": "she goes STRAIGHT FROM THE BOOK. also, she often uses improper english and cannot pronounce scientific terminology. she is very nice though and gives +10 points to your FINAL grade if you have 100% attendence. her tests are from the book's question bank and are complicated and dumb. she is a nice person though and its not hard to get an A", + "pos": 0.14, + "neu": 0.813, + "neg": 0.047, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf4" + } + }, + { + "text": "the worst professor i ever had. she's supposedly a freudian, but considering her clumsiness, you'd think that she's there to blatantly judge people in class rather than teach. a waste of time - only + was the class itself (ppl in the group). easy to get an A as long as she personally likes you. avoid her incompetence like the plague! plz fire her!", + "pos": 0.145, + "neu": 0.651, + "neg": 0.204, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf7" + }, + "professor_name": "Maria Theodoraki", + "rating": 4.2, + "department": "Biology department", + "comments": [ + { + "text": "If you take the course over the summer, she would be able to help you meet with you personally (just make an appointment). Her lectures are clear and you have to study them for the test, plus read the book. Work hard and try answer the extra credit questions in the tests and you'll be fine.", + "pos": 0.156, + "neu": 0.821, + "neg": 0.023, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf8" + } + }, + { + "text": "She's a good lab instructor in terms of content coverage and clarity. She encourages participation and is very considerate. She provides excellent feedback on lab reports and basically walks you through the class step by step. Ask questions if you need help, but not obvious questions because no one likes someone who doesn't use their common sense.", + "pos": 0.18, + "neu": 0.733, + "neg": 0.087, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddf9" + } + }, + { + "text": "Great Professor. Pay attention, take notes, and for god's sake participate! She's very clear with respect to what she expects from you. Ask questions and put effort into your work.", + "pos": 0.28, + "neu": 0.683, + "neg": 0.037, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddfa" + } + }, + { + "text": "Maria is a good teacher. She makes the students think - not just follow the steps in the lab manual. She gets annoyed by students who ask questions about what she just explained, but I don't think she should be judged harshly for that, because the stuff that is taught in Bio101 isn't difficult. So, just don't be lazy and you'll be fine.", + "pos": 0.137, + "neu": 0.837, + "neg": 0.026, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddfb" + } + }, + { + "text": "She is easy to be around and, easy to learn from. She does grade harshly, but not unfairly. She was my recitation instructor and I am very happy with her in that capacity. I would like to take a class that was just hers if she ever teaches one. She is a reasonable and personable prof who wants us to do well, if we apply ourselves.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddfc" + } + }, + { + "text": "Maria did a great job in this lab. It was taught like a real class and she demanded a lot of us while being reasonable. Maria \"gets\" what grading is for ie it is to ensure and verify that people study the material w/o punishing them or being arbitrary and capricious. I would love to take her 425 class on cancer next term. Smart.Highly recommended!", + "pos": 0.188, + "neu": 0.692, + "neg": 0.12, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddfd" + } + }, + { + "text": "She is one of the best, difficult subject but doable with her as your instructor", + "pos": 0.15, + "neu": 0.749, + "neg": 0.101, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddfe" + } + }, + { + "text": "One of the best profs at CCNY - I loved her class! Tests come straight from the topics covered in class - just take good notes. Lectures progress in a cohesive order. Studying for her cancer bio class took time, but it was not ridiculously demanding. The topic of the class was difficult, but Theodoraki made it completely manageable.", + "pos": 0.214, + "neu": 0.703, + "neg": 0.084, + "_id": { + "$oid": "6711d5bfcd60fca157e5ddff" + } + }, + { + "text": "This professor is nice but does NOT know how to teach but she tries her best though to make sure students learn. She is also a very tough grader.", + "pos": 0.281, + "neu": 0.661, + "neg": 0.058, + "_id": { + "$oid": "6711d5bfcd60fca157e5de00" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c0cd60fca157e5de02" + }, + "professor_name": "Hasan Erkan", + "rating": 4.1, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Really great guy! He cares a lot about students and doesn't mind repeating himself so many times just so that his students understand. This is not something you find in CCNY's EE professors. He's chill and laid back and isn't a very picky grader when it comes to lab reports. The clock lab is very tedious but it's an excellent learning experience.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de03" + } + }, + { + "text": "He's a really good professor. He cares about the students and makes the learning environment a very positive one. Make sure you write good lab reports and READ THE LAB MANUAL BEFORE CLASS in case he gives a pop quiz. For his final, re-read the lab manual. An A shouldn't be very hard to get.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de04" + } + }, + { + "text": "overall a very descent and cool guy to have inthe lab doesnt pressure you alot a very easy class for final just make you read the lab experiments from the starting point. most of the time you wont see him in the lab duration meaning he is in his wonderland when you need help you'll see what i mean if you take him regular semesters", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de05" + } + }, + { + "text": "Overall lab 1 wasn't a heavy workload class. The lab manual was sometimes unclear but Erkan helped out when asked. He sometimes gave pop quizzes that were very easy. Expect to write lab reports and use MATLAB to analyze data. Overall Erkan is a very good professor for this class.", + "pos": 0.15, + "neu": 0.823, + "neg": 0.026, + "_id": { + "$oid": "6711d5c0cd60fca157e5de06" + } + }, + { + "text": "Good professor; material is very understandable. Be aware that he likes to give tricky questions on the exams, but it's ok since he curves.", + "pos": 0.238, + "neu": 0.716, + "neg": 0.047, + "_id": { + "$oid": "6711d5c0cd60fca157e5de07" + } + }, + { + "text": "He assigns homework at the end of every chapter. He will be available whenever you need him. I think he is the best ENGR 204 teacher..", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de08" + } + }, + { + "text": "His exams are tricky and hard, don't take him if you are not EE, lots of homework, and goes very fast, and he is crazy.", + "pos": 0.0, + "neu": 0.803, + "neg": 0.197, + "_id": { + "$oid": "6711d5c0cd60fca157e5de09" + } + }, + { + "text": "comes to class well prepared, explains the material very well. Be careful because one lecture he will go slow but the next one he could do it fast. Test were not that bad, just you need to know every concept that he teaches. He's test are unpredictable. Overall I recommend him.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de0a" + } + }, + { + "text": "Erkan is a great professor. I'd say he is probably the best EE220 teacher. He is very clear and organized, but expects you to study and to be prepared. His tests are a little harder than average and will put real life problems for you to solve from time to time. He is very helpful if you need him.", + "pos": 0.221, + "neu": 0.729, + "neg": 0.05, + "_id": { + "$oid": "6711d5c0cd60fca157e5de0b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c0cd60fca157e5de0d" + }, + "professor_name": "Janet Steele", + "rating": 4.4, + "department": "Music department", + "comments": [ + { + "text": "She's Just Wonderful", + "pos": 0.649, + "neu": 0.351, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de0e" + } + }, + { + "text": "Love her. I'm currently finishing up voice 1 with her and she's beyond amazing. My class is really small and intimate, there are about 15 of us and she pays individual attention on each of us, making sure to address the areas we need to improve. If you want to better your voice, take her! :)", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de0f" + } + }, + { + "text": "I think that she is beautiful woman who knows how to sing. Because of her I was able to get into the vocal ensemble. i learned a lot about my voice....really wonderful....", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de10" + } + }, + { + "text": "She rocks", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de11" + } + }, + { + "text": "She's a sweet and wonderful professor. Learned a lot! Wouldn't suggest taking Voice I AND II with her though b/c it wasnt much of a difference. So if you gonna take both, take diff professors. But she's great!", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de12" + } + }, + { + "text": "Small intimate class only 50 minutes long.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de13" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5c0cd60fca157e5de14" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5c0cd60fca157e5de15" + } + }, + { + "text": "1)Unorganized and unclear about grading. 2)Seems to pick \"favorite students\" and that's bugged me. 3)Doesn't teach anything--she relies solely on the grad students who pop in now an then to give us papers to write. 4)Not knowledgeable or helpful when you approach her with questions. 5)Avoid her.", + "pos": 0.112, + "neu": 0.849, + "neg": 0.039, + "_id": { + "$oid": "6711d5c0cd60fca157e5de16" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c0cd60fca157e5de18" + }, + "professor_name": "William Hunt", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "Took this class in fall 2011. When you really focus and pay attention you will enjoy class lectures & learn a lot. Helps with essays, you have to put in a lot of effort as you should be putting in for all classes. as long as you go back and forth to edit and revise and understand, you will def see your writing improve.", + "pos": 0.124, + "neu": 0.853, + "neg": 0.024, + "_id": { + "$oid": "6711d5c0cd60fca157e5de19" + } + }, + { + "text": "He is a cool guy and all but an extremely harsh grader!!! Even when you think you did really well on a paper, don't be surprised if you end up with a D . However, he does give you the opportunity to re-write if you show him that you care enough. He is boring but make sure you listen to everything he says!!", + "pos": 0.208, + "neu": 0.678, + "neg": 0.114, + "_id": { + "$oid": "6711d5c0cd60fca157e5de1a" + } + }, + { + "text": "Make sure to pay attention to him when he talks about each essay you need to write. He wants everything organized. He loves it when you use transition words. I sugest you record him or something to make your life easier. Analyze past essays too.", + "pos": 0.172, + "neu": 0.801, + "neg": 0.027, + "_id": { + "$oid": "6711d5c0cd60fca157e5de1b" + } + }, + { + "text": "Horrible professor! Teaches everything off of his iPad, topics are extremely boring, and he just talks for the whole class. His grading is ridiculous, he grades every little thing and it makes no sense, even spelling (when he cant spell himself) ADVICE: DO NOT TAKE HIS CLASS!", + "pos": 0.0, + "neu": 0.791, + "neg": 0.209, + "_id": { + "$oid": "6711d5c0cd60fca157e5de1c" + } + }, + { + "text": "This professor is just amazing..he knows everything in writing,psychology,medicine,etc...his class is really intresting.you have to write 6papers and gives some reading assignments(quizez)...i just love his class!but its a really tough class!! Goodluck", + "pos": 0.138, + "neu": 0.814, + "neg": 0.049, + "_id": { + "$oid": "6711d5c0cd60fca157e5de1d" + } + }, + { + "text": "Cool and interesting guy. Tells you exactly how he wants his paper organized. Fun discussions and enjoys his job. Helped me become a better writer with his tips. Covers interesting topics in science so that the papers aren't boring.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de1e" + } + }, + { + "text": "Can someone tell me if there is any quiz and how many peper are ther. for his class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de1f" + } + }, + { + "text": "very easy class. give a paper but u do it in parts first and he grades each part then u put it together as a whole. very helpful and cares about ur work. interesting class and discussions.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de20" + } + }, + { + "text": "hes a pretty good teacher..explains things well...overall is helpful and is kinda interesting.smart guy.", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d5c0cd60fca157e5de21" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c1cd60fca157e5de23" + }, + "professor_name": "Nicole Urban", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Nicole is a brilliant, patient, articulate and extremely warm person and teacher. This is the second class I've taken with her. She RULES, she makes class so interesting, is awesome at facilitating discussions.. class just goes really fast. Take her if you can!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de24" + } + }, + { + "text": "Alot or group work but a great professor", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de25" + } + }, + { + "text": "Professor Urban is the most sweetest and flexible professor within the psychology department. She's rocks!...She makes the class worthwhile & engages the students any which way possible. She is the best professor I ever had. I wish I could take all my psychology classes with her.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de26" + } + }, + { + "text": "First of all, whoever commented saying \"Horrible\" must not be speaking about this same Professor Urban i know....She is the sweetest, most helpful professor i have taken at City!!...Any questions you ask her she finds a way in helping you with...I must say she is my favorite professor at CCNY...Very determined and wonderful human being!!..:)..", + "pos": 0.229, + "neu": 0.72, + "neg": 0.051, + "_id": { + "$oid": "6711d5c1cd60fca157e5de27" + } + }, + { + "text": "I took Infancy and Childhood with Prof. Urban last semester and it was absolutely great. Thee was a lot of group work, so, if you do not work well in groups, this class is not for you. The only downside was that the class was way too big: this is a fault of the department's not the professor.", + "pos": 0.068, + "neu": 0.832, + "neg": 0.1, + "_id": { + "$oid": "6711d5c1cd60fca157e5de28" + } + }, + { + "text": "Nicole is the best professor i had in city college, very helpful and understanding. i would really recommend taking her for any class.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de29" + } + }, + { + "text": "Nicole is the sweetest person in this world. She is very clever and after each discussion you want to hug her. What I missed was more structure and I really did not enjoyed group work. If you like somebody else working for you in the group or spending a lot of time managing everybody to do their part in group project - take the class.", + "pos": 0.137, + "neu": 0.793, + "neg": 0.069, + "_id": { + "$oid": "6711d5c1cd60fca157e5de2a" + } + }, + { + "text": "horrible!", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de2b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5c1cd60fca157e5de2c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c1cd60fca157e5de2e" + }, + "professor_name": "Ted Anderson", + "rating": 4.4, + "department": "Speech department", + "comments": [ + { + "text": "He is clear and straight forward. 5 speeches, only two have an outline. No quizzes or exams. Just show up, present, and listen. A definite GPA booster.", + "pos": 0.208, + "neu": 0.723, + "neg": 0.069, + "_id": { + "$oid": "6711d5c1cd60fca157e5de2f" + } + }, + { + "text": "Great professor, he really loves the subject and the class is very engaging. He only gave about two lectures the entire semester, the rest of it was either speeches or class discussion. He grades you on how much you have improved and gives a lot of helpful feedback. There's only 5 short speeches for the entire semester which are graded leniently.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de30" + } + }, + { + "text": "Like him!! He is very friendly and funny. Easy A", + "pos": 0.678, + "neu": 0.322, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de31" + } + }, + { + "text": "the nicest professor you can ever have for speech. very friendly and not scary at all. all he sees is how much you improved from last time you talked. no quizzes or exams just 5 speeches in total. i wish i could take this class again, loved this class. i would recommend this prof to everyone taking speech for the first time.", + "pos": 0.279, + "neu": 0.692, + "neg": 0.028, + "_id": { + "$oid": "6711d5c1cd60fca157e5de32" + } + }, + { + "text": "He made giving speeches less scary and gave positive and helpful feedback.", + "pos": 0.447, + "neu": 0.406, + "neg": 0.148, + "_id": { + "$oid": "6711d5c1cd60fca157e5de33" + } + }, + { + "text": "Amazing professor. Nicest person you will meet. Show up and do your speeches and he'll love you. Learned so much from him. Amazing person in general. One of the best professors in terms of feedback and helping students. His class is one t o cherish. Must take him.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de34" + } + }, + { + "text": "Easy A...Just show up and talk...", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de35" + } + }, + { + "text": "Amazing professor...as long as u show up and talk once in a while u will get an easy A....no papers, no quizzes, no exams.... :)", + "pos": 0.258, + "neu": 0.601, + "neg": 0.141, + "_id": { + "$oid": "6711d5c1cd60fca157e5de36" + } + }, + { + "text": "Great professor...easy class...5 easy speeches...ready to help...take him...If you show up and do the speeches he will give you a B or an A...I loved that class...Highly recommend him if you want to improve your GPA... :)", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d5c1cd60fca157e5de37" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c2cd60fca157e5de39" + }, + "professor_name": "Jordan Schauer", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Mr. Schauer is nice and this class was super chill. None of his assignments (3 papers and a presentation) weren't hard and didn't take much work to get a good grade. I did expect an A but a B+ ain't so bad to me. We used the textbook but maybe for like 2 or 3 classes, I would just rent or share with a friend.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d5c2cd60fca157e5de3a" + } + }, + { + "text": "Wouldn't recommend. He is a very chill professor but extremely arrogant. Tough grader, I was expecting a high grace in class (B+ on all his assignments). Not reachable after class, overall a very boring guy whose makes class hardly enjoyable. Do not miss class or be late, has a strict attendance penalty.", + "pos": 0.128, + "neu": 0.641, + "neg": 0.231, + "_id": { + "$oid": "6711d5c2cd60fca157e5de3b" + } + }, + { + "text": "He is a okay professor. He is calm and friendly. Sometimes he isn't too clear when explaining assignments and he doesn't give good grades or extra points. I was expecting an A- and he gave me a B.", + "pos": 0.164, + "neu": 0.733, + "neg": 0.102, + "_id": { + "$oid": "6711d5c2cd60fca157e5de3c" + } + }, + { + "text": "GOOD professor! Very easy class. 1 research paper, 1 memo, 1 tech description, 1 lab report, group proposal and checks your writing log. I got a B+ but was expecting an A (85+ on all assignments),at least an A-. Straight forward class, just don't wait for last minute to write your essays. Take him? Yeah, but if there's better than no.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d5c2cd60fca157e5de3d" + } + }, + { + "text": "HE IS AWESOME, AND FUNNY IN HIS OWN WAY. DO ALL THE WORK, HE IS VERY HELPFUL, IF YOU DO NOT WANT TO ASK YOUR QUESTION NOW YOU CAN ASK HIM AFTER CLASS OR EMAIL HIM. HE WAS THE BEST PROFESSOR I EVER HAD NO LIE", + "pos": 0.248, + "neu": 0.693, + "neg": 0.059, + "_id": { + "$oid": "6711d5c2cd60fca157e5de3e" + } + }, + { + "text": "One of the best professor. Very helpful. He is funny in his own way.Be in class on time that is important, he don't like lateness.I am happy to have him and I would take him again.Do all the work and if you don't understand he is there to help Trust Me", + "pos": 0.325, + "neu": 0.644, + "neg": 0.032, + "_id": { + "$oid": "6711d5c2cd60fca157e5de3f" + } + }, + { + "text": "His class is \"chill\" and fair as long as you come to class everyday (ON TIME), and do what is expected of you. There weren't very many essays (which could be a bad or good thing). The key to writing any english essay is to embrace the topic yourself: If you find your essay a bit lackluster, then chances are so will your professor. Fair grader.", + "pos": 0.154, + "neu": 0.799, + "neg": 0.047, + "_id": { + "$oid": "6711d5c2cd60fca157e5de40" + } + }, + { + "text": "His class, as well as himself, has a pretty easy flow. There was nothing difficult about the class except for doing the papers. We used one textbook on how to write Lab Reports which I found to be a waste since we didnt use it much and we wrote only one Lab Report. He allows us to give in drafts of our papers which is extremely useful.", + "pos": 0.175, + "neu": 0.789, + "neg": 0.036, + "_id": { + "$oid": "6711d5c2cd60fca157e5de41" + } + }, + { + "text": "He was a really cool professor. He allows you to rewrite stuff if you got lower than a B on an assignment, but that should only happen if you really procrastinate. I'm expecting an A or an A- in his class. He's pretty lenient on grading so you shouldn't expect anything less than an A- if you do what you need to do.", + "pos": 0.126, + "neu": 0.851, + "neg": 0.023, + "_id": { + "$oid": "6711d5c2cd60fca157e5de42" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c2cd60fca157e5de44" + }, + "professor_name": "Anasa Scott", + "rating": 4.1, + "department": "International Studies department", + "comments": [ + { + "text": "A sweet Heart! love love the course! not many Instructor I know that has a career outside the Academy. So you actually get real world applicable experience teaching in her class. In my experience of being in college for the past 3 years, those are the best Professors.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d5c2cd60fca157e5de45" + } + }, + { + "text": "Everything is outlined on the syllabus, in terms of what you are suppose to do to get a good grade in the class. She is a fair Professor, if you do your work the correct way, then its very easy to pass the class, but if you are a student that is lazy and want the professor to give you a grade you did not deserve, the professor will fail you.", + "pos": 0.089, + "neu": 0.811, + "neg": 0.1, + "_id": { + "$oid": "6711d5c2cd60fca157e5de46" + } + }, + { + "text": "Great class, she is a true scholar and passionate about her field and career. She is a role model that I aspire to emulate and be like someday. She really care about her student, she gave me a wonderful opportunity to intern with a company and it lead to a full time job, which was a life changing experience.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d5c2cd60fca157e5de47" + } + }, + { + "text": "She is straight forward and up front, Their is no confusion in the class, students are divided into groups, everything in the syllabus is life experience base, so the projects are trial and errors, as appose to theory base learning, which is a waste of time and not learning anything at all. Real info you can apply is best way to learn!", + "pos": 0.117, + "neu": 0.809, + "neg": 0.074, + "_id": { + "$oid": "6711d5c2cd60fca157e5de48" + } + }, + { + "text": "I have to say that I am very blessed & thankful that I took this class, because I learn a lot about business strategies, marketing, and how to be a successful entrepreneur. If any other students have a chance, I would highly encourage you take the class.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d5c2cd60fca157e5de49" + } + }, + { + "text": "Great Prof learn so much in that class!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d5c2cd60fca157e5de4a" + } + }, + { + "text": "She is unclear about what she wants yet expects the right submissions. She also has attitude problems. She is knowledgeable but lacks confidence when talking which is very distracting and doesn't match her position as a professor. Would never take her again.", + "pos": 0.091, + "neu": 0.775, + "neg": 0.134, + "_id": { + "$oid": "6711d5c2cd60fca157e5de4b" + } + }, + { + "text": "Great instructor. Great class. Definitely take her!", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d5c2cd60fca157e5de4c" + } + }, + { + "text": "Disorganized, didn't stick to syllabus, the class is a social change networking class encouraging us to meet each other and come up with business ideas, but the class lacked specific assigments and goals, and due to the nature of a self-help business class, I did not learn anything,", + "pos": 0.044, + "neu": 0.924, + "neg": 0.032, + "_id": { + "$oid": "6711d5c2cd60fca157e5de4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c3cd60fca157e5de4f" + }, + "professor_name": "Casey Henry", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He is such a nice person and he is so understanding . I honestly wish he taught English 201. Guys take the class he is great and young so thats good because he can see our perspective. Extremely great", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de50" + } + }, + { + "text": "Professor Henry is one of the best Profs I've taken at CCNY. His passion for literature is quite inspiring. He is very engaging and values everyone's contributions to class discussion. It is very easy to learn from him. I learned a lot. He is also one of the calmest, most nice people I've ever met. I 100% recommend taking him, you won't regret it.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de51" + } + }, + { + "text": "The sweetist professor ever. Very intelligent and thoughtful. He knows the marerial very well. Take him you will read intersting stories, poems and novles. 2 papers no longer than 5. 9 Dissuctions on BB. and participation. That is it. He is very nice to the students and gives instrucions on how to write essays and gives feedback. Just take him.", + "pos": 0.169, + "neu": 0.799, + "neg": 0.032, + "_id": { + "$oid": "6711d5c3cd60fca157e5de52" + } + }, + { + "text": "He is one of the best professors for sure! The class is fascinating and definitely easy. Readings aren't much and are interesting for every major. He is super friendly and gives extra credit. Two 5 pg papers and 10 blog posts (2 paragraphs). Definitely take him.", + "pos": 0.465, + "neu": 0.535, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de53" + } + }, + { + "text": "Professor Henry is very sweet. He does his best to make himself available to students outside of the classroom and also gives extra credit opportunities. He is very understanding so as long as you come to class, pay attention, and put in the work, you will do great. I had him for two semesters last year and would definitely take him again.", + "pos": 0.257, + "neu": 0.725, + "neg": 0.018, + "_id": { + "$oid": "6711d5c3cd60fca157e5de54" + } + }, + { + "text": "He can come off a bit boring at first, but he is REALLY passionate about literature and you can tell. He is open-minded to different interpretations about the readings. There is a reflection due per reading per class, but its not hard. He gives really helpful feedback and answers emails quickly. He is also young so that's always a plus.", + "pos": 0.169, + "neu": 0.807, + "neg": 0.024, + "_id": { + "$oid": "6711d5c3cd60fca157e5de55" + } + }, + { + "text": "Recommended to take his class. Respected and Professional. Gives good feedback on assignments. Fair across the board.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de56" + } + }, + { + "text": "THE BEST PROFESSOR IN CCNY. I CAN NOT STRESS THIS ENOUGH! I LOVE THIS MAN! He's SO inspiring and SO easy learn from. TAKE HIS CLASS!!!", + "pos": 0.516, + "neu": 0.484, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de57" + } + }, + { + "text": "He is an amazing professor. He had us read a lot of different stories throughout the semester and write a respond for each story we read, so if you aren't the type to actually sit down and do the homework don't take him. The homework he gives goes a long way with your grade. Besides that no exams just 2 papers. He makes the class enjoyable.", + "pos": 0.093, + "neu": 0.876, + "neg": 0.031, + "_id": { + "$oid": "6711d5c3cd60fca157e5de58" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c3cd60fca157e5de5a" + }, + "professor_name": "Nihal Vatandas", + "rating": 4.4, + "department": "Computer Science department", + "comments": [ + { + "text": "Discrete Mathematical Structures is not an easy class. However, professor Vatandas tries her best to explain the concepts in a clear and concise way with great notes. She stops to explain anything any student may be confused on until the student understands the idea.", + "pos": 0.197, + "neu": 0.688, + "neg": 0.114, + "_id": { + "$oid": "6711d5c3cd60fca157e5de5b" + } + }, + { + "text": "CSC104 is a pretty tough course but Nihal makes it much easier. She grades generously and is overall a very nice person.", + "pos": 0.428, + "neu": 0.533, + "neg": 0.039, + "_id": { + "$oid": "6711d5c3cd60fca157e5de5c" + } + }, + { + "text": "Don't listen to the reveiws that say anything negative about her. She is very good at describing hard to teach topics in simple ways and is very nice.", + "pos": 0.178, + "neu": 0.678, + "neg": 0.144, + "_id": { + "$oid": "6711d5c3cd60fca157e5de5d" + } + }, + { + "text": "She might appear nice, but she doesn't know anything about how to create a proper grading system. She was ready to fail more than half the class, despite everyone basically failing her exams. The whole grade is only exams, and any actual effort you put in (hws, attendance, recitation, etc) only counts as a tiny 4% extra credit. She doesn't curve!!!", + "pos": 0.207, + "neu": 0.73, + "neg": 0.063, + "_id": { + "$oid": "6711d5c3cd60fca157e5de5e" + } + }, + { + "text": "Very sweet professor. She tried her best to explain the material to the class. The class unnderperfomed but still gave out a crazy curve. From my perspective half of the class should had failed but almost everyone got a good grade. Her exams were fair and easy. I think she is awesome.", + "pos": 0.29, + "neu": 0.606, + "neg": 0.104, + "_id": { + "$oid": "6711d5c3cd60fca157e5de5f" + } + }, + { + "text": "Literally the best in city college of NY", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de60" + } + }, + { + "text": "Best I can ever ask for", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de61" + } + }, + { + "text": "THE BEST TA IN CITY COLLEGE", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de62" + } + }, + { + "text": "Very fair professor, clear grading criteria. Exams are fair, there's a review session before each test.", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de63" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c3cd60fca157e5de65" + }, + "professor_name": "Ina Saltz", + "rating": 3.8, + "department": "Art department", + "comments": [ + { + "text": "You cant help but learn more about typography by taking her class. Which is the point. But anyone can get a book on type history and its mechanisms and learn that way too. Other than that, youre on your own. Also, beware her critiques as they may depend more on your phenotype and social background than your actual talent.", + "pos": 0.059, + "neu": 0.915, + "neg": 0.026, + "_id": { + "$oid": "6711d5c3cd60fca157e5de66" + } + }, + { + "text": "Professor Saltz was a pretty decent teacher. She first told us during the beginning of the semester to get this textbook but decided to change her mind and have us listen to her own videos she makes on typography for quizzes. She gives you good advice during critiques which is what we mostly do in class but she switches her thoughts every week.", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de67" + } + }, + { + "text": "Ina is not great teacher. Dont get me wrong she loves typography to the heart and she really knows her stuff. But when it comes to teaching she sucks. Teaching is a gift and she doesnt have it. Except to spend a lot of money printing projects over and over again. Her homework is confusing. You do it one way when she ment another.", + "pos": 0.14, + "neu": 0.757, + "neg": 0.103, + "_id": { + "$oid": "6711d5c3cd60fca157e5de68" + } + }, + { + "text": "I took Type 2 with her and she is a hub of Typographic knowledge! She is somewhat stern about deadlines, doing revisions, and gave us a few quizzes. However, she is brilliant, lovable and only wants us to succeed. Take her class, you won't regret it :)", + "pos": 0.234, + "neu": 0.723, + "neg": 0.043, + "_id": { + "$oid": "6711d5c3cd60fca157e5de69" + } + }, + { + "text": "She is a better teacher of content delivery than content creation.", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de6a" + } + }, + { + "text": "She is very critical, which could sometimes break your heart into little pieces.. but hey if you wanna be a good designer, you need to learn to take those criticism. She gives you many harsh, but real and very useful feedback. I learned a lot from this class.", + "pos": 0.173, + "neu": 0.675, + "neg": 0.153, + "_id": { + "$oid": "6711d5c3cd60fca157e5de6b" + } + }, + { + "text": "I've had this professor for a few classes now, and I always learn a lot from her. She is very helpful, and it's noticeable that she really cares about her students. She pushes all her students to excel. Take her whenever you can! If you work hard and pay attention, you'll get a lot out of any of her classes.", + "pos": 0.143, + "neu": 0.815, + "neg": 0.041, + "_id": { + "$oid": "6711d5c3cd60fca157e5de6c" + } + }, + { + "text": "i thought she was a great teacher, and in her way she is a cute little something. very very good with type i learned so much. i look at type a whole new way, isn't that what teaching is all about,", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de6d" + } + }, + { + "text": "coolest professor ever!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5c3cd60fca157e5de6e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c4cd60fca157e5de70" + }, + "professor_name": "Hope Stephens", + "rating": 4.3, + "department": "Education department", + "comments": [ + { + "text": "good teacher. not too clear on the lectures but is truthful to what is happening in the economy today. when he lectures he tells you how it relates to today. no homework and only two test. the two test make the class more difficult. but grades on improvement as well. so if you bomb the 1st test just do better on the 2nd.", + "pos": 0.198, + "neu": 0.649, + "neg": 0.154, + "_id": { + "$oid": "6711d5c4cd60fca157e5de71" + } + }, + { + "text": "Great teacher I took his class over this summer and it was really easy. I'll recommend those that want to take his class to come everyday to class and read the book.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de72" + } + }, + { + "text": "Awesome teacher, really fun", + "pos": 0.794, + "neu": 0.206, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de73" + } + }, + { + "text": "This class was a blast to take, and Dr. Al made it very worth it. His class is a little tough and if you miss a class you'll probably fall behind really easy, but he gives a ton of hand outs and other kinds of study aids. Very funny and engaging. Only 2 tests though so you have no margin for error. Study hard and you'll pass easily.", + "pos": 0.218, + "neu": 0.658, + "neg": 0.124, + "_id": { + "$oid": "6711d5c4cd60fca157e5de74" + } + }, + { + "text": "well, you only have 2 tests, no homework or anything. so if u fail the first one, youre screwed. but hes willing to work w/you. he did with me, just as long as youre there everyday and show him that u want to do good.", + "pos": 0.132, + "neu": 0.751, + "neg": 0.117, + "_id": { + "$oid": "6711d5c4cd60fca157e5de75" + } + }, + { + "text": "Great teacher, Just make sure you go to class all the time", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de76" + } + }, + { + "text": "good teacher. went right along with book so it was easy to follow.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de77" + } + }, + { + "text": "He's a good professor. He'll work with you if you have problems outside of class. Only 2 tests. Provides a good study guide and tests from previous years to help study. First half was really easy the second half was a bit more difficult, but not bad. Taking another one of his classes next semester.", + "pos": 0.183, + "neu": 0.757, + "neg": 0.059, + "_id": { + "$oid": "6711d5c4cd60fca157e5de78" + } + }, + { + "text": "Fun class. His first test is really easy, because we study as a group. Follow his instructions on how to succed in his class!!!!!! He keeps the class interesting. Second test is hard because there is a lot of info, but not impossible to make an A in his class. You don't need a book.", + "pos": 0.122, + "neu": 0.858, + "neg": 0.02, + "_id": { + "$oid": "6711d5c4cd60fca157e5de79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c4cd60fca157e5de7b" + }, + "professor_name": "Osceola Whitney", + "rating": 3.4, + "department": "Biology department", + "comments": [ + { + "text": "A sweetheart! He is on the more understanding and caring side, which is extremely rare for a professor in research. He cares to help his students succeed and to meet their needs the best he can. His exams are tough, I won't lie you have to be on top of your game for this class: don't take it with any other bio classes. He curves if calss avg is low", + "pos": 0.262, + "neu": 0.697, + "neg": 0.041, + "_id": { + "$oid": "6711d5c4cd60fca157e5de7c" + } + }, + { + "text": "He said in person attendance was optional for lectures, but then he wouldn't answer questions from the students online. His slides were never posted on BB before the lecture and were mostly diagrams from the textbook. Not as detailed in lectures but asks very detailed questions on his exams. Seemed confused half the time tbh just read the textbook", + "pos": 0.0, + "neu": 0.952, + "neg": 0.048, + "_id": { + "$oid": "6711d5c4cd60fca157e5de7d" + } + }, + { + "text": "This was his first time teaching the course. Although exams were a little difficult, he curved each; he really wanted everyone to do well. Make sure to read the text (and take notes) in addition to attending lecture, it helps.", + "pos": 0.155, + "neu": 0.796, + "neg": 0.049, + "_id": { + "$oid": "6711d5c4cd60fca157e5de7e" + } + }, + { + "text": "I took Animal Behavior as a graduate elective. Not only is Dr. Whitney knowledgeable, he is a very kind and dedicated professor. Participation is important so that he gets to know you and it shows him you care. He is excellent with office hours and will take the time to guide you through writing papers and discussing topics in class. GREAT GUY!", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de7f" + } + }, + { + "text": "If you want your GPA to drop, then take this class. He tests you with questions that dont relate to anything to the material. The problem sets are a joke. He should stay out of teaching and just do research. The animal behaviors were interesting but he made me regret taking the class overall.", + "pos": 0.077, + "neu": 0.804, + "neg": 0.119, + "_id": { + "$oid": "6711d5c4cd60fca157e5de80" + } + }, + { + "text": "Avoid at all cost. I took him thinking that it will be an easy elective, but no. His exams are short but he phrases questions in the most odd way, and literally whatever you think is not the answer, is the answer. And dont even bother asking him questions cuz he doesnt even know wat hes saying. Hes super wordy and unclear.", + "pos": 0.134, + "neu": 0.764, + "neg": 0.102, + "_id": { + "$oid": "6711d5c4cd60fca157e5de81" + } + }, + { + "text": "He was new at teaching the course, but he really did a great job. His power points and information were interesting, and the content was fun to learn about. He cares for his students and is willing to negotiate with his students. Out of 3 tests he dropped the lowest score even though this was not his initial intention. Good guy, and knowledgeable.", + "pos": 0.266, + "neu": 0.693, + "neg": 0.041, + "_id": { + "$oid": "6711d5c4cd60fca157e5de82" + } + }, + { + "text": "Easy class but really boring. Just know the problem sets and read some background info on his slides from the text and that'll give you an A. Attendance is 10% of the grade which is nice.", + "pos": 0.127, + "neu": 0.718, + "neg": 0.156, + "_id": { + "$oid": "6711d5c4cd60fca157e5de83" + } + }, + { + "text": "New professor in teaching animal behavior. Was open to opinions from the class. However, on his exams, some of the choices make it seem like the answer could be any one of them. Only 3 exams each worth 25 pts. 3 problem sets that you'll get full pts for as long as you attempt them. Problem sets are similar to the exam. Pay attn during lecture!!", + "pos": 0.06, + "neu": 0.838, + "neg": 0.101, + "_id": { + "$oid": "6711d5c4cd60fca157e5de84" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c4cd60fca157e5de86" + }, + "professor_name": "Madeline Blount", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Such a nice professor!! Stay back after class to ask her questions and communicate with her if anything comes up because she is very understanding and lenient! Her discord is also a useful tool and she is very active on there, so be respectful and she will be accessible. Also very generous with grading, because she makes sure you actually LEARN!", + "pos": 0.278, + "neu": 0.687, + "neg": 0.035, + "_id": { + "$oid": "6711d5c4cd60fca157e5de87" + } + }, + { + "text": "Really good at teaching content and attending lectures are worth it of you want to learn the content. Homework every week but it isn't difficult. If you do the work, you'll get a good grade in the class.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de88" + } + }, + { + "text": "Lectures are insightful & interesting. This class relies heavily on Zybooks which I found beneficial. Ready to help explain & reachable outside of class. Her curve for the midterm was very generous. Definitely more interested in making sure you learn programming than giving you a bad grade because you are struggling with content. Highly recommend.", + "pos": 0.361, + "neu": 0.557, + "neg": 0.082, + "_id": { + "$oid": "6711d5c4cd60fca157e5de89" + } + }, + { + "text": "Super straightforward, just complete the zybooks. Attendance is mandatory, and midterm and final is fun and simple. Highly recommend her.", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de8a" + } + }, + { + "text": "She is amazing! Attendance matters. You will have to do zybooks but she has discord to help. The midterm will be an individual project and final will be project in pair (choose your own pair). Very easy class, and the prof is just amazing!", + "pos": 0.291, + "neu": 0.648, + "neg": 0.061, + "_id": { + "$oid": "6711d5c4cd60fca157e5de8b" + } + }, + { + "text": "She taught everything super clear and had a discord for us to ask questions to her and classmates. Final project is a duo project which can suck but not too bad. Overall shes really good if youre new to programming.", + "pos": 0.246, + "neu": 0.678, + "neg": 0.076, + "_id": { + "$oid": "6711d5c4cd60fca157e5de8c" + } + }, + { + "text": "Great Professor. Her explanations are very easy to follow. Midterm projects+zyLabs are great practice. It's very hard to fail this class, or feel uninterested with the material. C++ is difficult but through Zybooks, and Professor Blount everything is presented in a digestible manner. I've never coded b4 and still did well. Definitely recommend her.", + "pos": 0.248, + "neu": 0.67, + "neg": 0.082, + "_id": { + "$oid": "6711d5c4cd60fca157e5de8d" + } + }, + { + "text": "Professor Blount is amazing. All her lectures are actually interesting! She's extremely helpful, and there was even a discord for this class(That she made) which helped so much. I had no programming experience at all, but still did well. Do the Zybooks reading to follow along, and you will fall in love with programming like I did. A+++ Professor", + "pos": 0.251, + "neu": 0.701, + "neg": 0.047, + "_id": { + "$oid": "6711d5c4cd60fca157e5de8e" + } + }, + { + "text": "Definitely take her. Most of your grades comes from Zybooks and the best part is, she lets you do the midterm exam outside of class with a one week deadline.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d5c4cd60fca157e5de8f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c5cd60fca157e5de91" + }, + "professor_name": "Mehdi Samimi", + "rating": 4.3, + "department": "Economics department", + "comments": [ + { + "text": "Super easy. Bi weekly meetings, 3 individual assignments, few group projects, and mcq in top hat. That's it! You need to participate in class to get the full credit.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5de92" + } + }, + { + "text": "Samimi presents the topics of management in a easy to understand manner. Assignments are relatively simple if you follow the instructions & view the lesson videos. Group assignments are frequent, but aren't difficult to do alone.", + "pos": 0.115, + "neu": 0.823, + "neg": 0.062, + "_id": { + "$oid": "6711d5c5cd60fca157e5de93" + } + }, + { + "text": "Professor Samimi is a nice guy and the HW is relatively easy if you watch the lectures. Every week consisted of a top hat assignment and a group assignment with predetermined members. No midterm or exams", + "pos": 0.18, + "neu": 0.767, + "neg": 0.053, + "_id": { + "$oid": "6711d5c5cd60fca157e5de94" + } + }, + { + "text": "I had the pleasure of having the sweetest professor for this class. Beyond the subject, I gained invaluable life lessons in his class. Highly recommended!", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5de95" + } + }, + { + "text": "Thought it be difficult but boosted my GPA instead. Everything's on tophat and all answers are in pre-recorded lectures. Lots of group assignments and he gives extra points on them if he likes it. Plenty of opportunities of extra credit if you need it. No exams. I didn't do any extra credit and still got A+. Pretty sure most ppl in the class got A+", + "pos": 0.287, + "neu": 0.659, + "neg": 0.054, + "_id": { + "$oid": "6711d5c5cd60fca157e5de96" + } + }, + { + "text": "His lectures videos are good and split into chunks, so it's easier to understand. The material is on Top Hat, at least for during covid. His in person lectures are to hep you understand the lecture vids and give more details to really link the info together. He gives lots of real world, recent examples, so it's helpful. He gives some extra credits", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5de97" + } + }, + { + "text": "He is an amazing prof!! Class was asynchronous so he posted weekly lectures, sometimes a quiz & hw assignment and 7 days to complete it. He's educated on the subject and explained concepts well. Simply put, - just do the work on time and aim for good test scores and you'll be fine. He also offers extra credit opportunities too!", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5de98" + } + }, + { + "text": "Took strategic management with this Professor and it was honestly quite good. There were weekly assignments to do and 3 exams for the entire semester. Best advice I can give is to just do the assignments and turn them in on time & you should be fine \ufffd\ufffd", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5de99" + } + }, + { + "text": "Good New professor. he grade you over on assignment if he see you plagiarism then he will give you a zero. he will see your grade for plagiarism assignment if he see as zero. Many hw and quiz are easy if you study. Don't plagiarism he will know by the end of the term.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5de9a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c5cd60fca157e5de9c" + }, + "professor_name": "Michael Lubell", + "rating": 4.9, + "department": "Astronomy department", + "comments": [ + { + "text": "hes a great professor, really seems passionate, online course so i didnt enjoy it as much but it was worth it. he only grades on the midterm and final, and participation. do well on the midterma and final and youll get an easy A.", + "pos": 0.256, + "neu": 0.708, + "neg": 0.036, + "_id": { + "$oid": "6711d5c5cd60fca157e5de9d" + } + }, + { + "text": "Great professor. Really knows what he is talking about and seems very knowledgeable. Attendance and participation doesn't really matter if you do well on the 2 exams but he encourages participation for extra credit. Overall would definitely take his class again.", + "pos": 0.292, + "neu": 0.686, + "neg": 0.022, + "_id": { + "$oid": "6711d5c5cd60fca157e5de9e" + } + }, + { + "text": "Easiest class ever!!! Take it. The whole grade is based on the 2 midterms, which are openbook, meaning you can use any sources.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5de9f" + } + }, + { + "text": "Very doable class :) didn't go to the zoom lectures after a while but I didn't really see an attendance policy? Gives u bonus points if you participate in class (actually speaking into mic, no credit if u do it in textbox) + 2 total tests for grades and nothing else, so participation definitely helps if u mess up on some of the questions. Chill guy", + "pos": 0.182, + "neu": 0.744, + "neg": 0.075, + "_id": { + "$oid": "6711d5c5cd60fca157e5dea0" + } + }, + { + "text": "Methods to Astronomy is the best class I have ever taken. The professor gives extra credit for participation, and it has no cap. I participated at least twice a lecture and could have gotten an A without even taking the final. Professor Lubell is just the sweetest old man too, and you can see his passion for astronomy through the screen.", + "pos": 0.142, + "neu": 0.826, + "neg": 0.032, + "_id": { + "$oid": "6711d5c5cd60fca157e5dea1" + } + }, + { + "text": "Great class to take if you're really interested in the topic and are ok with online classes. The professor is so nice, not difficult at all, and participation is important but not really required, you only have two exams and their fairly simple since he allows open book.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5dea2" + } + }, + { + "text": "It's an easy class if you just show up to the class. There is no homework and 2 exams in total. Even those exams are easy if you are showing up in the class and participating. Would love to take his class again.", + "pos": 0.195, + "neu": 0.762, + "neg": 0.043, + "_id": { + "$oid": "6711d5c5cd60fca157e5dea3" + } + }, + { + "text": "The class is pretty straightforward, you just show up and take the tests that are not that hard either! Prof Lubell himself is awesome, he just be vibing honestly. Love that for him.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5dea4" + } + }, + { + "text": "He is the Sweetest professor ever! I took this class last semester and honestly all I did was show up to class paid attention. He doesn't give homework, there are only 2 exams it's super easy. Participation counts as extra credit. I recommend his class 1000%", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d5c5cd60fca157e5dea5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c6cd60fca157e5dea7" + }, + "professor_name": "Shana Creaney", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "There's a fair number of papers in this class, so be prepared to write. That said, Prof. Creaney was really chill and fair with grading; she explained her expectations pretty clearly. As long as you do the work and participate in class, you should be fine.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5dea8" + } + }, + { + "text": "I LOVE HER. She cares so much about her students, is soooo hilarious and relatable. keeps class interesting and was the only class i looked forward to. She's very fair and helps you grow as a writer. She's an excellent professor!! the workload is very fair and she's kind and understanding with extensions. a real gem. love u Prof Creaney<3", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5dea9" + } + }, + { + "text": "I liked this class bc the professor is lenient and understanding of personal emergencies. Overall we had like 4 papers for the entire semester but they were easy (coming from someone who hates writing papers). She grades really well and pretty leniently. Class was asynchronous (only met like 3 times). She assigned disc. posts that were also easy.", + "pos": 0.312, + "neu": 0.638, + "neg": 0.05, + "_id": { + "$oid": "6711d5c6cd60fca157e5deaa" + } + }, + { + "text": "I took her online and she is incredibly nice and easy. Her classes are asynchronous and about 20 minutes long. Paper drafts are due a week after they're assigned, and the final is due a week later. As long as you follow her guidelines, you should get As on the paper. There's a final group project which isn't bad either", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deab" + } + }, + { + "text": "great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deac" + } + }, + { + "text": "she is one of the nicest professors ever! she grades very fairly and gives amazing feedback on your writing!", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5dead" + } + }, + { + "text": "Professor - I really do hope you read this review! As my first ever professor, she was such an amazing AMAZING teacher. She was highly motivational, and made me feel as though my writing mattered! She gave amazing feedback - I don't care what anyone else says, and she did not grade too harshly. She was such a sweet, kind hearted soul! Loved her!", + "pos": 0.314, + "neu": 0.656, + "neg": 0.031, + "_id": { + "$oid": "6711d5c6cd60fca157e5deae" + } + }, + { + "text": "Very easy class. only graded on 4 essays, attendance, and a few online assignments. Gives readings every week, but they're not necessary. Lectures were boring and often got derailed. Very little feedback, I didn't know my grade until they were put in on the last day. She's funny and relatable, especially if you're young.", + "pos": 0.096, + "neu": 0.806, + "neg": 0.098, + "_id": { + "$oid": "6711d5c6cd60fca157e5deaf" + } + }, + { + "text": "Creaney is a new professor. Your grades are based on 4 essays. You have reading assignments but you don't really need to read it. She gives, for me, poor feedback as there is no specificity. She wants you to write for 10 minutes every class which is a good writing exercise and she tends to go on tangents sometimes. But she is a good teacher.", + "pos": 0.102, + "neu": 0.806, + "neg": 0.092, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c6cd60fca157e5deb2" + }, + "professor_name": "Brener Yolande", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She is very sweet and a nice professor to have. Is extremely understanding and flexible. I recommend taking her class. There are a bit of assignments but she will clarify if needed.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb3" + } + }, + { + "text": "She is actually a very nice and very helpful with the class. Also is pretty open up and very easy assignments.", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb4" + } + }, + { + "text": "Great professor, she is very nice and even though sometimes she gives a lot of assignments, they are not hard to do at all. instructions are always clear, she is always there if you need help, she'll make sure that you are staying on track.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb5" + } + }, + { + "text": "She is awesome! She really know her stuff and makes class interesting. You can tell she cares about students, always there to help out. She gave me outstanding recommendation for Columbia. Super friendly and makes learning fun. Definitely recommend taking her class!", + "pos": 0.505, + "neu": 0.495, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb6" + } + }, + { + "text": "She was amazing. I switched to this class at the last minute and I am glad that I did because otherwise nothing could have saved my gpa from a downfall. She was very clear about what to do to get a good grade and was very lenient with the deadlines. But she was too soft. Overall, I recommend her and she was a great professor.", + "pos": 0.244, + "neu": 0.735, + "neg": 0.021, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb7" + } + }, + { + "text": "I love shawty she the best and I would wanna take her again thank god I end up getting swapped here Allah knew what he was doing Alhamdulilah. its easy and creative and she allows you to explore your own topics making your life more about you rather than what she wants. she is selfless caring and so fricking cute. Best British Professor ever", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb8" + } + }, + { + "text": "The professor is extremely caring and will try her best to figure out different ways in teaching if she has to. She is genuine and cares about all of her students. She tries her best to keep the class as engaging as possible and you can tell.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deb9" + } + }, + { + "text": "She was amazing. She cared for each students work, and gave adequate time for each assignment. If you show up and do the work it's a easy pass. Willing to give extra time to you if something pops up unless its the finals.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5deba" + } + }, + { + "text": "A really great professor, respectful and helps when you need it.", + "pos": 0.562, + "neu": 0.438, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5debb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c6cd60fca157e5debd" + }, + "professor_name": "Gordon Gebert", + "rating": 3.2, + "department": "Architecture department", + "comments": [ + { + "text": "I just saw this website. He was my professor at City College in the early 1970's at the Curry Garage Building. \nI just watched the movie Holiday Affair and looked up the bio of the cute little boy in the movie. Sure enough, the name rang a bell as soon as I saw his name connected with City College. It's a beautiful movie.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5debe" + } + }, + { + "text": "Very important subject if you want a job. Really well taught. A lot about design and drafting drawings. Not enough time though.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5debf" + } + }, + { + "text": "He is a very kind teacher. He appreciates that you try your best. His quizzes are a little hard, but overall he is a good teacher.", + "pos": 0.332, + "neu": 0.636, + "neg": 0.032, + "_id": { + "$oid": "6711d5c6cd60fca157e5dec0" + } + }, + { + "text": "I just saw the movie \"to hell and back\" 1955. He plays the boy. You can look up Gordon Gebert on imdb. His class was ok.", + "pos": 0.065, + "neu": 0.784, + "neg": 0.15, + "_id": { + "$oid": "6711d5c6cd60fca157e5dec1" + } + }, + { + "text": "ok", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5c6cd60fca157e5dec2" + } + }, + { + "text": "knows it cold. tough on knowledge tougher on skill can explain it well", + "pos": 0.248, + "neu": 0.654, + "neg": 0.098, + "_id": { + "$oid": "6711d5c6cd60fca157e5dec3" + } + }, + { + "text": "he is pretty bad with computer as well. a hopeless professor- bad in design and poor in CAD.", + "pos": 0.174, + "neu": 0.395, + "neg": 0.431, + "_id": { + "$oid": "6711d5c6cd60fca157e5dec4" + } + }, + { + "text": "If you like Autocadd, then take his class. If you like to design, take another class because he is mostly about CAD. Dont care about design, but the technical and appearance of drawings in CAD. That says it all. Very dissapointing in terms of good design architecture.", + "pos": 0.141, + "neu": 0.824, + "neg": 0.035, + "_id": { + "$oid": "6711d5c6cd60fca157e5dec5" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5c6cd60fca157e5dec6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c7cd60fca157e5dec8" + }, + "professor_name": "Benjamin Vilhauer", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Professor Vilhauer is one of the best professors I've ever had. He cares deeply of his students and the material. If every professor was like him, everyone would want to go to school. His grading is fair, he is available for office hours and responds to emails. Do the readings, participate, submit items on time and you'll get a good grade.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dec9" + } + }, + { + "text": "Professor. Vilhauer is great. The lecture is pretty heavy but he wants you to ask questions if you don't understand. The readings are not that difficult but it will pose questions in your mind about how some law decisions are justified.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5deca" + } + }, + { + "text": "Very erudite, personable, and above all: honest. Considers every question seriously and deeply, treats students like equals, and in spite of being widely read, is willing to admit when he doesn't know something. Always available in office hours or by email, communicative and understanding. A lot of readings, none too long, and all covered in class.", + "pos": 0.123, + "neu": 0.797, + "neg": 0.08, + "_id": { + "$oid": "6711d5c7cd60fca157e5decb" + } + }, + { + "text": "He's a really sweet and caring guy, just do the readings and try to participate in class (I'm sure you'll want to because the topics are interesting), readings can get a bit lengthy but honestly, the exams are really easy and it'll be a breeze.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5decc" + } + }, + { + "text": "Great professor! Really cares about his students, is fair and gives funny lectures. Will definitely take him again... Do all the readings and pay attention in class and you'll def get a good grade.", + "pos": 0.394, + "neu": 0.576, + "neg": 0.03, + "_id": { + "$oid": "6711d5c7cd60fca157e5decd" + } + }, + { + "text": "His lectures are super interesting and he's very funny. Goes out of his way to provide students with pdf version of textbooks. Pretty clear lectures but is very welcoming to questions. Do the readings and participate and you're golden.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dece" + } + }, + { + "text": "What a great guy!! Total studmuffin!", + "pos": 0.499, + "neu": 0.501, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5decf" + } + }, + { + "text": "The class (modern philosophy) throws many hard concepts at you, mainly in Kant and Hume. Nevertheless, he never has a problem reiterating things he has already said to make things crystal clear for all students. Expect to be engaged and leave with a good knowledge of ethical, metaphysical, and epistemological theories thanks to his lectures.", + "pos": 0.251, + "neu": 0.709, + "neg": 0.039, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded0" + } + }, + { + "text": "Very sweet and humble guy that looks out for his students. It can be an easy A, if you do ALL the work he asks. Drops lowest exam grade if you do not miss more than two days of class. He can be kinda funny during lectures because of his crude philosophy examples. \"Old lady getting hit by bus across the street and it makes you feel good\"-example", + "pos": 0.13, + "neu": 0.789, + "neg": 0.08, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c7cd60fca157e5ded3" + }, + "professor_name": "Monica Ortiz-Suloway", + "rating": 4.3, + "department": "Anthropology department", + "comments": [ + { + "text": "This is my second class with Monica. When she tells us what class she is teaching for next semester, I hurry up to enroll. She chooses the best textbook that are easy to understand. If you fail her class, you were not doing your work or participating. She is my favorite professor I ever had. I wish I can take her with me in graduate school lol.", + "pos": 0.195, + "neu": 0.762, + "neg": 0.044, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded4" + } + }, + { + "text": "This was my second time taking a course with Professor Monica Ortiz Suloway. What can I say? She is ahhhmazing! Her lectures are so inspirational to the course. You will leave her class and overall course feeling inspired. Even though we had to switch over and learn through remote learning, it was still fun.", + "pos": 0.2, + "neu": 0.781, + "neg": 0.019, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded5" + } + }, + { + "text": "Took Prof. Suloway two times the first time she was much more lenient than the second time. Overall I can say she is a good professor and very energetic. She is very professional and very passionate about the courses she teaches. Suloway loves to talk so get ready to hear about her personal stories to connect to the class material.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded6" + } + }, + { + "text": "It's too bas I cant choose more tags but she is truly inspirational, cares about her students, will advocate for her students very understanding. This is my second semester taking her and I love it. Sociology of the Deaf has been the best class with her yet because she teaches some sign language and its hilarious.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded7" + } + }, + { + "text": "The professor is really great, she gives a lot of chance when writing a paper. I am taking a class with her again next semester.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded8" + } + }, + { + "text": "Professor Suloway is amazing person and she's so helpful. She gives good feedback and is always supportive if you are struggling.", + "pos": 0.4, + "neu": 0.511, + "neg": 0.089, + "_id": { + "$oid": "6711d5c7cd60fca157e5ded9" + } + }, + { + "text": "Wonderful Professor, she taught in a simple yet effective manner. Keep up with the readings and do your assignments. This is not a self taught class. This professor really engages with her students. I learned all I needed to learn and then some. This is a class for those who really want to be efficient in their profession.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5deda" + } + }, + { + "text": "Monica is a great professor that knows the Aspects of Disabilities in and out. She is a great human being that cares for everyone of her students in the classroom and outside the classroom. As long as you do her assignments, you will be more than fine in her class. She is not a hard grader, she grades based on the papers you submitted. Loved it.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dedb" + } + }, + { + "text": "Monica goes off-track when teaching Medical Aspects of Disability. She does not teach the topics in Donna Falvo's book. The students self-learn to understand the terminology, symptoms, treatments, etc. She ends up talking about her shopping preferences. The course is not suitable to be taught by her.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dedc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c7cd60fca157e5dede" + }, + "professor_name": "Shaugn O'Donnell", + "rating": 4, + "department": "Music department", + "comments": [ + { + "text": "Professor O'Donnell is a true gem. Truly cares about the students thoughts and ideas and offers good feedback. The class is based mainly around students' discussion. Great Music. Great Content. Great Professor.", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dedf" + } + }, + { + "text": "This guy is not hard. I had him for theory 3, and in the past I had Cs in theory. I got an A with this dude. He really knows his stuff and is really passionate about it. He will challenge you to build strong analytic skills that you will always be glad you've attained. He got me into theory so much I'm taking Theory 4 with him in the spring.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee0" + } + }, + { + "text": "Too difficult for theory. very hard teacher. He will lower your gpa.", + "pos": 0.0, + "neu": 0.585, + "neg": 0.415, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee1" + } + }, + { + "text": "He is too hard and does not know how to communicate with students. He is the first and last professor who gave an assignment for a springbreak.", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee2" + } + }, + { + "text": "I have taken Structures of Music1 with Professor O'Donnell and found him to be very knowledgeable about Music Theory. He was approachable and helpful. I think the exercises were very good and I especially enjoyed the opportunity to compose for a quartet for our final class.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee3" + } + }, + { + "text": "So hot he distracts me!", + "pos": 0.0, + "neu": 0.583, + "neg": 0.417, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee4" + } + }, + { + "text": "clear and organized.", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee5" + } + }, + { + "text": "I had him a couple of years ago for theroy and musicianship, the guy is great. You will learn a lot from him and he explains things lucidly. You walk out of his class knowing what you studied.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee6" + } + }, + { + "text": "He's a real theory nerd who can answer any questions that students throw at him. Very lenient and approachable. Pay attention during class and fuhgeddabout Jablonsky's book.", + "pos": 0.08, + "neu": 0.8, + "neg": 0.12, + "_id": { + "$oid": "6711d5c7cd60fca157e5dee7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c8cd60fca157e5dee9" + }, + "professor_name": "Adam Mintz", + "rating": 4.3, + "department": "Judaic Studies department", + "comments": [ + { + "text": "As most people have already stated, Mintz is a very energetic professor who's so enthusiastic about the course material that he prefers reading his lectures aloud as oppose to using power points or writing notes on the board. Class participation is a must in this class, as is reading. Overall, a great and charismatic professor.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d5c8cd60fca157e5deea" + } + }, + { + "text": "Professor Mintz is very enthusiastic, loud and loves student's participation, which kept me focused and helped me learn. He is a super easy grader, there is just one midterm and final. The readings are super short and discussed in class. Learned so much!", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d5c8cd60fca157e5deeb" + } + }, + { + "text": "Not an easy A class. Professor just lectures without any power points or any visual ways of learning. So basically he lectures and you just write notes. He also calls on you unexpectedly, so make sure you read.", + "pos": 0.063, + "neu": 0.878, + "neg": 0.059, + "_id": { + "$oid": "6711d5c8cd60fca157e5deec" + } + }, + { + "text": "Great professor and lectures!", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d5c8cd60fca157e5deed" + } + }, + { + "text": "He is a very funny and straight forward guy. There is a final and a midterm which are really easy. It is 7 identifying questions and 6 short answer questions. Also there are these little paper that are due every few weeks that are based on the reading, but there common sense. The book is 6 dollars. I never read the book and got a 95 on every paper.", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d5c8cd60fca157e5deee" + } + }, + { + "text": "(5) 2-page response papers, a midterm and final. Not nearly as much reading as other classes that I've taken, and he gives you a packet. The tests are based 95% on the lectures. Sweet disposition.", + "pos": 0.081, + "neu": 0.919, + "neg": 0.0, + "_id": { + "$oid": "6711d5c8cd60fca157e5deef" + } + }, + { + "text": "Super Sweet and caring", + "pos": 0.91, + "neu": 0.09, + "neg": 0.0, + "_id": { + "$oid": "6711d5c8cd60fca157e5def0" + } + }, + { + "text": "He's very funny and clear about what he expects from you. Go to class and take notes. He answers all questions and is very understanding. He gives a midterm and a final that are based on your lecture notes. It's a very interesting class too!", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d5c8cd60fca157e5def1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c8cd60fca157e5def3" + }, + "professor_name": "Jennifer Bowles", + "rating": 1.4, + "department": "Art department", + "comments": [ + { + "text": "Doesn't explain project/hw, instead gives it over email and its always confusing. Gives a lot of breaks in zoom but usually its because she's always talking on the phone. Gives way too much homework every week, I'm talking about taking notes on Adobe/readings while also doing a project at the same time. Sometimes her feedback is okay.", + "pos": 0.04, + "neu": 0.935, + "neg": 0.025, + "_id": { + "$oid": "6711d5c8cd60fca157e5def4" + } + }, + { + "text": "Incredibly indecisive on all levels, will constantly contradict herself within a class period, and is constantly, does not allocate time to teach, but instead expects everyone to be proficient in Adobe products within an intro class. Highly do not recommend her in the slightest.", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d5c8cd60fca157e5def5" + } + }, + { + "text": "If u dont have Adobe skills, shes DIFFICULT! Theres so much u will struggle w if u dont spend doing over 10 hrs and later in the semester, over 20-30 hrs doing her work. Shes often unclear about what she wants so u waste a lot of time with things youll never use. Unless you reallyyy want to dedicate ur time to her, would not recommend!", + "pos": 0.017, + "neu": 0.804, + "neg": 0.178, + "_id": { + "$oid": "6711d5c8cd60fca157e5def6" + } + }, + { + "text": "She is not clear what she wants you to achieve. Lots of critique for hours and still confuse you what to do after. Highly Not Recommended. Ask someone who took her before in EDM, they will definitely tell you.", + "pos": 0.062, + "neu": 0.802, + "neg": 0.136, + "_id": { + "$oid": "6711d5c8cd60fca157e5def7" + } + }, + { + "text": "the only way you will pass her class is if she likes your work. even if the whole class likes it. her critique is \"you can do better\" when you ask her what should you change she will said \"its up to you\" so long story short, no help and you're on your own. good luck.", + "pos": 0.216, + "neu": 0.75, + "neg": 0.034, + "_id": { + "$oid": "6711d5c8cd60fca157e5def8" + } + }, + { + "text": "Many assignments are given and due in a week. You're going to be constantly improving it, which means there's gonna be A LOT OF PRINTING. If you're going in with no knowledge/ no experience in graphic design, it's gonna be a challenge. You'll live.", + "pos": 0.124, + "neu": 0.83, + "neg": 0.046, + "_id": { + "$oid": "6711d5c8cd60fca157e5def9" + } + }, + { + "text": "Really UNORGANIZED professor. Students are not allowed to be on their phones but she constantly gets phone calls and answers them during class. 3 hours of waste of time with useless critiques. She does not give you positive feed back in order to better your works and expects a lot from you. Do not take this class if you really want to learn!!", + "pos": 0.076, + "neu": 0.767, + "neg": 0.157, + "_id": { + "$oid": "6711d5c8cd60fca157e5defa" + } + }, + { + "text": "SUPER scatter brain, SUPER unorganized and gets easily distracted. Requires attendance but each class is a waste of time, wasted on 3 hour unproductive critiquing. Didn't give us feed back on past projects until 2 weeks before end of semester and then had us do work on the day of our final. Forgets homework & asks us what was due? Don't take", + "pos": 0.1, + "neu": 0.767, + "neg": 0.133, + "_id": { + "$oid": "6711d5c8cd60fca157e5defb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c9cd60fca157e5defd" + }, + "professor_name": "Tom Rizzuto", + "rating": 4.9, + "department": "Music department", + "comments": [ + { + "text": "best professor everr! i think its actually impossible to hate him.very entertaining and educational. Easy A and learned a lot :D", + "pos": 0.421, + "neu": 0.47, + "neg": 0.109, + "_id": { + "$oid": "6711d5c9cd60fca157e5defe" + } + }, + { + "text": "Great Professor! Funny and doesn't give too much work. 4 essays (2-3 pages), 5-6 quizzes, midterm, final and he really cares about participation. Participate! I recommend him! Take his class! You'll have fun since he's really funny! No corny jokes either! :)", + "pos": 0.387, + "neu": 0.544, + "neg": 0.07, + "_id": { + "$oid": "6711d5c9cd60fca157e5deff" + } + }, + { + "text": "He is the best professor I had in CCNY!If you put some effort in the class you will get a guaranteeeeed A. There are a total of 5 essays due throughout the semester which are VERY easy. Take him and you will help your GPA!", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df00" + } + }, + { + "text": "One of the best I've ever had. Trust me, if you put in the work like you are supposed to, you won't regret taking his class.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df01" + } + }, + { + "text": "He has a great sense of humor and knows everything about music. I thought i would hate this class and he made it very interesting. I think I got a low B in his class.", + "pos": 0.204, + "neu": 0.667, + "neg": 0.129, + "_id": { + "$oid": "6711d5c9cd60fca157e5df02" + } + }, + { + "text": "Really good professor. Makes the class very interesting. You won't fall asleep in his class.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df03" + } + }, + { + "text": "he is one of the best teachers i've had.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df04" + } + }, + { + "text": "This professor is the best, he really knows alot about his field. Uses real life experience to demostrate what hes trying to say. If you go to class it should be easy. Also he is cute in my opinion", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df05" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c9cd60fca157e5df07" + }, + "professor_name": "Inessa Bazayev", + "rating": 4.1, + "department": "Music department", + "comments": [ + { + "text": "Nice person, but not a great teacher. Gets flustered in front of class, leads to a lot of confusion. Not a problem if you already know the course material fairly well, but causes serious problems for those who struggle already. She means well though, and I hear she's really good one on one.", + "pos": 0.194, + "neu": 0.567, + "neg": 0.239, + "_id": { + "$oid": "6711d5c9cd60fca157e5df08" + } + }, + { + "text": "Prof. Bazayev will make you work for your A. It's an easy course because she'll write out all of her notes and is very clear. She makes you listen to interesting pieces from different time periods, attend 1 concert and 1 opera, write papers, take quizzes/exams that require memorization, give a small presentation, but overall is pretty easy going.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df09" + } + }, + { + "text": "I took my entire Musicianship and Theory sequence with Professor Bazayev. She knows her stuff and does a decent job of teaching it. However, she is young, and I thought she became very \"friendly\" with the class, and sometimes forgot to teach, especially in Musicianship. She is VERY forgiving and an easy grader. She's also very attractive.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df0a" + } + }, + { + "text": "Shes a alright prof....I hated the fact that u need to do a minimumof 3 concert reports...shes a fair grader...her quizzes are tough...the final was basically mc and 2 confusing essays...notes r important...dont need the textbook...", + "pos": 0.101, + "neu": 0.755, + "neg": 0.144, + "_id": { + "$oid": "6711d5c9cd60fca157e5df0b" + } + }, + { + "text": "if your looking for an easy A, this isnt it. She isnt hard but shell make you work for your A. So if your taking a bunch of hard courses and want a free bee, dont take her. fun class though.", + "pos": 0.183, + "neu": 0.712, + "neg": 0.105, + "_id": { + "$oid": "6711d5c9cd60fca157e5df0c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5c9cd60fca157e5df0d" + } + }, + { + "text": "Shes alright, really into the music class, pretty decent grader. Does not really mind about lateness.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df0e" + } + }, + { + "text": "Easygoing, Very Helpful and a good grader.", + "pos": 0.675, + "neu": 0.325, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df0f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5c9cd60fca157e5df11" + }, + "professor_name": "Patricia Moreno", + "rating": 4.2, + "department": "Humanities department", + "comments": [ + { + "text": "She is a very intelligent woman but teaching just isn't meant for her. She wastes a great deal of time talking about her personal life...that is NOT what I paid for.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df12" + } + }, + { + "text": "I took writing social science with her, big mistake, shes a waste of time. she just talks about her boyfriend and her mother and confuses half the class. he gives good life lessons but thats it, she not even a teacher!", + "pos": 0.044, + "neu": 0.832, + "neg": 0.125, + "_id": { + "$oid": "6711d5c9cd60fca157e5df13" + } + }, + { + "text": "Prof. Moreno is one of the most helpful persons in the academia. Though she is very intimidating on the first day, she tends to change her attitude towards those who do their homework. I learned a lot from her class and found the writing samples in the text book really helpful for real world situations. I would definitely take her class again.", + "pos": 0.127, + "neu": 0.828, + "neg": 0.046, + "_id": { + "$oid": "6711d5c9cd60fca157e5df14" + } + }, + { + "text": "Professor Moreno taught me to have an appreciation for the Humanities. She helped me to analyze texts in a different way and taught me how to write better. I thought that the material that we would learn would be useless but I used a lot of the material in final or midterm papers in other classes as proofs. The way she teaches as well is inspiring.", + "pos": 0.142, + "neu": 0.832, + "neg": 0.026, + "_id": { + "$oid": "6711d5c9cd60fca157e5df15" + } + }, + { + "text": "Very insightful and knowledgeable, tries to get class to participate more but usually she does the talking, the class was very thorough, looking back, it's amazing to have done so much work, but she's very cool and laid back.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d5c9cd60fca157e5df16" + } + }, + { + "text": "soo boring. shes a knowledgeable woman but its such a waste of time because you cant get much out of analyzing entire works of classical literature in 1 1/2 classes each. if you happen to be able to finish a reading assignment on time, then you might actually enjoy that particular lesson.", + "pos": 0.073, + "neu": 0.835, + "neg": 0.091, + "_id": { + "$oid": "6711d5c9cd60fca157e5df17" + } + }, + { + "text": "Great professor! The classes are discussion based, so it's really easy to understand all of the material. Writing assignments are your basic literary analyses so no surprises there, but she's a very fair grader. If you go to class, participate, do the assignments, and show her respect, you'll do well in her class.", + "pos": 0.257, + "neu": 0.72, + "neg": 0.023, + "_id": { + "$oid": "6711d5c9cd60fca157e5df18" + } + }, + { + "text": "greatest professor i ever had. was very scary first day of class, and then she got much better, though not all the time. Extremely helpful and caring to all students. She's not bad lookin either so that was a plus. Teaches the class like a grad school and prepares u for the future. She knows all her students and gives respect. Don't disrespect her.", + "pos": 0.295, + "neu": 0.663, + "neg": 0.042, + "_id": { + "$oid": "6711d5c9cd60fca157e5df19" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cacd60fca157e5df1b" + }, + "professor_name": "Jessica Rose", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "She is an amazing professor. At first I thought I wasn't going to learn anything from her based on how the course started but by the end of the course, I learned so much more than I expected. She draws a lot on personal experiences of herself and her students which helps you learn further. She is hilarious and genuinely cares for her students!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df1c" + } + }, + { + "text": "She's extemely smart, funny and knowledgable. Respected by all students and makes learning heavy psychology topics fun and enjoyable. Be prepared to participate in class and have a laugh! I highly recommend this Professor for any major!", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df1d" + } + }, + { + "text": "She's one of the best professors I've ever had. You learn so much in her class while having fun. She has so much knowledge and is very passionate about what she teaches. She helps you understand the material through personal and real world examples. I wish I could take her class again.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df1e" + } + }, + { + "text": "Took her in the winter, she was great, lectures were really entertaining. Wasn't an easy A, you had to work for your grade but manageable.", + "pos": 0.164, + "neu": 0.776, + "neg": 0.06, + "_id": { + "$oid": "6711d5cacd60fca157e5df1f" + } + }, + { + "text": "I took her this winter and I must say she's one of the best professors I've ever had. She has so much knowledge of what she's teaching. She makes learning so fun. I would take her again if I could!", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df20" + } + }, + { + "text": "She is amazing! I took her during the winter and she explains all the material really well. She uses personal experiences to further explain her topics and is very helpful and understanding. She makes learning fun.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df21" + } + }, + { + "text": "I am a biology student and just took this as an elective. The class is not so easy and you have to put in work for the grade but as long as you do the assignments and hand them in on time and participate you should do well. She is passionate about what she teaches and wants you to learn. Great professor highly recommend", + "pos": 0.258, + "neu": 0.717, + "neg": 0.025, + "_id": { + "$oid": "6711d5cacd60fca157e5df22" + } + }, + { + "text": "i think she really wants us to succeed...class is not easy, but she tries to make sure we all do well.", + "pos": 0.221, + "neu": 0.711, + "neg": 0.067, + "_id": { + "$oid": "6711d5cacd60fca157e5df23" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cacd60fca157e5df25" + }, + "professor_name": "Cara Jordan", + "rating": 4.1, + "department": "Art department", + "comments": [ + { + "text": "I am too cocky on memorizing the timelines of the artworks which contributes to my low grades on the test. Folks who is going to take her course, be aware of that.", + "pos": 0.0, + "neu": 0.893, + "neg": 0.107, + "_id": { + "$oid": "6711d5cacd60fca157e5df26" + } + }, + { + "text": "Professor Jordan was a good professor! If you pay attention in class and study for the midterm and final you will do well. Gives 0 homework and is very understanding and approachable.", + "pos": 0.148, + "neu": 0.813, + "neg": 0.039, + "_id": { + "$oid": "6711d5cacd60fca157e5df27" + } + }, + { + "text": "Go to her lectures and pay attention! She remembers who falls asleep! She does not curve but her tests aren't bad. Participate! She will make you work for your grade but she's an easy grader", + "pos": 0.204, + "neu": 0.767, + "neg": 0.029, + "_id": { + "$oid": "6711d5cacd60fca157e5df28" + } + }, + { + "text": "She gives you a review sheet for midterm and final. 3-4 papers. However, she is pretty anal with due dates. She favorites and hates some people. Not a horrible teacher overall. She does expect you to treat the class seriously, too harsh for a freshman class. Get on her good side or she can be a pain.", + "pos": 0.197, + "neu": 0.655, + "neg": 0.147, + "_id": { + "$oid": "6711d5cacd60fca157e5df29" + } + }, + { + "text": "She is great. If you need to take ART 100, I recommend you to take it with Professor Jordan. There are 3 papers, 1 midterm and 1 final. Her lectures are so clear that you almost never need the textbook. She also puts up powerpoints for her students. She gives out review sheets for the midterm and final. Study the review sheet and you will pass.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df2a" + } + }, + { + "text": "Tr eats the intro class as if it's a PHd class and can be very snarky", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df2b" + } + }, + { + "text": "Really enjoyed the class. The textbook might appear a little dense, but the professor is very clear and concise. Your grade will do much better if you participate and read the material before class. So don't miss class, and always take notes. Otherwise, the midterm and final are all memorization. If you study, you'll get the A.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df2c" + } + }, + { + "text": "If you're going to take ART10000, take it with Jordan. She lectures well enough to make the book unnecessary. I never touched the book and got an A in the class. There is a midterm and final, both of which are easy if you pay attention and memorize the entire review sheet she gives you. There are 2 papers which are a bit harder but doable.", + "pos": 0.052, + "neu": 0.931, + "neg": 0.018, + "_id": { + "$oid": "6711d5cacd60fca157e5df2d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cacd60fca157e5df2f" + }, + "professor_name": "Robert Alfano", + "rating": 4.3, + "department": "Physics department", + "comments": [ + { + "text": "Very funny, caring, and knowledgeable. One of the best professors I've had at ccny. Ends up knowing all the students by their name by the end of the semester. Class wasn't easy but it was fun.", + "pos": 0.258, + "neu": 0.703, + "neg": 0.039, + "_id": { + "$oid": "6711d5cacd60fca157e5df30" + } + }, + { + "text": "Great professor who actually cares about students and is very knowledgable and well known in his field. He also gives good recommendation letters and i would definitely recommend his class before graduating", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df31" + } + }, + { + "text": "I liked his class very much. He likes to explain optics in different level. He is available for students anytime. He knows all the students by name. He cares about how they perform in the class. He is a scientist. Do good in his class, he gives a good recommendations.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df32" + } + }, + { + "text": "He is one of the best prof. in CCNY. Most EE students take him for senior design but his PhY452 as an elective for our major was really good glass. His teaching style is very unique. He is very easy to talk to and explain everything in detail.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df33" + } + }, + { + "text": "I took his lab before and this lecture i took was way better than other physics class i ever took. He is very knowledgeable and well known scientist on his field. He is easy to talk to and is great on teaching you new ideas and technique. If you perform good in class, you get good recommendation as well as offer for paid internship in his lab.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df34" + } + }, + { + "text": "I took 4 classes in total with him. Very Knowledgeable professor. He cares about students a lot. He makes his class fun. If you are EE major then you must take his class.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df35" + } + }, + { + "text": "Awful professor. Easy exams because he puts no thought into them. If you want to learn optics from someone well respected in that field, he will disappoint you.", + "pos": 0.245, + "neu": 0.548, + "neg": 0.206, + "_id": { + "$oid": "6711d5cacd60fca157e5df36" + } + }, + { + "text": "very knowledgeable, distinguished professor, lenient, exams just as home works and class notes, not the clearest lecturer, but he makes the class fun.TAKE HIM", + "pos": 0.063, + "neu": 0.937, + "neg": 0.0, + "_id": { + "$oid": "6711d5cacd60fca157e5df37" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cbcd60fca157e5df39" + }, + "professor_name": "Nicholas Levis", + "rating": 4.2, + "department": "History department", + "comments": [ + { + "text": "Fascinating teacher! Teaches by explanation, by example, and especially by counterexample. He is often very, very right. But sometimes he is wrong. Such as: \"This board will remain the only version of this board above all because it includes the only archive\", which is very, very wrong. (The internet saves everything, Professor! Individuals, too!)", + "pos": 0.036, + "neu": 0.806, + "neg": 0.159, + "_id": { + "$oid": "6711d5cbcd60fca157e5df3a" + } + }, + { + "text": "probably the most eccentric professor Ive had. The first week was confusing, but eventually we found our grove. Participation matters- as in- go to class. You dont necessarily have to speak, but hell see who is actively listening, all your work is online. Its super straight forward. Do responses based on readings, presentation, paper.", + "pos": 0.174, + "neu": 0.71, + "neg": 0.116, + "_id": { + "$oid": "6711d5cbcd60fca157e5df3b" + } + }, + { + "text": "3.5/5 Pros: He is caring and there is so much extra credit opportunities. Also the papers arent hard at all and you can wing them easily and get a decent grade. He is also very accessible and he always puts the students as a priority. Cons: VERY DISORGANIZED, and there were many times I had no idea what was due and if your visual learner,GOOD LUCK", + "pos": 0.201, + "neu": 0.723, + "neg": 0.077, + "_id": { + "$oid": "6711d5cbcd60fca157e5df3c" + } + }, + { + "text": "He's a funny professor, a fair grader and gives lots of extra credit. That being said, there is so much to cover in class, prepare to read A LOT. No need to purchase a textbook, everything is online.", + "pos": 0.177, + "neu": 0.773, + "neg": 0.05, + "_id": { + "$oid": "6711d5cbcd60fca157e5df3d" + } + }, + { + "text": "His lectures were so boring and long. He will make you read a lot, and then do homework based on the reading. He does group projects, and also makes each group be responsible for notes during a lecture and you'll have to post them on the forum. Didn't enjoy the class", + "pos": 0.041, + "neu": 0.858, + "neg": 0.1, + "_id": { + "$oid": "6711d5cbcd60fca157e5df3e" + } + }, + { + "text": "He's a super nice professor but his lectures are super boring and lack any visual presentations or notes, which is difficult for any visual learners out there. He isn't too difficult but there is a lot of reading to do, just do well on the essays and you'll be fine. Not a lot of tests and the quizzes he gave didn't count half the time.", + "pos": 0.209, + "neu": 0.68, + "neg": 0.111, + "_id": { + "$oid": "6711d5cbcd60fca157e5df3f" + } + }, + { + "text": "Caring professor. He really enjoys sharing and teaching. Very dedicated. Boring class though! Extremely hard to pay attention in class. All you do is sit and listen to him lecture. Papers are kind of difficult, but put in effort and go to the writing center, he'll give a good grade. For the final, you're allowed to bring a page of notes. Easy A/B", + "pos": 0.218, + "neu": 0.698, + "neg": 0.084, + "_id": { + "$oid": "6711d5cbcd60fca157e5df40" + } + }, + { + "text": "Super nice and understanding. Pretty difficult class if you're a visual learner. The class is heavy on lectures so make sure to take notes. If you want to do well in the class, keep up with the reading and participate ! Make sure he knows your name by attending office hours and emailing him. That can change your B into an A.", + "pos": 0.246, + "neu": 0.72, + "neg": 0.033, + "_id": { + "$oid": "6711d5cbcd60fca157e5df41" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cbcd60fca157e5df43" + }, + "professor_name": "Marissa Gutierrez", + "rating": 4.9, + "department": "Art department", + "comments": [ + { + "text": "A really understanding and caring professor. She values the health of her students a lot while also being flexible enough to teach the things we need to learn. You learn a lot for the better, and any assignments are very doable with a reasonable amount of time in between!", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d5cbcd60fca157e5df44" + } + }, + { + "text": "A great professor! I would defiantly take her again and if you have the choice, pick her! She knows how to teach. She respects her students and is available outside of class. I enjoyed this class and not only learned from her, but from my peers as well.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d5cbcd60fca157e5df45" + } + }, + { + "text": "This class was not only easy but also was fun and interesting. I don't like group projects, but I enjoyed the group assignments she had us do in class because they were so fun. There are a lot of presentations and homework assigned, but you'll be surprised at how easy the assignments of this class are. she's also easy to find on her email anytime.", + "pos": 0.32, + "neu": 0.631, + "neg": 0.049, + "_id": { + "$oid": "6711d5cbcd60fca157e5df46" + } + }, + { + "text": "I really enjoyed the creativity this class brought out of me. On the weekends though she isn't accessible outside of class. This professor is extremely knowledgeable about Art education. My favorite part was creating a lesson plan. I highly recommend!", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d5cbcd60fca157e5df47" + } + }, + { + "text": "BEST PROFESSOR EVER!!! She is a really caring person and extremely knowledgable in the field she teaches in. I am so glad I took her class because truth be told... I learned so many important life skills and what is going on in the world today. She does ask for a few papers and a couple of presentations but nothing too overwhelming. Great teacher.", + "pos": 0.158, + "neu": 0.782, + "neg": 0.06, + "_id": { + "$oid": "6711d5cbcd60fca157e5df48" + } + }, + { + "text": "Take her, shes a gem! Shes so inspiring and creates such an inviting atmosphere. Her work is not hard at all, just a project towards the end of the semester that involves socializing with people. If you want to be able to eat in class and share your own opinion of social issues, TAKE HER. Easy A!!!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d5cbcd60fca157e5df49" + } + }, + { + "text": "I had this class late, but I alwayssss look forward to go to class. She inspired me to go for art education even. Her assigments requirements are explained clearly and there was a group project gone wrong for me but she was understanding what my group was lacking . Please do take this class!", + "pos": 0.17, + "neu": 0.766, + "neg": 0.064, + "_id": { + "$oid": "6711d5cbcd60fca157e5df4a" + } + }, + { + "text": "One of the best i have taken. Easy A, very inspiring. presentations are mandatory, no finals, one blog, a visit to a museum but the way the class is set up, you will wish to do a lot of talking and presentation and many more. She brings out the creativeness in you. EASY A!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!", + "pos": 0.307, + "neu": 0.669, + "neg": 0.023, + "_id": { + "$oid": "6711d5cbcd60fca157e5df4b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cccd60fca157e5df4d" + }, + "professor_name": "Mohsen Amjadian", + "rating": 2.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Instructor's teaching is chaotic and unclear. Fails to convey information effectively, making the course unnecessarily tough. Assessment is poor. Despite earning an 'A', I advise against choosing this course. The experience is frustrating. Never pick him.", + "pos": 0.061, + "neu": 0.612, + "neg": 0.327, + "_id": { + "$oid": "6711d5cccd60fca157e5df4e" + } + }, + { + "text": "Long exams with theoretical questions. Study and ask a lot of questions. Things get graded slowly, so you need to constantly remind him about your exams and homework.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5cccd60fca157e5df4f" + } + }, + { + "text": "Those who have taken statics with Dr. Amjadian must realize that statics is a \"weeding\" out course in CCNY and its goal is to weed out those who dont have the ability to study as hard as the class requires. I am taking Dr. Amjadian for a higher CE Class and he is really nice, helpful, and understanding with assignment extensions. Exams are tough.", + "pos": 0.088, + "neu": 0.842, + "neg": 0.069, + "_id": { + "$oid": "6711d5cccd60fca157e5df50" + } + }, + { + "text": "Hes a good professor and cares about his students, do the homeworks and some extra practice problems and you should be fine. Hes reasonable and wants to help you, but dont just rely on that you have to study!!! Also the exams might be hard, but he wont throw any surprises hell tell you whats on it.", + "pos": 0.104, + "neu": 0.711, + "neg": 0.185, + "_id": { + "$oid": "6711d5cccd60fca157e5df51" + } + }, + { + "text": "Huge fan. With a 30% pass rate, statics is by no means an easy course. But Professor Amjadian really puts his all in, he's really caring, and though exams are hard, he grades them pretty fairly. Put in time to get to know him outside of class; it'll pay off. And do LOTS of practice from the textbook. It's hard but certainly doable.", + "pos": 0.226, + "neu": 0.69, + "neg": 0.083, + "_id": { + "$oid": "6711d5cccd60fca157e5df52" + } + }, + { + "text": "Not fair, tough grader and explains something and tests you on another. Thats my 1st ever F was because of him", + "pos": 0.061, + "neu": 0.851, + "neg": 0.088, + "_id": { + "$oid": "6711d5cccd60fca157e5df53" + } + }, + { + "text": "nowhere near a college professor level. so many bad professors but this man is beyond expectations, idk how is he a professor he can't explain easiest problems. and his exams are completely out of the class scope, just unsolvable, I hope he doesn't teach anymore", + "pos": 0.125, + "neu": 0.745, + "neg": 0.13, + "_id": { + "$oid": "6711d5cccd60fca157e5df54" + } + }, + { + "text": "this man is horrible. doesn't explain anything clearly, not prepared for lectures, always lost and makes A LOT of mistakes while solving explains easiest problems in textbook and gives similar in the HW, but exams are completely something else I don't recommend him at all", + "pos": 0.068, + "neu": 0.683, + "neg": 0.249, + "_id": { + "$oid": "6711d5cccd60fca157e5df55" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cdcd60fca157e5df57" + }, + "professor_name": "Steven Hernandez", + "rating": 4.4, + "department": "Philosophy department", + "comments": [ + { + "text": "He mainly uses discord instead of blackboard. i tried hard to understand the material and sometimes it was easy to read but other time you were left wondering why u chose the class. I wouldnt take it again but it was a fun class. I dont really like his grading system because he goes based off points but he follows the syllabus.", + "pos": 0.092, + "neu": 0.821, + "neg": 0.087, + "_id": { + "$oid": "6711d5cdcd60fca157e5df58" + } + }, + { + "text": "If you want as easy A, he's a great option. If you want a \"chill\" teacher, he's your guy. \nIn my opinion, this was my least favorite class I've ever taken in my entire life. The readings were engaging, but the class was meandering and unstructured and mostly consisted of group discussions. He basically never lectured or actually taught material.", + "pos": 0.132, + "neu": 0.841, + "neg": 0.027, + "_id": { + "$oid": "6711d5cdcd60fca157e5df59" + } + }, + { + "text": "love this guy. accomodating and approachable, relatively chill. you will be argued with. he was like jerma to my class for some reason. i wont explain. when he turns 30 be sure to remind him about it as much as possible. took philosophy of scifi with him. it was one of the most engaged online classes id ever seen. uses discord", + "pos": 0.166, + "neu": 0.762, + "neg": 0.072, + "_id": { + "$oid": "6711d5cdcd60fca157e5df5a" + } + }, + { + "text": "A lovely person. He's passionate about his field and his job. Grading policy is unique, but great once you understand it. He just wants to see you do your best and he'll meet you halfway! Relatable and personable; I don't think I've encountered anyone who doesn't adore him. I wish him all the best and would recommend him to anyone who will listen.", + "pos": 0.33, + "neu": 0.626, + "neg": 0.044, + "_id": { + "$oid": "6711d5cdcd60fca157e5df5b" + } + }, + { + "text": "TAKE HIM! You will thank me later! He's genuinely an AMAZING professor, very passionate about philosophy and caring for his students. There are quizzes based on the readings (which are pretty easy if you have done the reading), and he gives lots of extra credit (especially if you participate). You'll probably end up liking philosophy!", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df5c" + } + }, + { + "text": "You should take this professor. He is vibrant, young and very informed. He gives EXTRA CREDIT!. He is caring and provides meaningful feedback. He makes the classes very interesting. I actually WANTED to be at class. Just do your assignments on time, if you need help, he's there. He grades fairly. . Take him if you want to learn philosophy!", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df5d" + } + }, + { + "text": "He is honestly a great professor. Very caring and calm and only wants to see the good in you. I do not really like philosophy, but if you put effort into his class and show him that you are at least trying, he will go easier on you. Weekly readings and quizzes for those readings, so make sure you read them BEFORE class.", + "pos": 0.237, + "neu": 0.741, + "neg": 0.022, + "_id": { + "$oid": "6711d5cdcd60fca157e5df5e" + } + }, + { + "text": "The teacher was awesome.There were a lot of readings, and quizzes which were only 3 questions and as long as you did the readings you'd pass.We did discussion boards every week and it was pretty good!If you were one the 5 ppl that posted first you get an extra point.There was also debates(particpate)Fairly, for me I don't like phil so it was hard.", + "pos": 0.048, + "neu": 0.892, + "neg": 0.06, + "_id": { + "$oid": "6711d5cdcd60fca157e5df5f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cdcd60fca157e5df61" + }, + "professor_name": "Elizabeth Bennett", + "rating": 4.8, + "department": "Speech department", + "comments": [ + { + "text": "As someone who doesn't like public speaking I honestly loved this class. Professor Bennett is really great at what she does. I felt like I was being pushed outside my comfort zone in a healthy way that would help me grow. She provides you with a free pdf of the text book and she only assigns chapters for certain speeches. Great class!", + "pos": 0.372, + "neu": 0.603, + "neg": 0.025, + "_id": { + "$oid": "6711d5cdcd60fca157e5df62" + } + }, + { + "text": "You won't regret taking her. You will leave the class as a better speaker! She's a wonderful professor as well as a kindhearted person.", + "pos": 0.359, + "neu": 0.603, + "neg": 0.038, + "_id": { + "$oid": "6711d5cdcd60fca157e5df63" + } + }, + { + "text": "She is sometimes a little intimidating but she is quite possibly one of the best speech professors you could have asked for. I genuinely think I am a better speaker because of her and she is so sweet. I would happily take her again! She gives helpful feedback and really cares for her students. She's amazing :)", + "pos": 0.429, + "neu": 0.55, + "neg": 0.021, + "_id": { + "$oid": "6711d5cdcd60fca157e5df64" + } + }, + { + "text": "Professor Bennett is honestly one of the most nicest and helpful professors in all of CCNY. If you have to take a speech class, take professor Bennetts's class. She gives great feedback to your speeches and takes the stress and other classes into consideration. there are 4 speeches and each one will help you become a better speaker.", + "pos": 0.264, + "neu": 0.698, + "neg": 0.038, + "_id": { + "$oid": "6711d5cdcd60fca157e5df65" + } + }, + { + "text": "Professor Bennett is a very kind professor. She will give you great feedback on your speech, which will help you better in the next one. Make sure to email her if you get lost on what you need to do because this will help you do well in your speeches. There are only 4 speeches that we worked on throughout the semester.", + "pos": 0.267, + "neu": 0.703, + "neg": 0.03, + "_id": { + "$oid": "6711d5cdcd60fca157e5df66" + } + }, + { + "text": "An amazing professor! Very accommodating to your needs, you just have to stay in touch with her. The work given gradually gets harder, but youll always be able to get it done without stressing. Her feedback for each speech only helps you to do better for the next one", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df67" + } + }, + { + "text": "Elizabeth is the best teacher for speech and her class goes by fast", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df68" + } + }, + { + "text": "she aight", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df69" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cdcd60fca157e5df6b" + }, + "professor_name": "Cara McManus", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Super nice, considerate, helpful. Best prof. Gives 3 free absences, 2 lateness counts as an absence. Easy grader, easy A", + "pos": 0.682, + "neu": 0.318, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df6c" + } + }, + { + "text": "Professor McManus is extremely nice and caring. She assigns work but most of it is pretty easy and has due dates that give more than enough time to complete. Also she responds to messages outside of class pretty quick and she also is a really good grader.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df6d" + } + }, + { + "text": "Professor McManus is amazing! Easygoing and fast at responding to emails. The readings are all easy and manageable. She even gives (half) credit if you make up for missing/late work. Just make sure to do all her assignments. Just make sure to do all her assignments and submit all the papers. I really loved her class, and I can see enjoys her job.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df6e" + } + }, + { + "text": "I took her for ENGL 210!! She was super nice, she wasn't a tough grader, and she made the class fun. Make sure to do the readings/ her work since you will have a lot of group work such as: peer review, group discussions, group readings, etc. If you have any difficulty with anything, she's always available during (sometimes) and after class.", + "pos": 0.196, + "neu": 0.771, + "neg": 0.033, + "_id": { + "$oid": "6711d5cdcd60fca157e5df6f" + } + }, + { + "text": "Honestly, Professor McManus was the absolute best. She was kind and very clear about all assignments and the pacing was great. She was also very easy to contact outside of class and quick to provide any necessary clarification or assistance. There really weren't any exams, just a decent amount of writing and like 3 papers.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df70" + } + }, + { + "text": "Great Professor! When I took her, she graded purely based of submission and timeliness. Don't take advantage of that though, it's still a lot of work and she'll give you feedback on your papers nonetheless.", + "pos": 0.112, + "neu": 0.843, + "neg": 0.044, + "_id": { + "$oid": "6711d5cdcd60fca157e5df71" + } + }, + { + "text": "Cara is an awesome Professor. I enjoyed taking her Freshman Composition class. No exams for this class, just writing!", + "pos": 0.297, + "neu": 0.618, + "neg": 0.085, + "_id": { + "$oid": "6711d5cdcd60fca157e5df72" + } + }, + { + "text": "She is a great teacher and i highly recommend her. When i made my schedule i took a chance with her and it paid off. She is amazing and she is very kind. She isn't harsh with grading. She might give a little bit too much work but she gives you time and break down everything for you. Overall if you get a chance to take it with her, DONT MISS OUT!!!!", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d5cdcd60fca157e5df73" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cecd60fca157e5df75" + }, + "professor_name": "Sean Weiss", + "rating": 4.2, + "department": "Architecture department", + "comments": [ + { + "text": "Professor Weiss is a fantastic and supportive teacher with a real interest in opening the subject matter of architecture and history to issues relevant to contemporary NYC and it's inhabitants. \nThe course itself was innovative, clearly structured, and had clear guidelines that Dr Weiss built on every step of the way. Take any class with him!", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df76" + } + }, + { + "text": "The dude's okay. Not sure how he behaves in other courses, but he was alright in Urban Studies", + "pos": 0.193, + "neu": 0.734, + "neg": 0.072, + "_id": { + "$oid": "6711d5cecd60fca157e5df77" + } + }, + { + "text": "Great Professor, just don't be late and you will be fine. He also likes to roast people that drift off to sleep, kinda entertaining.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df78" + } + }, + { + "text": "if you aren't an architecture major, i wouldn't take him. he seems to cater his lectures more to them, even though quite a substantial amount of people in the class aren't. it's fine until he assumes you know some termonology that he never explains. if you're even a little late he tries his best to call you out and make a minor scene about it.", + "pos": 0.09, + "neu": 0.887, + "neg": 0.023, + "_id": { + "$oid": "6711d5cecd60fca157e5df79" + } + }, + { + "text": "Sean is the best teacher I have ever had in my life! Take him!!!!!!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df7a" + } + }, + { + "text": "Excellent course and teacher. The readings every week are a great mix, and he is very helpful when students don't understand something.", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df7b" + } + }, + { + "text": "He's really passionate about the subject, and he speaks with a beautiful venacular.", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df7c" + } + }, + { + "text": "When registering, the class was supposed to start at 9 but makes students come in at 8:50 and still embarrasses them for coming in late. Picks on students to answer questions about the readings and then scolds them if they can't answer the question. Very uncomfortable. Difficult, boring class; avoid at all costs if you aren't an architecture major.", + "pos": 0.0, + "neu": 0.758, + "neg": 0.242, + "_id": { + "$oid": "6711d5cecd60fca157e5df7d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cecd60fca157e5df7f" + }, + "professor_name": "Elazar Elhanan", + "rating": 4.3, + "department": "Judaic Studies department", + "comments": [ + { + "text": "He assigns a lot of readings, but he has a lot of knowledge on this topic and he won't call on you. Assigns no homework, but there is a midterm, final, and presentation that make up your entire grade, but they aren't too hard if you prepare properly. You also have a lot of books to buy for the class, but you can find most online.", + "pos": 0.021, + "neu": 0.938, + "neg": 0.041, + "_id": { + "$oid": "6711d5cecd60fca157e5df80" + } + }, + { + "text": "Pretty chill professor. There was a lot of reading for the class, but most of it was pretty interesting. Lectures were sometime repetitive but not bad.", + "pos": 0.369, + "neu": 0.564, + "neg": 0.067, + "_id": { + "$oid": "6711d5cecd60fca157e5df81" + } + }, + { + "text": "I think Professor Elhanan is fantastic. He takes you on a historic adventure of Jewish history with interesting lectures and good readings. The homework is light, just weekly readings (not to heavy) and so far one test and the semester is almost over. He's smart, funny, and a really nice guy. I highly recommend him!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df82" + } + }, + { + "text": "Professor Elhanan is a professor that knows his topics extremely thoroughly. Explains concepts pretty clearly. Assignments are very reflective of the things we discuss in class. Professor Elhanan knows how to keep the class moving and is an excellent educator. I would strongly recommend his courses to other students.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df83" + } + }, + { + "text": "Cool guy and a walking encyclopedia of Judaic knowledge. His classes are lecture heavy and require a good amount of reading, but he gives little written assignments, is a fair grader, and is, occasionally, pretty funny in class. Easily the greatest professor the CCNY Jewish Studies program has to offer if youre interested in that field.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df84" + } + }, + { + "text": "took his class on spirit possession was pretty chill and interesting. no textbook but gives handouts and posts reading material on blackboard. you have to buy a few books but the jewish studies department library has a few you can borrow. pretty chill dude, has an accent but knows like literally everything. dont know how he does it. i did well tho", + "pos": 0.203, + "neu": 0.775, + "neg": 0.023, + "_id": { + "$oid": "6711d5cecd60fca157e5df85" + } + }, + { + "text": "He is a wonderful and very smart professor. The lectures leave you with lessons that will last a lifetime and an interest for hidden parts of history, literature and politics. Very down to earth, lenient with due dates and knows how to make you laugh. Be ready to read, but it is worth it.", + "pos": 0.233, + "neu": 0.749, + "neg": 0.018, + "_id": { + "$oid": "6711d5cecd60fca157e5df86" + } + }, + { + "text": "His courses are challenging; do the readings b/c discussion is essential. However, he's extensively knowledgable & makes sure his students understand the material. Patient, friendly, flexible, laid back, fair grader - overall a truly brilliant mind & deserves more recognition. Lectures can be dry & intense, but you learn so much more than expected.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df87" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cecd60fca157e5df89" + }, + "professor_name": "Eva Velasco-Pena", + "rating": 3.8, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Does a bad job with Span explanations. The book's \ufffd\ufffd. The first 3 classes she wasted everyone's time with 1-1 conversations about something she could've emailed. Always shows up to online class 5mins late. Sometimes arrived with only 30 or even 10mins left of class time, doesn't cancel class and still takes attendance. Wanted to learn Span, didn't.", + "pos": 0.027, + "neu": 0.867, + "neg": 0.106, + "_id": { + "$oid": "6711d5cecd60fca157e5df8a" + } + }, + { + "text": "Professor Velasco seems intimidating at first but she really does just wants all her students to do well. If you participate and show her that you try, you will pass. Regardless of how poorly you do in her quizzes, she will pass you if she knows you try. I got 70s on all my quizzes but she still gave me an A+.", + "pos": 0.041, + "neu": 0.929, + "neg": 0.03, + "_id": { + "$oid": "6711d5cecd60fca157e5df8b" + } + }, + { + "text": "She gives a lot of homework that has to be done. Don't be fooled by the grade I received because I overslept and didn't make it to my final and still received a good enough grade. Attendance really counts. You need the textbook because she assigns homework the first week. Overall, she is always willing to help and very nice.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df8c" + } + }, + { + "text": "Professora was such a great teacher to have for my first semester (at Hunter). Though she ran late frequently, she was such a sweet laid back teacher. She has patience for everyone, even if our accents are strong in Spanish. You can easily go to her and if she likes you, she'll definitely help boost your grade. Take her and become her friend!", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df8d" + } + }, + { + "text": "Would never take again.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df8e" + } + }, + { + "text": "She is very helpful and willing to answer any questions. She is strict with due dates for assignments but the work is not hard. She prepares the students very well for the tests and she encourages participation in class.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d5cecd60fca157e5df8f" + } + }, + { + "text": "Prof.: Velasco is a great teacher. Very dynamic and Cool. She doesn't hesitate in calling someone out if they're messing up, but is always willing to help out when in doubt. She grades according to one's effort and dedication. Do your HW(participation not optional), study, be in class on time and you'll be fine. I Extremely Recommend Her!", + "pos": 0.246, + "neu": 0.708, + "neg": 0.046, + "_id": { + "$oid": "6711d5cecd60fca157e5df90" + } + }, + { + "text": "She can be pretty strict and a hard grader, but if you work hard enough where she recognizes it, then you should be fine. Learning a foreign language can be a difficult task, so it's important to practice a lot. However, if you don't have time to commit to the class then don't take her class and trust me she will let students know this.", + "pos": 0.183, + "neu": 0.738, + "neg": 0.078, + "_id": { + "$oid": "6711d5cecd60fca157e5df91" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cfcd60fca157e5df93" + }, + "professor_name": "David Ranghelli", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Professor Ranghelli is one of the best professors I have had this semester. Really worth getting to learn from. Very generous in regards to attendance. Further assists with any problems or questions you may have.", + "pos": 0.229, + "neu": 0.71, + "neg": 0.062, + "_id": { + "$oid": "6711d5cfcd60fca157e5df94" + } + }, + { + "text": "I think Professor Ranghelli was an amazing teacher and instructor for the semester. Although classes were online he really knew how to instruct and teach his students in a way where they could understand the content in a more easier and convenient way under unfortunate circumstances with the pandemic going on. He is definitely worth it.", + "pos": 0.175, + "neu": 0.779, + "neg": 0.046, + "_id": { + "$oid": "6711d5cfcd60fca157e5df95" + } + }, + { + "text": "One of the best professors I had was very caring and always available when asking for help. There were many small assignments rather than long assignments, and they were all straight forward; take him if you have the chance, you won't regret it.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5df96" + } + }, + { + "text": "when I saw this professors rating I was hesitant, however he is veryyy nice. His class wasn't even that hard. He explains what we need to do and its not hard. He might be a little boring sometimes, however his class wasn't hard. He tried to help us as much he can. Also he isn't a harsh grader. And you have blackboard discussion but its not hard.", + "pos": 0.145, + "neu": 0.813, + "neg": 0.042, + "_id": { + "$oid": "6711d5cfcd60fca157e5df97" + } + }, + { + "text": "Really shows out as a professor. He knows how to actually speak to you as an adult and is considerate of outside circumstances. Encouraged discussion, pushes you and keeps you interested even when the film may have taken you out. Would prefer if he could teach all my courses tbh", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5df98" + } + }, + { + "text": "Hes really a great person. You can tell he loves what he teaches. Might feel dry at times because hes either answering his own questions or you can zone out but hes far from horrible. And is tough grader at all.", + "pos": 0.104, + "neu": 0.762, + "neg": 0.134, + "_id": { + "$oid": "6711d5cfcd60fca157e5df99" + } + }, + { + "text": "I didn't feel too motivated by his teaching style. Not very engaging, feel as if he wasn't used to teaching a class like this. The plays we read were really good but the way he taught it made it seem boring.", + "pos": 0.115, + "neu": 0.75, + "neg": 0.135, + "_id": { + "$oid": "6711d5cfcd60fca157e5df9a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cfcd60fca157e5df9c" + }, + "professor_name": "Carolina Rozario", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "Very good professor. Good slides. Do your homework. Take your lecture notes. Study for your test and you will pass.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5df9d" + } + }, + { + "text": "Her quizzes are the worst!! chooses extremely tricky questions, even after we told her to not put any tricky questions on the cummulative final she did! Sweet person but shouldn't be teaching in my opinion. Extra credit was very minimal. No homework though just 10 quizzes and drops the lowest 2.", + "pos": 0.107, + "neu": 0.708, + "neg": 0.185, + "_id": { + "$oid": "6711d5cfcd60fca157e5df9e" + } + }, + { + "text": "The professor is caring and makes sure that the students understand the lectures. Quizzes and tests can be a bit tricky, but if you study the slides and the textbook, you'll be fine. The professor is very sweet and understanding.", + "pos": 0.223, + "neu": 0.75, + "neg": 0.028, + "_id": { + "$oid": "6711d5cfcd60fca157e5df9f" + } + }, + { + "text": "Professor Rozario was a bit difficult with grading and exams. Her quizzes were very tricky and her exams were even more tricky and difficult. You really have to be on top of this class and study A LOT or you will have a tricky time with her exams. We had 2 presentations, 1 final paper, 10 quizzes, 1 midterm, and 1 final. B ready to study extra!", + "pos": 0.057, + "neu": 0.797, + "neg": 0.145, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa0" + } + }, + { + "text": "You have to study to earn the grade. She was not a tough grader. She gives no review sheet for final, you literally have to study the whole textbook chapters. The class was worth the time.", + "pos": 0.085, + "neu": 0.858, + "neg": 0.057, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa1" + } + }, + { + "text": "SHE IS A VERY NICE AND CARING PROF. she always made sure that she was clear about everything. very understanding. gives extra credit. we had a quiz every week. not a harsh grader.", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa2" + } + }, + { + "text": "Textbook, homework all on a web app. She's caring, encourages students to ask if something isn't clear & has an online help board. BUT.. she's just not a good teacher/explainer. So students who aren't asking for clarification have given up, tuned out, decide to study to try to figure the stuff out alone or with tutors. Sweet person, wrong career.", + "pos": 0.135, + "neu": 0.71, + "neg": 0.155, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa5" + }, + "professor_name": "Jesse Rice-Evans", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "She's very chill, understanding, and funny, loved her company. There is a very clear schedule and outline to follow, and it's an easy class to pass just do the assignments which are not difficult. :)", + "pos": 0.318, + "neu": 0.628, + "neg": 0.054, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa6" + } + }, + { + "text": "best professor ever, would take again 100%", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa7" + } + }, + { + "text": "Amazing professor! I took her class for a hybrid english class and it was an easy syllabus to follow. She is super understanding and she's open to opinions and ideas. She gives great feedback and I'd love to take another class with her. She also has a great sense of humor!", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa8" + } + }, + { + "text": "The best professor I've ever had. She is caring, open to new ideas and overall just interesting! Writing is again something I enjoy, and its Professor Evans I have to thank. Class was challenging at times but she was there to support you every step of the way.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfa9" + } + }, + { + "text": "Awesome prof! she is caring and super fun. Easy class if u do all the assignments.", + "pos": 0.617, + "neu": 0.383, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfaa" + } + }, + { + "text": "Great teacher! Very understanding of not just work, but issues that may be going on in your life. She loves to teach what she teaches.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfab" + } + }, + { + "text": "She is the best teacher I ever had! Really made me develop my writing skills and I became more analytical and critical about social issues. Highly recommended!", + "pos": 0.206, + "neu": 0.718, + "neg": 0.077, + "_id": { + "$oid": "6711d5cfcd60fca157e5dfac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d0cd60fca157e5dfae" + }, + "professor_name": "Chester Kozlowski", + "rating": 3, + "department": "English department", + "comments": [ + { + "text": "Worst professor, he cant teach and grading policy is very bad and goodluck with attendance. Gives u F for small mistakes.", + "pos": 0.0, + "neu": 0.634, + "neg": 0.366, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfaf" + } + }, + { + "text": "This class was interesting when looking at the history of the genre, but I found the professor inappropriate. Certain comments and jokes were ones I felt didn't belong in an academic atmosphere, which is unfortunate given the immense knowledge and care this professor clearly indicated.", + "pos": 0.257, + "neu": 0.674, + "neg": 0.069, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb0" + } + }, + { + "text": "this professor is very strict about attendance.\nhe is rude and can make inappropriate jokes. He makes assumptions about you and it seems quite unfair. He also isn't empathetic at all.\nlots of reading for this class.", + "pos": 0.046, + "neu": 0.756, + "neg": 0.198, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb1" + } + }, + { + "text": "This class was pretty interesting. Loads, of reading and was hybrid when I took it. He was a bit heavy on attendance and lateness. But overall was a good class we had interesting discussions despite all the work.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb2" + } + }, + { + "text": "He's a nice guy/genuinely interested in the lives of his students. He gave a quiz each day and takes attendance (don't miss more than 3 classes). His course material and the way he teaches it made me feel like I was in HS again, a little patronizing. Would not take again bc his teaching style doesn't mesh w/ me. Relatively easy A if u do HW.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb3" + } + }, + { + "text": "WHAT A GREAT CLASS! Great professor, so kind and funny. Definitely knows how to keep his students awake. I LOVED every minute of this class. I was always looking forward to this class. This class kept me awake. Graded on quizzes (easy), some homework, participation. EASY A. Highly recommend.", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb4" + } + }, + { + "text": "He is a pretty tough grader when it comes to papers, so make sure you check grammar, syntax and MLA for your paper or else you will get points off. ATTENDANCE IS MANDATORY!!! After three unexcused absences he will tell you that you are going to fail. Otherwise his lectures are pretty interesting because he tries to relate to todays life.", + "pos": 0.198, + "neu": 0.734, + "neg": 0.068, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb5" + } + }, + { + "text": "Really interesting class with great readings. Lectures are interesting and incorporate in a lot of movies. Two major papers and quizzes. Randomly tough grader", + "pos": 0.313, + "neu": 0.639, + "neg": 0.048, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb8" + }, + "professor_name": "Miri Kubovy", + "rating": 3.6, + "department": "Languages department", + "comments": [ + { + "text": "I actually took Hebrew 103 at Hunter College. Miri is quite possibly the LEAST organized professor I've ever had. We didn't even have a syllabus to follow. She made learning the material much more complicated than it needed to be and made following the coursework infuriating at best, and impossible at worst. Choose a different prof.", + "pos": 0.065, + "neu": 0.819, + "neg": 0.116, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfb9" + } + }, + { + "text": "very interesting and knowledgeable woman. very sweet & really does care about all her students. just in hebrew we gain new information for the final even on the last day of class (& tells u last min stuff u need to study -very unorganized) but also very flexible if u voice ur opinion. she's awesome !", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfba" + } + }, + { + "text": "She has alot of knowledge about a wide range of subjects. She puts a lot of effort into assigning things that she believes will be useful for the students to know and really cares about students learning. I have alot of respect for her and i recommend taking her class.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfbb" + } + }, + { + "text": "She is a very helpful professor who is every knowledgeable. She clearly cares very much about her students and is very sweet. I definitely recommend taking a class with her.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfbc" + } + }, + { + "text": "interesting classes, really nice", + "pos": 0.743, + "neu": 0.257, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfbd" + } + }, + { + "text": "she's a really sweet lady with an impressive knowledge of the material, don't let her opinions get in your way of learning from her!", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfbe" + } + }, + { + "text": "Intelligent professor, however this not reflect in her teaching style. Very old school, never writes on the board. Study all material, significant as well as insignificant people information will be on it.", + "pos": 0.185, + "neu": 0.751, + "neg": 0.064, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfbf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc1" + }, + "professor_name": "Elizabeth Jaeger", + "rating": 3.1, + "department": "History department", + "comments": [ + { + "text": "Jaeger at first will appear to give a lot of work with quizes every week, and 3 papers but her midterm and final are take home, her papers she grades relatively easily and if you participate in class the quizes do not count whatsoever. She also does not lecuture, the class is more discussion so she makes it very interesting ! TAKE HER !!!", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc2" + } + }, + { + "text": "Seems very hard at first but the works not that bad but there is a lot. 3 essays on books you must read but if you get over a B on each of the first two you don't have to write the third. Group, individual, debate projects as well as weekly quizzes. Mid term and final. Wants you to read chap and participate. I didnt still got an A.", + "pos": 0.087, + "neu": 0.895, + "neg": 0.018, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc3" + } + }, + { + "text": "The first day of class, she seems a bit tough but she actually isn't. Yes, she does ask for a lot of work but it isn't that bad as people are making it seem. Plus, she curves the quizzes, gives take home midterms and finals. You can't go wrong with her class. Loved every minute of it.", + "pos": 0.182, + "neu": 0.758, + "neg": 0.06, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc4" + } + }, + { + "text": "Sweet professor but gives too much work. A quiz every week on 2 very big/boring chapters.Individual and group presentation\"s\". Its understandable that your student should know the material, but 1. we are not in graduate school and have other subjects 2. we are not all majoring in history. The more quizzes i took the more of a failure I felt.", + "pos": 0.031, + "neu": 0.894, + "neg": 0.075, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc5" + } + }, + { + "text": "A lot of work. Also need to read two chapters a week for class and need to participate. Nice teacher too much work", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc6" + } + }, + { + "text": "She's a nice lady but gives too much work.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc7" + } + }, + { + "text": "Do not take unless u like a ton of work. You have to do individual & group presentation & debate. Have to read 3 books upwards of 300 pgs each and write 5 pg papers for each. Have 5 quizzes in class. Midterm is take home its 5 pages. Final which is in class 2 essays. Also must read assigned chap weekly and must participate to get an A. Stay away!!!", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d5d0cd60fca157e5dfc8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d1cd60fca157e5dfca" + }, + "professor_name": "Kenneth Stark", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "Very helpful professor. I would take him again.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfcb" + } + }, + { + "text": "He really is a great professor. Very interesting as you're often challenged to think of appropriate responses in some difficult hypothetical situations. The segment on the 13 Disabilities was definitely enlightening. Very chill guy overall, just make sure you do the necessary readings and the necessary papers. Don't slack on that... Take him.", + "pos": 0.239, + "neu": 0.702, + "neg": 0.059, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfcc" + } + }, + { + "text": "Prof. Stark was very passionate and his teaching style was very hands on and empirical. However, the fact that he as never been a teacher made me question his judgement at times.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfcd" + } + }, + { + "text": "Very informational! :) Had him twice and Learned a lot about IEP's, the 13 disabilities, and important rules that I had not known prior to taking his class.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfce" + } + }, + { + "text": "this professor takes an interest in making sure that students are prepared for the challenges in the classroom.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfcf" + } + }, + { + "text": "Kenneth Stark will transform your views about special education. His classes are lively and interactive to the max. Drawing upon his background as a psychologist working with students and families in D75, he brings unique insights to class. He is kind and always willing to help you find ways to address challenging situations.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd3" + }, + "professor_name": "Nuraj Pradhan", + "rating": 4.1, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He's a good grader if you really put effort into the lab reports. One problem though is that if you have a question, he will answer your question but with an annoyed attitude. Otherwise, the class is pretty easy but time consuming with the lab reports.", + "pos": 0.179, + "neu": 0.728, + "neg": 0.093, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd4" + } + }, + { + "text": "He gives brief summary at beginning about what you have to do. Reports are a PITA. He takes off points for random stuff and stuff that he didnt mention he wanted in the lab. He barely helps during labs. Answers your question with another question and walks away, or tells you to READ THE MANUAL and, again, walks away. Got A+ though, hard work.", + "pos": 0.034, + "neu": 0.886, + "neg": 0.08, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd5" + } + }, + { + "text": "He is absoultly great professor. He is easy but you have to make lab reports yourself, work hard but you will get good grade for all your hardwork. I miss him right now as i am taking lab 2 also now i came to know that whatever he taught was great. Guys he is great professor you will learn a lot and will be helpful for your further labs.", + "pos": 0.266, + "neu": 0.694, + "neg": 0.04, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd6" + } + }, + { + "text": "Good teacher, A lot of Work cause unlike many other professors, he actually READS the LAB REPORT WORD FOR WORD. So if you copy from the book, other classmates, students from previous semester --> Automatic \"Yelling\" (First time), \"F\" (Second time). <-- By that, I mean caught the first person in the class.", + "pos": 0.053, + "neu": 0.947, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd7" + } + }, + { + "text": "Though he is a PHD student but he teaches the lab very well. Would take him again for another course if he teaches.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd8" + } + }, + { + "text": "he teaches well and very helpfull in the class. you can get easly good gread if you attened the classes and hand in the labs on time", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfd9" + } + }, + { + "text": "Laboratory professor. For a one-credit class, you have to spend a lot of time writing lab reports (make sure to get the format right). However, he is very helpful if you need \"refreshers\" on theory.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfda" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d1cd60fca157e5dfdc" + }, + "professor_name": "Shane Breaux", + "rating": 4.9, + "department": "Theater department", + "comments": [ + { + "text": "Great professor, really keeps you engaged, fun, helpful, intelligent.", + "pos": 0.802, + "neu": 0.198, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfdd" + } + }, + { + "text": "talk about PASSION this professor was amazing so far my favorite. loves theater wants you to learn great overall. do your work and you'll be fine", + "pos": 0.505, + "neu": 0.495, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfde" + } + }, + { + "text": "He's my favorite professor! His lectures are very interesting, helpful, and hilarious. He's super nice and more than happy to help his students. He assigns readings almost every class but they're an easy read and very entertaining. The best part is, there's a rewrite for every assignment to get a better grade. He's so passionate about theatre too.", + "pos": 0.477, + "neu": 0.523, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfdf" + } + }, + { + "text": "I would defiantly recommend Shane. He is an awesome professor and very down to earth. He made the class interesting. I wish I would have been able to take more his classes before leaving City College.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfe0" + } + }, + { + "text": "He's a great professor no doubt, I didn't get an A but that was because I couldn't email his 10% of the grade on time; but still he's the best professor you can have. Show up talk about the plays we read. NO textbook! You can get saved with an A from him. He's the best professor here!", + "pos": 0.291, + "neu": 0.659, + "neg": 0.05, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfe1" + } + }, + { + "text": "Very good. Told students did not need textbook because of the material covered in class. Very helpful and clear. Would reccomend!", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfe2" + } + }, + { + "text": "He is the best professor ever. That you just sit tight in the class, do some reading, take a easy quizzes and writing a outline and final paper after watching a playwright at Broadway. Then you will get an easy A. The paper isn't very hard, as long as you wrote the outline that counting as 10-15% of your grade.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d5d1cd60fca157e5dfe3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d2cd60fca157e5dfe5" + }, + "professor_name": "Sergio Gallegos", + "rating": 3, + "department": "Philosophy department", + "comments": [ + { + "text": "He knows he stuff. If love philosophy you are going to like this professor. However, you must do the reading. Don't show up without doing the reading. Also, he is a tough, very tough grader. For an introduction to philo class he graded on a scale of graduate work. Be careful.", + "pos": 0.144, + "neu": 0.799, + "neg": 0.057, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfe6" + } + }, + { + "text": "explains the material eloquently and thoroughly. Assures that his have a good grasp of the material. The exams are a bit challenging but they fairly assess your understanding of the material. A lenient grader and also factors in class participation for the overall grade. Offers additional help after class. Thus, he is a good professor. take him.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfe7" + } + }, + { + "text": "He goes through the material thoroughly and explains everything eloquently. Assures that his students understand the material. Offers additional help after class. The exams are a bit challenging but if you study the material then its easy to get a good grade. He is also a lenient grader and factors in class participation. Overall a great professor.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfe8" + } + }, + { + "text": "Most of my classmates didn't want to ask questions or do any work, but I found professor Gallegos to be well informed, clear, and fair. His rational animal course was great.", + "pos": 0.351, + "neu": 0.623, + "neg": 0.027, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfe9" + } + }, + { + "text": "THE GUY IS OT AS BAD AS PEOPLE HAVE COMMENTED! YES IT IS TRUE FINAL GRADE IS BASED ON 3 EXAMS BUT IF YOU DONT DO TOO WELL ON ONE OF THEM HE WILL ALLOW YOU TO MAKE UP FOR IT WITH A PAPER! IF YOU WANT TO LEARN AND FEEL IN SYNC YOU MUST MUST MUST DO THE READINGS AND HIS CLASS IS MAINLY DISCUSSIONS! I DID PRETTY WELL IN THE CLASS!", + "pos": 0.227, + "neu": 0.711, + "neg": 0.062, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfea" + } + }, + { + "text": "It would be a huge mistake to take this class if you want to engage in philosophical studies in a dynamic and thought provoking atmosphere. If you can memorize every word out of his mouth you can get an A by taking his obscenely difficult and long short answer tests. His three long test are the only thing he considers in grading.", + "pos": 0.122, + "neu": 0.782, + "neg": 0.095, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfeb" + } + }, + { + "text": "The Worst, worst faculty member at City. Sleeps during class, is here only for paycheck. Grades solely on exams. If you take this man's class you will regret it. Warn your friends! !", + "pos": 0.07, + "neu": 0.635, + "neg": 0.295, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d2cd60fca157e5dfee" + }, + "professor_name": "Maya Hartman", + "rating": 2.3, + "department": "Music department", + "comments": [ + { + "text": "not every helpful at all. i wanted to learn and play music. but this has taken the fun out of it for me. i would not pick this class if i had to do it over", + "pos": 0.151, + "neu": 0.809, + "neg": 0.041, + "_id": { + "$oid": "6711d5d2cd60fca157e5dfef" + } + }, + { + "text": "She was not helpful professor, and didn't explain about assignment well. Her teaching is good, but very strict. Not fun... very stressful class ever...", + "pos": 0.231, + "neu": 0.594, + "neg": 0.175, + "_id": { + "$oid": "6711d5d2cd60fca157e5dff0" + } + }, + { + "text": "Her expectations of a \"draft\" are ridiculous. She's meticulous to the boiling point and wants everything her way no matter how many contradictions are in \"her way\"", + "pos": 0.0, + "neu": 0.803, + "neg": 0.197, + "_id": { + "$oid": "6711d5d2cd60fca157e5dff1" + } + }, + { + "text": "I would not recommend taking this class. She gives to much work. She does have a bad odor like the previous writer said. I would not do it. The fun is taken away from music.", + "pos": 0.137, + "neu": 0.731, + "neg": 0.132, + "_id": { + "$oid": "6711d5d2cd60fca157e5dff2" + } + }, + { + "text": "There's lot's of work but it's really easy. There are like 7-9 paper assignments and presentation but only 2 pages, grades them easily. I got hundreds on almost all of them even though they weren't 2 pages full and know nothing about music. Do the work, memorize the pieces and it will be a fun class. You're learning music that is really fun.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d5d2cd60fca157e5dff3" + } + }, + { + "text": "Very simple, if you are extremely lazy don?t take this class. The Prof. might give the class a lot work but the point is to learn. She is very educated and a very talented pianist who knows a lot about music. She makes the class very interesting with her knowledge. If you want to gain a better understanding of music take her but be prepared to wo", + "pos": 0.254, + "neu": 0.723, + "neg": 0.023, + "_id": { + "$oid": "6711d5d2cd60fca157e5dff4" + } + }, + { + "text": "This class is just nonsense, she assigns too much work that it becomes an extra class you have to think of, rather than just a course to fulfill a requirement. She gives a midterm with writing and memorization included. Plain and simple don't take her, or get ready for the workload.", + "pos": 0.096, + "neu": 0.856, + "neg": 0.048, + "_id": { + "$oid": "6711d5d2cd60fca157e5dff5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d3cd60fca157e5dff7" + }, + "professor_name": "Athanasios Haritos", + "rating": 3.7, + "department": "Architecture department", + "comments": [ + { + "text": "I can see that he's a good professor and definitely knows his stuff, but he shouldn't be teaching first year studio. His teaching style is far too hands off for first year where students need guidance in their projects. A bit too harsh as well. I understand harsh criticism but its a bit morale breaking at this stage. Avoid taking him for first year", + "pos": 0.083, + "neu": 0.733, + "neg": 0.184, + "_id": { + "$oid": "6711d5d3cd60fca157e5dff8" + } + }, + { + "text": "he glides!!! ull see what i mean if u take him. but hes a good and helpful professor", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5dff9" + } + }, + { + "text": "He is a great professor, it took a while for me to realize just how good he was. In the beginning he had long pauses and it was pretty funny but you get used to it haha. He can be mean but I have yet to find a situation where his advice wasn't great. Everything he says, mean or not, is relevant and extremely helpful, be prepared to work hard!!!!!!!", + "pos": 0.235, + "neu": 0.696, + "neg": 0.069, + "_id": { + "$oid": "6711d5d3cd60fca157e5dffa" + } + }, + { + "text": "Has favorites! Talks to them 10 times more than he does any of the other students in his class. When he talks he'll stop talking for a loooonnngg while and it was funny, than it became frustrating. MUST do TOP quality work. Everything, even study models must be as if they are final models unless you're his favorite, than anything you do is perfect.", + "pos": 0.197, + "neu": 0.737, + "neg": 0.066, + "_id": { + "$oid": "6711d5d3cd60fca157e5dffb" + } + }, + { + "text": "Excellent professor. Seems to have an appreciation for art...and cracked leather (this from my personal appraisal of him). Teaches architecture,not nonsense. Is inspiring,comes to class well prepared. Very professional, which is a bonus- kept his comments CLEAN and concise, which I really appreciated. Overlook the awkward moments of silence.", + "pos": 0.327, + "neu": 0.608, + "neg": 0.065, + "_id": { + "$oid": "6711d5d3cd60fca157e5dffc" + } + }, + { + "text": "He is very abstract, very harsh and hurtfull with words he says. He wants to see all the work you do, if you dont have work dont go to studio he will just put you down. Expect to be there during breaks and holidays. Work really hard", + "pos": 0.05, + "neu": 0.85, + "neg": 0.1, + "_id": { + "$oid": "6711d5d3cd60fca157e5dffd" + } + }, + { + "text": "The BEST 2nd yr Prof\r Helpful and a Great mentor. \r Is able to connect the abstract world into architecture application with out creating B/S mental marathon exercise that is wildly seen at the 2nd year level.\r \r If you truly want to learn architecture Take Prof. Haritos both Fall/Spr", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5dffe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d3cd60fca157e5e000" + }, + "professor_name": "Katrin Roos", + "rating": 4.8, + "department": "German department", + "comments": [ + { + "text": "Prof. Roos is a good teacher, and makes the class fairly interesting. Repetition ad nauseum is unavoidable at this point in learning a language, and the class interest-level suffers a bit from that. It could stand a moderate infusion of challenging German literature and less reliance on the textbook (which- as the reviewer below said- is awful).", + "pos": 0.11, + "neu": 0.796, + "neg": 0.093, + "_id": { + "$oid": "6711d5d3cd60fca157e5e001" + } + }, + { + "text": "Teacher is very motivated and patient. She assigns manageable workload, and makes sure all students get the material. Tests are easy-to-moderate, but is typically a stickler for spelling and grammar. Textbook is horrible, but you really do need to buy it. Roos is Swiss to so her opinion of \"proper German\" is subjective.", + "pos": 0.065, + "neu": 0.854, + "neg": 0.081, + "_id": { + "$oid": "6711d5d3cd60fca157e5e002" + } + }, + { + "text": "The best professor and my favorite since I first started college here at City College. If you're interested in learning German, or even not interested, you will enjoy this class at times but not always because it can seem a little repetitive. Even though that may be the case, Professor Roos is extremely accessible, helpful and a sweetheart!", + "pos": 0.26, + "neu": 0.689, + "neg": 0.051, + "_id": { + "$oid": "6711d5d3cd60fca157e5e003" + } + }, + { + "text": "Cool teacher, very helpfull", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5e004" + } + }, + { + "text": "One of my favorite teachers ever.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5e005" + } + }, + { + "text": "Prof. Roos is a really great, helpful, and engaged teacher. She's so sweet too! And during finals she sometimes gives out swiss chocolates!", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5e006" + } + }, + { + "text": "Simply the best. Have no fear! They don't make professors like her anymore.", + "pos": 0.37, + "neu": 0.52, + "neg": 0.11, + "_id": { + "$oid": "6711d5d3cd60fca157e5e007" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d3cd60fca157e5e009" + }, + "professor_name": "Tzachi Slonim", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Not an easy class but he gives you every opportunity to do well. You HAVE to do your part. Gives more x-crdt than any prof and drops lowest exam. Quiz qs and exam essays come straight from text and lec examples. Mult choice on exams are tricky but all the other opportunities he gives to make up for it WILL help. NOT an easy A but it was possible.", + "pos": 0.182, + "neu": 0.7, + "neg": 0.118, + "_id": { + "$oid": "6711d5d3cd60fca157e5e00a" + } + }, + { + "text": "Great prof! took him during summer was a simple a. mid term and final thats it! Very helpful and kind. would recommend!", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5e00b" + } + }, + { + "text": "He is totally laid back and relaxed. Great guy and very understanding, just do your work and you will be fine.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5e00c" + } + }, + { + "text": "The Comment below posted on 07/03/2010 is actually for PSY 215 not 253, my mistake!", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d5d3cd60fca157e5e00d" + } + }, + { + "text": "Tazachi made coming to class a pleasure. His class is not too hard and he repeats things like a million times if you don't get something. He really knows how to teach, everything is well explained and he is very interactive with students. He?s very professional, never late or just absent with no prior notice.", + "pos": 0.155, + "neu": 0.809, + "neg": 0.036, + "_id": { + "$oid": "6711d5d3cd60fca157e5e00e" + } + }, + { + "text": "he is not that very good professor. everything is on webassign. you have to do most of the work on your own. he lets you come with notes but it doesn't help if you don't understand. he answers question but if you need to understand the material i think lynch is better", + "pos": 0.067, + "neu": 0.851, + "neg": 0.082, + "_id": { + "$oid": "6711d5d3cd60fca157e5e00f" + } + }, + { + "text": "Very fun, makes the class interesting, cares about his students, has a bit of sarcasm towards students but not disresepctful... If you want to take statistics and pass it learning sumthing, take him", + "pos": 0.205, + "neu": 0.756, + "neg": 0.039, + "_id": { + "$oid": "6711d5d3cd60fca157e5e010" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d4cd60fca157e5e012" + }, + "professor_name": "Felix Garcia", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "He is a great professor, work to make the best of the student, if the student makes the readings and attend to classes. Very knowledgeable and easy to follow.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e013" + } + }, + { + "text": "He is an excellent professor. The attendance is mandatory, the readings are a most, but he able to work with you, all the time to ensure that you learn the material. Sta. 315 is really confusing at the beginning but with time and effort, and his help, is not so hard, you will even learn to love Sta. Sort of like a challenging game.", + "pos": 0.284, + "neu": 0.681, + "neg": 0.035, + "_id": { + "$oid": "6711d5d4cd60fca157e5e014" + } + }, + { + "text": "What can I say about Felix... He's great! He demonstrate that he cares about his students, very helpful, and considerate as he himself is a student. I will admit that class sometimes tend to drag, but that because the material is so dull. He often makes jokes in class and tries to make a boring class interesting. Overall probably the best stat prof", + "pos": 0.258, + "neu": 0.631, + "neg": 0.111, + "_id": { + "$oid": "6711d5d4cd60fca157e5e015" + } + }, + { + "text": "dont take the online course with him.. u would really want him to teach u in person", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e016" + } + }, + { + "text": "He really try to help all students, don't call out answer, but is able to work with you undrstand the material. Very supportive, althoght he don't give extra credit or accepts late homework.", + "pos": 0.205, + "neu": 0.726, + "neg": 0.069, + "_id": { + "$oid": "6711d5d4cd60fca157e5e017" + } + }, + { + "text": "Nice smart n hot", + "pos": 0.733, + "neu": 0.267, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e018" + } + }, + { + "text": "Really good professor.", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e019" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d4cd60fca157e5e01b" + }, + "professor_name": "Dylan Heaney", + "rating": 4.8, + "department": "Music department", + "comments": [ + { + "text": "Its safe to assume that Prof H would rather do something else instead of teaching. However, he never gives that impression. Prof H was always on time, well dressed, energetic, engaged and most of all, always respectful (even with lame students). He is very professional which cant be said about a lot of CCNY profs (adjuncts or full-time).", + "pos": 0.197, + "neu": 0.738, + "neg": 0.065, + "_id": { + "$oid": "6711d5d4cd60fca157e5e01c" + } + }, + { + "text": "Intro to Jazz. Very interesting class. He is a great professor, takes the time to really make sure people understand the concepts of the class. Quizzes and exams are pretty simple if you read and listen to the examples he provides.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e01d" + } + }, + { + "text": "Prof Heaney is a great professor! Explains concepts well and goes over it until the last student gets it. Grades leniently and helps students outside of class. 3 Tests + Final + 5 Writing Assignments. Pretty easy A. Interesting teacher but the material itself can be a snore at times. TAKE HIM!", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e01e" + } + }, + { + "text": "Very nice guy. Gives simple quizzes with music samples. Most of the music he plays in class will appear somewhere on a test or quiz, so be sure to pay attention to the composer, genre, etc. The concert review assignments are a bit tedious, but nothing a college student can't handle. As long as you write well and listen to lectures, you'll be fine.", + "pos": 0.147, + "neu": 0.836, + "neg": 0.017, + "_id": { + "$oid": "6711d5d4cd60fca157e5e01f" + } + }, + { + "text": "Dang this bro can toot da brass! And he's a great teacher. Very patient and understanding and not hard on the eyes! He helped me learn \"What a Wonderful World\" by Kenny G.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e020" + } + }, + { + "text": "He's a very good professor. Posts study guides before quizzes and exams! If you go over them, you'll get an A. He's also very helpful over the email. Replies promptly and always has good suggestions.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e021" + } + }, + { + "text": "Prof Heaney is a great professor! So happy I took this class because I was not about to since he had no rating online. 5 quizzes (lowest gets dropped, easy) 5 writing assignments (easy) and a midterm & final (which are pretty hard) but overall, TAKE HIM! HE IS GREAT! and always available when he is needed! :)", + "pos": 0.304, + "neu": 0.635, + "neg": 0.061, + "_id": { + "$oid": "6711d5d4cd60fca157e5e022" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d4cd60fca157e5e024" + }, + "professor_name": "Brenda Malcolm", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "Brenda teaches at an amazing pace. The class is difficult in general but she really does simplify the material. She does not care about your grade and when you don't understand something she seems to think it's funny! she is very shy and timid, you have to be prepared to go hard because stats is no joke and Brenda doen't care if you pass or fail", + "pos": 0.099, + "neu": 0.632, + "neg": 0.269, + "_id": { + "$oid": "6711d5d4cd60fca157e5e025" + } + }, + { + "text": "she seems sweet and nice but she actually doesnt care about ur grade", + "pos": 0.225, + "neu": 0.577, + "neg": 0.198, + "_id": { + "$oid": "6711d5d4cd60fca157e5e026" + } + }, + { + "text": "Prof. Malcolm is extremely helpful she gives amazing feedback during class and really knows how to simplify the material. all the material in class and homework she gives out work hand in hand to help you get a good grade in her class.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e027" + } + }, + { + "text": "Prof. Malcolm has been amazing. I never thought a psych stats class could be this comfortable. She teaches at a pace everyone can learn at and gives students individual help when they need it during class. She also provides many resources to take advantage of. I would definitely take her again.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e028" + } + }, + { + "text": "TAKE HER!!!! She is very knowledgeable and understanding. She gives plenty of opportunity for her students to pass. As long as you up in the effort, you will get an A. One of the best Stats professors at CCNY. Please take her!!!", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e029" + } + }, + { + "text": "The best City College or even CUNY as a whole has to offer. This will be my second degree and I was totally out of practice and out of my comfort zone with the implementation of Blackboard. She was unbelievably helpful, even to a bloke like myself. There were times I wanted to quit and she encouraged me to stay and helped me through. #Bestever", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d5d4cd60fca157e5e02a" + } + }, + { + "text": "Really really likes her. She does the best she can consedering the vast of information she needs to teach. Stats is a little tough but she taught so well that it made it easier for us. Very organized and respectful. She is really sweet, i learned alot with her.", + "pos": 0.327, + "neu": 0.656, + "neg": 0.017, + "_id": { + "$oid": "6711d5d4cd60fca157e5e02b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d5cd60fca157e5e02d" + }, + "professor_name": "Asim Shahid", + "rating": 4.7, + "department": "Biology department", + "comments": [ + { + "text": "A nice professor. I found it difficult to read his hand-writing and his slurring speech.", + "pos": 0.153, + "neu": 0.71, + "neg": 0.137, + "_id": { + "$oid": "6711d5d5cd60fca157e5e02e" + } + }, + { + "text": "Really easy", + "pos": 0.762, + "neu": 0.238, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e02f" + } + }, + { + "text": "You should just show up to class, participate and complete what is needed - syllabi for lecture and lab are not the very best, but Asim makes sure to make the key points and benchmarks clear. Great TA. Willing to go out their way to help whether its bio 207 or anything at that, I do recommend. (Bonus: if you love wrestling, take it)", + "pos": 0.335, + "neu": 0.639, + "neg": 0.026, + "_id": { + "$oid": "6711d5d5cd60fca157e5e030" + } + }, + { + "text": "Review below is far from true. He had the shortest quizzes of all the TAs teaching 207, and explained everything he wanted well before things were due. Also had the easiest lab practical.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e031" + } + }, + { + "text": "He is an amazing instructor and I felt so lucky to be in his class this semester. He wants to make sure everyone understands the material and is available outside and after class to go over any questions. There is a lot of material to cover in 207 and he makes it as simple as possible! Would take him again in a heartbeat!!!", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e032" + } + }, + { + "text": "A great instructor for a difficult course. He was able to explain and help us understand complex details. Definitely one of a kind. Just make sure to study your labs before class and prepare well for workshops. That will help him to better help you to understand the material.", + "pos": 0.382, + "neu": 0.581, + "neg": 0.037, + "_id": { + "$oid": "6711d5d5cd60fca157e5e033" + } + }, + { + "text": "super funny, and a pleasure to look at. makes the class enjoyable. deff recommend for lab.", + "pos": 0.591, + "neu": 0.409, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e034" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d5cd60fca157e5e036" + }, + "professor_name": "Chelsea Reichert", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "She's one of the most caring and genuine professors. Lectures are interesting and fun. She genuinely wants you to understand the material. I enjoyed this class to the point of pursuing a career in the neuropsychology field. While it may seem like a lot of work at times, if you're on top of it, you should be fine.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e037" + } + }, + { + "text": "This class was one of my favorite classes at City College, as well as one of my favorite professors! The grading is very clear (4 exams, in-class quizzes, and a final paper) and the lectures are very interesting and enjoyable. She does her best to make sure everyone understands the material. Workload is fair as long as you study.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e038" + } + }, + { + "text": "Recommend to those who interested in neuro, grad/med school. The workload is heavier than other psych classes, but if you put in the effort you will ace. Very responsible prof. 4 exams (First 2 are in-class that she gives extra credits and curve, last 2 are online take home), 1 critique paper, every lecture has post/quiz. Do SONA for extra credits.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e039" + } + }, + { + "text": "I had my doubts before, but she turned out to be a great professor! She gives weekly quizzes which are easy and short. Her exams were average in difficulty, you either know the answers or you don't. There is only one paper which was also relatively easy to manage. You don't have to pay attention to textbook details, just skim through the topics.", + "pos": 0.196, + "neu": 0.742, + "neg": 0.061, + "_id": { + "$oid": "6711d5d5cd60fca157e5e03a" + } + }, + { + "text": "Chelsea is such an amazing professor. I took her course with a language barrier (English is not my first language) but since expectations are clear and straight forward you will know what and how to do things and manage to get an A like me. Her midterms are long and very through but definitely doable. TAKE HER YOU WILL REGRET NOT DOING SO!!!", + "pos": 0.207, + "neu": 0.715, + "neg": 0.077, + "_id": { + "$oid": "6711d5d5cd60fca157e5e03b" + } + }, + { + "text": "She's great! always in such a good mood and explains clearly and throughly. Lectures are straight forward and everything on exams are what was taught in class. I'd really recommend her. Also gives extra credit.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d5d5cd60fca157e5e03c" + } + }, + { + "text": "Prof. Reichert is a nice person but tough grader. knows her material but wont be able to answer in depth questions. She also expects you to read the the text book for every class you will get a quiz everyday to make sure you are reading. She gives 14 quizzes, 4 exams (exams are tough not easy at all), one article critic paper.", + "pos": 0.068, + "neu": 0.802, + "neg": 0.13, + "_id": { + "$oid": "6711d5d5cd60fca157e5e03d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d6cd60fca157e5e03f" + }, + "professor_name": "Elizabeth Weinfield", + "rating": 3.9, + "department": "Music department", + "comments": [ + { + "text": "I have my issues with Professor Weinfield, but she taught me to adore and appreciate more (that is, from my youth): Early music, in addition to other types of music, as evidenced from a project I did for her class, irrespective of my anxiety.", + "pos": 0.164, + "neu": 0.796, + "neg": 0.04, + "_id": { + "$oid": "6711d5d6cd60fca157e5e040" + } + }, + { + "text": "This woman has more passion and energy than any professor I've ever had. On the easy side for an intro class, but she was interesting so that didn't matter. And hot, too.", + "pos": 0.247, + "neu": 0.714, + "neg": 0.04, + "_id": { + "$oid": "6711d5d6cd60fca157e5e041" + } + }, + { + "text": "She's really nice and passionate. You can get b's on the exams if you just pay attention in class, if you want a's i found it necessary to do a little textbook reading. she gives review sheets anyways. I really enjoyed her class", + "pos": 0.228, + "neu": 0.744, + "neg": 0.027, + "_id": { + "$oid": "6711d5d6cd60fca157e5e042" + } + }, + { + "text": "This professor saved me. I should have failed her class, but she is extremely nice. The only letdown is that she will write key words, but will not write the definitions down. She is helpful and will understand if you can come up with a good excuse and back yourself up. Sounds like a high class rich woman. Just do the readings and you'll be fine.", + "pos": 0.3, + "neu": 0.674, + "neg": 0.025, + "_id": { + "$oid": "6711d5d6cd60fca157e5e043" + } + }, + { + "text": "dont email, she will never answer! treats class like kids", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e044" + } + }, + { + "text": "She is a very easy professor and she's really nice!", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e045" + } + }, + { + "text": "inspiring..... taught me so much", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e046" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d6cd60fca157e5e048" + }, + "professor_name": "Julia Brown", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "Asynchronous class. Professor Julia Brown is amazing! The syllabus is clear and provides clear outlook of the class. Make sure to keep track of dates since the class is asynchronous. Great at giving feedback + peer-reviewing to assist your writing. Reaches back quickly after asking a question.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e049" + } + }, + { + "text": "The class was asynchronous, however Professor Julia was very communicative and fast in responding back and providing good feedback. A fair grader and very understanding.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e04a" + } + }, + { + "text": "she is a good professor and understanding", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e04b" + } + }, + { + "text": "Professor Brown is probably the best professor at City. She is so kind and helpful. Her feedback is amazing and if you need help, she reaches back to you in no time. She doesn't like late work but you just have to ask if you need an extension. Super sweet and caring and you learn a lot from her class as well. I would love to take her class again.", + "pos": 0.366, + "neu": 0.601, + "neg": 0.033, + "_id": { + "$oid": "6711d5d6cd60fca157e5e04c" + } + }, + { + "text": "Prof. Brown is the nicest English professor. Just follow the instructions and the work will be easy to complete. She is very accessible. This a course that will teach you real-life writing styles that will be useful throughout your career. Only 3 quizzes that are extremely easy. 3 major assignments (lab report, technical description, proposal).", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e04d" + } + }, + { + "text": "She is probably the nicest English professor here at CCNY. Responds to her email quick even on a saturday or sunday. She does give a lot of work but most of them are light. We had about three individual projects and one group project. We barely had any tests but there were about 3/4 quizzes throughout the semester. Highly recommended", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e04e" + } + }, + { + "text": "I took this professor for the semester I thought that shes cool and polite. Turns out that she has the audacity to assign students a lot of homework shes more polite to them but not me because she doesnt like me I dont know what I do Im always participating in class doing my homework on time I was an A.", + "pos": 0.026, + "neu": 0.932, + "neg": 0.042, + "_id": { + "$oid": "6711d5d6cd60fca157e5e04f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d6cd60fca157e5e051" + }, + "professor_name": "Sherry Goldman", + "rating": 3.4, + "department": "Communication department", + "comments": [ + { + "text": "She is extremely knowledgeable and a genuine teacher. She is willing to help out students with any issues and is open to feedback. She is a tough grader and extremely strict with grammar but other than that she is a great person/excellent teacher.", + "pos": 0.154, + "neu": 0.821, + "neg": 0.026, + "_id": { + "$oid": "6711d5d6cd60fca157e5e052" + } + }, + { + "text": "If you come to class, do the 4 or 5 assignments, and pass the midterm/final you will be fine. She gives extra credit on the exams and the grading rubrics on her assignments are thorough. grammar matters! It will effect your grade. Overall the class could have been a huge bore with a professor that isn't as engaged and passionate as Prof. Goldman.", + "pos": 0.16, + "neu": 0.78, + "neg": 0.059, + "_id": { + "$oid": "6711d5d6cd60fca157e5e053" + } + }, + { + "text": "I must say PROFESSOR GOLDMAN IS THAT GIRL. She is killing the game in the Public Relation World. I must say she can be a tough grader but one thing I could say she want her students to be better but too be great. Please take advantage on the rewrites on your assignments, trust me that will leave a positive impact on your final grade.", + "pos": 0.299, + "neu": 0.64, + "neg": 0.061, + "_id": { + "$oid": "6711d5d6cd60fca157e5e054" + } + }, + { + "text": "Professor Goldman is nice but makes this course a little difficult. This class is lecture heavy and requires you to pay attention to the small things she discusses. She is a tough grader as she notices every grammatical mistake. This is an intro to PR class, therefore, being this harsh only discourages us. I won't take this professor again.", + "pos": 0.027, + "neu": 0.727, + "neg": 0.247, + "_id": { + "$oid": "6711d5d6cd60fca157e5e055" + } + }, + { + "text": "I wouldn't take this class if you're going to Public Relations writing. Yes this class will be helpful because it's going to offer you the tools to help you succeed in the PR world, but at the same time it's going to be a lot work to do. Professor Goldman is a tough grader, so I would think twice before selecting a PR writing class.", + "pos": 0.111, + "neu": 0.864, + "neg": 0.025, + "_id": { + "$oid": "6711d5d6cd60fca157e5e056" + } + }, + { + "text": "Professor Goldmans class are mostly made up of her powerpoint slides and lectures. It is not a class you can do the bare minimum for, homework and projects will take time and effort to complete. She aims to strengthen our PR writing skills, allows you to do a re write on every assignment which is great and gives really detailed feedback.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d5d6cd60fca157e5e057" + } + }, + { + "text": "Professor Goldman was amazing. I took her online class snd it was great so Im not sure how it would be in person with the heavy lectures for about 3 hours. She is a very professional person and a caring Professor that helps you do your best. We had a midterm, multiple papers, a group project and an optional final.", + "pos": 0.241, + "neu": 0.728, + "neg": 0.03, + "_id": { + "$oid": "6711d5d6cd60fca157e5e058" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d7cd60fca157e5e05a" + }, + "professor_name": "Nicholas Otte", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I took him in Baruch but he is a very fair grader , kind professor , most classes were asynchronous . Only downside is that he grades work very late. But overall 10/10.", + "pos": 0.197, + "neu": 0.741, + "neg": 0.062, + "_id": { + "$oid": "6711d5d7cd60fca157e5e05b" + } + }, + { + "text": "Do you know that one professor that you see in movies just doesn't care about teacher norms and English structure norms? If you want to do well in his class, participate when you can and show up to class. You don't have to show up every day. He does these sessions where you can talk about your upcoming assignments and those are very helpful too!", + "pos": 0.096, + "neu": 0.866, + "neg": 0.037, + "_id": { + "$oid": "6711d5d7cd60fca157e5e05c" + } + }, + { + "text": "Great Professor. Very chilling person and understand the students well. He'll help you to bring your own creative style to writing.", + "pos": 0.404, + "neu": 0.548, + "neg": 0.048, + "_id": { + "$oid": "6711d5d7cd60fca157e5e05d" + } + }, + { + "text": "Def take his class if you can he just gives readings but nothing hard they are all light. No exams or finals just do your writing assignments he gives which are not hard. The work for this class is not a lot. He is really nice and a Great Professor ! He's young too", + "pos": 0.2, + "neu": 0.757, + "neg": 0.043, + "_id": { + "$oid": "6711d5d7cd60fca157e5e05e" + } + }, + { + "text": "Great professor, very caring, gives great feedback. Shows that he is very investing in the students by analyzing the progress of everyone throughout the whole semester and trying to help in any way he can. Wish more professors were like him. Online class didnt require zoom. Just put an effort in the assignments and youll do great.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e05f" + } + }, + { + "text": "He is a really really nice professor. As long as you do the work he asked, he sees your effort and will give you a good grade when you show him.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e060" + } + }, + { + "text": "Otte is super nice and participation makes an impact on how he sees you and your grade, but he is super respectful of students who don't raise their hand too. Gives great essay feedback at one-on-one meetings. I found this class easy because I love reading and writing - speaking of writing, you'll have to write 4-5 papers - but it's english class.", + "pos": 0.332, + "neu": 0.629, + "neg": 0.039, + "_id": { + "$oid": "6711d5d7cd60fca157e5e061" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d7cd60fca157e5e063" + }, + "professor_name": "Diana Naccarato", + "rating": 3.1, + "department": "Art department", + "comments": [ + { + "text": "-", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e064" + } + }, + { + "text": "Do yourself a favor and don't take her", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e065" + } + }, + { + "text": "Diana's feedback through each assignment was very helpful.If you are stuck, she is always looking around the classroom to see how you are doing and if you need any help. This is one class per week, so attendance is a must! Always communicate with her if you need something because she is eager to help with the direction and process of your projects.", + "pos": 0.118, + "neu": 0.853, + "neg": 0.029, + "_id": { + "$oid": "6711d5d7cd60fca157e5e066" + } + }, + { + "text": "she's a good person but not a good professor at all. I don't recommend taking her because she barely provides any examples and explanation for the projects you will have to figure out things on your own. she takes points off for no reason it's an intro art class she should be grading students based on their effort. she's strict with attendance", + "pos": 0.028, + "neu": 0.846, + "neg": 0.125, + "_id": { + "$oid": "6711d5d7cd60fca157e5e067" + } + }, + { + "text": "if she sees you not doing your best she'll try to work with you as best she can. She was helpful and gave great feedback when asked. If you want to learn 2-D and improve def take her. Only thing I didn't like was she wasn't fond of you working while on the phone whether it was for listening to music or vids. She deducts participation points for it.", + "pos": 0.182, + "neu": 0.725, + "neg": 0.094, + "_id": { + "$oid": "6711d5d7cd60fca157e5e068" + } + }, + { + "text": "Professor Naccarato is the best 2D design art professor of CCNY! She's an amazing lecturer and teaches art like a pro! I always asked for help when needed and she gives me steps to learn one by one of an art lesson given through art exercises and projects. Please take her, you'll won't regret it!!!!", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e069" + } + }, + { + "text": "She is a very flexible professor who would understand your all issues and help with her best way. Her class works werent stressful at all but all the works were really fun and enjoyable. Please take her class", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e06a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d7cd60fca157e5e06c" + }, + "professor_name": "India Choquette Choquette", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She was very charming and super sweet. This class is super easy and the workload is not a lot. Yes there is a lot of reading but you honestly do not have to do it.", + "pos": 0.344, + "neu": 0.62, + "neg": 0.036, + "_id": { + "$oid": "6711d5d7cd60fca157e5e06d" + } + }, + { + "text": "Idk why her name is India Choquette Choquette but if she's the teacher thats always excited and always laughing then she's the one. She's super caring and honestly nothing like how you expect a college teacher to be. Super lenient but gives a fair amount to do. Gives really good feedback and cares about her students. Definitely recommend her class.", + "pos": 0.486, + "neu": 0.474, + "neg": 0.04, + "_id": { + "$oid": "6711d5d7cd60fca157e5e06e" + } + }, + { + "text": "A great professor and an easeful transition from a high school senior to a college freshmen semester. However, don't take her for granted because classes do get harder and while I LOVE that she was an easy course. She could have been more stern about common english writing mistakes since upcoming teachers could penalize us for what she let slide.", + "pos": 0.225, + "neu": 0.74, + "neg": 0.034, + "_id": { + "$oid": "6711d5d7cd60fca157e5e06f" + } + }, + { + "text": "She is honestly a great professor and a caring one at that. I 100% recommend you take her if you have the chance to do so. This was a lucrative course thanks to her teaching and she is also super duper nice. She made the grading criteria crystal clear and gave excellent feedback.", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e070" + } + }, + { + "text": "Great professor for Writing for Engineering for the winter semester. Clear grading instructions (graded by grading contract), accessible outside of class & responds to emails quickly, very kind and considerate. Four main projects + readings + group work (she explains clearly her expectations clearly). Come to class timely and do the work & ur fine.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e071" + } + }, + { + "text": "I had professor Choquette my freshmen year and she's amazing!! She encouraged me to engage with different materials and its English so there will be writing to do but the criteria is clear. If confused or unclear, email professor Choquette she breaks it down and she is quick. She is so sweet and wants to see her students succeed. I recommend 110%!!", + "pos": 0.285, + "neu": 0.649, + "neg": 0.067, + "_id": { + "$oid": "6711d5d7cd60fca157e5e072" + } + }, + { + "text": "This teacher was amazing. She helped with anything you needed. She was very understanding and caring.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d5d7cd60fca157e5e073" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d8cd60fca157e5e075" + }, + "professor_name": "Arnaldo Melendez", + "rating": 2.4, + "department": "Advisor department", + "comments": [ + { + "text": "he's awful! seriously the worst advisor I've ever had. He doesn't care about your concerns. He treats you like your beneath him until he sees your grades and she how great of a student you are. Give him food and he's your best friend.", + "pos": 0.232, + "neu": 0.583, + "neg": 0.185, + "_id": { + "$oid": "6711d5d8cd60fca157e5e076" + } + }, + { + "text": "He has a messed up attitude, and is very condescending. At first he did not want to help me, let alone listen to me. However, after he got to know me and saw I was an \"A\" student, he became extremely nice and helpful. Even though I go to him sometimes for advice, I'll never forget how he initially treated me.", + "pos": 0.112, + "neu": 0.775, + "neg": 0.113, + "_id": { + "$oid": "6711d5d8cd60fca157e5e077" + } + }, + { + "text": "He is not a very helpful and responsible advider. He has no patience for you and doesn't truely concern about what your needs. If you really need good advices, you should try to talk to somebody else besides him", + "pos": 0.126, + "neu": 0.769, + "neg": 0.104, + "_id": { + "$oid": "6711d5d8cd60fca157e5e078" + } + }, + { + "text": "Melendez is super helpful and knowledgable, not to mention charming. Treat him with respect and he can be an invaluable resource.", + "pos": 0.396, + "neu": 0.507, + "neg": 0.097, + "_id": { + "$oid": "6711d5d8cd60fca157e5e079" + } + }, + { + "text": "He thinks he is a professor. I don't find him helpful at all. I don't think he should be there as an advisor. Always negative.", + "pos": 0.0, + "neu": 0.792, + "neg": 0.208, + "_id": { + "$oid": "6711d5d8cd60fca157e5e07a" + } + }, + { + "text": "Melendez is a good advisor. He listens to your concerns and helps you choose your courses for the next semester. I always go to him when I have questions and he always helps me. Go to him if you are in the Arch. Dept.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d5d8cd60fca157e5e07b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d8cd60fca157e5e07d" + }, + "professor_name": "Ernesto Mestre-Reed", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "Amazing teacher, very insightful in his critique. Wonderful person too.", + "pos": 0.484, + "neu": 0.516, + "neg": 0.0, + "_id": { + "$oid": "6711d5d8cd60fca157e5e07e" + } + }, + { + "text": "He's pretty cool. Class is usually fun. Conferences are very helpful. In class you might be kept late often.", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d5d8cd60fca157e5e07f" + } + }, + { + "text": "Only workshop professor I ever had who only wants you to agree with him. If he doesn't feel the way you do about a story he'll throw out your comments. And he lets people criticize style all the time; he only diffuses it if HE likes the story. If you don't see eye to eye with him be prepared to get discredited in front of your peers.", + "pos": 0.096, + "neu": 0.83, + "neg": 0.074, + "_id": { + "$oid": "6711d5d8cd60fca157e5e080" + } + }, + { + "text": "Totally useless.", + "pos": 0.0, + "neu": 0.244, + "neg": 0.756, + "_id": { + "$oid": "6711d5d8cd60fca157e5e081" + } + }, + { + "text": "Professor Mestre keeps the class focused on constructive criticism--he doesn't allow people to comment on your style or to ramble. His workshops are highly structured & he schedules one-on-one feedback. His critiques of your work are extremely helpul and positive. If you have had bad workshops in the past, this will change your mind!", + "pos": 0.109, + "neu": 0.807, + "neg": 0.083, + "_id": { + "$oid": "6711d5d8cd60fca157e5e082" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5d8cd60fca157e5e083" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d8cd60fca157e5e085" + }, + "professor_name": "Johanna Delgado", + "rating": 4.1, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "She is helpful, a good professor but sometimes sticks a lot with the textbook. But overall good and nice teacher", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d5d8cd60fca157e5e086" + } + }, + { + "text": "While niceish and well meaning, she sticks nearly entirely to the textbook with little deviation. Further irritations include the emphasis on the useless 'cultural' sections of the text, and worse, that she insists on speaking spanish at a conversant level for nearly the entire class. A stupid policy (by ccny) carried out much too strictly.", + "pos": 0.033, + "neu": 0.786, + "neg": 0.181, + "_id": { + "$oid": "6711d5d8cd60fca157e5e087" + } + }, + { + "text": "One of the best Spanish Professors I ever had. She is such a sweetheart and tries everything she can do to help you. She also walks around during class to give each student individual attention. Take her.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d5d8cd60fca157e5e088" + } + }, + { + "text": "She is very sweet and nice, also very helpful. She is not the best at explaining grammar, but if you just read through the grammar explanations in the book yourself you will do fine.", + "pos": 0.213, + "neu": 0.732, + "neg": 0.055, + "_id": { + "$oid": "6711d5d8cd60fca157e5e089" + } + }, + { + "text": "She's a great professor! Very down-to-Earth, patient, and willing to help her students. She ensures that you learn the material for the class!", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d5d8cd60fca157e5e08a" + } + }, + { + "text": "She is such a sweet woman, and is so caring and cute.", + "pos": 0.536, + "neu": 0.464, + "neg": 0.0, + "_id": { + "$oid": "6711d5d8cd60fca157e5e08b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d9cd60fca157e5e08d" + }, + "professor_name": "Moise Koffi", + "rating": 3.4, + "department": "Engineering department", + "comments": [ + { + "text": "Learned nothing because of the super easy homework he gave. I feel like a D grade student but got an A anyway. Good for people who are taking thermo as an elective.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e08e" + } + }, + { + "text": "Take him for a GPA boost but little will be gained in terms of knowledge. Take him and sit with another professor to get the bost of both worlds!! Easy A.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e08f" + } + }, + { + "text": "People say that his accent is thick, that is straight up bs, I always understood everything he said. \r This man is a great professor ,He goes out of his way to make the class as fluid and easy as possible\r ( Thermodynamics is by no means easy). He has open book tests and even lets you replace your worst test grade with one from an optional report.", + "pos": 0.113, + "neu": 0.776, + "neg": 0.111, + "_id": { + "$oid": "6711d5d9cd60fca157e5e090" + } + }, + { + "text": "Great guy, very fair grader. Has a thick accent and gets confused with American English but is still an easy A.", + "pos": 0.305, + "neu": 0.633, + "neg": 0.061, + "_id": { + "$oid": "6711d5d9cd60fca157e5e091" + } + }, + { + "text": "He isn't a very good professor. He's very bad at trying to convey ideas from the book, things like vectors and bridge engineering. Just don't take him, or hope you don't.", + "pos": 0.139, + "neu": 0.696, + "neg": 0.165, + "_id": { + "$oid": "6711d5d9cd60fca157e5e092" + } + }, + { + "text": "By no means is his Thermodynamics class easy, but he grades on a curve and he gives you an extra credit assignment. That's the only reason I recommend him.", + "pos": 0.244, + "neu": 0.71, + "neg": 0.045, + "_id": { + "$oid": "6711d5d9cd60fca157e5e093" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d9cd60fca157e5e095" + }, + "professor_name": "Corinne Salada", + "rating": 4.3, + "department": "Music department", + "comments": [ + { + "text": "Really nice and helpful. Willing to work with you if you miss a due date. Explains concepts clearly. Gives 2 tests, a midterm, a final. There are also almost weekly quizzes, so be sure to do the readings/listening activities and take good notes.", + "pos": 0.271, + "neu": 0.699, + "neg": 0.03, + "_id": { + "$oid": "6711d5d9cd60fca157e5e096" + } + }, + { + "text": "This class consists of 4 tests, as well as 2 concert reports. Attendance is taken right when class starts, so get there on time. If you miss the deadline for one of the reports she will give you an extension, as well as suggest a concert to go to. The material isn't that difficult, but there is a lot of it, so study hard and you can get an A.", + "pos": 0.064, + "neu": 0.891, + "neg": 0.045, + "_id": { + "$oid": "6711d5d9cd60fca157e5e097" + } + }, + { + "text": "The music class was amazing. Gets to relax and learn about music at the same time. If you took art history or world history this class should be an easy A. Textbook is on reserve loan on the library. 20 page reading before each lecture will aid you in passing the 3 question quiz. Gives extra credit and study guides.. 2 straightforward tests.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e098" + } + }, + { + "text": "She is a genuinely nice person however loves to take attendance as soon as class begins. She gives you the chance to get extra credit and the songs weren't that bad. Just study her review sheets and understand the songs and you'll be alright. Good luck", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e099" + } + }, + { + "text": "Professor Salada is one of the nicest professors. She takes her class seriously though but tries her best to make it interesting and as clear as possible. Her tests are easy if you study the review sheet.", + "pos": 0.366, + "neu": 0.607, + "neg": 0.026, + "_id": { + "$oid": "6711d5d9cd60fca157e5e09a" + } + }, + { + "text": "Won't said she is a bad professor, since she is just new in ccny. As an engineering student,music is boring but she tries her best to teach, which i appreciated. her paper grade harder since she is a more liberal art person. Her test is easy that the test is based on review sheet to you to study; besides of the mid-term that it's just ridiculous", + "pos": 0.174, + "neu": 0.738, + "neg": 0.088, + "_id": { + "$oid": "6711d5d9cd60fca157e5e09b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5d9cd60fca157e5e09d" + }, + "professor_name": "Juergen Dedring", + "rating": 3.3, + "department": "International Studies department", + "comments": [ + { + "text": "Dr. Dedring has been proffesional, on time and fair.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e09e" + } + }, + { + "text": "Dr. Dedring has been great.", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e09f" + } + }, + { + "text": "A very nice guy who seems to know the material, but is unable or unwilling to teach. Requires very long presentations (ideally 1 to hours long) in which students READ downloaded texts and journals. Any attempt to indeed understand and present the material is discoouraged. This is not scholarship. Why is he teaching required courses for IR?", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e0a0" + } + }, + { + "text": "Dedring is very knowledgeable in his subject area but you rarely get to benefit from his knowledge since the entire class is structured around student presentations. A lazy professor and a boring class.", + "pos": 0.0, + "neu": 0.761, + "neg": 0.239, + "_id": { + "$oid": "6711d5d9cd60fca157e5e0a1" + } + }, + { + "text": "He defines laid back! I hear he's about to retire soon though. He's very knowledgeable about the UN, but doesn't lecture much. His classes are usually presentations by students. Very nice person, but if you're looking for a challenging class, I wouldn't take him.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d5d9cd60fca157e5e0a2" + } + }, + { + "text": "Dedring is extremely dull and you don't exactly know what he wants from you. But you don't need to go to class very often and he is super laid back. Good prof to take if you are looking for an easy semester.", + "pos": 0.246, + "neu": 0.716, + "neg": 0.038, + "_id": { + "$oid": "6711d5d9cd60fca157e5e0a3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dacd60fca157e5e0a5" + }, + "professor_name": "Sacha De Carlo", + "rating": 4.4, + "department": "Chemistry department", + "comments": [ + { + "text": "Great Professor. 4 Exams including the final. The questions involves a lot of critical thinking although he does use some questions from the end of the chapter. You should always check out your exams because you can redeem some of your points if he sees you have logic to your answer. Hard class but not impossible.", + "pos": 0.044, + "neu": 0.908, + "neg": 0.049, + "_id": { + "$oid": "6711d5dacd60fca157e5e0a6" + } + }, + { + "text": "Great teacher although not the easiest. He tends to ask questions that test your understanding of the material and not the fine details. He's always available for help. He's extremely organized and has all the material logged on blackboard ahead of time. Highly recommended.", + "pos": 0.172, + "neu": 0.753, + "neg": 0.076, + "_id": { + "$oid": "6711d5dacd60fca157e5e0a7" + } + }, + { + "text": "We need more like him, he really cares about student learning the material. He wants you to think, so the test questions are not easy, but overall the grades are fair. He uses many textbooks, wish he'd choose one and stick to it. Always post lectures online ahead of time, he is well organized, available and helpful.", + "pos": 0.246, + "neu": 0.729, + "neg": 0.025, + "_id": { + "$oid": "6711d5dacd60fca157e5e0a8" + } + }, + { + "text": "I had biochemistry with him. He is a really nice professor, really cared about his students. I believe that my class would have done better on the exams if he didn't continuously change the format on every exam. He was experimenting with my class to find a optimal testing method. But overall, I would recommend him.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d5dacd60fca157e5e0a9" + } + }, + { + "text": "I totally agree with the above person he is very good at integration I took this class with ghose I felt it was all calclus and I got a D, but with this guy the course match the name which is physical biochemistry not calcuphysics. He is very helpful give his time to students he is another salame in school. ThanxGod we had him.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d5dacd60fca157e5e0aa" + } + }, + { + "text": "GREAT GUY!!! VERY VERY VERY HELPFUL. You learn a lot but the end of the class kind of get hard but the first part is not bad. This guy takes everything you have done in 4 years of chem and tests you on it its GREAT I LOVED it he really put its all together its a great senior class THANKS DeCarlo !!!!", + "pos": 0.385, + "neu": 0.598, + "neg": 0.017, + "_id": { + "$oid": "6711d5dacd60fca157e5e0ab" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dacd60fca157e5e0ad" + }, + "professor_name": "Vinod Menon", + "rating": 4.2, + "department": "Physics department", + "comments": [ + { + "text": "He is the best professor the physics department has to offer! Very lenient with his grading policy and is willing to help when he has time!", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d5dacd60fca157e5e0ae" + } + }, + { + "text": "The tests are directly from the in class questions, homework, and practice exams. Now, this might sound easy but it's not. Even with the manual the questions are really hard and you need to study for an entire week before the exam. Don't skip a single question. Studying from the slides should be enough, you don't need the book.", + "pos": 0.032, + "neu": 0.935, + "neg": 0.033, + "_id": { + "$oid": "6711d5dacd60fca157e5e0af" + } + }, + { + "text": "He is awesome!!!!!!!!!!!!!!!!!! Best physics professor ever! All you need to do is practice his homework's and in class questions, and you will get an A. To do well on the multiple choice section on the exam, practice the questions on his slides that he post on blackboard.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d5dacd60fca157e5e0b0" + } + }, + { + "text": "Great, easygoing professor. Exams are tough, but most of the short response (worth 75/100 points) are from the textbook and are given to you in class, on the homework or on a practice exam, which is jokes since you can just study the solutions manual. 10 hw assignments. Available after class for clarification, but the lectures are sorta helpful.", + "pos": 0.212, + "neu": 0.769, + "neg": 0.018, + "_id": { + "$oid": "6711d5dacd60fca157e5e0b1" + } + }, + { + "text": "Always willing to help you online and during office hours. Tests include questions from the homework, lecture slides, and practice problems. If you don't understand anything, he'll go over the subject matter more than once. He is a fair grader, but can be disorganized at times. Overall, he's the best physics professor CCNY has to offer! Take him", + "pos": 0.158, + "neu": 0.773, + "neg": 0.069, + "_id": { + "$oid": "6711d5dacd60fca157e5e0b2" + } + }, + { + "text": "Class overall wasn't too hard. Gives very little partial credit so you either get GOOD GRADES if you know the questions, or HORRIBLE grades if you only sorta know the questions. The tests only had 3 long answer questions that were very specific, but were directly ripped from the textbook. Overall, not bad. Just wish he gave partial credit.", + "pos": 0.178, + "neu": 0.744, + "neg": 0.079, + "_id": { + "$oid": "6711d5dacd60fca157e5e0b3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dbcd60fca157e5e0b5" + }, + "professor_name": "Rebecca Reed", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Great Professor. Must take her. She makes the class very fun. IF you are having problems just ask her. ASk her as much as you can she is very easy to talk to. Ask questions all the time and participate. Read and must participate.", + "pos": 0.203, + "neu": 0.746, + "neg": 0.05, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0b6" + } + }, + { + "text": "Great professor. Make sure you pay attention in class and participate. Shes very cool and funny. And ask questions she will answer them thorougly.", + "pos": 0.373, + "neu": 0.584, + "neg": 0.043, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0b7" + } + }, + { + "text": "She's very down to earth, cares for all the students and very helpful! She's available via email at all time. I enjoyed her class very much. Would defiantly take her for other labs in the future.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0b8" + } + }, + { + "text": "Really cool lab instructor. Quizzes were tough and she's a tough grader, but if you talk to her she'll tell you exactly what you need to do to do better. Definitely have to work for your grade, but she makes lab fun, really chill.", + "pos": 0.252, + "neu": 0.702, + "neg": 0.046, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0b9" + } + }, + { + "text": "Very awesome lab instructor. Made lab fun so long as we did our work. Very clear when explaining the lab. Will make you work for your grade, so pay attention and you'll be fine.", + "pos": 0.286, + "neu": 0.67, + "neg": 0.043, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0ba" + } + }, + { + "text": "She was a recitation teacher for Bio. Very nice and very chill. She made sure everyone understood the material and was very clear. She was funny and nice too. You have to go to all her classes and her quizzes are a little difficult but if you study you should be fine. At the end of the semester she took our best quiz grade and weighted it more!", + "pos": 0.224, + "neu": 0.756, + "neg": 0.02, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dbcd60fca157e5e0bd" + }, + "professor_name": "Mohammed Nazammudin", + "rating": 3.8, + "department": "Engineering department", + "comments": [ + { + "text": "OK professor. Helpful during class work. It may sounds like a huge confusing thing when hes explaining, but when you start doing hands on work, everything becomes clear.", + "pos": 0.313, + "neu": 0.645, + "neg": 0.043, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0be" + } + }, + { + "text": "He's a little hard to understand, but building the digital clock is very easy. He goes step by step for how the clock works, and building it. he gives two very short test which are very easy. Just pay attention, ask questions, and pray to god that you get good group members for the class, and you'll pass.", + "pos": 0.25, + "neu": 0.708, + "neg": 0.042, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0bf" + } + }, + { + "text": "Very good professor, at first the stuff he say may seem as a blurbut just do your work and you'll be fine. He take's the project step by step and is very help full. I recommend taking this professor.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c1" + } + }, + { + "text": "He knows the materials very well but doesnt know how to feed them. His teaching methods are not good. Tests are easy.", + "pos": 0.201, + "neu": 0.687, + "neg": 0.112, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c2" + } + }, + { + "text": "Helful. If you understand the class material you will do good on the exams. The main project is determines whether you pass the class or not. Helpful professor.", + "pos": 0.093, + "neu": 0.832, + "neg": 0.075, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c5" + }, + "professor_name": "Kori Davis", + "rating": 3.2, + "department": "English department", + "comments": [ + { + "text": "There were quite a few papers when i took him, but thats expected since its an English class. There was a lot of group work and many opportunities to score extra credit. Laid back dude, lenient grader. If you do the assignments, you will get a good grade.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c6" + } + }, + { + "text": "Guy if you really want to learn, do not AND I repeat do not do the mistake of taking him. He is so not respectful, does not care about what happens in class. His assignments are useless even in kindergrten kids must have been taught better than what he teaches. TOTAL WASTE OF TIME AND MONEY!!!!!!!", + "pos": 0.094, + "neu": 0.706, + "neg": 0.2, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c7" + } + }, + { + "text": "He's cool", + "pos": 0.697, + "neu": 0.303, + "neg": 0.0, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c8" + } + }, + { + "text": "A lot of the classes are participation through class activities. These activities helped me learn the techniques needed to write my papers and were pretty fun. For each paper, you'll do peer editing with your classmates before it's due and you're able to write pretty much whatever interests you so long as it fits the guidelines of the paper.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0c9" + } + }, + { + "text": "The professor does give a lot of paper and is nit un orgainzed. He take a long time to grade papers, and he does grade them fairly. however, if you do what you got to do till the end then you will pass with a really good grade.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0ca" + } + }, + { + "text": "The papers are literally a waste of time. The assignments he assigns are last minute and have nothing to do what you are learning at the moment.", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d5dbcd60fca157e5e0cb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dccd60fca157e5e0cd" + }, + "professor_name": "John Foxe", + "rating": 2.7, + "department": "Psychology department", + "comments": [ + { + "text": "amazing person, insanely smart", + "pos": 0.765, + "neu": 0.235, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0ce" + } + }, + { + "text": "this class was badly organized--slides weren't prepared ahead of time, articles to be read were emailed out a day or two before class etc. he needs to get his act together. to top it all of, he is arrogant! great combination.", + "pos": 0.118, + "neu": 0.718, + "neg": 0.165, + "_id": { + "$oid": "6711d5dccd60fca157e5e0cf" + } + }, + { + "text": "he sucks. stay away from him and the class. he doesn't help the masters students at all and isn't that much nicer to the doctoral students. sucks.", + "pos": 0.0, + "neu": 0.704, + "neg": 0.296, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d0" + } + }, + { + "text": "He is knowledgeable but his un-willingness to support some of his students will, soon enough, be well known. by the way, he is awful about returning grades on time..it's almost august and i'm still waiting for a class grade! he's awful, don't even bother with the class. the little you learn isn't worth the trouble of having to deal with him.", + "pos": 0.157, + "neu": 0.711, + "neg": 0.132, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d1" + } + }, + { + "text": "He is quite knowledgable; he seems nice but he is not. He quickly \"decides\" who he think is elite and worthy of his teaching and the others fall off of his radar. This biased notion carries over into his lecture style and office hours. BTW, don't be suprise if he does not even acknowledge your presence in or out of class.", + "pos": 0.086, + "neu": 0.868, + "neg": 0.046, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d2" + } + }, + { + "text": "The class is absolutely useless. He is neither helpful nor respectful towards some of his students. Very knowledgeable but not interested in teaching. Rather, the teaching seems to be a means to an end.", + "pos": 0.041, + "neu": 0.786, + "neg": 0.173, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dccd60fca157e5e0d5" + }, + "professor_name": "Aaliyah El-Amin", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "Professor El-Amin is a great professor who provides all the resources you need to do well. Each week, there will be readings and homework assignments. In addition, there is an individual project and a group project, a midterm and final. Take the class, youll learn.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d6" + } + }, + { + "text": "This professor is very difficult in terms of grading, and she ignores cheating students... I don't know why. Actively participate and hand in all assignments, but don't expect to get an A because she is one of those professors who doesn't like giving A's, even if you deserve it. I would advise students to take this course with another professor.", + "pos": 0.031, + "neu": 0.785, + "neg": 0.184, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d7" + } + }, + { + "text": "Great professor. You learn alot that can be useful in the real world. She gives hw and expects you to put effort into it and participate in class. Exams are fair lectures are good but can be long since its a saturday. Theres a group and individual project and ppts are good study tool.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d8" + } + }, + { + "text": "Professional, highly-qualified professor. Her exams are completely fair and she is an amazing instructor. She will make sure her lectures are relevant to the class, and will not give tests you can't get at least a B+ on if you study in advance. Time needs to be devoted to this class, but you will learn a lot from her!", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0d9" + } + }, + { + "text": "Awesome professor, very clear and precise. Loved the class. Her makes PPT presentations and go through the book chapters during class.Uses BB. lots of work and assignments, presentations, 2 midterms and a final. Very useful and interesting material in the class. I really enjoyed it.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0da" + } + }, + { + "text": "She is a great prof. Very clear and direct. Gives a diverse amount of work so you have a chance to prove yourself in different ways (individual & group assignments). I learned a lot in her course & highly recommend her. You can apply the things she teaches in class to the outside world easily and fairly quickly (no need to buy the textbook)", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0db" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dccd60fca157e5e0dd" + }, + "professor_name": "Robert Twombly", + "rating": 4.7, + "department": "Architecture department", + "comments": [ + { + "text": "Awesome!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0de" + } + }, + { + "text": "Great professor, kind of a hippie but learned a lot and was graded fairly.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0df" + } + }, + { + "text": "Very interesting lectures", + "pos": 0.599, + "neu": 0.401, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0e0" + } + }, + { + "text": "good lectures , always prepared", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d5dccd60fca157e5e0e1" + } + }, + { + "text": "Twombly can be boring attimes but he is very easy to talk to and works with you to help you get a good grade. His exams come from the lectures more than the books and gives a midterm, final and one paper. He is not a hard grader and is willing to give extra credit.", + "pos": 0.246, + "neu": 0.729, + "neg": 0.025, + "_id": { + "$oid": "6711d5dccd60fca157e5e0e2" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5dccd60fca157e5e0e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ddcd60fca157e5e0e5" + }, + "professor_name": "Katie Hanson", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "Clear expectations and interesting lectures made this course an easy A. She's smart, helpful, and nice (and VERY easy on the eyes)", + "pos": 0.577, + "neu": 0.423, + "neg": 0.0, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0e6" + } + }, + { + "text": "She was a very good teacher, basically gave no homework, class is fun if you add input to the discussion, the reports is good, just need to follow her format and get help at the writing center this actually really helps, make sure you actually get your research done quick and go to hte museum. Also the test are easy just have a good memory.", + "pos": 0.286, + "neu": 0.687, + "neg": 0.027, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0e7" + } + }, + { + "text": "Gives an insane amount of work for a 100 level art class! If you don't like art or going to art museums, then don't take her. She does make the class fun, but it's not worth the amount of work required. If you don't like art history, go elsewhere. Most annoying thing: a 5-6 page paper 4 req sources, no internet allowed.", + "pos": 0.03, + "neu": 0.761, + "neg": 0.21, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0e8" + } + }, + { + "text": "She is very nice. Though she gives too much work for art class, if you study the materials, you wil.l get easy A. And The Test Are Easy", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0e9" + } + }, + { + "text": "in her class, if you think that you have good memory, you can try to take this calss. YES, she is nice, she is cute. but in this class, you have to really learn something. Got a B on it.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0ea" + } + }, + { + "text": "she is a great art professor", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0eb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ddcd60fca157e5e0ed" + }, + "professor_name": "Linsey Abrams", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "this professor is super fun, caring and open minded. She will definitely help you come out of your comfort zone to understand things better. She gives great constructive criticism to improve your work and you will surely enjoy her class!", + "pos": 0.528, + "neu": 0.428, + "neg": 0.044, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0ee" + } + }, + { + "text": "Cared more than most- gives equal time to all", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0ef" + } + }, + { + "text": "All opinions were welcomed and honored. The reading list was varied. Made writing a novel seem 'doable.' Funny, critical, and sensitive. Highly recommend taking her at least once, if not several times!", + "pos": 0.339, + "neu": 0.608, + "neg": 0.054, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0f0" + } + }, + { + "text": "Really inspiring. Doesn't let ****s in class get away with yapping the whole time. Puts together an amazing reading list. Takes your work seriously.", + "pos": 0.233, + "neu": 0.71, + "neg": 0.057, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0f1" + } + }, + { + "text": "A nurturing prof, Abrams gives real, constructive criticism in such a sweet, open manner, that you almost don't realize she is being critical. The result is a feeling of great encouragement while productive tips have also sunk in. Probably the most expressivist teacher I've had. I've taken her class twice & would consider taking her a third time.", + "pos": 0.204, + "neu": 0.722, + "neg": 0.074, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0f2" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5ddcd60fca157e5e0f3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5decd60fca157e5e0f5" + }, + "professor_name": "Sonya Farber", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "Shes okay, easy to talk to. fun to hang out with", + "pos": 0.503, + "neu": 0.497, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e0f6" + } + }, + { + "text": "Really knowledgable and funny. Incorporates real examples to help students understand. Answers emails promptly and is helpful. I would recommend you have her as your TA for Psy 102.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e0f7" + } + }, + { + "text": "Unfortunately, I can't rate Sonya as anything but borderline incompetent. She just isn't really well-informed on basic stuff like, e.g., the scientific method. She's also not very good at explaining things. Overall, I would avoid her. (My rating for easiness is irrelevant for the course, but I strongly suspect she'd be easy if she were professor.)", + "pos": 0.175, + "neu": 0.626, + "neg": 0.198, + "_id": { + "$oid": "6711d5decd60fca157e5e0f8" + } + }, + { + "text": "Prof. Farber has rekindled my interest in Psychology. She makes her lesson plans fun and entertaining; I dont think I've ever learned so much in one course. You must take a class with Farber before you graduate!", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e0f9" + } + }, + { + "text": "She's great! Knowledgable as well. Plus she's pretty cute ;)!", + "pos": 0.684, + "neu": 0.316, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e0fa" + } + }, + { + "text": "Very available to help, uses a fun approach to psychology, knowledgable, and interesting.", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e0fb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5decd60fca157e5e0fd" + }, + "professor_name": "Rose Martin", + "rating": 4.7, + "department": "Education department", + "comments": [ + { + "text": "Professor Rose was amazing.", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e0fe" + } + }, + { + "text": "Very clear on expectations", + "pos": 0.491, + "neu": 0.509, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e0ff" + } + }, + { + "text": "Professor Martin is a well rounded professor who is very familiar with what she teaches. she lived & practices what she teaches. She's Extremely familiar with the education system. she is always available for assistance and guidance. However do not take her kindness for granted. you must stay on top of your and you will get the grade you deserve.", + "pos": 0.092, + "neu": 0.87, + "neg": 0.039, + "_id": { + "$oid": "6711d5decd60fca157e5e100" + } + }, + { + "text": "Rose Martin is the finest professor I have experienced during my graduate work at CCNY. She brings a wealth of knowledge and experience and she presents it in real usable form. She was a gift to learn from. She has truly lived what she teaches. You are a very lucky graduate student if you have her as your professor.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e101" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5decd60fca157e5e102" + } + }, + { + "text": "Initially this class seemed to equate more toward social worker than education, but afterwards its relevance became apparent. Excellent professor taking on an interesting subject.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e103" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5decd60fca157e5e105" + }, + "professor_name": "Maria Pagoulatos", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "shes a really good professor...i like her alot she explains alot of things and we watch cool movies in her class", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e106" + } + }, + { + "text": "this teacher is soo awsome shes really really fair!!!...i love her :-)", + "pos": 0.442, + "neu": 0.558, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e107" + } + }, + { + "text": "THIS WOMAN IS AMAZING! SHES FRIENDLY AND CARING AND IS VERY FAIR! I HAD THE BEST EXPERIENCE IN HER CLASS!! YOU WILL LOVE HER! TAKE HER CLASS SHE IS ONE OF THE BEST PROFESSORS ON CAMPUS!", + "pos": 0.478, + "neu": 0.522, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e108" + } + }, + { + "text": "FAV PROFESSOR OF ALL TIME.... SHE IS THE NICEST PROFESSOR EVER... VERY REAL , HELPFUL, AND EASY GOING.YOU WOULD DO GREAT IN HER CLASS AS LONG AS YOU READ ...", + "pos": 0.452, + "neu": 0.548, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e109" + } + }, + { + "text": "BEST WHUM professor ever...and she's REALLY hot!! lol", + "pos": 0.608, + "neu": 0.392, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e10a" + } + }, + { + "text": "prof is way cool. i mean like northern icecaps cool. so mellow i want to take a long walk with her in the woods. and the readings! deep. sista is the real deal. take her class.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d5decd60fca157e5e10b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dfcd60fca157e5e10d" + }, + "professor_name": "Chuen Meei Gan", + "rating": 1.8, + "department": "Engineering department", + "comments": [ + { + "text": "do the hws, must not copy from the solution. read the book and google them (the book are confusing). then you can just go to the class and let her take your attendence, and you can go.(she is hot btw)", + "pos": 0.055, + "neu": 0.9, + "neg": 0.045, + "_id": { + "$oid": "6711d5dfcd60fca157e5e10e" + } + }, + { + "text": "Yes, she does not speak English well because she is Asian. At the beginning I was having trouble understanding how to analyze the circuits, but when I went to her office she explain what I need to do. If you want to get a good grade on her class you have to actually UNDERSTAND how to analyze the circuits, so go to her office hours and it will help.", + "pos": 0.139, + "neu": 0.819, + "neg": 0.042, + "_id": { + "$oid": "6711d5dfcd60fca157e5e10f" + } + }, + { + "text": "She is as bad as it can get. Horrible communication skills. Cannot transfer her thoughts to the students. Is not an expert in the field herself. Students were always correcting her. Will learn nothing from her, so if you want to learn on your take her. otherwise no. Waste of time for me!", + "pos": 0.026, + "neu": 0.808, + "neg": 0.166, + "_id": { + "$oid": "6711d5dfcd60fca157e5e110" + } + }, + { + "text": "ok to me. the book owns", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d5dfcd60fca157e5e111" + } + }, + { + "text": "not so good. people just attend her class b/c she take atttendence. we all learn from the book.", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d5dfcd60fca157e5e112" + } + }, + { + "text": "Well.let me tell you the truth. this professor is NEW. Although she LOOKS very nice on her face.She doesn't know how to teach at all!! She just play the slideshow and read it out and that's it.. I know that she tried her best to clarify herself. But the way she speak(really bad english)and teach will NEVER be clear. lots of work btw.1 mid 1 final.", + "pos": 0.113, + "neu": 0.788, + "neg": 0.099, + "_id": { + "$oid": "6711d5dfcd60fca157e5e113" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dfcd60fca157e5e115" + }, + "professor_name": "Gina Grimaldi", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "OMG I LOVED HER! My class with her was 8 in the morning, but she makes the weirdest conversations hilarious! As long as you do the work (there isn't much) you'll get an easy A. Great teacher and very easy to talk to in and out of class.", + "pos": 0.319, + "neu": 0.645, + "neg": 0.036, + "_id": { + "$oid": "6711d5dfcd60fca157e5e116" + } + }, + { + "text": "Gina is full of life and says the most random/ funny things. She loves having class conversations (even ones that have nothing to do with what we're focusing on in class). Exams are pass/ fail, and the papers are really easy. However, she is a strict grader but also a great critic. Paying attention to her comments will revolutionize your writing.", + "pos": 0.169, + "neu": 0.763, + "neg": 0.068, + "_id": { + "$oid": "6711d5dfcd60fca157e5e117" + } + }, + { + "text": "Gina is hilarious, charismatic and genuinely interested in her students' progress and understanding of the material. Never unwilling to help or crack a random joke in the middle of class! She gave me some great advice on my papers, as well.", + "pos": 0.318, + "neu": 0.64, + "neg": 0.042, + "_id": { + "$oid": "6711d5dfcd60fca157e5e118" + } + }, + { + "text": "SHE IS AWESOME!!!! She makes class fun so you never know what to expect. She is so down-to-earth. She give you a one page-typed commentary on your papers, so you will definitely become an even better writer because of her. Also, she knows her stuff and is the best English teacher I've had BY FAR! She should get tenure!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d5dfcd60fca157e5e119" + } + }, + { + "text": "She is OK! yes she is sweeet but she is also a strict grader!", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d5dfcd60fca157e5e11a" + } + }, + { + "text": "Super sweet, really funny. Definitely knowledgeable about the material and relates soo well to students. She was really awesome and just nice, understanding.. I love this lady!", + "pos": 0.586, + "neu": 0.414, + "neg": 0.0, + "_id": { + "$oid": "6711d5dfcd60fca157e5e11b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5dfcd60fca157e5e11d" + }, + "professor_name": "Eugene Donati", + "rating": 4.8, + "department": "Communication department", + "comments": [ + { + "text": "Awesome Prof! Always there for you, even outside the classroom if u need help.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d5dfcd60fca157e5e11e" + } + }, + { + "text": "One of the most popular teachers in the MCA department. Very nice and helpful. Exams are not that easy, you gotta study for them. Too bad he left CCNY!", + "pos": 0.242, + "neu": 0.608, + "neg": 0.15, + "_id": { + "$oid": "6711d5dfcd60fca157e5e11f" + } + }, + { + "text": "He is a great Teacher and not a hard grade....... Knows his stuff and explains it very well. One of my best professor", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d5dfcd60fca157e5e120" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5dfcd60fca157e5e121" + } + }, + { + "text": "Professor Donati is an excellent teacher. He is committed to making sure students learn and know what he is talking about. He cracks jokes to keep the material interesting and is very understanding. DO NOT take this class for an EASY GRADE. It isn't a HARD class but it isn't an EASY ONE. He'll make sure you LEARN so put in some effort youll be finE", + "pos": 0.229, + "neu": 0.721, + "neg": 0.05, + "_id": { + "$oid": "6711d5dfcd60fca157e5e122" + } + }, + { + "text": "Prof. D is one of the best Prof in the MCA department. Really helpful, funny and a great professor.", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d5dfcd60fca157e5e123" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e0cd60fca157e5e125" + }, + "professor_name": "Chloe Edmonson", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "She is amaaaazing, fun class, not boring at all. She is chill, helpful, funny, knowledgeable, sweet and pretty. just follow her instructions and easy A !", + "pos": 0.517, + "neu": 0.483, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e126" + } + }, + { + "text": "she's amazing, funny, and understanding.", + "pos": 0.691, + "neu": 0.309, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e127" + } + }, + { + "text": "Chloeee!! she's such a sweetheart! Not to mention she's so pretty! This has been one of the best classes I've taken in college and I'm not even into theater!! She is very understanding and is always willing to help! I would love to take another class with her!", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e128" + } + }, + { + "text": "She is the sweetest and so cute! She doesn't give exams, only one page papers, a final paper, and a group project. She is so funny and gives you a lot of credit for participation and attendance.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e129" + } + }, + { + "text": "this lady is the Real MVP!!! easily one of the best professors you'll have for any class you ever take. if your're looking for an gpa booster this is the professor to take. be warned though don't take her lightly, she may seem like a pushover, but she has no problem failing you for not doing your work. be prepared to read and attended class", + "pos": 0.209, + "neu": 0.771, + "neg": 0.021, + "_id": { + "$oid": "6711d5e0cd60fca157e5e12a" + } + }, + { + "text": "She is WONDERFUL! So down to Earth and so cute! She's so easy to love and is so intelligent. You will love her class, even if Theater History is boring to you. I am going to miss her so much! TAKE HERRRRR!!!!", + "pos": 0.399, + "neu": 0.539, + "neg": 0.062, + "_id": { + "$oid": "6711d5e0cd60fca157e5e12b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e0cd60fca157e5e12d" + }, + "professor_name": "Yun Yang", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Honestly her lectures are a little hard to follow but she makes up for it by posting excellent class notes online, along with practice midterms and finals. Her exams were reasonable and she's really nice!", + "pos": 0.264, + "neu": 0.712, + "neg": 0.024, + "_id": { + "$oid": "6711d5e0cd60fca157e5e12e" + } + }, + { + "text": "Great professor! One of the best Math professors Ive had and the way she organizes her work is truly remarkable! She uploads her notes online and provides practice tests before midterm and the quizzes are always from the HW so if you do the HW youll ace the quizzes and if you ace the quizzes and HW the midterms will be a breeze and also the final", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e12f" + } + }, + { + "text": "Good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e130" + } + }, + { + "text": "During lectures, spends less time on theorems or proofs and more on solving problems. HW is not too long though you get some every week, and can be done step by step from in class notes- treat it like study for the weekly quiz. Gives partial credit for quizzes, tests, and final- a lot of it. Very pleasant to speak to and cares if you learn.", + "pos": 0.216, + "neu": 0.747, + "neg": 0.037, + "_id": { + "$oid": "6711d5e0cd60fca157e5e131" + } + }, + { + "text": "Gives quizzes every week, drops the lowest one, they are 15% of your grade. 2 in class midterms, 40%. HW due every week (sometimes 10+ pages of solutions) 10% and of course the departmental final. She is very clear on what will be on the test and she is very excited about being a professor, which is cute. I ended up watching Jhevon's videos to pass", + "pos": 0.139, + "neu": 0.826, + "neg": 0.035, + "_id": { + "$oid": "6711d5e0cd60fca157e5e132" + } + }, + { + "text": "Clear lectures, and diff eq becomes easy once you practice alot. That's why you'll get plenty of hw in this class", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e133" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e0cd60fca157e5e135" + }, + "professor_name": "Mariana Carmona", + "rating": 4, + "department": "Spanish department", + "comments": [ + { + "text": "Professor Carmona is one of the best professors Ive had. Shes very caring and understanding. If you ever have any questions, she will always be available for you. The lessons are very interactive so you have to participate. She gives you the freedom to write whatever you want as long as it relates to the topic. 2 essays, midterm, and final.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e136" + } + }, + { + "text": "Prof. Romo-Carmona is the reason I wanted to go to class. She is the kindest woman, and extremely intelligent. Her lectures are both informative and inspirational as she brings real-life scenarios to each one. She teaches interesting topics and wants to hear everyone's story and interpretation. I hope to have a class with her again.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e137" + } + }, + { + "text": "Kind, sweet professor. She is very patient with her students and makes sure everyone understands what is going on. Ask questions because learning Spanish is tough and she will ask individuals questions to answer in front of everyone. Buy the textbook before the first day of class, and do the homework even tho she doesn't remind you to.", + "pos": 0.136, + "neu": 0.841, + "neg": 0.023, + "_id": { + "$oid": "6711d5e0cd60fca157e5e138" + } + }, + { + "text": "Homework for every week, its simple. Just dont skip and try to participate. Homework a must.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e139" + } + }, + { + "text": "The only thing needed for this class is a Spanish workbook. All the homework and classwork is done in there. She calls on people so make sure to do the homework before class. Other than that she's a sweet lady and the class is not too difficult.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d5e0cd60fca157e5e13a" + } + }, + { + "text": "Super difficult. her lessons are good but her quizzes are the size of exams.", + "pos": 0.257, + "neu": 0.641, + "neg": 0.102, + "_id": { + "$oid": "6711d5e0cd60fca157e5e13b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e1cd60fca157e5e13d" + }, + "professor_name": "Tyler Callaway", + "rating": 3.3, + "department": "World Civilizations department", + "comments": [ + { + "text": "He is so strict won't recommend him at all nd he catches every little mistake.", + "pos": 0.0, + "neu": 0.744, + "neg": 0.256, + "_id": { + "$oid": "6711d5e1cd60fca157e5e13e" + } + }, + { + "text": "Lectures: monotone but super clear and helpful for outside class work. Assignments: also clear just make sure you read the syllabus cause theres a few of them. Readings: A LOT sometimes 30-75+ pages. If you hate to read you gonna learn to love it. Overall: super clear, helpful, a human being but not a push over especially during COVID", + "pos": 0.407, + "neu": 0.538, + "neg": 0.055, + "_id": { + "$oid": "6711d5e1cd60fca157e5e13f" + } + }, + { + "text": "A nice professor Well, even though he don't contact with students mostly but HW is not a lot, and is easy But, if you want to choose this class then you better to be ready to read, I have to say this professor give a lot of reading. Every week he will be assign reading, and some of it are long.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d5e1cd60fca157e5e140" + } + }, + { + "text": "Very boring class. I can barely sit through it without falling asleep. Also assigns a lot of reading for outside of class. Don't have to do the reading, but participation does matter a lot, so learn how to bluff it and you'll be fine.", + "pos": 0.099, + "neu": 0.863, + "neg": 0.039, + "_id": { + "$oid": "6711d5e1cd60fca157e5e141" + } + }, + { + "text": "Hardest A Ive ever earned. Expects A LOT from his students, but fair.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d5e1cd60fca157e5e142" + } + }, + { + "text": "His class is extremely mind numbing, its all just chapter review and you do not feel like you learn much. The projects can be overwhelming and not the clearest to understand. The few quizzes there are are usually based around earlier material which is not always easy to remember. Find Another Professor PLEASE.", + "pos": 0.051, + "neu": 0.832, + "neg": 0.117, + "_id": { + "$oid": "6711d5e1cd60fca157e5e143" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e1cd60fca157e5e145" + }, + "professor_name": "Ron Carlos", + "rating": 4.3, + "department": "Speech department", + "comments": [ + { + "text": "If you see a bad rating on this guy, ignore it. Fun class. Journals were not a burden at all. two play papers that were very easy as well. Class time was enjoyable and I learned a lot about the voice and breath. You'd have to be a really really bad student to think this class is stressful. Must take class! Don't hesitate!", + "pos": 0.225, + "neu": 0.617, + "neg": 0.159, + "_id": { + "$oid": "6711d5e1cd60fca157e5e146" + } + }, + { + "text": "Ron is passionate about voice work and because of his knowledge I became interested in the course. Do weekly journals, hw assignments (such as colorings), participate, do well on papers, and be punctual and you should easily get an A. This class is very different from others and can actually be very fun.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d5e1cd60fca157e5e147" + } + }, + { + "text": "This was honestly my favorite class of the semester. You really learn how to become a better speaker and Ron is great teacher and gives great feedback. As long as you come to class and do the weekly journal assignments it'll be a breeze. I would definitely take another class taught by him and would recommend this class as well.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d5e1cd60fca157e5e148" + } + }, + { + "text": "Good and fair teacher. Must do your work and you will get a good grade. 5 speeches to give through out class, must watch two plays and write responses on each. Very entertaining. Made class fun.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d5e1cd60fca157e5e149" + } + }, + { + "text": "nice professor,easy work. two page journal every week but it is double space and you can write any thing. if your journal is more than one and half page and you can get full credit. Must see 2 school theater production and only need to write more than 3page paper. easy to get 90 on the paper. no exam, one-minute final presentation", + "pos": 0.131, + "neu": 0.829, + "neg": 0.04, + "_id": { + "$oid": "6711d5e1cd60fca157e5e14a" + } + }, + { + "text": "DO NOT TAKE unless you have tons of free time. Requirements- Meet with classmate and write two page papers every week. Must see 2/4 plays and write five pages on each. Attendance subtracts 3 points for one missed class. You don't learn anything and spend hours doing work for this class alone. Either take this class with no other classes or AVOID.", + "pos": 0.075, + "neu": 0.793, + "neg": 0.132, + "_id": { + "$oid": "6711d5e1cd60fca157e5e14b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e2cd60fca157e5e14d" + }, + "professor_name": "A Pinkashov", + "rating": 3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Hot! Smart! Home works are hard. Exams are open book.", + "pos": 0.259, + "neu": 0.631, + "neg": 0.11, + "_id": { + "$oid": "6711d5e2cd60fca157e5e14e" + } + }, + { + "text": "i don't want to scared anybody, you will see once you take his class.", + "pos": 0.154, + "neu": 0.768, + "neg": 0.078, + "_id": { + "$oid": "6711d5e2cd60fca157e5e14f" + } + }, + { + "text": "I think City College is a great school, but is those professor like this Pinkashov who makes this place the worst place to do your EE degree. The guy would not stop telling you to drop the class. The only comment from him that you would like is \"if you don't do good in my class you would end up driving a cab\". GOOOOOD LUCK taking classes with him.", + "pos": 0.185, + "neu": 0.686, + "neg": 0.128, + "_id": { + "$oid": "6711d5e2cd60fca157e5e150" + } + }, + { + "text": "Ohhhh, You gonna die in his class.", + "pos": 0.0, + "neu": 0.606, + "neg": 0.394, + "_id": { + "$oid": "6711d5e2cd60fca157e5e151" + } + }, + { + "text": "Do not take any class with this guy. He will try his best to make sure you don't pass the course. Always suggest students to drop his course. Also expects a lot from a student. If you want to learn and to get a good grade then this is NOT THE RIGHT GUY FOR YOU!", + "pos": 0.174, + "neu": 0.792, + "neg": 0.033, + "_id": { + "$oid": "6711d5e2cd60fca157e5e152" + } + }, + { + "text": "THE HOTTEST MAN ALIVE...EXTEREMELY EASY AND FUN.. from E and M", + "pos": 0.46, + "neu": 0.54, + "neg": 0.0, + "_id": { + "$oid": "6711d5e2cd60fca157e5e153" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e2cd60fca157e5e155" + }, + "professor_name": "Alan Aronoff", + "rating": 1.7, + "department": "Mathematics department", + "comments": [ + { + "text": "He's horrible at teaching.", + "pos": 0.0, + "neu": 0.462, + "neg": 0.538, + "_id": { + "$oid": "6711d5e2cd60fca157e5e156" + } + }, + { + "text": "horrible", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d5e2cd60fca157e5e157" + } + }, + { + "text": "Terrible professor. He didn't even have a syllabus until well into October when his boss told him it was school policy. He doesn't care about his students. I can't even remember a time when he actually walked through a question on the board. His class was built for you to fail.", + "pos": 0.036, + "neu": 0.806, + "neg": 0.158, + "_id": { + "$oid": "6711d5e2cd60fca157e5e158" + } + }, + { + "text": "hes such a nice guy but hes too old. He thinks everyone has a good foundation of calculus yet the whole class is lost. His test are fair and he does grade on a curve so if you can teach yourself cal, you dont have to go to his lessons", + "pos": 0.151, + "neu": 0.798, + "neg": 0.051, + "_id": { + "$oid": "6711d5e2cd60fca157e5e159" + } + }, + { + "text": "He doesn't give homework, nor does he give anything. I recommend you do not take him. He cannot teach math in general and he gets off topic pretty quick. Do not recommend him for anyone unless u want to take a nap in class.", + "pos": 0.143, + "neu": 0.814, + "neg": 0.043, + "_id": { + "$oid": "6711d5e2cd60fca157e5e15a" + } + }, + { + "text": "Aronoff is friendly but he cannot teach, nor does he really have any energy to. Don't take him if you're not a capable math student who can't teach himselfherself. He just lectures over the slides that came with the textbook, and posts all of the slides weeks in advance online (which by the way suck). At least he doesn't take attendance.", + "pos": 0.075, + "neu": 0.829, + "neg": 0.096, + "_id": { + "$oid": "6711d5e2cd60fca157e5e15b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e2cd60fca157e5e15d" + }, + "professor_name": "Brian Barnier", + "rating": 2.8, + "department": "Economics department", + "comments": [ + { + "text": "One of the best professor's i have ever had to date. Takes the time to explain, answers emails, and you get to learn an exceptional amount from him. I would definitely take Prof. Barnier again. I am not used to a large amount of work load, but the work he gave us was extremely helpful for my graduate degree.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d5e2cd60fca157e5e15e" + } + }, + { + "text": "If you put in the work you will excell, Its an intensive class. Got my money's worth", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d5e2cd60fca157e5e15f" + } + }, + { + "text": "you might think your doing good only to find out a different story.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d5e2cd60fca157e5e160" + } + }, + { + "text": "If you can write a clear paper , your good otherwise don't take him. Also his grading system makes no sense. You have to gives 4 minute presentations with your group weekly. You don't even have to show up , just hand him a well written paper. That's the only thing he cares about", + "pos": 0.216, + "neu": 0.75, + "neg": 0.034, + "_id": { + "$oid": "6711d5e2cd60fca157e5e161" + } + }, + { + "text": "Does not know how to teach. He wants you to \"drill down\" to the center of the Earth. His grading is unclear. Effort and improvement is not counted. When writing his papers just include a bunch of nonsense footnotes, with perfect colorful charts, Because it is the main things he looks for.", + "pos": 0.113, + "neu": 0.808, + "neg": 0.079, + "_id": { + "$oid": "6711d5e2cd60fca157e5e162" + } + }, + { + "text": "One of the worst professor I had taken so far in my college life. He gave a lot of papers to write & many presentations but never graded any of them. You wouldn't know how you are doing until your final grade. Don't have any clear grading system. I strongly would recommend you to run for your life before you even think about taking professor.", + "pos": 0.082, + "neu": 0.845, + "neg": 0.074, + "_id": { + "$oid": "6711d5e2cd60fca157e5e163" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e3cd60fca157e5e165" + }, + "professor_name": "Tessa Miller", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "The most favorite professor, very good to all students, lovingly supports you both in the curriculum and in your personal life, answers your email and even gives you her phone number for emergencies. I highly recommend it, you will like it", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d5e3cd60fca157e5e166" + } + }, + { + "text": "The most caring, respectful professor I've had at CCNY. Never dreaded coming to class like some of my others. She gives helpful feedback on essays and I actually became a better writer in her class. She also brings snacks/candy a lot, which I appreciated b/c I was always starving lol. Wish I could have Prof. Miller every semester!", + "pos": 0.348, + "neu": 0.616, + "neg": 0.036, + "_id": { + "$oid": "6711d5e3cd60fca157e5e167" + } + }, + { + "text": "Great professor and would absolutely take her class again! Was a very manageable workload and she was really flexible with extensions (in reason). Her major assignments were fun and her feedback was very in-depth and helped improve my writing. She creates a nice class environment that's very low pressure/lighthearted. Really lets you be yourself.", + "pos": 0.267, + "neu": 0.698, + "neg": 0.036, + "_id": { + "$oid": "6711d5e3cd60fca157e5e168" + } + }, + { + "text": "She is my favorite professor in college, she is very cool and sweet, she is easy to communicate with, she will understand you if you have problems, I loved coming to her classes...I highly recommend this professor, you will not regret it...", + "pos": 0.362, + "neu": 0.591, + "neg": 0.047, + "_id": { + "$oid": "6711d5e3cd60fca157e5e169" + } + }, + { + "text": "She is the best teacher you could ever ask for. She's very Understanding as long as you communicate with her and lenient.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d5e3cd60fca157e5e16a" + } + }, + { + "text": "Awesome.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5e3cd60fca157e5e16b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e3cd60fca157e5e16d" + }, + "professor_name": "Jacek Dmochowski", + "rating": 4.7, + "department": "Biomedical Engineering department", + "comments": [ + { + "text": "Clarification: This review is for BME 105. Prof truly wants his students to learn and will take the time to meet with them on his own time to discuss questions on the material or homework. Your grade consists of attendance a midterm, a final, as well as 7-8 coding homework. To pass the class force yourself to figure out the logic in the code.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d5e3cd60fca157e5e16e" + } + }, + { + "text": "Do well on the first midterm, because lectures get harder. The hardest part of this course will be chapter 8, so make sure you grind every single problem from that chapter in the textbook. He's an amazing lecturer and a funny guy, and he is very lenient on many grades unlike other professors. TA and lab wasn't as enjoyable as I thought, however.", + "pos": 0.184, + "neu": 0.748, + "neg": 0.068, + "_id": { + "$oid": "6711d5e3cd60fca157e5e16f" + } + }, + { + "text": "He is one of the best BME professors. The materials are not easy but he explains very clearly. The slides are so helpful. The homework is quite challenging (at least for me) The lab was fun although it would've been even more fun if in person.", + "pos": 0.363, + "neu": 0.61, + "neg": 0.027, + "_id": { + "$oid": "6711d5e3cd60fca157e5e170" + } + }, + { + "text": "He's an amazing professor. He makes sure that everyone understand the lecture, however we're unlucky we did not do the lab because of COVID-19. He give you the fair grade, do good in first exam because second is very hard.", + "pos": 0.235, + "neu": 0.729, + "neg": 0.035, + "_id": { + "$oid": "6711d5e3cd60fca157e5e171" + } + }, + { + "text": "He uses powerpoint to explain the class. No need to buy the textbook. He speaks loud and clear. After the first midterm, the lectures get much harder, it will be good to read the second test slides beforehand. Use TA or circuit online solver to make sure the homework is right. If you cheat on the homework, you will fail the test.", + "pos": 0.108, + "neu": 0.772, + "neg": 0.12, + "_id": { + "$oid": "6711d5e3cd60fca157e5e172" + } + }, + { + "text": "He is a good professor but his lectures are difficult to follow and the midterm is tricky.", + "pos": 0.092, + "neu": 0.664, + "neg": 0.244, + "_id": { + "$oid": "6711d5e3cd60fca157e5e173" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e3cd60fca157e5e175" + }, + "professor_name": "Eliana Dotan", + "rating": 3.7, + "department": "Architecture department", + "comments": [ + { + "text": "BRILLIANT ARCHITECT WITH KEEN SENSIBILITY FOR BEAUTY.", + "pos": 0.716, + "neu": 0.284, + "neg": 0.0, + "_id": { + "$oid": "6711d5e3cd60fca157e5e176" + } + }, + { + "text": "Brilliant designer, caring, thoughtful, and well rounded architect.", + "pos": 0.745, + "neu": 0.255, + "neg": 0.0, + "_id": { + "$oid": "6711d5e3cd60fca157e5e177" + } + }, + { + "text": "She's amazing! She has a young daughter and treats us like her kids too. She brings snacks during our critiques. For our second critique she took us to Central Park and then the MOMA instead of having an actual 5 hour critique. She's hard because she needs to be in studio, she makes sure you get your work done earlier then other studios.", + "pos": 0.128, + "neu": 0.851, + "neg": 0.02, + "_id": { + "$oid": "6711d5e3cd60fca157e5e178" + } + }, + { + "text": "She is a really bad teacher. I basically learned very little from her, even though I got a good grade and worked hard in the class. I dont think she really cared about me as a student. Would not take her again for studio or for any other subject.", + "pos": 0.107, + "neu": 0.801, + "neg": 0.092, + "_id": { + "$oid": "6711d5e3cd60fca157e5e179" + } + }, + { + "text": "Professor Dotan was incredibly knowledgeable and deeply invested in the development of her students' projects. She spent a lot of time with each student to help them to manifest their own ideas, and she was not trying to push her own agenda. In her lectures she could convey complex ideas clearly. I highly recommend her studio!", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d5e3cd60fca157e5e17a" + } + }, + { + "text": "She is a terrible teacher. DO NOT, I repeat, DO NOT take her. She is unclear. She doesnt care about students. She thinks that because she went to Harvard, that she is better than everybody and that she knows more than anyone by default. She is the worse teacher I have ever had since Ive been in school. Terrible experience. Didnt learn a thing.", + "pos": 0.039, + "neu": 0.775, + "neg": 0.186, + "_id": { + "$oid": "6711d5e3cd60fca157e5e17b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e4cd60fca157e5e17d" + }, + "professor_name": "Punit Arora", + "rating": 4, + "department": "Business department", + "comments": [ + { + "text": "Best Econ professor I could have had. He teaches in a very inspiring and insightful way, he's extremely knowledgeable about the subject and it really shines through in his class. Anyone would be lucky to take his class.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d5e4cd60fca157e5e17e" + } + }, + { + "text": "Nice professor and easy going. If your class participates every day and engages in the conversation, you will do good. Group assignments and share outs every day. Its a freshmans worst nightmare lol but still easy class. The final was online and even though it was stuff we didnt see before, a lot of it was just common sense/SWOT analysis.", + "pos": 0.212, + "neu": 0.751, + "neg": 0.037, + "_id": { + "$oid": "6711d5e4cd60fca157e5e17f" + } + }, + { + "text": "Professor Arora has a very lecture-heavy teaching style. The class consisted mostly of presentations, group presentations at that. Participation matters a lot to him, but his grading criteria is confusing, and his clarifications don't help much. And, because he grades few things, they weigh a lot. He's alright but the class isn't worth it.", + "pos": 0.059, + "neu": 0.82, + "neg": 0.121, + "_id": { + "$oid": "6711d5e4cd60fca157e5e180" + } + }, + { + "text": "NA", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5e4cd60fca157e5e181" + } + }, + { + "text": "For an introductory course, This class is not it. First of all the professor will say in the beginning that he cares, dont believe him he doesn't, He never provides feedback He tells you to contact the Ta's and they are disrespectful and dont care and dont want u reaching out or asking. The exams and quizzes are on everything except what he covers.", + "pos": 0.044, + "neu": 0.877, + "neg": 0.08, + "_id": { + "$oid": "6711d5e4cd60fca157e5e182" + } + }, + { + "text": "Punit was a good professor and you will need the textbook because it has all the cases for the course in it. He was available outside class. You will need to be ready for group work and presentations but they were very easy as long as you include what he wanted to hear. Make sure you know your topic for the 10 page paper. Overall the class was easy", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d5e4cd60fca157e5e183" + } + }, + { + "text": "Professor Arora is a great professor. In his class it's more of a presenting class with a lot of group work and a two page paper weekly. We didn't have any exams and just one final paper that was around 20 pages. He gives good feedback to improve your presentation and papers. Overall, he's a caring professor and you should take him if you can.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d5e4cd60fca157e5e184" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e4cd60fca157e5e186" + }, + "professor_name": "Christian Volkmann", + "rating": 4.3, + "department": "Architecture department", + "comments": [ + { + "text": "Prof. Volkmann can seem scary but he really is just looking to teach his students. His lectures can be a bit confusing but he posts his slides on dropbox, so you can go back and take notes. Make sure you study hard because his midterm and final are a bit hard.", + "pos": 0.052, + "neu": 0.813, + "neg": 0.135, + "_id": { + "$oid": "6711d5e4cd60fca157e5e187" + } + }, + { + "text": "Good and nice professor, but give a low grade, even if student is working so hard on the project. Not satisfy with grade!", + "pos": 0.127, + "neu": 0.594, + "neg": 0.279, + "_id": { + "$oid": "6711d5e4cd60fca157e5e188" + } + }, + { + "text": "This is the best professor I have ever had. He is extremely knowledgeable. He will push you and is very demanding, but it is all for your benefit. If you try hard, he will work with you to make your project into a great one. Unlike most professors who want to leave as soon at class is over, he is willing to stay later and give feedback.", + "pos": 0.179, + "neu": 0.763, + "neg": 0.057, + "_id": { + "$oid": "6711d5e4cd60fca157e5e189" + } + }, + { + "text": "Great Prof.!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d5e4cd60fca157e5e18a" + } + }, + { + "text": "Clear, helpful, and a very nice person.", + "pos": 0.68, + "neu": 0.32, + "neg": 0.0, + "_id": { + "$oid": "6711d5e4cd60fca157e5e18b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5e4cd60fca157e5e18c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e5cd60fca157e5e18e" + }, + "professor_name": "Colin Chase", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "Unclear grading criteria, you won't know your grade throughout the whole semester. Not worth taking online. He's not very flexible. Disorganized class aim and structure.", + "pos": 0.073, + "neu": 0.733, + "neg": 0.194, + "_id": { + "$oid": "6711d5e5cd60fca157e5e18f" + } + }, + { + "text": "Get ready for your creative mind to be blown away, even if your a beginner, you will learn how to create with anything and everything. There is no right or wrong way. You are the creator! You will learn about different sculptors/artist. We did 4 projects in this class. He is a cool and fun Prof. and he pays attention to each of his students.", + "pos": 0.209, + "neu": 0.762, + "neg": 0.029, + "_id": { + "$oid": "6711d5e5cd60fca157e5e190" + } + }, + { + "text": "By far the best Teacher in City College, maybe best teacher I ever had. Very smart, he understands his craft well, he communicates and the class was fun, by far the most enjoyable time I had a City, Period!", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d5e5cd60fca157e5e191" + } + }, + { + "text": "the best professor in city college hands down!", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d5e5cd60fca157e5e192" + } + }, + { + "text": "This guy is the best. All prof should be this good. I learned and had fun....at the same time. More teachers should think this way. Just because it is college doesn't mean it can't be an enjoyable experience. If I could I would take his class again.", + "pos": 0.14, + "neu": 0.815, + "neg": 0.045, + "_id": { + "$oid": "6711d5e5cd60fca157e5e193" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5e5cd60fca157e5e194" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e5cd60fca157e5e196" + }, + "professor_name": "Zhang Pengfei", + "rating": 4.3, + "department": "Earth Science department", + "comments": [ + { + "text": "very nice and respectful, take him!", + "pos": 0.624, + "neu": 0.376, + "neg": 0.0, + "_id": { + "$oid": "6711d5e5cd60fca157e5e197" + } + }, + { + "text": "Professor Zhang is pretty niceeeeeee, i can see that everybody in the department loves him,and the material he covers is simple and i believe that is because he has to take care of everybody in the class and the last thing he wants to do is give anyone hard time. and you can also get extra point by attending seminar and writing summary.", + "pos": 0.143, + "neu": 0.837, + "neg": 0.02, + "_id": { + "$oid": "6711d5e5cd60fca157e5e198" + } + }, + { + "text": "Nice professor. Gives out random quizzes but not that many(like 2). 3 exams total. Has a monotone voice sometimes. Uses PowerPoint for lectures. Gives out study sheets prior to exams. Exams contain multiple choice, fill-ins, and short essays. Questions may be worded funny sometimes. May make a mistake on grading so always check. Gives extra credit.", + "pos": 0.142, + "neu": 0.809, + "neg": 0.048, + "_id": { + "$oid": "6711d5e5cd60fca157e5e199" + } + }, + { + "text": "Though I'am from civil eng., I enjoyed his class. He is fair and take serious participation of each student and attendance. Recomend his course.", + "pos": 0.201, + "neu": 0.753, + "neg": 0.047, + "_id": { + "$oid": "6711d5e5cd60fca157e5e19a" + } + }, + { + "text": "pre-judgmental, boring, reads lesson plans, not interested in discussion of subject", + "pos": 0.0, + "neu": 0.664, + "neg": 0.336, + "_id": { + "$oid": "6711d5e5cd60fca157e5e19b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5e5cd60fca157e5e19c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e5cd60fca157e5e19e" + }, + "professor_name": "Amy Van Natter", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "online asycnh course with only 1 discussion post a week and an unlimited attempt quiz every 2 weeks. There are 3 papers + an optional final paper which count as exams (harsh grader on essays). Every week she gives additional discussion posts for extra credit.", + "pos": 0.054, + "neu": 0.887, + "neg": 0.06, + "_id": { + "$oid": "6711d5e5cd60fca157e5e19f" + } + }, + { + "text": "Overall, the course is relatively easy, with one comment on the blackboard every week and 1 multiple choice every 2 weeks with infinite attempts. The only complaint I have are about the essays, of which there are four(1/month), she tends to be a harsh grader on those, but one gets dropped. You can do extra credit to compensate for the essay grades.", + "pos": 0.08, + "neu": 0.867, + "neg": 0.053, + "_id": { + "$oid": "6711d5e5cd60fca157e5e1a0" + } + }, + { + "text": "I am going to be super honest about Dr. Natter. I had her for online classes and one thing I didn't really like about this class is there's no lecture so you will have to read a lot from textbooks. But this class is super easy, you don't even have to read. weekly discussion, 7 quizzes, and 4 papers. NO EXAM. EASY CLASS", + "pos": 0.172, + "neu": 0.686, + "neg": 0.142, + "_id": { + "$oid": "6711d5e5cd60fca157e5e1a1" + } + }, + { + "text": "Amazing Professor, I highly recommend you take her for any class she is teaching!! She is very knowledgeable, you will learn a lot from her.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d5e5cd60fca157e5e1a2" + } + }, + { + "text": "Dr. Van Natter was great, she's funny and taking U.S. development with her was awesome. Definitely recommend her. There were homework questions due before every class as well as 7 quizzes throughout the semester, but they were easy if you did the work and paid attention in class. Essay as a final exam.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d5e5cd60fca157e5e1a3" + } + }, + { + "text": "She's knowledgable, quirky, slightly disgruntled,but very entertaining. If you participate(and she will force you like an old elementary teacher with her attendance list,so you might as well volunteer) it makes the class more enjoyable. It's a bit more labor intensive than you'd imagine a required history class would be but beats a boring lecturer!", + "pos": 0.128, + "neu": 0.822, + "neg": 0.049, + "_id": { + "$oid": "6711d5e5cd60fca157e5e1a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e6cd60fca157e5e1a6" + }, + "professor_name": "William Simmons", + "rating": 4.2, + "department": "Art department", + "comments": [ + { + "text": "Not kidding, worst professor I've ever had. Very inexperienced. Spends most of every class on material he prefers (modern art, that's okay, but too bad this is an art history class that's supposed to cover 20,000 years of art). If you want to talk about art in the most general sense, take him. If you want to learn actual history, take anyone else.", + "pos": 0.094, + "neu": 0.821, + "neg": 0.085, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1a7" + } + }, + { + "text": "One of the best professors at CCNY. He's a fair grader, gives extra credit, and makes sure there's a complete review session before every exam. Attendance is essentially mandatory since everything you need to know will be covered in his lectures. Very funny as well; I enjoyed his class!", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1a8" + } + }, + { + "text": "Great professor, makes the bulk of the material digestible and easy to understand, provides good feedback, and gives optional extra credit. The exams were easy and he provides a comprehensive review session before each one. Very easygoing and usually makes class lively (with strong opinions that he freely shares with students).", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1a9" + } + }, + { + "text": "This guy is truly amazing. Most of the points are towards the papers. There are extra credits like presentation to boost up the grade. The Mid term and the Finals were easy. The review session before the Mid term and Final was helpful. The power points describe the main idea of the chapters and lessons.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1aa" + } + }, + { + "text": "Being a student in his class was an AMAZING experience. He genuinely cares about students and focuses on his students actually learning something and taking something away from the course rather than just memorizing stuff. He tries to interact with students and is really knowledgeable. Very fair! Love this dude! Highly recommended!", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1ab" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e6cd60fca157e5e1ad" + }, + "professor_name": "Kyle Hoehne", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "man kyle was the BEST!!!! He was humorous and very casual with the student and gave them many opportunities to bring their grades up. His feedback was honestly very helpful and before submitting your paper, he'd even look over your paper for any revisions which were SO HELPFUL!!! Would definitely take him again", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1ae" + } + }, + { + "text": "This teacher is one of the toughest graders I've had. He grades your paper so harshly that every mistake you make is a minus five from 100. He grades your paper, but doesn't tell you why it is that grade. Would never take this professor again since he will ruin your GPA. 4 essays in total, he is strict very strict grader dont recommend him EVER.", + "pos": 0.0, + "neu": 0.853, + "neg": 0.147, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1af" + } + }, + { + "text": "Great professor if you want an easy straight A. He uses textbook to read essays which is extremely boring. He grades very easy, not strict. He is the best professor that Ive had. No homework, just 4 essays. Reading is little.", + "pos": 0.318, + "neu": 0.596, + "neg": 0.087, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1b0" + } + }, + { + "text": "He is a pretty chill professor. We had to write 4 essays in total and reflection for each of them and do discussion posts which are really easy and if you do all of them, he gives extra credit. We also had to read textbook in class but if you don't want to buy, you can share with others. He also gives feedbacks on drafts. Final is also very easy.", + "pos": 0.167, + "neu": 0.816, + "neg": 0.017, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1b1" + } + }, + { + "text": "He is a really good professor. Assigned 4 essays each due a month from each other. It is not an easy class. He is a tough grader so his essays require a lot of effort. But he is fair and gives extra credit if you do all discussion posts. He is very accessible and will read your rough drafts if you email him. Also helps during office hours.", + "pos": 0.154, + "neu": 0.807, + "neg": 0.038, + "_id": { + "$oid": "6711d5e6cd60fca157e5e1b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e7cd60fca157e5e1b4" + }, + "professor_name": "Andrea Weiss", + "rating": 4.2, + "department": "Film department", + "comments": [ + { + "text": "The feedback wasn't consistent in this class, which held me back a lot. Assignments done at the beginning of the semester didn't receive real solid feedback until the end of the semester, leaving me stressed and confused about the direction of my thesis film. I thought she was ok, until this...", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1b5" + } + }, + { + "text": ".", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1b6" + } + }, + { + "text": "awesome.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1b7" + } + }, + { + "text": "She's great, she really does a good job of helping students learn about themselves as well as teaches them everything they need to know about making documentaries. VERY IMPRESSED WITH HER KNOWLEDGE AND SKILL, AND HER TEACHING METHOD IS GREAT!! Thanks for a great learning experience Prof Weiss.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1b8" + } + }, + { + "text": "Great class to learn about taking an idea and developing it into a clear project. Weiss does a great job helping you find your creative voice and then expels it out of you. I am impressed with her insight and experience in the industry and hope that this class is the start of a long film relationshi", + "pos": 0.298, + "neu": 0.667, + "neg": 0.035, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e7cd60fca157e5e1bb" + }, + "professor_name": "Erin Schell", + "rating": 4, + "department": "Political Science department", + "comments": [ + { + "text": "So, Erin Schell is AWESOME! There was A LOT of reading and heavy class discussion but I enjoyed this class very much because of her super pleasant demeanor!", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1bc" + } + }, + { + "text": "She is great, TAKE HER! lecture was sometimes way too hard to follow, so was the reading, which I did not get always. But for the 3 essays she help me lots after class and is nice, and she low key funny. Puts the reading online. I had to turn in a paper late and she let me without taking off grade.", + "pos": 0.189, + "neu": 0.759, + "neg": 0.052, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1bd" + } + }, + { + "text": "I like her, she's funny and the assigned material was pretty interesting and definitely cares about students. Some of the lectures were better then others but on whole, i thought class pretty good.", + "pos": 0.474, + "neu": 0.526, + "neg": 0.0, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1be" + } + }, + { + "text": "She's a bit confusing. Rambles back and forth on topics & often makes things more confusing trying to explain it. But just do some of the readings, demonstrate your understanding of a few important concepts in your essays and you'll get a decent grade. Three quizzes but nothing too hard. There are better profs at CCNY, while there are also worse.", + "pos": 0.108, + "neu": 0.789, + "neg": 0.103, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1bf" + } + }, + { + "text": "Confusing", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e7cd60fca157e5e1c2" + }, + "professor_name": "Noopur Khosla", + "rating": 2.5, + "department": "Mathematics department", + "comments": [ + { + "text": "Yeah she's a pretty useless professor, classes were extremely tough. Avoid at all costs, she missed class frequently and I self studied for the final so I could pass.", + "pos": 0.143, + "neu": 0.611, + "neg": 0.246, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1c3" + } + }, + { + "text": "She is clear to understand but moves very slow compared to other classes. Her tests are tough and she is not the type to give out free points. She finished her last 2 lessons on the LAST day of class (just 3 days before final) -_- She does not help you prepare for the final which resulted in many students failing the final Try not to take her", + "pos": 0.08, + "neu": 0.804, + "neg": 0.116, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1c4" + } + }, + { + "text": "She cares about her students learning and will always make an extra effort to clear your concept. Her test are bit tough. She is proactive in anticipating the problem. very detail oriented", + "pos": 0.212, + "neu": 0.682, + "neg": 0.106, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1c5" + } + }, + { + "text": "Tests were good format BUT she expected explanations for every detail (in very limited time) and thought that was how the final was supposed to be. Did not prep you for final. Could only explain hardest part of lessons (ie conic sections) one way. Curved a ton and dropped an exam but half of class still got below c's.", + "pos": 0.032, + "neu": 0.923, + "neg": 0.045, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1c6" + } + }, + { + "text": "In my class, she taught us the material in the beginning clearly. However, she went through it too slowly and we barely finished the curriculum. On test she made everyone write every detail of work, which normally you would not have to show, especially when in a rush to finish in time. Luckily she curved the final grades.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d5e7cd60fca157e5e1c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e8cd60fca157e5e1c9" + }, + "professor_name": "Peter Schlosser", + "rating": 4.9, + "department": "Speech department", + "comments": [ + { + "text": "AMAZING PROFESSOR FOR PUBLIC SPEAKING ENGENE LANG! NEW SCHOOL BEXT TEACHER IN THE WORLD", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1ca" + } + }, + { + "text": "There is no book needed. Is you miss an assignment you have basically until the last class to do it. He is very funny and interesting.", + "pos": 0.193, + "neu": 0.688, + "neg": 0.119, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1cb" + } + }, + { + "text": "He explains everything clearly...everything on test is reviewed", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1cc" + } + }, + { + "text": "Fantastic Teacher and greattt guy, too", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1cd" + } + }, + { + "text": "LOVE HIM. Not only is he a great prof. he is a really nice man. He has a great sense of humor and understands how to work with adults.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1ce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d0" + }, + "professor_name": "Jorge Swett", + "rating": 4.2, + "department": "Chemistry department", + "comments": [ + { + "text": "The best TA I've had at CCNY. Always available, always clear about the material and his expectations. Cares whether you learn and how you do in the course.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d1" + } + }, + { + "text": "He is simply not good. He has no clue and just brags about getting into dental school. He would be a poor dentist with his attitude.", + "pos": 0.0, + "neu": 0.749, + "neg": 0.251, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d2" + } + }, + { + "text": "He cares that you pass. He wants you to know the material. He even does tutoring on the side. He wont be a substitute but a good supplement. If he is teaching, take him.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d3" + } + }, + { + "text": "He is by far one of the few best TA at the college. He is engaged in helping his students and is always enthusiastic and patience. Take him and show up to class and you will learn much. Highly recommended.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d4" + } + }, + { + "text": "He is helpful. Whenever you have a question, Jorge is there to assist you. Completely trust him to work on any projects. A very good TA because he shares the sense of duty that is entrusted to him by the Chairman and students. Highly recommended.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d7" + }, + "professor_name": "Henry Paclian", + "rating": 4.1, + "department": "Economics department", + "comments": [ + { + "text": "He's old school. Explains difficult concepts well. Friendly if you ask him econ questions or career advice, but gets irritated when you ask him to change deadlines or ask for extra credit. Our group enjoyed writing our paper. His exams are tough, but don't have surprises. One of the better professors at City College.", + "pos": 0.22, + "neu": 0.644, + "neg": 0.136, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d8" + } + }, + { + "text": "He's strict and the subject is not easy. But his presentations were very clear. I heard horror stories about econometrics from friends who have taken other courses, but I was surprised that I actually liked the course. Do the work, and youll be fine.", + "pos": 0.271, + "neu": 0.617, + "neg": 0.113, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1d9" + } + }, + { + "text": "He is very strict. All he does in class is go over the slides that helps you with your group presentation. His tests are similar to the home works. but he never goes over the home works or do any similar problems in class. so for the tests you're on your own which is very hard to pass. but he says he curves. didn't enjoy his class", + "pos": 0.024, + "neu": 0.853, + "neg": 0.122, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1da" + } + }, + { + "text": "This class is not easy, but you will really learn econometrics and how to write a research paper. He doesn't check attendance but espects you to be prepared when youre in class. He calls students randomly. Exams are very similar to book exercises. Be prepared to work hard.", + "pos": 0.09, + "neu": 0.846, + "neg": 0.064, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1db" + } + }, + { + "text": "He is very strict and be prepared to do his assignments even though they are NOT mandatory.", + "pos": 0.105, + "neu": 0.828, + "neg": 0.067, + "_id": { + "$oid": "6711d5e8cd60fca157e5e1dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e9cd60fca157e5e1de" + }, + "professor_name": "Yoon Jae Lee", + "rating": 3, + "department": "Music department", + "comments": [ + { + "text": "Professor Lee is a pianist, orchestrator, arranger, and conductor. He asks that you practice everyday, and is incredibly helpful if you show interest in improving. He expects you to be very focused, and is patient with those that are there every class, putting in effort. He evaluates your playing every week, and assigns 2 concert reports.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1df" + } + }, + { + "text": "I found this class very dissatisfying. He is a poor communicator, and not very concerned with the feelings of his students. I was appalled by his lack of concern and the way he handled certain situations. I regret taking this class, and found myself discouraged and disengaged. I do not recommend this professor.", + "pos": 0.031, + "neu": 0.674, + "neg": 0.295, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e0" + } + }, + { + "text": "He's so IMPATIENT! He doesn't know how to teach a beginner. He ASSUMES that everyone knows about the piano and how to play already. He doesn't explain things thoroughly and he yells ALOT. DO NOT TAKE HIS CLASS! Not to mention Attendance/lateness are important to him yet he showed up late to every class the whole semester WORST PIANO PROFESSOR EVER!", + "pos": 0.06, + "neu": 0.813, + "neg": 0.127, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e1" + } + }, + { + "text": "Beginning for Piano. This is what he teaches. He is a conductor himself. He plays piano and violin. He does has a little attitude when he's upset. Easy A if you put time into practice.", + "pos": 0.124, + "neu": 0.81, + "neg": 0.066, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e2" + } + }, + { + "text": "Although he was a little disorganized at the beginning, he seems very knowledgeable about orchestration. I was able to understand what orchestration is all about and I got a good grade. I recommend him as a professor.", + "pos": 0.131, + "neu": 0.823, + "neg": 0.046, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e5" + }, + "professor_name": "Shayesteh Esmaeili-Mahani", + "rating": 2.6, + "department": "Civil Engineering department", + "comments": [ + { + "text": "I thought it will be more interesting :((", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e6" + } + }, + { + "text": "Simply a disaster.....cannot teach effectively at all!", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e7" + } + }, + { + "text": "Shes horrible. Sit all the way up front cause she talks very low, and unclear. She only explains theory, no examples and is very picky grading, will take points off for the most stupid things. Shes a nice lady, but a bad teacher.", + "pos": 0.036, + "neu": 0.69, + "neg": 0.274, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e8" + } + }, + { + "text": "Very helpful. Not an easy class must work hard. She gives same test every semester so just ask someone who already took that class. Lot of Hw. Final is veryyyyyyyyyyyyyy easy.", + "pos": 0.163, + "neu": 0.734, + "neg": 0.103, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1e9" + } + }, + { + "text": "I was trying to switch out from her class at the beginning cuz of her accent. However, I find her very helpful on the course materials and I was keep hearing bad things about the professor for the other session. I am really glad that I did not switch out! Do your homework and labs on time, and go to her lecture everyday. she is very nice!", + "pos": 0.131, + "neu": 0.823, + "neg": 0.046, + "_id": { + "$oid": "6711d5e9cd60fca157e5e1ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eacd60fca157e5e1ec" + }, + "professor_name": "Vincenzo Enea", + "rating": 3.5, + "department": "Biology department", + "comments": [ + { + "text": "Pr. Enea is one of my favorite professors at BMCC, he is very caring, always ready to help, responds to your emails very promptly, and is there for you through out the whole semester. Also very understanding. His lecturers a bit boring, but it's science, and we don't go to college for fun. Exams are hard, but he reviews before, take notes!", + "pos": 0.179, + "neu": 0.775, + "neg": 0.046, + "_id": { + "$oid": "6711d5eacd60fca157e5e1ed" + } + }, + { + "text": "Professor Enea is very helpful and made Genetics for me a bit easier. I was never good and Genetics but it was tolerable with him. His lectures is a bit boring but he is easier then all the other genetics prof. There is 2 exams, 1 is drop and a final. Also do all Homework in recitation. Really easy 20 percent of your overall grade.", + "pos": 0.155, + "neu": 0.751, + "neg": 0.095, + "_id": { + "$oid": "6711d5eacd60fca157e5e1ee" + } + }, + { + "text": "pretty helpful professor. Really cares about how the students are doing in the class. One of the est professors in CCNY", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d5eacd60fca157e5e1ef" + } + }, + { + "text": "Pretty laid back and easy to confront about any confusion regarding the material. Lectures were boring, but if you attend class and study his outlines it should be an easy class.", + "pos": 0.211, + "neu": 0.667, + "neg": 0.123, + "_id": { + "$oid": "6711d5eacd60fca157e5e1f0" + } + }, + { + "text": "this professor is a really boring lecturer.. you pretty much learn all the material either on ur own.. or at recitation... and wont let you take the exams if you dont attend recitation.. overall.. so far.. its a difficult class...", + "pos": 0.071, + "neu": 0.817, + "neg": 0.112, + "_id": { + "$oid": "6711d5eacd60fca157e5e1f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eacd60fca157e5e1f3" + }, + "professor_name": "Andrea Seligman", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "ONE OF THE BEST PROFS AT CCNY. IF YOUR DEBATING ON TAKING HER, DONT. SHE MAKES CLASS VERY EASY. CLASS CONSISTS OF TAKE HOME MIDTERM AND FINAL AND EASY 2 PAGER ESSAYS SHE MAKES WORK VERY CLEAR AND OFFERS EXTRA CREDIT. SHE IS SUCH A SWEET LADY AND HER LITTLE JOKES MAKE U WANT TO PUT HER IN YOUR POCKET LOL LISTEN TAKE HER THATS IT TAKE HER!!!!!!!!", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d5eacd60fca157e5e1f4" + } + }, + { + "text": "Prof. Seligman really cares about her work. Being the only (I believe) Africanist in the entire college, it can be hard covering everything without glossing over. In this masters level course, we read a lot, but the papers and reading requirements were laid out very well, and she was always around outside of class to help. One of the best at CCNY!", + "pos": 0.204, + "neu": 0.78, + "neg": 0.016, + "_id": { + "$oid": "6711d5eacd60fca157e5e1f5" + } + }, + { + "text": "she was one of the best professors i had in ccny. really helpful and always giving feedback. exams are easy if you use her study guide. papers are fun and easy as well. she's a fair and easy grader. no attendance required.", + "pos": 0.433, + "neu": 0.531, + "neg": 0.036, + "_id": { + "$oid": "6711d5eacd60fca157e5e1f6" + } + }, + { + "text": "I have taken professor Seligman for two semesters and am taking her for a summer class and the upcoming fall as well. She is an amazing professor who is super passionate in what she teaches. Make sure to read before coming to her class because she discusses it. She tells you exactly what she expects and is completely fair when it comes to grading.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d5eacd60fca157e5e1f7" + } + }, + { + "text": "She is one of the best professors I have had in the three and a half years I have been there. Attend her class because it is enjoyable and you will learn a lot from it. There are five papers and if you go to her before the papers are due she gives good feedback. She is clear in what she expects on the papers and little effort goes a long way.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d5eacd60fca157e5e1f8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eacd60fca157e5e1fa" + }, + "professor_name": "Haitham Abdullah", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "One of the best professors I have ever had. Very intelligent and very kind. This class isn't easy. I studied more for this class than I had to for calc 201.", + "pos": 0.276, + "neu": 0.665, + "neg": 0.059, + "_id": { + "$oid": "6711d5eacd60fca157e5e1fb" + } + }, + { + "text": "He is amazing! He is a hard grader when it comes to testing but they are based on small (3-4 page) readings. If you want to actually study something and enjoy it take him. Don't be scared because he acts tough, he's a very cool guy.", + "pos": 0.263, + "neu": 0.686, + "neg": 0.052, + "_id": { + "$oid": "6711d5eacd60fca157e5e1fc" + } + }, + { + "text": "Absolutely Amazing. Loved taking him for Arts History. Engaged my brain far beyond the pieces if art that you have to study. Just do that. Study the review he gives you. Show up to class ON TIME. Go to the MET and do the papers. PARTICIPATE (ie. volunteer to read in class). Do not drink anything in class other than \"water or brandy\" lol", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d5eacd60fca157e5e1fd" + } + }, + { + "text": "This guy is the MAN, you must show up in the class. DO NOT BE LATE. Read 3 pages that he gives every 2 weeks and you get an easy A. Tests are easy and are based in those 6 or 7 pages of text. I had the pleasure of having him for ART History, I would definitely take him again in the future", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d5eacd60fca157e5e1fe" + } + }, + { + "text": "One of the best profs I've taken. Graded on tests and review papers based on trips to the MET. Very strict on attendance and writing skills but that's something I like in profs. Make sure to read lectures before class AND PLEASE MAKE SURE YOU HAVE BASIC WRITING SKILLS BEFORE HE GIVES A SPEECH ON HOW DUMB THIS GENERATION IS THAT LASTS HALF THE CLASS", + "pos": 0.207, + "neu": 0.724, + "neg": 0.068, + "_id": { + "$oid": "6711d5eacd60fca157e5e1ff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ebcd60fca157e5e201" + }, + "professor_name": "Timothy Collins", + "rating": 3.2, + "department": "Architecture department", + "comments": [ + { + "text": "decent prof, not so great human. he teaches fine, gives good feedback and you will learn a lot. but he takes pride in being hard and smirks while saying everyone is gonna get a C. he makes you work hard but will not reward you for it. i think he needs to mature a little -maybe he'll be wiser/better in 20 yrs", + "pos": 0.137, + "neu": 0.731, + "neg": 0.132, + "_id": { + "$oid": "6711d5ebcd60fca157e5e202" + } + }, + { + "text": "He has prferred students and does not care about the rest of the class.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d5ebcd60fca157e5e203" + } + }, + { + "text": "He always said \"It's okay to do wrong drawings just do as many as you can, because first time is never right.\" He encourages students to really try. He also brings many critics/ architect friend, Justin etc to have more dialogue for students even the desk critics. \r In terms of grade, too stingy.", + "pos": 0.08, + "neu": 0.723, + "neg": 0.197, + "_id": { + "$oid": "6711d5ebcd60fca157e5e204" + } + }, + { + "text": "He is not one of the better prof in my experience, he does know a lot but not the necessary information or help needed for 4th yr. He is perhaps more adequate for 2nd yr.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e205" + } + }, + { + "text": "Taken Collins Fall 06 /Spring 07 he's helpful and concern with links conceptual idea into project with models and drawing (Craftsmanship Extremely important). If believe that Wed/Sat studio is weak or EASY take Collins. You will see how WEAK and EASY Wed/Sat is.. Yeah right\u2026\r Wed/Sat is by far the BEST session course", + "pos": 0.272, + "neu": 0.635, + "neg": 0.092, + "_id": { + "$oid": "6711d5ebcd60fca157e5e206" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ebcd60fca157e5e208" + }, + "professor_name": "Tanya McKinnon", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "She is an amazing Professor. She encouraged all her students to speak up, created a safe environment for it and provided us with her own personal experience. She's funny, approachable and cares for her students but do expect to read every week. She gave us excellent diverse books to read and discuss. Some of those books are now my favorites <3.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e209" + } + }, + { + "text": "Love her! Semester starts with reading a few short childrens books per week and progresses to reading longer young adult books towards the end. All the books are so good. If you do the 2-3 writing assignments, attend class, and participate often, you will get an A. The class is really enjoyable and she is great.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e20a" + } + }, + { + "text": "Very intelligent and sharp-witted. Keeps the class engaged in deep and thought-provoking conversations. Often goes on tangents, but they are always worthwhile. You will learn a lot just through reading and discussion with her--without the stress of examinations and long papers.", + "pos": 0.148, + "neu": 0.774, + "neg": 0.077, + "_id": { + "$oid": "6711d5ebcd60fca157e5e20b" + } + }, + { + "text": "Great professor! Easy going...and very helpful", + "pos": 0.776, + "neu": 0.224, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e20c" + } + }, + { + "text": "I learned a lot from this publishing class. Tanya's teaching style was fine.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e20d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ebcd60fca157e5e20f" + }, + "professor_name": "Yougashwar Budhoo", + "rating": 4.9, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "By no way is this Prof non- caring as the previous rater claim. We are in college and is responsible for our work...If you show interest in the class and want to learn, Prof will give you all the help you need and will work with you. If you want to be a slacker, he will leave you alone and dedicate his time to students who wants it", + "pos": 0.176, + "neu": 0.754, + "neg": 0.069, + "_id": { + "$oid": "6711d5ebcd60fca157e5e210" + } + }, + { + "text": "probably the most easy non-caring teacher u will ever meet. guaranteed A", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e211" + } + }, + { + "text": "very helpful to students", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e212" + } + }, + { + "text": "best teacher and very easy!!! A++", + "pos": 0.674, + "neu": 0.326, + "neg": 0.0, + "_id": { + "$oid": "6711d5ebcd60fca157e5e213" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5ebcd60fca157e5e214" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eccd60fca157e5e216" + }, + "professor_name": "Julio Matos", + "rating": 4.9, + "department": "Theater department", + "comments": [ + { + "text": "An absolute ANGEL! Talented and brings out the best in people. Great soul and heart. God Bless this man!", + "pos": 0.621, + "neu": 0.379, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e217" + } + }, + { + "text": "Very good prof, makes the class fun and brings you out of your shell. Really recommend him, allows non theatre majors to enjoy the class", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e218" + } + }, + { + "text": "if you are taking musical theatre workshop porf. matos is your man. If you plan on taking this be prepared to work although he is a kind hearted man he expects your best work as he does his to to get your songs. Don't take his class if you havent already taken acting 1 and 2.this class is mostly about the acting! the ability to sing is just a +", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e219" + } + }, + { + "text": "Prof. Matos is one of the best profs i've ever had. He wants you to do the best you can and is always there to help you. He def helped me! He's nice, funny, attendence is always mandatory, but you wouldnt want to miss a class with Matos as your prof. Take him! You won't regret it!! I took him twice and am taking another class with him next semester", + "pos": 0.223, + "neu": 0.76, + "neg": 0.017, + "_id": { + "$oid": "6711d5eccd60fca157e5e21a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5eccd60fca157e5e21b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eccd60fca157e5e21d" + }, + "professor_name": "Zachary Kahn", + "rating": 3.9, + "department": "Psychology department", + "comments": [ + { + "text": "Zach is a great professor. He cares about people, and his students. Lots of empathy. He is doing clinical psychology, and I'm sure he'll make a great psych one day. I would take again.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e21e" + } + }, + { + "text": "A very kind person and good lecturer. He is passionate about the subject and that shows in his discussions.", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e21f" + } + }, + { + "text": "Great professor! He provides students with the best reading material ever written about childhood pathology. He highly encourages in students critical thinking through the discussions in class and writing assignments. Material is learned in a nice and stress-free way.", + "pos": 0.287, + "neu": 0.668, + "neg": 0.045, + "_id": { + "$oid": "6711d5eccd60fca157e5e220" + } + }, + { + "text": "The professor is still a student himself - so he hasn't had much teaching experience. The class is very unstructured and he just lectures from his seat. It would have been more helpful if he provided any notespowerpoint for the students to refer to. It was a laid back class overall.", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e221" + } + }, + { + "text": "We had a final paper, 50% of the grade but broken into 3 separate grades (outline, rough draft, and final draft). Participation attendance was 20% and five response papers worth 30%. The lectures were interesting and taught me a lot. The class was not what I expected in a good way.", + "pos": 0.16, + "neu": 0.772, + "neg": 0.068, + "_id": { + "$oid": "6711d5eccd60fca157e5e222" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eccd60fca157e5e224" + }, + "professor_name": "Blenkell Williams", + "rating": 4.4, + "department": "Mathematics department", + "comments": [ + { + "text": "Lenient grader. Lecture is clear. Very fair on the exams and quizzes. Very good professor.", + "pos": 0.488, + "neu": 0.512, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e225" + } + }, + { + "text": "Marvelous", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e226" + } + }, + { + "text": "His exams are easy. Gives review before every exam, do those and you will be fine. knows his stuffs, but not the best at explaining. easy grader.", + "pos": 0.207, + "neu": 0.662, + "neg": 0.131, + "_id": { + "$oid": "6711d5eccd60fca157e5e227" + } + }, + { + "text": "He is one of the best Calc professors i ever had. He cares about students , most of the class gets A and B definitley take him for next level math", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e228" + } + }, + { + "text": "Professor WIlliams is an adjunct professor, he knows his stuff but doesn't explaiin it very well, but e drops one out of 3 tests and basically shows you where to find test questions, very lenient grader.", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d5eccd60fca157e5e229" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5edcd60fca157e5e22b" + }, + "professor_name": "Louay Khraish", + "rating": 4.2, + "department": "Media Arts department", + "comments": [ + { + "text": "Amazing. Learned so much. He gives assignments that some people might think is annoying (blog posts, getting social media accounts), but if you come with an open mind, you can actually enjoy the experience and understand why he has you do those things. And he really cares about you speaking up and having a voice outside of class. Inspirational.", + "pos": 0.218, + "neu": 0.756, + "neg": 0.026, + "_id": { + "$oid": "6711d5edcd60fca157e5e22c" + } + }, + { + "text": "Like someone else mentioned there were 2 papers although they were short, a group project and weekly blogs we had to post on social media. The professor was friendly, always made sure we understood the course material and was available outside of class. Overall an interesting course, even if Arab studies isn't your major.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d5edcd60fca157e5e22d" + } + }, + { + "text": "Although the lectures were basically him getting us to copy down, everything he should us on the slideshow, you actually learn a lot. Through the semester all we did was 2 papers and a group project. We also had a blog that we posted on weekly and did some stuff with social media. Really cool teacher who had us delve into information about media", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d5edcd60fca157e5e22e" + } + }, + { + "text": "You'll learn a lot about media and communications. A textbook is required, but I didn't use it because the exams (only MC) are based on class lectures. He's also nice and grades you based on the quality of your work so don't be scared of his speech on attendance. I was absent 2 times and late 3, but I aced every test/paper/project and got an A+.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d5edcd60fca157e5e22f" + } + }, + { + "text": "Learned a lot.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5edcd60fca157e5e230" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5edcd60fca157e5e232" + }, + "professor_name": "Teresa Lopez-Castro", + "rating": 2.6, + "department": "Psychology department", + "comments": [ + { + "text": "One of the most thorough professors I've ever had. And if you're looking to go into research, experimental is really important. It's not an easy A, it's a lot of work, but it's worth the effort you put into it. She's no BS, but I don't blame her. Don't ask pointless questions. Be on top of your stuff & you'll be fine.", + "pos": 0.154, + "neu": 0.782, + "neg": 0.064, + "_id": { + "$oid": "6711d5edcd60fca157e5e233" + } + }, + { + "text": "Do not even consider her. How do you have time to make us meditate every morning, but you could not make us a review sheet for the final or make the quizzes available for us to practice? Makes no sense. She literally makes this class extremely difficult for absolutely no reason. AND, she is super boring to listen to, especially at 9:30am!", + "pos": 0.071, + "neu": 0.757, + "neg": 0.172, + "_id": { + "$oid": "6711d5edcd60fca157e5e234" + } + }, + { + "text": "She is an amazing professor. Her lectures were very interesting & you truly learn a lot. Her exam is difficult but other than that the class is wonderful. You would love her class!!", + "pos": 0.382, + "neu": 0.58, + "neg": 0.038, + "_id": { + "$oid": "6711d5edcd60fca157e5e235" + } + }, + { + "text": "Don't you ever take this professor, she is the worst professor I have ever had at city college. she gives pop quizzes but never tells you what grade you get on the quiz. its no midterm in this class, and the final is cumulative! you have to do a research paper divided in 3 parts which are very hard. TA's are not helpful either.", + "pos": 0.0, + "neu": 0.849, + "neg": 0.151, + "_id": { + "$oid": "6711d5edcd60fca157e5e236" + } + }, + { + "text": "Expect to be held to unclear high expectations with no feedback on your grades. If you are concerned with a grade make sure to keep a record of all communications with her and your TA so when the time comes to take it to management you have hard proof. Also, the writing lab will not be able to help because like your TA they will not understand.", + "pos": 0.101, + "neu": 0.823, + "neg": 0.076, + "_id": { + "$oid": "6711d5edcd60fca157e5e237" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5edcd60fca157e5e239" + }, + "professor_name": "Amir Mohsen Abolhassani", + "rating": 3.4, + "department": "Computer Science department", + "comments": [ + { + "text": "Professor Toliyat is one of the best computer science professors I ever had. He is one of the only few that gives good feedback on your code and will guide you to be a better programmer. He applies his interest in algorithms to the curriculum and it enriches the course. He gives daily labs, but they will whip you into shape and improve your skills.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d5edcd60fca157e5e23a" + } + }, + { + "text": "This teacher assistant is beneficial, and numerous lab assignments are okay, but two lab quizzes are complicated.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5edcd60fca157e5e23b" + } + }, + { + "text": "He is fantastic. he cares about every student. he helps all. he doesn't like to give a student a low grade. I will definitely take him because he has learned me how to code.", + "pos": 0.27, + "neu": 0.635, + "neg": 0.095, + "_id": { + "$oid": "6711d5edcd60fca157e5e23c" + } + }, + { + "text": "Computer science lab assignments are not easy.", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d5edcd60fca157e5e23d" + } + }, + { + "text": "Just dont.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5edcd60fca157e5e23e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eecd60fca157e5e240" + }, + "professor_name": "Collin Ashley", + "rating": 3, + "department": "Sociology department", + "comments": [ + { + "text": "The amount of work could get overwhelming really quick. There's weekly quizzes and essays due before class based on at least an hour long reading. His lectures for the material are amazing tho, and discussions were just as good. However, the class is not an easy A. Tough grader too.", + "pos": 0.118, + "neu": 0.813, + "neg": 0.069, + "_id": { + "$oid": "6711d5eecd60fca157e5e241" + } + }, + { + "text": "I would recommend you do not take this professor. He grades all the papers out of 12, so if your paper isn't perfect he is perfectly fine giving you a 7/12 (58/100). He also grades everything last minute, so by the time you realize how he expects essays to be written, it's already finals week. There are easier classes out there.", + "pos": 0.191, + "neu": 0.767, + "neg": 0.042, + "_id": { + "$oid": "6711d5eecd60fca157e5e242" + } + }, + { + "text": "I would not recommend him. He is not good at grading.", + "pos": 0.0, + "neu": 0.666, + "neg": 0.334, + "_id": { + "$oid": "6711d5eecd60fca157e5e243" + } + }, + { + "text": "The professor was very lenient in terms of grading. There were sixteen weeks worth of assignments such as critical thinking writings and worksheets. However, you only needed to do ten of them, five of each. There was also a documentary essay and a small introduction post. Just watch the videos and do the readings and you should be good.", + "pos": 0.112, + "neu": 0.853, + "neg": 0.036, + "_id": { + "$oid": "6711d5eecd60fca157e5e244" + } + }, + { + "text": "Its the usual workload but the amazing lectures make up for it. Hes lenient in grading papers as long as youre not making typos. Attendance is mandatory he takes it in the beginning of class so be on time. Do the readings if you want to participate and turn your assignments in on time. literally easy A. Take him!", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d5eecd60fca157e5e245" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eecd60fca157e5e247" + }, + "professor_name": "Oliver St John", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "I had him in Fall 2018 and I still remember how great he was. He was my first college professor and I remember his teachings and kindness. I gained really meaningful insights and lessons from his writing crafts. I also got the chance to meet life long friends in his class that were by my side throughout college. A gem, thankful to him.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d5eecd60fca157e5e248" + } + }, + { + "text": "super nice and really wants you to do your best! if he can see you actually care about your work/grade he tries to help you out with due dates. assignments aren't hard and if you have any questions he tries to explain it differently until you get it. definitely recommend taking him!!", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d5eecd60fca157e5e249" + } + }, + { + "text": "He barely teaches you any material and he takes way too long to even explain one thing, assignments are unclear af and then youll get a bad grade for how you interpreted it", + "pos": 0.0, + "neu": 0.849, + "neg": 0.151, + "_id": { + "$oid": "6711d5eecd60fca157e5e24a" + } + }, + { + "text": "Definitely a gem in CCNY!! His class is really chill and relax. Oliver is very sweet and considerate, noted that students were also having a tough time, so he lets students hand in papers a little bit late, REALLY FLEXIBLE!!! Show him how much you care the essay and show your effort, and he'll give you a nice grade definitely!!TAKE HIM!!EASY A!!!", + "pos": 0.326, + "neu": 0.656, + "neg": 0.019, + "_id": { + "$oid": "6711d5eecd60fca157e5e24b" + } + }, + { + "text": "The sweetest goofball there is. His giggle and relatability makes the class fun and relaxed. Easy grader, gives great feedback and is always free to help. Sometimes gives vague feedback and can seem a little too chill, but always helps. Make sure you make friends because you will be peer reviewing each assignment. Easy A.", + "pos": 0.396, + "neu": 0.587, + "neg": 0.016, + "_id": { + "$oid": "6711d5eecd60fca157e5e24c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5eecd60fca157e5e24e" + }, + "professor_name": "Steven Kidder", + "rating": 3.8, + "department": "Earth Science department", + "comments": [ + { + "text": "Professor Kidder is a really nice and caring guy. He is very nip picking about assignments but he also curves so its not something to worry too much about. He does seem to get confused pretty easily but he is helpful when you work with him.", + "pos": 0.306, + "neu": 0.645, + "neg": 0.049, + "_id": { + "$oid": "6711d5eecd60fca157e5e24f" + } + }, + { + "text": "You just have to show up to each speaker's lecture, ask a question to them that is relevant to their presentation or their career, and submit a document at the end of the semester with the list of your questions and the answers you received from the speakers. It's pretty straightforward and I had no issues with the professor.", + "pos": 0.051, + "neu": 0.913, + "neg": 0.035, + "_id": { + "$oid": "6711d5eecd60fca157e5e250" + } + }, + { + "text": "Very helpful during his office hours and in general; Labs are harder than usual, but if you have a solid TA and communicate with your peers, you should be ok. Quizzes for almost every topic, a midterm, a final, and a group project at the end of semester. Kidder is best at teaching when he's not reading off slides but will explain more when asked", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d5eecd60fca157e5e251" + } + }, + { + "text": "I had Prof. Kidder During Spring 2021 Semester. The course wasn't easy but he was a very good and accommodating prof. I had taken this as an elective Credit, as I speak as a Mechanical Engineering Student. This Isn't an Easy A but you'd have to really not care and actively try to fail to fail. Any problems I had with the class were the TA's fault.", + "pos": 0.083, + "neu": 0.617, + "neg": 0.3, + "_id": { + "$oid": "6711d5eecd60fca157e5e252" + } + }, + { + "text": "This professor makes the material very complicated and takes SO many points off your labs for even the smallest mistakes. He doesn't go too much into detail on how to do them either which doesn't help at all, so you're forced to work alone or with a group (my experience was awful since everyone in the class was rude, unapproachable, and unhelpful)", + "pos": 0.0, + "neu": 0.777, + "neg": 0.223, + "_id": { + "$oid": "6711d5eecd60fca157e5e253" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5efcd60fca157e5e255" + }, + "professor_name": "Lynne Rosenthal", + "rating": 1.6, + "department": "Humanities department", + "comments": [ + { + "text": "Worst professor for real", + "pos": 0.0, + "neu": 0.423, + "neg": 0.577, + "_id": { + "$oid": "6711d5efcd60fca157e5e256" + } + }, + { + "text": "If this class was not needed for graduation i would not take it !! she is unorganized , RUDE, and puts alot of pressure on her students as if theyre only taking one class. You must earn you grade in every class,but she expects too much. She wants you to participate but if you dont answer her questions the way she would its wrong! AVOID AT ALL COST", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d5efcd60fca157e5e257" + } + }, + { + "text": "Very harsh with grading and has unclear rubrics. Expects a lot from students. Hard to reach outside of class. If you don't go to class you will fail. Also do the reading because she goes down her attendance list and calls on people at random.", + "pos": 0.021, + "neu": 0.781, + "neg": 0.197, + "_id": { + "$oid": "6711d5efcd60fca157e5e258" + } + }, + { + "text": "She's disorganized and can't keep track of the curriculum correctly. Easy if you follow directions, but annoying bc she wants outlines/drafts structured exactly her way. If you sit in the back she won't know who you are, people leave her class and she doesn't care/notice. Gave a final based on a book we just began a few days before the exam.", + "pos": 0.03, + "neu": 0.872, + "neg": 0.099, + "_id": { + "$oid": "6711d5efcd60fca157e5e259" + } + }, + { + "text": "She's extremely disorganized and goes off topic. Bad with timing too. If you read the books and write the papers, you'll be fine. She also gives little quizzes at the beginning of class sometimes which are essentially writing what you remember from the assigned reading. Despite her dreadful personality, she is not a tough grader.", + "pos": 0.091, + "neu": 0.812, + "neg": 0.097, + "_id": { + "$oid": "6711d5efcd60fca157e5e25a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5efcd60fca157e5e25c" + }, + "professor_name": "Sokunthary Svay", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "Truly the best English teacher. She made everything easy to understand and prioritized students' needs above anything else. Her essays and work for class was very doable with flexible deadlines. I feel lucky to have had her!", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d5efcd60fca157e5e25d" + } + }, + { + "text": "Professor Svay is the absolute sweetest, energetic, and caring English professor I've ever had. She gives strong feedback, is supportive and helpful towards your writing process, and makes you feel like you matter. I took FIQWS 10113 and it was always interesting, with light reading and a couple of easy-to-understand essays. Take her class!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d5efcd60fca157e5e25e" + } + }, + { + "text": "Professor Svay is absolutely amazing. She goes above and beyond and acts as a teacher, mentor, and friend. She ensures that everyone in class is heard and recognizes individual growth. If you're stuck on an assignment, she is there. 162W had three essays, weekly Instagram posts based on readings, and a couple additional writing assignments.", + "pos": 0.157, + "neu": 0.811, + "neg": 0.032, + "_id": { + "$oid": "6711d5efcd60fca157e5e25f" + } + }, + { + "text": "If you're an English major, take her. She'll teach you well. If not? There are easier professors to take. She's very caring and wants you to feel comfortable in class. She'll notice you if you're struggling and reach out to help. Her essay assignments were very confusing, but it's clear she's really trying to teach you to write.", + "pos": 0.184, + "neu": 0.738, + "neg": 0.078, + "_id": { + "$oid": "6711d5efcd60fca157e5e260" + } + }, + { + "text": "She lets you send her drafts so that she can give you feedback, please take advantage of that. Always tries to make class fun :) I love her so much, please do yourself a favor and take her. Extremely understanding as well and is always there for you. She even calls you for conferences that she hosts so you know where you stand", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d5efcd60fca157e5e261" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5efcd60fca157e5e263" + }, + "professor_name": "Consuelo Senior", + "rating": 3.4, + "department": "Humanities department", + "comments": [ + { + "text": "Professor Senior is very friendly but also strict/ specific about how she wants things done. From the beginning of the semester, she makes her expectations clear. She also encourages us to pace ourselves and informed us that the final is cumulative. She does take a while to grade but if you do the work well and on time you will pass.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d5efcd60fca157e5e264" + } + }, + { + "text": "Professor Senior believes in her students. She is very passionate about the subject and about her students learning. She is very knowledgeable and inspirational. She gives practical examples. Great preparation for grad school and even for professional life after school. I highly recommend her classes.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d5efcd60fca157e5e265" + } + }, + { + "text": "you will learn from the books more than the professor , you read a total of 5 books and you are bombarded with questions that sometimes you can not even find in the book, she does not grade on time, meanwhile she expects students to do the work in a timely matter, very irressponsable . I dislike this class very much.", + "pos": 0.018, + "neu": 0.941, + "neg": 0.041, + "_id": { + "$oid": "6711d5efcd60fca157e5e266" + } + }, + { + "text": "The professor gave us all reading materials (books) at the beginning of the semester. She talked about pacing ourselves & not waiting till the last minute. Definitely challenges you. Great preparation for grad work. I learned a lot both content & tips for me professionally in the field.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d5efcd60fca157e5e267" + } + }, + { + "text": "Horrible. You will learn more from the books than the professor. She assigned in total of 5 books to read for the semester and sometimes will give handouts to read the day before we come into class. In the middle of this spring break we all have to read 3 chapter books. Just horrible overall.", + "pos": 0.0, + "neu": 0.883, + "neg": 0.117, + "_id": { + "$oid": "6711d5efcd60fca157e5e268" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f0cd60fca157e5e26a" + }, + "professor_name": "Murat Keyder", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Honestly I really like how Keyder teaches the class! He does his best to be engaging with the student and explains the material in a clear and concise way. Very chill and friendly guy, would definitely take him again!", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e26b" + } + }, + { + "text": "he is the best professor !!! definitely take him . you wont regret !! he is friendly , fun and easy to understand . very generous with HWs and quizzes . quick grader and very very helpful . He knows his thing .I would love to take him for my other math classes", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e26c" + } + }, + { + "text": "MURAT OMG!!! SUCH AN AMAZING PROFESSOR! He's one of the newest math professors at CCNY. He cares about his students and is funny. Quizzes counted as attendance and homework just do most of it and he will give you 100% on homework. Hopefully he teaches Calc 2 in the fall", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e26d" + } + }, + { + "text": "THIS IS FOR CALC 1 \nMurat is a great lecturer. He offers three tests that aren't too hard if you know the content, and he provides practice exams on Blackboard that are practically like the class exams. He's enthusiastic and allows for extension on hw. Attendance and class engagement aren't required, but he keeps track of who participates. TAKE HIM", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e26e" + } + }, + { + "text": "Took his class over the Winter, so I wasn't expecting a super good grade or anything. He knows what he's doing and won't hesitate to help you out if you need it.", + "pos": 0.124, + "neu": 0.735, + "neg": 0.142, + "_id": { + "$oid": "6711d5f0cd60fca157e5e26f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f0cd60fca157e5e271" + }, + "professor_name": "Dina Lopez", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "She's an amazing professor with so much knowledge and great insight. She makes the class very enjoyable. I wish I can take her again one of the best professors at ccny", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e272" + } + }, + { + "text": "Amazing Professor! Very clear syllabus and straight forward about what she wants. Her lessons are very informative as well. Makes the class fun. Would definitely take her again!", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e273" + } + }, + { + "text": "Professor L\u00f3pez is one of the best professors ive taken. Everything in the syllabus is clear. She gives amazing lectures and makes the class fun. Shes also a great person to talk to if you need help.", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e274" + } + }, + { + "text": "easy a", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e275" + } + }, + { + "text": "I think she takes everything into account attendance, homework, and the final. You can basically figure out your grade. This class is still easy, super easy, especially if you have a class that meets once a week.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e276" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f0cd60fca157e5e278" + }, + "professor_name": "Wendy Raver", + "rating": 4, + "department": "Judaic Studies department", + "comments": [ + { + "text": "This class is so heavy reading. Four textbooks were required for this class! The lectures were all over the place and confusing/ super fast to follow. There were no real notes for this class to look back on, or the lecture was jumping from one topic to the next, that taking notes was hard. There is NO clear grading rubric!!!", + "pos": 0.057, + "neu": 0.788, + "neg": 0.155, + "_id": { + "$oid": "6711d5f0cd60fca157e5e279" + } + }, + { + "text": "Prof. Raver teaches during the summer, but she is phenomenal & so knowledgeable in her field. This course was so interesting, will change your perspective of Biblical studies, even if you aren't religious. Reading involved, some quizzes are given (also a final exam) & you have to write a few papers but for a summer class, it is worth it!", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e27a" + } + }, + { + "text": "She was great, I really liked her. it's a shame she's leaving ('cept for summers). She gave a couple of papers, 2 short, easy quizzes, and that's about it. Class was always fun, interesting discussions about Jesus and religion, etc. If you can take a class with her - ether at CCNY in the summer or at Hunter, I'd really reccomend it.", + "pos": 0.214, + "neu": 0.745, + "neg": 0.041, + "_id": { + "$oid": "6711d5f0cd60fca157e5e27b" + } + }, + { + "text": "Wonderfuly teacher who knows everything about different religion. I took her for Jesus the Jew and it was great. She gives about 4 papers about 3-5 pages but it not hard to do. Also she doesnt pinalize you if its a late.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d5f0cd60fca157e5e27c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5f0cd60fca157e5e27d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f1cd60fca157e5e27f" + }, + "professor_name": "Patricia Moynagh", + "rating": 3, + "department": "Political Science department", + "comments": [ + { + "text": "Amazing. I read Plato for fun after taking this class", + "pos": 0.47, + "neu": 0.53, + "neg": 0.0, + "_id": { + "$oid": "6711d5f1cd60fca157e5e280" + } + }, + { + "text": "She is a very nice person but not very organized. We spent a lot of time learning about Plato and not much on Aristotle but needed to know both for final. Many times, the class discussion went off topic. She also did not provide a clear rubric for how she will grade the project or final.", + "pos": 0.035, + "neu": 0.918, + "neg": 0.047, + "_id": { + "$oid": "6711d5f1cd60fca157e5e281" + } + }, + { + "text": "She is knowledgeable, however, her lectures lack a clear structure. She is all over the place. But she is an easy A. There was an in-class midterm with a vocab review sheet, a final paper, and a final project. The class was not attendance heavy so missing class was not penalized.", + "pos": 0.097, + "neu": 0.809, + "neg": 0.094, + "_id": { + "$oid": "6711d5f1cd60fca157e5e282" + } + }, + { + "text": "Professor Moynagh was a fine teacher but seemed to be a little flakey and is not the best moderator. The majority of the classes we just people spitting out their opinions on contemporary events without relating to the material. There was hardly any work, so the class itself is easy, but I would have liked to have had actual academic discussion.", + "pos": 0.127, + "neu": 0.808, + "neg": 0.065, + "_id": { + "$oid": "6711d5f1cd60fca157e5e283" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f1cd60fca157e5e285" + }, + "professor_name": "Charlene Cambridge", + "rating": 3, + "department": "Freshman Year Experience department", + "comments": [ + { + "text": "She assigns alot of paperwork. But you get to design your own class. She is a fair grader.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d5f1cd60fca157e5e286" + } + }, + { + "text": "HORRIBLE INSTRUCTOR. She's unclear about what her expectations are for the class, does not stick to the syllabus and goes off on a lot of tangents. She's very unorganized as well. The books aren't a bad read, but the quality of her instruction really takes away from the class. Please save yourself the time and money and take another instructor.", + "pos": 0.157, + "neu": 0.783, + "neg": 0.06, + "_id": { + "$oid": "6711d5f1cd60fca157e5e287" + } + }, + { + "text": "Very helpful! Gives direct yet great feedback! You WILL learn a lot from her! Not an easy grader but if you work hard, you'll be rewarded! I don't regret taking this class even if it was the most challenging FIQWS!", + "pos": 0.298, + "neu": 0.638, + "neg": 0.064, + "_id": { + "$oid": "6711d5f1cd60fca157e5e288" + } + }, + { + "text": "She's great, but you need to work hard for her. You need to give all the requirements, homework and essays to her on time then you'll be fine. I really did learn a lot from her! She's great for me overall.", + "pos": 0.217, + "neu": 0.751, + "neg": 0.032, + "_id": { + "$oid": "6711d5f1cd60fca157e5e289" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f2cd60fca157e5e28b" + }, + "professor_name": "Maria Gavrutenko", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "She's the nicest and very chill TA. Her lab exams are very fair and gives good feedbacks on lab reports.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d5f2cd60fca157e5e28c" + } + }, + { + "text": "She doesn't care for her students at all. She goes by the rules way too much. Her grading is so harsh as well, like she has time to comment on every little thing in your lab report. Overall, her lab class was not that bad, exams were okay.", + "pos": 0.166, + "neu": 0.724, + "neg": 0.11, + "_id": { + "$oid": "6711d5f2cd60fca157e5e28d" + } + }, + { + "text": "One of the best T/A you can get. She is very caring and is aways willing to help groups out with their experiments, she will answer any equation you have.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d5f2cd60fca157e5e28e" + } + }, + { + "text": "Maria was great. She did an excellent job of explaining lab procedures, and the reasoning behind it all. She was very approachable and cared about whether we understood. A little tough in grading the lab reports but you are allowed a redo and the 2 grades get averaged together. Gave extra credit on both exams. It was an overall pleasant experience.", + "pos": 0.209, + "neu": 0.776, + "neg": 0.016, + "_id": { + "$oid": "6711d5f2cd60fca157e5e28f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f2cd60fca157e5e291" + }, + "professor_name": "Tatyana Kleyn", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "Truly an amazing professor! Would highly recommend her. You would learn SO much from her. I have taken 3 courses with her.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d5f2cd60fca157e5e292" + } + }, + { + "text": "She's an awesome human being. Have taken 2 courses with her, one in undergrad and now in grad school. Prof. Kleyn is defenetely someone you remember as an educator and inspirational human.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d5f2cd60fca157e5e293" + } + }, + { + "text": "She is a wonderful professor. Class was fun and engaging. You must do all of the readings in order to do well in class and start working early on your papers. I learned a lot in class.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d5f2cd60fca157e5e294" + } + }, + { + "text": "She engages her students with different teaching strategies from group work, whole-group disucssion, to powerpoint lecture. 70% is classroom participation, and 30% is online. She likes to smile as she talks, which many people assume she's an easy grader. Actually, she's kind of tough with grading papers.", + "pos": 0.189, + "neu": 0.778, + "neg": 0.033, + "_id": { + "$oid": "6711d5f2cd60fca157e5e295" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f2cd60fca157e5e297" + }, + "professor_name": "K Seigel", + "rating": 3.3, + "department": "Music department", + "comments": [ + { + "text": "do not take her class, she is boring, very strict.", + "pos": 0.0, + "neu": 0.796, + "neg": 0.204, + "_id": { + "$oid": "6711d5f2cd60fca157e5e298" + } + }, + { + "text": "Extremely boring! Makes staying awake difficult. She isn't a difficult teacher but, as I said, she's boring! Just do your 3 reports, your presentation, and study for your 2 quizzes/midterm/final, and you'll be ok.", + "pos": 0.04, + "neu": 0.776, + "neg": 0.183, + "_id": { + "$oid": "6711d5f2cd60fca157e5e299" + } + }, + { + "text": "she is simply the best in whole CCNY. She is extreamly helpfull, take her when you are strugling with ur gpa. I can assure you you will have an A. only two papers to do and two mcq exam including final. I highly recommend you this professor for a blind gpa.", + "pos": 0.159, + "neu": 0.795, + "neg": 0.046, + "_id": { + "$oid": "6711d5f2cd60fca157e5e29a" + } + }, + { + "text": "she is simply the best in whole CCNY. She is extreamly helpfull, take her when you are strugling with ur gpa. I can assure you you will have an A. only", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d5f2cd60fca157e5e29b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f3cd60fca157e5e29d" + }, + "professor_name": "Camille Kamga", + "rating": 1.3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "This is by far the worst professor I have ever had. Your grade is decided by 2 exams and several HW assignments. He has a really bad accent and does not explain the coursework. There are no notes in class, no handouts. Only him reading out of the textbook for 2.5 hrs. He does not assign hw, his teacher aids do. No one is ever available to help.", + "pos": 0.034, + "neu": 0.783, + "neg": 0.183, + "_id": { + "$oid": "6711d5f3cd60fca157e5e29e" + } + }, + { + "text": "He is busy with another things, looking his watch all the time to leave really sharp. His excuse \".. need to take the bus..\" he missed some classes. He doesn't even know what pedagogy is. hwk is assigned by TA and when you ask him, \" I don't know anything about hwk\" On the Test, be ready for surprises!! Tough grader. He is bad! Run if you can!!!", + "pos": 0.078, + "neu": 0.797, + "neg": 0.125, + "_id": { + "$oid": "6711d5f3cd60fca157e5e29f" + } + }, + { + "text": "He can not teach. Exam was really really really hard. There is 1 mid term and 1 final, each carry 45% of grade. He gave homework every alternative week. there was 7-10 problems in each homework and it carried only 10% of the grade.", + "pos": 0.0, + "neu": 0.895, + "neg": 0.105, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a0" + } + }, + { + "text": "He is not helpful and he doesn't explaining with clarity. Also he doesn't return your term exam, he will give it to you, but 5 min later will ask to return back, the solution, is a 5 min verbal brief explanation of the exam. Be aware that his references on handouts are not valid or are expired. Also he doesn't give real examples on class", + "pos": 0.043, + "neu": 0.908, + "neg": 0.048, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a3" + }, + "professor_name": "Johanna Dickson", + "rating": 4.3, + "department": "Architecture department", + "comments": [ + { + "text": "shes awesome", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a4" + } + }, + { + "text": "Very helpful first year professor. She pushes you to do work and is constantly giving advice on how to improve concept and models. She can constantly be late but its not as bad since most of the class is criticism of your work. In comparison to the other professors she makes you develop strong concepts. Great professor.", + "pos": 0.267, + "neu": 0.681, + "neg": 0.052, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a5" + } + }, + { + "text": "Definitely the best and most logical first year architecture professor.", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a6" + } + }, + { + "text": "She offers good (but sometimes vague) criticism and introduces unique concepts. She lets you get creative and her teaching style differs a lot from the other studio classes (in a good way). All of her assignments are necessary for each project review, so you won't end up wasting time. She doesn't have office hours so email her for questions.", + "pos": 0.177, + "neu": 0.747, + "neg": 0.077, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f3cd60fca157e5e2a9" + }, + "professor_name": "Raymond Strom", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "Easy grade, but he is really boring, and gives so many unnecessary works like you don't have other class, it will also end up costing you money with the projects he gives, if your taking him for English science there are other better, easier professors than him", + "pos": 0.219, + "neu": 0.722, + "neg": 0.058, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2aa" + } + }, + { + "text": "he likes to help his students to get better grades and improve their papers. the only things is the attendace and lateness.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2ab" + } + }, + { + "text": "very good teache cares about the success of his students. Not difficult if you keep up .. is always available and allows students to make up lost credit on final papers. You do get penalized for excess absences but other than that really great teacher.", + "pos": 0.288, + "neu": 0.683, + "neg": 0.03, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2ac" + } + }, + { + "text": "Great Guy, Caring, Educated, NO TESTS, ESSAYS only, gives you the benefit of the doubt, no problems, just dont be late and come to class, so respect, youll get a good grade", + "pos": 0.398, + "neu": 0.491, + "neg": 0.111, + "_id": { + "$oid": "6711d5f3cd60fca157e5e2ad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f4cd60fca157e5e2af" + }, + "professor_name": "Todd Magreta", + "rating": 4.6, + "department": "Art department", + "comments": [ + { + "text": "Good course", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b0" + } + }, + { + "text": "I took his 3 hour class, very boring but i got through it, he is very monotoned. I recommend just staying awake will help you pass his class", + "pos": 0.212, + "neu": 0.735, + "neg": 0.053, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b1" + } + }, + { + "text": "He knows a lot. I took Northen Renaissance with him. He brings to class a lot of great information and extras as well. It was a long 3 hours class,but he often makes some jokes to alleviate the long hours. He can be a tough grader though... but if you need help, send him an email and he will help you out. READ THE CHAPTERS!!", + "pos": 0.181, + "neu": 0.802, + "neg": 0.017, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b2" + } + }, + { + "text": "seems very difficult at first. just make sure you do your work, hand it in on time, and give him high quality work. 1 presentation, 3 questions to ask presenters, 1 paper broken down in 2 parts(pick something you can definitely write on). Even though he seems like he doesn't want to be there, you learn a ton about Romanesque and Gothic art.", + "pos": 0.145, + "neu": 0.759, + "neg": 0.096, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b5" + }, + "professor_name": "Paulette Forte", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Nice professor but your college grade is not about how nice the professor is, I strongly advice anyone to think twice before taking her class. For the midterm & final essays you are expected to know almost every term in four chapters of your choice to write about as a case study. Theres a 10pg essay & extra credit assignment which you would need2do", + "pos": 0.112, + "neu": 0.846, + "neg": 0.042, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b6" + } + }, + { + "text": "She knows her stuff!!! She pushes you so don't expect to slide by. You have to work in this class. However, if you put in the time and effort you will get plenty. Don't take her if you are looking for someone easy. But you will learn from her. She truly knows the topic of Behaviors in Organizations.", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b7" + } + }, + { + "text": "DO YOUR READING AND YOU WILL BE FINE. YOU MUST HAVE A BOOK. YOU MUST STUDY THE BOOK. DO NOT BE ABSENT. PARTICIPATE IN CLASS.", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b8" + } + }, + { + "text": "The course was very interesting. It was a great experience. I learned a lot how to behave at work.I will never learned about emotional intelligence and other important things if i didn't take this course. Dr. Forte is very knowledgeable, and very nice.Highly recommended.", + "pos": 0.263, + "neu": 0.71, + "neg": 0.027, + "_id": { + "$oid": "6711d5f4cd60fca157e5e2b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f5cd60fca157e5e2bb" + }, + "professor_name": "S Beckwith", + "rating": 2.6, + "department": "Art department", + "comments": [ + { + "text": "He doesn't give a lot of direction since this is an ART CLASS.it's about creativity and producing your own work. If you need a lot of guidance, maybe you're in the wrong place. He definitely brings a lot of experience and expertise. I think it's great to having been able to learn from him.", + "pos": 0.15, + "neu": 0.8, + "neg": 0.05, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2bc" + } + }, + { + "text": "Frequently showed up 20 min + late to class, was totally disorganized, did not have strong command of subject,i.e. was unable to properly explain movements of 4x5 camera. Honestly, he's not qualified to teach and my experience in his class was horrible.", + "pos": 0.06, + "neu": 0.765, + "neg": 0.175, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2bd" + } + }, + { + "text": "Intro photo class in black and white photography. He emphasizes quantity over quality, the idea being that if you shoot often enough, eventually you'll get a decent picture. Shoot more rolls than required and you'll get an A. Some people find him dismissive and unhelpful. He's helpful if you ask him for help, he won't assume you want help.", + "pos": 0.122, + "neu": 0.788, + "neg": 0.09, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2be" + } + }, + { + "text": "Professor Beckwith was recently hired this semester to teach photography. It is obvious that Beckwith holds the students he teaches in disdain. He is a little man and i'm sure all that emotional scarring due to being picked on his led him to be the scabby and spiteful person that he is. Beckwith needs to re-evaluate and learn how to respect all.", + "pos": 0.1, + "neu": 0.814, + "neg": 0.086, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2bf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c1" + }, + "professor_name": "Samira Ziaei", + "rating": 2.6, + "department": "Biology department", + "comments": [ + { + "text": "shes not really that helpful and yes she does hav favorites. she tends to ignore certain sudents when they ask her questions one time she was absent and the sub was way better !", + "pos": 0.246, + "neu": 0.639, + "neg": 0.115, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c2" + } + }, + { + "text": "Attendance is not required in the labs. You just read the lab manual and come for the tests and you will get 100. Tests are straight from the lab manual and barely take twenty minutes. The lab report is optional and extra credit. If you are late you may have to study the lab on your own.", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c3" + } + }, + { + "text": "the ABSOLUTE BEST LAB TEACHER...ever! she was an EXTREMELY EASY GRADER... yea she likes to talk about her family...so what? because of her, i passed bio with a B!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c4" + } + }, + { + "text": "Worst lab TA in the history of the world;if something happened to her the class can write her eulogy on basis of two classes with her= thats how much useless info about her life we know. She plays favorites. worst case scenario: tell her you're a parent,(preferably your imaginary kid is a girl). Drop this class ASAP.", + "pos": 0.07, + "neu": 0.74, + "neg": 0.19, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c7" + }, + "professor_name": "Christine Scanlon", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Although the class itself was mind-numbingly boring, the teacher is very nice and an easy grader. She also gives excellent feedback and is available whenever to discuss papers and corrections. Her lectures just include going over examples and assigning homework; there's not much else. She is very laid back and talks about anything with her students", + "pos": 0.151, + "neu": 0.813, + "neg": 0.036, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c8" + } + }, + { + "text": "Really nice and helpful, always listens to what you have to say, very engaged in class discussions. Great, LEGIBLE (!!) feedback on your papers. Easy A if you do the work.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2c9" + } + }, + { + "text": "AMAZING PROFESSOR!", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2ca" + } + }, + { + "text": "If you need help, she is always there for you. Send her emails if you have any questions for your essays. She is super nice and super helpful. Two group presentations and three essays in a semester. Feel comfortable in her class, must take her class.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d5f5cd60fca157e5e2cb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f6cd60fca157e5e2cd" + }, + "professor_name": "Monica Martell", + "rating": 4, + "department": "Education department", + "comments": [ + { + "text": "She is an excellent professor. I highly recommend her. Take her class, you won't regret it! Just make sure to turn in all your assignments on time, always be prepared for class, and participate and it is a guaranteed A.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2ce" + } + }, + { + "text": "Amazing professor. She knows her stuff. No lie, you will work for the grades, but you don't mind because she's so good and is so wonderful. I knew nothing about teaching until I met her. I highly recommend taking her classes, as she's very with it. She understands you may have little to no experience and grades well. I would recommend her!", + "pos": 0.293, + "neu": 0.659, + "neg": 0.049, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2cf" + } + }, + { + "text": "Overall an exellent Professor. She is really fun, very helpful and she knows her subject. She will make you work hard but is for your own good as a future educator. =)", + "pos": 0.309, + "neu": 0.661, + "neg": 0.029, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d0" + } + }, + { + "text": "She prophetically lets you know her car will break down. She also was in this mysterious 3 week jury duty task. She does not check your work, give you feedback, but if she can do something to legitimize her position, she does. She knows and the class does too she is not a real professor...barely a teacher. Just show up and kiss up.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d3" + }, + "professor_name": "Priyanka Dasgupta", + "rating": 4.2, + "department": "Art department", + "comments": [ + { + "text": "There were a lot of readings that she posted but honestly you don have to read them. Send her summaries of the mandatory responses by just viewing the first 2 pages of the readings and you will be fine. We did printmaking, lesson plans, collages and more. Very fun class. You can give things late and she will still accept them. Definitely recommend", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d4" + } + }, + { + "text": "Aggravating experience in this class, it was for my major and the professor didn't have much control over the classroom, it felt like certain loud students took over discussions and others were completely zoned out. The readings are dense. However some assignments were fun and made you think outside the box and I did learn a lot from the readings.", + "pos": 0.12, + "neu": 0.847, + "neg": 0.033, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d5" + } + }, + { + "text": "Much like the first comment said, she's a great teacher who inspires students to want to learn and explore the art world. She's very easy-going and caring which helps to create a comfortable atmosphere for students to ask questions and feel confident when doing their work.", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d6" + } + }, + { + "text": "Priyanka is one of the best professors at CCNY. Her passion creates an inspirational classroom environment. Her class consists of three projects which you present in class, with grading being lenient. Take her!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f6cd60fca157e5e2d9" + }, + "professor_name": "Donny Levit", + "rating": 4.3, + "department": "Theater department", + "comments": [ + { + "text": "Took Donny's Theater Hist 2 & 3. Never enjoyed a class more! He is a great person and wonderful teacher! He makes learning fun and really is interested in what you think and have to say. Very valuable to this school! Made learning a blast!", + "pos": 0.309, + "neu": 0.646, + "neg": 0.045, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2da" + } + }, + { + "text": "He is absolutely AMAZING! You do need to do the work, though. You can't slack. Only take him if you actually want to learn. He really knows his stuff and is so open and understanding. A great person too!", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2db" + } + }, + { + "text": "Absolutely Genius! Donny is a great professor. He's full of wonderful insight and clever quips. Also totally hot in that geeky professor sort of way.", + "pos": 0.329, + "neu": 0.623, + "neg": 0.047, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2dc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d5f6cd60fca157e5e2dd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f7cd60fca157e5e2df" + }, + "professor_name": "Luz Herrera", + "rating": 3, + "department": "Education department", + "comments": [ + { + "text": "You teach yourself. She just sit there and provides mundane feedback. You won't learn much in this course.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e0" + } + }, + { + "text": "The entire class consisted of student presentations on readings for the class. Contrary to syllabus instructions, everybody rehashed the readings, but Herrera did not correct anyone. All I heard was complaints. This professor is out to lunch. Waste of time and money.", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e1" + } + }, + { + "text": "She gives a good amount of work. She is respectful, passionate, and kind.", + "pos": 0.585, + "neu": 0.415, + "neg": 0.0, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e2" + } + }, + { + "text": "Very good professor with very clear guidelines. She is fun!", + "pos": 0.58, + "neu": 0.42, + "neg": 0.0, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e5" + }, + "professor_name": "Candace Brakewood", + "rating": 5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "At City you really come to appreciate the professors who provide clear syllabus's at the beginning of the semester. She gives great lectures and is very well spoken, keeps you awake! Do not miss any homeworks or class and do not slack on the study format she provides and you will do fine. There is no extra credit or curve.", + "pos": 0.217, + "neu": 0.722, + "neg": 0.061, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e6" + } + }, + { + "text": "She is the best teacher in Civil Engineering department. she gave 8 homework and each carry 5% of the grade. there were 2 exams and each carry only 15% of total grade. Group project carry 20% and 10% was for class participation. If you were regular and follow her instruction you never miss A.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e7" + } + }, + { + "text": "Transit Planning was an excellent course. She really worked heard and She also knew how to make students work for the course", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e8" + } + }, + { + "text": "She is very knowledgeable on the subject and she really know how to explain, she has and loves this vocation as professor", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2e9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f7cd60fca157e5e2eb" + }, + "professor_name": "Jose Ramirez", + "rating": 3, + "department": "International Studies department", + "comments": [ + { + "text": "The readings he provides are generally okay, but a bit overboard for an elective and some are absurdly long. I would not say his teaching methods are very effective for me, personally. The questions he asks about the subject are often confusing for myself and many individuals within the class. Would be better suited for a more advanced class.", + "pos": 0.185, + "neu": 0.781, + "neg": 0.034, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2ec" + } + }, + { + "text": "He is clear on what he expects from his students. He is also clear on assigments and what he is looking for as far as grading goes. He does give a lot of reading that later is discussed in class so PARTICIPATION is key. Although, he may be nit-picky about what he is looking for in papers, you do learn a lot. He is nice so feel free to communicate", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2ed" + } + }, + { + "text": "Super disinterested in the courseload. He didn't hand any of our assignments back to us so that we knew how to improve them - it was more of a pass/fail kind of situation.", + "pos": 0.172, + "neu": 0.761, + "neg": 0.067, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2ee" + } + }, + { + "text": "For this specific course he used 3 textbooks, and you had to read numerous texts for every class. Never provided any feedback or grades on any assignments. Lectures were long and boring however I did feel like I learned new concepts. If you do the work assigned and PARTICIPATE you should be fine.", + "pos": 0.076, + "neu": 0.883, + "neg": 0.041, + "_id": { + "$oid": "6711d5f7cd60fca157e5e2ef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f1" + }, + "professor_name": "Isabel Everaert", + "rating": 5, + "department": "Sociology department", + "comments": [ + { + "text": "She's a great professor, very easygoing and takes her time explaining each topic. Sometimes the lectures can get a little boring but all in all it was an easy class with simple assignments! take her ;)", + "pos": 0.25, + "neu": 0.715, + "neg": 0.035, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f2" + } + }, + { + "text": "She is very passionate about her subject! She doesn't have a clear grading criteria which make it hard to know what she expects but at the same time, it lets you explore more ideas since it is her first time teaching. There was a textbook involved but it wasn't needed as much. Most of the readings are articles she provides.", + "pos": 0.038, + "neu": 0.913, + "neg": 0.049, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f3" + } + }, + { + "text": "She was hands down one of my favorite professors at CCNY. The effort that woman put into the class was incredible. It was her first time teaching sociology of gender, but let me tell you that woman knows how to teach! She broke down each and every lecture in a way that was so so compelling, and the class is definitely super super easy!", + "pos": 0.287, + "neu": 0.669, + "neg": 0.043, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f4" + } + }, + { + "text": "She is very passionate about Central America (which is what the class is about). It was her first time teaching but she had an organized structure of how the class was. She was also very open to any topics you want to provide that are related to the class.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f7" + }, + "professor_name": "Diana Daus", + "rating": 4, + "department": "Health Science department", + "comments": [ + { + "text": "Awesome class! We get to apply what we learned during class. I really like her hands on teaching style", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f8" + } + }, + { + "text": "I learned a lot in her class. The material was presented in a clear way which made it so much easier for me to concentrate in her class. Do your readings, participate and pay attention in class, ask questions and you will do well. Don't expect an A or B without putting your part", + "pos": 0.131, + "neu": 0.845, + "neg": 0.024, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2f9" + } + }, + { + "text": "N/A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2fa" + } + }, + { + "text": "She is always late, unprepared, and lazy. You won't learn anything. A hot mess!", + "pos": 0.0, + "neu": 0.694, + "neg": 0.306, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2fb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f8cd60fca157e5e2fd" + }, + "professor_name": "Danielle Drori", + "rating": 4.5, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Lectures are incredibly boring, so much writing as well. Participation and attendance matters.", + "pos": 0.203, + "neu": 0.633, + "neg": 0.164, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2fe" + } + }, + { + "text": "She has so many good qualities. She is knowledgeable, she is caring, she is respectful and very nice. This by far one of the best professors I have ever taken. She made me love Jewish studies although I cant major anymore since Im graduating. I enjoyed her class. She made us read interesting authors and watched good movies. I Recommend her 100%.", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d5f8cd60fca157e5e2ff" + } + }, + { + "text": "Professor Drori is a passionate and genuine professor, she really knows and loves what she is teaching. I love the various perspectives she provides in class, you learn how to be more open minded. TAKE THIS CLASS if you want to get a new perspective. I love Professor Drori and am going to take every class she teaches! 10/10 would recommend!! DO IT", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d5f8cd60fca157e5e300" + } + }, + { + "text": "Professor Drori is one of the B-E-S-T professors I've ever had! I really enjoyed her class! She made topics that I didn't really care about become important to me! She is super kind and nice! I can't wait to take another class with her in the Fall! Take her and thank me later!", + "pos": 0.282, + "neu": 0.676, + "neg": 0.042, + "_id": { + "$oid": "6711d5f8cd60fca157e5e301" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f9cd60fca157e5e303" + }, + "professor_name": "Amir Ahmadi", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Professor Ahmadi was so kind. He's passionate about the history of racism and has really made for good discussions. We did weekly readings which were often long, but our responses to them only had to be about 400 words. Very lenient grader. This class would have been better in person, but Ahmadi did a great job with Zoom. Highly recommended.", + "pos": 0.29, + "neu": 0.676, + "neg": 0.033, + "_id": { + "$oid": "6711d5f9cd60fca157e5e304" + } + }, + { + "text": "He is very smart and it shows in his lectures. We didn't have to write many essays, just read articles and write responses. However, he wasn't great with responding to emails which wasn't great during the COVID-19 crisis when communication is most needed. Overall, pretty good professor though!", + "pos": 0.15, + "neu": 0.674, + "neg": 0.176, + "_id": { + "$oid": "6711d5f9cd60fca157e5e305" + } + }, + { + "text": "Amir Ahmadi is an extremely smart and kind educator, and his enthusiasm for literature can be seen with the vast texts that he chooses for his class. His lectures are thought provoking and educational, and his sense of humor makes it very easy to get engaged in class. Read the texts and you'll see his true worth.", + "pos": 0.309, + "neu": 0.666, + "neg": 0.025, + "_id": { + "$oid": "6711d5f9cd60fca157e5e306" + } + }, + { + "text": "Average. His lectures were okay, but the workshop format was a bit disorganized. Easy A if you edit your writing piece according to his recommendations.", + "pos": 0.176, + "neu": 0.731, + "neg": 0.093, + "_id": { + "$oid": "6711d5f9cd60fca157e5e307" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5f9cd60fca157e5e309" + }, + "professor_name": "Elisabeth Uhl", + "rating": 2, + "department": "English department", + "comments": [ + { + "text": "Horrible. Not understanding at all. Too much work given at the end of semester", + "pos": 0.0, + "neu": 0.788, + "neg": 0.212, + "_id": { + "$oid": "6711d5f9cd60fca157e5e30a" + } + }, + { + "text": "She is a horrible teacher for English Composition 2; she doesn't play with attendance. If you are one minute late for the class, she will mark you late, and when somebody raises their hand, she tries to ignore them, never retaking her course.", + "pos": 0.064, + "neu": 0.776, + "neg": 0.16, + "_id": { + "$oid": "6711d5f9cd60fca157e5e30b" + } + }, + { + "text": "Professor Elisabeth check every single word, sentence, paragraph and give many good feedback. When I don't have a good idea to start writing, I talk with professor Elisabeth to get best solution and extend the due date. Overall she is a nice professor but be careful on your writing. Writing center is important", + "pos": 0.243, + "neu": 0.728, + "neg": 0.028, + "_id": { + "$oid": "6711d5f9cd60fca157e5e30c" + } + }, + { + "text": "She assigned half a semester's worth of work on the last week and during finals and gave out F's or D-'s for having a few grammatical errors on a paper. Her teaching is heavily reliant on \"breakout rooms\" so if you want to learn something it's probably gonna be from your peers. I only got an A- because of the professor that taught before her.", + "pos": 0.073, + "neu": 0.892, + "neg": 0.035, + "_id": { + "$oid": "6711d5f9cd60fca157e5e30d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5facd60fca157e5e30f" + }, + "professor_name": "Rachel Knight", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Dr. Knight is THE BEST and super sweet!! This was probably the easiest class I took this semester, highly recommend. She is sooo understanding and wants all her students to pass. 3 assignments and a final project at the end.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d5facd60fca157e5e310" + } + }, + { + "text": "I would take her again if I could. She was very sweet and accessible outside of class.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d5facd60fca157e5e311" + } + }, + { + "text": "Class is never boring and is usually very interactive. A portion is lecture heavy, but she is very sweet and goes through the material slowly. Would take again if she taught another class in the education department!", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d5facd60fca157e5e312" + } + }, + { + "text": "Very sweet professor. Class is super boring but very easy!", + "pos": 0.545, + "neu": 0.357, + "neg": 0.098, + "_id": { + "$oid": "6711d5facd60fca157e5e313" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5facd60fca157e5e315" + }, + "professor_name": "Daniel Kohn", + "rating": 3, + "department": "Chemistry department", + "comments": [ + { + "text": "CHEM AT FORDHAM. He reads off his TEXT HEAVY slideshow for the entire hour and 15 minutes. No test prep. The only reason I am passing is because I do hours of chem by myself. Impossible to reach, does not respond to emails. AVOID IF YOU CAN!!!!", + "pos": 0.021, + "neu": 0.856, + "neg": 0.123, + "_id": { + "$oid": "6711d5facd60fca157e5e316" + } + }, + { + "text": "CHEM @ FORDHAM: Reads from the slides and speaks in a monotone voice, no engagement. He is not very accessible outside of class. He puts material on exams \"that he didn't teach\". Would not recommend in comparison to the other chemistry professors.", + "pos": 0.0, + "neu": 0.897, + "neg": 0.103, + "_id": { + "$oid": "6711d5facd60fca157e5e317" + } + }, + { + "text": "He was good in my opinion. His lectures were understandable and is good start for anyone doing science majors. There were 3 exams and a final, lucky the lowest gets dropped. I would recommend taking this class with him and make sure to practice. If you do the work and practice, you'll pass for sure.", + "pos": 0.237, + "neu": 0.724, + "neg": 0.039, + "_id": { + "$oid": "6711d5facd60fca157e5e318" + } + }, + { + "text": "Professor Kohn was pretty good. His lectures were clear and understanding. He did rush through material at the beginning of the semester but at the end he was at decent speed. There were three exams and a final. Exams were very fair. I would recommend him, especially if you're starting off with Chemistry before other science classes.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d5facd60fca157e5e319" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5facd60fca157e5e31b" + }, + "professor_name": "Ryan Evelyn", + "rating": 5, + "department": "French department", + "comments": [ + { + "text": "Professor Evelyn is the best teacher ever! His class was so enjoyable. He assigns a reading and discussion board for every meeting (you don't need to reply to other's post:)) If you read and pay attention, you're good!!! He genuinely cares about the class and the content he teaches. DO NOT HESITATE TO TAKE HIM, YOU WON'T REGRET IT!", + "pos": 0.275, + "neu": 0.706, + "neg": 0.019, + "_id": { + "$oid": "6711d5facd60fca157e5e31c" + } + }, + { + "text": "Amazing professor, so caring and makes things fun. Will definitely take French again with him if possible.", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d5facd60fca157e5e31d" + } + }, + { + "text": "His class was very nice. He does different activities (games) and there's some extra credit in tests. It was very easy to learn just by showing up to class, I wish I had him for french 2.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d5facd60fca157e5e31e" + } + }, + { + "text": "Easy A hes amazing and really cares about his students. You wont regret it", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d5facd60fca157e5e31f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fbcd60fca157e5e321" + }, + "professor_name": "Erica Milia", + "rating": 1, + "department": "Biology department", + "comments": [ + { + "text": "She was my TA. She was unnecessarily strict with the grading. I had high hopes for her and the class but she let me down.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d5fbcd60fca157e5e322" + } + }, + { + "text": "She wasn't a good T.A. I feel like she may be a nice person but she definitely didn't come off as that during class. She did give us extensions on lab reports sometimes but that's it. I wouldn't take her ever again.", + "pos": 0.154, + "neu": 0.81, + "neg": 0.036, + "_id": { + "$oid": "6711d5fbcd60fca157e5e323" + } + }, + { + "text": "She was my TA rather than professor. She may sound sweet on the first day of class but she is one the strictest graders I have seen. She was also very condescending when we asked questions. She takes points off for EVERYTHING and will destroy your GPA. Usually lab grades help your overall grade but here you have to perform well in your Bio class.", + "pos": 0.111, + "neu": 0.825, + "neg": 0.064, + "_id": { + "$oid": "6711d5fbcd60fca157e5e324" + } + }, + { + "text": "She doesnt explain anything properly in class so when we email her asking questions, she doesnt even respond to us. We are left doing everything alone and then she grades it very strictly. For 1 lab we were confused because she again didnt give us instructions, so we emailed her & she responded with 'I'm tired and dont have the energy to respond'", + "pos": 0.0, + "neu": 0.867, + "neg": 0.133, + "_id": { + "$oid": "6711d5fbcd60fca157e5e325" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fbcd60fca157e5e327" + }, + "professor_name": "Adam Merzel", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "I appreciate Professor Merzel's unique thinking toward writing. He talks a bit abstractly so he can be a bit hard to understand, but he challenges students to think more deeply about the material. He tries to relate his own life experiences to the students which I appreciate.\n\nHWs were predictable and manageable if you are on top of things.", + "pos": 0.141, + "neu": 0.84, + "neg": 0.019, + "_id": { + "$oid": "6711d5fbcd60fca157e5e328" + } + }, + { + "text": "Professor Merzel is very humble and willful to provide all sorts of helps, and you can tell he is a great writer through some samples and weekly emails written by himself. Just follow his lectures and trust him, you can improve your writing skills for sure.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d5fbcd60fca157e5e329" + } + }, + { + "text": "Professor Merzel was great at giving feedback, Only thing is emails the day homework is due overall this class was great to take.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d5fbcd60fca157e5e32a" + } + }, + { + "text": "PR. Merzel would email you with what you have to do for homework the day before class, he doesn't grade the work so no rewrites, however he says that he gives grades based off of the effort you put into the work instead of grading the work, but if you want a lot of work for the class but are willing to do them with effort you should be able pass", + "pos": 0.02, + "neu": 0.953, + "neg": 0.027, + "_id": { + "$oid": "6711d5fbcd60fca157e5e32b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fbcd60fca157e5e32d" + }, + "professor_name": "Dimitry Ekshtut", + "rating": 4.3, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Great professor overall but is very strict with deadlines. I mistaken the final being due Monday when it was Sunday so he took 30% off for one-day lateness to keep up with deadlines. Overall he's caring and is very passionate about Judisac studies. He talks a lot so you'll definitely learn.", + "pos": 0.244, + "neu": 0.707, + "neg": 0.05, + "_id": { + "$oid": "6711d5fbcd60fca157e5e32e" + } + }, + { + "text": "Professor Ekshtut is one of the most amazing professors I've had by far. He's very caring and understanding. He never failed to make class interesting and engaging. There was a fair amount of reading, the exams were easy, and the fieldwork was simple. Overall, I highly recommend this professor. He's very well-informed and loves what he teaches.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d5fbcd60fca157e5e32f" + } + }, + { + "text": "Professor Ekshtut is very nice and willing to listen to all the feedback that you as a student could give him. He is very caring about his students and understands what you are going through, he likes to have his students be involved within the community of Harlem and I would like to take him as my professor again but in a different course.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d5fbcd60fca157e5e330" + } + }, + { + "text": "This is his first year teaching at city college, he is very respectful and listens to the feedback that we, as his student gives him. Several things are important in this class, participation and following the directions of the assignments he gives a decent amount of paperwork you need to read and it can be way too much for an assignment of 2 pages", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d5fbcd60fca157e5e331" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fccd60fca157e5e333" + }, + "professor_name": "Tanzeem Ajmiri", + "rating": 5, + "department": "African-American Studies department", + "comments": [ + { + "text": "Literally just take her. Shes so wonderful and kind. The way she teaches her class you can never get bored, you will learn so much from her. Shes so sweet and easy going.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d5fccd60fca157e5e334" + } + }, + { + "text": "This class is great, amazing lectures, very caring, and understanding.", + "pos": 0.619, + "neu": 0.381, + "neg": 0.0, + "_id": { + "$oid": "6711d5fccd60fca157e5e335" + } + }, + { + "text": "This is such a great class and a great professor. A few discussion boards and a final project at the end of the semester.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d5fccd60fca157e5e336" + } + }, + { + "text": "love this prof. she's very engaging and makes room during lectures to have conversations about modern day issues, which i personally really liked. she's SUPER understanding and i always enjoyed her lectures.", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d5fccd60fca157e5e337" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fccd60fca157e5e339" + }, + "professor_name": "Angelica Williams", + "rating": 1.8, + "department": "Biology department", + "comments": [ + { + "text": "One of the worst professors ever. Refuses to drop an exam or give extra credit or curve! She has not sympathy and will fail you for no reason", + "pos": 0.067, + "neu": 0.566, + "neg": 0.368, + "_id": { + "$oid": "6711d5fccd60fca157e5e33a" + } + }, + { + "text": "One of the worst. Her exams are too hard and her labs are even worse. E-permit the course because she teaches every semester!", + "pos": 0.0, + "neu": 0.692, + "neg": 0.308, + "_id": { + "$oid": "6711d5fccd60fca157e5e33b" + } + }, + { + "text": "Professor Williams was a great professor. Very considerate and gave opportunities to do good in the class. Organismic biology is super hard but she made it easy. She does give a lot of work and exams are pretty hard too.", + "pos": 0.36, + "neu": 0.587, + "neg": 0.053, + "_id": { + "$oid": "6711d5fccd60fca157e5e33c" + } + }, + { + "text": "Professor Williams was such a tough professor. She teaches well but she gives too much work. The labs are heavy and the lectures are tough. She did curve the grades but at the very end. I would say avoid!", + "pos": 0.036, + "neu": 0.821, + "neg": 0.143, + "_id": { + "$oid": "6711d5fccd60fca157e5e33d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fccd60fca157e5e33f" + }, + "professor_name": "Dora Suarez", + "rating": 4.8, + "department": "International Studies department", + "comments": [ + { + "text": "She is knowledgeable and open to differing opinions if well-supported. Readings are mandatory and participation helps with grading flexibility. Lectures are challenging but clarified through slides and discussions. Being late or unexcused absences will affect your grade. I enjoyed her classes and found her explanations made complex theories clear.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d5fccd60fca157e5e340" + } + }, + { + "text": "I took Professor Suarez three different times and if I could enroll in her course for a fourth time, I would. She is organized all of her materials are accessible.I enjoyed the senior seminar class, there's lots of readings but you will only gain them.The class is very discussion based so there's room to hear thoughts from your peers/classmates.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d5fccd60fca157e5e341" + } + }, + { + "text": "Highly, highly recommend Professor Suarez. She is a very reliable professor that shows why the course material matters not just in your career, but also in your life. The course is tough, but its by nature of the course material, not her making it excessive. Her course isn't just something that counts for degree credit, but makes you wiser", + "pos": 0.143, + "neu": 0.83, + "neg": 0.027, + "_id": { + "$oid": "6711d5fccd60fca157e5e342" + } + }, + { + "text": "An insightful class overall, a lot to learn. Attendance & participation is a must. Prof Suarez can tell if you've read the materials based on your contributions so make sure to read before coming to class. 3 Written Responses and 1 take home final. All assignments are based on readings and class discussions. Easy A if you work hard", + "pos": 0.087, + "neu": 0.891, + "neg": 0.022, + "_id": { + "$oid": "6711d5fccd60fca157e5e343" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fdcd60fca157e5e345" + }, + "professor_name": "Gail Buffalo", + "rating": 2.8, + "department": "Education department", + "comments": [ + { + "text": "It would be best to stay away from Professor Buffallo's ECE classes. This class does not teach you how to teach children to write or read; this class was a mistake for me. Students would be better off attending another school if they want to learn and become an educator for ECE because this school lies and doesn't care for or respect students.", + "pos": 0.153, + "neu": 0.743, + "neg": 0.104, + "_id": { + "$oid": "6711d5fdcd60fca157e5e346" + } + }, + { + "text": "*Course-EDCE 32304 2 credit \nCons\nLengthy assignments every week \nDoes not grade your work right away (Then have to do revisions) \n-Assignments pile up after having to revise plus new assignments. \nToo many readings per week. \nPros\nGreat professor to talk to. \nShe will help you after hours. \nWants you to succeed. \nFlexible with due dates for HW", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d5fdcd60fca157e5e347" + } + }, + { + "text": "This class wasn't as tricky as some made it to be. The professor wanted her students to succeed in their assignments; she would push those she felt could do better. She is accommodating and always complimented us on our work. We are future educators, and the professor wanted to prepare us to achieve the tools to be Educators.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d5fdcd60fca157e5e348" + } + }, + { + "text": "If you have the option of taking another professor versus her, just go for the other professor. She makes you do weekly chapter readings, at least 2-3 chapters and requires you to write a posting on the readings, days before class. In addition, she has a lot of papers and projects due but is never clear on them, and never gives anything graded back", + "pos": 0.0, + "neu": 0.958, + "neg": 0.042, + "_id": { + "$oid": "6711d5fdcd60fca157e5e349" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fdcd60fca157e5e34b" + }, + "professor_name": "Emily LaMarre", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "She gives you extra time to complete and she cares about the student very well. Take her if you can.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d5fdcd60fca157e5e34c" + } + }, + { + "text": "One of the best lab instructors at CCNY, she explains topics and concepts extremely well. Additionally, she tries her best to grade things on time and answers emails very quickly. She provides great feedback on drafts of long assignments and tries her best to make students become better scientific writers.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d5fdcd60fca157e5e34d" + } + }, + { + "text": "She is the sweetest person ever and makes microbiology so fun. She's so helpful and honestly, one of the best lab TA's I have ever had. This class is tough in general, Emily explained things so well and if you do the work, you will do really well in lab (plus it will boost your lecture grade up!)", + "pos": 0.308, + "neu": 0.672, + "neg": 0.02, + "_id": { + "$oid": "6711d5fdcd60fca157e5e34e" + } + }, + { + "text": "THE BEST T.A. FOR MICROBIO CLASS. Taught lab the best way possible, was very helpful and explained everything in the best way. Was always available and cared for students. Her exams and quizzes were very fared. Had a wonderful personality and always made you feel happy being in lab. I WISH ALL MY LAB TA's WERE LIKE HER.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d5fdcd60fca157e5e34f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fdcd60fca157e5e351" + }, + "professor_name": "Caren Sheng-Wong", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "She is just the best. She explained concepts very well and the lab helped me understand the lectures much better. Whatever she repeated over and over would be tested on quizzes and exam and she gave very useful feedback on writing assignments. Just be prepared to answer questions throughout the lab as she made sure she called on everyone.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d5fdcd60fca157e5e352" + } + }, + { + "text": "Dont take this class especially during this pandemic and if you have a lot on your plate because she doesnt care what youre going through. She only cares if youre in class no matter whats going on in your personal life. Also if youre late even if its a couple of minutes because of internet problems be prepared to get called on the whole semester", + "pos": 0.069, + "neu": 0.841, + "neg": 0.09, + "_id": { + "$oid": "6711d5fdcd60fca157e5e353" + } + }, + { + "text": "Shes amazing! Some might be bored of her 2.5 hr class but she prepares lectures very well. Really cares about students participating and engaging. 2 group presentations, 3 tests, lowest grade dropped. If you watch lectures and pay attention in class, youll be fine! Really good at teaching basics of biology. Basically advanced living environments.", + "pos": 0.295, + "neu": 0.615, + "neg": 0.09, + "_id": { + "$oid": "6711d5fdcd60fca157e5e354" + } + }, + { + "text": "Dr. Sheng is very articulate about what she wants. She makes the lecture fun and engaging, and she makes sure her students understand the materials. Use her posted slides and clicker questions as a guide to study and you will be fine. She is a tough grader on paper and quizzes though.", + "pos": 0.168, + "neu": 0.806, + "neg": 0.026, + "_id": { + "$oid": "6711d5fdcd60fca157e5e355" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fecd60fca157e5e357" + }, + "professor_name": "Zeev Dagan", + "rating": 4.3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "the previous 2 reviews are for ME43300 Heat Transfer. he was a solid professor for the course. study the lecture notes, go to the exam reviews, and do the homework. he tries to make the exams easy for students. if you can find an old exam, even better", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d5fecd60fca157e5e358" + } + }, + { + "text": "First of all, sit in the front of the class cuz hes soft spoken and you wont hear him anywhere else. Gives 5-6Q HW every week. Need to understand how to do them because exams are similar. Study his notes. Only use the class textbook, no outside textbooks or he wont accept answers. Fair grader. Overall thought he was a solid choice for this class.", + "pos": 0.023, + "neu": 0.885, + "neg": 0.092, + "_id": { + "$oid": "6711d5fecd60fca157e5e359" + } + }, + { + "text": "I liked him. He makes his exams as easy as possible for the students. Gives useful hints for the few days before the exam. Make sure to go to class to catch them or youll be at a disadvantage. do the project/hws and dont bomb the exams. i did bad on 1 exam but did ok on the others and passed. Lectures are eh. Just try to understand what hes doing.", + "pos": 0.152, + "neu": 0.795, + "neg": 0.052, + "_id": { + "$oid": "6711d5fecd60fca157e5e35a" + } + }, + { + "text": "A solid choice for Fluids. Contrary to what others might say, Dagan's lectures are extremely helpful if you participate/ask him to clarify confusing topics. Gave 3 exams (non-cumulative) and was clear on the topics he'll include. HW given on each chapter, goes over it on the day of. Held review sessions for the final - ASK HIM QUESTIONS in class!!!", + "pos": 0.124, + "neu": 0.848, + "neg": 0.029, + "_id": { + "$oid": "6711d5fecd60fca157e5e35b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fecd60fca157e5e35d" + }, + "professor_name": "Shayan Mokhtarani", + "rating": 4.8, + "department": "Music department", + "comments": [ + { + "text": "From his ear training 1 course I learned maybe about 5 things. This is a super easy class to take with him though as he does not do any exams or hw. However, you can easily dose off in his class and by the end of it, not have payed attention and learned nothing. If you're taking ear training seriously, just pay attention and he will guide you.", + "pos": 0.122, + "neu": 0.837, + "neg": 0.041, + "_id": { + "$oid": "6711d5fecd60fca157e5e35e" + } + }, + { + "text": "Highly recommend everyone give this professor his props because he taught my ear training 1 course, super well and made it interesting compared the first time where it was difficult. He gives great feedback if you need help, answers any questions you have, and has a positive attitude during class. He really taught ear training really well", + "pos": 0.325, + "neu": 0.642, + "neg": 0.033, + "_id": { + "$oid": "6711d5fecd60fca157e5e35f" + } + }, + { + "text": "The music department is filled with terrible professors but professor Mokhtarani is literally the best. You can tell he's passionate about the subject. You wouldn't have a hard time at all, 10/10 recommend him.", + "pos": 0.327, + "neu": 0.628, + "neg": 0.044, + "_id": { + "$oid": "6711d5fecd60fca157e5e360" + } + }, + { + "text": "He's an amazing professor, Gives you extra time to do your papers if you need it and he is really helpful. Definitely, an easy class to get an A.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d5fecd60fca157e5e361" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5fecd60fca157e5e363" + }, + "professor_name": "John Riley", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Riley is the best I've had! In just 3 weeks, I learned so much about psychology of criminal behavior. He's kind, caring, and engages us with weekly discussions and a fun final project. He cares more about our learning over everything. I definitely recommend this professor!", + "pos": 0.375, + "neu": 0.573, + "neg": 0.051, + "_id": { + "$oid": "6711d5fecd60fca157e5e364" + } + }, + { + "text": "He is a really awesome professor, he had mentioned it was his first time teaching this course. His whole layout for the class is very simple and easy to understand. He gives 2 exams along side a 10 minute group presentation that will be sent to him. If you take this course please do your discussion board, it is a big part of your grade!", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d5fecd60fca157e5e365" + } + }, + { + "text": "He was very chill throughout the course. He mentioned it was his first class and I think he did very well.", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d5fecd60fca157e5e366" + } + }, + { + "text": "Took his class for the summer semester, was pretty easy, only work given is daily discussion boards consisting of 100 words and one group project which is a 10 minutes video only he sees, and two online exams which are pretty much open book. Overall lectures were really fun and interactive and professor was really nice. High recommend.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d5fecd60fca157e5e367" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ffcd60fca157e5e369" + }, + "professor_name": "Jessica Larson", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "They are thoughtful, honest, kind, and respectful, never making anyone feel dumb and building on student responses. It's a shame this is their last semester at CCNY, as they are moving away. I highly recommend taking their class if they return.", + "pos": 0.272, + "neu": 0.613, + "neg": 0.115, + "_id": { + "$oid": "6711d5ffcd60fca157e5e36a" + } + }, + { + "text": "This professor is exceptional! Her understanding and flexibility with assignments truly stand out. Unlike others who demand full presentations, she values discussions based on our Mock Exam response, allowing us just to read it to begin the discussion fostering a more interactive and insightful learning environment. Very relaxing & relatable.", + "pos": 0.196, + "neu": 0.732, + "neg": 0.072, + "_id": { + "$oid": "6711d5ffcd60fca157e5e36b" + } + }, + { + "text": "great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d5ffcd60fca157e5e36c" + } + }, + { + "text": "Good TA and friendly", + "pos": 0.753, + "neu": 0.247, + "neg": 0.0, + "_id": { + "$oid": "6711d5ffcd60fca157e5e36d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ffcd60fca157e5e36f" + }, + "professor_name": "Darren Gardner", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "GREAT GUY..an easy class with him explains every pieces if the texts make sure to take notes on everything he says because you can write those in your papers and get an A also copy down everything on the day he reviews for the midterm and final because trust me they are on them infact in order too..its so difficult to do bad in his class", + "pos": 0.167, + "neu": 0.749, + "neg": 0.084, + "_id": { + "$oid": "6711d5ffcd60fca157e5e370" + } + }, + { + "text": "Great professor. Very friendly and helpful. No need to buy the textbooks because he posts the PDFs to them online. He tries to make class As fun and interesting as possible. Two papers, one midterm and one final. Easy A if you pay attention in class.", + "pos": 0.32, + "neu": 0.621, + "neg": 0.059, + "_id": { + "$oid": "6711d5ffcd60fca157e5e371" + } + }, + { + "text": "i love him i dont know about other philosophy professors but he is extremely helpful and clarifies everything in class. No hws except 2 papers which are required by the dept or else i dont think he would actually make us write anything, 1 mid and a final. He explains everything in class so basically you really dont have to read the texts.", + "pos": 0.133, + "neu": 0.828, + "neg": 0.039, + "_id": { + "$oid": "6711d5ffcd60fca157e5e372" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d5ffcd60fca157e5e374" + }, + "professor_name": "David Alban", + "rating": 2, + "department": "Art department", + "comments": [ + { + "text": "Big Temper Problem!! He needs to gain better control over his emotions, and teach a subject he has mastered.", + "pos": 0.251, + "neu": 0.548, + "neg": 0.201, + "_id": { + "$oid": "6711d5ffcd60fca157e5e375" + } + }, + { + "text": "very nice teacher, great class", + "pos": 0.713, + "neu": 0.287, + "neg": 0.0, + "_id": { + "$oid": "6711d5ffcd60fca157e5e376" + } + }, + { + "text": "He teaches wheel throwing but he can't throw very well at all. He repeats the mantra ?taller thinner faster? over and over again. He praises ?gestural? pots because he was never once able to throw a tall even or thin pot. He is cranky and demonstrative on his good days. In my opinion the only thing he is qualified to teach is temper tantrum throwin", + "pos": 0.106, + "neu": 0.756, + "neg": 0.137, + "_id": { + "$oid": "6711d5ffcd60fca157e5e377" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d600cd60fca157e5e379" + }, + "professor_name": "Amir Ali", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "GOD LIKE TEACHER. NOT BIASED AT ALL. HIS TEACHING WILL NEVER LEAVE YOU ASTRAY. I AINT EVEN TALKING MUHAMMED(PBUH). TAKE HIS COURSE AS SOON AND FAST AS YOU CAN. BEST PROFESSOR EVER IN THIS WORLD.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d600cd60fca157e5e37a" + } + }, + { + "text": "He can teach, period. Hands-on teacher. Learned so much from him. Ughhh, it makes it even easier because he's so good to look at. Really helpful. I want him again. Will definitely take more of his classes.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d600cd60fca157e5e37b" + } + }, + { + "text": "Best professor ever!!! Knows how to teach and help students in the field. Does hands-on learning which really really helps. Cute as well. Will def take future classes with him!!!", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d600cd60fca157e5e37c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d600cd60fca157e5e37e" + }, + "professor_name": "Dennis Brandner", + "rating": 3.1, + "department": "Music department", + "comments": [ + { + "text": "There are quizzes (mcqs and short questions), 2 essays base on the articles that he provides, a midterm and a final. Exams and quizzes aren't that hard as long as you know everything from textbook or you pay attention in class. Essays are hard for someone who are not that familiar with Jazz like me. one note, A lot of memorization.", + "pos": 0.06, + "neu": 0.896, + "neg": 0.044, + "_id": { + "$oid": "6711d600cd60fca157e5e37f" + } + }, + { + "text": "Professor Brandner is pretty cool, very chill. Because the class is made for non music majors, he does expect you to work. Whatever you give in is what you will get. Makes you work for your grade. Essays, readings, quizzes and midterm. Not too bad. Can be understanding. He has awesome hair though and beautiful eyes.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d600cd60fca157e5e380" + } + }, + { + "text": "Expects a lot from students for an introductory class. Constantly reminds the class that we are not music majors, but doesn't explain the concept clearly that he is trying to teach. Tough grader for the essays.", + "pos": 0.09, + "neu": 0.865, + "neg": 0.045, + "_id": { + "$oid": "6711d600cd60fca157e5e381" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d600cd60fca157e5e383" + }, + "professor_name": "Mauricio Toussaint", + "rating": 2.7, + "department": "Psychology department", + "comments": [ + { + "text": "Would not take his course again. Felt as if I didnt learn much, could have read the textbook.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d600cd60fca157e5e384" + } + }, + { + "text": "He's a good professor, very helpful and nice. His lectures are usually short, and gives a quiz the beginning of every class. But he gives a lot of opportunities for extra credit.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d600cd60fca157e5e385" + } + }, + { + "text": "great professor, gives a lot of extra credit. great class, go to lectures, study powerpoint and it should be an easy A. 3 straightforward papers. no exams, only quizzes. the only thing is that he is really unorganized when it comes to grading papers and post the grades on blackboard. other than that, great class", + "pos": 0.258, + "neu": 0.71, + "neg": 0.032, + "_id": { + "$oid": "6711d600cd60fca157e5e386" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d601cd60fca157e5e388" + }, + "professor_name": "Festus Obiakor", + "rating": 4.8, + "department": "Education department", + "comments": [ + { + "text": "Prof. Obiakor is an amazing teacher. He gives great examples and shares many of his experiences as a teacher. I learned a lot from this class and would recommend it to anyone.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d601cd60fca157e5e389" + } + }, + { + "text": "Highly recommended professor!", + "pos": 0.544, + "neu": 0.456, + "neg": 0.0, + "_id": { + "$oid": "6711d601cd60fca157e5e38a" + } + }, + { + "text": "Dr. Obiakor will change your life and help you shift your paradigm. He is a progressive traditionalist and one of the greatest lecturers I have ever learned from. Do not heed the haters. This professor is not one to miss. Truly brilliant and humane.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d601cd60fca157e5e38b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d601cd60fca157e5e38d" + }, + "professor_name": "Kiki Leung", + "rating": 2.7, + "department": "Music department", + "comments": [ + { + "text": "she is a really great professor. she knows all her material; it is up to you whether or not you'd want to listen to her lectures bc they are important to the class. she makes you work for your grade but this class was not too bad. papers and tests were easy. read the textbook, easy A!", + "pos": 0.233, + "neu": 0.75, + "neg": 0.016, + "_id": { + "$oid": "6711d601cd60fca157e5e38e" + } + }, + { + "text": "she was absolutely horrible. she makes it seem like your major is music and as if her class is important. 99% of the class got 50s on the midterm and only god knows how we did on the final. extremely unorganized and sloppy explanations. very unclear on her expectations. what im trying to say is if you care about your gpa avoid her at all costs.", + "pos": 0.125, + "neu": 0.767, + "neg": 0.108, + "_id": { + "$oid": "6711d601cd60fca157e5e38f" + } + }, + { + "text": "For the most part, she is really kind. However, sometimes the rubric isn't clear. Also, you have to attend 2 concerts and write reports about them. There was a group project at the end of the semester. She is picky about certain things but not about others when grading. She also tends to repeat what she said a couple of times when asked a question.", + "pos": 0.058, + "neu": 0.919, + "neg": 0.024, + "_id": { + "$oid": "6711d601cd60fca157e5e390" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d601cd60fca157e5e392" + }, + "professor_name": "Natasha Herring", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "As a science major, I valued this prof so much. She made the class laid-back & enjoyable. A few readings here & there, but the majority was critiquing our peer's work. Wrote 1 poem, 1 nonfiction, 1 fiction, & had to comment on BB for everyone's work, but if you spoke in class you got credit. Made the space feel welcome. Wish more prof were like her", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d601cd60fca157e5e393" + } + }, + { + "text": "She is such a gem!!! so kind and helpful. Was never miserable in class. Funny and always happy. 10/10 would recommend", + "pos": 0.572, + "neu": 0.428, + "neg": 0.0, + "_id": { + "$oid": "6711d601cd60fca157e5e394" + } + }, + { + "text": "Most caring teacher at City! She understands that English is not everyone's native language here, so she doesn't focus too much on its specifics. She only cares that you write genuinely and satisfy all parts of the essay requirements. Three essays and self assessments, and a large Wordpress blog \"final\"; don't put it off! Listen to her critiques!!", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d601cd60fca157e5e395" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d602cd60fca157e5e397" + }, + "professor_name": "Paolo Orlandi", + "rating": 4.2, + "department": "Music department", + "comments": [ + { + "text": "This professor is the BEST. He's really passionate about teaching music and if you don't understand something he just said, tell him and he's always willing to clarify it. He gives 5 pop quizzes and drops the lowest grade. If you do the work and pay attention, you'll really learn and it'll pay off.", + "pos": 0.137, + "neu": 0.777, + "neg": 0.086, + "_id": { + "$oid": "6711d602cd60fca157e5e398" + } + }, + { + "text": "A little overwhelming not being familiar with music terms(we started out with that)but other kids were in my shoes&he was patient to explain them. He rarely referred to the book,I suggest sharing one if possible but we did need the CDs it came w/.Do well on the papers& quizzes&participate.MUST pay attention,quizzes&,tests based on lectures not book", + "pos": 0.077, + "neu": 0.896, + "neg": 0.027, + "_id": { + "$oid": "6711d602cd60fca157e5e399" + } + }, + { + "text": "he is funny and helpful...stressing a lot about jazz...other than that...he is good...", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d602cd60fca157e5e39a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d602cd60fca157e5e39c" + }, + "professor_name": "Kyrstyna Sokoll", + "rating": 4.5, + "department": "World Humanities department", + "comments": [ + { + "text": "Great professor and easy on the eyes :)", + "pos": 0.667, + "neu": 0.333, + "neg": 0.0, + "_id": { + "$oid": "6711d602cd60fca157e5e39d" + } + }, + { + "text": "She's an amazing professor! She speaks queitly and can seem a little passive, but she always explains clearly and makes sure everyone in the class understands. Her quizzes are pretty straightforward single question based on readings. Easy A.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d602cd60fca157e5e39e" + } + }, + { + "text": "Awesome! She is very sweet and considerate. She cares about her students, is willing to spend extra time answering questions and very good with answering emails as well. If you plan on taking WHUM 101 take it with her and you will have a good semester.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d602cd60fca157e5e39f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d602cd60fca157e5e3a1" + }, + "professor_name": "Y. Chen", + "rating": 4.7, + "department": "Chinese department", + "comments": [ + { + "text": "I enjoy every single class with this Professor. She makes learning Chinese very active and fun. A lot of cultural activities which is good. Makes us learn the outside of the Chinese culture very interesting. She is very lenient in terms of her work. Class is slow pace, doesn't really rush throughout the lessons. I recommend her for any beginners.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d602cd60fca157e5e3a2" + } + }, + { + "text": "I don't know what happened to Y. Chen. I took her first Chinese the first time was easy. I took her Chinese class again, BUT this time it was so hard! She keep rushing the chapters, she expect us to do by ourselves, and we have to write an essay too! I don't know what had happened to her. I regret taking her class. PERIOD.", + "pos": 0.028, + "neu": 0.879, + "neg": 0.093, + "_id": { + "$oid": "6711d602cd60fca157e5e3a3" + } + }, + { + "text": "pretty easy professor as she make learn a new language easy class was pretty slow pace as we spent weeks on one chapter grading base on quiz(she said it every week but we only had like 4 quiz for the entire semester),2 test(will allow you to retake if not satisfy with score) overall very good professor pretty easy to pass as long as you study", + "pos": 0.313, + "neu": 0.649, + "neg": 0.038, + "_id": { + "$oid": "6711d602cd60fca157e5e3a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d603cd60fca157e5e3a6" + }, + "professor_name": "Samar Rizk", + "rating": 2.7, + "department": "Chemistry department", + "comments": [ + { + "text": "She did a solid job for her first semester teaching. A lot of powerpoint which didnt make for super engaging lectures. Very helpful and receptive if you go to her lab/ofc. hours. Homework was via the textbook co. and tended to be long and tedious and only somewhat helpful. I got more out of doing the problems in the book. Final was hard but curved", + "pos": 0.097, + "neu": 0.829, + "neg": 0.073, + "_id": { + "$oid": "6711d603cd60fca157e5e3a7" + } + }, + { + "text": "She is really nice but lecture was a bad experience. She either was really nervous or really did not know the material. She was so unorganized.", + "pos": 0.062, + "neu": 0.699, + "neg": 0.238, + "_id": { + "$oid": "6711d603cd60fca157e5e3a8" + } + }, + { + "text": "she's nice but unclear and disorganized during chem lab.", + "pos": 0.144, + "neu": 0.455, + "neg": 0.402, + "_id": { + "$oid": "6711d603cd60fca157e5e3a9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d603cd60fca157e5e3ab" + }, + "professor_name": "Soyoung Lee", + "rating": 4.3, + "department": "English As A Second Language department", + "comments": [ + { + "text": "Professor Lee is a scholar. She knows her stuff and knows how to teach others to know their stuff too. I would recommend her for any course. She will get you working!", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d603cd60fca157e5e3ac" + } + }, + { + "text": "She's AWESOME at thesis advising. Really helpful, gets right to the hear of what you're doing and need to do. Experienced and clear.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d603cd60fca157e5e3ad" + } + }, + { + "text": "Dr.Lee is a wonderful teacher. I learned so much from her class. She made class alot of fun and the work she assigned was interesting.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d603cd60fca157e5e3ae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d603cd60fca157e5e3b0" + }, + "professor_name": "Ning Xu", + "rating": 4.3, + "department": "Computer Science department", + "comments": [ + { + "text": "He was a fair professor who was clear regarding his grading policy. In addition, if you ask question he would be more than happy to answer it. Materials covered were rather difficult considering this was a class for Comp. Science majors. Never miss any homework and relearn materials and don't hesitate to ask for his help or go online.", + "pos": 0.214, + "neu": 0.75, + "neg": 0.036, + "_id": { + "$oid": "6711d603cd60fca157e5e3b1" + } + }, + { + "text": "Clear lectures. Fair exams. Textbook not mandatory, teaches from his slides. Homeworks are mandatory, which helps tremendously on exams. Highly recommend.", + "pos": 0.417, + "neu": 0.539, + "neg": 0.044, + "_id": { + "$oid": "6711d603cd60fca157e5e3b2" + } + }, + { + "text": "The best professor for csc104. He's helpful. He explains difficult concepts but doesn't always expect you to master them. The concepts he believes are more important he will point out more. He also taught the recitation so it was great having him both for lecture and recitation. He will ONLY test things he teaches. Great/awesome, would recommend.", + "pos": 0.238, + "neu": 0.737, + "neg": 0.025, + "_id": { + "$oid": "6711d603cd60fca157e5e3b3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d604cd60fca157e5e3b5" + }, + "professor_name": "Michael Palumbo", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "This is a very easy course and the instructor is also helpful. Even though I thought he was rude at first, he is actually kind of nice. I don't believe in \"hard grader\" stuff. If someone always do good, he has no choice, but to give them a good grade. So, it's ultimately our own effort that matters. HW & Quiz everyday, midterm, group paper, final.", + "pos": 0.186, + "neu": 0.766, + "neg": 0.048, + "_id": { + "$oid": "6711d604cd60fca157e5e3b6" + } + }, + { + "text": "Palumbo is new to teaching, you can tell. He's always willing to help, but sometimes his explanations are not concise. My old notes from Stats were helpful. He races through the textbook, 7 hmk assignments, quiz at the beginning of each class (don't be late), midterm, final & group project. Nice guy, offers extra credit.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d604cd60fca157e5e3b7" + } + }, + { + "text": "very nice person, and tries to explain when someone asks. but most of the time, makes me even more confused. Quizzes and homeworks every class, a midterm, a final, and a research paper you conduct your own experiment. Too much work in a short amount of time. But he gives over 10% extra credit to the final grade cause he knows this course is hard", + "pos": 0.076, + "neu": 0.854, + "neg": 0.07, + "_id": { + "$oid": "6711d604cd60fca157e5e3b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d604cd60fca157e5e3ba" + }, + "professor_name": "Kara Schmidt", + "rating": 3.5, + "department": "Art department", + "comments": [ + { + "text": "I took Kara for photography and visual perception. She is a good professor but sometimes lacks in fully explaining what to do for an assignment, meaning that students are still confused about what to do. Regardless she is there to help you and replies quick to emails. I learned a lot in her class. No exams just 1 quiz. Participation is a must!", + "pos": 0.078, + "neu": 0.836, + "neg": 0.086, + "_id": { + "$oid": "6711d604cd60fca157e5e3bb" + } + }, + { + "text": "Very clear on what she looks for. She gives a great feedback if you follow her requirements. If you need help or don't understand a project just ask her, she's always willing to help and is always available outside of class. She's pretty laid back and flexible. oh, attendance is everything!!", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d604cd60fca157e5e3bc" + } + }, + { + "text": "I regret taking this class. First of all you have to buy a camera and will spend up to 300 dollars on getting pictures develop. She wants you to use the places on the syllabus to get pictures develop, not from CVS or rite aid. She ain't helpful with anything and is very moody if asked for help. Avoid her. she gives no helpful feedback on ur photos", + "pos": 0.035, + "neu": 0.804, + "neg": 0.161, + "_id": { + "$oid": "6711d604cd60fca157e5e3bd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d604cd60fca157e5e3bf" + }, + "professor_name": "Brian Bond", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "Brian is a great prof, experienced in world music, and is passionate about the subject. I don't have any experience in music, but I learned the basics and a lot about diff cultures and how music impacts them. 3 papers, hwquizzesexams are all easy, just take notes and go to class. All the questions are based on what is discussed in the lectures.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d604cd60fca157e5e3c0" + } + }, + { + "text": "Brian is an awesome professor! He is very knowledgeable, presents the material clearly. His classes were never boring. I've learned so much from him not only about music but also about world cultures in general. Make sure to take good notes, and you won't have any problems on quizzes or exams.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d604cd60fca157e5e3c1" + } + }, + { + "text": "Brian is wonderful! I took him last spring and he really sparked my interest in music. He made me appreciate music for what it is rather than just judge it right off the bat. As for grading, do what he asks and you will be fine! It isn't hard at all. Study your notes for the quizzes and tests -- you don't even have to read the text book.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d604cd60fca157e5e3c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d605cd60fca157e5e3c4" + }, + "professor_name": "Heidi Holder", + "rating": 3.7, + "department": "Education department", + "comments": [ + { + "text": "CLEAR guidelines from the beginning, have to be willing to WORK for your A, no coddling or hand-holding. Sharpen up your grammar and open your mind. It was a great class", + "pos": 0.198, + "neu": 0.744, + "neg": 0.058, + "_id": { + "$oid": "6711d605cd60fca157e5e3c5" + } + }, + { + "text": "First day, she gives off the impression that this will be an awesome, interactive class. Within the first couple weeks, she took an hour out of class time to give us a grammar lesson and write actual sentences on the board that students submitted in their homework that were not grammatically correct! Pointless and a waste of time...", + "pos": 0.117, + "neu": 0.84, + "neg": 0.044, + "_id": { + "$oid": "6711d605cd60fca157e5e3c6" + } + }, + { + "text": "Do not take Professor Holder's class. You will try your hardest all semester long and she will still give you a C+. Don't be fooled by how nice she seems, she will stab you in the back when you get your grade.", + "pos": 0.104, + "neu": 0.816, + "neg": 0.08, + "_id": { + "$oid": "6711d605cd60fca157e5e3c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d605cd60fca157e5e3c9" + }, + "professor_name": "Nicholas Gao", + "rating": 2.3, + "department": "English department", + "comments": [ + { + "text": "He is a fair grader but he won't just give you points, you have to work for them. Ask questions I feel you don't understand something, he is always happy to explain.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d605cd60fca157e5e3ca" + } + }, + { + "text": "His demeanor borders unemployability. Who hired him? How can he keep his job? If he could only smile and relax...", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d605cd60fca157e5e3cb" + } + }, + { + "text": "Very boring & low teaching standards. Poor social skills that offend many. Demeanor with class is arrogant and \"know-it all\", yet his academic achievements are very unremarkable, average, outdated. Asks for a LOT but gives very little. His own personal appareance is dishevelled, much to be desired for a classroom and as potential role model", + "pos": 0.044, + "neu": 0.805, + "neg": 0.152, + "_id": { + "$oid": "6711d605cd60fca157e5e3cc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d605cd60fca157e5e3ce" + }, + "professor_name": "Ertan Eryilmaz", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "He is the best Professor. Other should attend and see... He not only covers the topics but also relates them to the real world, making them more interesting. And he is funny.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d605cd60fca157e5e3cf" + } + }, + { + "text": "I am a freshman, he is the best so far", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d605cd60fca157e5e3d0" + } + }, + { + "text": "Just wonderful teacher. No need to add anything else.", + "pos": 0.287, + "neu": 0.543, + "neg": 0.171, + "_id": { + "$oid": "6711d605cd60fca157e5e3d1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d606cd60fca157e5e3d3" + }, + "professor_name": "Michael Dyer", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "he is a really fair grader, very clear with all his work, and in the end of the semester you are allow to redo the lowest grades you have.", + "pos": 0.211, + "neu": 0.715, + "neg": 0.074, + "_id": { + "$oid": "6711d606cd60fca157e5e3d4" + } + }, + { + "text": "He is a very thorough professor. Just get your work done and put effort into it and you'll do fine in the class. Make sure you dont miss class either.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d606cd60fca157e5e3d5" + } + }, + { + "text": "i took typography 1 and Graphic Design concepts with him... he's one of the best professors just do all the work and make sure everythin its clean and neat! you'll learn everything u need to know about type with this guy.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d606cd60fca157e5e3d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d606cd60fca157e5e3d8" + }, + "professor_name": "Erin Lee Mock", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "Pretty interesting class explaining the impact of different genres that define American culture. Had to write 7 one page papers with four from the American Studies: A culture and four from the course work, one presentation and final paper. Make sure to speak in class, and she's open to helping with any questions you may have", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d606cd60fca157e5e3d9" + } + }, + { + "text": "I took 20th Century US Novel with ELM and I will say while the class discussions were interesting, I found her to be standoffish and difficult to connect to. She's a fairly poor communicator outside of class. I personally would not want to take a class with her again.", + "pos": 0.09, + "neu": 0.788, + "neg": 0.122, + "_id": { + "$oid": "6711d606cd60fca157e5e3da" + } + }, + { + "text": "She goes by ELM, and she is very smart and knows her stuff. took US 20th cent. writers with her and the discussions were lively, fun, and funny. The only thing she didn't do was respond to emails. She also grades tough. But only one paper, one mid term and one presentation.", + "pos": 0.143, + "neu": 0.835, + "neg": 0.022, + "_id": { + "$oid": "6711d606cd60fca157e5e3db" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d606cd60fca157e5e3dd" + }, + "professor_name": "Robert Burr", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "excellent", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d606cd60fca157e5e3de" + } + }, + { + "text": "great", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d606cd60fca157e5e3df" + } + }, + { + "text": "Awesome Professor, knowledgeable, considerate and fair. Great readings selection. Wish I had for another class. Strongly recommended.", + "pos": 0.667, + "neu": 0.333, + "neg": 0.0, + "_id": { + "$oid": "6711d606cd60fca157e5e3e0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d607cd60fca157e5e3e2" + }, + "professor_name": "Steven Snow", + "rating": 4.3, + "department": "Political Science department", + "comments": [ + { + "text": "A couple hefty papers. The second was tough because the question was very vague and the sources uninteresting. Tests weren't too bad but as long as you do the readings you should be ok.", + "pos": 0.054, + "neu": 0.873, + "neg": 0.073, + "_id": { + "$oid": "6711d607cd60fca157e5e3e3" + } + }, + { + "text": "Great professor. Knows his stuff. But not easy. Pays attention to spelling & details. You need to show him you know the work. Dont take him if you think it is going to be an easy A. He makes you work for it!", + "pos": 0.134, + "neu": 0.803, + "neg": 0.062, + "_id": { + "$oid": "6711d607cd60fca157e5e3e4" + } + }, + { + "text": "I had him for Presidency class on Saturdays. Gave one short quiz, midterm, final, and easy 7-page paper. Cool guy with great anecdotes to liven the class. Very lazy and doesn't try very hard. He gave me a 100/100 on my final essay that I worked so hard on, but didn't read a single word (overlooked obvious errors). Easy A, read material/stay updated", + "pos": 0.155, + "neu": 0.741, + "neg": 0.104, + "_id": { + "$oid": "6711d607cd60fca157e5e3e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d607cd60fca157e5e3e7" + }, + "professor_name": "Julia Guarneri", + "rating": 4.2, + "department": "History department", + "comments": [ + { + "text": "amazing professor. she's down to earth. explains the material very well. powerpoints are pretty interesting. she has a passion for it which really helps if you dont. awesome!", + "pos": 0.429, + "neu": 0.493, + "neg": 0.077, + "_id": { + "$oid": "6711d607cd60fca157e5e3e8" + } + }, + { + "text": "I love this Professor. When I saw I had to take a US His. course I was down in the dumps, I was dreading another boring class, but Prof. Guarneri is really great. She knows her stuff and though the work can be a bit hard she knows what she's doing and is open to feedback. She's awesome!", + "pos": 0.201, + "neu": 0.699, + "neg": 0.1, + "_id": { + "$oid": "6711d607cd60fca157e5e3e9" + } + }, + { + "text": "She's really nice and crystal clear about the material. Her quizzes were a bit hard, though. Make sure you read the textbook or study somewhat before each one.", + "pos": 0.239, + "neu": 0.719, + "neg": 0.042, + "_id": { + "$oid": "6711d607cd60fca157e5e3ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d607cd60fca157e5e3ec" + }, + "professor_name": "Dan Barish", + "rating": 4.7, + "department": "Asian Studies department", + "comments": [ + { + "text": "Great professor and great class!", + "pos": 0.739, + "neu": 0.261, + "neg": 0.0, + "_id": { + "$oid": "6711d607cd60fca157e5e3ed" + } + }, + { + "text": "There is only one 3pg paper. Test is not difficult and he would do review before the midterm and final. His lecture is excellent--give a lot of interesting information. He can speak and write Chinese fluently! He is also a type of professor that care about teaching and his students.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d607cd60fca157e5e3ee" + } + }, + { + "text": "25% Attendance and Participation, 25% midterm quiz, 25% 5 pg paper, 30% final exam. In general course is boring. You have to read!! to succeed. Pretty cool guy. But makes course a bit tough and has lots of reading involved.", + "pos": 0.144, + "neu": 0.781, + "neg": 0.076, + "_id": { + "$oid": "6711d607cd60fca157e5e3ef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d608cd60fca157e5e3f1" + }, + "professor_name": "Rebecca Ploof", + "rating": 3.3, + "department": "Political Science department", + "comments": [ + { + "text": "Although this class is technically level 200, this course really is at level 300 class difficulty. She's an amazing lecturer, so I would still take her class again even though she requires a lot from you. So if you take her class, just be ready to read a looot and pay attention/take good notes!", + "pos": 0.152, + "neu": 0.787, + "neg": 0.061, + "_id": { + "$oid": "6711d608cd60fca157e5e3f2" + } + }, + { + "text": "The below reviewer sounds like they have a personal vendetta against this professor because she really does try to call on everyone. She set up participation in a specific way to allow for the majority of the class to be called on, it's not her fault that it's a large class. Also, she is an excellent lecturer and very intelligent. Highly recommend", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d608cd60fca157e5e3f3" + } + }, + { + "text": "2 Exams (35%). 1 Final (25%) and 5 pop quizzes (25%)attendance (15%). Lots of readings, Hobbes, Locke, Rousseau, Burke, etc. No laptops allowed. Exams open book not open note. Terrible participation system, by the time she gets to you the discussion has shifted and what you have to say is now redundant. No exam review in class. No makes up for test", + "pos": 0.038, + "neu": 0.864, + "neg": 0.098, + "_id": { + "$oid": "6711d608cd60fca157e5e3f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d608cd60fca157e5e3f6" + }, + "professor_name": "Michelle Chen", + "rating": 3, + "department": "Honors department", + "comments": [ + { + "text": "Well-educated historian, but often makes in-class discussion difficult by dominating conversation even when asking students questions. Provides comprehensive feedback on assignments, but half of that is her opinion on topics that she wants to see reflected in your work. If her opinion/thoughts aren't reflected in your papers, she doesn't give an A.", + "pos": 0.043, + "neu": 0.851, + "neg": 0.105, + "_id": { + "$oid": "6711d608cd60fca157e5e3f7" + } + }, + { + "text": "Professor Chen is such a sweet professor. Her syllabus was a little long but she is very great when you ask questions. Do not get bogged down by the syllabus, he class is very manageable, and she even said herself you do not have to do all the readings. She gives great feedback and overall I really liked her.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d608cd60fca157e5e3f8" + } + }, + { + "text": "Not an organized teacher. Unclear, 12 page syllabus. Didn't seem to understand that we take more than 1 class. An insane amount of reading for each class, and many of the texts were difficult to access and not provided. 8 essays, weekly reading responses, and multiple group projects. Her expectations were too high and she didn't listen to students", + "pos": 0.0, + "neu": 0.886, + "neg": 0.114, + "_id": { + "$oid": "6711d608cd60fca157e5e3f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d608cd60fca157e5e3fb" + }, + "professor_name": "Jeffrey Hopkins", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Professor JeffArt is an outstanding and caring educator. I took Art 155 in the spring, and it quickly became my favorite class because of his engaging, game-like lectures. He creates a fun, inclusive environment where every student feels valued. His approach made learning enjoyable, and I always looked forward to class.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d608cd60fca157e5e3fc" + } + }, + { + "text": "Prof. Hopkins's online summer class was fantastic! He is super-creative and kind, knows the business of design and book publishing, and gives excellent feedback! We learned strategies for using text and illustrations that make a good book and explored ways to create actual pages of children's books. I highly recommend this class!!", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d608cd60fca157e5e3fd" + } + }, + { + "text": "I took this class online during the summer and LOVED it. Prof. Hopkins is knowledgeable, creative, engaging, and inspiring! We learned and practiced various techniques to create children's books with students. Homework and a final project were fun. I also took prof. Hopkins's class on designing children's books, and I highly recommend him!", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d608cd60fca157e5e3fe" + } + }, + { + "text": "I was iffy about taking Hopkins since I couldn't find any RMP reviews, but he is AMAZING. His class barely felt like a class. No exams EVER and the assignments aren't hard. The final project was a bit difficult because I've never created a lesson plan, but he helped every step of the way. The kindest professor ever. Won't regret taking him!", + "pos": 0.18, + "neu": 0.714, + "neg": 0.106, + "_id": { + "$oid": "6711d608cd60fca157e5e3ff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d609cd60fca157e5e401" + }, + "professor_name": "Hamed Fazli", + "rating": 2.3, + "department": "Computer Science department", + "comments": [ + { + "text": "He's a really funny professor, but he's also a really harsh grader. I found the material for this course to be pretty difficult to understand on top of his grading style. I must say his grading criteria is clear though. If you ever take this professor for any classes. Expect it to be one your more difficult classes in your course-load.", + "pos": 0.155, + "neu": 0.699, + "neg": 0.145, + "_id": { + "$oid": "6711d609cd60fca157e5e402" + } + }, + { + "text": "He's a nice guy but extremely tough grader. He grades at the end of class, so you don't get any feedback until its time for final grades. The content of this class was extremely tough and he did not compensate in his grading. He could have provided extra credit opportunities or made exams easier, but he felt the need to make everything \"fair\"", + "pos": 0.203, + "neu": 0.739, + "neg": 0.058, + "_id": { + "$oid": "6711d609cd60fca157e5e403" + } + }, + { + "text": "love/hate relationship with fazli. fair but extremely strict at the same time when you get questions wrong in the exam. however, the questions are fair game, all if not most all come from his slides and lectures, just have to pay attention and review heavy. exams total 60% of your grade. course just happens to be challenging.", + "pos": 0.101, + "neu": 0.809, + "neg": 0.089, + "_id": { + "$oid": "6711d609cd60fca157e5e404" + } + }, + { + "text": "He has clear grading criteria! But in his exams, he gives surprise questions that are too tough. Attendance was 10% of the grade. Did not curve at all!!! For CS elective, I would not suggest taking this class because of too much pressure and too much reading.", + "pos": 0.084, + "neu": 0.809, + "neg": 0.108, + "_id": { + "$oid": "6711d609cd60fca157e5e405" + } + }, + { + "text": "Again, do not take this professor. Too harsh on grading. Would not curve a lot. Most students had hard time passing the course also his harsh grading made it worst. Attendance was mandatory (10% of the grade).\n\n(Professor, if you are looking at this do change your teaching style and ffs try to pass all your students instead of failing them)", + "pos": 0.018, + "neu": 0.73, + "neg": 0.252, + "_id": { + "$oid": "6711d609cd60fca157e5e406" + } + }, + { + "text": "Took the class over the summer and professor was very caring and understanding of any concerns we had. His grading criteria was clear and his lectures clarified a lot of confusing topics. He was also the professor for lab and was always present the entire session.", + "pos": 0.119, + "neu": 0.843, + "neg": 0.037, + "_id": { + "$oid": "6711d609cd60fca157e5e407" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d609cd60fca157e5e409" + }, + "professor_name": "Kazuko Saito", + "rating": 4.3, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Thicc accent. Pair work everyday& she checks each zoom room to make sure you're participating.I ignored her lessons& watched Tokini Andy which follows the same textbook. She occasionally forgets to post homework& didn't post the exam & quiz grades until semester was over. If you actually want to learn JPN I suggest Refold/Migaku/TheMoeWay iykyk.", + "pos": 0.063, + "neu": 0.896, + "neg": 0.04, + "_id": { + "$oid": "6711d609cd60fca157e5e40a" + } + }, + { + "text": "professor Saito is very very nice and puts in a lot of effort into her teaching, her class is not easy but if you work hard enough its easy. Her class is very epic and I enjoted it!!!!!! I think she is the best choice if you want to learn Japanese!!!", + "pos": 0.23, + "neu": 0.717, + "neg": 0.053, + "_id": { + "$oid": "6711d609cd60fca157e5e40b" + } + }, + { + "text": "prof Saito is really nice, her lectures are fun and clear, but some kids didn't get the class content cuz of her accent. But everything was fine in her class, sometimes she was just too nice to the students. Make sure you work for the grade, needa memorize some vocabularies. I did enjoy her class!! Take her for learning a new language!!", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d609cd60fca157e5e40c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60acd60fca157e5e40e" + }, + "professor_name": "Joseph LoGiudice", + "rating": 1, + "department": "Psychology department", + "comments": [ + { + "text": "Horrible professor. More into himself than the class. Stay away. Never got a D till this man. You won't have a clue if you are passing or failing because he is a late grader. Just pass this professor by", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d60acd60fca157e5e40f" + } + }, + { + "text": "Doesn't give feedback, failed me on my paper w.o explanation. canceled class 3 times with no notice (email), just a sign on the door, I commute from work, 1.5 hours away. Just unprofessional. Concerned more about his looks. A student arrived late and she took her seat, he chewed her out for disrupting (she didn't, was quiet)", + "pos": 0.043, + "neu": 0.868, + "neg": 0.088, + "_id": { + "$oid": "6711d60acd60fca157e5e410" + } + }, + { + "text": "He seems soo nice and i'm not gonna lie he's nice!!! but maaaaannn!! i took his class for fall and it was november and the entire class didn't know if we were passing or failing. his class is based on 2 papers. He grades the first paper and give it back to youu late and don't even grade it so you don't know where you stand.", + "pos": 0.052, + "neu": 0.87, + "neg": 0.078, + "_id": { + "$oid": "6711d60acd60fca157e5e411" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60acd60fca157e5e413" + }, + "professor_name": "Andrea Arevalo", + "rating": 1, + "department": "Biology department", + "comments": [ + { + "text": "Worst Ta Ive had in my entire college experience. She doesnt know to teach properly and expects us to know everything. Reads off the slides and goes so fast as if shes in some kind of a competition to finish. Harsh grader. AVOID AT ANY COST.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d60acd60fca157e5e414" + } + }, + { + "text": "She is the worst TA I have ever had at CCNY. She is not clear, her questions are WAY too difficult and irrelevant to the classwork, and she does not seem to grade fairly. She says that it will be fine or that we don't have to worry but definitely worry. She makes lab difficult to understand, and it's hard to do well.", + "pos": 0.121, + "neu": 0.689, + "neg": 0.19, + "_id": { + "$oid": "6711d60acd60fca157e5e415" + } + }, + { + "text": "To be honest, we're not exactly sure how a TA could grade so haphazardly. Online lectures where she refused to answer student questions while reading off of slides. Doesn't use proper grammar when making quizzes but grades harshly. Not much else to say, just a bad experience. Look elsewhere.", + "pos": 0.039, + "neu": 0.818, + "neg": 0.142, + "_id": { + "$oid": "6711d60acd60fca157e5e416" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60acd60fca157e5e418" + }, + "professor_name": "Suzanne Strum", + "rating": 4.3, + "department": "Architecture department", + "comments": [ + { + "text": "She's a Queen. Literally Slayyy! I took her AES 20000. She makes u do outside trips like to museums and exhibitions etc. But you have write a lot of papers up to 200-500 words. And at the end, she assigns a plan project on an architecture theme. Just pay attention u will be fine ;))", + "pos": 0.073, + "neu": 0.899, + "neg": 0.028, + "_id": { + "$oid": "6711d60acd60fca157e5e419" + } + }, + { + "text": "She gives good lectures, is organized, and is relatively kind. However, she is a little strict when it comes to attendance. She does class trips and you absolutely have to go for a grade and she doesn't take any excuses even if you struggle to just even pay for the subway or something", + "pos": 0.107, + "neu": 0.831, + "neg": 0.063, + "_id": { + "$oid": "6711d60acd60fca157e5e41a" + } + }, + { + "text": "I loved her class. She is a very kind woman who is also very understanding. She has long lectures but they never feel boring even to me even though I am not a architecture major. No midterm btw and final is just a research paper which isn't too bad.", + "pos": 0.189, + "neu": 0.755, + "neg": 0.056, + "_id": { + "$oid": "6711d60acd60fca157e5e41b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60bcd60fca157e5e41d" + }, + "professor_name": "Luis Arce", + "rating": 2.7, + "department": "Biology department", + "comments": [ + { + "text": "Luis can be a tough grader but once you get a grasp on his expectations and system it is easy to get a good grade. He is the type to nitpick small things like forgetting to capitalize a species or forgetting a comma within citations but there are plenty of opportunities for feedback and rewriting reports to get a higher grade.", + "pos": 0.2, + "neu": 0.782, + "neg": 0.017, + "_id": { + "$oid": "6711d60bcd60fca157e5e41e" + } + }, + { + "text": "Expectations weren't clear some of the time and couldn't understand the lab content half the time. He responds to emails very fast. Careful on those lab reports, those can easily tank your grade. All other lab TA's suck too so good luck!", + "pos": 0.212, + "neu": 0.691, + "neg": 0.098, + "_id": { + "$oid": "6711d60bcd60fca157e5e41f" + } + }, + { + "text": "find a better ta. no offense but you can barely understand when hes speaking. he speaks so fast and his accent makes it harder to understand what hes saying. he can be rude with students at times but also helpful when it comes to papers. he takes a lot of points off for the smallest things but if you fight for it he will give some back.", + "pos": 0.092, + "neu": 0.811, + "neg": 0.097, + "_id": { + "$oid": "6711d60bcd60fca157e5e420" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60bcd60fca157e5e422" + }, + "professor_name": "Oscar Moreno", + "rating": 3.7, + "department": "World Civilizations department", + "comments": [ + { + "text": "His grading scale is specific from 1-4 for assignments. There is no A- or B+ just A,B,C, D so try your best. And listen carefully to his lectures.", + "pos": 0.18, + "neu": 0.754, + "neg": 0.066, + "_id": { + "$oid": "6711d60bcd60fca157e5e423" + } + }, + { + "text": "He a good professor but he also a tough grader but he give good feedback and extra credit for assignments and his work is 4 assignments though out the course with 1 midterm and 1 final exam. Is textbook course and you will have to read chapter weekly.", + "pos": 0.167, + "neu": 0.801, + "neg": 0.032, + "_id": { + "$oid": "6711d60bcd60fca157e5e424" + } + }, + { + "text": "Weekly quizzes on readings. The readings are quite long but the quizzes are easy. There are 4 assignments, 1 midterm and a final; show up in office hours to ask for feedback on your essays... he's pretty chill about it and can give really good comments for improvement!! Can be a harsh grader only if he sees you don't care about your grade/class", + "pos": 0.209, + "neu": 0.701, + "neg": 0.09, + "_id": { + "$oid": "6711d60bcd60fca157e5e425" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60bcd60fca157e5e427" + }, + "professor_name": "Mohammed Tkachmita", + "rating": 3.3, + "department": "Arabic department", + "comments": [ + { + "text": "Professor Tkachmita is an okay professor. If you took arab12300 with him, it is better to take arab124 with him too because he basically continues with the material. Sometimes he talks as if all the students understand Arabic really well. But if you are confused, he will explain it really well. He gives extra credit and homework once a week.", + "pos": 0.169, + "neu": 0.788, + "neg": 0.043, + "_id": { + "$oid": "6711d60bcd60fca157e5e428" + } + }, + { + "text": "Honestly this class was easy and the professor is really nice", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d60bcd60fca157e5e429" + } + }, + { + "text": "Exams and quizzes are worth a lot so you have to ace them in order to pass. He gives a good amount of homework and you have a final project to do. He doesn't really teach but will explain if you are confused about something. Be ready to speak a lot for this class but overall, he's good and you will pass for sure!", + "pos": 0.184, + "neu": 0.777, + "neg": 0.039, + "_id": { + "$oid": "6711d60bcd60fca157e5e42a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60ccd60fca157e5e42c" + }, + "professor_name": "Genesis Ledesma", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Amazing Professor. Understanding and lenient. Show up, do the work and you'll pass. 5 short papers, 1 final paper. I know it sounds like a lot but they are very easy. If she's an option for intro to pysch, definitely take her.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d60ccd60fca157e5e42d" + } + }, + { + "text": "Really great professor with interesting and engaging lectures. There are about six pretty simple, straightforward papers throughout the course. As long as you submit your work, it's an easy A.", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d60ccd60fca157e5e42e" + } + }, + { + "text": "Such a good teacher. Psychology can be hard, but Professor Ledesma makes things 10x easier. There are no tests throughout the course, just some easy papers to write. Class is very easy you just show up and get an A.", + "pos": 0.266, + "neu": 0.657, + "neg": 0.077, + "_id": { + "$oid": "6711d60ccd60fca157e5e42f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60ccd60fca157e5e431" + }, + "professor_name": "Sophia Little", + "rating": 1, + "department": "Art department", + "comments": [ + { + "text": "She's nice but her assignments are vague, her lectures are all over the place, she hardly teaches the programs she uses and she assigns so much homework that it's a race to complete every week and impossible to properly explore and learn the material. She offers no rubric for grading and her use of break-out rooms is an incredible waste of time.", + "pos": 0.028, + "neu": 0.847, + "neg": 0.125, + "_id": { + "$oid": "6711d60ccd60fca157e5e432" + } + }, + { + "text": "This class is difficult not because of the projects assigned, but because of the lack of clarity there is. I never felt like my grades reflected the work I turned in. On top of that, the prof. doesn't leave comments/feedback as to why points were deducted. I felt like I was on my own for the entire semester. Please dodge this bullet.", + "pos": 0.177, + "neu": 0.724, + "neg": 0.099, + "_id": { + "$oid": "6711d60ccd60fca157e5e433" + } + }, + { + "text": "She is a nice professor, but the class gives you very few instructions; the rest you must figure out on your own. Her grading is very strict, she gives you a very low grade on assignments without comments, you wont know what went wrong if you don't ask.", + "pos": 0.035, + "neu": 0.831, + "neg": 0.134, + "_id": { + "$oid": "6711d60ccd60fca157e5e434" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60ccd60fca157e5e436" + }, + "professor_name": "Samantha Diaz", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Professor Diaz is the best professor at CWE. She will teach you things you will see and use in the classroom.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d60ccd60fca157e5e437" + } + }, + { + "text": "Prof. Samantha is such an amazing professor. She really cares about her students and often asks her class how we feel about assignments. If you don't understand something she will explain it in various ways until you get it. She is one of those professors you feel comfortable talking to because you know she has been where you are.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d60ccd60fca157e5e438" + } + }, + { + "text": "You won't regret having professor Samantha Diaz. She is one in a million and always tends to her students needs. I wish we had more caring, respectful, and inspirational teachers like professor Samantha Diaz at CCNY CWE. I want to take more classes with her in the future. She is the best professor you will have in the Education Department at CWE.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d60ccd60fca157e5e439" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60dcd60fca157e5e43b" + }, + "professor_name": "Juliana de Castro Galvao", + "rating": 4.7, + "department": "Sociology department", + "comments": [ + { + "text": "Professor Galvao really wanted us to get the most of this class, so there were a lot of resources given to us to understand the material (lecture posts, slides, readings, class meetings, HW etc.) It was a lot, honestly, but nothing impossible. She was always ready to answer questions, so anything that was hard, she did her best to explain.", + "pos": 0.161, + "neu": 0.816, + "neg": 0.023, + "_id": { + "$oid": "6711d60dcd60fca157e5e43c" + } + }, + { + "text": "Juliana is a great professor that cares about students, but she does give a lot of time consuming work and heavy weekly readings. Theres weekly posts, 3 short-answer assignments, a quiz, midterm and final papers. It's a lot of work but you'll learn a lot as well. You get extra credit if u attend and participate in class. (Class is one day a week).", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d60dcd60fca157e5e43d" + } + }, + { + "text": "Juliana is an amazing teacher and a very fair grader. She provides outlines before exams and she collects feedbacks after exams. She communicates very clearly and most importantly, she wants her students to achieve good grades. Her lectures and readings are inspirational as they connect with your daily life and they make you reflect on yourself.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d60dcd60fca157e5e43e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60dcd60fca157e5e440" + }, + "professor_name": "Mattia Mossali", + "rating": 5, + "department": "Italian department", + "comments": [ + { + "text": "He's the king! Amazing lectures and genuinely cares about his students.", + "pos": 0.441, + "neu": 0.559, + "neg": 0.0, + "_id": { + "$oid": "6711d60dcd60fca157e5e441" + } + }, + { + "text": "Great professor. Finds a way to keep students entertained, teaches lecture and makes sure you understand.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d60dcd60fca157e5e442" + } + }, + { + "text": "Best teacher on earth, if you have the chance to take him, please do. He makes sure you understand everything and helps you learn in detail. Super easy tests if you study and he is very helpful with the reviews. LOVE THIS PROFESSOR!", + "pos": 0.456, + "neu": 0.544, + "neg": 0.0, + "_id": { + "$oid": "6711d60dcd60fca157e5e443" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60dcd60fca157e5e445" + }, + "professor_name": "Judith Myrthil", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "This is the most confusing professor I have ever had. Whenever I see my classmates, we talk about how awful and utterly perplexing she is. She assigns extremely long readings, and then doesn't mention them in class. Her feedback is strange. It seems as if this class is her lowest priority. Do not take her class! It will just be a headache.", + "pos": 0.0, + "neu": 0.854, + "neg": 0.146, + "_id": { + "$oid": "6711d60dcd60fca157e5e446" + } + }, + { + "text": "Forgets to give back feedback. Takes forever to reach out and has sarcastic replies to emails. She made us do many unnecessary worksheets (given we were student teaching and working during the pandemic) and graded everyone unfairly. Didn't provide us with any warning or update about how we were doing in the class, just gave us the grades.", + "pos": 0.018, + "neu": 0.909, + "neg": 0.073, + "_id": { + "$oid": "6711d60dcd60fca157e5e447" + } + }, + { + "text": "what a waste of time and energy.", + "pos": 0.212, + "neu": 0.505, + "neg": 0.283, + "_id": { + "$oid": "6711d60dcd60fca157e5e448" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60ecd60fca157e5e44a" + }, + "professor_name": "Susan Perkins", + "rating": 3.3, + "department": "Biology department", + "comments": [ + { + "text": "Definitely a good class if you don't have other demanding courses at the same time. Prof is great, don't be intimidated b/c she's the dean of the science department. She's always reachable and is very understanding. Her TA does a lot of the grading and is actually the harsh grader. If you study and actually put effort in, it won't be a hard class.", + "pos": 0.201, + "neu": 0.76, + "neg": 0.039, + "_id": { + "$oid": "6711d60ecd60fca157e5e44b" + } + }, + { + "text": "This class was challenging due to the sheer amount of information we learned and projects we completed throughout the semester. However, she is a very nice teacher and as long as you study, take notes, and work hard on your projects you will be fine.", + "pos": 0.133, + "neu": 0.839, + "neg": 0.029, + "_id": { + "$oid": "6711d60ecd60fca157e5e44c" + } + }, + { + "text": "Do not take this professor! She is the dean of science. Extremely harsh grading. Takes so many points off of every single assignment, makes it impossible to do well despite all the hard work and effort. There are so many assignments and presentations that require so much time. Expects you to memorize every single detail, tests on the fine lines.", + "pos": 0.085, + "neu": 0.866, + "neg": 0.049, + "_id": { + "$oid": "6711d60ecd60fca157e5e44d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60ecd60fca157e5e44f" + }, + "professor_name": "Mette Christiansen", + "rating": 4.3, + "department": "Political Science department", + "comments": [ + { + "text": "Class was very lecture heavy, old-school teaching style with the chalkboard and no electronic rule, lots of readings but they were all very interesting and gets you thinking critically. She would update the syllabus whenever there's a change in the class schedule. She cares a lot about her students and would ask for feedbacks so she could improve.", + "pos": 0.18, + "neu": 0.796, + "neg": 0.024, + "_id": { + "$oid": "6711d60ecd60fca157e5e450" + } + }, + { + "text": "I loveddd taking this class with Professor Christiansen. There is a lot of reading, (whole books at times) but its so worth it. The class is 100% centered around socratic seminar-esque discussion and I felt as though it was very fulfilling. You can tell she cares. She also offered lots of extra credit which was very appreciated!", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d60ecd60fca157e5e451" + } + }, + { + "text": "One of the better people and (soon, cuz I think she jus still new to it) profs at CCNY. She assign HUGE amounts of reading, n class was a discussion around the reading. It was devastating how much work she gave. But she give lots of easier extra credit and she grade kindly. I put caring cuz she care about students AND THE MATERIAL, which is awesome", + "pos": 0.328, + "neu": 0.643, + "neg": 0.029, + "_id": { + "$oid": "6711d60ecd60fca157e5e452" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60fcd60fca157e5e454" + }, + "professor_name": "Shohtaro Carroll", + "rating": 2.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Quizzes almost everyday + 3 exams + 1 final exam. Never available outside of class via email. Can't teach. Always covers topics either to quickly or not well enough.", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d60fcd60fca157e5e455" + } + }, + { + "text": "Lots of pop quizzes and three midterms + final. Rushes through the topics really fast, but willing to expand on them if someone asks questions. Assumes you know things unless told otherwise. Writes fast and goes through the notes too quickly. Calculus is just a confusing topic in general, he's not great for someone who struggles with math already.", + "pos": 0.043, + "neu": 0.809, + "neg": 0.148, + "_id": { + "$oid": "6711d60fcd60fca157e5e456" + } + }, + { + "text": "3 midterms & 5 quizzes. He send a review like the day before the exam without solutions. impossible to reach out. guy in class messaged him over 5+ times and he finally responded the day before the final. nice grader- exams. he doesn't put grades on blackboard. He curved for my class. class average was a 60. u can find and message him on insta.", + "pos": 0.093, + "neu": 0.885, + "neg": 0.022, + "_id": { + "$oid": "6711d60fcd60fca157e5e457" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60fcd60fca157e5e459" + }, + "professor_name": "Arielle Cribb", + "rating": 3.7, + "department": "Women's Studies department", + "comments": [ + { + "text": "Professor. Cribb might seem strict at first however she was an amazing professor. She gives decent amount of work. Participation meaning volunteering or even showing up to class is definitely important and will affect your grade a lot. Would recommend her especially if you are interested in women studies.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d60fcd60fca157e5e45a" + } + }, + { + "text": "the class is black power women autobiography. i took the class in the fall of 2022 and it was truly a good class with great conversation. if you major in women studies, black studies or even if you're looking for a class as an elective, i think taking this one with professor cribb is your best bet. we have 3 books you purchase & discussions.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d60fcd60fca157e5e45b" + } + }, + { + "text": "She graded my paper and told me I had historical context but not as much as she would like. She very difficult because shes graded based of of her own interpretation regardless of if you follows the prompt to a T or not. Definitely wont be going back to her.", + "pos": 0.057, + "neu": 0.827, + "neg": 0.116, + "_id": { + "$oid": "6711d60fcd60fca157e5e45c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d60fcd60fca157e5e45e" + }, + "professor_name": "Kevin Derricotte", + "rating": 4, + "department": "Communication department", + "comments": [ + { + "text": "Professor is extremely nice and understanding. His lectures are fairly easy and he posts his lectures as well as explains them. If you have any issues, he will do everything to help you. Just keep up with this class and you will do good.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d60fcd60fca157e5e45f" + } + }, + { + "text": "I recommend taking Prof. Derricotte's class. His lessons are very efficient. He gives great feedback and you will leave his class knowing you learned what you were supposed too. He is very accessible and easy to talk too. He actually cares about his students and will reach out to you, making sure your progressing.", + "pos": 0.29, + "neu": 0.692, + "neg": 0.018, + "_id": { + "$oid": "6711d60fcd60fca157e5e460" + } + }, + { + "text": "Professor Derricotte is truly a Public Relations Practitioner. He's a tough cookie, but you will learn a lot about Public Relations from him. He is truly passionate about what he teaches, and he knows what he is talking about. He will break you down and build you back up, something I did not expect, but he has grew on me. I recommend taking him.", + "pos": 0.185, + "neu": 0.798, + "neg": 0.017, + "_id": { + "$oid": "6711d60fcd60fca157e5e461" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d610cd60fca157e5e463" + }, + "professor_name": "Carol Polen", + "rating": 4, + "department": "Political Science department", + "comments": [ + { + "text": "yooo", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d610cd60fca157e5e464" + } + }, + { + "text": "You will take quizzes very often in her microeconomics class. Good Teacher and explains well. Study for her class and ask a lot of questions. She gives extra credit and requires attendance. Looking for an easy A? Don't choose this class. Looking to learn? It's your perfect fit!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d610cd60fca157e5e465" + } + }, + { + "text": "Do the readings that are assigned to pass the quizzes. Ask for help with questions or essay.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d610cd60fca157e5e466" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d610cd60fca157e5e468" + }, + "professor_name": "Bradley Nelson", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "If I could take Prof. Nelson again I def would. Show up, participate and do your papers. He isn't a tough grader but you do read alot in this class (it is English Lit after all) & there are some quizzes so just read and do your work. You'll pass", + "pos": 0.024, + "neu": 0.976, + "neg": 0.0, + "_id": { + "$oid": "6711d610cd60fca157e5e469" + } + }, + { + "text": "Great prof, tells you. tells you what you want, Easy A if you come to class read/participate and do your easy papers. He made class discussions interesting as well. Take him!", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d610cd60fca157e5e46a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d610cd60fca157e5e46c" + }, + "professor_name": "Keelie Sheridan", + "rating": 4.5, + "department": "Theater department", + "comments": [ + { + "text": "BEST. Whether you are an art major, or not you will love it. Give amazing feedback and does her best to make people feel comfortable. if you need help, ask her. she is great.", + "pos": 0.431, + "neu": 0.506, + "neg": 0.063, + "_id": { + "$oid": "6711d610cd60fca157e5e46d" + } + }, + { + "text": "Took as an elective. The plays are 3 on campus and one of your own choices off campus. Talk to her, at on my first paper I got a B+ and I didn't know why. When I talked to her, I got good feedback for the next paper. Play reviews for each play you see and a group project on a play discussed in class.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d610cd60fca157e5e46e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d611cd60fca157e5e470" + }, + "professor_name": "Mehrnaz Moghaddam", + "rating": 4.5, + "department": "Economics department", + "comments": [ + { + "text": "She uses real world examples and that make the class interesting. She does care about the students and stay after class to answer the questions.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d611cd60fca157e5e471" + } + }, + { + "text": "Mehrnaz is a nice professor. I gained a new perspective by the way she gives lecture. She answers emails quick and stays after class to answer questions.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d611cd60fca157e5e472" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d611cd60fca157e5e474" + }, + "professor_name": "Mara Grayson", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Eng 21007 - She is extremely nice, extremely clear, knows her material, and is easy to get along with. It's a pleasure to have her as a professor. And yes, she's hot. :)", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d611cd60fca157e5e475" + } + }, + { + "text": "helpful for ENG21007", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d611cd60fca157e5e476" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d611cd60fca157e5e478" + }, + "professor_name": "Angela Bronner Helm", + "rating": 2.8, + "department": "Media Arts department", + "comments": [ + { + "text": "Awful.", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d611cd60fca157e5e479" + } + }, + { + "text": "Gives clear feedback. Always wants to know if students understands the lessons. Her grading policy is on the syllabus but she was not clear if she would follow it completely (because 20% were weekly quizzes and we only had like 4). Interesting class and participation is key! No textbook was used!:)", + "pos": 0.151, + "neu": 0.757, + "neg": 0.092, + "_id": { + "$oid": "6711d611cd60fca157e5e47a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d612cd60fca157e5e47c" + }, + "professor_name": "Cristina Segura", + "rating": 2, + "department": "Spanish department", + "comments": [ + { + "text": "This is the first Prof. in many years that made me actually hate studying a foreign language. Her classes are useless & boring. We've read lots of texts without understanding most of them. Quizzes on MySpanishLab al exams are ok. Midterm&final: topics are given before; 60% irregular verbs; much more complicated than the book; confusing.", + "pos": 0.0, + "neu": 0.827, + "neg": 0.173, + "_id": { + "$oid": "6711d612cd60fca157e5e47d" + } + }, + { + "text": "She's probably the worse instructor you can take for Spanish. Makes the entire class confusing. Since I am a non Spanish speaker, I was constantly struggling in her class and she refused to give me extra credit. To make matters worse, on Blackboard my grade calculated to be a B- and she ended up giving me a C-. Please don't take her, she's terrible", + "pos": 0.107, + "neu": 0.687, + "neg": 0.206, + "_id": { + "$oid": "6711d612cd60fca157e5e47e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d612cd60fca157e5e480" + }, + "professor_name": "Karen Okigbo", + "rating": 5, + "department": "Sociology department", + "comments": [ + { + "text": "Best professor I ever had at Umass. She is hilarious, amazing at teaching, and extremely engaging with the class. She knows everyone and interacts with all with amazing communication", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d612cd60fca157e5e481" + } + }, + { + "text": "This Prof is amazing Syllabus is straight forward, she gives great feedback on your work, she's is a great public speaker and is very modern (understands her students and LIFE). She is very organized and CLEAR. Taking her class was a pleasure, just do your readings and come prepared to do class/group discussions. Her passion for teaching reflects", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d612cd60fca157e5e482" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d612cd60fca157e5e484" + }, + "professor_name": "Jake Davis", + "rating": 4.5, + "department": "Philosophy department", + "comments": [ + { + "text": "Professor Davis is knowledgeable about the material he teaches, and he wants his students to appreciate it, as well. Participation is a must! Never miss a Blackboard post or a discussion question at the start of class! These two things can, and will, determine your final grade; trust me! He makes himself available outside of class at the GC! :)", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d612cd60fca157e5e485" + } + }, + { + "text": "I didn't really like philosophy and kinda still don't, but I don't blame Jake for that. However, the class was much better than I expected. His explanations aren't always crystal clear, but he always tries to help no matter what. Three short essays and one longer final paper. Readings are mandatory for participation points. Definitely great.", + "pos": 0.282, + "neu": 0.642, + "neg": 0.076, + "_id": { + "$oid": "6711d612cd60fca157e5e486" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d613cd60fca157e5e488" + }, + "professor_name": "Karen Estefane", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Amazing Professor. Read her slides and you will be prepared for the exams, grades leniently for the paper as well.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d613cd60fca157e5e489" + } + }, + { + "text": "Really fun and interesting to listen to. Knows what she is talking about and gives good examples from real life. Very sweet and easy to work with. She cares about helping her students do well and making sure that they understand the material. Would take another class with her if she taught it. Great professor all around would HIGHLY RECOMMEND.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d613cd60fca157e5e48a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d613cd60fca157e5e48c" + }, + "professor_name": "Graziano Fiorillo", + "rating": 5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He is very nice and explains the material clearly. He also gives partial credit. This class is very hard so you need to study a LOT but this professor makes it worthwhile. He doesn't curve though, so make sure you really study hard. Exams aren't that tough. Overall, great professor.", + "pos": 0.304, + "neu": 0.643, + "neg": 0.053, + "_id": { + "$oid": "6711d613cd60fca157e5e48d" + } + }, + { + "text": "Very nice, friendly guy, funny lectures (\"the structure will dance\" if it's not properly constrained), and most importantly, a reasonable amount of partial credit. The reason CE 231 has a high failure rate is because the other professors are brutal on the partial credit. This guy gives a fair amount. Overall, an awesome professor.", + "pos": 0.331, + "neu": 0.571, + "neg": 0.098, + "_id": { + "$oid": "6711d613cd60fca157e5e48e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d613cd60fca157e5e490" + }, + "professor_name": "Mahmood Mohammadi Shad", + "rating": 4.8, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Great professor and fair grader. Unlike the other section you actually learn how to code in matlab. Weekly quizzes (usually one problem from the homework which he gives solutions) and a programming assignment due. Like it or not this class is a lot of work and difficult no matter what. Go to offices hours, he as good one on one explanations.", + "pos": 0.186, + "neu": 0.728, + "neg": 0.086, + "_id": { + "$oid": "6711d613cd60fca157e5e491" + } + }, + { + "text": "He is an expert in engineering numerical methods using MATLAB. The lab sessions were lengthy but really worth it. My programming skills improved a lot.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d613cd60fca157e5e492" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d614cd60fca157e5e494" + }, + "professor_name": "Emily Greble", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "Professor Greble is simply amazing. She is always smiling and ready to help you when you need it. She gives 2 papers that are 3-4 pages that are basically a summary of a book, then a 10 page research paper for the final. She gives in class quizzes every class to ensure students are reading, which the readings are short. Not a tough grader. Amazing.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d614cd60fca157e5e495" + } + }, + { + "text": "One of ccny's best! She gives 3 essays. Two which are based off the reading and one research paper at the end of the term. The essays were 2-3 pages long and she gives great feedback. She is always happy to hear other students views and never disagree. She was really helpful and worth taking. I can't wait to take her again for another history.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d614cd60fca157e5e496" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d614cd60fca157e5e498" + }, + "professor_name": "Susan Elizabeth Gagliardi", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "On the first day of class you will be kicking yourself for having registered, and by the second month you will wish you had dropped. Stick with it and you will realize Gagliardi is much softer than she appears and she grades quite fairly. Expect to work much harder than any other upper level art history class. P.S. Don't use the word Shaman.", + "pos": 0.042, + "neu": 0.958, + "neg": 0.0, + "_id": { + "$oid": "6711d614cd60fca157e5e499" + } + }, + { + "text": "Prof Gagliardi is smarter than you and she will spend the entire semester finding new ways of proving this fact. Her control issues get old quickly. She'll also ask you to set aside Western assumptions about Africa while refusing to change her ideas about what a college education means in the CCNY context.", + "pos": 0.053, + "neu": 0.899, + "neg": 0.048, + "_id": { + "$oid": "6711d614cd60fca157e5e49a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d614cd60fca157e5e49c" + }, + "professor_name": "Glady Levy", + "rating": 4, + "department": "Speech department", + "comments": [ + { + "text": "She is a nice professor. Since she is old, she forgets the assignments sometimes. But she really cares about the students. She explains you the assignments clearly and tells you what she SPECIFICALLY wants from the assignments. There is only a few amount of assignments. She is lenient and easy. She doesn't give you any hard time at all. MUST TAKE.", + "pos": 0.225, + "neu": 0.754, + "neg": 0.022, + "_id": { + "$oid": "6711d614cd60fca157e5e49d" + } + }, + { + "text": "Professor very disorganized and all over the place but she does have to commute from diff campuses. She is very nice and tries to be helpful. The speeches and midterm n final are very easy. If she gives extra credit n you do it, u can even miss a test and still get an A.", + "pos": 0.228, + "neu": 0.719, + "neg": 0.053, + "_id": { + "$oid": "6711d614cd60fca157e5e49e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d615cd60fca157e5e4a0" + }, + "professor_name": "Fallou Gueye", + "rating": 4, + "department": "French department", + "comments": [ + { + "text": "very good professor but his test are hard. yo have to study his exams and understand what is it that his loves to included. he is usually a little latr to class. Good grade at the end of the semester.", + "pos": 0.226, + "neu": 0.741, + "neg": 0.033, + "_id": { + "$oid": "6711d615cd60fca157e5e4a1" + } + }, + { + "text": "He is a very nice professor. He teaches a lot but usually he explains the grammar rules the day before the test. His test are not that easy you do have to study a lot from the textbook and from what he said in the review session in class.", + "pos": 0.039, + "neu": 0.901, + "neg": 0.06, + "_id": { + "$oid": "6711d615cd60fca157e5e4a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d615cd60fca157e5e4a4" + }, + "professor_name": "Kamilah Ali", + "rating": 1.8, + "department": "Biology department", + "comments": [ + { + "text": "FIRE HER!!!!!! WORSE PROFESSOR IN THE CUNY SYSTEM!!!!! DOESNT KNOW JACK in Biology!!!!!! anytime you ask her a question she replies 'i dont know or 'im not sure'... her questions on the test DONT MAKE SENSE!!!!", + "pos": 0.0, + "neu": 0.766, + "neg": 0.234, + "_id": { + "$oid": "6711d615cd60fca157e5e4a5" + } + }, + { + "text": "She is extremely fast in lectures and covers a lot of material in a limited amount of time. You have to attend lectures so you know what to expect on her exam because her questions are a bit tough.", + "pos": 0.0, + "neu": 0.916, + "neg": 0.084, + "_id": { + "$oid": "6711d615cd60fca157e5e4a6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d616cd60fca157e5e4a8" + }, + "professor_name": "Hari Akula", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Extremely knowledgable of the organic chemistry, helps students readily in and outside class. Provides a grading scheme for lab reports so how your being graded is known and fair.", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d616cd60fca157e5e4a9" + } + }, + { + "text": "Extremely helpful, made the long lab (4 hours) seem short. Help made sense of the lab work by relating to what was taught in organic 1. Highly recommended.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d616cd60fca157e5e4aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d616cd60fca157e5e4ac" + }, + "professor_name": "Serge Shuster", + "rating": 3.5, + "department": "Economics department", + "comments": [ + { + "text": "He is ok, but his accent is killing me! Hard to understand most of the lecture material.", + "pos": 0.0, + "neu": 0.652, + "neg": 0.348, + "_id": { + "$oid": "6711d616cd60fca157e5e4ad" + } + }, + { + "text": "Shuster is very good in explaining derivatives", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d616cd60fca157e5e4ae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d616cd60fca157e5e4b0" + }, + "professor_name": "Jim Neujhar", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "great professor this is an EASY A..he makes you do childlike experiments which keeps the class vibrant. he only gives like 5 homeworks and a final.NO BOOKS AT ALL JUST A FEW HANDOUTS! we didnt even have a midterm and you can hand in late homeworks..he is the absolute best and very sweet guy, never screams or gives attitude!", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d616cd60fca157e5e4b1" + } + }, + { + "text": "Very sweet, funny and there was always something to do in his class dealing with games,discussions and just acting like children lol.", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d616cd60fca157e5e4b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d617cd60fca157e5e4b4" + }, + "professor_name": "Matthew Southard", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Took the Abnormal Personality with him in summer. He explains everything in great details. His lectures are easy to understand. He did a review before every exam which was very helpful. As long as you read the slides you will score A on the exams. He gives pop quizzes as well which he counts as extra credit. definitely take him!!!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d617cd60fca157e5e4b5" + } + }, + { + "text": "For an adjunct, he did better than some professors I've taken. He's very passionate about what he does and it shows in his lectures. I took his abnormal personality course during the summer, so it was very demanding. Homework was assigned 2-3 times a week and if you don't go, you won't pass. Overall, he cares about the students and a good person", + "pos": 0.172, + "neu": 0.798, + "neg": 0.03, + "_id": { + "$oid": "6711d617cd60fca157e5e4b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d617cd60fca157e5e4b8" + }, + "professor_name": "Seth Powers", + "rating": 4.8, + "department": "Theater department", + "comments": [ + { + "text": "Pretty cool guy", + "pos": 0.846, + "neu": 0.154, + "neg": 0.0, + "_id": { + "$oid": "6711d617cd60fca157e5e4b9" + } + }, + { + "text": "He is kinda hot, I took him for Intro to Theater and Acting. He can be very serious at times but overall very chill and has a very natural organized class set up.", + "pos": 0.103, + "neu": 0.861, + "neg": 0.036, + "_id": { + "$oid": "6711d617cd60fca157e5e4ba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d617cd60fca157e5e4bc" + }, + "professor_name": "Esther Duran", + "rating": 3.8, + "department": "Media Arts department", + "comments": [ + { + "text": "She is an intelligent woman who encourages students to make connections. Her grading was tough at times but she was very specific in what she was looking for. She is a film buff and taught us really fascinating things. She made assignments due very close together but in her defense she had to take over the class from another professor mid semester.", + "pos": 0.158, + "neu": 0.824, + "neg": 0.018, + "_id": { + "$oid": "6711d617cd60fca157e5e4bd" + } + }, + { + "text": "very smart professor. Gives a lot of assignments right after the other, due dates are not ideal. Helps when you are editing an assignment. Has an accent but you can understand her. One bad thing is that she makes la lot of things due in one day, but she is clear on what he wants. Is available if you need her. She should spend more time in lectures", + "pos": 0.07, + "neu": 0.822, + "neg": 0.107, + "_id": { + "$oid": "6711d617cd60fca157e5e4be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d618cd60fca157e5e4c0" + }, + "professor_name": "Cedric Davenport", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "He's a very chill and if you do your work, your guaranteed a B. If you have a chance, take him.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d618cd60fca157e5e4c1" + } + }, + { + "text": "I think this is the best and easiest English for Engineers professor at CCNY. We watched 4 movies during the semester. We did only about 4 3-pages double sided paper and 2 6-pages projects. If you do the assignments a B is guarantee. Good chance of getting an A.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d618cd60fca157e5e4c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d618cd60fca157e5e4c4" + }, + "professor_name": "Jessica Reed", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "excellent instructor. very helpful and very motivating. keeps the class interesting.", + "pos": 0.65, + "neu": 0.35, + "neg": 0.0, + "_id": { + "$oid": "6711d618cd60fca157e5e4c5" + } + }, + { + "text": "Great teacher. too bad she's an adjunct but really fun to learn from. She's very open minded and the curriculum is pretty easy to follow. Couple of papers to write but the subjects tend to be very open so it's easy to find yourself writng about something you really like. It's an easily enjoyable class for anybody.", + "pos": 0.378, + "neu": 0.594, + "neg": 0.028, + "_id": { + "$oid": "6711d618cd60fca157e5e4c6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d618cd60fca157e5e4c8" + }, + "professor_name": "Bo Yuan", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He's an alright professor. He tries his best to teach in class using slides and he gives a sample exam that is similar in format to the actual exam. First exam is very long and tedious. Second exam is easier. Final seems easy but for some reason, many people didn't score high on it. Anyways, better than many in his department.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d618cd60fca157e5e4c9" + } + }, + { + "text": "His tests are long so you really have to know what you're doing to finish them. Textbook is very cheap and the homeworks are easy but long. Overall he is a great professor and knowledgeable in his field.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d618cd60fca157e5e4ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d619cd60fca157e5e4cc" + }, + "professor_name": "Daniela Fifi", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She was very nice. I liked the way her class was structured. She taught for half of the class and then allowed us to create art piece relating to what she taught. Had homework readings for every class. Learned a lot.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d619cd60fca157e5e4cd" + } + }, + { + "text": "Awesome teacher! If you want one less class to stress about take this professor! The class is not stressful at all and you learn a lot in the process with group work! At the end of the semester you have to create an art lesson plan and execute it in any form of art you decide. Every week there were article readings but nothing to panic about.", + "pos": 0.155, + "neu": 0.821, + "neg": 0.024, + "_id": { + "$oid": "6711d619cd60fca157e5e4ce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d619cd60fca157e5e4d0" + }, + "professor_name": "Xiaoying Zhou", + "rating": 5, + "department": "Chinese department", + "comments": [ + { + "text": "She goes the extra mile to make learning Chinese fun with games and cute PowerPoints. She also broke down every character and term simply for you on Quizlet so you can learn on your own and study. She does give quizzes, but she always tells you in advance.", + "pos": 0.081, + "neu": 0.881, + "neg": 0.037, + "_id": { + "$oid": "6711d619cd60fca157e5e4d1" + } + }, + { + "text": "Zhou Laoshi clearly presented her expectations on day1. She seems strict at first, but is fun and patient;she helps you pronounce words correctly even if it takes a while. She never got frustrated. You can go to office hours or email her if you need help. Occasional quizzes but she will tell you in advance. One of the best professors. Xiexie laoshi", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d619cd60fca157e5e4d2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d619cd60fca157e5e4d4" + }, + "professor_name": "Laura Kaplan", + "rating": 4.5, + "department": "Education department", + "comments": [ + { + "text": "He is the best professor and friendly professor", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d619cd60fca157e5e4d5" + } + }, + { + "text": "Very nice professor. Her interest in education and politics is incredible! Helped the class understand things we may face as teachers. She's a bit unorganized. The class revolves around the readings and postings! Recommend!", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d619cd60fca157e5e4d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61acd60fca157e5e4d8" + }, + "professor_name": "Olga Chajet", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She is very good,she takes time to explain.Best,you should take her", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d61acd60fca157e5e4d9" + } + }, + { + "text": "Omg... she is the best..!!! if you want to pass the ACT you should take her class..!!!! she knows what she is doing..!!!!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d61acd60fca157e5e4da" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61acd60fca157e5e4dc" + }, + "professor_name": "Elisabeth Tiso", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Great class and teacher. Learned a lot. Tough but rewarding.", + "pos": 0.464, + "neu": 0.455, + "neg": 0.081, + "_id": { + "$oid": "6711d61acd60fca157e5e4dd" + } + }, + { + "text": "Tough but rewarding! She is very enthusiastic and interactive with her students.She is one of the rare professors who reviews the exam. Thanks to her, I changed my major to ART!", + "pos": 0.328, + "neu": 0.642, + "neg": 0.03, + "_id": { + "$oid": "6711d61acd60fca157e5e4de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61acd60fca157e5e4e0" + }, + "professor_name": "Jonathon Udels", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Very helpful & funny. He is enthusiastic about his teachings. If you have questions he is willing to help. As long as you get all your assignments done on time, go to class & participate you will do fun. I recommend him as a teacher. He's good.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d61acd60fca157e5e4e1" + } + }, + { + "text": "He's a good professor, just do all your homework!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d61acd60fca157e5e4e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61bcd60fca157e5e4e4" + }, + "professor_name": "Jianmin Zou", + "rating": 4.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "GOOD", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d61bcd60fca157e5e4e5" + } + }, + { + "text": "He grade based on class average.He doesn't care if student cheat in the class but he does assaing the seat for student.", + "pos": 0.0, + "neu": 0.84, + "neg": 0.16, + "_id": { + "$oid": "6711d61bcd60fca157e5e4e6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61bcd60fca157e5e4e8" + }, + "professor_name": "Dora Trujillo", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "If all math teachers that i had in the past were like her, I'd consider perusing a career in Mathematics, and probably become a teacher too. So many ppl hate math just cuz they don't get it, like i did in the past and the my teachers didn't really help much. Now I like Math for many reasons! So many ppl still hate Math 4 no reason!", + "pos": 0.062, + "neu": 0.75, + "neg": 0.188, + "_id": { + "$oid": "6711d61bcd60fca157e5e4e9" + } + }, + { + "text": "Best math teacher I've ever had! If u suck in math, she's the right teacher for u! I hated math cuz I was never good at it but I had crappy teachers... She makes the material so easy to understand! U just need to pay attention. She also cares whether we get it or not and would not move on until she's sure we understand it! Really good teacher!", + "pos": 0.219, + "neu": 0.642, + "neg": 0.139, + "_id": { + "$oid": "6711d61bcd60fca157e5e4ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61bcd60fca157e5e4ec" + }, + "professor_name": "Maria Tsortanidis", + "rating": 5, + "department": "Earth Science department", + "comments": [ + { + "text": "I love Maria, she was such a sweet heart. :) Honestly the best EAS lab instructor ever. She made the class fun and was extremely understanding/helpful.", + "pos": 0.567, + "neu": 0.433, + "neg": 0.0, + "_id": { + "$oid": "6711d61bcd60fca157e5e4ed" + } + }, + { + "text": "Maria is a great lab instructor! She is extremely clear and is willing to help students who are struggling. She grades labs and quizzes leniently. She pretty much cares more about the student understanding the material. And she is very down to earth and friendly. TAKE HER!", + "pos": 0.315, + "neu": 0.64, + "neg": 0.045, + "_id": { + "$oid": "6711d61bcd60fca157e5e4ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61ccd60fca157e5e4f0" + }, + "professor_name": "Nicholas Lang", + "rating": 4.5, + "department": "Science department", + "comments": [ + { + "text": "Knows his subject very well; easy-going and approachable; stresses the need for attendance, but fair overall", + "pos": 0.237, + "neu": 0.662, + "neg": 0.102, + "_id": { + "$oid": "6711d61ccd60fca157e5e4f1" + } + }, + { + "text": "Super easy. Just show up and participate. Very understanding. If absent just shoot him a text or an email 24 hrs notice. Understands lateness, just inform him beforehand. Barely any tests, reviews before them anyway. Notes allowed during tests. Very interactive w/ students. Funny. No textbook. Business casual for class, no sneakers/jeans. Armyclass", + "pos": 0.179, + "neu": 0.715, + "neg": 0.106, + "_id": { + "$oid": "6711d61ccd60fca157e5e4f2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61ccd60fca157e5e4f4" + }, + "professor_name": "Pejman Ghaemimohammadi", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Pej explains the lab you are doing in good detail, asks a lot of questions from students to make sure everyone is on the same page, although he asks them from the whole crowd so no one feels pressured to answer. He also is pretty active during experiments. one thing I could live without is his cleaning the lab rule, the last group gets to clean it.", + "pos": 0.176, + "neu": 0.764, + "neg": 0.061, + "_id": { + "$oid": "6711d61ccd60fca157e5e4f5" + } + }, + { + "text": "Very smart TA. Gives great lectures, and clear guidelines for the lab. Usually gives you heads ups on what could go wrong with the experiment. He comes to students during experiments, and asks random questions about the chemistry of what they are doing which helps you learn more. Friendly and funny but also strict on lab maintenance and safety.", + "pos": 0.234, + "neu": 0.737, + "neg": 0.03, + "_id": { + "$oid": "6711d61ccd60fca157e5e4f6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61ccd60fca157e5e4f8" + }, + "professor_name": "Simeon Bikorimana", + "rating": 4.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "I took Professor this summer for Photonics. He is an amazing professor, by far. He is patient and he likes to help you out if you don't understand something. He quizzes every week and they can be tedious so study and leave him a good impression that you studied he'll reward you on that. The final was alright and building lasers were cool. Take it !", + "pos": 0.277, + "neu": 0.705, + "neg": 0.018, + "_id": { + "$oid": "6711d61ccd60fca157e5e4f9" + } + }, + { + "text": "I wish all the EE professors were like him. He's dedicated and his passion for the material is obvious. Very approachable and will help out with any issues or questions. Weekly quizzes are a bit annoying, but simply prepare and you'll do fine. The final is no joke though - you have to know everything inside and out, otherwise you have no chance.", + "pos": 0.162, + "neu": 0.751, + "neg": 0.087, + "_id": { + "$oid": "6711d61ccd60fca157e5e4fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61dcd60fca157e5e4fc" + }, + "professor_name": "Chun Chen", + "rating": 4, + "department": "Chinese department", + "comments": [ + { + "text": "daily quiz, 5 exams, doesn't accept late homework so I don't bother to even do it if it's late which is bad because then you don't learn. Lenient on grading but it doesn't really help your situation. You sit in a circle in class which is annoying bc there's empty space in middle of room but none next to you so you're basically trapped in your seat", + "pos": 0.021, + "neu": 0.739, + "neg": 0.241, + "_id": { + "$oid": "6711d61dcd60fca157e5e4fd" + } + }, + { + "text": "At first, she may seem a little scary but you will discover she is really caring and understanding. She makes the class interesting. The class was intensive but 22600 is INTENSIVE Intermediate Chinese. Like the beginner classes, there are daily quizzes. She uploads her powerpoints and is always willing to answer your questions. One of the best!", + "pos": 0.246, + "neu": 0.726, + "neg": 0.027, + "_id": { + "$oid": "6711d61dcd60fca157e5e4fe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61dcd60fca157e5e500" + }, + "professor_name": "Nicholas Gao", + "rating": 4.5, + "department": "Chemistry department", + "comments": [ + { + "text": "Just follow the procedures for the lab. He's there to help you throughout the lab if you have any questions. Watch the videos ahead of time for setting up equipment, and read the lab manual in advance so you know what to do.", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d61dcd60fca157e5e501" + } + }, + { + "text": "He is a fair grader but he won't just give you points, you have to work for them. Ask questions I feel you don't understand something, he is always happy to explain.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d61dcd60fca157e5e502" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61dcd60fca157e5e504" + }, + "professor_name": "Mariam Elhaies", + "rating": 5, + "department": "Arabic department", + "comments": [ + { + "text": "The class is simple, we only had two quizzes this semester. We had one project this semester, which was an oral exam. The final exam was clear as Mariam reviewed everything that was going to be on the exam.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d61dcd60fca157e5e505" + } + }, + { + "text": "Mariam is a really good professor. She gave four quizzes throughout the whole semester. She gave two skits and a picture dictionary as projects. Whatever she reviewed before the quizzes and the final came on the test. She starts out class by asking each student to say something in Arabic which is not hard. She gives homework once a week.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d61dcd60fca157e5e506" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61ecd60fca157e5e508" + }, + "professor_name": "Pablo Bustinduy Amador", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "Pablo is a wonderful resource for CCNY and one the school should be grateful to have. Studying populism with a former Spanish MP was one of the best experiences of my undergrad career. His lectures are detailed, fascinating, and present ideological approaches to global issues. He needs to teach more courses because he has so much to offer students!", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d61ecd60fca157e5e509" + } + }, + { + "text": "Professor Bustinduy is one of my favorite professors of all time. I was nervous that he would be a difficult professor because he's a congressmen, but he is one of the nicest professors I've ever taken. The workload was quite easy/manageable. He explains everything so clearly as well. If you have the chance to take him, I suggest you do!", + "pos": 0.22, + "neu": 0.734, + "neg": 0.046, + "_id": { + "$oid": "6711d61ecd60fca157e5e50a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61ecd60fca157e5e50c" + }, + "professor_name": "Olivia Vien", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "She's an awesome professor, I would definitely recommend her!!!! She cares about her students, she teaches so smoothly in my opinion and I have learned a lot in this class.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d61ecd60fca157e5e50d" + } + }, + { + "text": "Olivia is great at giving feedback for any changes you need to make on a project, and is extremely good at explaining concepts and assignment steps. Will always offer to help if anyone has questions. Is like wonder women because she works at 3 other schools. Able to record lectures. Can normally complete assignment with her in class.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d61ecd60fca157e5e50e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61ecd60fca157e5e510" + }, + "professor_name": "Emily Miller", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "She is a very caring professor, highly recommend having her as a fiqws professor. All I can say is really cares about her students and if you have any questions on the homework or the essays she will gladly break it down for you.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d61ecd60fca157e5e511" + } + }, + { + "text": "Professor Miller is probably one of the best teachers I've ever had. She genuinely listens to students and encourages them to participate, but doesn't force them to. She makes it fun to learn, and this was the one class I didn't mind taking at 9am. :). The FIQWS class was a zero textbook cost course. I would 1,000% recommend Ms. Miller! Bless her.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d61ecd60fca157e5e512" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61fcd60fca157e5e514" + }, + "professor_name": "Luciana Maiorana", + "rating": 3.5, + "department": "Art department", + "comments": [ + { + "text": "She is kind of mean but if you show that you put effort in you'll be on her good side. The work is easy, but it takes a lot of time. She's accommodating and willing to give extensions, but don't expect her to go easy on you if you don't do the work. Be respectful, do the work, and you'll get a good grade. I'm terrible at art and I still got an A.", + "pos": 0.212, + "neu": 0.743, + "neg": 0.045, + "_id": { + "$oid": "6711d61fcd60fca157e5e515" + } + }, + { + "text": "This professor is in the middle for me. She can be annoying when put under pressure but then again, why give us so many projects to do? Fun class if you're into making books and stuff but it can be difficult if you get left behind. Her projects are time consuming so give yourself lots of time. She has an attitude sometimes but she's alright.", + "pos": 0.094, + "neu": 0.815, + "neg": 0.091, + "_id": { + "$oid": "6711d61fcd60fca157e5e516" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61fcd60fca157e5e518" + }, + "professor_name": "Lavie Margolin", + "rating": 5, + "department": "Advisor department", + "comments": [ + { + "text": "Lavie is extremely understanding. He's always accessible outside of class and works with you if any problem arises. It was a pleasure to take his class this semester.", + "pos": 0.114, + "neu": 0.802, + "neg": 0.083, + "_id": { + "$oid": "6711d61fcd60fca157e5e519" + } + }, + { + "text": "Professor Margolin was an absolute gem! He's very sweet and caring towards his students. He is the perfect mentor.", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d61fcd60fca157e5e51a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d61fcd60fca157e5e51c" + }, + "professor_name": "Antonio Tudela", + "rating": 4, + "department": "Spanish department", + "comments": [ + { + "text": "If you're a non-native Spanish speaker, he's willing to help. Participation is very important. He gives homework but it's pretty simple. There were two group projects (one was extra credit), two compositions, a midterm, and a final. He cares more about improving in the language than the grade. He really cares about attendance so be on time.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d61fcd60fca157e5e51d" + } + }, + { + "text": "Nice guy but really tough on exams and grading.", + "pos": 0.171, + "neu": 0.631, + "neg": 0.197, + "_id": { + "$oid": "6711d61fcd60fca157e5e51e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d620cd60fca157e5e520" + }, + "professor_name": "Mark Jamison", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "he is great professor and really nice he understands your situation. He good at grading", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d620cd60fca157e5e521" + } + }, + { + "text": "Really great professor. 4 papers and each gets consecutively harder but we were allowed to rewrite the first 3 for a better grade. Definitely rewrite it, my grade increased so much because of it. Focuses on context more than grammar. He gives good, specific feedback on each paper and he is usually always available to contact if you have questions.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d620cd60fca157e5e522" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d620cd60fca157e5e524" + }, + "professor_name": "Kristin Fulton", + "rating": 1.7, + "department": "Speech department", + "comments": [ + { + "text": "Do not take this professor especially if you are a shy introverted person. I worked very hard on my presentations and I did not get good grades on them because I stuttered a bit and its difficult for me to talk infront of a big audience but the professor does not care. Also she makes you buy a book that you do not end up using. Waste of 50 bucks.", + "pos": 0.0, + "neu": 0.809, + "neg": 0.191, + "_id": { + "$oid": "6711d620cd60fca157e5e525" + } + }, + { + "text": "Don't buy the textbook. She assigns readings but they don't matter and won't affect your grade. Okay Professor but not my cup of tea. A lot of the class is just busy work and not very informative or productive.", + "pos": 0.058, + "neu": 0.914, + "neg": 0.027, + "_id": { + "$oid": "6711d620cd60fca157e5e526" + } + }, + { + "text": "If you are a person who gets to class 2 or 3 minutes late don't take her class. She will lower your grade in just those few minutes, She is very inconsiderable. I feel like she grades depending on her view of you, not your work. Also does not get back to emails.", + "pos": 0.045, + "neu": 0.916, + "neg": 0.039, + "_id": { + "$oid": "6711d620cd60fca157e5e527" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d621cd60fca157e5e529" + }, + "professor_name": "Deanne Green", + "rating": 4.5, + "department": "Education department", + "comments": [ + { + "text": "Very nice professor. She took a while to respond to emails even though they were sent out during work hours. She gave out a lot of work back to back but if asked, she extended the due date. Overall, it was a good experience! Fun class.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d621cd60fca157e5e52a" + } + }, + { + "text": "She is very kind and big on participation. She also does lots of in class assignments such as mini group projects. She is very helpful, encourages questions and asking for help.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d621cd60fca157e5e52b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d621cd60fca157e5e52d" + }, + "professor_name": "Kimberly Huppert", + "rating": 5, + "department": "Science department", + "comments": [ + { + "text": "She is a really good professor. Goes beyond of what is she supposed to do. Is accessible outside class, talks a bit fast, but she knows how to inspire her students. I really enjoyed her class. I would take it again.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d621cd60fca157e5e52e" + } + }, + { + "text": "Prof. Huppert is one of the best professors at CCNY. She is very understanding and kind. She is flexible with assignments and as long as you let her know in advance, she will give you a reasonable amount of time to complete it.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d621cd60fca157e5e52f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d621cd60fca157e5e531" + }, + "professor_name": "Jarrett Moran", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Professor Moran is one of the best that are out there, he ensures that everyone is engaged and has a clear understanding of the course. He formats all the deadlines to work in your favor and is especially helpful to those that may be procrastinators like me. Moran is always open to discussing papers and providing feedback to those that reach out.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d621cd60fca157e5e532" + } + }, + { + "text": "Moran was great! He's flexible with due dates if you have a lot of exams/ major assignments in other classes. He also gives extra credit for going to the writing center so definitely take advantage of that. Personally not the biggest fan of FIQWS: the essays and writing can be a bit annoying but other than that, it wasn't a bad class.", + "pos": 0.193, + "neu": 0.76, + "neg": 0.047, + "_id": { + "$oid": "6711d621cd60fca157e5e533" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d622cd60fca157e5e535" + }, + "professor_name": "Thanakarn Schofield", + "rating": 5, + "department": "Fine Arts department", + "comments": [ + { + "text": "Honestly he is a great professor. He cares about you passing if you show that you are willing to put the effort to understand the material. 4 quizzes that are easy if you pay attention but gives a review before the quiz day. I recommend him!", + "pos": 0.226, + "neu": 0.751, + "neg": 0.023, + "_id": { + "$oid": "6711d622cd60fca157e5e536" + } + }, + { + "text": "This professor was amazing. He's very passionate about what he is teaching and makes it clear what will be happening in class. There are 4 quizzes and 2 papers throughout the semester, however he gives a study sheet before each quiz which basically have all the answers. I definitely recommend this class!!", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d622cd60fca157e5e537" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d622cd60fca157e5e539" + }, + "professor_name": "Alison Gluck", + "rating": 4, + "department": "Media Arts department", + "comments": [ + { + "text": "I LOVEE ALISON! ONE OF THE BEST MARKETING PROFESSOR AT CCNY.. She is incredible at what she do in teaching. Her lectures are clear and not only that she makes it fun. She brings a lot of inspirations to her students. Her final group project, midterm, or assignments were not intense but yet it was pretty fun and creative. You will enjoy this class.", + "pos": 0.318, + "neu": 0.669, + "neg": 0.014, + "_id": { + "$oid": "6711d622cd60fca157e5e53a" + } + }, + { + "text": "Overall she is a fine professor, would I take another class with her? Nope! I was not pleased with the way she ran her class. It felt as if she just wanted to brush off our online class and go about the rest of her day.I never got grades back until the end of the semester which was absolutely ridiculous. I only took her class because it was online.", + "pos": 0.025, + "neu": 0.901, + "neg": 0.075, + "_id": { + "$oid": "6711d622cd60fca157e5e53b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d622cd60fca157e5e53d" + }, + "professor_name": "Mohammed Riyami Sabar ullah Khan", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "The class in general is hard but the professor made it easy to understand. Participation matters a lot in this class. Trying going to the office hours for feedback on your lab report.", + "pos": 0.138, + "neu": 0.829, + "neg": 0.033, + "_id": { + "$oid": "6711d622cd60fca157e5e53e" + } + }, + { + "text": "The class was tough and need to read and research. The professor was great, really cared about the students. Make sure to get feedback on reports before submitting.", + "pos": 0.271, + "neu": 0.686, + "neg": 0.043, + "_id": { + "$oid": "6711d622cd60fca157e5e53f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d623cd60fca157e5e541" + }, + "professor_name": "Ally Sheedy", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "I am completely biased. Do not take my opinion seriously. I loved The Breakfast Club.", + "pos": 0.195, + "neu": 0.6, + "neg": 0.205, + "_id": { + "$oid": "6711d623cd60fca157e5e542" + } + }, + { + "text": "Amazing mentor", + "pos": 0.792, + "neu": 0.208, + "neg": 0.0, + "_id": { + "$oid": "6711d623cd60fca157e5e543" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d623cd60fca157e5e545" + }, + "professor_name": "Luis Guzman-Valerio", + "rating": 3, + "department": "Spanish department", + "comments": [ + { + "text": "If you're looking to really learn Spanish I would say he's not the best choice but he's a very caring professor and kind! Easy A. grades are only based on the person Hw.", + "pos": 0.302, + "neu": 0.649, + "neg": 0.049, + "_id": { + "$oid": "6711d623cd60fca157e5e546" + } + }, + { + "text": "Pretty boring lectures, the grade is only based on whatever your Pearson grade, which is good for an easy A since it has unlimited attempts. However, if you're actually trying to learn Spanish, this class won't be much help.", + "pos": 0.189, + "neu": 0.715, + "neg": 0.096, + "_id": { + "$oid": "6711d623cd60fca157e5e547" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d623cd60fca157e5e549" + }, + "professor_name": "Jalissa Fulton", + "rating": 4, + "department": "Theater department", + "comments": [ + { + "text": "THTR 131 itself is a very simple class and she is a solid choice for it. Lectures are meh and you may have to read some plays but her grading criteria is pretty straightforward and she is lenient in grading. Attendance and participation is a huge part of the grade so don't miss classes. Just show up to class and do assignments on time and u r set.", + "pos": 0.192, + "neu": 0.793, + "neg": 0.015, + "_id": { + "$oid": "6711d623cd60fca157e5e54a" + } + }, + { + "text": "She herself is a very good person but the way she teaches the class and grades is not it at all. When it was time for us to write our final, she ghosted on all of us and did not respond to emails or anything. She also does not give extensions so don't even bother. Again, she's a great person but the way she teaches is bad to me.", + "pos": 0.133, + "neu": 0.808, + "neg": 0.059, + "_id": { + "$oid": "6711d623cd60fca157e5e54b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d624cd60fca157e5e54d" + }, + "professor_name": "Carlos Encina", + "rating": 3.5, + "department": "Sociology department", + "comments": [ + { + "text": "Professor Encina is a great professor. He taught me a lot about gender and how it relates to power. He assigns readings per week which sometimes seem too long. Professor Encina gave us three reflection papers; they had to be four pages single-spaced using Chicago. He also assigned us eight forums. However, we only had to complete six.", + "pos": 0.067, + "neu": 0.933, + "neg": 0.0, + "_id": { + "$oid": "6711d624cd60fca157e5e54e" + } + }, + { + "text": "He is a good professor because he knows knowledge of sexuality and gender and is very respectful of the sexuality topic. However, he is disorganized with the assignments and plays favoritism with students in class.", + "pos": 0.235, + "neu": 0.713, + "neg": 0.052, + "_id": { + "$oid": "6711d624cd60fca157e5e54f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d624cd60fca157e5e551" + }, + "professor_name": "Helen Hu", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Took her in Fall 2021 as a adjunct for PSY 102 with Melara, and she is very good at explaining and teaching. She responds to emails quickly, and goes above and beyond to help her students on any questions.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d624cd60fca157e5e552" + } + }, + { + "text": "She was so nice and funny! Shes understanding and very chill. There is a final paper, 5 quizzes and like 3 brief responses. I recommend her!!", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d624cd60fca157e5e553" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d625cd60fca157e5e555" + }, + "professor_name": "Hailin Huang", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "He's great. Really helped me understand difficult topics and grades very lenient. I recommend him! He also replies very fast when you email him.", + "pos": 0.298, + "neu": 0.624, + "neg": 0.078, + "_id": { + "$oid": "6711d625cd60fca157e5e556" + } + }, + { + "text": "He was my TA and he was pretty chill. He tries his best to teach us and his grading isn't that tough. He was always accessible outside of class and replies fast. There has been times that we asked him to explain the same things multiple times and he never got annoyed at us and explained everything again. I would recommend him", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d625cd60fca157e5e557" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d625cd60fca157e5e559" + }, + "professor_name": "Michael Coppola", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "I took his class when covid first started. He was a solid professor before the shift to online. Class was mainly discussions and some explanations on things. When things went to online, he was a bit disconnected but very accommodating for students. Overall, I thought he was a good professor for this class, and I would definitely take it with him.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d625cd60fca157e5e55a" + } + }, + { + "text": "Michael Coppola is actually a pretty good professor. The class is obviously a lot of discussion but is very engaging. Work load is not bad, a couple readings a week and eventually 1 major assignment every 2 weeks (a total of 4-5). Overall, very straightforward and a solid prof.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d625cd60fca157e5e55b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d625cd60fca157e5e55d" + }, + "professor_name": "Harry Ewan", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "I have had him in more than 2 classes and he's awesome. I will admit he is a tough grader and he isn't there to fool around. He's very passionate about his work and is tough because he cares and wants to challenge you to become better. The best teacher I've ever had. I compare all my teachers to him and can say they can't even come close to him!", + "pos": 0.273, + "neu": 0.692, + "neg": 0.035, + "_id": { + "$oid": "6711d625cd60fca157e5e55e" + } + }, + { + "text": "an amazing teacher! if you want an easy A this is NOT the class for you, you have to earn your grade but it is well worth it. topics discussed include racism, sexism etc etc. hands down my favorite class I've taken at sju.", + "pos": 0.258, + "neu": 0.644, + "neg": 0.098, + "_id": { + "$oid": "6711d625cd60fca157e5e55f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d626cd60fca157e5e561" + }, + "professor_name": "Hillary Caldwell", + "rating": 4.5, + "department": "Honors department", + "comments": [ + { + "text": "Hillary is such a gem. She is super kind, understanding, and helpful for beginners in the organizing field. She is very approachable and in-depth with students learning plans. Make sure to have a one on one in her office if you ever feel overwhelmed with the work.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d626cd60fca157e5e562" + } + }, + { + "text": "A brilliant professor who is very knowledgeable with community organizing and research. Classes are always engaging and EVERYONE wants to participate! What we learn with her is very valuable in the real world. From time to time guest speakers who have years of experience in their NPO/organizational fields around NYC are invited to lectures as well.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d626cd60fca157e5e563" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d626cd60fca157e5e565" + }, + "professor_name": "Khanh Le", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "He is good professor and I love him so much to my heart and he really care about his student and very funny too!", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d626cd60fca157e5e566" + } + }, + { + "text": "It was an honor and privilege to be in professor khanhs class. He truly cares about his students. He always went out of his ways to provide us with readings that critically engaged the class. He was not shy to engage in difficult topics such racism, colonialism etc. I love this class!", + "pos": 0.289, + "neu": 0.59, + "neg": 0.121, + "_id": { + "$oid": "6711d626cd60fca157e5e567" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d626cd60fca157e5e569" + }, + "professor_name": "Juliana Nalerio", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "Good professor who wants her students to do well. Not difficult and the assignments were mainly short papers. No midterm but a 5-7 page final paper at the end. Very manageable class.", + "pos": 0.146, + "neu": 0.808, + "neg": 0.046, + "_id": { + "$oid": "6711d626cd60fca157e5e56a" + } + }, + { + "text": "Caring professor who wants you to do well in the course. Says she's on your side, wants you to get a good grade, and be learn to be awesome at college. Have to talk in class and in group work.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d626cd60fca157e5e56b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d627cd60fca157e5e56d" + }, + "professor_name": "lola lefrancois", + "rating": 5, + "department": "Fine Arts department", + "comments": [ + { + "text": "she's super sweet and gives an A to almost everyone who's present and follows assignment instructions", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d627cd60fca157e5e56e" + } + }, + { + "text": "I loved taking Lola's class, she was super nice for the most part and I took a lot from her class. She will give you feedback anytime. The only thing I warn about is that she tends to be hands-on with people's work when trying to correct something or point out anything so if you don't like that tell her!", + "pos": 0.157, + "neu": 0.792, + "neg": 0.051, + "_id": { + "$oid": "6711d627cd60fca157e5e56f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d627cd60fca157e5e571" + }, + "professor_name": "Tony Liss", + "rating": 1, + "department": "Administration department", + "comments": [ + { + "text": "An empty chair would do better and that too for free.", + "pos": 0.387, + "neu": 0.5, + "neg": 0.113, + "_id": { + "$oid": "6711d627cd60fca157e5e572" + } + }, + { + "text": "not a noteworthy impression thus far....", + "pos": 0.0, + "neu": 0.75, + "neg": 0.25, + "_id": { + "$oid": "6711d627cd60fca157e5e573" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d627cd60fca157e5e575" + }, + "professor_name": "Darlene Rozon", + "rating": 2.5, + "department": "Psychology department", + "comments": [ + { + "text": "Her final makes up for most of the grade and has nothing to do with her lectures.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d627cd60fca157e5e576" + } + }, + { + "text": "Great professor, very kind and fun. She used powerpoints that went along with the textbook we were using during class and posted them online after class. We also watched a few interesting videos. Homeworks were challenging but made learning the material easier.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d627cd60fca157e5e577" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d627cd60fca157e5e579" + }, + "professor_name": "Subhasish Chatterjee", + "rating": 5, + "department": "Honors department", + "comments": [ + { + "text": "Easy A class and you will learn.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d627cd60fca157e5e57a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d628cd60fca157e5e57c" + }, + "professor_name": "Diane Keeney", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Great Professor. Relatively laid back but still demands respect and makes you put effort and inspiration into your writing. She made herself easily available during office hours and through e-mail and gave great feedback on papers handed back. Don't let her catch you with your phone out though.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d628cd60fca157e5e57d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d628cd60fca157e5e57f" + }, + "professor_name": "Steven Medina", + "rating": 3, + "department": "Computer Science department", + "comments": [ + { + "text": "He was a good instructor when I took the course a year ago. He does not work anymore, so this review is kinda useless.", + "pos": 0.106, + "neu": 0.803, + "neg": 0.091, + "_id": { + "$oid": "6711d628cd60fca157e5e580" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d628cd60fca157e5e582" + }, + "professor_name": "Charles Wilson", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "Options & Futures! It's a capstone; essential for graduation. It is actually a very hard class to wrap your head around. But if there is any professor capable of teaching this course, it is professor wilson. He is extremely knowledgeable on the subject area and is always available outside of class hours to further explain things. RECOMMEND HIM!", + "pos": 0.129, + "neu": 0.85, + "neg": 0.021, + "_id": { + "$oid": "6711d628cd60fca157e5e583" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d629cd60fca157e5e585" + }, + "professor_name": "Lieselle Trinidad", + "rating": 1, + "department": "Biomedical Engineering department", + "comments": [ + { + "text": "For the second portion of the MTM it's hard to say that she actually did anything. The class was not lectured during course hours. Instead we met in groups, which we we already doing outside of class. When we lectures did occur, it was a summary of the textbook with no meaningful input or additional information. Would not recommend.", + "pos": 0.0, + "neu": 0.911, + "neg": 0.089, + "_id": { + "$oid": "6711d629cd60fca157e5e586" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d629cd60fca157e5e588" + }, + "professor_name": "Chester Kozlowski", + "rating": 3, + "department": "Speech department", + "comments": [ + { + "text": "Professor Kozlowski is an understanding professor but a tough grader. Just go to class, participate, and be well-prepared when giving a speech. Don't be absent because he does keep track.", + "pos": 0.094, + "neu": 0.852, + "neg": 0.053, + "_id": { + "$oid": "6711d629cd60fca157e5e589" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d629cd60fca157e5e58b" + }, + "professor_name": "Ian Wojcik", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Ian is an amazing TA, who truly cares about his students. He goes the extra mile to make sure you have all the available resources to do great in the tests, homework and labs. Really hope that all my other TAs are like him. Tip come prepare to recitation with actual questions and he will make things clearer and that way he can help you the best.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d629cd60fca157e5e58c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62acd60fca157e5e58e" + }, + "professor_name": "Alessandra Migliara", + "rating": 4, + "department": "Classics department", + "comments": [ + { + "text": "She's super clear as to what she wants at the beginning of the semester. We just had the midterm, final, final paper, and a presentation. Everything was relatively straight forward, and if you do the readings or just know the myth well enough you can participate in discussion. She's not the best at handing in grades, just ask for it.", + "pos": 0.152, + "neu": 0.799, + "neg": 0.049, + "_id": { + "$oid": "6711d62acd60fca157e5e58f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62acd60fca157e5e591" + }, + "professor_name": "Kolluru Subramaniam", + "rating": 4.5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Makes the class very interesting, fair grader.", + "pos": 0.527, + "neu": 0.473, + "neg": 0.0, + "_id": { + "$oid": "6711d62acd60fca157e5e592" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62acd60fca157e5e594" + }, + "professor_name": "Christina Schulz", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Her syllabus is straight forward. Her quizzes, midterm, and final are based on the power points. Moreover, she gives you a review sheet for the final and midterm. Overall, a wonderful and understanding professor.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d62acd60fca157e5e595" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62bcd60fca157e5e597" + }, + "professor_name": "Margaret Laster", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Really great prof.", + "pos": 0.687, + "neu": 0.313, + "neg": 0.0, + "_id": { + "$oid": "6711d62bcd60fca157e5e598" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62bcd60fca157e5e59a" + }, + "professor_name": "Maryam Vulis", + "rating": 1, + "department": "Mathematics department", + "comments": [ + { + "text": "the hardest part of this class is attending every time to just sit there and then having to teach yourself at home. Math department will NOT help you so please do not take her if you don't ALREADY know the material. She talks very low and incoherently and often even gets her own examples wrong.", + "pos": 0.042, + "neu": 0.831, + "neg": 0.126, + "_id": { + "$oid": "6711d62bcd60fca157e5e59b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62bcd60fca157e5e59d" + }, + "professor_name": "Karen Anderson", + "rating": 1.5, + "department": "Education department", + "comments": [ + { + "text": "Total waste of time I learned nothing! It is obvious that she comes to class unprepared. She engages in meaningless conversations such as appropriate work attire, her cell phone provider, and other nonsense. **She does not give out A's expect her to ruin your 4.0 gpa. B+ seems to be her favorite grade.", + "pos": 0.077, + "neu": 0.725, + "neg": 0.197, + "_id": { + "$oid": "6711d62bcd60fca157e5e59e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62ccd60fca157e5e5a0" + }, + "professor_name": "Sara Rychtarik", + "rating": 3.5, + "department": "French department", + "comments": [ + { + "text": "She's an incredibly nice person & understanding person but from day one she starts speaking french & as a beginner course it is very hard to keep up if you don't know any french, I think she thinks everyone that comes into this course has taken french in high school but that was definitely not the case, don't take her unless you already know french", + "pos": 0.08, + "neu": 0.89, + "neg": 0.029, + "_id": { + "$oid": "6711d62ccd60fca157e5e5a1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62ccd60fca157e5e5a3" + }, + "professor_name": "Beth Romano", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Grad Student who teaches calc great. Understood everything but not sure if she teaches every semester.", + "pos": 0.134, + "neu": 0.737, + "neg": 0.129, + "_id": { + "$oid": "6711d62ccd60fca157e5e5a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62ccd60fca157e5e5a6" + }, + "professor_name": "Branwynne Kennedey", + "rating": 2, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62dcd60fca157e5e5a8" + }, + "professor_name": "Iris Bodre", + "rating": 3, + "department": "English department", + "comments": [ + { + "text": "Really great English professor at CCNY! Really up to date with what's going on in the world and genuinely enjoys teaching. The papers were very open, enjoyable, and overall a pleasure to complete. Only flaw about this professor is her clarity. Assignment due dates seemed to always change and she even confused herself at times. Cares about students!", + "pos": 0.281, + "neu": 0.688, + "neg": 0.031, + "_id": { + "$oid": "6711d62dcd60fca157e5e5a9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62dcd60fca157e5e5ab" + }, + "professor_name": "Dan Mailick", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "He preferred to be called Dan. The class didn't like him very much. Sometimes, he just stares at you and doesn't really listen to what you say. However, I can't deny my improvement in writing because of this class. Don't be surprised if you find yourself thinking: \"Wow, the writing I did in high school was complete crap.\"", + "pos": 0.088, + "neu": 0.78, + "neg": 0.133, + "_id": { + "$oid": "6711d62dcd60fca157e5e5ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62dcd60fca157e5e5ae" + }, + "professor_name": "Porter Timothy", + "rating": 3.5, + "department": "Political Science department", + "comments": [ + { + "text": "Porter is the man!! Tests are clear. Papers you may not know what you received but at the end it will all be worked out. He is amazing, i recommend him.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d62dcd60fca157e5e5af" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62ecd60fca157e5e5b1" + }, + "professor_name": "Tzuhao Huang", + "rating": 4.5, + "department": "Economics department", + "comments": [ + { + "text": "Funny guy. Jokes with the class but is also extremely helpful. His tests(midterm + final) are identical to his test reviews so you just need to memorize the problems. Attendance is not required but make sure you're in class when he reviews for an exam, unless you're a genius.", + "pos": 0.181, + "neu": 0.757, + "neg": 0.061, + "_id": { + "$oid": "6711d62ecd60fca157e5e5b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62ecd60fca157e5e5b4" + }, + "professor_name": "Ellen Jaffe", + "rating": 4.5, + "department": "Education department", + "comments": [ + { + "text": "Awesome - a Gem of a Professor and Coach. You will learn new theories and ideas about observation verses subjectivity or assumptions. She used a great book that's worth reading for life lessons. Making In The Mind by Ellen Galinsky. You will get out what you put in, so enjoy the experience and learn from her. All the best,", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d62ecd60fca157e5e5b5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62ecd60fca157e5e5b7" + }, + "professor_name": "Janan Hamm", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "please stay away from this professor. We pretty much didn't do anything in this class. Didnt learn anything. Very unorganized. Supposed to be on session 10 but we were so far behind that we were still catching up on session 5. Very useless class. If students fail in this class, the professor is to blame.", + "pos": 0.057, + "neu": 0.761, + "neg": 0.182, + "_id": { + "$oid": "6711d62ecd60fca157e5e5b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62fcd60fca157e5e5ba" + }, + "professor_name": "Samantha Valcarcel", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "very optimistic teacher, wants to help her students", + "pos": 0.469, + "neu": 0.531, + "neg": 0.0, + "_id": { + "$oid": "6711d62fcd60fca157e5e5bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62fcd60fca157e5e5bd" + }, + "professor_name": "Jingjing Tian", + "rating": 2, + "department": "English department", + "comments": [ + { + "text": "Tian is very unprofessional in her teachings. Grading system is horrible. Gives students attitude when things aren't done her way. Gives work as if her class was the only class. AVOID TAKING HER FOR ANY CLASS!", + "pos": 0.0, + "neu": 0.762, + "neg": 0.238, + "_id": { + "$oid": "6711d62fcd60fca157e5e5be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d62fcd60fca157e5e5c0" + }, + "professor_name": "Georgia Scott", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "Prof. Scott is really passionate about journalism! At first I was a little scared because she started out really strict, but she's actually pretty cool! she really helps you with your work and knows that she's doing! awesome professor who really cares about us. Its nice to have someone like her as a professor", + "pos": 0.401, + "neu": 0.576, + "neg": 0.023, + "_id": { + "$oid": "6711d62fcd60fca157e5e5c1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d630cd60fca157e5e5c3" + }, + "professor_name": "Mary Ignagni", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "I took her for psy applied to work during summer 2013 session I. She's definitely a tough cookie but such an educated woman. There were only 2 exams & they were given on blackboard. The text use depends on you. The slides were enough info for me. The applied prj (paper) wasn't complicated at all. I would take her again.", + "pos": 0.03, + "neu": 0.949, + "neg": 0.02, + "_id": { + "$oid": "6711d630cd60fca157e5e5c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d630cd60fca157e5e5c6" + }, + "professor_name": "Mariano Soley", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "Really laid back guy. Just do the stuff on time and make sure you put some effort into it because lab is half your grade here!", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d630cd60fca157e5e5c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d630cd60fca157e5e5c9" + }, + "professor_name": "Alain Ridel", + "rating": 4, + "department": "Hospitality department", + "comments": [ + { + "text": "cool professor, he has his moments; but once you can work around that, then you shouldn't have any problem; he is very helpful as well, he give good reviews for midterm and finals. over all not a bad professor.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d630cd60fca157e5e5ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d631cd60fca157e5e5cc" + }, + "professor_name": "Johanna Fateman", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Amazing Prof, did extravagant things, really encourages students to do something different, nice but honest, respectful, and a fair grader. I really enjoyed taking this class. She also, provides students with a text book. Plus point, she is extremely gorgeous! 3 class projects + 1 final project and Final class critique, some classes held off city.", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d631cd60fca157e5e5cd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d631cd60fca157e5e5cf" + }, + "professor_name": "Ian Pervil", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Ian is an awesome professor! He loves what he does and is very clear when he teaches. He is one of the best psych professors ive had and would take any class he teaches. Not a tough grader and tells you whats going to be on the exam.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d631cd60fca157e5e5d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d631cd60fca157e5e5d2" + }, + "professor_name": "Bertrand Russell", + "rating": 4, + "department": "Philosophy department", + "comments": [ + { + "text": "This guy kept changing his view all the time.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d631cd60fca157e5e5d3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d632cd60fca157e5e5d5" + }, + "professor_name": "Robert Dry", + "rating": 3.5, + "department": "International Studies department", + "comments": [ + { + "text": "Very sweet, grand-fathery figure, that you will grow to love. He is very knowledgeable, but often strays off the topic. One of the easiest courses you would take. Plus, thanks to him, I met my future wife!", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d632cd60fca157e5e5d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d632cd60fca157e5e5d8" + }, + "professor_name": "Shameka Barbosa", + "rating": 5, + "department": "Communication department", + "comments": [ + { + "text": "I absolutely loved taking her class! She is fun and makes it very clear what is expected of you as a student. The workload can be heavy at times, but in the end you will have learned everything you need to know! She has tons of experience from the industry and gives clear feedback. Definitely recommend taking her class!", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d632cd60fca157e5e5d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d632cd60fca157e5e5db" + }, + "professor_name": "Laura Eidlitz", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Eidlitz is a great professor. She's very clear with her expectations and writes helpful feedback on the assignments. She accepts criticism very well and genuinely shows interest in her students' opinions and ideas. She was awesome! Take her if you get the chance.", + "pos": 0.387, + "neu": 0.567, + "neg": 0.047, + "_id": { + "$oid": "6711d632cd60fca157e5e5dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d633cd60fca157e5e5de" + }, + "professor_name": "Gillian Sneed", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "You'll dot your \"i's\" and cross your \"t's\" in this class. No joke, but it makes you a better writer. She'll help you and loves art history. Make the Writing Center your new best friend and you will do fine. You'll travel to museums several times. Didn't think I'd enjoy it, but really did. She was kind enough where we didn't have to buy textbooks.", + "pos": 0.325, + "neu": 0.621, + "neg": 0.054, + "_id": { + "$oid": "6711d633cd60fca157e5e5df" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d633cd60fca157e5e5e1" + }, + "professor_name": "Andre Ragnauth", + "rating": 5, + "department": "Health Science department", + "comments": [ + { + "text": "Andre is a great professor. He gets off topic and you might not be learning what you expected to learn but he full of so much wisdom. You can easily do well in class without showing up, but its worth going to. Definitely a class that opened my eyes. Great professor. Tests are all online, just google the answers you'll get an A", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d633cd60fca157e5e5e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d633cd60fca157e5e5e4" + }, + "professor_name": "Elizabeth Mazzola", + "rating": 2, + "department": "World Humanities department", + "comments": [ + { + "text": "Participate matters, 4 long essay must do properly 750 words no less or more, group activities, pop quizzes, you are able to redo paper, she takes the highest grade, she is hard on grammar", + "pos": 0.031, + "neu": 0.868, + "neg": 0.101, + "_id": { + "$oid": "6711d633cd60fca157e5e5e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d633cd60fca157e5e5e7" + }, + "professor_name": "Elena Romero", + "rating": 1, + "department": "Communication department", + "comments": [ + { + "text": "Professor Romero is very hard to reach. Emailing her wont work if you have any questions because she rarely answers her emails. She posts too many things to blackboard but most of it doesn't relate to the class. She doesn't explain assignments well. Most of her work posted are from old semesters that she just uploads without changing the date.", + "pos": 0.019, + "neu": 0.923, + "neg": 0.058, + "_id": { + "$oid": "6711d633cd60fca157e5e5e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d634cd60fca157e5e5ea" + }, + "professor_name": "Kryst Cedeno", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "She was the professor for recitation. expects a lot but is reasonable, and gives reviews for exam which are needed specially for this class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d634cd60fca157e5e5eb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d634cd60fca157e5e5ed" + }, + "professor_name": "Zachary Geller", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "awesome professor, hes really into psychology so he teaches really well. he focuses a lot in teaching rather than assessing. make sure you participate, pay attention, hand in work on time. EASY A! Also, no phones laptops, etc. he isnt a fan of unnecessary distractions. hes real accessible by email and gives great feed back.", + "pos": 0.276, + "neu": 0.62, + "neg": 0.104, + "_id": { + "$oid": "6711d634cd60fca157e5e5ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d634cd60fca157e5e5f0" + }, + "professor_name": "Lynn Appelbaum", + "rating": 5, + "department": "Communication department", + "comments": [ + { + "text": "Appelbaum is one of the best, most caring professors I have had at this school. She wants all of her students to succeed and makes sure you know the material. Get ready to work and THINK because she will call you out if you don't know. She's an overall cool person with great connections!", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d634cd60fca157e5e5f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d635cd60fca157e5e5f3" + }, + "professor_name": "Dianne Shumway", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She is honestly one of the best professors on campus. She is always available when you need help with assignments and let's you revise your papers. She provides the readings weekly so no need to worry about buying textbooks. She really cares about her students so take her class if you have the chance to!", + "pos": 0.224, + "neu": 0.693, + "neg": 0.083, + "_id": { + "$oid": "6711d635cd60fca157e5e5f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d635cd60fca157e5e5f6" + }, + "professor_name": "Thomas Peele", + "rating": 3, + "department": "English department", + "comments": [ + { + "text": "The most practical class i have ever done.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d635cd60fca157e5e5f7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d635cd60fca157e5e5f9" + }, + "professor_name": "Bradley Thomas", + "rating": 1, + "department": "Psychology department", + "comments": [ + { + "text": "TA Bradley Thomas is a lovely person, but really not a stellar teacher. In his last year in the graduate center at CCNY teaching Social Psychology, he was often not on time, did not grade on time, and created problems for multiple students and other professors. I would not recommend taking any classes with Brad,", + "pos": 0.079, + "neu": 0.821, + "neg": 0.1, + "_id": { + "$oid": "6711d635cd60fca157e5e5fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d636cd60fca157e5e5fc" + }, + "professor_name": "Cesar Rojas", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "7 homework assignments and three test, everything counts as 10% of your grade. Good professor, cares about whether you understand the material or not, and is available after class and through email for any questions you have", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d636cd60fca157e5e5fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d636cd60fca157e5e5ff" + }, + "professor_name": "James (jim) Davis", + "rating": 5, + "department": "Administration department", + "comments": [ + { + "text": "Jim is intelligent, dedicated, and thorough. He gives his very best, and holds others to his (high) standards. All matters brought to his attention are looked closely, and evaluated fairly. CCNY is lucky to have an administrator so committed to the mission of the college.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d636cd60fca157e5e600" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d636cd60fca157e5e602" + }, + "professor_name": "TR Branch", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "PROF. BRANCH IS A YOUNG BRIGHT INTELLECT WHO'S WELL SPOKEN, ORGANIZE, HELPFUL,KNOWLEDGABLE OF THE SUBJECT,FAIR & VERY PROFESSIONAL. SHE COVERS ALL THE MATERIAL IN THE LECTURES THAT YOU WILL NEED FOR THE EXAMS. TERRIFIC! PROF. SHE REALLY WANTS TO SEE THE STUDENTS SUCCEED! TAKE HER, YOU WON'T REGRET IT! YOU WILL LEARN! SHE BRINGS THE BEST OUT OF YOU!", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d636cd60fca157e5e603" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d637cd60fca157e5e605" + }, + "professor_name": "Eli Samuel", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He is an AMAZING professor. He was caring, understanding, fair grader, and super fun during class.", + "pos": 0.61, + "neu": 0.39, + "neg": 0.0, + "_id": { + "$oid": "6711d637cd60fca157e5e606" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d637cd60fca157e5e608" + }, + "professor_name": "Laura Rizzo", + "rating": 1, + "department": "English department", + "comments": [ + { + "text": "She didn't offer clear instructions when it came to her coursework. She got sick halfway through the semester and since we have not had her (she was replaced with an online class) the class has become significantly more coherent. She was nice enough, but frankly no one has missed her in class.", + "pos": 0.033, + "neu": 0.807, + "neg": 0.16, + "_id": { + "$oid": "6711d637cd60fca157e5e609" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d637cd60fca157e5e60b" + }, + "professor_name": "Yael Visser", + "rating": 4, + "department": "Science department", + "comments": [ + { + "text": "Her grading criteria is clear. you will need to purchase a book on NYC trees. There is a huge project that you have to do throughout the semester which is observe leaves on trees until they fall then present the process, cons: she talks super fast sometimes so even a bathroom break can make you miss important info. memorize info in book, concepts.", + "pos": 0.151, + "neu": 0.826, + "neg": 0.023, + "_id": { + "$oid": "6711d637cd60fca157e5e60c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d638cd60fca157e5e60e" + }, + "professor_name": "Virginia Vasquez", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Professor Vasquez is caring and has a passion for writing. It's a workshop class so prepare to read and critique. She gives great feedback and brings out the best in her students.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d638cd60fca157e5e60f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d638cd60fca157e5e611" + }, + "professor_name": "Deniza Georgieva", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Best professor if you want to pass the class with an easy A. If you want learn something I guess find some other professor. She is actually really nice and caring as a person. I find her teaching method not organized. I would love to take her again for an easy A.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d638cd60fca157e5e612" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d639cd60fca157e5e614" + }, + "professor_name": "Karen Lo", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "This chemistry lab instructor is beneficial.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d639cd60fca157e5e615" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d639cd60fca157e5e617" + }, + "professor_name": "Charles Colwell", + "rating": 4, + "department": "Music department", + "comments": [ + { + "text": "Prof. Colwell really helps with delivering information. He always post his lecture slides on Blackboard as well as telling you ahead of time of when tests and exams would be taking place. He's easy to contact by e-mail as well as outside/after class ends. It might be easy to lose focus though in his class, but otherwise he's great all around.", + "pos": 0.207, + "neu": 0.767, + "neg": 0.026, + "_id": { + "$oid": "6711d639cd60fca157e5e618" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63acd60fca157e5e61a" + }, + "professor_name": "Colleen Wood", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "Great and interesting professor with extremely engaging lectures. Put a bit of effort in, and Easy A guaranteed.", + "pos": 0.47, + "neu": 0.53, + "neg": 0.0, + "_id": { + "$oid": "6711d63acd60fca157e5e61b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63acd60fca157e5e61d" + }, + "professor_name": "J.T. Takagi", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "Simply the best, and very knowledgeable. Your grade is depended on how you do on her assignments, but she grades fairly. If you are unhappy with your grade, she is willing to give out extra credit. She always has a smile on her face :) I will miss her.", + "pos": 0.193, + "neu": 0.714, + "neg": 0.093, + "_id": { + "$oid": "6711d63acd60fca157e5e61e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63bcd60fca157e5e620" + }, + "professor_name": "Eric Bayless-Hall", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "I took Eric for my Spring semester and he was amazing! I really loved his lectures. He's really sweet and actually cares about his students. He grades really fairly and gave minimal work. Easy A.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d63bcd60fca157e5e621" + } + }, + { + "text": "First, kind of reminds me of Mr. Martin from School Spirits, lol. Anyways, very invested in philosophy and encourages outside thinking. Quite a couple papers but if you're into philosophy you'll have fun writing it, u could even have him check it before submitting. Lots of readings but he'll go over it in class, expect to discuss in breakout rooms.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d63bcd60fca157e5e622" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63bcd60fca157e5e624" + }, + "professor_name": "Maria Bermudez", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "I took Professor Bermudez for Urban Studies online and it was awesome. She doesnt give a final paper or anything, but u are required to do blackboard discussions weekly and write about the current subject. The class is very ingesting and she is patient and gives many opportunities to get a good a grade", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d63bcd60fca157e5e625" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63bcd60fca157e5e627" + }, + "professor_name": "Laura Rader", + "rating": 4, + "department": "Education department", + "comments": [ + { + "text": "Professor Rader is great! She is very consistent in her grading and expects you to elaborate your work. She pushes to be your best self. She does give lots of work, but it isn't impossible to complete as long as you pace yourself. She gives a clear breakdown of big papers so that you aren't cramming by the end of the semester.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d63bcd60fca157e5e628" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63ccd60fca157e5e62a" + }, + "professor_name": "Ramya Shankar", + "rating": 1, + "department": "Economics department", + "comments": [ + { + "text": "She doesn't give extra credit at all. The course is open-book based on Top hat . dont recomment at all.", + "pos": 0.082, + "neu": 0.819, + "neg": 0.099, + "_id": { + "$oid": "6711d63ccd60fca157e5e62b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63ccd60fca157e5e62d" + }, + "professor_name": "Leopold Fuentes", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Professor Fuentes is a sweetheart, he gives nice grandpa energies. He's very chill and you can tell he knows his stuff. There were a total of four paintings for his Intro to Paint class, the grade is determined by those + attendance + a short \"presentation\" where you talk about the paintings you've done and what your process was using vocab words.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d63ccd60fca157e5e62e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63dcd60fca157e5e630" + }, + "professor_name": "Kaja Kuhl", + "rating": 4, + "department": "Urban Design & Development department", + "comments": [ + { + "text": "The subject material wasn't my thing, but Professor Kuhl was super caring and understanding of her students. She expects you to show interest and to engage in class discussion and to meet deadlines with written responses. I think the most important thing is to show that you care. She's happy to provide extra guidance if you need.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d63dcd60fca157e5e631" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63dcd60fca157e5e633" + }, + "professor_name": "Sarah Pangburn", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Was a great and knowledgeable teacher! Definitely recommend her", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d63dcd60fca157e5e634" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63dcd60fca157e5e636" + }, + "professor_name": "Dalia Sofer", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Solid professor, nothing major to say one way or another.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d63dcd60fca157e5e637" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63ecd60fca157e5e639" + }, + "professor_name": "Colleen Sullivan", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Amazing, nice and super friendly! Monthly 2 page papers (about 4 papers total) and simple identify and explain the artworks exams (midterm and final). Everything you need to know are in her lectures, so come to class! As long as you do really well on the final and midterm and submit all papers (even late) you should get a decent grade.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d63ecd60fca157e5e63a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63ecd60fca157e5e63c" + }, + "professor_name": "Jose Moscat", + "rating": 2, + "department": "Engineering department", + "comments": [ + { + "text": "Prof Moscat cares a lot about his students. I just found his teaching style not so clear and it was hard to pay attention for a straight 3 hours. Some of his early exams were also pretty difficult but he eased up on us as the semester went on. A bit hard to get in touch with him outside of class and didn't give great feedback but kindhearted fella", + "pos": 0.105, + "neu": 0.743, + "neg": 0.152, + "_id": { + "$oid": "6711d63ecd60fca157e5e63d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63fcd60fca157e5e63f" + }, + "professor_name": "John Schmitz", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "Rstudio is a complicated software, but Prof. Schmitz shows the students step-by-step of the coding part and how to interpret the results. I really enjoyed taking this class and learned a lot from it!", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d63fcd60fca157e5e640" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63fcd60fca157e5e642" + }, + "professor_name": "Fernando Duran", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Very good choice of a teacher, very nice and understanding as an introductory class for freshmen starting college. Just read the passages before class and write the papers based on a topic of your choice, not that hard just follow the instructions. My favorite class that whole first semester and a good A.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d63fcd60fca157e5e643" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d63fcd60fca157e5e645" + }, + "professor_name": "Jon De Lucia", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "Overall great, fun teacher with a lot of passion when it comes to jazz. You will learn a lot about the genre taking him! Just beware, if you aren't too crazy about writing papers and essays you might not enjoy this class as much as there are many papers and writing assignments in this class.", + "pos": 0.195, + "neu": 0.765, + "neg": 0.04, + "_id": { + "$oid": "6711d63fcd60fca157e5e646" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d640cd60fca157e5e648" + }, + "professor_name": "Iilia Ilmer", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "midterm and final is 100% of the whole grade. no HW or Projects.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d640cd60fca157e5e649" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d640cd60fca157e5e64b" + }, + "professor_name": "Michael Druffel", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Great professor! He is so kind! Class seemed repetitive as the days went by, constantly being put into groups. Classmates spoke with one another but it was the same thing everyday. Reading, talking to groups, telling the class what the group talked about. Easy A but class was boring at times. Very kind Professor though.", + "pos": 0.216, + "neu": 0.719, + "neg": 0.065, + "_id": { + "$oid": "6711d640cd60fca157e5e64c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d640cd60fca157e5e64e" + }, + "professor_name": "Marco Gaspari", + "rating": 4, + "department": "Computer Science department", + "comments": [ + { + "text": "Professor brought industry experience into his lectures, which helped us see the real-life applications of topics we learned in class. Broke down topics in a way that helped students understand. Professor was available during office hours and by email to address concerns. Grade consisted of homework on ZyBooks, a midterm, final, and attendance.", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d640cd60fca157e5e64f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d641cd60fca157e5e651" + }, + "professor_name": "Wilson Ribadeneira", + "rating": 4, + "department": "Engineering department", + "comments": [ + { + "text": "Prof Rib cares about his students. He put a lot of time outside of class to help with projects. Lectures are pretty clear and he gives slides which is nice. Exams are pretty straightforward and aligned with homeworks. He often didn't give feedback and the projects were tough since many of us hadn't used Civil 3D before but good experience overall", + "pos": 0.223, + "neu": 0.759, + "neg": 0.018, + "_id": { + "$oid": "6711d641cd60fca157e5e652" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d641cd60fca157e5e654" + }, + "professor_name": "Usha Pitts", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "Professor Pitts really spoke to me. I guess that's not surprising given She can speak 10 of them! Her insightful lectures (debates) on international policy around China & Taiwan were hot subjects!", + "pos": 0.0, + "neu": 0.928, + "neg": 0.072, + "_id": { + "$oid": "6711d641cd60fca157e5e655" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d641cd60fca157e5e657" + }, + "professor_name": "John Totaro", + "rating": 4, + "department": "Media Arts department", + "comments": [ + { + "text": "Overall great professor. Pros are, homework assignments are simple, was given clear instructions for the presentation we had to do, very respectful professor. Cons, lectures every class can get boring and the midterm and final are lengthy.", + "pos": 0.221, + "neu": 0.729, + "neg": 0.051, + "_id": { + "$oid": "6711d641cd60fca157e5e658" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d642cd60fca157e5e65a" + }, + "professor_name": "Tamara Smalling", + "rating": 2, + "department": "Psychology department", + "comments": [ + { + "text": "For a Black PSY class the discussions were very engaging. However the professor expects alot & wants you to participate in every discussion. She has pop quizzes on readings almost every week, multiple exams throughout the semester, end of chapter assignments and a 10 page final paper. It honestly is a-lot for an elective class.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d642cd60fca157e5e65b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d642cd60fca157e5e65d" + }, + "professor_name": "Yang Liu", + "rating": 5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Great professor. Loves what he does and wants to give students a taste of it in this class. Homeworks were fine. Daily T/F quizzes for attendance so must go to class. Exams were open notes and very similar to his HW/Class examples. Project was fine. Lots of material but he made it manageable.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d642cd60fca157e5e65e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d642cd60fca157e5e660" + }, + "professor_name": "Andrew Ciprian", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Hidden gem in the psych department, he will be my chemistry ta next semester which I am happy about. TAKE HIM.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d642cd60fca157e5e661" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d642cd60fca157e5e663" + }, + "professor_name": "Susanna Yurick", + "rating": 1, + "department": "History department", + "comments": [ + { + "text": "oyster", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d642cd60fca157e5e664" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d643cd60fca157e5e666" + }, + "professor_name": "Steven Nicoll", + "rating": 5, + "department": "Biomedical department", + "comments": [ + { + "text": "He's lenient, but can keep on rambling sometimes. Great guy but could modernize a little.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d643cd60fca157e5e667" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d643cd60fca157e5e669" + }, + "professor_name": "Da Cui", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d643cd60fca157e5e66b" + }, + "professor_name": "Dennis Reid", + "rating": null, + "department": "Speech department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d644cd60fca157e5e66d" + }, + "professor_name": "Maryam Akrami", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d644cd60fca157e5e66f" + }, + "professor_name": "Emma Markarian", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d644cd60fca157e5e671" + }, + "professor_name": "Andrew Capetta", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d645cd60fca157e5e673" + }, + "professor_name": "Alison Deane", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d645cd60fca157e5e675" + }, + "professor_name": "Edrean-Neil Kabigting", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d645cd60fca157e5e677" + }, + "professor_name": "Myung J Lee", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d645cd60fca157e5e679" + }, + "professor_name": "Jiufeng Tu", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d646cd60fca157e5e67b" + }, + "professor_name": "Elise Henry", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d646cd60fca157e5e67d" + }, + "professor_name": "Sabina Pringle", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d646cd60fca157e5e67f" + }, + "professor_name": "Alexander Mir", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d647cd60fca157e5e681" + }, + "professor_name": "Arina Kligman", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d647cd60fca157e5e683" + }, + "professor_name": "Yona Deshommes", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d647cd60fca157e5e685" + }, + "professor_name": "Cherise Fisher", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d648cd60fca157e5e687" + }, + "professor_name": "Eva Velasco Pena", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d648cd60fca157e5e689" + }, + "professor_name": "Esther Hernandez", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d648cd60fca157e5e68b" + }, + "professor_name": "Emma Porter", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d648cd60fca157e5e68d" + }, + "professor_name": "Kathe Blydenburghh", + "rating": null, + "department": "French department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d649cd60fca157e5e68f" + }, + "professor_name": "Robert Lubetsky", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d649cd60fca157e5e691" + }, + "professor_name": "Pamela Frutiz", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d649cd60fca157e5e693" + }, + "professor_name": "Bradley Horn", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d649cd60fca157e5e695" + }, + "professor_name": "Nathaniel Levitan", + "rating": null, + "department": "Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64acd60fca157e5e697" + }, + "professor_name": "Silas Hartley", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64acd60fca157e5e699" + }, + "professor_name": "Sebastian Ortiz", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Sebastian is a very caring, really good professor! His lectures are clear and he is fair with grading.", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d64acd60fca157e5e69a" + } + }, + { + "text": "Best professor ever! He reunited my love for mathematics. His lectures are very detailed and explains everything perfectly. If you have the opportunity please take him.", + "pos": 0.461, + "neu": 0.539, + "neg": 0.0, + "_id": { + "$oid": "6711d64acd60fca157e5e69b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64acd60fca157e5e69d" + }, + "professor_name": "Andrew Filmore", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64bcd60fca157e5e69f" + }, + "professor_name": "Erin Claridge", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64bcd60fca157e5e6a1" + }, + "professor_name": "Antonis Achilleos", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64bcd60fca157e5e6a3" + }, + "professor_name": "John Tarbell", + "rating": null, + "department": "Biomedical department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64ccd60fca157e5e6a5" + }, + "professor_name": "A Weiwei", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64ccd60fca157e5e6a7" + }, + "professor_name": "Shandan Zuo", + "rating": null, + "department": "Chinese department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64ccd60fca157e5e6a9" + }, + "professor_name": "Leah Vincent", + "rating": null, + "department": "Judaic Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64ccd60fca157e5e6ab" + }, + "professor_name": "Jose Vazquez", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64dcd60fca157e5e6ad" + }, + "professor_name": "Faye Scott", + "rating": null, + "department": "Nursing department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64dcd60fca157e5e6af" + }, + "professor_name": "Darlene Dubuisson", + "rating": null, + "department": "Sociology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64dcd60fca157e5e6b1" + }, + "professor_name": "Huber Jaramillo", + "rating": null, + "department": "Foreign Languages Literature department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64dcd60fca157e5e6b3" + }, + "professor_name": "Comp Geoth", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64ecd60fca157e5e6b5" + }, + "professor_name": "Alan Gottesman", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64ecd60fca157e5e6b7" + }, + "professor_name": "Jonathan Hall", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64ecd60fca157e5e6b9" + }, + "professor_name": "Paul Velazco", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64fcd60fca157e5e6bb" + }, + "professor_name": "Jenna Karlsberg", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64fcd60fca157e5e6bd" + }, + "professor_name": "timothy nicholson", + "rating": null, + "department": "American Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64fcd60fca157e5e6bf" + }, + "professor_name": "Marlene Clark", + "rating": null, + "department": "International Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d64fcd60fca157e5e6c1" + }, + "professor_name": "Panagiotis Mavridis", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d650cd60fca157e5e6c3" + }, + "professor_name": "Burcu Ozdemir", + "rating": null, + "department": "International Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d650cd60fca157e5e6c5" + }, + "professor_name": "Carole Walker", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d650cd60fca157e5e6c7" + }, + "professor_name": "themis lazaeidis", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d650cd60fca157e5e6c9" + }, + "professor_name": "Dana Basile", + "rating": null, + "department": "Media Arts department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d651cd60fca157e5e6cb" + }, + "professor_name": "Themis Lazaridis", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d651cd60fca157e5e6cd" + }, + "professor_name": "Nancy Cardwell", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d651cd60fca157e5e6cf" + }, + "professor_name": "Giacomo Falco", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d651cd60fca157e5e6d1" + }, + "professor_name": "Moyosore Odunsi", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d652cd60fca157e5e6d3" + }, + "professor_name": "Tamer Ibrahim", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d652cd60fca157e5e6d5" + }, + "professor_name": "stephanie nunez", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d652cd60fca157e5e6d7" + }, + "professor_name": "Michael Gillespie", + "rating": null, + "department": "Media Arts department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d653cd60fca157e5e6d9" + }, + "professor_name": "Carla Tejada Lopez", + "rating": null, + "department": "Civil Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d653cd60fca157e5e6db" + }, + "professor_name": "Maria Strangas", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d653cd60fca157e5e6dd" + }, + "professor_name": "Ruth Stark", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d653cd60fca157e5e6df" + }, + "professor_name": "Thomas Moody", + "rating": null, + "department": "Classics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d654cd60fca157e5e6e1" + }, + "professor_name": "Gareth Rhodes", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d654cd60fca157e5e6e3" + }, + "professor_name": "Catherine Belin", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d654cd60fca157e5e6e5" + }, + "professor_name": "Chinomso Ejiogu", + "rating": null, + "department": "English As A Second Language department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d654cd60fca157e5e6e7" + }, + "professor_name": "Gehan Ranepura", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d655cd60fca157e5e6e9" + }, + "professor_name": "Zohra Saad", + "rating": null, + "department": "French department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d655cd60fca157e5e6eb" + }, + "professor_name": "Nicole Kerrison", + "rating": null, + "department": "Management department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d655cd60fca157e5e6ed" + }, + "professor_name": "Arezoo Bybordi", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d656cd60fca157e5e6ef" + }, + "professor_name": "Jacqueline Li", + "rating": null, + "department": "Mechanical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d656cd60fca157e5e6f1" + }, + "professor_name": "Sean Apparicio", + "rating": null, + "department": "Philosophy department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d656cd60fca157e5e6f3" + }, + "professor_name": "Elias Garfinkel", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d656cd60fca157e5e6f5" + }, + "professor_name": "Tushar Jolis", + "rating": null, + "department": "Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d657cd60fca157e5e6f7" + }, + "professor_name": "Paulina Choh", + "rating": null, + "department": "Humanities department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d657cd60fca157e5e6f9" + }, + "professor_name": "Richard Steinberg", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d657cd60fca157e5e6fb" + }, + "professor_name": "Steven Tuber", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d657cd60fca157e5e6fd" + }, + "professor_name": "Amy Young", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d658cd60fca157e5e6ff" + }, + "professor_name": "Scott Siegel", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d658cd60fca157e5e701" + }, + "professor_name": "Yushan Jiang", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d658cd60fca157e5e703" + }, + "professor_name": "Arslan Qadeer", + "rating": null, + "department": "Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d658cd60fca157e5e705" + }, + "professor_name": "Denice Moran", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d659cd60fca157e5e707" + }, + "professor_name": "Chunsae Park", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d659cd60fca157e5e709" + }, + "professor_name": "Michele Washington", + "rating": null, + "department": "Design department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d659cd60fca157e5e70b" + }, + "professor_name": "Cinthia Gonazales", + "rating": null, + "department": "Languages department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65acd60fca157e5e70d" + }, + "professor_name": "Micaela Linder", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65acd60fca157e5e70f" + }, + "professor_name": "Miriam Entin", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65acd60fca157e5e711" + }, + "professor_name": "Erkinaz Shuminov", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65acd60fca157e5e713" + }, + "professor_name": "Kwame Baffour", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65bcd60fca157e5e715" + }, + "professor_name": "Victoria Navarro", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65bcd60fca157e5e717" + }, + "professor_name": "David Scheiman", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "his lectures are clear and made the topics interesting", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d65bcd60fca157e5e718" + } + }, + { + "text": "Very knowledgeable and kind-hearted professor. He'll occasionally go on a silly tangent, but usually relates it to the course material and brings it all back. I recommend taking his class if you don't particularly like math, I almost guarantee you won't mind it after!", + "pos": 0.134, + "neu": 0.806, + "neg": 0.06, + "_id": { + "$oid": "6711d65bcd60fca157e5e719" + } + }, + { + "text": "He will never make you feel silly for having a question, even if he's repeating himself. Be open, honest, and communicative. P.S. he likes riddles", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d65bcd60fca157e5e71a" + } + }, + { + "text": "Take this man if u love math or hate math. Not super theory or proof focused like engineering students like it. Shows a lot of examples very nice grader and he loves nice suprises. Super insightful discussions before class and never takes class or life too seriously (in a good way). GOAT", + "pos": 0.367, + "neu": 0.521, + "neg": 0.111, + "_id": { + "$oid": "6711d65bcd60fca157e5e71b" + } + }, + { + "text": "this man cannot take anything seriously. his lectures are straight out of the textbook. if u come to him with a concern, he truly will not care. super unaccommodating to his students.", + "pos": 0.162, + "neu": 0.691, + "neg": 0.148, + "_id": { + "$oid": "6711d65bcd60fca157e5e71c" + } + }, + { + "text": "He delivers good lectures and he is probably one of the best educators at CCNY but he does not teach. I took him during summer semester so can't say about fall and spring but he is almost never in class. When ever he is its only for 20 mins. No point in going to his class. Just be prepared to learn from YouTube if you happen to take him.", + "pos": 0.092, + "neu": 0.87, + "neg": 0.037, + "_id": { + "$oid": "6711d65bcd60fca157e5e71d" + } + }, + { + "text": "During the semester my father had gotten diagnosed with a neurodegenerative condition and I have been taking care of him all semester. I had emailed Prof Scheimen about this and asked for an extension on a quiz, he ignored it and would not take a paper copy. He was very cold and was not available during office hours. It was a horrible semester.", + "pos": 0.046, + "neu": 0.87, + "neg": 0.084, + "_id": { + "$oid": "6711d65bcd60fca157e5e71e" + } + }, + { + "text": "You will enjoy to go to his class because he is interesting person. He will keep you active in his lectures by telling many jokes so you will not get sleep during lectures. But he is not good teacher. I did not learn in this class even he made cal3 more hard!", + "pos": 0.129, + "neu": 0.783, + "neg": 0.088, + "_id": { + "$oid": "6711d65bcd60fca157e5e71f" + } + }, + { + "text": "He is not a bad professor, I categorize him more like a dude u would hang out with, he cuts his lecture early something and he basically does the book so u can just study by yourself, the first test is fair, but the second one is hell, even tho its 5 problems, chapter 5 is series and those take a long time, he included 2 of them so GL", + "pos": 0.127, + "neu": 0.738, + "neg": 0.135, + "_id": { + "$oid": "6711d65bcd60fca157e5e720" + } + }, + { + "text": "I admit he's an interesting guy, but he's not a good lecturer. He's just reading a textbook. You can completely read the textbook by yourself.", + "pos": 0.115, + "neu": 0.776, + "neg": 0.11, + "_id": { + "$oid": "6711d65bcd60fca157e5e721" + } + }, + { + "text": "1 thing I don't like: Was my very first semester, he answered me rudely when asked for the first quiz password. He's a fun professor. Loves his job but you MUST be on track. Everything is online. If youre the type to search up for answers and think you'll be fine, you won't be. Take advantage of what he does for you, but don't take him for granted.", + "pos": 0.121, + "neu": 0.803, + "neg": 0.076, + "_id": { + "$oid": "6711d65bcd60fca157e5e722" + } + }, + { + "text": "I would take this professor any day and would recommend others to take it. Hilarious professor that finds ways to make math fun to learn with his dumb analogies. An easy class to pass if you do the work and put in the effort. Very well at lecturing and helping students understand topics. Overall if you ever take his class you'll never regret it.", + "pos": 0.236, + "neu": 0.721, + "neg": 0.043, + "_id": { + "$oid": "6711d65bcd60fca157e5e723" + } + }, + { + "text": "I would 100% advise you to take his course, he makes the lectures fun and engaging as well as makes you feel comfortable asking questions. He teaches the material very well and you can see he enjoys his job (which is rare these days.) He does his best to prepare you for tests. To top it off he replays to emails fast!!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d65bcd60fca157e5e724" + } + }, + { + "text": "very funny, wish the math department gave him more freedom", + "pos": 0.604, + "neu": 0.396, + "neg": 0.0, + "_id": { + "$oid": "6711d65bcd60fca157e5e725" + } + }, + { + "text": "His lectures are straight to the point with jokes at every corner it's very entertaining and he keeps me focused on the work.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d65bcd60fca157e5e726" + } + }, + { + "text": "THIS is the professor you want !! Trust me, he is the most coolest professor ever, you get 2 exams and 1 final, exams were honestly not that difficult. If you do the quizzes and practice them, you'll do amazing on the exams. You cannot get bored in his class, he makes the class fun and enjoyable. He is a very caring professor.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d65bcd60fca157e5e727" + } + }, + { + "text": "He is the best prof so far, for all the calculus course tho I was in his calc 203 course. He wrote his own final exam and it was fair enough. I would take him again. I bet no one failed his course. You just have to put in the work yoo.", + "pos": 0.155, + "neu": 0.808, + "neg": 0.037, + "_id": { + "$oid": "6711d65bcd60fca157e5e728" + } + }, + { + "text": "The BEST math professor I have had. His lectures are very entertaining and informative. He is very coherent at explaining things and make them clear. Always accessible in and outside class. Calc 3 a hard class but if u pay attention, you will definitely learn. 15% quiz, 5% hw, 20% each exam and 40% final. His exams are very reasonable. Awesome prof", + "pos": 0.222, + "neu": 0.74, + "neg": 0.038, + "_id": { + "$oid": "6711d65bcd60fca157e5e729" + } + }, + { + "text": "#1 top pick for calc 3 hands down. He's a very passionate professor who loves teaching and every lecture was 100% worth my time. Calculus is difficult for me but with him, I felt like I learned so much and am proud of my progress", + "pos": 0.325, + "neu": 0.645, + "neg": 0.03, + "_id": { + "$oid": "6711d65bcd60fca157e5e72a" + } + }, + { + "text": "Best math professor that I've had throughout CCNY. Even though I got a C, he's still the best since he explains himself really good, he always wants his students to pass, and he's always available outside of class. This is not an easy course so you need to do a lot of self-study. If you have the chance to take him, take him", + "pos": 0.184, + "neu": 0.784, + "neg": 0.033, + "_id": { + "$oid": "6711d65bcd60fca157e5e72b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65ccd60fca157e5e72d" + }, + "professor_name": "Rafea Al Suhili", + "rating": 4.5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He is the best professor I have met in LaGuardia so far. He cares about his students, the lectures are enjoyable, and you will never get bored. He is full of knowledge and taught me a lot of materials that were outside the lectures. Don't hesitate to ask him. He is very patient. I hope to see him again at City College.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e72e" + } + }, + { + "text": "take this professor highly qualified, caring, wonderful lectures, the best in the school", + "pos": 0.538, + "neu": 0.462, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e72f" + } + }, + { + "text": "don't care for students", + "pos": 0.0, + "neu": 0.533, + "neg": 0.467, + "_id": { + "$oid": "6711d65ccd60fca157e5e730" + } + }, + { + "text": "The content of this course I found very difficult and Suhili is not here to let you slack off. That said, he is a great lecturer, makes the material as clear as one could even though there is a ton of it. His exams are difficult and he's a harsh grader. Participate and show you care and review textbook questions after every lecture.", + "pos": 0.132, + "neu": 0.759, + "neg": 0.109, + "_id": { + "$oid": "6711d65ccd60fca157e5e731" + } + }, + { + "text": "Caring, Committed, and incredibly understanding. Gives good lectures and is very patient with students. Instills confident in his students rather than stress and fear.", + "pos": 0.327, + "neu": 0.505, + "neg": 0.168, + "_id": { + "$oid": "6711d65ccd60fca157e5e732" + } + }, + { + "text": "wonderful professor , wonderful lectures , very helpful, explain very well , great knowledge give wonderful feedback, fair exams, I learned a lot that helped me later on other courses like mechanical of deformable bodies and other courses . a genius in teaching civil engineering", + "pos": 0.41, + "neu": 0.59, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e733" + } + }, + { + "text": "A great professor , a great knowledge and leader ship, very clear , guide you to learn design , great management of a special course like senior design which is different than other courses.", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e734" + } + }, + { + "text": "waw a graet professor , very clear and caring , amazing lectures, fair exams you will learn a lot about civil engineering. A genus in material and ways of giving the knowledge. take him you will enjoy, learn and be happy.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e735" + } + }, + { + "text": "he is wonderful, very knowledgeable, clear and helping", + "pos": 0.637, + "neu": 0.363, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e736" + } + }, + { + "text": "Makes the class easy but you still have to spend a good amount of time reviewing outside of class.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e737" + } + }, + { + "text": "It is clear that one person had rated Suhili low six times on june 6th . I am sure that this person had done this to hurt professor Suhili which is not fair , may be this because this student had failed, definitely this is not true, and I am sure every one who took Suhili knows how this professor is wonderful in every aspect.", + "pos": 0.166, + "neu": 0.673, + "neg": 0.16, + "_id": { + "$oid": "6711d65ccd60fca157e5e738" + } + }, + { + "text": "one of the best very helpful, explains material very well , a genius in CE. His lectures are wonderful. His exams are fair. He solves many examples. He has an excellent teaching skill and relate theoretical material with practical a great experience and very caring if you dont take him you gone loose opportunity of learning wonderful engineering .", + "pos": 0.419, + "neu": 0.554, + "neg": 0.027, + "_id": { + "$oid": "6711d65ccd60fca157e5e739" + } + }, + { + "text": "This guy is the kind of professor who makes you learn, his lectures are amazing, very helpful , very clear and had a wonderful way of teaching. I totally agree that he is the best in the CE department.", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e73a" + } + }, + { + "text": "I love this professor, he is a real professor, he knows what he is doing, wonderful performance , I wish I have him for all of my courses. very knowledgeable, very caring and respectful. take him and you will learn a lot", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e73b" + } + }, + { + "text": "I am really impressed by the knowledge this professor have , he knows everything, he mentored our work in a very efficient way , the project we have done during the course is very complicated , but with his help and valuable instructions and wonderful leadership and guide made the difficult easy, I had learned a lot from him", + "pos": 0.274, + "neu": 0.683, + "neg": 0.043, + "_id": { + "$oid": "6711d65ccd60fca157e5e73c" + } + }, + { + "text": "I took this professor for static and soil mechanics, he is a genius in civil engineering, very helpful very reliable and fair. The exams are fair and he made the hard material look easy he is wonderful", + "pos": 0.31, + "neu": 0.66, + "neg": 0.03, + "_id": { + "$oid": "6711d65ccd60fca157e5e73d" + } + }, + { + "text": "He is the best , he explains very well , very fair exams and very clear and fair grading. He is the best human , very understanding , very helpful, very decent . Take him and you will hope to have him for all of your courses", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e73e" + } + }, + { + "text": "This man make the difficult topics looks very easy yet covering all the engineering material, one of the best very talented in teaching , very knowledgeable, very decent and has a wonderful stable highly respected personality, he treats the students like his sons and daughters. very efficient and helpful", + "pos": 0.411, + "neu": 0.554, + "neg": 0.035, + "_id": { + "$oid": "6711d65ccd60fca157e5e73f" + } + }, + { + "text": "I took this professor for static CE231, Soil Mechanics CE345 and lately Senior Design CE509. He was wonderful in all, the most helpful person, he thinks about the students positively, his lectures are wonderful, the best I had ever had in all my life. take him and learn a lot, a wonderful person on the professional and personal levels.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e740" + } + }, + { + "text": "excellent professor, he knows what you need , guide you to the design of every CE engineering aspects he knows everything, transportation, structures and environmental. very fair and helpful", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e741" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65ccd60fca157e5e743" + }, + "professor_name": "Matthew Auth", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "Don't even take him. He gets off-topic a lot, and his notes are unclear.", + "pos": 0.0, + "neu": 0.867, + "neg": 0.133, + "_id": { + "$oid": "6711d65ccd60fca157e5e744" + } + }, + { + "text": "I took his 8 am class. From day 1, I felt like he's very good at motivating others than teaching others. He gives a lot of partial credits and extra credits and attendance don't matter. I taught myself this whole sem and it was worth it.", + "pos": 0.286, + "neu": 0.695, + "neg": 0.019, + "_id": { + "$oid": "6711d65ccd60fca157e5e745" + } + }, + { + "text": "I recommend taking professor auth. He is much better than anyone else in the department. You have to put in a lot of work and you will pass. The grading policy is clear from day one.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e746" + } + }, + { + "text": "DONT TAKE THIS CLASS! I took his class and he was no help at all.I did everything I could to get math help but he was no help to me at all with the emails I sent him and phone calls I made to his office no response at all. He dose not teach much in class. He degrades the students in class saying we are not math ready. PLEASE DONT TAKE HIM !!!!", + "pos": 0.021, + "neu": 0.767, + "neg": 0.212, + "_id": { + "$oid": "6711d65ccd60fca157e5e747" + } + }, + { + "text": "If you struggle with math, be prepared to teach yourself (no calculator rule).\nQuizzes in the beginning of class, late/absent you can't remake them. A lot of the time students leave after the quiz and don't stay for his lectures as he barely covers the topic. He always made comments about students taking 1900 and he only made it harder.", + "pos": 0.03, + "neu": 0.913, + "neg": 0.056, + "_id": { + "$oid": "6711d65ccd60fca157e5e748" + } + }, + { + "text": "Proffeser Auth was one of the most genuine teachers I have had. Students say he insulted us but he gave the reality. If you work hard and want to do well you will. Started with no math experience. So i saw it as a way of staying humble and working hard. He encouraged us to always study math for an hour a day. Gave sample exams which helped a lot.", + "pos": 0.094, + "neu": 0.803, + "neg": 0.104, + "_id": { + "$oid": "6711d65ccd60fca157e5e749" + } + }, + { + "text": "Just don't take him..", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e74a" + } + }, + { + "text": "At first he told us that we were behind and belittled us. Quiz every single class", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d65ccd60fca157e5e74b" + } + }, + { + "text": "Matthew Auth challenges his students and makes them better mathematicians. He was a bit tough on his students when it came to the daily quizzes, but mostly, his quizzes resembled his midterms, which are similar to the final exam. Besides, most of his lectures he only reviews the HW questions and answers any question.", + "pos": 0.056, + "neu": 0.921, + "neg": 0.023, + "_id": { + "$oid": "6711d65ccd60fca157e5e74c" + } + }, + { + "text": "This teacher gives quizzes at the start of every class and 2/3 of the class leaves right after. He gives quizzes on homework that isnt due up until 3-4 days after. This teacher assigns many youtube videos which do all the teaching for him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d65ccd60fca157e5e74d" + } + }, + { + "text": "Belittled all of his students during the first week of classes by mentioning how we are all behind because we are taking this class and mentions that these topics are babyish and elementary. Often speaks in a mocking tone when mentioning questions or statements students have made in the past on the work. Inconsiderate of the less fortunate.", + "pos": 0.04, + "neu": 0.828, + "neg": 0.132, + "_id": { + "$oid": "6711d65ccd60fca157e5e74e" + } + }, + { + "text": "When I asked him to send emails regarding when quizzes will be earlier he said he would and that he understood the fact that students needed more time to study, however, after a sending early emails a couple times he completely stopped. He continues to send emails at unprofessional times of day the night directly before the quiz anywhere from 9-11.", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d65ccd60fca157e5e74f" + } + }, + { + "text": "Well Goodluck in this class if your not good at math you will have a bad time he gives so little time for tests", + "pos": 0.072, + "neu": 0.724, + "neg": 0.204, + "_id": { + "$oid": "6711d65ccd60fca157e5e750" + } + }, + { + "text": "one of the worst professors, avoid him if you can you really dont learn anything he loves to insult us first week he was just insulting the students. if you struggle in math good luck because this guy dont care, he gives quizzes every single class and you can't make it up. he doesn't teach much he just talks and talks.", + "pos": 0.121, + "neu": 0.656, + "neg": 0.223, + "_id": { + "$oid": "6711d65ccd60fca157e5e751" + } + }, + { + "text": "Great Professor; the subject is not hard and he's very clear about what he wants. QUIZZES ARE EVERYDAY but he makes it easy, just try to practice problems on WebAssign and textbook because he makes the quizzes and midterm based on textbook problems, other than that you'll be good. About lectures...he sometimes babbles so just be aware of that.", + "pos": 0.184, + "neu": 0.718, + "neg": 0.098, + "_id": { + "$oid": "6711d65ccd60fca157e5e752" + } + }, + { + "text": "This subject is not hard...anyone who struggles with math or is expecting to actually learn in his class you're in for a surprise. He assigns QUIZZES EVERYDAY and practically forced us to pay for this application to do math homework. Sometimes we'd have quizzes on sections that weren't even taught or due yet. Constantly babbles/wastes time. AVOID!!", + "pos": 0.066, + "neu": 0.811, + "neg": 0.123, + "_id": { + "$oid": "6711d65ccd60fca157e5e753" + } + }, + { + "text": "Brutal just brutal you can't retake test and good luck if you struggle with math in his class", + "pos": 0.201, + "neu": 0.442, + "neg": 0.357, + "_id": { + "$oid": "6711d65ccd60fca157e5e754" + } + }, + { + "text": "Matthew Auth is one of the rudest people I've met in my life he doesn't care about your well-being or if you pass the class or not. h is the type of professor who expects you to know math. he skips steps and doesn't teach at all he just goes over homework questions. he gives tests every week and an exam every month", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d65ccd60fca157e5e755" + } + }, + { + "text": "He gives great lectures but u need to read the textbook and do the suggested hw textbook problems .Midterm and quiz q's very similar to textbook problems. The final was brutal so do good on midterms and quizzes. Attend class, read the sections and do as many problems as u can to do well. Weekly quizzes, drops 4 (20) midterms(20 each) final(40)", + "pos": 0.117, + "neu": 0.681, + "neg": 0.202, + "_id": { + "$oid": "6711d65ccd60fca157e5e756" + } + }, + { + "text": "Great professor! Easy to understand and does enough problems to prepare you for upcoming quizzes and exams. Do the practice problems in the textbook! He uses those questions to make the quizzes and exams.", + "pos": 0.176, + "neu": 0.698, + "neg": 0.126, + "_id": { + "$oid": "6711d65ccd60fca157e5e757" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65dcd60fca157e5e759" + }, + "professor_name": "Pierre Mones Destina", + "rating": 2.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Seriously one of the worst, if not the worst professor I've had ever. Notice that I'm giving a review based on how he teaches, rather than what he knows. I'm sure that he knows the stuff, but he simply can't explain it efficiently. When asked, he gets irritated and cocky. He's quite unorganized too. Study in groups to make it through his class.", + "pos": 0.075, + "neu": 0.753, + "neg": 0.172, + "_id": { + "$oid": "6711d65dcd60fca157e5e75a" + } + }, + { + "text": "He does not care about if you passing or not. He does not curve test. He got a lot of accent. Im really good at math and just because of the way he teaches I did poor this time for the first time in my life I got a C+ in math.", + "pos": 0.055, + "neu": 0.846, + "neg": 0.099, + "_id": { + "$oid": "6711d65dcd60fca157e5e75b" + } + }, + { + "text": "He's easily the worst professor I've ever seen, he teaches the material so poorly and hardly pays any attention to whether or not students understand the material. He left our class with a substitute for the last few weeks of the semester, and he had to practically teach us the entire course again because no one knew what they were doing.", + "pos": 0.036, + "neu": 0.87, + "neg": 0.094, + "_id": { + "$oid": "6711d65dcd60fca157e5e75c" + } + }, + { + "text": "The worst prof ive seen in ccny. Avoid him if u want to pass.", + "pos": 0.07, + "neu": 0.591, + "neg": 0.339, + "_id": { + "$oid": "6711d65dcd60fca157e5e75d" + } + }, + { + "text": "He has heavy accent. He doesnt know how to explain and teach.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d65dcd60fca157e5e75e" + } + }, + { + "text": "Nothing to say!! I wish I could go back and never take class with him. He is hilarious You wont understand anything in his class.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d65dcd60fca157e5e75f" + } + }, + { + "text": "Really really worst teacher ever. He is very rude and can not explain anything properly. I dont even know how he became a teacher when he doesnt even know how to teach properly. Never ever take this class. If you take this class you will regret for sure.", + "pos": 0.04, + "neu": 0.771, + "neg": 0.189, + "_id": { + "$oid": "6711d65dcd60fca157e5e760" + } + }, + { + "text": "He is Thebes worst teacher ever that I had in my life. He doesnt know how to explain math. The way he talks very rude. Math is one my favorite subject but because of him math class become hard for me. He has an heavy accent and you wont understand what is he saying. Students are afraid to ask him questions because he becomes rude. Worst worst!!!", + "pos": 0.024, + "neu": 0.71, + "neg": 0.266, + "_id": { + "$oid": "6711d65dcd60fca157e5e761" + } + }, + { + "text": "Has a strong accent, sometimes hard to understand. Moves extremely fast through chapters, assigns homework online and also makes you handwrite it to hand it in. Random quizzes. Hes all over the place when it comes to teaching.", + "pos": 0.152, + "neu": 0.816, + "neg": 0.033, + "_id": { + "$oid": "6711d65dcd60fca157e5e762" + } + }, + { + "text": "He has a very strong accent and moves fairly quickly throughout the course. If you don't feel comfortable in math I do not recommend you take this course. He is a bit rude when you ask questions and often times will leave you more confused than you initially were.", + "pos": 0.062, + "neu": 0.739, + "neg": 0.199, + "_id": { + "$oid": "6711d65dcd60fca157e5e763" + } + }, + { + "text": "I was a bit scared to take his class because most of the reviews were bad. But hes a very good professor. I took his class in the summer and there was a lot of quiz every other day. If you dont understand something in class just ask, he will stop and explain it, if you still dont understand go to his office. Also, gives chances to make up test.", + "pos": 0.083, + "neu": 0.828, + "neg": 0.089, + "_id": { + "$oid": "6711d65dcd60fca157e5e764" + } + }, + { + "text": "Do not get me wrong, Destina is a very caring person and he is funny. However, some jokes humiliate some students. However, I did not enjoy him as a professor. He is not clear in his explanations and his accent makes it very hard to understand him. He is a tough grader, you really have to work for your grade.", + "pos": 0.149, + "neu": 0.694, + "neg": 0.157, + "_id": { + "$oid": "6711d65dcd60fca157e5e765" + } + }, + { + "text": "great teacher he really knows what hes doing. YOU HAVE TO WORK FOR YOUR GRADE. hes a hard prof. but he doesnt want to purposely fail anyone. go to his office hours, do the hw, study, ask questions and youll do great. PARTICIPATION and attendance matter. also make sure he knows your name. he gives exams and pop quizzes so study and ask questions", + "pos": 0.161, + "neu": 0.744, + "neg": 0.095, + "_id": { + "$oid": "6711d65dcd60fca157e5e766" + } + }, + { + "text": "Professor Destina can be a bit much, raises his voice a lot. His tests are pretty tough, usually more tough than examples given in class. Failed the first two tests and got a 90 on the second and 85 on final and passed the class. Gives webAssign but its nothing insane. Did not really like him as a person, makes it hard for students to ask questions", + "pos": 0.067, + "neu": 0.807, + "neg": 0.126, + "_id": { + "$oid": "6711d65dcd60fca157e5e767" + } + }, + { + "text": "Show up to class and do online homeworks on time.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d65dcd60fca157e5e768" + } + }, + { + "text": "His way of teaching is so good. If a student has a hard time understanding a concept, he will try to explain constantly just so that everyone is well prepared for his tests. He will prepare you so well that the final will be very easy. Make sure you know the graphs of each function.", + "pos": 0.247, + "neu": 0.731, + "neg": 0.021, + "_id": { + "$oid": "6711d65dcd60fca157e5e769" + } + }, + { + "text": "He is a really good teacher. You can tell he knows his stuff, he reminds you that there are tutoring available. I also noticed he gives you more points on exams than you deserve. He cares, it's the students that don't care. The students are also scared of him because of his personality. I would take him again.", + "pos": 0.094, + "neu": 0.822, + "neg": 0.084, + "_id": { + "$oid": "6711d65dcd60fca157e5e76a" + } + }, + { + "text": "He is very enthusiastic in teaching. However, he spends lots of time on writing stuffs that are on the textbook. His homework ( 10 and very short ) is enough for the class exam but i don't think it's enough for the final. You will have to self-practice more.", + "pos": 0.045, + "neu": 0.955, + "neg": 0.0, + "_id": { + "$oid": "6711d65dcd60fca157e5e76b" + } + }, + { + "text": "This professor is not bad, but not one of the best either. He likes showing proof to mostly everything which takes most of the class time, because of this he only gets to go over two problems. He only gave 2 tests and the final. He also gives quizzes and homework, but only like 1 or 2 questions for the quizzes and like 8 homeworks.", + "pos": 0.223, + "neu": 0.733, + "neg": 0.044, + "_id": { + "$oid": "6711d65dcd60fca157e5e76c" + } + }, + { + "text": "Very hard grader on exams. His accent is very thick which makes it difficult to understand him. He does not curve.", + "pos": 0.0, + "neu": 0.819, + "neg": 0.181, + "_id": { + "$oid": "6711d65dcd60fca157e5e76d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65dcd60fca157e5e76f" + }, + "professor_name": "Valeria Balogh-Nair", + "rating": 2.8, + "department": "Chemistry department", + "comments": [ + { + "text": "Horrible horrible horrible. If you are pre-med/dental do not take her class or come to this school. She does not speak English, so learning chemistry from someone who native language is not English makes it 10x more difficult. She does have office hours but that makes things worse. Test are difficult, and lecture is a waste of time", + "pos": 0.0, + "neu": 0.721, + "neg": 0.279, + "_id": { + "$oid": "6711d65dcd60fca157e5e770" + } + }, + { + "text": "Very sweet and kind professor. She's also old school in that she doesn't curve and grade is based on exams only. If you get her past exams you'll be fine for the class, but you'll have to work harder to make sure you're prepared for MCAT or other organic classes. Participate in class and she'll love you, kitty!", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d65dcd60fca157e5e771" + } + }, + { + "text": "Gives extra credit if you participate. Just speeds through slides. Workshop too slow paced. Read the textbook BEFORE lecture! NO PARTIAL CREDIT!! Exams are similar to review but you don't always get review! Accent not that bad, Boson's is worse. Does not TEACH. Skips important practice and slides if no one participates or comments during lecture!", + "pos": 0.081, + "neu": 0.715, + "neg": 0.203, + "_id": { + "$oid": "6711d65dcd60fca157e5e772" + } + }, + { + "text": "The only way to get a good grade is if you get her old exams. Dont just memorize her old exams. Actually know your stuff because she changes it up a little. Sometimes the exams could be very similar, but dont take the chance. Shes a nice lady and always tried to joke with us. Shes not too great at teaching, but shes the best choice for orgo.", + "pos": 0.172, + "neu": 0.749, + "neg": 0.079, + "_id": { + "$oid": "6711d65dcd60fca157e5e773" + } + }, + { + "text": "The only way I got an A+ is by having the previous exams. For the final she puts all 3 exams together. The only way to get an A is through memorizing the answers. I studied for the first 2 tests, got an 80s b/c of her ridiculous no partial credit (for small things like forgetting a pos. charge). Then got an A+ by memorizing her review + past exams.", + "pos": 0.033, + "neu": 0.876, + "neg": 0.091, + "_id": { + "$oid": "6711d65dcd60fca157e5e774" + } + }, + { + "text": "This teacher doesn't care if you drop dead in class, she just wants to get through the notes as fast as possible. It got to the point that kids stopped taking notes because she goes through her slides so quickly we barely had enough time to take photos. She gives ZERO partial credit and her tests are hard and easy to mess up. DO NOT TAKE THIS CLASS", + "pos": 0.068, + "neu": 0.747, + "neg": 0.185, + "_id": { + "$oid": "6711d65dcd60fca157e5e775" + } + }, + { + "text": "Terrible professor. Cannot understand a word she is saying. Got an A in this class but big deal, anyone with 2 neurons to rub together can do it. She repeats all her exams. Attendance is mandatory for the first month. After that, go to her amazing recitation leader and learn Orgo from him. He saved us and taught us Orgo. Go to her review sessions.", + "pos": 0.141, + "neu": 0.831, + "neg": 0.028, + "_id": { + "$oid": "6711d65dcd60fca157e5e776" + } + }, + { + "text": "One of the best Orgo professors I've taken. The only issue people had was her accent - which is understandable if English is not your first language. I recommend you take her as a professor. I hated the subject before I took her and now I thoroughly enjoy Orgo.", + "pos": 0.172, + "neu": 0.758, + "neg": 0.071, + "_id": { + "$oid": "6711d65dcd60fca157e5e777" + } + }, + { + "text": "not sure why she has such low ratings! shes a great professor who may seem hard at first but she's not! you have to put very little effort to get a good grade. just read orgo as a second language and go to workshop and you will be fine. don't know why people do bad on her tests because 70% of her test questions come from her review. Take her!!", + "pos": 0.105, + "neu": 0.771, + "neg": 0.124, + "_id": { + "$oid": "6711d65dcd60fca157e5e778" + } + }, + { + "text": "Her review sessions are gold so don't miss them(take pics of the ques)! Her exam questions are the same as the review questions!! I taught myself the whole semester of orgo 1 since I really didn't show up to class (her teaching style isn't the greatest). If you do show up, try answering her questions since she gives bonus points(max 5pts). Easy A.", + "pos": 0.126, + "neu": 0.827, + "neg": 0.047, + "_id": { + "$oid": "6711d65dcd60fca157e5e779" + } + }, + { + "text": "Look at the powerpoint closely. It is more helpful than textbook. Go to recitation. For me, it is an easy class because i work hard to understand the powerpoints. You need to study on you own because orgo is hard. Easy pass, but what good is a C? Get all the partial credit. It helps...", + "pos": 0.251, + "neu": 0.712, + "neg": 0.036, + "_id": { + "$oid": "6711d65dcd60fca157e5e77a" + } + }, + { + "text": "In the beginning you will have a difficult time understanding her because she has a thick accent. The course material is not difficult but you have to spend time on it and practice. her review is sometimes the test so pay close attention bc she also doesn't give alot of partial credit on exams. shes very specific.", + "pos": 0.08, + "neu": 0.855, + "neg": 0.065, + "_id": { + "$oid": "6711d65dcd60fca157e5e77b" + } + }, + { + "text": "You basically have to teach yourself everything if you take her. Her lectures aren't that useful but she does put the same problems on the exam as the ones she does in class. Also, workshop with chris is extremely helpful. GO TO THE WORKSHOP!!!!", + "pos": 0.08, + "neu": 0.795, + "neg": 0.125, + "_id": { + "$oid": "6711d65dcd60fca157e5e77c" + } + }, + { + "text": "She can't teach but yet expects students to get 100 on the exams by teaching themselves. Her accent is horrible which makes it 10x hard to understand. No partial credit. She is a joke and students that got As cheated there way there. I read before each lecture, took notes, took pictures of her slides, watched videos and continuously struggled.", + "pos": 0.037, + "neu": 0.704, + "neg": 0.259, + "_id": { + "$oid": "6711d65dcd60fca157e5e77d" + } + }, + { + "text": "shes a okay teacher. a little unclear but if you go to the workshop you can get an A easily. she gives a review before a test which is literally the same questions as the test so i dont understand why students score less than a 90 if she gives ALL the answers. got hundreds on all her tests. her accent is a little unclear however but workshop is key", + "pos": 0.062, + "neu": 0.892, + "neg": 0.046, + "_id": { + "$oid": "6711d65dcd60fca157e5e77e" + } + }, + { + "text": "You have to study a lot on your own or with groups. Her review sessions are great as she is practically giving you questions from the exam. She gives bonus points added to your overall grade if you're the first to answer her questions in class so be aggressive.", + "pos": 0.176, + "neu": 0.791, + "neg": 0.033, + "_id": { + "$oid": "6711d65dcd60fca157e5e77f" + } + }, + { + "text": "This is orgo, so don't expect an easy course. You should be able to manage an A. Her grading scale is forgiving. Problems from review and lecture usually show up on a lot of the exam with slight modifications. Answer lot questions for bonus points. Don't be shy. you have to be aggressive to get all 5 points offered. Do text book problems", + "pos": 0.111, + "neu": 0.761, + "neg": 0.128, + "_id": { + "$oid": "6711d65dcd60fca157e5e780" + } + }, + { + "text": "She needs \"EDU 101\" in her Life!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d65dcd60fca157e5e781" + } + }, + { + "text": "Her accent's not the worst among organic chemistry professors. If only people decide to skim through the chapters before lectures, they'll be fine. Her review sessions covered 50%+ of the actual exams. Half of the class still got grades below 60s. You wonder why. NEVER beg for a grade. She hates it. Show that you care, and so will she.", + "pos": 0.123, + "neu": 0.833, + "neg": 0.043, + "_id": { + "$oid": "6711d65dcd60fca157e5e782" + } + }, + { + "text": "Amazing professor! Makes you work for your grade but an A is possible. Her accent isn't that and. Take photos of her slides, without flash! Her slides are worth gold. Review questions are almost identical to exam questions so be sure to review them. Made me love Orgo. Participate as much as you can to get those bonus points. Will miss her in Orgo 2", + "pos": 0.24, + "neu": 0.736, + "neg": 0.024, + "_id": { + "$oid": "6711d65dcd60fca157e5e783" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65ecd60fca157e5e785" + }, + "professor_name": "David Schwinger", + "rating": 4.4, + "department": "Mathematics department", + "comments": [ + { + "text": "Offers his subject with a great sense of humor ! Make learning math really enjoyable.", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e786" + } + }, + { + "text": "He explain clearly, review the homework before every class, point out common mistakes that students make/tips that to solve different types of questions...he is fun, give \"smart questions\" for students to earn extra credits. I missed this professor. I took cal-2 with him one year ago and i enjoyed his class. Unfortunately he is retired now.", + "pos": 0.232, + "neu": 0.668, + "neg": 0.101, + "_id": { + "$oid": "6711d65ecd60fca157e5e787" + } + }, + { + "text": "He is a real professor. He does not give so many homework but the important chapters. He teaches everything clearly and makes jokes to refresh the classroom. Just listen carefully, don't be absent minded and be with him. I wish that's enough to learn from his class. I recommend about him.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e788" + } + }, + { + "text": "He is a good professor, but if I know him before I would not take him. He is nice, he almost gives you a lot of problems every class. Willing to answer your question. But Very disorganized in teaching the material, his exam is different from the final. Did not teach you easy way to solve the problems. In addition, lack of office hours.", + "pos": 0.098, + "neu": 0.698, + "neg": 0.204, + "_id": { + "$oid": "6711d65ecd60fca157e5e789" + } + }, + { + "text": "Very easy tests, which doesnt prepare you for final, which is much tougher. Still, if you get 95s on all his tests and over a 70 on final you get A, like me", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e78a" + } + }, + { + "text": "He is a strange professor that tells jokes I don't find funny most of the time. His exams are more lenient than the final, so try to do really well. He doesn't assign a lot of homework which makes it easy to slack off; and he is very disorganized in teaching the material. Focus on studying integration techniques--most emphasized on the final.", + "pos": 0.136, + "neu": 0.77, + "neg": 0.094, + "_id": { + "$oid": "6711d65ecd60fca157e5e78b" + } + }, + { + "text": "My wife and I were students of Professor Schwinger over 30 years ago. He taught calculus 1, 2, and 3 effortlessly; Wished we had him for advanced calculus with the Steinhardt Notes. I met my wife at the threshold to his office. He encourage us both to become actuaries. Today, we have our own business. Thanks Prof. Schwinger!", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e78c" + } + }, + { + "text": "I took Professor Schwinger for Math 195; he was one of the best math professors I had. His test are fair, he gives reviews, he uses humor, riddles and ridiculous antics to keeps the class interesting. He drops the lowest test grade so if you dont do well on the first test study hard for the rest and you will be fine...", + "pos": 0.176, + "neu": 0.712, + "neg": 0.112, + "_id": { + "$oid": "6711d65ecd60fca157e5e78d" + } + }, + { + "text": "More like a history class then mathematics, but I cant complain I have learned some interesting things and he's funny due to his randomness but his randomness does not interfere with my learning!!! Very good teacher makes learning math fun unlike those other professors!!", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e78e" + } + }, + { + "text": "Personally, I would not take this professor without having any calculus background. He just does problems, doesn't really teach. To succeed in math, you have to understand the concepts well and learn how to apply it. Schwinger doesn't really teach the concepts which makes it harder than it already is. Students tend to just copy and memorize.", + "pos": 0.089, + "neu": 0.867, + "neg": 0.043, + "_id": { + "$oid": "6711d65ecd60fca157e5e78f" + } + }, + { + "text": "He is not an easy A. Read his response and it will tell you that getting an A or B in his class is difficult. The problem I had in his class is that he doesn't really teach calculus which is a common problem with CCNY math profs. All he does is problems. As a result you are forced to study extremely hard to understand calculus. Take Popvassilev.", + "pos": 0.0, + "neu": 0.775, + "neg": 0.225, + "_id": { + "$oid": "6711d65ecd60fca157e5e790" + } + }, + { + "text": "Really cool professor. Had him for math 201 and 202. Straight forward exams, do homework. Clear explanations together with some fresh jokes, and historical events (he love to talk about history) makes math much more interesting to study. The only negative I think, is that his exams are nothing like departmental final. Thank You reverend ;)", + "pos": 0.311, + "neu": 0.61, + "neg": 0.079, + "_id": { + "$oid": "6711d65ecd60fca157e5e791" + } + }, + { + "text": "He's a really awesome professor. His jokes are hilarious, and he makes the class interesting. I like how he goes over every single question from the homework. He talks clearly and teaches well. His exams are almost exactly from the review he gives. An A+ professor. He makes calculus seem so easy.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e792" + } + }, + { + "text": "He is the best Math Prof in CCNY. Do all the HW and attend the class. His exams are straight forward. He even called himself a Wimp for giving easy exams. Try to do good in the class exams.Yes I agree that he doesn't spend all the time proving theorems but students learn more by doing problems. He goes over hws.", + "pos": 0.163, + "neu": 0.757, + "neg": 0.081, + "_id": { + "$oid": "6711d65ecd60fca157e5e793" + } + }, + { + "text": "Not an easy class....if you do the hw....go to class....do what you hav to do...you will defenitly get a good grade...schwinger is a good professor...he teaches well...i recommend him", + "pos": 0.232, + "neu": 0.7, + "neg": 0.067, + "_id": { + "$oid": "6711d65ecd60fca157e5e794" + } + }, + { + "text": "First off this guy is not an easy A. He teaches fast and gives very little questions on exams which means that each one is weighed very heavily. Each question is worth about 15 to 20 points. Sometimes more. He tends to teach the class through problems which can be confusing since you don't have a strong understanding of concepts. See to believe.", + "pos": 0.027, + "neu": 0.833, + "neg": 0.139, + "_id": { + "$oid": "6711d65ecd60fca157e5e795" + } + }, + { + "text": "This guy is quite funny. Do not listen to the comments below. He is not an easy A. If he was so easy the class average wouldn't be a C. His teaching method is fast and a bit messy. If your the person who needs concepts to flow smoothly to understand math, then avoid this guy. He'll only confuse you. He teaches the class through problems not concept", + "pos": 0.087, + "neu": 0.766, + "neg": 0.147, + "_id": { + "$oid": "6711d65ecd60fca157e5e796" + } + }, + { + "text": "he is the best teacher for calculus. very interesting and entertaining class. he gives homework and doesn't check.... this leads to slacking off. But if you do his homework and ask your doudts then its an easy A.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e797" + } + }, + { + "text": "best teacher, as a teacher his classes are very entertaining. Very helpful examples. but the problem is he doesn't check the homework. this will lead to people slacking off. if u do the homework and come to class its an easy A", + "pos": 0.209, + "neu": 0.722, + "neg": 0.069, + "_id": { + "$oid": "6711d65ecd60fca157e5e798" + } + }, + { + "text": "He is one of the best teachers in City College, if you want to understand and pass calculus, then he is a must don not belief the two comments belows... those who are in his class eventually pass.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e799" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65ecd60fca157e5e79b" + }, + "professor_name": "James Hedberg", + "rating": 3.7, + "department": "Physics department", + "comments": [ + { + "text": "Worst professor i have ever taken, he is a very tough grader and not empathetic at all. Does not give any clear guidelines, and is all over the place. Only grades the whole semester with 4 hws. Grades everything after a month. Stay away from him.", + "pos": 0.0, + "neu": 0.803, + "neg": 0.197, + "_id": { + "$oid": "6711d65ecd60fca157e5e79c" + } + }, + { + "text": "Professor Hedberg explains material very clearly and goes at a pace that ensures everyone understands-- he will answer your question thoroughly with positive spirit! Prof. Hedberg was considerate of challenges of online school and made accommodations that were more than fair. He loves imagination and especially astronomy. Very interesting man.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e79d" + } + }, + { + "text": "Professor Hedberg is simply THE best. I can't wait to re-take him for future physics classes.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e79e" + } + }, + { + "text": "There are many great professors in the physics department, I would definitely put Professor Hedberg in the top 5 of them, easily. Breaks down and demonstrates complex topics in way that's very accessible, and makes sure that you understand the concepts of what you're doing. Absolutely would recommended taking his class if you get a chance.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e79f" + } + }, + { + "text": "idk why he has such bad ratings here. PHYSICS IS HARD in general and he will be ur best bet as a professor. He provides the lecture slides which also comes with cool simulations. He also does actual physics in class at his house using his kids toys \ufffd\ufffd. He has lecture clicker questions every class so you should pay attention. OVERALL SOLID PROF!", + "pos": 0.122, + "neu": 0.762, + "neg": 0.116, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a0" + } + }, + { + "text": "I just can't pass with him as a student who never take physics before", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a1" + } + }, + { + "text": "THIS MAN IS A GEM AND A WHOLE PHYSICIST. DURING CLASS, HE SHOWS A LOT OF MINI TOOLS IN HIS DESK BY APPLYING THEM TO EVERY PHYSICS CONCEPT WE LEARN IN HIS CLASS. HIS ASSIGNMENTS CAN BE KIND OF TRICKY BUT TOWARDS THE END, YOU WILL LEARN A LOT BECAUSE THEY ARE TO HELP YOUR BRAIN THINK WITHIN THE PHYSICS WORLD AROUND US INSTEAD OF PLUGGING IN FORMULAS.", + "pos": 0.05, + "neu": 0.93, + "neg": 0.02, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a2" + } + }, + { + "text": "I find that Professor Hedberg really cares and tries his best to make physics as intelligible as possible for a wide range of students! His constant use of the round cat Mr. Mittens in his hw problems makes you chuckle a bit. Hope I get the name right, but if the class is online you may get a chance at meeting Mr. Meow Meows (his actual cat).", + "pos": 0.174, + "neu": 0.801, + "neg": 0.025, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a3" + } + }, + { + "text": "Best professor I've had so far. He did not do tests but required a project as the final.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a4" + } + }, + { + "text": "In all honesty, he is rude and makes you do a bunch of hw online WITH NO EXPLANATIONS. Office hours are just useless. He clearly doesnt want to teach. Avoid, or if you do take, hope someone else before you has the notes. Teach yourself and beware of the tests", + "pos": 0.14, + "neu": 0.667, + "neg": 0.193, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a5" + } + }, + { + "text": "Got into multiple argument's with this professor, for many little thing like a ruler and calculator that he never handed me, and you have to teach everything to yourself. I asked if there's anything you need help with he will not help you and say turn to the book. if there's any chance to avoid this professor for any of his classes do it. AVOID IT", + "pos": 0.093, + "neu": 0.807, + "neg": 0.099, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a6" + } + }, + { + "text": "This was the worst professor I ever come across in city college. He doesn't care about his students at all. Have hard online homework without actually teaching the students the materials. He isn't flexible with students either.", + "pos": 0.0, + "neu": 0.771, + "neg": 0.229, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a7" + } + }, + { + "text": "I got my grade because I studied out of class not because of him. His modules never helped and neither did his corny jokes. Class is useless. If you take him, go to tutoring and work on your own. but if you can avoid him.", + "pos": 0.031, + "neu": 0.871, + "neg": 0.098, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a8" + } + }, + { + "text": "One of the worst classes I ever took. He doesnt teach anything. Just posts all the modules online and expect you to know everything. Materials dont help while doing his hard online homework. If you wanna pass this class get ready to teach yourself.", + "pos": 0.05, + "neu": 0.796, + "neg": 0.154, + "_id": { + "$oid": "6711d65ecd60fca157e5e7a9" + } + }, + { + "text": "Lectures arent that helpful, just teach yourself and his tests arent that easy. He also loves online homework. Not that helpful", + "pos": 0.133, + "neu": 0.612, + "neg": 0.255, + "_id": { + "$oid": "6711d65ecd60fca157e5e7aa" + } + }, + { + "text": "Here is the breakdown of how he teaches, he posts up homework with teaching materials online. However, the lectures are just jokes about physics. He just shows you how it works, he won't give you any pointers for the exams during the lectures. He is also not the nicest so I dont know.", + "pos": 0.036, + "neu": 0.917, + "neg": 0.047, + "_id": { + "$oid": "6711d65ecd60fca157e5e7ab" + } + }, + { + "text": "Hedberg is one of the best physics professors I have taken so far. His lectures are always worth going to because he demonstrates so many cool things. He makes you think a lot during the exams. The exams aren't crazy math computation but rather conceptual. Know the concept! Read his slides! Redo HW! Also, go to his office hours for help! He cares.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e7ac" + } + }, + { + "text": "This man is a true educator. CCNY is lucky to have him. He makes the class engaging and really cares about the students. He's a tough love kind of guy. Put in the work and you have nothing to worry about. There is an art to preparing for and taking his tests. He wants you to think, not just solve equations. Can seem disgruntled/irritable in person.", + "pos": 0.227, + "neu": 0.734, + "neg": 0.039, + "_id": { + "$oid": "6711d65ecd60fca157e5e7ad" + } + }, + { + "text": "He's an amazing professor. I hadn't touched a science for a couple years and I still found the class manageable. He makes the class exciting by using in class demo's. Granted this is physics, so the material isn't easy. Just reading the notes he provides and using the homework system (PRACTICE!) can get you the grade you want from this class.", + "pos": 0.154, + "neu": 0.812, + "neg": 0.035, + "_id": { + "$oid": "6711d65ecd60fca157e5e7ae" + } + }, + { + "text": "The in class demos are fantastic and his exams are only testing your understanding of the concepts. Know how to derive all formulas! He curves. The labs can be garbage depending on your Lab instructor. Do the hw, and study concepts you'll do fine. He also has office hours. His website and physics sims are awesome. I would definitely take him again.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d65ecd60fca157e5e7af" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65fcd60fca157e5e7b1" + }, + "professor_name": "Eli Amzallag", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "As long as you do the homework and show up to class, you should be doing fine.Those who give bad ratings are just lazy. Got a full-time job? That's your problem.", + "pos": 0.0, + "neu": 0.763, + "neg": 0.237, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b2" + } + }, + { + "text": "He's a good guy, he really cares about math you can tell. He's big on movies. He teaches well, but you have to put in effort for the class, it's kind of expected with him. His tests are fair and as long as you show up to lecture you'll be good. Definitely feel like I learned a lot from him. At the end everyone's grades got bumped up just a little.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b3" + } + }, + { + "text": "I took this professor this passed summer for linear algebra. The experience wasn't good. Although he had an amazing mind for the subject, his grading style makes his exams extremely difficult to do well on. I'd look for a different professor to take the course with. Do it for your own sanity.", + "pos": 0.1, + "neu": 0.812, + "neg": 0.088, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b4" + } + }, + { + "text": "Pretty good professor, just make sure to go to class. To do well on the exams, just make sure to go to class and take notes, do the homework because the problems often appear on the exams in a similar manner. Professor is not as bad as others make him out to be at all.", + "pos": 0.236, + "neu": 0.723, + "neg": 0.041, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b5" + } + }, + { + "text": "This guy made this class more difficult than it really was, on top of that it felt like he hated the students after the first exam. I'd avoid him. Do it for your own sanity.", + "pos": 0.104, + "neu": 0.686, + "neg": 0.21, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b6" + } + }, + { + "text": "Eli is a great lecturer however his tests are very hard. Even if you study all of the homework, the tests are very different from the homework. The numbers he gives on the tests make it almost impossible to finish on time and the textbook he uses is not great (he uses the lyryx linear algebra textbook.) Take another prof for linear If you can.", + "pos": 0.058, + "neu": 0.872, + "neg": 0.07, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b7" + } + }, + { + "text": "Take him if you can. One of the best math professors at CCNY.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b8" + } + }, + { + "text": "Not worth the stress. If possible, take linear algebra with someone else.", + "pos": 0.167, + "neu": 0.714, + "neg": 0.119, + "_id": { + "$oid": "6711d65fcd60fca157e5e7b9" + } + }, + { + "text": "He's an alright professor, there are some pros but also a lot of cons. He is one of the best math lecturers and would grade the exams out of 110. However, some exam questions were unnecessarily tedious and difficult, which made everyone lose points. He is also not a very lenient grader. Be prepared to work hard & study harder.", + "pos": 0.131, + "neu": 0.72, + "neg": 0.149, + "_id": { + "$oid": "6711d65fcd60fca157e5e7ba" + } + }, + { + "text": "Professor Amzallag is a great professor! Be sure to put in your own work and think about linear algebra critically. Linear algebra is unlike other maths, but the professor is there to connect any gaps you have.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7bb" + } + }, + { + "text": "Eli is a good professor. Exams are really hard but if you do the Homework and practice a lot, you'll be fine!", + "pos": 0.179, + "neu": 0.766, + "neg": 0.054, + "_id": { + "$oid": "6711d65fcd60fca157e5e7bc" + } + }, + { + "text": "Amazing professor, Prof. Amzallag teaches linear algebra with pure grace. Lin alg is not an easy math class but he does break down the theorems and proofs really well. This was a summer course so he did go at a fast pace. Best to prepare before his lectures to get the most out of it. Overall, fair grader, accessible, and hilarious too. Reccomend.", + "pos": 0.254, + "neu": 0.724, + "neg": 0.022, + "_id": { + "$oid": "6711d65fcd60fca157e5e7bd" + } + }, + { + "text": "Eli is not a horrible professor, compare to others. This professor goes to quickly over material. Exams are really hard and questions are confusing. Prepare to do a lot of homework, which will help you to practice. Be prepare for this class, and he would never curve. even if it is 1 point that you need to pass the class.", + "pos": 0.085, + "neu": 0.86, + "neg": 0.055, + "_id": { + "$oid": "6711d65fcd60fca157e5e7be" + } + }, + { + "text": "do the HW", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7bf" + } + }, + { + "text": "When it comes to clear lectures, this professor is better than every other Math professor at ccny however, when it comes to his exams. His grading makes it so that any work you did to solve the questions doesn't matter. The only way to achieve partial credit is if your answer is somewhat right. If it's completely wrong no credit even if work shown.", + "pos": 0.151, + "neu": 0.756, + "neg": 0.093, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c0" + } + }, + { + "text": "Avoid him, he goes through material way too quickly. His explanations are not very helpful.", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c1" + } + }, + { + "text": "Explains concepts carefully and thoroughly and makes sure his students understand them.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c2" + } + }, + { + "text": "Mr.Amzallag teaches very quickly, we went through 3 lessons in 1 class period. Isn't lying about how you need study material when ever you are free. He is an old head, has those old jokes. I had him during late evening/early night time, he had energy to teach the class successfully.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c3" + } + }, + { + "text": "Rush through the topics & expect you to remember everything from high school. Also be ready spend all your time in just that class.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c4" + } + }, + { + "text": "The disconnect is crazy. He believes that because HE can complete his exam in 30 minutes with ease, so can the students. Gives too much homework, moves really quick in class. You can get an answer right on an exam but if he can't read or understand your work its a 0.If he can't make class, youtube vids with 3+ hrs of content(class is 1:15 hours).", + "pos": 0.026, + "neu": 0.949, + "neg": 0.025, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d65fcd60fca157e5e7c7" + }, + "professor_name": "Vivien Tartter", + "rating": 2.9, + "department": "Psychology department", + "comments": [ + { + "text": "Vivien Tartter is the most disrespectful person towards her students. She is constantly changing her expectations even changing grades after they have already been graded. She speaks in a very condescending tone and belittles the students. She seems to purposely choose who to fail so to keep her reputation of \"being tough.\" FIRE VIVIENE TARTTER", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c8" + } + }, + { + "text": "I choose to take her despite all of the negative ratings. Worst decision of my life. Listen to your fellow peers! Tartter is very mean spirited. She seems to enjoy watching her entire class squirm and stress over their grade all semester long. She also changes what she expects from you quite often. Its like having a baby as a professor", + "pos": 0.115, + "neu": 0.739, + "neg": 0.146, + "_id": { + "$oid": "6711d65fcd60fca157e5e7c9" + } + }, + { + "text": "This professor has poor communication when talking to a person. She is very nasty in her disposition and has no empathetic in her mood. I have no idea why she teaching psychology.", + "pos": 0.0, + "neu": 0.71, + "neg": 0.29, + "_id": { + "$oid": "6711d65fcd60fca157e5e7ca" + } + }, + { + "text": "Is not clear on the guidelines for the proposal paper. Constantly makes corrections to a paper that were already corrected previously. She teaches the class however she wants and you don't even learn anything. I'm surprised they are letting her teach still. She doesn't use a textbook its all based on her opinion. Avoid her class at all costs.", + "pos": 0.031, + "neu": 0.899, + "neg": 0.07, + "_id": { + "$oid": "6711d65fcd60fca157e5e7cb" + } + }, + { + "text": "Dr Tartter is awesome. I got what I felt was an easy A, but the majority of the class did not do as well. In order to succeed in her class, you more or less have to be able to converse with her on her level. That means you will be reading literally non-stop - often more than she assigns so as to understand background.", + "pos": 0.122, + "neu": 0.847, + "neg": 0.031, + "_id": { + "$oid": "6711d65fcd60fca157e5e7cc" + } + }, + { + "text": "No specific guidelines in the development of the proposal, the methods/results sections (you should already know that);lack of specific criteria for grading your paper (endless corrections,even if something has already been corrected);yelling at students (all are dummies);some must fail this class to prove that she is really tough/not for everyone!", + "pos": 0.0, + "neu": 0.889, + "neg": 0.111, + "_id": { + "$oid": "6711d65fcd60fca157e5e7cd" + } + }, + { + "text": "Dr. Tartter's is an extremely intelligent professor with a talent for arguing. If you are not ready to take your academic career seriously and unwilling to accept constructive criticism, then she is not the professor for you. However, if you are up for the challenge & willing to develop your skills in preparation for a PhD - she's your best bet.", + "pos": 0.187, + "neu": 0.685, + "neg": 0.128, + "_id": { + "$oid": "6711d65fcd60fca157e5e7ce" + } + }, + { + "text": "I wish theyd evaluate professors before letting them teach. Dr. Tartter is constantly changing her mind; One cant even refer to a textbook because it doesnt exist. She teaches the class however she pleases, throwing terms left and right. Speaks of validity and reliability but shes definitely not a standard for ANYTHING. She is sickening.", + "pos": 0.115, + "neu": 0.811, + "neg": 0.073, + "_id": { + "$oid": "6711d65fcd60fca157e5e7cf" + } + }, + { + "text": "I am surprised they are still letting her hold classes. What she does is not teaching. She uses a textbook just to say she does but really her textbook is the Vivian Tartters Random Opinions on Everything text. And the information changes constantly. Beware", + "pos": 0.033, + "neu": 0.967, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d0" + } + }, + { + "text": "Though It is clear Tartter knows quite a bit about Cognition, she should not be teaching it. Her lectures are all over the place, lack any effort, and it's really just her going off about her opinions on a topic. Since there are no real guidelines given, she can give you any grade, without any explanation needed. Save your GPA, avoid her class.", + "pos": 0.082, + "neu": 0.823, + "neg": 0.095, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d1" + } + }, + { + "text": "Prof. Tartter is the best professor I've ever had. She makes you work hard, but she's always available to help via email, and will work with you through every step of your papers. She clearly cares a lot about her students and wants them to do well; you just have to put in the work, and show that you care too!", + "pos": 0.275, + "neu": 0.709, + "neg": 0.016, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d2" + } + }, + { + "text": "She's as tough as it gets, but she truly cares. If you can't keep up with her, you're simply not fit for a graduate program. When I think of her, I think of the term tough love: she made me a better student and almost killed me in the process. If you're over sensitive, find another professor to babysit you. She doesn't play that.", + "pos": 0.202, + "neu": 0.636, + "neg": 0.162, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d3" + } + }, + { + "text": "Work hard, meet with her as often as possible, and talk about your work in class and it will not be as bad i promise. She values hard work and those who follow her directions. She likes to talk to her students about her life which makes everything even more interesting. Dont be sensitive towards her remarks.", + "pos": 0.205, + "neu": 0.753, + "neg": 0.042, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d4" + } + }, + { + "text": "so tartter was an okay teacher. she gave me an A- but i dont think i worked as hard as everyone else lmao she is a nice lady i guess? to me at least. i emailed her a lot and stuff especially late at night and she was nice and emailed back quickly she said i could email her whenever i wanted so that was cool. cheers to the semester being over lmao", + "pos": 0.289, + "neu": 0.694, + "neg": 0.017, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d5" + } + }, + { + "text": "She needs to get off her high horse. She chooses favorites and does not acknowledge the hard work and effort from her \"ordinary\" students.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d6" + } + }, + { + "text": "If you want to take a class with her, make sure you have a laugh track handy. It will be useful when she pauses for laughter.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d7" + } + }, + { + "text": "I took this class because I thought it would be interesting. NOPE. Vivien Tartter SUCKS THE LIFE out of everything about this class. She's always trying to be funny and laughing at her own remarks while checking to see if anyone else is laughing. The book she picked for the first half of the class was horrible and not helpful at all.", + "pos": 0.194, + "neu": 0.729, + "neg": 0.077, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d8" + } + }, + { + "text": "This class isnt even required for my major! She makes things way too hard and even threw a tantrum one time by stomping her feet when a student tried to tell her that its ridiculous how hard she's making this class", + "pos": 0.0, + "neu": 0.815, + "neg": 0.185, + "_id": { + "$oid": "6711d65fcd60fca157e5e7d9" + } + }, + { + "text": "HORRIBLE Teacher. Can't understand that not everyone understands things first go like her! Uses useless textbooks that do not help at ALL!!!", + "pos": 0.081, + "neu": 0.581, + "neg": 0.338, + "_id": { + "$oid": "6711d65fcd60fca157e5e7da" + } + }, + { + "text": "Vivien Tartter is by far one of the worst professors to take. She is definitely brilliant, but has absolutely no idea how to teach undergraduates, I assume this is because she leads the masters program and cannot separate these two levels of difficult from each other. Stay away from this class if you value your GPA, 2/3 students will drop at LEAST.", + "pos": 0.082, + "neu": 0.757, + "neg": 0.161, + "_id": { + "$oid": "6711d65fcd60fca157e5e7db" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d660cd60fca157e5e7dd" + }, + "professor_name": "Truong-Thao Nguyen", + "rating": 3.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Get an epermit for ee 306 at CSI or stony brook if you can. This class and ee 20500 has no mercy on you", + "pos": 0.0, + "neu": 0.916, + "neg": 0.084, + "_id": { + "$oid": "6711d660cd60fca157e5e7de" + } + }, + { + "text": "He is very difficult professor and tough grader who gives hard exams. If you mess up in one little thing, you're in massive trouble. I will never take him again. It would be better if it were online because I heard he gives multiple choice exams that are convenient, but as long as you get tutoring, you should have nothing to worry as I got a D.", + "pos": 0.069, + "neu": 0.822, + "neg": 0.109, + "_id": { + "$oid": "6711d660cd60fca157e5e7df" + } + }, + { + "text": "Very easy Mickey Mouse class.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d660cd60fca157e5e7e0" + } + }, + { + "text": "EE306 isn't easy. You have to study hard to pass the class. Final grade is based on ranking. Pr. Thao is knowledgeable and been teaching this class for many years that he tends to think students are experts. Study hard and rely on what's been taught in class, your grade is based on what you know, don't rely on Chegg. Do old exams as much as you can", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d660cd60fca157e5e7e1" + } + }, + { + "text": "DSP isn't for everyone. Its a math heavy class, and u gotta understand the understanding. Nguyen is an S tier prof, the best in the EE department. Lectures are exciting and engaging. Exams are based on his lecture notes. \nThis will be ur hardest undergrad course. You should account 306 as 2 hard classes. Attend tutoring and study erryday. Godspeed", + "pos": 0.146, + "neu": 0.833, + "neg": 0.021, + "_id": { + "$oid": "6711d660cd60fca157e5e7e2" + } + }, + { + "text": "Horrible Professor, exams are very tough and nothing like the homework that is assigned. Tends to give very minimal partial, sometimes none on the exams if you don't follow his methods. Just try to do around average to pass this class.", + "pos": 0.0, + "neu": 0.837, + "neg": 0.163, + "_id": { + "$oid": "6711d660cd60fca157e5e7e3" + } + }, + { + "text": "ABSOLUTELY HORRIBLE, THIS IS THE THIRD TIME TAKING THIS CLASS AND I CANT DO THIS ANYMORE! I AM GOING TO DROP AND TAKE THIS CLASS AT STONY BROOK INSTEAD!!!!!", + "pos": 0.0, + "neu": 0.793, + "neg": 0.207, + "_id": { + "$oid": "6711d660cd60fca157e5e7e4" + } + }, + { + "text": "Horrible Professor, exams are nothing like the homework. Gives minimal partial, sometimes none. Tends to fail alot of people since they don't follow his methods on exams. Just try to score around average, to pass this class.", + "pos": 0.067, + "neu": 0.801, + "neg": 0.132, + "_id": { + "$oid": "6711d660cd60fca157e5e7e5" + } + }, + { + "text": "I have already failed twice and I just can't do this anymore ..... its my last chance to pass ..... i need to pass or else all my hard work toward this degree was all for nothing and I came to this country for no reason. Nguyen why can't you have a heart and curve us. I cannot believe it, he gives out zero even if all the work is correct!!!", + "pos": 0.078, + "neu": 0.825, + "neg": 0.097, + "_id": { + "$oid": "6711d660cd60fca157e5e7e6" + } + }, + { + "text": "Great professor. Unfortunately, the idiots at CUNY are not capable, they are not bad people but incapable of taking this class.", + "pos": 0.165, + "neu": 0.589, + "neg": 0.246, + "_id": { + "$oid": "6711d660cd60fca157e5e7e7" + } + }, + { + "text": "We need more Professor like Thao because his lectures are awesome, but his exam is very hard. This course is all about understanding, if you don't understand you can do nothing and straight fail. Some students didn't like, I suggested if you don't like his class change the major. You don't belong here.", + "pos": 0.129, + "neu": 0.723, + "neg": 0.147, + "_id": { + "$oid": "6711d660cd60fca157e5e7e8" + } + }, + { + "text": "It's a\"You get what you get\" type of class. Did he say we can bring laptops and cheat sheets for this class? Yes But did he say that bringing laptops and cheatsheets is useless and that we should kill ourselves cause it would not work for the exam? also Yes. No matter if you cheat or not you will not be able to solve a question right. Crack class", + "pos": 0.088, + "neu": 0.707, + "neg": 0.205, + "_id": { + "$oid": "6711d660cd60fca157e5e7e9" + } + }, + { + "text": "I tried talking to him after class to negotiate as its my last year and I need to pass this class to graduate and was worried about my results from the second. I told him he made it too hard and if he could curve to help us all out in the class. He just laughed and told me, \"You think you got shot.\" ABSOLUTELY UNBELIEVABLE!!!!! never again", + "pos": 0.135, + "neu": 0.818, + "neg": 0.047, + "_id": { + "$oid": "6711d660cd60fca157e5e7ea" + } + }, + { + "text": "Nguyen is the french professor with an LTI g*n and wont hesitate to sh**t you if you get the wrong answer. I survived his sh**tings because I became the master of pattern reorganization and because I tried to study for this class instead of wasting my time to make it online . Anyways, study a lot to reduce his sh**ting.", + "pos": 0.076, + "neu": 0.837, + "neg": 0.087, + "_id": { + "$oid": "6711d660cd60fca157e5e7eb" + } + }, + { + "text": "Ignore the review below! I change my mind. He is an amazing professor with amazing lectures. Instead of studying, I used my time to change the class to online which is why I got an F!!! I wish I studied for this class instead of trying to make everything online!!! How sad!", + "pos": 0.179, + "neu": 0.734, + "neg": 0.087, + "_id": { + "$oid": "6711d660cd60fca157e5e7ec" + } + }, + { + "text": "This professor is absolutely horrible! On exams, he takes points off even if the approach, setup, calculation, and solution is accurate, everything is wrong. This professor ruined my semester, I wish it was online. I will never take this professor again. I rather take another systems/track elective as a Computer Engineer than facing Ngyuen.", + "pos": 0.078, + "neu": 0.762, + "neg": 0.16, + "_id": { + "$oid": "6711d660cd60fca157e5e7ed" + } + }, + { + "text": "Easy A", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d660cd60fca157e5e7ee" + } + }, + { + "text": "Professor Nguyen is a fantastic professor, his curves are unique, and he is caring. He knows what he is doing when it comes to teaching. The class is theoretical and is all about Fourier and DFT.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d660cd60fca157e5e7ef" + } + }, + { + "text": "Exam 1 Average: 6/28, Exam 2 Average: 7.1/30, Final Exam average: 7/42. Terrible lecture, terrible teacher, terrible curve. Exams are +2 for right answers, -1 for wrong answers, 0 for blank answers. Avoid if possible. Final grade: C+", + "pos": 0.0, + "neu": 0.693, + "neg": 0.307, + "_id": { + "$oid": "6711d660cd60fca157e5e7f0" + } + }, + { + "text": "Get ready to suffer. Get ready for your GPA to go down. Get ready to be happy to get a 0 in this class. No matter how much I studied, it was never enough. He calls easy methods in math for uneducated people like huh? Lol. Be strong, you can do it. And try not to cry.", + "pos": 0.333, + "neu": 0.607, + "neg": 0.06, + "_id": { + "$oid": "6711d660cd60fca157e5e7f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d660cd60fca157e5e7f3" + }, + "professor_name": "Mark Biscoe", + "rating": 3, + "department": "Chemistry department", + "comments": [ + { + "text": "So sorry to anyone who has no choice but to take him for their major. You cannot focus on any course other than this. Even then, you're lucky if you get a C+", + "pos": 0.101, + "neu": 0.82, + "neg": 0.079, + "_id": { + "$oid": "6711d660cd60fca157e5e7f4" + } + }, + { + "text": "His lectures had little to no resemblance to the exams he gave us. His highest curve was 8 points added to the exam- even though the class averages were always 40-50%. That means more than half the class was always failing the exams and that is an issue because exams are the ONLY thing making up your overall grade.", + "pos": 0.0, + "neu": 0.916, + "neg": 0.084, + "_id": { + "$oid": "6711d660cd60fca157e5e7f5" + } + }, + { + "text": "Very knowledgeable of the material but can sometimes ramble for too long during lectures. If you do all of the assigned textbook problems and look over his past exams, you should be prepared for his exams which he still ends up curving by at least 8 points. If you do really well on the final, he can weigh it more heavily to help boost your grade.", + "pos": 0.167, + "neu": 0.787, + "neg": 0.046, + "_id": { + "$oid": "6711d660cd60fca157e5e7f6" + } + }, + { + "text": "One of the worst professors I have ever taken. His lectures have nothing to do with the exams and more than half the students withdrew after the second exam because they were failing horribly. The class averages never went over 60.", + "pos": 0.0, + "neu": 0.779, + "neg": 0.221, + "_id": { + "$oid": "6711d660cd60fca157e5e7f7" + } + }, + { + "text": "I highly regret taking this professor. He has 4 exams --he drops the lowest-- which is your entire grade and he grades them so harshly. His lectures have nothing to do with his exams and more than half of his class are always failing.", + "pos": 0.0, + "neu": 0.82, + "neg": 0.18, + "_id": { + "$oid": "6711d660cd60fca157e5e7f8" + } + }, + { + "text": "He has deleted most of my ratings because he doesn't want other students to know how horrible of a professor he is. Classes have no structure and exams are extremely difficult. Apparently, everyone taking this class must have superhuman memory. Please check with your doctor before taking this class. Worst professor ever. Good luck to you all.", + "pos": 0.115, + "neu": 0.69, + "neg": 0.195, + "_id": { + "$oid": "6711d660cd60fca157e5e7f9" + } + }, + { + "text": "It felt very confusing at times during lecture due to off topic tangents, there was a lack of structure in the lectures. The lectures would also improve through utilizing more practice questions since the lectures were too theoretical. On some topics he was very succesful at conveying the main concepts such as explaining sterochemistry.", + "pos": 0.05, + "neu": 0.873, + "neg": 0.077, + "_id": { + "$oid": "6711d660cd60fca157e5e7fa" + } + }, + { + "text": "A must take professor. He teaches concepts very well, maybe he wont spend enough time doing problems with you as he expects you to do them on your own and show up to office hours for questions. He will give you the understanding you need to do well on his course. PLEASE do the TEXTBOOK problems and and his posted exams if you want to do well.", + "pos": 0.143, + "neu": 0.786, + "neg": 0.071, + "_id": { + "$oid": "6711d660cd60fca157e5e7fb" + } + }, + { + "text": "Man always babbles about his famous book writing colleagues. I'm here to learn not listen to unrelated stories about your life. And why are the tests so much harder than the lecture like you're on a mission to bring people's average down.", + "pos": 0.057, + "neu": 0.943, + "neg": 0.0, + "_id": { + "$oid": "6711d660cd60fca157e5e7fc" + } + }, + { + "text": "He is really nice and his lectures are clear. Just do the practice problems and review his old exams (which he posts on blackboard). He is available before and after lecture. From experience, if you have to choose btw Boson and Biscoe I would choose Biscoe because his exams are better and you will have a good chance of doing well.", + "pos": 0.216, + "neu": 0.747, + "neg": 0.037, + "_id": { + "$oid": "6711d660cd60fca157e5e7fd" + } + }, + { + "text": "He is a great and nice prof who gives very good notes. He makes you understand organic chemistry instead of memorizing. He drops 1 of the 3 lecture exams with the final, each counts 1/3 of your grade. His exams are hard, but he curves the exam average to 73 or 75 for every exam. He assigns a lot of HW, it is better if you have the solution manual.", + "pos": 0.17, + "neu": 0.815, + "neg": 0.015, + "_id": { + "$oid": "6711d660cd60fca157e5e7fe" + } + }, + { + "text": "Appreciate his lectures very much. Always ready for help after class and in office hours. Exam questions are very fair (mechanism questions might be a little bit tricky sometimes). He is definitely the best chemistry professor in CCNY. I really hope I could take him for all my chemistry courses.", + "pos": 0.325, + "neu": 0.654, + "neg": 0.021, + "_id": { + "$oid": "6711d660cd60fca157e5e7ff" + } + }, + { + "text": "The best chem prof in ccny. His lectures were amazing & wrote his own notes. Definitely read ahead of class and pay attention cause he makes orgo fun and orgo 2 better than orgo1. Do the practice probs, past exams and ask qs. His grading is very fair and HE REALLY CARES ABOUT HIS STUDENTS. He is a sweetheart and the nicest prof ever who can teach.", + "pos": 0.352, + "neu": 0.632, + "neg": 0.016, + "_id": { + "$oid": "6711d660cd60fca157e5e800" + } + }, + { + "text": "The best chemistry professor ever! No surprises on exams. Exam problems come from HWs and variations of past exam questions(which he provides to aid studying). Lectures are crystal clear. He doesnt assume we are all geniuses and goes slow with the material. I learned so much in this course. I would recommend to everyone.", + "pos": 0.152, + "neu": 0.778, + "neg": 0.069, + "_id": { + "$oid": "6711d660cd60fca157e5e801" + } + }, + { + "text": "Enjoyable course. You have to work hard obviously, but his lectures are extremely helpful and thorough.", + "pos": 0.3, + "neu": 0.641, + "neg": 0.059, + "_id": { + "$oid": "6711d660cd60fca157e5e802" + } + }, + { + "text": "Amazing professor, arguably one of the best. He takes time to really teach you the basics of orgo that will make sense throughout the entire course. Take good notes and review his notes afterward. He posts numerous past exams to practice, has review sessions, and takes problems from the homework on his exam. Take him, and you'll really learn.", + "pos": 0.157, + "neu": 0.776, + "neg": 0.068, + "_id": { + "$oid": "6711d660cd60fca157e5e803" + } + }, + { + "text": "He is amazing! One of the best chemistry professors. Really cares about students. His exams are very similar to practice exams he gives. If you go to his office hours, he will help you until you understand the concept!", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d660cd60fca157e5e804" + } + }, + { + "text": "He needs to teach Org 2!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d660cd60fca157e5e805" + } + }, + { + "text": "He needs to stop teaching. Hated this class. Tests are harder than cw.", + "pos": 0.0, + "neu": 0.632, + "neg": 0.368, + "_id": { + "$oid": "6711d660cd60fca157e5e806" + } + }, + { + "text": "Orgo is a tough class for most people. Dr. Biscoe knows his stuff. You'll learn some organic chemistry if you take his class.", + "pos": 0.0, + "neu": 0.936, + "neg": 0.064, + "_id": { + "$oid": "6711d660cd60fca157e5e807" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d661cd60fca157e5e809" + }, + "professor_name": "Michio Kaku", + "rating": 4.6, + "department": "Physics department", + "comments": [ + { + "text": "I am not sure how you can attend CCNY and not take Professor Michio Kaku. He is inspirational. Grading is clear and based upon course material, and his pre-test prep classes allows you to focus on enjoying his class. He is also available to answer all questions during office hours, and participating in that Q&A is absolutely amazing.", + "pos": 0.196, + "neu": 0.775, + "neg": 0.029, + "_id": { + "$oid": "6711d661cd60fca157e5e80a" + } + }, + { + "text": "Dont mind the C i got. Grading is clear. You must pass the midterm and final which are the only two assignments the whole semester. The class was overall interesting and he lets you ask questions. Read the slideshows he uploads. He isnt that accessible outside class. overall good class good prof. a true ccny gem. take him.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e80b" + } + }, + { + "text": "2 Exams (1 Midterm and Final which are both pretty easy). Pretty easy class overall. I took this class for the fun of it, but it was a good GPA booster for me.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e80c" + } + }, + { + "text": "Kaku taught us the first day, & gave an amazing lecture. HOWEVER,a sub takes over after that. Still an easy A class. Prof. Kiefer curved a lot, and allows the 1 review sheet on exam. Except 1/2 the questions are not based on review sheet,they're from textbook. So you still need to study,I strongly suggest showing up- it's interesting material.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e80d" + } + }, + { + "text": "Terrible professor. He thinks he is the smartest person in the world and everyone else is dump. He brags too much about himself. Not that smart as he thinks he is. There are many talented scientists exist in the world. He is not even near to them. what a useless professor. Not sure why CCNY still keeping him as a professor.", + "pos": 0.099, + "neu": 0.73, + "neg": 0.172, + "_id": { + "$oid": "6711d661cd60fca157e5e80e" + } + }, + { + "text": "Single handedly the greatest professor i have ever taken!", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e80f" + } + }, + { + "text": "Awesome Professor. My GPA was a 0.66 prior to his class. Pulled an easy A out of his class with note-taking abilities. His classes may show that they're about 2 hours long, but really: he just teaches for a good half hour or so then plays a movie for the next. +++ Recommend!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e810" + } + }, + { + "text": "Take him, just copy the notes and read the review sheet before each exam. he is really funny and entertaining. It is an easy A class with him", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e811" + } + }, + { + "text": "Easy class, just study the notes and you will do fine. Most of the time he is absent because he partcipitates in shows", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e812" + } + }, + { + "text": "An easy A, study the review sheet he gave on blackboard and there is no way you can fail. He is absent a lot because he is really famous and goes on shows, documentaries, etc but when he is there, he makes things very enjoyable and is funny. take him if you have a chance, a really great GPA booster", + "pos": 0.247, + "neu": 0.702, + "neg": 0.051, + "_id": { + "$oid": "6711d661cd60fca157e5e813" + } + }, + { + "text": "Do not buy the textbook! He's an interesting professor to learn from. You WILL learn a lot during this course! make sure you take as much notes as possible and use his outline. If you ONLY read the outline you will be surprised when you see MANY questions outside of it. It is essential to take good notes! For the most part it was an easy class :]", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e814" + } + }, + { + "text": "I bought his book and brought it to class and he refused to autograph it. This made me sad. Other than that, his lectures are awesome! The guy is super pompous but he has a good reason. super smart and very engaging. id hit it.", + "pos": 0.347, + "neu": 0.595, + "neg": 0.059, + "_id": { + "$oid": "6711d661cd60fca157e5e815" + } + }, + { + "text": "HE IS HILARIOUS! always has a funny story! easy A!! study his review sheet and you will get an A! he curves the grade too! an A is like an 80 and above and a B is a 70 and up! use this class to boost ur gpa!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e816" + } + }, + { + "text": "Amazing experience. Very interesting material. A midterm and final is all for the semester--study his outlines and u'll get an A.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e817" + } + }, + { + "text": "As much as he is an prominent physicist he is also very talented as a teacher. Every class was worthwile and very informative;the best of all professor Kaku is guiding you through every lecture with amazing amount of enthusiasm. I feel at least content after taking his class.Kaku is apsolutely irreplaceable!", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e818" + } + }, + { + "text": "Best teacher i ever had, funny and its and easy A,", + "pos": 0.556, + "neu": 0.444, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e819" + } + }, + { + "text": "Fun. He's a performer. All his material -- whether serious stuff or jokes -- is well worn, but amusing. Each class session is one hour of his routine then an hour from one or another TV documentary (often featuring him). Study the outlines he provides prior to exams and you should get an A. Don't bother with the text.", + "pos": 0.169, + "neu": 0.789, + "neg": 0.042, + "_id": { + "$oid": "6711d661cd60fca157e5e81a" + } + }, + { + "text": "It is not common for very smart people to explain things so clearly. Awsome Prof.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e81b" + } + }, + { + "text": "He should be a model for all Professors. I have just finished another course with 32 quizzes, 3 papers, 3 tests, mandatory attendance and textbook, and have not learned close to as much as I've learned at Prof. Kaku's class with its two exams. It's not easy, he makes it easy. He will change your world.", + "pos": 0.07, + "neu": 0.889, + "neg": 0.04, + "_id": { + "$oid": "6711d661cd60fca157e5e81c" + } + }, + { + "text": "I recommended an art history book to him, so he laughed in my face and ignored me. I mentioned it it b/c even though the book doesn't try to invent new answers to Big Questions it does take a look the history of various art movements and links them up with scientific discoveries and the intuitions of brilliant minds. I guess he's beyond that.", + "pos": 0.125, + "neu": 0.843, + "neg": 0.032, + "_id": { + "$oid": "6711d661cd60fca157e5e81d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d661cd60fca157e5e81f" + }, + "professor_name": "Shelley Ring", + "rating": 4.2, + "department": "Mathematics department", + "comments": [ + { + "text": "Gets straight to the point but goes over the course fast", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e820" + } + }, + { + "text": "If math isnt your natural skill, please reconsider ever takin this prof. The class is so fast paced she rarely, if ever helps answer the students questions. Is not the most caring of profs; Id consider her ruthless. Record the lecture because readin her handwritin is impossible. Be prepared to be lost, overwhelmed and ready to give up but dont!", + "pos": 0.092, + "neu": 0.8, + "neg": 0.108, + "_id": { + "$oid": "6711d661cd60fca157e5e821" + } + }, + { + "text": "She is the best!!!! Her lecture is very clear and gives quiz once a week, she will tell you when you will have a quiz. If you don't understand you can always go to her office hour. Her lecture moves fast but it is very organized.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e822" + } + }, + { + "text": "The best professor for math 201 and 202 ever i took both with her, got A at the end, all you need to do is do her hw. and you will ace the class", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e823" + } + }, + { + "text": "5 tests in total, the final is 40% of your final grade one quiz per weeks(2 questions in total) participation doesn't matter she never check homework", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d661cd60fca157e5e824" + } + }, + { + "text": "Ignore other awful comments! She is awesome! To get A on her class, you have have have to work for it. As long as you did your part, you will understand her teaching. She teaches well", + "pos": 0.153, + "neu": 0.723, + "neg": 0.124, + "_id": { + "$oid": "6711d661cd60fca157e5e825" + } + }, + { + "text": "ccny is so lucky to have her bc shes such an amazing person. takes her time to make sure her class understands the material and does evrything she can to give the most possible points to students on exams. very easy grader and her exams are exactly like prctise exams with diff #s. wish she was teaching 202. take her for 201 and you wont regret it", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e826" + } + }, + { + "text": "the best math prof i have ever had. She is super clear, very caring and is willing to hear u out. took her in the summer so for obvious reasons was very fast paced. if u arnt willing to devote a large chunk of ur summer to this class then dont take it at all even with a diff prof, but if ur willing to sacrifice and do her work then a guarenteed A", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e827" + } + }, + { + "text": "If math is not easy for you DON'T TAKE HER!!! It's elementary math but she will COMPLICATE it & come up with difficult, mixed ways of doing it & want you to do it her way. Strongly suggest you take a DIFFERENT prof or get a tutor b/c she's horrible. She has a PhD and wants you to work like a grad student and bring you suffering. You were warned!!", + "pos": 0.084, + "neu": 0.712, + "neg": 0.203, + "_id": { + "$oid": "6711d661cd60fca157e5e828" + } + }, + { + "text": "I'm horrible at Math. So her teaching style didn't work for me. She puts problems on the board expects us to solve and then move on the next thing. I can't learn anything like that. This class is for future teachers and if we don't understand it, how can we teach children this math?", + "pos": 0.03, + "neu": 0.832, + "neg": 0.138, + "_id": { + "$oid": "6711d661cd60fca157e5e829" + } + }, + { + "text": "The best calc professor I've had. Very straight forward about her expectations and realistic about the level of knowledge and capabilities of her students. She reminds you if the topic is heavy in calc 1 or trig knowledge before diving into it and will sometimes remind you herself to make sure. Very thorough and experienced.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d661cd60fca157e5e82a" + } + }, + { + "text": "Excellent professor great person and is really caring . Good at explaining excellent sense of humor and over all very sweet . I wish i could take her for calc 2 sadly i couldnt", + "pos": 0.486, + "neu": 0.463, + "neg": 0.052, + "_id": { + "$oid": "6711d661cd60fca157e5e82b" + } + }, + { + "text": "Explains the Math concepts very well. If you follow her guidelines and do as she says you should do well. She's a hypie but she does not grade like one! Just study well and pay attention in class and you will do good.", + "pos": 0.196, + "neu": 0.721, + "neg": 0.083, + "_id": { + "$oid": "6711d661cd60fca157e5e82c" + } + }, + { + "text": "Listen if you are not so hot in math this is honestly not the class for you. She has a certain way of teaching. She comes in throw math problems on the board, does not show any formula's, does not use rules and expect you to know what's going on. This semester her class went from 40 people to 17.... you be the judge.", + "pos": 0.074, + "neu": 0.887, + "neg": 0.039, + "_id": { + "$oid": "6711d661cd60fca157e5e82d" + } + }, + { + "text": "She's really cool and understands that many students have had a weak background in math, but the way she teaches is terrible. She does problems on the board from the packet and moves on to the next. She once said half of you are confused and the other half are bored so I must be doing something right and I was like huh ??? how ???", + "pos": 0.063, + "neu": 0.735, + "neg": 0.202, + "_id": { + "$oid": "6711d661cd60fca157e5e82e" + } + }, + { + "text": "I hate math. So I just want to learn the formula apply it and forget all about it. If this is you, she won't let you. She wants you to understand WHY YOU ARE DOING IT, WHAT IT MEANS, WHY IT MATTERS AND HOW IT APPLIES TO THE REAL WORLD. Her style makes passing difficult because you must use it. Advice: find an online source and STUDY STUDY STUDY.", + "pos": 0.045, + "neu": 0.848, + "neg": 0.107, + "_id": { + "$oid": "6711d661cd60fca157e5e82f" + } + }, + { + "text": "You can tell she is very smart and very kind. She definitely cares about her students; however, math is my weakest subject and her teaching style was not for me. She goes word for word along with the book and only does problems from the text. I don't learn math well this way. I have the book-please show me something different. Tests are difficult", + "pos": 0.16, + "neu": 0.709, + "neg": 0.131, + "_id": { + "$oid": "6711d661cd60fca157e5e830" + } + }, + { + "text": "Took her in the summer, very intense course. If you're not willing to devote time into the class don't take her. For the summer she only gave three exams and one final. Quizzes every Monday and Wednesday unless stated otherwise. She drops two of them. Do her practice exams, class work, and hw and you'll be fine. Easy grader. Come on time.", + "pos": 0.095, + "neu": 0.874, + "neg": 0.031, + "_id": { + "$oid": "6711d661cd60fca157e5e831" + } + }, + { + "text": "She loves math, like insanely loves math. She assigns a lot of practice questions that are optional but mandatory if you want to pass. She gives practice tests before unit tests but do not study those alone because she might change problems, she moves quickly having tests a week apart. No curves but may bump finals to 50% if you need it to pass", + "pos": 0.155, + "neu": 0.759, + "neg": 0.086, + "_id": { + "$oid": "6711d661cd60fca157e5e832" + } + }, + { + "text": "Although she's a hippie, she is an awesome professor. The course covers a lot of topics (which isn't her fault) and she manages to give a lot of time to each of them. There weren't too many exams, they weren't outrageously hard, and she dropped the lowest in the end. YOU MUST ATTEND CLASS BECAUSE OF THE FAST PACE. Missing one class one week.", + "pos": 0.132, + "neu": 0.802, + "neg": 0.066, + "_id": { + "$oid": "6711d661cd60fca157e5e833" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d662cd60fca157e5e835" + }, + "professor_name": "Lorelle Pickett", + "rating": 3.4, + "department": "Psychology department", + "comments": [ + { + "text": "Good at lectures, biased with grading. Final paper worth most of the grade and doesn't give helpful feedback. Emailing her usually doesn't answer your question. Pop quizzes and absolutely no makeup work. Strict deadlines and sometimes makes things due in the middle of the day and doesn't care if you have commitments to other classes, work, etc.", + "pos": 0.096, + "neu": 0.759, + "neg": 0.145, + "_id": { + "$oid": "6711d662cd60fca157e5e836" + } + }, + { + "text": "Professor Pickett puts so much emphasis on what not to do in your final paper and prepares you from the first day for the final proposal and always asks if everyone understands or If there are any questions. She gives multiple examples of what to do and what not to do. Hard course but a great professor!", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e837" + } + }, + { + "text": "I had Professor Pickett over the winter and she was VERY clear about her expectations. She made sure that students understood every detail of her assignments. She specifically told people what to do and what not to do. A lot of the comments below seem to be from people who either didn't listen or had bad TAs. She is really nice when teaching alone.", + "pos": 0.123, + "neu": 0.803, + "neg": 0.075, + "_id": { + "$oid": "6711d662cd60fca157e5e838" + } + }, + { + "text": "A total of 10-11 quizzes, 4 can be dropped. There are 3 papers that are significant; Literature review, lab report, and mock research proposal (TA grades these). There are a total of 4-6 participation assignments (Prof grades these), one can be dropped and a final exam. NO LATE WORK! She will NOT accept it!!!!", + "pos": 0.03, + "neu": 0.821, + "neg": 0.149, + "_id": { + "$oid": "6711d662cd60fca157e5e839" + } + }, + { + "text": "She will give pop quizzes, give feedback that is not helpful, or no feedback. Professor Picket has only fans and has the time to post content but doesn't have time to grade things on time. She forgot to upload the final. She won't care if you have a relative pass away, she won't give you an extension. Extremely rude and doesn't care for students", + "pos": 0.02, + "neu": 0.803, + "neg": 0.177, + "_id": { + "$oid": "6711d662cd60fca157e5e83a" + } + }, + { + "text": "Unprofessional & a horrible professor, has an onlyfans account & explicit photos on her twitter, which the department is aware & won't fire her. Some of the students at CCNY have brought her subscription to onlyfans.Doesn't care for students. FORGOT to upload final, everyone emailed her & yet she was ACTIVE on only fans but didn't respond to emails", + "pos": 0.058, + "neu": 0.844, + "neg": 0.097, + "_id": { + "$oid": "6711d662cd60fca157e5e83b" + } + }, + { + "text": "All these comments didn't pass the vibe check. Prof picket is super nice & understanding. She is very clear with everything that you will need to do throughout the semester. This is a 4 credits course which isn't meant to be easy. You must put in the time and effort to learn the materials and prepare for the final. I absolutely enjoyed this course.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e83c" + } + }, + { + "text": "This professor speaks the wholeee 3 hours of lecture and has horrible slides. Her lectures help with little to nothing. You have to get a good grade on your final paper, if not you'll fail. I don't recommend.", + "pos": 0.18, + "neu": 0.701, + "neg": 0.119, + "_id": { + "$oid": "6711d662cd60fca157e5e83d" + } + }, + { + "text": "Your grade basically depends on the final paper. Do bad on it? Say goodbye to your grade. Now it all makes sense as to why everything else was so easy, because if it weren't, you'd flat out fail. Your grade is contingent upon the difficult final paper, a paper you probably never written. I would never take this professor again.", + "pos": 0.054, + "neu": 0.809, + "neg": 0.137, + "_id": { + "$oid": "6711d662cd60fca157e5e83e" + } + }, + { + "text": "The final Paper will ruin your grade if it is not up to standard. However, the other assignments weren't as bad. However, I would not repeat this class ever again. The professor kept on talking and talking and never thought to record her lectures, which made it difficult for students to comprehend things that were not on the slides.", + "pos": 0.044, + "neu": 0.86, + "neg": 0.097, + "_id": { + "$oid": "6711d662cd60fca157e5e83f" + } + }, + { + "text": "You know those professors who just talk and talk without acknowledging if students are understanding what they are saying? Yeah, she is that professor. Not only she just talks for 3 hours straights, she talks really fast and does not seem to understand that some kids need extra time to process all the information.", + "pos": 0.04, + "neu": 0.96, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e840" + } + }, + { + "text": "I wonder how can this person be a psy prof. no matter how well you do though out a semester you will fail a final paper which is worth 30% of the total grade. Loves the sound of her own voice, arrogant and pretentious, narcissistic even.", + "pos": 0.143, + "neu": 0.717, + "neg": 0.139, + "_id": { + "$oid": "6711d662cd60fca157e5e841" + } + }, + { + "text": "Picket is up front and straight forward. She provides you with a syllabus from the beginning of the semester and also advises you to get started on picking a topic for your final paper. Yes she asks for a lot but its a 4 credit class +a requirement, honestly if you pay attention and do the work you are fine ! she even offered tutoring! love her", + "pos": 0.238, + "neu": 0.742, + "neg": 0.02, + "_id": { + "$oid": "6711d662cd60fca157e5e842" + } + }, + { + "text": "I have never worked so hard for a course BUT I learned so much! Thank you Professor Pickett!!!! Amazing individual. I think many students had a hard time, but they relied on a TA that were not there as mine was. So depending on the TA - it was either great or a horrible class.", + "pos": 0.216, + "neu": 0.676, + "neg": 0.107, + "_id": { + "$oid": "6711d662cd60fca157e5e843" + } + }, + { + "text": "AVOID! DO NOT TAKE HER! She is the worst professor of my lifetime and I am sure other students feel the same way, 4 exams! 10 quizzes! 2 papers that will mess up the grade for the rest of your semester. She is not understanding, talks fast and DOES NOT CARE ABOUT STUDENTS OF THEIR CONDITIONS AT ALL! Not professional at all, does not act normally", + "pos": 0.03, + "neu": 0.79, + "neg": 0.18, + "_id": { + "$oid": "6711d662cd60fca157e5e844" + } + }, + { + "text": "If you want to fail, take her class which is graded by so many people she does not even know her students and their abilities, not understanding and its just sad especially during this time.", + "pos": 0.081, + "neu": 0.758, + "neg": 0.161, + "_id": { + "$oid": "6711d662cd60fca157e5e845" + } + }, + { + "text": "Worst professor throughout the whole CUNY system. Try to avoid her if you can.", + "pos": 0.0, + "neu": 0.656, + "neg": 0.344, + "_id": { + "$oid": "6711d662cd60fca157e5e846" + } + }, + { + "text": "This class was okay. I honestly have to thank the TA for going over certain parts I didn't understand. The professor is nice but very lecture heavy and she gives pop quizzes to make sure you're paying attention. Just be ready for the papers and pop quizzes.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e847" + } + }, + { + "text": "Professor Pickett during online learning was not very accommodating to peoples circumstances so don't even ask for extensions if you don't have paper work for proof. Your grades will consist of Final Exam, research proposal, 3 exams in recitation, pop quizzes and jury study. TA's weren't much help. Elms weren't that great either.", + "pos": 0.0, + "neu": 0.902, + "neg": 0.098, + "_id": { + "$oid": "6711d662cd60fca157e5e848" + } + }, + { + "text": "The problems people seem to have with Lorelle are actually with the psych department. The PSY321 jury study is dumb, but is given to every class. It's the TAs that are awful/never taught us SPSS. Lorelle is funny and clearly likes when students are engaged and try hard. This class takes effort so don't be lazy and you'll do great!", + "pos": 0.295, + "neu": 0.635, + "neg": 0.07, + "_id": { + "$oid": "6711d662cd60fca157e5e849" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d662cd60fca157e5e84b" + }, + "professor_name": "Glen Milstein", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Milstein is a gem. I ended up loving his class out of all of the classes I took this semester. He is a little old school, but his teaching methods are very effective. Always attend class because he does take attendance at the beginning and start the papers early!!!!", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e84c" + } + }, + { + "text": "This was my second semester taking him, he is a good professor. Yes there is a big paper but it's clear and easy to complete as long as you READ and FOLLOW THE CHECKLIST & TEMPLATES/ EXAMPLES he provides. He also provides a detailed syllabus, powerpoints & handouts. You are spoon-fed the course content, all you have to do is actually do the work.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e84d" + } + }, + { + "text": "Most annoying professor of my life. Class was extremely boring and I was always stressed about this class even though it's such an easy class. One of the papers was worth 50% of the final grade and rubrics don't make sense. Presentations were so annoying and he loves hearing himself talk.", + "pos": 0.133, + "neu": 0.688, + "neg": 0.179, + "_id": { + "$oid": "6711d662cd60fca157e5e84e" + } + }, + { + "text": "Im not sure why he has a decent rating on this, he was the worse professor at CCNY. All he talks about is covid when he should be teaching about the topics mentioned on the syllabus. He only has TAs grade papers and will not email or help you when you ask questions.", + "pos": 0.0, + "neu": 0.872, + "neg": 0.128, + "_id": { + "$oid": "6711d662cd60fca157e5e84f" + } + }, + { + "text": "Worse Professor at CCNY, avoid at all cost! He has TAs grade your papers and is not accessible out of class. He wont email you back or explain his lectures. His papers are more than 3,000 words long 10-20 page papers and no quizzes or test!", + "pos": 0.0, + "neu": 0.842, + "neg": 0.158, + "_id": { + "$oid": "6711d662cd60fca157e5e850" + } + }, + { + "text": "Worse Professor Ive take as of yet, he doesnt give a proper grading rubric, syllabus didnt make any sense, and all he speaks about is covid. Online class went horrible, he constantly lost connection and messed up more than half of the students grades. Gives only two papers that were worth more than 40 percent of class grade. HORRIBLE!!", + "pos": 0.027, + "neu": 0.746, + "neg": 0.227, + "_id": { + "$oid": "6711d662cd60fca157e5e851" + } + }, + { + "text": "Milstein is a kind professor. However, his lectures did not correlate with the assignments at all. Yet, the assignments were 10-20pages long. Myself and other classmates constantly communicated with each other and the professor how lost we always were. Students did a better job at teaching each other than the professor did, awful.", + "pos": 0.104, + "neu": 0.809, + "neg": 0.087, + "_id": { + "$oid": "6711d662cd60fca157e5e852" + } + }, + { + "text": "You have to do 3 papers that are roughly around 10 pages but he gives you a clear rubric to follow so if you follow that, you will be good. He randomly selects students to speak for the participation grade. He is amazing and requesting office hours for the papers helps so much.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e853" + } + }, + { + "text": "Never graded anything until Dec. so you wont know what you have in his class until the last minute. Talks on and on about random things and interviews students during class instead of actually teaching and making sure people understand the crazy things he asks for in his papers. Overall, it was a let down and i never want to have him agin", + "pos": 0.035, + "neu": 0.91, + "neg": 0.055, + "_id": { + "$oid": "6711d662cd60fca157e5e854" + } + }, + { + "text": "Prof. Milstein is the best professor I have had! He is enthusiastic and funny. He provides his textbooks, but you do need to purchase one of the books (it's very cheap, don't worry). His essays may look scary, but he explains them very clearly so that you can understand them. READ EVERYTHING HE ASSIGNS! It will make the class easier to understand.", + "pos": 0.237, + "neu": 0.708, + "neg": 0.055, + "_id": { + "$oid": "6711d662cd60fca157e5e855" + } + }, + { + "text": "Prof. Milstein is an amazing professor! He is very specific about what he wants and what is required to pass his class. He calls on people randomly to participate, yet still makes it a fun learning environment. His essays are relatively easy because he is very specific about them on the syllabus and he is always up for answering questions.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e856" + } + }, + { + "text": "one thing I would say that I'm lucky to have him as my professor. he was the best professor I had and probably I will ever have. one thing I will say that you will feel really proud after passing his class. His class is hard but still, you would want to take him because you will fell in love with his lecture.", + "pos": 0.193, + "neu": 0.79, + "neg": 0.017, + "_id": { + "$oid": "6711d662cd60fca157e5e857" + } + }, + { + "text": "Professor Milstein is great. His lectures are amazing, very fun and interesting. All his requirements for the class are very clear. He goes by his grading criteria and helps you understand the material during office hours. He's very helpful and will explain things over and over to avoid confusion. Loved this class!", + "pos": 0.37, + "neu": 0.57, + "neg": 0.06, + "_id": { + "$oid": "6711d662cd60fca157e5e858" + } + }, + { + "text": "Material was useful but same material was taught each week. Material not taught was expected to be memorized for difficult exams. Papers are TEDIOUS. Reviews are useless, answers with a question. Late to class and absent for the first half to grade papers. He was rude to a student during class & showed everyone's attendance via powerpoint.", + "pos": 0.03, + "neu": 0.804, + "neg": 0.166, + "_id": { + "$oid": "6711d662cd60fca157e5e859" + } + }, + { + "text": "If you are a Psychology major please do me a favor and TAKE HIS COURSE! If you genuinely enjoy the field/topic of psychology and want to be challenged and learn A LOT, this guy is the BEST professor at CCNY. Very open, humorous, engaging and brings tons of energy. Plenty of papers but it's all worth it if you truly want to learn and grow", + "pos": 0.299, + "neu": 0.685, + "neg": 0.016, + "_id": { + "$oid": "6711d662cd60fca157e5e85a" + } + }, + { + "text": "Lot of readings. Five worksheets in the beginning, a guided essay, and a term paper at the end. Final exam as well! Sometimes ambiguous with answers as he wants you to find it on your own. Has you participate using index cards. Just follow the syllabus ( it has everything) and ask questions! He knows what he is talking about, very passionate.", + "pos": 0.096, + "neu": 0.904, + "neg": 0.0, + "_id": { + "$oid": "6711d662cd60fca157e5e85b" + } + }, + { + "text": "He is the definition of a college professor. His essays can be intimidating but, he will break it down to make things clear. He is always full of enthusiasm to start the class. I have never seen him moody. Everyone participates since he calls on random students so be prepared. He is my fave professor so far. Take him, you'll learn alot in his class", + "pos": 0.213, + "neu": 0.761, + "neg": 0.025, + "_id": { + "$oid": "6711d662cd60fca157e5e85c" + } + }, + { + "text": "I took Prevention science with Professor Milstein and he was great. He really breaks everything down to make sure his students understand the material. His class is very serious and you should take it as so. There is a lot of reading but he always makes himself available should you have questions. The only issue I had with the class was his TA.", + "pos": 0.064, + "neu": 0.916, + "neg": 0.02, + "_id": { + "$oid": "6711d662cd60fca157e5e85d" + } + }, + { + "text": "Great professor and a class that teaches you a lot about work ethic and how to actually do research and think critically about research topics. Reading the material and attending the class is crucial. It's work but with a great prof like Dr. Milstein, it's very engaging and fun to go through. Not an easy A but absolutely recommend taking it.", + "pos": 0.292, + "neu": 0.67, + "neg": 0.039, + "_id": { + "$oid": "6711d662cd60fca157e5e85e" + } + }, + { + "text": "Professor Milstein is a great human being and such a good professor. PLEASE do buy the Erikson & Erikson book and ALWAYS REMEMBER SOMA. He likes to make students fill out index cards with their names on it and call them out randomly so pay attention and know what's he's talking about during class! You'll do amazing!", + "pos": 0.246, + "neu": 0.728, + "neg": 0.027, + "_id": { + "$oid": "6711d662cd60fca157e5e85f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d663cd60fca157e5e861" + }, + "professor_name": "Simon Simms", + "rating": 1.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Had him for CHEM103 he is the worst professor that I have ever taken. He doesn't care about his students, never responds to emails,very unorganized. lectures are very slow and useless. He takes 20 minutes just to log in to the blackboard and literally takes forever to do a single thing.I had to self-study the whole course material to pass the class", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d663cd60fca157e5e862" + } + }, + { + "text": "Cannot understand him during lectures, does not have control over their homework application he assigns, only posts the slides he goes over in lectures, and you are pretty much learning by yourself and through recitation.", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d663cd60fca157e5e863" + } + }, + { + "text": "first week of classes-he did not even have his syllabus done. bumbling idiot basically. has no clue how to teach. a perfect example of what living in academia your whole life will turn you into.he can not function in the real world, has no clue how the real world works, how to speak to an audience or how to teach. sad that I am paying for this.", + "pos": 0.048, + "neu": 0.81, + "neg": 0.141, + "_id": { + "$oid": "6711d663cd60fca157e5e864" + } + }, + { + "text": "This professor barely remember his password to log in to his account every time there is lecture. It's embarrassing. Lecture is beyond useless. this is a self teach class", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d663cd60fca157e5e865" + } + }, + { + "text": "The worst professor I've taken by far. Doesn't care about students, never responds to emails, takes one hour to go over 5 slides. Got an A only cuz I self-studied and spent DAYS practicing on ALEKS. I would suggest someone take him ONLY if ur a good student and don't mind studying on ur own.", + "pos": 0.047, + "neu": 0.844, + "neg": 0.109, + "_id": { + "$oid": "6711d663cd60fca157e5e866" + } + }, + { + "text": "This class is literally just Aleks. Tests are literally just Aleks questions. If you know how to do every single Aleks question, you will get a 100. Lectures aren't mandatory and they are the most unorganized and useless lectures ever. He mumbles and no one knows what he is talking about. I went twice and gave up. Don't go and study Aleks instead!", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d663cd60fca157e5e867" + } + }, + { + "text": "Simms is a good person but not a good professor. His lectures are useless and you have to study everything yourself from Aleks. The only thing I liked about his class was that he was a good grader.", + "pos": 0.193, + "neu": 0.669, + "neg": 0.138, + "_id": { + "$oid": "6711d663cd60fca157e5e868" + } + }, + { + "text": "Simms is everything you dont want in a professor. Hes rude, disorganized, cant explain course work, and unreachable to students outside of class(literally asked us not to email him). Lectures are completely useless. Doesnt understand how ALEKs works and yet puts all the work on there. Theres so much more but do yourself a favor and run", + "pos": 0.057, + "neu": 0.835, + "neg": 0.108, + "_id": { + "$oid": "6711d663cd60fca157e5e869" + } + }, + { + "text": "This is the worst professor I've ever had. Disorganized, learn nothing from lectures, exams are disorganized. Please save yourself and do not take a course with this professor - you will regret it.", + "pos": 0.126, + "neu": 0.616, + "neg": 0.258, + "_id": { + "$oid": "6711d663cd60fca157e5e86a" + } + }, + { + "text": "Hes a bad professor and has useless lectures. Its a self taught class. Just do your homework on aleks and memorize the answers cuz the exams are on aleks so its just hw problems. I wouldnt take this class again because I learned absolutely nothing from it, just how to memorize answers.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d663cd60fca157e5e86b" + } + }, + { + "text": "Nice guy, not a great professor. Like previously said, teach yourself. Lectures are useless (I stopped attending), pray for a good recitation leader (Mark Wanis is the GOAT), and stay on top of ALEKS. The exams are on ALEKS so the class really just ends up being homework and then memorizing how to do those problems for the exams, plus lab.", + "pos": 0.164, + "neu": 0.693, + "neg": 0.143, + "_id": { + "$oid": "6711d663cd60fca157e5e86c" + } + }, + { + "text": "Youre better off teaching yourself or learning more through recitation. Aleks hw is very annoying time consuming so start ahead of time. Labs are easy, tests arent too bad. Professor is not tech savvy. Has many internet problems. Not the best professor, but this class in manageable.", + "pos": 0.11, + "neu": 0.776, + "neg": 0.114, + "_id": { + "$oid": "6711d663cd60fca157e5e86d" + } + }, + { + "text": "Simms should not be teaching, his classes are horrible you can barely hear him. He wants everything perfect if you miss something he would give you 0 even if the answer is correct. I do not understand why the department keeps him. A lot of students fail, his exams are ridiculous hard. I passed this class because Rex did recitation.", + "pos": 0.053, + "neu": 0.769, + "neg": 0.178, + "_id": { + "$oid": "6711d663cd60fca157e5e86e" + } + }, + { + "text": "Failed students during the pandemic because he couldnt make tests where the answer choices were not all 0. Department acknowledged long history of organizational problems. May very well be dementing based off of rash behavior but he is tenured.", + "pos": 0.04, + "neu": 0.823, + "neg": 0.137, + "_id": { + "$oid": "6711d663cd60fca157e5e86f" + } + }, + { + "text": "If you choose to take chemistry, just do yourself the favor ahead of time and aviod this professor by all means necessary. This guy does not care about you nor your grade. Is clearly here just to get a easy pay check. Everything you do is on a website called aleks, extremely diffcult, takes up all your time to get absolutely nowhere. Simms sucks!", + "pos": 0.15, + "neu": 0.795, + "neg": 0.055, + "_id": { + "$oid": "6711d663cd60fca157e5e870" + } + }, + { + "text": "He is not adept with technology. Best believe he will not respond to emails. Lecture is unbelievably unproductive as we spend majority of the class trying to figure out his technogical issues. I was supposed to receive an A+ with a 98.6 grade but instead of following the grading policy, he changed an A+ to 99 - 100 as a response. Absolutely lazy", + "pos": 0.039, + "neu": 0.907, + "neg": 0.055, + "_id": { + "$oid": "6711d663cd60fca157e5e871" + } + }, + { + "text": "He is very nice and flexible. Most students gave him a bad rating because they didn't work hard. I have got all test 100s and he kind enough to drop the test. You should work hard to do well in this class. learn from ALEKS, overall, you should self study a lot. but I think if you work hard enough, can be easy to get A+.", + "pos": 0.165, + "neu": 0.747, + "neg": 0.088, + "_id": { + "$oid": "6711d663cd60fca157e5e872" + } + }, + { + "text": "This professor does not help you when having connection issues during an exam so expect to fail most of his exams. His Aleks homework is not unlimited tries but with his lessons, you may not be prepared for them. When having Blackboard and Aleks issues his only answer is to report it to the platform.", + "pos": 0.0, + "neu": 0.896, + "neg": 0.104, + "_id": { + "$oid": "6711d663cd60fca157e5e873" + } + }, + { + "text": "This class was the hardest one I have taken. I practiced as many questions as possible and studied days in advance for every test yet still got a not so great grade. It took up all of my time and I was stressed throughout the whole semester about whether I was going to pass or fail. Really don't recommend.", + "pos": 0.0, + "neu": 0.816, + "neg": 0.184, + "_id": { + "$oid": "6711d663cd60fca157e5e874" + } + }, + { + "text": "Pace is too slow for a packed curriculum - half the time he would have to cut content from the tests (but they would be on the final though). Can't blame students for not showing up to lecture because he goes off track and doesn't try to engage students. Will make tests difficult so make sure you study. He curves so at least that's a plus.", + "pos": 0.08, + "neu": 0.821, + "neg": 0.099, + "_id": { + "$oid": "6711d663cd60fca157e5e875" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d663cd60fca157e5e877" + }, + "professor_name": "Marta Bengoa", + "rating": 3.4, + "department": "Economics department", + "comments": [ + { + "text": "Grading criteria for homework are haphazard and unclear, it's hard to know what she wants in an assignment. You can have an assignment answers similar to another student's and receive a drastically different grade.\nHer lectures in Macroeconomics are long, drab, and drawn out. She also answers student questions rudely sometimes.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d663cd60fca157e5e878" + } + }, + { + "text": "Literally the worst Professor to exist to teach intermediate economics. Please explain to me why she is teaching as though we are professional economists, I dropped the class simply because she expects a phd level thesis for hw. The summer professor for the same exact class I got an A, with her I was barely holding a C. Absolutely the worst!", + "pos": 0.033, + "neu": 0.84, + "neg": 0.127, + "_id": { + "$oid": "6711d663cd60fca157e5e879" + } + }, + { + "text": "Don't take her unless you want a poor grade! Besides being bad at teaching, she makes quizzes so tricky. On top of that, her incompetent TA who grades the HW, midterm, and final will give you a grade not representative of your work, but whatever he feels like. So, basically there's no rubric and he grades however he wants. AVOID AT ALL COSTS!", + "pos": 0.079, + "neu": 0.719, + "neg": 0.202, + "_id": { + "$oid": "6711d663cd60fca157e5e87a" + } + }, + { + "text": "Please do yourself a favor. If there is another professor as an option, take it. DO NOT, I repeat, DO NOT take this professor. She is rude and does not allow questions during her lectures. She always says, ask me later, and by the time she allows questions, you are all lost because you couldn't understand anything in her lectures. Horrible teacher.", + "pos": 0.07, + "neu": 0.784, + "neg": 0.146, + "_id": { + "$oid": "6711d663cd60fca157e5e87b" + } + }, + { + "text": "Horrible professor. The worst I had at City College. Rude and disorganized. No class powerpoints, just her lectures with heavy accent. A lot of quizzes, homework in addition to midterm and final which are very difficult and unlike lectures. I checked with my friends and the average grade is barely passing while we study. Don't take this professor!", + "pos": 0.043, + "neu": 0.707, + "neg": 0.251, + "_id": { + "$oid": "6711d663cd60fca157e5e87c" + } + }, + { + "text": "She's one of the rudest professors I have ever come across. I took her online, and even through the screen her demeanor was awful. She constantly interrupted students while they were asking questions, skirted around the issues they brought up and rushed through lectures. This woman should not have become a teacher.", + "pos": 0.0, + "neu": 0.849, + "neg": 0.151, + "_id": { + "$oid": "6711d663cd60fca157e5e87d" + } + }, + { + "text": "As a person professor Bengoa is great but her online classes are quite horrific. Her lectures are okay but easy to get lost in. She was unsure typically of which chapters she was teaching and when. There was no structure to her lectures or quizzes. GO TALK TO HER! its the only way or else you are not gonna know what to do or read", + "pos": 0.107, + "neu": 0.709, + "neg": 0.184, + "_id": { + "$oid": "6711d663cd60fca157e5e87e" + } + }, + { + "text": "She was the worst. Her class was hybrid and met once a week. She gave 1 PowerPoint in the beginning and nothing else. We were suppose to meet 11 times total but she didn't show up for 6 of them. Her assistant did not want to answer any question when she took the class. It was terrible. She prioritized her other stuff and most people were confused.", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d663cd60fca157e5e87f" + } + }, + { + "text": "Hard quizzes and HW that you won't even get full credit for because she grades so harsh and is worth 30% of your grade. midterm and final are worth 70% and they're all from her lectures and insanely difficult. She cannot explain clearly in her lectures, and says shes open to questions but if you're confused she gets mad and says read the textbook.", + "pos": 0.064, + "neu": 0.744, + "neg": 0.192, + "_id": { + "$oid": "6711d663cd60fca157e5e880" + } + }, + { + "text": "Super harsh grader. Rude. You ask a simple question she tells us check the syllabus. Terrible unclear notes/scribbles. Does not make it clear what is going on in class. Mostly just lectures and does not follow the book. Says she cares about students but does not act like it. The content itself should be easy but she makes it so hard. Tests arent mc", + "pos": 0.109, + "neu": 0.707, + "neg": 0.184, + "_id": { + "$oid": "6711d663cd60fca157e5e881" + } + }, + { + "text": "She is horrible bad teaching to much homework and no textbook use so the quiz is based off of her lectures which are unclear. She can't write. Online is a nightmare for her class. You need to fail and take again in order to pass. Group homework and quiz based off of lectures. midterm and final. The grade D in her class is a 43-45.", + "pos": 0.0, + "neu": 0.803, + "neg": 0.197, + "_id": { + "$oid": "6711d663cd60fca157e5e882" + } + }, + { + "text": "Failed to adjust to student needs during covid. Extremely harsh grader and nitpicks at the smallest things. I don't know why professors thinks it is their way or the highway. Optimize your learning for all students, what is your previous knowledge good for if you really don't care for how your students learn?", + "pos": 0.096, + "neu": 0.756, + "neg": 0.148, + "_id": { + "$oid": "6711d663cd60fca157e5e883" + } + }, + { + "text": "As a Professor who says she has years of Economic experience, she fails to realize the trends in her students low performance and class withdrawals. she needs to change her teaching methods .final & midterm 70% of your grade. 5 hw & weekly quizzes worth 30% that are unbelievably hard for an undergrad class. DO NOT TAKE THIS PROFESSOR! I dropped.", + "pos": 0.029, + "neu": 0.866, + "neg": 0.105, + "_id": { + "$oid": "6711d663cd60fca157e5e884" + } + }, + { + "text": "She is one of the most knowledgeable professors in CCNY. Youll need to study and understand the material clearly to pass her class. Her personality is intimidating and comes across as rude, but overtime you realize she is nicer than she seems. Ask questions and read the book!", + "pos": 0.111, + "neu": 0.816, + "neg": 0.073, + "_id": { + "$oid": "6711d663cd60fca157e5e885" + } + }, + { + "text": "Worst professor. Rude. Heavy accent. Unclear, goes too fast. Tests are harder than the class.", + "pos": 0.0, + "neu": 0.569, + "neg": 0.431, + "_id": { + "$oid": "6711d663cd60fca157e5e886" + } + }, + { + "text": "hard class but her grading curve is amazing. dont miss too many classes or else youll be lost.", + "pos": 0.274, + "neu": 0.56, + "neg": 0.166, + "_id": { + "$oid": "6711d663cd60fca157e5e887" + } + }, + { + "text": "Dr. Bengoa is one of the best if not the best professor in the economics department. She is willing to work with you, however she has zero tolerance for slackers. You will not pass this class if you do not study inside and outside the classroom, with that said you will learn a lot and truly develop an understanding of macroeconomic concepts.", + "pos": 0.132, + "neu": 0.821, + "neg": 0.048, + "_id": { + "$oid": "6711d663cd60fca157e5e888" + } + }, + { + "text": "Professor Bengoa is one of the best professors in CCNY. Her class is hard but you will learn a lot. Make sure you follow news about the economy because she will give you problems based on it. Make sure you pay attention in her class and know your graphs and equations. Also don't use your cellphone or else she will take it away from you. Take her!", + "pos": 0.115, + "neu": 0.801, + "neg": 0.083, + "_id": { + "$oid": "6711d663cd60fca157e5e889" + } + }, + { + "text": "Best econ professor! One consistent style of teaching all semester: tells you factors being considered, how they relate, how they apply to the real world, and how to analyze the relationships. Super fast class but she teaches really well!", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d663cd60fca157e5e88a" + } + }, + { + "text": "Good lectures. Clear explanations. Heavy with the math. Got well prepared for my PhD application", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d663cd60fca157e5e88b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d664cd60fca157e5e88d" + }, + "professor_name": "John Gillooly", + "rating": 4.3, + "department": "History department", + "comments": [ + { + "text": "Unless you are dying to write TWO 10-12 page papers where you MUST include 10+ topics to answer one question and the professor will not explain the assignment (just simply hand it out), then be my guest and take him. If you address everything he wants in papers, you'll get an A+ like I did.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e88e" + } + }, + { + "text": "This was my second time taking this professor and he does talk a lot but he does care about his students and he is very knowledgable. he actually takes time to learn students names and only requires that you read and do two take-home essays. if you do that you pretty much get an A.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e88f" + } + }, + { + "text": "This is the 2nd class I've taken with Gillooly and he is amazing! His lectures tend to get a bit boring, but if you take good notes the papers will be so easy. He gives 2 papers for the midterm and 2 for the final and thats it for homework. He appreciates participation so do the reading and answer a few questions each class.", + "pos": 0.21, + "neu": 0.769, + "neg": 0.021, + "_id": { + "$oid": "6711d664cd60fca157e5e890" + } + }, + { + "text": "You'll fall asleep in his long 3 hour lectures and might even skip half-way but he's a great professor who knows what he's talking about. Doesn't give exams, just two essay papers as midterms. I didn't read the books assigned but I still got good grades.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e891" + } + }, + { + "text": "This class has 2 tests (2 4-5 page papers for each) and attendance/participation. SHOW UP TO CLASS! He is not mean about missing class but he is clearly appreciative of ppl who do the readings and PARTICIPATE! He is an easy grader and the essays are basically just your class notes regurgitated. Hard to fail his classes.", + "pos": 0.2, + "neu": 0.712, + "neg": 0.089, + "_id": { + "$oid": "6711d664cd60fca157e5e892" + } + }, + { + "text": "Super easy to just show up and passively sit, however when it comes to preparation for the papers and intake of knowledge something is to be desired in terms of his communication abilities.", + "pos": 0.268, + "neu": 0.69, + "neg": 0.042, + "_id": { + "$oid": "6711d664cd60fca157e5e893" + } + }, + { + "text": "His class is an easy class but boring. It's a 3hr lecture, which sucks even more. But his class is very easy. Just do well on the papers he assigned, midterm and final are all papers. Also, I didn't really read the textbooks, but I was still able to complete the essay and get a good grade. He's a boring yet easy and nice professor.", + "pos": 0.237, + "neu": 0.655, + "neg": 0.107, + "_id": { + "$oid": "6711d664cd60fca157e5e894" + } + }, + { + "text": "Great professor and very knowledgeable about the topics. If you want to take difficult courses and a history course, this professor is for you. Just show up and do the 2 papers which were super easy and he's an easy grader once you hit all the points in the prompt.", + "pos": 0.245, + "neu": 0.714, + "neg": 0.041, + "_id": { + "$oid": "6711d664cd60fca157e5e895" + } + }, + { + "text": "This Professor has a teaching style that brings you into the historical moment or era. You need to take notes and read the books and participate. Do the Essays. The Professor allows more than sufficient time to complete the take home essays.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e896" + } + }, + { + "text": "Smart guy. Only midterm and final papers given.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e897" + } + }, + { + "text": "I loved this class. Read the books that are assigned and you'll do fine. 3 essays and take home final. Gives prompts for essays.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e898" + } + }, + { + "text": "Professor Gillooly is such a nice and decent man. It is not a very hard class. BUT DO WELL ON THE ESSAYS or else you're done because some one else grades it. He gives us breaks and half the kids leave--it's disrespectful, do not abuse the privilege. I do get bored, but I try hard to pay attention. Take the class, show up--it is not bad at all.", + "pos": 0.184, + "neu": 0.713, + "neg": 0.103, + "_id": { + "$oid": "6711d664cd60fca157e5e899" + } + }, + { + "text": "If you know how to write an essay, its an easy A. Lectures kind of get boring sometimes however they will help with the essays.", + "pos": 0.187, + "neu": 0.736, + "neg": 0.077, + "_id": { + "$oid": "6711d664cd60fca157e5e89a" + } + }, + { + "text": "Great professor for history majors, long lectures with little class participation. 4 papers in total, each 4-5 pages, 2 for midterm two for final. there was also an extra credit paper.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e89b" + } + }, + { + "text": "His lectures are quite long but if you pay attention the class is pretty interesting. Only 4 paper, a take home midterm and final are assigned for this class. the grader is pretty harsh so make sure you cover all the points he is asking for. he is very helpful outside of the class and gives you another chance to rewrite your paper if you want.", + "pos": 0.274, + "neu": 0.662, + "neg": 0.063, + "_id": { + "$oid": "6711d664cd60fca157e5e89c" + } + }, + { + "text": "Barely went to class and still got an A-. Take him for an easy grade. Gives about 3 essays, just use his booklets and you'll be fine. He's very generous and he'll give you a good grade. TAKE HIM!", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e89d" + } + }, + { + "text": "He is a great guy and wants you to do better. His lectures are LONG sometimes get boring but if you like history this is gonna be a good one. Lectures are specific and clear. Four essays to write in the whole semester including mid term and finals. Take this class. You won't regret it.", + "pos": 0.266, + "neu": 0.71, + "neg": 0.024, + "_id": { + "$oid": "6711d664cd60fca157e5e89e" + } + }, + { + "text": "He would give you a pamphlet with the lectures he will give you, READ IT and Learn it!! He is a great professor, just make sure to participate and do well on the essays, his final is an essay. Take him, you won't regret it!", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e89f" + } + }, + { + "text": "had him for origins- 1865 i believe. class is a bit boring but if u get into the discussion its kind of fun to listen to. hes always there for you when you need him during office hours and helps you out 10X more than any other professor. midterm& final is a take home essay. Simple class if u participate just a little.", + "pos": 0.107, + "neu": 0.869, + "neg": 0.024, + "_id": { + "$oid": "6711d664cd60fca157e5e8a0" + } + }, + { + "text": "He is THE BEST Professor I've ever had. I am taking him right now. We have two take-home exams and one final. We are so behind the material that I don't think he will give us second take-home exam. Take home-exam consists of essay questions - two questions. From 4-7 pages. The class is very laid back even though it does not not have lecture setting", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e8a1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d664cd60fca157e5e8a3" + }, + "professor_name": "Mira Morgenstern", + "rating": 2.3, + "department": "Political Science department", + "comments": [ + { + "text": "She... actually wasn't that bad as a professor. She's a VERY tough grader and her work is difficult, since it's a 300-level class. Definitely recommend not procrastinating and doing all the readings (there were too many for me.) Brilliant mind and a nice person (not mean at all tbh), but her grading process is unclear to me.", + "pos": 0.152, + "neu": 0.756, + "neg": 0.093, + "_id": { + "$oid": "6711d664cd60fca157e5e8a4" + } + }, + { + "text": "Im unsure where to begin, if you procrastinate like me, do not take this course. assigns readings like its graduate school. she knows her stuff ill give her that but its very hard to keep up. if you can walk out of he class with an A you most definitely have a bright future ahead of you.", + "pos": 0.17, + "neu": 0.749, + "neg": 0.081, + "_id": { + "$oid": "6711d664cd60fca157e5e8a5" + } + }, + { + "text": "attendance is VERY mandatory marks you late even if its by a minute iv witnessed, can totally write your papers without the textbook or readings, easy midterm, easy pass, very self centered and acts like her class is the only class on campus, talks a lot, sometimes rude, makes eye contact that last uncomfortably long, just something I noticed lol.", + "pos": 0.186, + "neu": 0.735, + "neg": 0.079, + "_id": { + "$oid": "6711d664cd60fca157e5e8a6" + } + }, + { + "text": "She does not follow her own syllabus & almost never ends class on time. Her readings are blurry & asking for help is so difficult because she meets you with ridicule. She gives the midterm/final late & even tries to act like some sort of psychic, claiming to know what the students are thinking or feeling. I don't recommend.", + "pos": 0.099, + "neu": 0.765, + "neg": 0.137, + "_id": { + "$oid": "6711d664cd60fca157e5e8a7" + } + }, + { + "text": "Brilliant mind but very difficult teaching metholds. Her work load and teaching skills are very messy. Shes a really tough reader and gives few assignments however they are very heavy work loads.", + "pos": 0.06, + "neu": 0.701, + "neg": 0.239, + "_id": { + "$oid": "6711d664cd60fca157e5e8a8" + } + }, + { + "text": "Dont take her. Unnecessarily difficult. yells at the students. grades like its the end of the world. Please youre better off with ANY other professor. class was boring as well", + "pos": 0.254, + "neu": 0.622, + "neg": 0.124, + "_id": { + "$oid": "6711d664cd60fca157e5e8a9" + } + }, + { + "text": "avoid this woman if you can. BRILLIANT mind but not suitable for teaching. Treats her class like it's the only class you're taking for the semester. A LOT of reading, a 7 page paper, 12 page final paper, and midterm and final are \"short\" answers but you're actually writing full papers for those too during exam time. one of the hardest classes ever", + "pos": 0.089, + "neu": 0.887, + "neg": 0.024, + "_id": { + "$oid": "6711d664cd60fca157e5e8aa" + } + }, + { + "text": "This professor will become the biggest pain you have ever felt. Her syllabus is all around the place and she is super unorganized. You will never know when something is due as she is all around the place. I am a straight A student, and this professor gave me the hardest time of my life. 10/10 would not recommend.", + "pos": 0.088, + "neu": 0.831, + "neg": 0.082, + "_id": { + "$oid": "6711d664cd60fca157e5e8ab" + } + }, + { + "text": "I didn't enjoy this class at all. The syllabus is unclear. While she does a great job at explaining the readings, she would go on many tangents that made it impossible to take notes. Too much work for a 100 level course. She assigned the 12 pg paper a month before the due date, but the readings we needed for it came like a week before it was due.", + "pos": 0.078, + "neu": 0.877, + "neg": 0.045, + "_id": { + "$oid": "6711d664cd60fca157e5e8ac" + } + }, + { + "text": "She was pretty tough to take. I really liked her because her lectures are so fascinating. I wouldn't take her class again only because she is not that organized and it was challenging for me to keep up with her when she is all over the place. She assigns heavy papers and readings. I was surprised she gave me a good grade.", + "pos": 0.233, + "neu": 0.746, + "neg": 0.02, + "_id": { + "$oid": "6711d664cd60fca157e5e8ad" + } + }, + { + "text": "First day of class said hate speech is not allowed, and who dictates what is hate? A lot of stuff to read and just unnecessarily long papers! Why do you have to make make this course so hard?", + "pos": 0.0, + "neu": 0.779, + "neg": 0.221, + "_id": { + "$oid": "6711d664cd60fca157e5e8ae" + } + }, + { + "text": "Reading intensive course, equal amounts of homework & papers. Lengthy midterm & final! She's not the most understanding professor & seems to think her class is the only thing going on in your life. I got an A because I worked closely with friends, showed up to all her classes, participated, & did everything she required. Bottom line: do the work!", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e8af" + } + }, + { + "text": "This was my second class with Morgenstern. The assignments are one 5-7 page paper, one 12 page paper, a midterm and a final. If you do the reading youll do fine. Even with the shutdown, she remained dedicated to teaching. Her zoom lectures were just as in depth as they were in person. She can be tough, but she explains everything in a simple way.", + "pos": 0.051, + "neu": 0.93, + "neg": 0.019, + "_id": { + "$oid": "6711d664cd60fca157e5e8b0" + } + }, + { + "text": "The worst professor I have ever taken throughout my academic journey. On top of a 12-page term paper (during COVID!), we had a final. This required us to answer 5 short answer questions for which we had to write 4 paragraphs each and a full essay with 4 subsections. This amounts to another 12 pages of writing. Her lectures are unclear!", + "pos": 0.027, + "neu": 0.872, + "neg": 0.101, + "_id": { + "$oid": "6711d664cd60fca157e5e8b1" + } + }, + { + "text": "The hardest professor I've had so far. Her syllabus doesn't have dates on it. She is strict about buying 9 specific books (you don't even read them in their entirety). She is very unreasonable & a tough grader. She has very limited office hours. She knows her stuff but fosters an unwelcoming learning environment for an intro level class. Stay away!", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d664cd60fca157e5e8b2" + } + }, + { + "text": "This is absolutely the worst professor in the Poli Sci Department. She makes you buy almost 10 books and you only read a few chapters from each. She assigns a 12 pages term paper based on books you haven't read in class yet. The term paper is due before you read those books. Her lectures are so boring, but attendance is mandatory. AVOID AT ALL COST", + "pos": 0.02, + "neu": 0.861, + "neg": 0.119, + "_id": { + "$oid": "6711d664cd60fca157e5e8b3" + } + }, + { + "text": "Strict about the versions of the books you need to get (9 of them). In lecture she tends to go off topic, and when she stays on topic she just summarizes the readings. Tests have an unreasonable amount of writing in a short amount of time. Her advice for studying is just reread the readings and is completely unclear about what she expects from you.", + "pos": 0.0, + "neu": 0.965, + "neg": 0.035, + "_id": { + "$oid": "6711d664cd60fca157e5e8b4" + } + }, + { + "text": "This professor really knows what she talks about. However, the lectures are a rollercoaster. She jumps from one chapter to another. The writing assignments are very very long and they worth like 40% of your grade. She is nice for as first-course of Political Science is too much.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d664cd60fca157e5e8b5" + } + }, + { + "text": "Hard, tough, and boring", + "pos": 0.0, + "neu": 0.161, + "neg": 0.839, + "_id": { + "$oid": "6711d664cd60fca157e5e8b6" + } + }, + { + "text": "Worst professor I have encountered at CCNY. Frequently goes off topic during lectures, which are already unbearable, focuses too much on what she specializes in rather than the class itself, and assigns too long of papers. Get ready to buy about 10 books and only read a few pages of each. DO NOT TAKE Morgenstern unless you absolutely have to.", + "pos": 0.039, + "neu": 0.898, + "neg": 0.063, + "_id": { + "$oid": "6711d664cd60fca157e5e8b7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d665cd60fca157e5e8b9" + }, + "professor_name": "David Schmeltzer", + "rating": 2.6, + "department": "Physics department", + "comments": [ + { + "text": "Do not take this professor. At all. The professor is unable to teach so he has students in the class (you) teach for him while he sits down. He makes comments that you will not understand at all, not due to an accent but because of slurred speech. You will not learn anything in this course. Taking this course elsewhere is highly recommended.", + "pos": 0.041, + "neu": 0.959, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8ba" + } + }, + { + "text": "Very confusing and difficult Professor.", + "pos": 0.0, + "neu": 0.377, + "neg": 0.623, + "_id": { + "$oid": "6711d665cd60fca157e5e8bb" + } + }, + { + "text": "To assess Professor Shmeltzers PHY 204 class as good or bad feels like the entirely wrong axis on which to see it. It is, with absolute certainty, one of the biggest mistakes Ive made in my short lived life. I was advised by a few peers NOT to take this class and I ignored sound advice. DONT. TAKE. THIS. COURSE. Youve been warned.", + "pos": 0.097, + "neu": 0.722, + "neg": 0.181, + "_id": { + "$oid": "6711d665cd60fca157e5e8bc" + } + }, + { + "text": "By far the WORST professor and class I've EVER taken!! Run! He basically mumbles to himself or to the board rather then talk towards the class. His handwriting is unreadable and half the test questions make no sense or have spelling errors which makes it extremely difficult to even understand what he wants.", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d665cd60fca157e5e8bd" + } + }, + { + "text": "The worst ever, 90% of total grade depends on 5 question exams that are never cover all chapters, some insanely tricky that you need a friend that took him before to help you, and 60 min time limit. Changes the exam and semester grade distribution randomly, tons of spelling (\"pron\" for proton) and basic physics fails (\"100 m\" instead of 100 m/s)", + "pos": 0.083, + "neu": 0.798, + "neg": 0.119, + "_id": { + "$oid": "6711d665cd60fca157e5e8be" + } + }, + { + "text": "One word. Chegg.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8bf" + } + }, + { + "text": "unless you enjoy teaching physics to yourself or want to skip class dont take this professor then again ive never really gotten a test back because he doesnt grade them nor does he ever go to his office", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8c0" + } + }, + { + "text": "wait til next semester to sign up for a physics class... don't get autofilled into taking his class. it wasn't worth my time, and won't be worth your time. you'll end up skipping lectures left and right because you won't have an idea of what he's talking about. he really doesn't know how to teach.. read other comments for clarification.. AVOID HIM!", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d665cd60fca157e5e8c1" + } + }, + { + "text": "Avoid at all costs unless you're able to teach yourself the content. The lectures are awful. He simply reads and writes formulas without explaining anything. There is a serious language barrier. Most people only show up to write their name in for attendance and maybe find out when the test is. Probably the worst Professor I've ever had.", + "pos": 0.0, + "neu": 0.814, + "neg": 0.186, + "_id": { + "$oid": "6711d665cd60fca157e5e8c2" + } + }, + { + "text": "Continued from previous review: He allows open book test. WARNING: Other reviews say he allows electronics during the tests but I believe he got caught doing this and as a result, he did not allow people to use electronics during the final which might happen for future classes. Instead, print out the chapters from textbook.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d665cd60fca157e5e8c3" + } + }, + { + "text": "You can't really learn in this class. I would be fine with the fact that he uses an old school projector but his handwriting is really horrible. He mumbles into his microphone so its difficult to understand him sometimes. Syllabus says homework is mandatory but I didn't even do any and I passed the class. Continued on next review", + "pos": 0.043, + "neu": 0.825, + "neg": 0.133, + "_id": { + "$oid": "6711d665cd60fca157e5e8c4" + } + }, + { + "text": "The Prof. does not care about the students. Lectures on an old school projector. Mumbles into the microphone. Bad hand writing. Lecture is pointless. The only reason I passed was because he allowed students to use open book on electronic devices. SELF STUDY. Very easy to cheat on exam but the tests R easy. Exam is theory based. Answers in textBook", + "pos": 0.116, + "neu": 0.794, + "neg": 0.089, + "_id": { + "$oid": "6711d665cd60fca157e5e8c5" + } + }, + { + "text": "Exams are all that matter; that being said be aware of textbook problems and do the HW as it is good practice. This semester he was very open about what will be on the 2 midterms (none dropped) and final; a day or two before the exams he literally went over the problems and solutions. NOT EASY, but can be good for GPA if you study strategically.", + "pos": 0.111, + "neu": 0.812, + "neg": 0.077, + "_id": { + "$oid": "6711d665cd60fca157e5e8c6" + } + }, + { + "text": "His class is light work if you have any prior knowledge of physics. DO NOT expect to go to his lectures and be taught anything other than when the test date is. He doesn't interact with his students and mostly solves questions from the book on a 1972 projector that is blurry, while mumbling the to himself. Independent Study PASS.", + "pos": 0.034, + "neu": 0.943, + "neg": 0.023, + "_id": { + "$oid": "6711d665cd60fca157e5e8c7" + } + }, + { + "text": "This is the worst professor I've ever had and he doesn't care enough to answer your questions after class. He cuts people off in the middle of their questions, his handwriting is illegible, and his notation is inconsistent. Avoid at all costs. I've had to read the book and use online resources for this class. Oh, and attendance is mandatory.", + "pos": 0.019, + "neu": 0.816, + "neg": 0.165, + "_id": { + "$oid": "6711d665cd60fca157e5e8c8" + } + }, + { + "text": "Horrible Professor! Do not take him. You will literally not learn one thing from him! I have to self study for his class and its going to suck big time.", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d665cd60fca157e5e8c9" + } + }, + { + "text": "Do not take him, He teaches mad fast and we can't even understand his handwritings or what he is talking about. I only took him cuz I had no other better profs.. eghh hate this class. DON'T", + "pos": 0.0, + "neu": 0.741, + "neg": 0.259, + "_id": { + "$oid": "6711d665cd60fca157e5e8ca" + } + }, + { + "text": "Hands down the worst professor in City College today. He hates teaching, and you can tell. Very lazy with grading (no partial credit or carry through) and with helping students in general.", + "pos": 0.115, + "neu": 0.649, + "neg": 0.235, + "_id": { + "$oid": "6711d665cd60fca157e5e8cb" + } + }, + { + "text": "Learn by yourself and read the textbook. He doesn't do a very good job explaining the material clearly and is not an approachable dude. The exams are concept heavy, rather than plugging in numbers.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8cc" + } + }, + { + "text": "no work needed. If you want to learn, not great. He knows his stuff, but has a hard time communicating it in a large crowd. He only cares about concepts, not if you can plug and chug formulas. His tests don't need calculations, he uses 1, 0, & standard values so that uu can answer quickly &easily if u understand the stuff. khan academy for this one", + "pos": 0.153, + "neu": 0.778, + "neg": 0.069, + "_id": { + "$oid": "6711d665cd60fca157e5e8cd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d665cd60fca157e5e8cf" + }, + "professor_name": "Israel Hernandez", + "rating": 3.7, + "department": "Mathematics department", + "comments": [ + { + "text": "He gives quizzes maybe once a week/2 weeks, curves a lot on the tests and will do his best to pass you. Very down to earth as well. Answers questions perfectly.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8d0" + } + }, + { + "text": "Professor Hernandez is one of the most amazing math professors at CCNY. Put in the work in his class and do the extra credit and you will do well. He truly cares about his students and if you go to office hours he helps clarify the things that may be confusing. Lastly, I will say that his lectures are very clear and he explains the tough topics.", + "pos": 0.247, + "neu": 0.711, + "neg": 0.042, + "_id": { + "$oid": "6711d665cd60fca157e5e8d1" + } + }, + { + "text": "Genuinely one of the best professors I have ever had. He made Calculus 2 actually engaging to learn. He gives 3 exams, one of which is dropped. He is REALLY REALLY generous with partial credit on exams. He also gives a practice exam of 50 questions which really help prepare you for exams and 10 POINTS IF YOU DO THE PACKET !!!! No quizzes/ some Hw.", + "pos": 0.231, + "neu": 0.742, + "neg": 0.027, + "_id": { + "$oid": "6711d665cd60fca157e5e8d2" + } + }, + { + "text": "Pros: Review is similar to the exam and adds 10 pts to the exam if you do 50 problems. \nCons: Moves too fast through topics sometimes 2 a day. Is not good at teaching material to a first-time calc 3 student. Talks to himself rather than teaching when going over a topic. You are better off not attending and just watching Prof. Leanord on yt.", + "pos": 0.041, + "neu": 0.886, + "neg": 0.073, + "_id": { + "$oid": "6711d665cd60fca157e5e8d3" + } + }, + { + "text": "Good lecturer, but class requires a lot of self-study. Assign homework AND practice problems (40-50 questions) that are due before every exam. If you do all the practice problems, he'll add 10 points to your exam. His exams are HARD, but will prepare you for the final. Overall a pretty nice guy, just strict professor.", + "pos": 0.145, + "neu": 0.713, + "neg": 0.143, + "_id": { + "$oid": "6711d665cd60fca157e5e8d4" + } + }, + { + "text": "Teaches theoretically but isnt a bad teacher at all these classes generally require a lot of self studying anyway. He doesnt provide solutions to his review questions but definitely do them because the exam problems are selected from there. Tough class but one of the nicer graders. Ask questions!", + "pos": 0.186, + "neu": 0.699, + "neg": 0.115, + "_id": { + "$oid": "6711d665cd60fca157e5e8d5" + } + }, + { + "text": "Mr. Hernandez is a great professor! He is so caring and is willing to help his students. 10/10. Would recommend and would take again! He also shares interesting facts throughout the course. If you need help, always ask him, don't be afraid!", + "pos": 0.385, + "neu": 0.615, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8d6" + } + }, + { + "text": "Professor Hernandez was an absolutely amazing teacher! I had him for MAT190 in the summer and he made learning a lot fun and simpler. His class consisted of him walking us through the online textbook and taking notes alongside and then dedicating time on our workbooks. He made sure to help out each and every student! He is well respected & polite!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8d7" + } + }, + { + "text": "I took Calculus 1 with him, Professor Hernandez is such an amazing professor at CCNY. He wants students to succeed by giving us a review sheet that would count as an extra 10 points something I haven't seen with other math teachers.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8d8" + } + }, + { + "text": "Best math professor at CCNY! I took Calculus 2 with him, Professor Hernandez is caring, energetic, and respectful. He wants students to succeed. He gives around 10 quizzes throughout the semester but only counts the best 5, along with 2/3 exams in which he gives 50-60 question of practice that if completed, will give 10 extra points on your exam!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8d9" + } + }, + { + "text": "Very amazing professor. Quiz every week to help you stay on track. Theres 3 exams and he gives 10 points extra on the exams if you complete the review sheet. Highly recommend this professor.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8da" + } + }, + { + "text": "I took professor Hernandez's math 190 class and this class was a struggle since it was only a 3-week class. He took the notes on the smart board, which was helpful because he always sent us the notes through email. He's very specific about what will be on the quizzes and tests/final. You will not regret taking his class", + "pos": 0.12, + "neu": 0.844, + "neg": 0.035, + "_id": { + "$oid": "6711d665cd60fca157e5e8db" + } + }, + { + "text": "Only the top 5 out of 10 quizzes count towards your grade for 20%. The quizzes are 3 questions, short response, and literally comes straight out the practice problems he recommends you to do. Only 2 out of 3 exams count, each 20%. These exams are curved. Our second exam had a 20 point curve.The final is worth 40%.Going to lecture is not a waste.", + "pos": 0.137, + "neu": 0.825, + "neg": 0.038, + "_id": { + "$oid": "6711d665cd60fca157e5e8dc" + } + }, + { + "text": "I recommend prof hernandez to anyone taking calc 1! The lectures are super helpful. There is a quiz every week but only 5 count which gives you lots of chances to improve your grade. There are three exams and the final exam. The lowest exam grade gets dropped. Partial credit is super helpful. I am not even the best at math but learned a lot!!", + "pos": 0.288, + "neu": 0.622, + "neg": 0.09, + "_id": { + "$oid": "6711d665cd60fca157e5e8dd" + } + }, + { + "text": "3 exams and the top 2 are only counted. He curves like crazy so as long as you're above average you are fine. His exams are hard but it makes the final seem easy. The quiz are pulled out of the hw so make sure to do it.", + "pos": 0.211, + "neu": 0.737, + "neg": 0.052, + "_id": { + "$oid": "6711d665cd60fca157e5e8de" + } + }, + { + "text": "If you took calculus in high school and want a free A, just take him. Test and quiz questions are taken directly from homework, which takes about 20-30 mins to do. Very lenient grader as well and he curves by quite a lot, he curved the second exam by 20 points because the class average was like a 51. Just practice and you'll be fine.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8df" + } + }, + { + "text": "Class was organized with website; required sections and corresponding homeworks were straightforward. PROBLEM: the exams are 10 open ended questions. Good thing: partial cred. Bad thing: exams are FAR DIFFERENT than examples in the textbook, hw, etc. For 2nd exam prof gave practice exam problems but w/ NO ANSWER KEY - what a waste of time!!!!! smh", + "pos": 0.028, + "neu": 0.714, + "neg": 0.258, + "_id": { + "$oid": "6711d665cd60fca157e5e8e0" + } + }, + { + "text": "Professor Hernandez was amazing! He took his time to hold extra review sessions to be available to his students. I really appreciated that of him. He gave weekly assignments which help you to build your understanding on the topics covered in class. You do have to to study in order to do well in the course, and stay focused.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d665cd60fca157e5e8e1" + } + }, + { + "text": "THIS MAN MAKES EXAMS THAT'S 1000x DIFFICULT THAN TYPICAL CALC 3 TEXTBOOK PROBLEMS THAT WE STUDY. WHEN YOU ASK HIM FOR GRADES, HE IGNORES YOU AND STARTS TALKING OFF-TOPIC ABOUT WEIRD STUFF. HIS GRADING POLICY IS SO HARSH AND HE NEVER CURVES THE EXAMS. IF YOU WANT TO LEARN MATH PEACEFULLY BY GETTING GOOD GRADES, STAY FR AS POSSIBLE FROM THIS MAN!!!", + "pos": 0.119, + "neu": 0.657, + "neg": 0.224, + "_id": { + "$oid": "6711d665cd60fca157e5e8e2" + } + }, + { + "text": "Tests are given to fail the entire class. His lectures are not bad. But you will be introduced to way harder concepts during the exam for the 1st time. Assignments are hard but exams are way harder and will make you cry for sure. No reachable outside of class and office hours once a week. not considerate at all even in emergency. Big NO NO.", + "pos": 0.059, + "neu": 0.682, + "neg": 0.258, + "_id": { + "$oid": "6711d665cd60fca157e5e8e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d666cd60fca157e5e8e5" + }, + "professor_name": "Tek Bam", + "rating": 3.9, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Tek Bam is an exceptional math instructor who brings clarity and enthusiasm to his lessons, making the difficult topics much more engaging and fun to learn.", + "pos": 0.326, + "neu": 0.605, + "neg": 0.069, + "_id": { + "$oid": "6711d666cd60fca157e5e8e6" + } + }, + { + "text": "If you are not too good at math, sis don't do it to yourself. If you are thinking \"well I'm not the worst,\" just stop and accept the truth. In this class you'll basically have to teach yourself. His teaching sucks, he goes super fast, plus his accent, understanding is impossible. His exams are way too hard, if you fail them you're done for. AVOID !", + "pos": 0.168, + "neu": 0.651, + "neg": 0.18, + "_id": { + "$oid": "6711d666cd60fca157e5e8e7" + } + }, + { + "text": "He is extremely knowledgeable. One of the best professors I've ever had. He makes every effort to make calculus as simple as possible. He makes every effort to ensure that the student understands the material. Calculus is difficult so don't skip class, understanding the other material will be difficult because most of these chapters are connected.", + "pos": 0.107, + "neu": 0.815, + "neg": 0.078, + "_id": { + "$oid": "6711d666cd60fca157e5e8e8" + } + }, + { + "text": "The professor is very passionate about calculus but if you are hoping to learn or understand something from his lectures do not take him. He will confuse you more than when you first got there and he actually gets annoyed when you raise your hand to ask a question.His tests are confusing and more difficult than any HW question he claims will \"help\"", + "pos": 0.172, + "neu": 0.682, + "neg": 0.146, + "_id": { + "$oid": "6711d666cd60fca157e5e8e9" + } + }, + { + "text": "Professor Bam went out of his way to make sure that we understood the material. He told us exactly what to study, how to study, and even reviewed precalculus and algebra for students who had forgotten certain topics. Hands-down the best mathematics class I've taken at CCNY and one of my favorite professors. I hope I can have him again in the future", + "pos": 0.198, + "neu": 0.777, + "neg": 0.026, + "_id": { + "$oid": "6711d666cd60fca157e5e8ea" + } + }, + { + "text": "Professor Bam is a really good teacher. He teaches very well and tries to make everything easy and understanding. Calc 2 in general is a hard course so you have to study regardless. With his help, self-studying, and attending all his lectures you can definitely get an A. He also has office hours and will take extra time to help you if needed.", + "pos": 0.224, + "neu": 0.757, + "neg": 0.019, + "_id": { + "$oid": "6711d666cd60fca157e5e8eb" + } + }, + { + "text": "Very harsh grader, does not tell you stuff in advance regarding quizzes, tests, or even the final. He didn't even tell us what would be on our exams until a day or two before and even then it would be at most only one question while the rest of the exam was all new material. He justifies this by giving you ONE homework extension.", + "pos": 0.036, + "neu": 0.917, + "neg": 0.047, + "_id": { + "$oid": "6711d666cd60fca157e5e8ec" + } + }, + { + "text": "Hes such an amazing guy but the stingiest of graders. didnt have the heart to tell him his tests had none of the class material in them. He makes you learn irrelevant topics and goes off on tangents when anyone asks questions.", + "pos": 0.051, + "neu": 0.852, + "neg": 0.097, + "_id": { + "$oid": "6711d666cd60fca157e5e8ed" + } + }, + { + "text": "I'm one of the kids that have taken calculus 1 before twice and passed... but this professor didnt care about our grades one bit. He is passionate about teaching but theres a gigantic disconnect between his teaching and his homework and his tests. Your tests are brutal with this professor, wasnt anything we ever learned.. expects you toknow proofs", + "pos": 0.066, + "neu": 0.804, + "neg": 0.13, + "_id": { + "$oid": "6711d666cd60fca157e5e8ee" + } + }, + { + "text": "He is a very harsh grader, doesn't do review, and won't tell you anything until the last minute. He doesn't give you extra time even with outstanding circumstances which wouldn't be a problem if it wasn't for the sheer amount of homework he gives.", + "pos": 0.124, + "neu": 0.813, + "neg": 0.063, + "_id": { + "$oid": "6711d666cd60fca157e5e8ef" + } + }, + { + "text": "He is a very caring professor if you need help or an extension he will give it to you. He really tries to get as much information to his students. He is really funny and encourages participation. He has an accent but it does not affect his teaching skills. He makes his lectures clear. Just do whats on the syllabus and study as much as you can.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d666cd60fca157e5e8f0" + } + }, + { + "text": "Took him bc everyone said he's amazing. Little did I know he's the harshest grader ever, who does literally no review. Doesn't try hard to make sure students actually know the material and talks really fast. Spends most of the class time trying to be \"funny\" and amuse his students instead of teaching. Would not recommend if you struggle with math.", + "pos": 0.172, + "neu": 0.689, + "neg": 0.139, + "_id": { + "$oid": "6711d666cd60fca157e5e8f1" + } + }, + { + "text": "Don't know why he gets SO many good ratings. Such a hard professor who rushes through his math topics because he gets sidetracked with jokes. If you don't do all the recommended practice problems, you're gonna FAIL. He's helpful in office hours, but his exams are the hardest exams ever. Doesn't curve. EVER. Or grade nicely.", + "pos": 0.171, + "neu": 0.741, + "neg": 0.088, + "_id": { + "$oid": "6711d666cd60fca157e5e8f2" + } + }, + { + "text": "Don't understand the hype about him. He's okay at best, but he rushes the material a lot, especially the last section. Barely reviews for exams. You need to do all of the practice extra work to ace his class, or else you fail. His exams are the hardest math exams I've ever taken and a lot of his students end up failing.", + "pos": 0.057, + "neu": 0.814, + "neg": 0.129, + "_id": { + "$oid": "6711d666cd60fca157e5e8f3" + } + }, + { + "text": "Tek Bam is one of the best Calculus professors of CCNY. Calc 2 is a hard subject but he goes through all the materials very efficiently. It does take attendance but if you skip a class, it's very hard to catch up because he covers a lot in just one class. Will extend the HW date and tries very hard to be funny. Overall I would take his class again", + "pos": 0.155, + "neu": 0.78, + "neg": 0.065, + "_id": { + "$oid": "6711d666cd60fca157e5e8f4" + } + }, + { + "text": "Had Bam in pre calc then for calc 2 in summer and I can safely say he's one of the best calculus professors at ccny. He explains the material clearly and does the proofs in lecture .Offers help outside of class. Exams are pretty fair it's mainly based on lecture notes, and doesn't give you the hardest questions he can find. Take him if you can.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d666cd60fca157e5e8f5" + } + }, + { + "text": "Really good professor, mad funny too, one of the best professors in CCNY, if you have the opportunity to take him, I wouldn't think twice!", + "pos": 0.363, + "neu": 0.543, + "neg": 0.094, + "_id": { + "$oid": "6711d666cd60fca157e5e8f6" + } + }, + { + "text": "The best math professor CCNY has! His lectures are very clear and easy understanding. All his exams are lecture based and very easy. He also gives extra credit.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d666cd60fca157e5e8f7" + } + }, + { + "text": "Tek Bam was an Amazing professor I coulf have ever asked for. If you are reading this and u read that he has an \"heavy accent\" its not that bad and if your asian u would love him. He has 3 tests and 1 final, he cares a lot of his class and treats everyone well. Take him, you wont regret it.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d666cd60fca157e5e8f8" + } + }, + { + "text": "If you actully want to learn something then take his class, his notes are gold but wheather you will pass the class or not depands on you, you have to work for it. Do the pratice problems, the examples he gives and pay attention in class. The thing is he doesn't drop lowest score exam out of three so you can't mess up.", + "pos": 0.129, + "neu": 0.799, + "neg": 0.072, + "_id": { + "$oid": "6711d666cd60fca157e5e8f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d667cd60fca157e5e8fb" + }, + "professor_name": "Thea Pignataro", + "rating": 3.1, + "department": "Mathematics department", + "comments": [ + { + "text": "In all honesty shes not the worst and definitely not the best. Her lectures are hard to follow at times but her tests are so easy it takes 15-20 minutes for each of them. On the other hand, you only get graded on tests (5% extra credit for hw). The class is a mixed bag with very easy exams and her partials are godly but pretty bad lectures. Easy A.", + "pos": 0.322, + "neu": 0.595, + "neg": 0.083, + "_id": { + "$oid": "6711d667cd60fca157e5e8fc" + } + }, + { + "text": "I don't recommend taking her class. She is not effective at teaching and is disrespectful to her students.", + "pos": 0.0, + "neu": 0.774, + "neg": 0.226, + "_id": { + "$oid": "6711d667cd60fca157e5e8fd" + } + }, + { + "text": "no. just no. you'll need god on your side.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e8fe" + } + }, + { + "text": "Only take her if you've already taken calc previously, and if you're willing to self-study for absolutely everything. Otherwise, not the greatest. Doesn't do loads of practice problems, which would be hard if that's your main way of learning math. Only teaches the theories behind things. Her exams are easy if you just self study and commit to it.", + "pos": 0.077, + "neu": 0.811, + "neg": 0.112, + "_id": { + "$oid": "6711d667cd60fca157e5e8ff" + } + }, + { + "text": "really rude to students and has an attitude with everyone. If u've taken calc before then she'll be alright for u but if it's ur first time then stay away!! Only good thing about this prof is that she gives candy after each exam", + "pos": 0.121, + "neu": 0.835, + "neg": 0.044, + "_id": { + "$oid": "6711d667cd60fca157e5e900" + } + }, + { + "text": "no. just no.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e901" + } + }, + { + "text": "Super rude, screams, it takes forever to grade, avoid", + "pos": 0.239, + "neu": 0.307, + "neg": 0.454, + "_id": { + "$oid": "6711d667cd60fca157e5e902" + } + }, + { + "text": "Rudess professor at CCNY I'm shocked that she still works at Ccny. 1-she makes fun of the class for not knowing certain things 2-would tell students that they will fall class in front of the lecture 3- does NOT do enough practice problems and overcomplicates the simplest thing 4-only teach by theories and is always surprise the avg is 60% & lower", + "pos": 0.077, + "neu": 0.795, + "neg": 0.128, + "_id": { + "$oid": "6711d667cd60fca157e5e903" + } + }, + { + "text": "She's a pretty decent professor. If you learn math best by doing theory, take her class. If you're like me (who had to drop, unfortunately) and need problems to learn rather than theory, find a different professor.", + "pos": 0.206, + "neu": 0.644, + "neg": 0.15, + "_id": { + "$oid": "6711d667cd60fca157e5e904" + } + }, + { + "text": "Average professor. Lectures are mostly theory. Gives partial credit and sometimes rude to students.", + "pos": 0.148, + "neu": 0.682, + "neg": 0.17, + "_id": { + "$oid": "6711d667cd60fca157e5e905" + } + }, + { + "text": "She is a caring professor who tries to help students understand the course material and pass. She also helps students even out of class.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e906" + } + }, + { + "text": "One of the worst professors I have ever had the misfortune of attending class. All lectures are drawn out and incredibly complicated, almost impossible to understand becaus she teaches using theories that make no sense when actually learning. Not tech savvy, has incredible bias, makes fun of students for not knowing material they have not learned", + "pos": 0.056, + "neu": 0.818, + "neg": 0.126, + "_id": { + "$oid": "6711d667cd60fca157e5e907" + } + }, + { + "text": "If you want to learn calculus then do not take this Professor. She pulled my grades very badly and that is pulling me away from my intended major. More than half of the class dropped out after first exam.", + "pos": 0.031, + "neu": 0.887, + "neg": 0.081, + "_id": { + "$oid": "6711d667cd60fca157e5e908" + } + }, + { + "text": "I did not learn anything in that class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e909" + } + }, + { + "text": "Just don't take her unless you like teaching yourself. She gets easily pissed and she likes to explain theoretically than with examples. Homework is not part of the grade but still have to do as extra credit. She doesn't curve but she gives a lot of partial credits. 3 tests(lowest one drop) and her own final. Just do the old exams for this.", + "pos": 0.164, + "neu": 0.765, + "neg": 0.072, + "_id": { + "$oid": "6711d667cd60fca157e5e90a" + } + }, + { + "text": "Thea is a respected mathematician who prefers more than the prestige or intellectualism of teaching the most advanced mathematics, to teach the basics to students who haven't had any opportunities yet. She is a perfectionist who comes off as strict but it is incredible to study with someone who expects so much while you are just starting out.", + "pos": 0.121, + "neu": 0.853, + "neg": 0.026, + "_id": { + "$oid": "6711d667cd60fca157e5e90b" + } + }, + { + "text": "Very lenient grading, apart for the final. Homework is useful and can provide 5% extra credit. 2 quizzes and 2 tests. Explains the concepts well. Otherwise, catch up yourself with the textbook and go talk to her after class: she will explain anything if you ask her.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e90c" + } + }, + { + "text": "One of the worst professors I have taken at CCNY. She consistently came late (sometimes 40+ minutes) to class, and her lectures were useless. She doesn't actually explain any concepts and just does example problems without explaining. Unfortunately, attendance is mandatory, so you can't even use the time to study on your own.", + "pos": 0.055, + "neu": 0.788, + "neg": 0.158, + "_id": { + "$oid": "6711d667cd60fca157e5e90d" + } + }, + { + "text": "the lecture is pointless but her tests are easy. Just self study and do her suggested HW and you will easily pass the class.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e90e" + } + }, + { + "text": "She really likes to explore the concepts instead of doing examples. Didn't learn much in class, stopped going for two months. Found that I could teach myself better because lecture was really pointless, when someone could sign you in. The exams are questions pulled out of the \"optional homework\" and previous exams on her website.", + "pos": 0.1, + "neu": 0.868, + "neg": 0.032, + "_id": { + "$oid": "6711d667cd60fca157e5e90f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d667cd60fca157e5e911" + }, + "professor_name": "John Adamski", + "rating": 4.7, + "department": "Mathematics department", + "comments": [ + { + "text": "If anyone asks who's the best professor you've had at CCNY, Dr. Adamski is the first person to come to mind. He's a chill, very knowledgeable man who knows how to explain his lectures thoroughly. He is very caring when it comes to his students.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e912" + } + }, + { + "text": "I have to agree that professor Adamski is one of the greatest to exist; HOWEVER, please don't rely on just him to pass. Super generous but at the end of the day you have to put in time to study and understand difficult topics he introduces in class. Easy to fall into the idea that you can pass just bc the professor has a good rating. + don't cram", + "pos": 0.222, + "neu": 0.739, + "neg": 0.039, + "_id": { + "$oid": "6711d667cd60fca157e5e913" + } + }, + { + "text": "This is the first time I am Rating a Professor; Professor Adamski is just Awesome! It is easy to understand if you concentrate in his class; I took him in the Summer of 2023 4week, and it didn't feel like the course was dense even in just 4 Weeks. I hope everyone gets like Professor Adamski in every Math class.", + "pos": 0.182, + "neu": 0.788, + "neg": 0.03, + "_id": { + "$oid": "6711d667cd60fca157e5e914" + } + }, + { + "text": "For this class you will definitely need to take your time to invest into truly understanding the course, get ready to study often and if you are running into any sort of confusion with any of the content from the course itself do not be afraid to ask the professor questions as he does an amazing job helping students in class in any way possible.", + "pos": 0.187, + "neu": 0.78, + "neg": 0.033, + "_id": { + "$oid": "6711d667cd60fca157e5e915" + } + }, + { + "text": "His lectures are very clear and easy to follow. He explains things very well. Grade is based off of weekly quizzes, two midterms, and the final.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e916" + } + }, + { + "text": "I had him this semester and he was by far one of the best math professors. Your grade is calculated on 2 exams, weekly quizzes, and finals. He is very caring, answers any questions you have, and sometimes goes over hw questions as well. He also helps includes his lessons on his own website for guidance to help us complete the homework and to study.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e917" + } + }, + { + "text": "One of the best professors at ccny. His lectures are very easy to understand and he even posts the notes from class online for everyone to access. You can tell he is really passionate about teaching and cares about his students. If you have to opportunity to take him do it.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e918" + } + }, + { + "text": "Best 190 prof at CCNY", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e919" + } + }, + { + "text": "Adamski is simply amazing. I had him online and he recorded and posted notes for every class. His lectures were straight forward and if you pay attention, youll actually understand it. He is open to students and listens to their request. The only thing that held me back from this class was the course final.", + "pos": 0.096, + "neu": 0.88, + "neg": 0.024, + "_id": { + "$oid": "6711d667cd60fca157e5e91a" + } + }, + { + "text": "Class is structured in a way where achieving a B+ or A- is very do-able, but the A is incredibly hard. Gives a ton of HW that is only worth 15% of your grade. You must receive at least a 94% average on your exams to get an A in the course. Would avoid if you're someone that wants an A in this course. His teaching is fine.", + "pos": 0.062, + "neu": 0.872, + "neg": 0.066, + "_id": { + "$oid": "6711d667cd60fca157e5e91b" + } + }, + { + "text": "Pretty standard as a math professor goes. He teaches through lectures like most math teachers. He is pretty young compared to other profs so he makes his class really convenient. He posts his lecture notes on his website along with he video of the Zoom calls.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e91c" + } + }, + { + "text": "Overall a good caring professor who truly cares about us. Teaches very well and puts up all his lectures online for us to see again. Material is hard but you need to do the homework and pratice the older tests he posts with answers for review. In my opinion, hes the best calculus 2 professor at CCNY and made distanced learning bearable.", + "pos": 0.216, + "neu": 0.767, + "neg": 0.017, + "_id": { + "$oid": "6711d667cd60fca157e5e91d" + } + }, + { + "text": "Probably the best math professor in city. John is very caring and makes Math212 feel much easier than it really is. John cares about the progress of every student and is always available to help out. This is probably the best choice if you are taking a math course or specifically math212", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e91e" + } + }, + { + "text": "Always maintained a calm, positive attitude during lectures. HW material is more difficult than what is taught during lectures. Study the HW for the tests or you will bomb the tests. He makes you work for a good grade, but it is possible if you just put the extra effort in. Not the worst math class to take, but wouldn't recommend as a first choice.", + "pos": 0.138, + "neu": 0.773, + "neg": 0.089, + "_id": { + "$oid": "6711d667cd60fca157e5e91f" + } + }, + { + "text": "probably the best math professor I had at CCNY. he genuinely cares and doesn't have problem explaining things again. I recommend him to everyone if he is available", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e920" + } + }, + { + "text": "Awesome professor and he posts all the notes online so you dont struggle. The material for the class isnt difficult either and he never gives trick questions. The final is a huge part of your grade and so are the quizzes.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e921" + } + }, + { + "text": "Great, kind, relatable professor. Means well for his students, does his best to teach. Tests are manageable, he puts all the previous tests on his website for plenty of practice. If you're in his class, you're in good hands. Better study for the final though, it's worth like 40% of the grade.", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e922" + } + }, + { + "text": "He is an awesome teacher. I found few teachers like him. He is one of the best teachers in CCNY. Mathlab was so easy which was easy 10%. He will help you to understand the topic. But be careful about the final, it is 40% of the whole grade. I got 88 on final which dragged my grade to A-. He doesn't curve at all. I missed A for little.", + "pos": 0.187, + "neu": 0.762, + "neg": 0.051, + "_id": { + "$oid": "6711d667cd60fca157e5e923" + } + }, + { + "text": "I recommend him to take because he provides much effort to teach the students in a calm way. Always finish the homework on time so that you don't fall behind. Practice his old exams. Attend all classes to understand each math concepts. He is so generous that he takes little points off from the exam. He curves the grades. He helps you after class.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e924" + } + }, + { + "text": "he is an amazing teacher very nice and easy he knows how to teach and his way of teaching is very easy and simple exams are not too difficult he drops the lowest the time goes fast in his class you wont feel bored homework is not required but it will help alot if you do them", + "pos": 0.23, + "neu": 0.743, + "neg": 0.027, + "_id": { + "$oid": "6711d667cd60fca157e5e925" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d667cd60fca157e5e927" + }, + "professor_name": "Michael Lubell", + "rating": 4.4, + "department": "Physics department", + "comments": [ + { + "text": "This was an easy class. Grade is based on midterm and final. However, extra credit is applied if you participate, so be sure to participate because in case you do bad on the tests, the extra credit can back it up for you.", + "pos": 0.205, + "neu": 0.728, + "neg": 0.067, + "_id": { + "$oid": "6711d667cd60fca157e5e928" + } + }, + { + "text": "Easiest class ever. I didn't try or pay attention at all and still ended up with a B. The Grade is based on participation (Extra credit if you ask/answer questions in class) and a midterm and final which are open book.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e929" + } + }, + { + "text": "Mans a goatie and a king.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e92a" + } + }, + { + "text": "Take his class! He is easy and fairgoing. His lectures are important and explains it so well. Participation can help your grade go up! I really recommend him.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e92b" + } + }, + { + "text": "Bruh his lectures are something else. Also, he is so experienced in the subject, just wiki his name. Getting good grades is easy. You gotta participate to get good grade. Its gonna cover for your bad exam grades. The class is big like 300 ppl. So you gotta have patience. Very nice professor TBH. Take his class wont regret.", + "pos": 0.231, + "neu": 0.721, + "neg": 0.049, + "_id": { + "$oid": "6711d667cd60fca157e5e92c" + } + }, + { + "text": "he is a really good professor loved his class", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e92d" + } + }, + { + "text": "Professor Lubell is a gem at city college. Very easy class. Three test and participation matters to help boost your grade if you don't do well on the test. Take astronomy 30500 with professor Lubell, you won't regret it!", + "pos": 0.261, + "neu": 0.7, + "neg": 0.038, + "_id": { + "$oid": "6711d667cd60fca157e5e92e" + } + }, + { + "text": "Would love to take his class again. I don't know why people haven't rated him but he is a very good professor. Participate as much as you can and don't worry if you are wrong. He will give you good feedback and he's chill.", + "pos": 0.243, + "neu": 0.684, + "neg": 0.073, + "_id": { + "$oid": "6711d667cd60fca157e5e92f" + } + }, + { + "text": "hes so sweet. participation is extra credit and attendance is not mandatory. his class is not stressful at all. take him", + "pos": 0.321, + "neu": 0.634, + "neg": 0.046, + "_id": { + "$oid": "6711d667cd60fca157e5e930" + } + }, + { + "text": "The easiest class of your life. Everything is so straightforward and simple. Do yourself a solid and take ASTRO with Lubell", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e931" + } + }, + { + "text": "Loved this professor. He makes a complex course super easy. He also knows how to make smart people feel stupid LOL.", + "pos": 0.479, + "neu": 0.425, + "neg": 0.096, + "_id": { + "$oid": "6711d667cd60fca157e5e932" + } + }, + { + "text": "Professor Lubell is the sweetest. He's very passionate about what he teaches. Grades are based off the midterm and final, both are multiple choice. He also gives extra points for participating in class. Only thing I'd say is I wouldn't recommend this class to anyone who isn't really into science it may not be interesting for you.", + "pos": 0.06, + "neu": 0.87, + "neg": 0.07, + "_id": { + "$oid": "6711d667cd60fca157e5e933" + } + }, + { + "text": "This professor is awesome! He is very knowledgeable and knows what he is talking about. He just gave us a midterm and final each being multiple choice! Take him if you can!!", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e934" + } + }, + { + "text": "Professor Lubell is very strict about how he wants things to be done. He hates multiple-choice questions, so all the exams are true and false questions.", + "pos": 0.094, + "neu": 0.808, + "neg": 0.098, + "_id": { + "$oid": "6711d667cd60fca157e5e935" + } + }, + { + "text": "Professor Lubell is honestly a GEM in CCNY. His purpose in teaching is more so to share his passion and knowledge about astronomy rather than making his students' lives miserable. This is an easy A class if you pay attention and participate. I am usually not an Astronomy person somehow he made this subject so interesting to me.", + "pos": 0.214, + "neu": 0.721, + "neg": 0.065, + "_id": { + "$oid": "6711d667cd60fca157e5e936" + } + }, + { + "text": "He is a very nice professor who has a very kind heart. He curves everything and tries to make you the most out of it. His lectures are interesting but a little bit boring if you are not a science person. He is caring and he tries to figure what is best for everyone. He also makes textbook optional but I advise to buy and do those assignment as EC.", + "pos": 0.226, + "neu": 0.745, + "neg": 0.03, + "_id": { + "$oid": "6711d667cd60fca157e5e937" + } + }, + { + "text": "One of the best orators I've ever seen. Interesting material, presented in an understandable manner. Participate in lectures to get extra credit points. Pay attention to \"Test Yourself\" questions and you'll get very high scores on the exams. Easiest A if you just put a little effort in.", + "pos": 0.217, + "neu": 0.758, + "neg": 0.025, + "_id": { + "$oid": "6711d667cd60fca157e5e938" + } + }, + { + "text": "Nice guy, cares about the class learning. Extra credit for in class participation. Exams are intimidating. Attendance matters if you don't have a friend in class to sign you in. Final exam will save your ass if you didn't do great rest of semester because of his grading algorithm.", + "pos": 0.195, + "neu": 0.615, + "neg": 0.19, + "_id": { + "$oid": "6711d667cd60fca157e5e939" + } + }, + { + "text": "The lectures contain a lot of information but he does post slides on BB afterwards. There are 3 exams, half of the questions are Test Yourself Qs from the textbook and the other half from overlap in the textbook and lecture. He does offer EC which really helps towards your overall final exam. Would take again, he is very passionate about astronomy!", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e93a" + } + }, + { + "text": "Professor Lubell is the best lecturer at City College. He will indirectly makes you astronomy. Because really, there is a whole new world out there waiting to be discover. And your first step is to take professor Lubells astronomy class.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d667cd60fca157e5e93b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d668cd60fca157e5e93d" + }, + "professor_name": "William Behnken", + "rating": 4.4, + "department": "Fine Arts department", + "comments": [ + { + "text": "This class is an easy A. But it is very boring and sometimes the professor has mood swings. He picks on you if you are not paying attention and have your phone out. Overall, this class is an easy GPA booster. Take it.", + "pos": 0.118, + "neu": 0.813, + "neg": 0.069, + "_id": { + "$oid": "6711d668cd60fca157e5e93e" + } + }, + { + "text": "He is the best prof ever! Take him and you wont regret it! Easy class ever, done be stupid and get on his nerves. Do what u have to do and, youll be fine!", + "pos": 0.207, + "neu": 0.63, + "neg": 0.162, + "_id": { + "$oid": "6711d668cd60fca157e5e93f" + } + }, + { + "text": "This guy has frequent mood swings. If you are seen not paying attention he will call you out. Lectures are a snooze fest. 2 papers and exams which are trivial. You aren't allowed to have any electronics out. You need to ask him to use the restroom. Doesn't treat you like an adult. Some of my worst engineering professors are more tolerable than him.", + "pos": 0.0, + "neu": 0.862, + "neg": 0.138, + "_id": { + "$oid": "6711d668cd60fca157e5e940" + } + }, + { + "text": "Two papers and two exams, grades very leniently for both. Provides an outline of what to include in the essays include everything from the outline and follow an essay format to receive A+. Provides exact questions to the midterm and final before the exams. His biggest pet peeve is when students are not paying attention (he will call you out!)", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e941" + } + }, + { + "text": "He's a pretty fair grader and gives plenty of extra credit assignments. The papers and exams are really straightforward and he gives an exact outline of what you're supposed to write about/study for. Just beware that he dislikes people skipping class or showing up late and is a bit old-fashioned in certain ways. He definitely means well though.", + "pos": 0.218, + "neu": 0.742, + "neg": 0.039, + "_id": { + "$oid": "6711d668cd60fca157e5e942" + } + }, + { + "text": "He is the man provide easy A+ to every one. Only 2 papers, 1 midterm, 1 final and some extra credits. Easily grade as P/P+ and A in 2 papers. Midterm and final are exactly same with the review sheet. If you want take some liberal arts to raise your GPA, take him!", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e943" + } + }, + { + "text": "He is a great teacher, and I like how he provides backgrounds of the artworks he presents in class; long as you show up you will pass. My only complaint is his personality, which is tolerable, but he has weird mood swings that throw me off, but he definitely is passionate about teaching art and making sure students understand the content", + "pos": 0.211, + "neu": 0.739, + "neg": 0.05, + "_id": { + "$oid": "6711d668cd60fca157e5e944" + } + }, + { + "text": "He makes this class extremely easy and stress free. All you have to do is come to class and not use your phones. There is a midterm and a final. Two papers, first one is pass/fail, second one graded with leniency. Pay attention if you like because he will do a review before the exam and go over all the answers. Review Sheets are EXACTLY like exams", + "pos": 0.149, + "neu": 0.793, + "neg": 0.058, + "_id": { + "$oid": "6711d668cd60fca157e5e945" + } + }, + { + "text": "The midterm and final are exactly the same as the review sheets. There are two museum reports. He doesn't take off points from late papers. He's an easy grader. Attendance is very important because his exams and reports are heavily based on lectures. You can't get the same information from the textbook. Highly recommended!", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e946" + } + }, + { + "text": "He takes this class too seriously despite it being a liberal arts class. If you're in class, make sure you're paying attention because he will call you out. It's a boring class. Exams are the same as the review sheets. The essays are annoying to write but he's a good graders. He gives extra credit as well. Overall easy class but annoying.", + "pos": 0.201, + "neu": 0.69, + "neg": 0.109, + "_id": { + "$oid": "6711d668cd60fca157e5e947" + } + }, + { + "text": "Easy A! Don't talk in class, use your phone, or sleep. Things that'll make you get on his bad side. Show up to class (make sure to have coffee bc it a bit boring and the atmosphere of the class makes you sleepy) and take notes. You don't even need to crack open a textbook. MAKE SURE YOU DO EVERY EXTRA CREDIT. Show up to every class too!", + "pos": 0.152, + "neu": 0.775, + "neg": 0.073, + "_id": { + "$oid": "6711d668cd60fca157e5e948" + } + }, + { + "text": "He is a well rounded professor who is really passionate about teaching art. If you take good notes, and read the book, you can get an easy A+. Remember not to use cellphone in the class. Highly recommended.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e949" + } + }, + { + "text": "He is super nice, took him for intro to drawing. All you really have to do is just show up and try. Even if you suck at drawing he will give you a good grade because at least you are present and drawing. He is very helpful, i learned a lot about shading and perspective. Sometimes he brings snacks and he doesn't like lateness. He is also quite wise.", + "pos": 0.194, + "neu": 0.746, + "neg": 0.06, + "_id": { + "$oid": "6711d668cd60fca157e5e94a" + } + }, + { + "text": "This prof is super easy as long as you show him you care about the class. Exams are verbatim from his review sheets and the grading criteria for the papers is easy. He is a hilarious guy in my opinion. \"Abraham Lincoln didn't go to P.S.7\" funniest thing ever. Show him your interested during class and he will remember and like you.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e94b" + } + }, + { + "text": "Absolute beauty! I took him for Art100, and just had to take him again for Art 102. His passion excites his students, and his movements and mannerism across the classroom makes him a joy to behold. Plus he's an easy grader.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e94c" + } + }, + { + "text": "Yes, he is one of the easiest professors out there, so long as you do the work. He always goes mad whenever someone uses their electronics. (He even gets annoyed when you go out to pee, like seriously?!) The only annoying thing about him is that he always lectures us about respect, but he himself does not respect us as he ALWAYS go over the time!!!", + "pos": 0.099, + "neu": 0.749, + "neg": 0.152, + "_id": { + "$oid": "6711d668cd60fca157e5e94d" + } + }, + { + "text": "Honestly an AMAZING professor. His own artwork is beautiful. This was my first ever art course (im a Bio major) and it really increased my interest in and appreciation for art. The professor is kind ,cares about us and our grades, he gives review sheets and sets clear expectations He looks 50 (hes 72) and dances around in class! Very active overall", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e94e" + } + }, + { + "text": "HE IS TRULY THE BEST!!!!", + "pos": 0.734, + "neu": 0.266, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e94f" + } + }, + { + "text": "We can not call him a elder professor, young people does not have his energy. Im very happy to meet him and learn from his amazing knowledge. Thank you Prof. Behnken.", + "pos": 0.263, + "neu": 0.69, + "neg": 0.046, + "_id": { + "$oid": "6711d668cd60fca157e5e950" + } + }, + { + "text": "Professor Behnken is one of the nicest and most inspirational people I have ever met! Not only is he a nice and genuinely honest person, he is also an exceptional professor and printmaker. Who ever said those who can do and those who can't teach have NEVER met Bill. Behnken is one of the greatest living artists in America today... or ever! Take him", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e951" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d668cd60fca157e5e953" + }, + "professor_name": "Jon Horvitz", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Great professor, lectures are always engaging and easy to follow!", + "pos": 0.581, + "neu": 0.419, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e954" + } + }, + { + "text": "TAKE HIM. literally one of the best professors I have ever had. his lectures are interesting and he makes them entertaining as well. Hilarious guy and very kind. grade is based off of one quiz and two exams which are multiple choice and you're sure to do well if you study. Loved having him as my professor", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e955" + } + }, + { + "text": "I think many can agree that Professor Horvitz class was interesting, and one could say memorable. There are two exams and if you engage in class, I guarantee you'll pass. He repeats sentences so it can get imprinted in your mind, and the PowerPoints are helpful when studying\n\nonly thing I didn't like was that it was mostly a *listening* class", + "pos": 0.195, + "neu": 0.775, + "neg": 0.03, + "_id": { + "$oid": "6711d668cd60fca157e5e956" + } + }, + { + "text": "I did not like this class at all because the lectures were really boring. I had zero interest in the course to begin with. He has two exams and a quiz I don't think attendance even counts because it was not factored in my grade even though I attended most of the lecture sessions along with recitation.", + "pos": 0.049, + "neu": 0.875, + "neg": 0.076, + "_id": { + "$oid": "6711d668cd60fca157e5e957" + } + }, + { + "text": "grade is just reading weekly article + posting comments and then one 6-7 page paper at the end of term. just be consistent, say a few things during class, and you will be fine. He literally brings us coffee and cookies and chocolate. absolutely amazing!", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e958" + } + }, + { + "text": "OMG HE IS AMAZING! IM LITERALLY WRITING THIS FROM HIS CLASS NOW HAHA. Im taking V500 and he has made biology SO fun! TAKE HIM TAKE HIM AND TAKE HIM. Grades are based on participation, midterm, and final. The exams are also not cumulative. Thank you for making bio fun!!!", + "pos": 0.275, + "neu": 0.692, + "neg": 0.032, + "_id": { + "$oid": "6711d668cd60fca157e5e959" + } + }, + { + "text": "relatively easy class. grade is 50% midterm, 50% final (and final is not cumulative) all multiple choice. lectures are recorded and recitation helps. \n\nto get a good grade just rewatch lectures and pay attention to the questions he asks during the lecture they come up during the test.", + "pos": 0.156, + "neu": 0.818, + "neg": 0.026, + "_id": { + "$oid": "6711d668cd60fca157e5e95a" + } + }, + { + "text": "Its an easy A. Theres nothing more to say about it. Class is graded on two tests, but if you have good notes, they'll be easy. Pay attention to the example questions that he asks during class! He's an awesome professor that makes the material interesting.", + "pos": 0.315, + "neu": 0.659, + "neg": 0.026, + "_id": { + "$oid": "6711d668cd60fca157e5e95b" + } + }, + { + "text": "the most kindest professor ever! show up to class and take notes. 2 exams only so rewatch the lectures if you can.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e95c" + } + }, + { + "text": "LOVE THIS GUY! A true gem in this school. TAKE HIM!!", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e95d" + } + }, + { + "text": "I can't say enough good things about Jon. His lectures are amazing, he's kind, funny and engaging. I never though I'd like science this much! If you have the opportunity, TAKE ANY/ALL OF HIS CLASSES! This class was graded 25% on weekly blog posts and 75% on a final paper so not a lot to go on, but he's an easy grader/my FAVORITE professor! 15/10!", + "pos": 0.255, + "neu": 0.704, + "neg": 0.041, + "_id": { + "$oid": "6711d668cd60fca157e5e95e" + } + }, + { + "text": "Professor Horvitz was an absolutely amazing!! He simplified topics for us to understand and always answered questions. One of the most caring and considerate professors and it shows even online. Class is graded on 2 tests both non-cumulative. Lectures were fun to attend and tests are mainly lecture material so take notes! Highly recommended!!!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e95f" + } + }, + { + "text": "One of the most easygoing profs I've taken. So laid back, yet always gets the work done. Lectures were fun and thorough. Makes sure everyone understands the lecture with fun little questions. Simplifies lots of the material and light readings. Exams are 40-50 mc ques. 2 exams, both 50% of your grade, so make sure to study.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e960" + } + }, + { + "text": "Professor Horvitz is definitely the BEST professor ive ever had in my 4 years of college. He builds a bonding relationship with his students and makes class fun for us. Definitely recommend to take his class!!!", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e961" + } + }, + { + "text": "Best professor. funny and caring. You wont regret taking his class, just makes your own notes, when you hear something important and it would probably be in the exam. 2 exams thats all. He doesn't extend the material, he goes to the point and I like that.", + "pos": 0.29, + "neu": 0.684, + "neg": 0.026, + "_id": { + "$oid": "6711d668cd60fca157e5e962" + } + }, + { + "text": "Whatever class you see he is teaching, TAKE IT! J Horvitz was the best professor I have taken online in the midst of everything going on, and in general. He definitely teaches where you can understand and catch on to the material. Lectures are recorded and going is just an amazing experience. He makes it fun and does want us to pass and understand", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e963" + } + }, + { + "text": "Professor Horvitz is definitely the BEST professor ive ever had in my 4 years of college. Although the material itself might be difficult, he explains it so simply, helps you understand and is great and passionate at what he does. I truly felt as if he was our friend. He builds a bonding relationship with his students and makes class fun for us. !!", + "pos": 0.327, + "neu": 0.643, + "neg": 0.029, + "_id": { + "$oid": "6711d668cd60fca157e5e964" + } + }, + { + "text": "I have not received my grade yet, but regardless of what he gives me he is a great teacher. He loves what he teaches and teaches it in a way that makes sense. I would recommend students to take his class, especially those who have a lot of other classes and would rather be graded on 2 exams.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e965" + } + }, + { + "text": "Honestly one of the best professors in the psychology department. He made materials easier than the textbook and really put in the effort to make sure that everyone understands the material. Your grades are based on two exams and they're both worth 50% each so make sure you show up to class and listen because tests are very lecture heavy.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e966" + } + }, + { + "text": "Hands down the best professor I've ever had, no doubt about it!!!! His lectures are always something to look forward to and his teaching style was so inspirational, I learned a lot in this class. Also, he actually makes an effort of connecting with his students. YOU WON'T REGRET TAKING HIM!! He made online classes so much easier!", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d668cd60fca157e5e967" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d669cd60fca157e5e969" + }, + "professor_name": "Joseph Dacanay", + "rating": 2.5, + "department": "Mathematics department", + "comments": [ + { + "text": "don,t take this class if you want to pass math", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d669cd60fca157e5e96a" + } + }, + { + "text": "horrible professor i would not recommend taking a math class with him because he goes through the lessons very fast, doesn't give you time to write and understand the material.", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d669cd60fca157e5e96b" + } + }, + { + "text": "Horrible Professor. I would not recommend taking a math class with him. He rushes through the lessons and doesn't give you time to write and understand the concepts.", + "pos": 0.0, + "neu": 0.823, + "neg": 0.177, + "_id": { + "$oid": "6711d669cd60fca157e5e96c" + } + }, + { + "text": "Every time i had this class on my schedule i was miserable. I withdrew because at that point i didn't understand anything. Quizzes, homework, exams, rushing through lessons I had to give up even though i didn't want to. I need time to understand things, and he expected you to understand within that week! Take this class with a better Professor!", + "pos": 0.044, + "neu": 0.88, + "neg": 0.076, + "_id": { + "$oid": "6711d669cd60fca157e5e96d" + } + }, + { + "text": "I dropped the class because the professor was moving too fast for me. I'm not stupid by any sense of the word but with weekly quizzes about subjects learned LESS THAN 48 HOURS AGO... why be surprised I was drowning so quickly? If you can pick up things easily, you should be fine, but if you're like me and need time to learn, DO NOT TAKE DACANAY!!!!", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d669cd60fca157e5e96e" + } + }, + { + "text": "Just make sure you understand the materials. If you don't, just ask him during class or go to his office hours and you should be fine. He does rush through the lessons and explains everything fast tho. Lots of hw and quizzes but they are all *optional* aka extra credits. Just pass the 4 midterms and final exam you'll pass. Overall, he's OK.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d669cd60fca157e5e96f" + } + }, + { + "text": "This is a professor who wants you to succeed. He is available for office hours. He provides a ton of extra credit opportunities. He is a great professor. Pay attention in class, and study for the tests. I am not good in math and I was still able to pass! He makes the class redeemable. Definitely would recommend.", + "pos": 0.251, + "neu": 0.696, + "neg": 0.053, + "_id": { + "$oid": "6711d669cd60fca157e5e970" + } + }, + { + "text": "I took Joseph Dacanay's Math150 in the Fall of 2023, and I quickly realized that as long as I knew the material I wouldn't need to come to class. His classes are just him explaining concepts in depth from the actual textbook. He tries to scare students for the midterms and finals but they end up being very easy.", + "pos": 0.068, + "neu": 0.899, + "neg": 0.033, + "_id": { + "$oid": "6711d669cd60fca157e5e971" + } + }, + { + "text": "he is a good professor. Even though he takes attendance every class but its not mandatory to be present.he gives homework and quizzes which are basically optional I think they are like extra credit because he adds those points to the midterm. His exams are easy and some of those questions in exams are from the mock exam he provides before midterms.", + "pos": 0.169, + "neu": 0.762, + "neg": 0.068, + "_id": { + "$oid": "6711d669cd60fca157e5e972" + } + }, + { + "text": "He is a nice professor but he is a tough grader. I took him in fall 2021, it was a hybrid class. Please study and go to tutoring when they offer it. Do practice problems. Does not give extra credit. I received a NC in this class. That was my 2nd time taking him. I took it a third time the following semester with Israel Hernandez and Passed.", + "pos": 0.064, + "neu": 0.83, + "neg": 0.106, + "_id": { + "$oid": "6711d669cd60fca157e5e973" + } + }, + { + "text": "The professor is unfailingly difficult to understand as he rushes through the lessons without enough explanation.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d669cd60fca157e5e974" + } + }, + { + "text": "I only took this class because I needed it to graduate. He doesn't upgrade grades as the semester progresses so you're in the dark until the end. He takes points off for everything; even if you show your work and get the right answer. He manages to turn something easy into something hard to understand. Doesn't offer extra credit either ..", + "pos": 0.045, + "neu": 0.899, + "neg": 0.056, + "_id": { + "$oid": "6711d669cd60fca157e5e975" + } + }, + { + "text": "Amazing professor, do the work an you will pass. Quizzes every class, so do your homework so you can pass! Three major exams throughout the semester.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d669cd60fca157e5e976" + } + }, + { + "text": "this class made me more miserable than my intro to political theory class.", + "pos": 0.0, + "neu": 0.775, + "neg": 0.225, + "_id": { + "$oid": "6711d669cd60fca157e5e977" + } + }, + { + "text": "The Professor is a somewhat of a tough grader but his grading criteria in my opinion is pretty straightforward. Make use of the quiz corrections and the textbook for the HWs and attend class to learn more in depth about the material and youll be fine.", + "pos": 0.128, + "neu": 0.849, + "neg": 0.022, + "_id": { + "$oid": "6711d669cd60fca157e5e978" + } + }, + { + "text": "Lots of quizzes and homework. Doesn't update grades so you're pretty much left in the dark until the end of the semester.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d669cd60fca157e5e979" + } + }, + { + "text": "I don't understand why he has such bad reviews.i had him for inperson and he was a great professor. He gave hw that was due wed. he send us an sample for the tests and the actual tests looked pretty much the same. I would take him again. very easygoing.", + "pos": 0.167, + "neu": 0.775, + "neg": 0.059, + "_id": { + "$oid": "6711d669cd60fca157e5e97a" + } + }, + { + "text": "I had to take math 80 during the summer so that i could go on to college algebra for the fall. We didn't do much the material is relatively easy so I can't speak on how he teaches more difficult subjects. We pretty much did online lectures then homework. The homework was also easy but it was a lot so don't procrastinate.", + "pos": 0.091, + "neu": 0.88, + "neg": 0.029, + "_id": { + "$oid": "6711d669cd60fca157e5e97b" + } + }, + { + "text": "Ignore the goofs comment above lol. Dacanay looks down on other students and has a sort of condescending tone towards people. Everything about him drains students more than they already are, not to mention that he doesnt even let us see what we did right or wrong on an exam. It just comes down to whether or not you can handle this guy.", + "pos": 0.041, + "neu": 0.877, + "neg": 0.082, + "_id": { + "$oid": "6711d669cd60fca157e5e97c" + } + }, + { + "text": "A lot of the classes he teaches are basic math courses, so he gets a lot of ppl fresh out of hs. These people will literally find ANY reason to blame things on him (aside from him being pretty rude) He still gives us plenty of room to pass, yet people do fail because they dont even try to do the work he gives out. Another thing, READ HIS EMAILS!", + "pos": 0.069, + "neu": 0.816, + "neg": 0.115, + "_id": { + "$oid": "6711d669cd60fca157e5e97d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66acd60fca157e5e97f" + }, + "professor_name": "Gennady Yassiyevich", + "rating": 4.2, + "department": "Mathematics department", + "comments": [ + { + "text": "Best professor I've ever had. He structures class in a very organized manner and goes through every topic thoroughly. Never give homework, so if you take this class make sure to study outside, you won't learn the material instantly simply by being in the lecture. Grades were based purely on exams but he has a very lenient grading system.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e980" + } + }, + { + "text": "Overall, not a particularly bad professor, because he did know what he was teaching, and he didn't explain it poorly. \n\nI would not take the professor again however because he had no idea how the homework system operated, which made it much more difficult for students to access it, and many students failed his class because of it.", + "pos": 0.047, + "neu": 0.826, + "neg": 0.127, + "_id": { + "$oid": "6711d66acd60fca157e5e981" + } + }, + { + "text": "He is an amazing professor who unveils the beauty of math theory. Analysis may feel wierd initially, but in the end, you'll grasp calculus comprehensively and unify multiple semesters of study into one theorem. HW is optional If you're eager to learn math, choose him; if you seek an easy A, consider another professor.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e982" + } + }, + { + "text": "don't take this class if you don't code !!!!!!!!!! he says you don't need any previous coding experience for this course, but that's a complete lie.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e983" + } + }, + { + "text": "If you want to learn math and retain it, you want Gennady. Some people aren't cut out for teaching, but he definitely is. I would take him for every math class if I could. Some of the material is difficult to understand but you just have to put in the work and complete the assignments he gives.", + "pos": 0.116, + "neu": 0.832, + "neg": 0.052, + "_id": { + "$oid": "6711d66acd60fca157e5e984" + } + }, + { + "text": "His passion for math is apparent through his teaching. Grade depends heavily on exams, which are extremely conceptual but he provides partial points if you demonstrate understanding. Includes extra credit problems on exams, which give you the chance to explore beyond the curriculum. Does not curve grades at all, though.", + "pos": 0.122, + "neu": 0.815, + "neg": 0.063, + "_id": { + "$oid": "6711d66acd60fca157e5e985" + } + }, + { + "text": "His lectures are very detailed and concise. His handwriting is top notch, its very clear and readable. Homework is optional for his class, but doing them will help you understand the class in a theoretical sense. He does problem solving for all the HW off hours and Extra credits before every exam. IMO, one of the best Math profs. Put in the work!", + "pos": 0.245, + "neu": 0.71, + "neg": 0.045, + "_id": { + "$oid": "6711d66acd60fca157e5e986" + } + }, + { + "text": "This guy is mad good at teaching math. He focuses on the more theoretical side of the topics so that you can be prepared to solve any kind of problem. He gives many extra lectures to help you do well on his exams and the final exam. He is also very based as he roasts other people for giving exams loaded with just boring calculations.", + "pos": 0.176, + "neu": 0.715, + "neg": 0.108, + "_id": { + "$oid": "6711d66acd60fca157e5e987" + } + }, + { + "text": "Great professor, is very lenient on grading but will definitely not give away points. Extra credit question are given on extra topics he teaches in optional lectures. He let's us use calculators to remove the annoying tedious calculations in linear algebra. He has a legendary mustache. \ufffd\ufffd", + "pos": 0.197, + "neu": 0.74, + "neg": 0.063, + "_id": { + "$oid": "6711d66acd60fca157e5e988" + } + }, + { + "text": "Would never take again.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e989" + } + }, + { + "text": "One of the better math professors at CUNY. You can hear his passion and appreciation for mathematics in his voice. Definitely recommend if you are trying to get the most out of a course. Provides challenging but rewarding problems to solve and a forgiving grading scheme to nurture understanding of the material.", + "pos": 0.357, + "neu": 0.592, + "neg": 0.051, + "_id": { + "$oid": "6711d66acd60fca157e5e98a" + } + }, + { + "text": "He's an amazing lecturer. He didn't exactly follow the department's syllabus, but taught other practical applications of linear algebra instead of just computation. He does extra problem-solving classes and extra credit classes which help you understand the subject matter in more depth. Solid choice if you really want conceptual understanding.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e98b" + } + }, + { + "text": "This professor is a knowledgeable mathematician, but not a great teacher. Often seems to be disorganized, despite what he expects students to take away from this class. There's also the fact that you're only graded on three test and a final. Therefore, I'd suggest that you'd avoid this class at all cost, for your own sake.", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d66acd60fca157e5e98c" + } + }, + { + "text": "His lectures aren't the greatest but if you show him the work, you do get partial credits back. The grading though I think should've been better. We were graded out of 3 exams and a final. Each exam contained 5 questions. If you are not within the boundaries or a slight code is off, it will be marked wrong.", + "pos": 0.104, + "neu": 0.804, + "neg": 0.093, + "_id": { + "$oid": "6711d66acd60fca157e5e98d" + } + }, + { + "text": "Worst math professor in the department. Never gives partial points, even if the answer is 99% close. He literally delayed so many students graduation. Gennady, you realize not everybody is going into academia after undergrad, right?", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d66acd60fca157e5e98e" + } + }, + { + "text": "Worst Professor ever. just based the grade on 3 exams and the final. does not care about any student and the lectures are really boring. He seems smart but doesn't know how to teach the class.", + "pos": 0.046, + "neu": 0.8, + "neg": 0.154, + "_id": { + "$oid": "6711d66acd60fca157e5e98f" + } + }, + { + "text": "exams are way harder than what he teaches in class. his class will make you think you're dumb but nah he just makes them unnecessarily hard. you can retake his class with another professor and literally get an F so thats shows that it wasn't you but the professor.", + "pos": 0.0, + "neu": 0.896, + "neg": 0.104, + "_id": { + "$oid": "6711d66acd60fca157e5e990" + } + }, + { + "text": "I had him for two semesters and I enjoyed every moment. He teaches very clearly and is very knowledgeable. The grading is very test heavy, but he is lenient when grading and grades more for knowledge rather than for computation errors. You won't need to use the textbook as long as you go to class and do the homework (not graded). Very solid choice.", + "pos": 0.096, + "neu": 0.832, + "neg": 0.072, + "_id": { + "$oid": "6711d66acd60fca157e5e991" + } + }, + { + "text": "He is truly a gem amidst the professors of CCNY. Attend all the lectures, take notes and do all the HW problems(he provides a list). Gives a lot of extra credit. His lectures are enthralling and keep you engaged.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e992" + } + }, + { + "text": "Dont get fooled by his grade on rate my professor!He writes everything on the board, and expects you to learn everything. Yes this class is difficult itself and requires a lot of math knowledge, but the professor could some how help. Instead he tells you to drop the class and basically calls you dumb even when you study very very hard. Dont recco", + "pos": 0.094, + "neu": 0.751, + "neg": 0.156, + "_id": { + "$oid": "6711d66acd60fca157e5e993" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66acd60fca157e5e995" + }, + "professor_name": "Honghui Yu", + "rating": 3.3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Im telling you right now, this class is straight up plug and chug. Just understand what the variables mean in the equations and pay attention to the theory in his lectures. Do the hw on your own and ur basically good for the exams. If youre a good/hardworking student, you will resonate more with the 3-4-5 reviews instead of the 1-2s.", + "pos": 0.075, + "neu": 0.903, + "neg": 0.022, + "_id": { + "$oid": "6711d66acd60fca157e5e996" + } + }, + { + "text": "Wasnt great for this class but managed to get through by reading the book. The slides were kinda hard to follow so the book helped clear a lot up. In general hes a solid professor especially for ME330 but this class wasnt as good. Class is basically system dynamics/control but on steroids. not my cup of tea", + "pos": 0.083, + "neu": 0.816, + "neg": 0.101, + "_id": { + "$oid": "6711d66acd60fca157e5e997" + } + }, + { + "text": "Grade was strictly exams/hw. Ive taken like 3-4 classes with him and I can confidently say that all his exams are very similar to HW questons. You need to do the weekly HW ON YOUR OWN. Do not google unless necessary. Its the only way to do good on exams. Vibrations is his worst class tho. Notes werent that great. Had to read the book and watch vids", + "pos": 0.108, + "neu": 0.799, + "neg": 0.094, + "_id": { + "$oid": "6711d66acd60fca157e5e998" + } + }, + { + "text": "This man completely changed my outlook on school and life in general. I learned so many important life lessons this semester, aside from learning statics. Take Professor Yu if you can, he truly is amazing and one of a kind. Grade is hw + quizzes, one midterm (two if the class average is low), and the final. Grading scale is shifted by ~10 points.", + "pos": 0.166, + "neu": 0.805, + "neg": 0.029, + "_id": { + "$oid": "6711d66acd60fca157e5e999" + } + }, + { + "text": "Honestly his lectures can be a bit confusing at times as he doesn't communicate the ideas effectively, tries his best and was generous as most people failed the first exam but he offered a make up. The time for exams is only an hour so you better work fast. Homeworks are assigned every week for a total of 12 and he gives quizzes weekly as well.", + "pos": 0.202, + "neu": 0.75, + "neg": 0.048, + "_id": { + "$oid": "6711d66acd60fca157e5e99a" + } + }, + { + "text": "He's like, a genius in the middle of commoners, expecting students to catch up to him. His lectures and homework's are hard, exam extremely baffling. He teaches and grades harder than other professors.", + "pos": 0.072, + "neu": 0.888, + "neg": 0.04, + "_id": { + "$oid": "6711d66acd60fca157e5e99b" + } + }, + { + "text": "advanced class. lots of wild material. basically 330 but on steroids. prof was ok. exams were similar to hw. grade is 2 exams, hw, and 1 project.", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e99c" + } + }, + { + "text": "He did an amazing Job teaching everyone. The tests weren't too difficult if you had studied. His lectures were amazing. He shows you what will be on the exams concept wise and the quizzes on the same day were easy and could be done in groups and he give a lot of partial. Learned a lot and wish other professors were as passionate as him.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e99d" + } + }, + { + "text": "Weekly hw, 2 exams, 1 project. Had him online for 330, he was good. But in person for this class, he was not as good. He was decent. Exams are based on hw. He tries to give as much points as he can when grading them. Class material was pretty advanced tbh. Really need to put in the work to understand whats going on.", + "pos": 0.122, + "neu": 0.835, + "neg": 0.043, + "_id": { + "$oid": "6711d66acd60fca157e5e99e" + } + }, + { + "text": "Pop quizzes in class based on material learned in same day, but this is open-book/discussion. HW assigned weekly, very important to do since midterm and final have questions that are similar to HW or lecture samples. He's a genius and teaches tricks to solve problems easily. Nonetheless, 330 is still a difficult class, so he can only do so much.", + "pos": 0.113, + "neu": 0.766, + "neg": 0.121, + "_id": { + "$oid": "6711d66acd60fca157e5e99f" + } + }, + { + "text": "One of, if not the, best ME professors in CCNY.", + "pos": 0.0, + "neu": 0.728, + "neg": 0.272, + "_id": { + "$oid": "6711d66acd60fca157e5e9a0" + } + }, + { + "text": "This is a very hard class and I feel like he tries to make it harder. He gives open discussion quizzes on the concept you learned the same day, he has a really heavy accent, and his midterm and final are really hard. The only reason I passed the class was that I went to sleep at 4am studying for his final that I passed with a 70.", + "pos": 0.035, + "neu": 0.917, + "neg": 0.048, + "_id": { + "$oid": "6711d66acd60fca157e5e9a1" + } + }, + { + "text": "Very unkind to students' time. Gave pop quizzes on material INTRODUCED THE SAME DAY IN CLASS! Does NOT give students adequate time to develop understanding, says \"just plug it in\" as if we can grasp something in mere seconds. QUIZZES were often based on HW BEFORE THE HW IS DUE. MAKES NO SENSE, this prof needs to STOP WASTING OUR TIME.", + "pos": 0.0, + "neu": 0.798, + "neg": 0.202, + "_id": { + "$oid": "6711d66acd60fca157e5e9a2" + } + }, + { + "text": "Yu got me acting up fr fr. Anyway avoid him", + "pos": 0.0, + "neu": 0.804, + "neg": 0.196, + "_id": { + "$oid": "6711d66acd60fca157e5e9a3" + } + }, + { + "text": "If you want to learn anything about materials, he's your guy. Very knowledgeable on the subject and can tell you just about anything. Lectures were great, explained all the fundamentals and showed examples. Homeworks were similar. He preaches repetition. Follow his advice.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e9a4" + } + }, + { + "text": "First semester back from online\nThis was his first time teaching Vibrations\nHe was very disorganized, and never went over the midterm\nWaited for the last day of class to start grading all HWs and Project\nNo Feedback, difficult subject so watch YouTube Vids\nHws are hard/ unnecessarily long\nCurved at the end but I don't recommend him", + "pos": 0.025, + "neu": 0.858, + "neg": 0.117, + "_id": { + "$oid": "6711d66acd60fca157e5e9a5" + } + }, + { + "text": "Test and lecture heavy. Prof Yu really wants his students to learn so he derives equations and shows multiple examples in class. He gives hw every week with around 4-8 questions on it. It's not that bad because they're very close to the examples. He makes you work for your grade and if you work you will pass. Dont copy answers on the solutionmanual", + "pos": 0.043, + "neu": 0.957, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e9a6" + } + }, + { + "text": "Yu is AMAZING. I learned a lot from his lectures. He actually went over examples in class and the hw/exam questions are similar to the examples so PAY ATTENTION. I didn't ACE the exams, but I still liked the way he taught and he gave enough partial credit for me to pass. He curved in the end as well. He gives ALOT of hw though. You will be busyy.", + "pos": 0.16, + "neu": 0.816, + "neg": 0.024, + "_id": { + "$oid": "6711d66acd60fca157e5e9a7" + } + }, + { + "text": "I wish he made homework worth more for the final grade. He gives hw every week and since he actually grades it, i feel like he learns who knows how to do the work and whos just copying from the book. if its worth more, it would also encourage more students to learn/do it which is literally what he wants. the hw does help a lot tho. hes a good prof", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e9a8" + } + }, + { + "text": "Took him before. He is a very good professor and explains well. Equations are derived in class. He explains why things are the way they are and he does examples in class which is very important. Learned a lot from him. He's also a very nice guy.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e9a9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66acd60fca157e5e9ab" + }, + "professor_name": "David Weissman", + "rating": 3, + "department": "Philosophy department", + "comments": [ + { + "text": "Prof. Weissman cares about his students. He's old school in that he doesn't use blackboard or any technology outside of the occasional email, but I feel like that adds to the class! You just have to be sure to do the readings and come to class, then you'll be okay. His lectures are just him talking, so make sure to pay attention and ASK QUESTIONS!", + "pos": 0.193, + "neu": 0.786, + "neg": 0.021, + "_id": { + "$oid": "6711d66acd60fca157e5e9ac" + } + }, + { + "text": "The readings he assigns are EXTREMELY IMPORTANT towards the midterm and final grade. Overall more organization is needed within lessons because it is hard to follow at times.", + "pos": 0.115, + "neu": 0.84, + "neg": 0.045, + "_id": { + "$oid": "6711d66acd60fca157e5e9ad" + } + }, + { + "text": "One of the most genuine professors I have ever taken, very honest both with students and with himself. Class is very relaxed, as long as you understand the material and engage with it seriously he is willing to give a lot of leeway. He is thoughtful and willing to admit when he doesn't know something. Treats students as equals, for better or worse.", + "pos": 0.219, + "neu": 0.718, + "neg": 0.063, + "_id": { + "$oid": "6711d66acd60fca157e5e9ae" + } + }, + { + "text": "if you want a class where it is more organized with PowerPoints and stuff this class isnt for you. Weissman is decent at times but others think much worse, if you want a class where attendance isnt required you can take it but you MUST read all required philosophy papers because he will ask about it in class and your work has to suggest it too.", + "pos": 0.037, + "neu": 0.903, + "neg": 0.059, + "_id": { + "$oid": "6711d66acd60fca157e5e9af" + } + }, + { + "text": "Weissman is evil. He will gleefully set you up to fail. He is a racist misogynist and his courses are the most disorganized and useless courses possible. I learned nothing from him. He is arrogant and condescending and should have been put out to pasture years ago. Youve been warned!", + "pos": 0.0, + "neu": 0.651, + "neg": 0.349, + "_id": { + "$oid": "6711d66acd60fca157e5e9b0" + } + }, + { + "text": "He's not the best philosophy teacher, I recorded all of his lectures because he spoke way too fast for me to actually write anything but those recordings really helped me in the long run with the midterm and final paper. I would say if you don't want to do all the readings, at least read a summary to know what's going on in class discussions.", + "pos": 0.0, + "neu": 0.947, + "neg": 0.053, + "_id": { + "$oid": "6711d66acd60fca157e5e9b1" + } + }, + { + "text": "It seems that my review was removed. Let me write it again, but in a nutshell: Has no respect for students. Even though this is a critical thinking class, there's no critical thinking from the students as he wants you to write what he thinks. The final would determine your final grade.", + "pos": 0.042, + "neu": 0.849, + "neg": 0.109, + "_id": { + "$oid": "6711d66acd60fca157e5e9b2" + } + }, + { + "text": "He is easy going and explains the material well. Make sure you do all the readings and all the papers, even though he says he doesn't grade them. The readings and papers are gems when it comes to the final and midterm. The class is more about listening; taking notes is difficult because of all the jumping around.", + "pos": 0.114, + "neu": 0.846, + "neg": 0.039, + "_id": { + "$oid": "6711d66acd60fca157e5e9b3" + } + }, + { + "text": "Professor Weissman is a honest and smart man, he can come off strong at times, but overall he is a very good teacher. His workload is easyif you ACTUALLY DO THE WORK, he does not grade it, but the point is is that if you do it, you will be ok for the final and midterms. He does get lost in his thoughts at times, but makes the class interesting/fun.", + "pos": 0.165, + "neu": 0.798, + "neg": 0.037, + "_id": { + "$oid": "6711d66acd60fca157e5e9b4" + } + }, + { + "text": "I absolutely hate this class. He isn't helpful at all and office hours are during another class I have. He is a difficult grader and doesn't help you understand the material. I've never struggled in a class so much. Do yourself a favor take another class!!!", + "pos": 0.084, + "neu": 0.706, + "neg": 0.211, + "_id": { + "$oid": "6711d66acd60fca157e5e9b5" + } + }, + { + "text": "HE WAS AWFUL! Im taking him for the Spring semester. Doesnt take attendance at times(passes around notepad to sign name and you can leave after that) boring. Disrespectful to students. Constantly puts down students. Gets lost in his thoughts at times. Just talks. Just sparknote the books. Grade heavily depends on take home midterm and final!", + "pos": 0.0, + "neu": 0.837, + "neg": 0.163, + "_id": { + "$oid": "6711d66acd60fca157e5e9b6" + } + }, + { + "text": "Professor weissman is one of those professors who doesnt care. No feedback, barely available outside of class, and makes the overall grade based off one final. He can also be rude sometimes by talking down to us. Hes good at teaching, but the guy could have done more to help us out like grading more things and using blackboard.", + "pos": 0.157, + "neu": 0.786, + "neg": 0.057, + "_id": { + "$oid": "6711d66acd60fca157e5e9b7" + } + }, + { + "text": "Prof Weissman wasn't the greatest professor-can't reach him through email, doesn't use bb & doesn't have office hrs however his class was not as bad. Your grade consists mostly on the midterm & final; I would suggest taking notes, his lectures are your papers! Assigns so many books but just pay attention to his ideas and use those in ur papers", + "pos": 0.03, + "neu": 0.89, + "neg": 0.08, + "_id": { + "$oid": "6711d66acd60fca157e5e9b8" + } + }, + { + "text": "Pros: people dont like him because of his personality but he is actually a really good professor. I took his cities and urban Phil class, and he grades pretty lenient as long as you LISTEN TO DIRECTIONS! you can just skim books that he assigns, and then be kind of creative in your papers. Cons: He does sometimes ignores your arguments and ideas", + "pos": 0.19, + "neu": 0.712, + "neg": 0.099, + "_id": { + "$oid": "6711d66acd60fca157e5e9b9" + } + }, + { + "text": "Do not take this professor he is very rude and constantly belittles his students.", + "pos": 0.0, + "neu": 0.798, + "neg": 0.202, + "_id": { + "$oid": "6711d66acd60fca157e5e9ba" + } + }, + { + "text": "Listen, the guy is occasionally funny and kind, but the amount of work ( including reading over 4 entire books) and the amount of homework, which he does not grade or even read, is definitely upsetting. Easy class otherwise but I wouldn't waste my time in a class with a prof like this. he gives 1 Final and, 1 midterm both a major part of the grade.", + "pos": 0.215, + "neu": 0.735, + "neg": 0.051, + "_id": { + "$oid": "6711d66acd60fca157e5e9bb" + } + }, + { + "text": "He was kind but he is super sassy and occasionally funny. However, he does not seem to understand that he speaks too fast and it is difficult for people to understand him or write down the questions he assigns for homework. It would be nice if he took the time to write them down instead of repeating them over 100x in different wordings and order.", + "pos": 0.188, + "neu": 0.77, + "neg": 0.042, + "_id": { + "$oid": "6711d66acd60fca157e5e9bc" + } + }, + { + "text": "No, don't do it to yourself. He does not grade homework, doing the homework does not help anyway. It is all about what you get on the final and the midterm. My final happened to be a take home which is the only reason why I didn't fail the class. He also just lectures all period long. Most of it is useless. You could be attentive and still fail.", + "pos": 0.037, + "neu": 0.851, + "neg": 0.112, + "_id": { + "$oid": "6711d66acd60fca157e5e9bd" + } + }, + { + "text": "Wonderful Professor! His lectures were always interesting and whatever he says during class is what he wants on your exams. In so many subtle ways, you see that this professor is caring. Read the novels or Sparknotes (I did both) so that you have an understanding of what notes to make during class to get an A.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d66acd60fca157e5e9be" + } + }, + { + "text": "Weissman was AMAZING. There were no in class test, he only assigned take home papers. He tells you exactly what he is looking for and asks if you need clarification. Be prepared to read the assigned reading (which is all online). During his lecture he can talk a lot but it is interesting and relevant to the class.", + "pos": 0.123, + "neu": 0.852, + "neg": 0.025, + "_id": { + "$oid": "6711d66acd60fca157e5e9bf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66bcd60fca157e5e9c1" + }, + "professor_name": "Umit Uyar", + "rating": 3.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He is known to be a bad teacher by others and I went in thinking the same. He will pick on you to explain part of the code and I barely knew anything about coding so I struggled a lot at first. He will make you upset but just take it with a smile and he will back off. He is 100% better than the other prof. Most of his projs are from textbook.", + "pos": 0.087, + "neu": 0.842, + "neg": 0.072, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c2" + } + }, + { + "text": "I would never take a class with this prof again. Extremely rude to students & loves picking on them. Makes the class so hard so its impossible to pass. Harsh grader and doesn't care about his students, expects you to learn advanced coding on your own as an electrical eng. major. Do not recommend him at all. worst prof in ccny", + "pos": 0.075, + "neu": 0.699, + "neg": 0.226, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c3" + } + }, + { + "text": "The course he designed does not prepare students. does not cover abstraction or polymorphism, he only goes over the surface of things such as inheritance, he makes niche homeworks and gives answers later on. It produces code monkeys who can replicate code, very few from his class have make their own projects using his barebones teachings.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c4" + } + }, + { + "text": "Be a teacher's pet he likes that. Always raise your hand and answer the questions.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c5" + } + }, + { + "text": "Uyar is a true sigma male. All students were struggling in exams but he was very nice and passed everyone.", + "pos": 0.242, + "neu": 0.682, + "neg": 0.076, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c6" + } + }, + { + "text": "Don't take", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c7" + } + }, + { + "text": "Despite what everyone says, he is by far one of the best EE professor I took in CCNY. He picks on you and may hurt your feeling, but he forces you to learn these useful topics. Midterm and final are fair and projects are easy. Best advice is to read the chapter ahead before he teaches. Only con is that you have to pay $100 for textbook.", + "pos": 0.244, + "neu": 0.71, + "neg": 0.046, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c8" + } + }, + { + "text": "Mr. Uyar knows his stuff well, and you can learn a lot from his classes if you WANT TO. The narrative that he made a student cry in front of the entire class is unfortunately correct. His attitude is tough but it definitely prepares you for the real world and opens your eyes. Just try to avoid arguing if you are kind of a sensitive individual.", + "pos": 0.087, + "neu": 0.759, + "neg": 0.154, + "_id": { + "$oid": "6711d66bcd60fca157e5e9c9" + } + }, + { + "text": "Uyar is awesome!", + "pos": 0.687, + "neu": 0.313, + "neg": 0.0, + "_id": { + "$oid": "6711d66bcd60fca157e5e9ca" + } + }, + { + "text": "He definitely has vast knowledge, during quarantine is hard to each but i see where people come from when they say he's the worst. I learned a lot, yeah he has a strong personality, but if you get pass that those projects are a lifesaver for a job interview. College ain't easy Good luck!", + "pos": 0.188, + "neu": 0.593, + "neg": 0.219, + "_id": { + "$oid": "6711d66bcd60fca157e5e9cb" + } + }, + { + "text": "Rudest professor I've ever met! He is forcing us to share our screens with him and yelled at students to change their desktop wallpapers. Also criticizes students for wearing hats or coats at home and for having dark lighting settings. Totally not lenient or understanding of students' situations during this pandemic. AVOID AT ALL COSTS!!!!!!!!!", + "pos": 0.034, + "neu": 0.778, + "neg": 0.188, + "_id": { + "$oid": "6711d66bcd60fca157e5e9cc" + } + }, + { + "text": "Hes an amazing professor with his valuable experience. In the beginning of the class I thought he picked me but thats not true later I love the way he was teaching. so while teaching hes rough, pay close attention and he pushes you to learn coding. He convince you to be a great coder. Hes generous and very helpful. Very intelligent professor.", + "pos": 0.36, + "neu": 0.588, + "neg": 0.052, + "_id": { + "$oid": "6711d66bcd60fca157e5e9cd" + } + }, + { + "text": "Very disrespectful professor. Does not answer questions. he wants you to buy his book, but i think you can get a free copy if you look for it. He spend more time harassing student and laughing at them than teaching the class that you paid for. He also spend lot of time taking about his swimming glasses and skills, and life of engineers.", + "pos": 0.118, + "neu": 0.812, + "neg": 0.07, + "_id": { + "$oid": "6711d66bcd60fca157e5e9ce" + } + }, + { + "text": "He will come off very disrespectful from the beginning of the semester. As the semester progress, He will get better and more understanding. Just make sure to pay attention to his lecture and read his notes. You will most likely be fine if you know a little bit of programming as a start off. Good luck", + "pos": 0.241, + "neu": 0.738, + "neg": 0.021, + "_id": { + "$oid": "6711d66bcd60fca157e5e9cf" + } + }, + { + "text": "His character is not the best as he picks on students and does not answer questions he feels are stupid. On the other hand, you learn a lot from the projects and the exams, which are almost entirely based off the projects. Later in the semester he is more friendly. Generous curve in the end, so dont drop unless you got 0s on everything.", + "pos": 0.16, + "neu": 0.752, + "neg": 0.088, + "_id": { + "$oid": "6711d66bcd60fca157e5e9d0" + } + }, + { + "text": "Professor Uyar can come off as rude and abrasive, but that's only because he has to deal with mind-numbingly stupid individuals on a daily basis. His class is very straight-forward and you will certainly walk away from it with an understanding of C++. If this is your first-time coding, you should expect to put in a few extra hours a week.", + "pos": 0.046, + "neu": 0.857, + "neg": 0.097, + "_id": { + "$oid": "6711d66bcd60fca157e5e9d1" + } + }, + { + "text": "He sucks. For every lecture, he talks 20 minutes about the code but spends 2 hours talking about life of an engineer or picking on people. Comment below stated that he made a girl cry, that true. He spent so much time belittling her. This guy is trash but sadly you have to take him because he the only professor offered. Study c++ gl", + "pos": 0.088, + "neu": 0.784, + "neg": 0.128, + "_id": { + "$oid": "6711d66bcd60fca157e5e9d2" + } + }, + { + "text": "So far I had 30+ professors in college, I have never seen any professor disrespect students in such a personal way. He is a bully, he made a girl cry by exposing her weaknesses in programming in front of the whole class. He teaches C++ for half an hour, then you will have to figure everything else on your own. We dont care about his swimming.", + "pos": 0.0, + "neu": 0.786, + "neg": 0.214, + "_id": { + "$oid": "6711d66bcd60fca157e5e9d3" + } + }, + { + "text": "If you put in the work, you'll learn a lot from Prof. Uyar. If you fail to put in the work, he'll rip apart your entire character. He can be kind of a mean sometimes, but his class is great.", + "pos": 0.123, + "neu": 0.828, + "neg": 0.049, + "_id": { + "$oid": "6711d66bcd60fca157e5e9d4" + } + }, + { + "text": "Professor Uyar is a really funny guy. At first he comes off as mean but that's him treating all the students fairly in preparing for the real world. Be prepared to answer questions and make sure you understand the basic concepts from 102.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d66bcd60fca157e5e9d5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66ccd60fca157e5e9d7" + }, + "professor_name": "Miguel Fiolhais", + "rating": 4.5, + "department": "Physics department", + "comments": [ + { + "text": "He's the right person to teach us about heat energy because boy is he radiating it ;) Besides that, he REALLY cares about his subject and his students. Really knowledgable and willing to help you understand. If I recall correctly he curves grades as well. Highly recommend!", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9d8" + } + }, + { + "text": "Best professor Ive ever had ! His potentiality reflects in his appearance. Of course would take his class again and strongly recommend him.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9d9" + } + }, + { + "text": "He is THE BEST professor for physics ! He is soooo caring and helpful. Loved his class and gonna take him again,of course !", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9da" + } + }, + { + "text": "One of the best professors Ive ever had at BMCC. Got way distracted by his hotness though.", + "pos": 0.194, + "neu": 0.694, + "neg": 0.111, + "_id": { + "$oid": "6711d66ccd60fca157e5e9db" + } + }, + { + "text": "Amazing lectures!", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9dc" + } + }, + { + "text": "Hot. Need I say more? Kidding, he's an awesome professor as well. Really cares about teaching his students the material, and very fair grader.", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9dd" + } + }, + { + "text": "Really awesome guy, super helpful and down to earth.", + "pos": 0.654, + "neu": 0.346, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9de" + } + }, + { + "text": "Lectures were long and boring. He rarely goes over problems in class because he talks SO MUCH! However, he is a very nice, with clear grading criteria and exams were extremely easy. Just study the review sheet and Easy A", + "pos": 0.287, + "neu": 0.668, + "neg": 0.045, + "_id": { + "$oid": "6711d66ccd60fca157e5e9df" + } + }, + { + "text": "This professor is pretty easy. All of his lecture notes are online, so technically you don't need to go to class. But if you miss a class or two it would be difficult to understand what was taught. The textbook he only uses for homework (which is collected once a week depending on meeting hours). I suggest you to take him!", + "pos": 0.061, + "neu": 0.857, + "neg": 0.082, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e0" + } + }, + { + "text": "He's a fabulous teacher. Lectures are interesting and easy to follow. It helps that he jokes around at times, and of course the fact that he's hot makes me not want to skip lecture.", + "pos": 0.318, + "neu": 0.654, + "neg": 0.029, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e1" + } + }, + { + "text": "Excellent Professor. I came into class not knowing a thing about physics and I came out knowing a lot.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e2" + } + }, + { + "text": "Great professor, really cares if the students understand the material.", + "pos": 0.48, + "neu": 0.52, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e3" + } + }, + { + "text": "Prof. Fiolhais teaches really well and is very easy to understand. He is always open to answer your questions and very helpful during office hours.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e4" + } + }, + { + "text": "He's very nice and explains things well.", + "pos": 0.509, + "neu": 0.491, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e5" + } + }, + { + "text": "He is one of the smartest and down to earth professor you will ever see at CCNY.. I recommend him for any physics course", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e6" + } + }, + { + "text": "Miguel is great! Really helpful!", + "pos": 0.722, + "neu": 0.278, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e7" + } + }, + { + "text": "Really smart, great lecturer.", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e8" + } + }, + { + "text": "Even though I'm not the best at physics and this class was difficult, I absolutely loved going to lecture. The course is pretty tough and if you don't put the time in then you will struggle for sure. That being said, Miguel is a great guy and very attractive too!", + "pos": 0.254, + "neu": 0.603, + "neg": 0.142, + "_id": { + "$oid": "6711d66ccd60fca157e5e9e9" + } + }, + { + "text": "Very good at conveying the concepts of physics, but careful of his tests. You're gonna have to do a lot of derivations on them. You're probably going to fail his tests, but at the end of the semester you'll feel like you learned a lot and gained new insight. The curve will save you. A very nice guy. Definitely recommend.", + "pos": 0.32, + "neu": 0.622, + "neg": 0.058, + "_id": { + "$oid": "6711d66ccd60fca157e5e9ea" + } + }, + { + "text": "Hands down one of the best professors that I have ever had.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9eb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66ccd60fca157e5e9ed" + }, + "professor_name": "Norman Scheinberg", + "rating": 4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Professor Scheinberg is one of the best professors at CCNY. I left his class with both an understanding and passion for analog design. He is retiring soon; if you have a chance to take a class with him, do it. You won't regret it.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9ee" + } + }, + { + "text": "Class is not hard, he explains very well. You are not going to get a high grade unless you understand every device in detail. Has all lectures available. Compare to other EE professors he is definitely in top 10% . However, people who are bad with circuits do worse.", + "pos": 0.142, + "neu": 0.744, + "neg": 0.114, + "_id": { + "$oid": "6711d66ccd60fca157e5e9ef" + } + }, + { + "text": "Prof. Scheinberg is one of the most knowledgeable professors in the EE department. Has real experience with research and industry. One of the few professors who would spend time telling stories to motivate and inspire students. I just enjoyed being in his class!", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f0" + } + }, + { + "text": "One of the toughest classes, if looking for easy A without studying avoid him. Tests are on fridays, because it is unlimited time. Review 241 because he expects you to know it, especially FETs and BJTs. He puts all his notes online, missed too many classes but can study off that. Notorious for design questions so truly understand material.", + "pos": 0.125, + "neu": 0.778, + "neg": 0.097, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f1" + } + }, + { + "text": "He's a very smart guy who teaches by drawing a ton of graphs and circuits on the board trying to help you develop an intuition. Test 1 is easy, but 2 and 3 are harder. His tests are like is HW problems which are unlike the text problems. Lots of tangents about history of the industry and other random stuff that I enjoy but not everyone did.", + "pos": 0.166, + "neu": 0.746, + "neg": 0.088, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f2" + } + }, + { + "text": "He always managed to get on my nerves with his teaching and grading methodology. It was even a pain to wait and find out my grade. He might know his stuff (well obviously because he's been doing it for 40 years) but as a teacher, he's sub-par. Goes on tangents too often and makes it so easy to lose focus. Loves hearing the sound of his own voice.", + "pos": 0.145, + "neu": 0.765, + "neg": 0.09, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f3" + } + }, + { + "text": "Master of drawing circuits and going off on long tangents during lecture. Does not \"believe\" in partial credit. Also, has the best combover I have ever seen.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f4" + } + }, + { + "text": "Took him for 241 & 342. It was basically a year of hell. I had a severe headache after each exam and couldn't sleep for entire weekends. I used to have a strong passion for electronics and now I lost every single bit of it. Beware of the harsh grading! Not a good choice for GPA worshippers who are commonly found in this so called college.", + "pos": 0.1, + "neu": 0.714, + "neg": 0.186, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f5" + } + }, + { + "text": "He changed his style now. Exams are all design problems, so for those who have old exams will not help now.", + "pos": 0.0, + "neu": 0.793, + "neg": 0.207, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f6" + } + }, + { + "text": "Try to understand lecture notes thoroughly and do homework to understand the material because he likes to ask design questions. Grading comes from his preprogramed calculations.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f7" + } + }, + { + "text": "Best EE professor in the whole department. His style of teaching isn't for everyone though. Lecture isn't manatory but highly recommended. He loves to give design problems on exams so you can essentially make your own answers but you need to really understand the topics. Loves to go on tangents but it gives you extra time to take notes.", + "pos": 0.215, + "neu": 0.737, + "neg": 0.048, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f8" + } + }, + { + "text": "He is one of the good professors I had in CCNY! He has a lot of knowledge in his field! It is a class where you have a chance to do hands on experiment! After the motor and light bulb experiments, you have to write a report! He grades the report as either a okay or redo, he will let you redo his papers until you get it right! Don't skip classes!", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d66ccd60fca157e5e9f9" + } + }, + { + "text": "I took electronics I with him during summer . He knows everything he taught and with unlimited knowledge about electronics. His exams were predictable and you should be fine if you understand the assignment upside down. He will gave few points to the whole class if some questions are hard, but no general curve!", + "pos": 0.025, + "neu": 0.9, + "neg": 0.076, + "_id": { + "$oid": "6711d66ccd60fca157e5e9fa" + } + }, + { + "text": "One of three people in the EE department that can actually speak English. Honest and sincerely wants students to learn. Enjoys hearing the sound of his own voice and makes simple things unnecessarily confusing. If this is supposed to be the standout professor of the EE deparment then I think that speaks to the low quality of the program.", + "pos": 0.143, + "neu": 0.798, + "neg": 0.059, + "_id": { + "$oid": "6711d66ccd60fca157e5e9fb" + } + }, + { + "text": "Overall a very funny guy and his lectures demonstrate his strong knowledge of the material. He did waste about 3 classes goofing around with the wannabe class clown on topics having nothing to do with electronics. Helpful during his office hours. If you master the homework assignments, you shouldn't have any problems with his exams.", + "pos": 0.179, + "neu": 0.777, + "neg": 0.044, + "_id": { + "$oid": "6711d66ccd60fca157e5e9fc" + } + }, + { + "text": "Very knowledgeable about the material and explains everything clearly. Tends to ramble during lectures with anecdotes which at times are pretty funny. His notes are much more useful than the text which is confusing. If you understand the HW very well, his exams are a cakewalk. Only complaint - never does examples in class as he only teaches theory.", + "pos": 0.204, + "neu": 0.738, + "neg": 0.058, + "_id": { + "$oid": "6711d66ccd60fca157e5e9fd" + } + }, + { + "text": "Great professor. Gives students an intuitive understanding of the material. But if you don't fully understand the concepts you will get destroyed on the exams. To do well you have to understand the material perfectly.", + "pos": 0.238, + "neu": 0.67, + "neg": 0.093, + "_id": { + "$oid": "6711d66ccd60fca157e5e9fe" + } + }, + { + "text": "great professor. i took a workshop class and his assignments are cool. he got me more interested in the engineering field. alot of hands-on stuff. some lectures can put you to sleep but i recommend you sit in the front to stay active in class. if you get on his good side, he'll keep you in mind. easy class if you just pay attention and ask qustions", + "pos": 0.255, + "neu": 0.726, + "neg": 0.02, + "_id": { + "$oid": "6711d66ccd60fca157e5e9ff" + } + }, + { + "text": "One of the best professors in EE. Explains very well and has a passion for what he teaches. You must attend classes and make sure you understand his lectures if you want an A. He explains simpler than the book. You will need to understand all the concepts since his exams are mostly design problems and he doesn't repeat old exams. Hand in all HW", + "pos": 0.213, + "neu": 0.752, + "neg": 0.035, + "_id": { + "$oid": "6711d66ccd60fca157e5ea00" + } + }, + { + "text": "Incredibly patronizing. His comments were unclear and at times (with the lab report assignment) contradictory. Constantly would slow down when speaking to students who were confused by his comments, as if they were having English problems rather than issues with his unclear wording.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d66ccd60fca157e5ea01" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66dcd60fca157e5ea03" + }, + "professor_name": "Soo-Jin Lee", + "rating": 3.2, + "department": "Philosophy department", + "comments": [ + { + "text": "This class was extremely fast-paced. I love philosophy but this class made me like it less. I will not be taking a philosophy class again. The professor is very stern about attendance and work. Nothing is explained in depth. You should know a lot about logical reasoning before taking this class, or you will have a hard time!!!", + "pos": 0.108, + "neu": 0.867, + "neg": 0.025, + "_id": { + "$oid": "6711d66dcd60fca157e5ea04" + } + }, + { + "text": "Great class but not an easy A. Must attend class or you wont know what tf is going on. Shes very understanding and will meet after class if you need help.", + "pos": 0.164, + "neu": 0.753, + "neg": 0.084, + "_id": { + "$oid": "6711d66dcd60fca157e5ea05" + } + }, + { + "text": "I will say the class was super intense. Logic is really hard and I was lucky enough to come out with a B-. She is the sweetest woman even but really tough. Try to go to all classes because you could miss a lot of information. She doesn't give much homework and she pretty much sticks to the syllabus.", + "pos": 0.146, + "neu": 0.773, + "neg": 0.081, + "_id": { + "$oid": "6711d66dcd60fca157e5ea06" + } + }, + { + "text": "Incredibly long winded lectures. I literally reviewed before exams in under a day and understood everything better in that short time frame. Class isnt too difficult, she is just not good at her job.", + "pos": 0.13, + "neu": 0.807, + "neg": 0.063, + "_id": { + "$oid": "6711d66dcd60fca157e5ea07" + } + }, + { + "text": "PHIl201 is a complex class, that requires a lot of practice and memorization. It comes at you quickly, there is no time to slide, be prepared to sweat. The only way to get by is practicing the formulas over and over and over again, LOTS OF MEMORIZATION!!!", + "pos": 0.038, + "neu": 0.9, + "neg": 0.062, + "_id": { + "$oid": "6711d66dcd60fca157e5ea08" + } + }, + { + "text": "This class itself is difficult. i signed up thinking it was a regular philosophy class with lots of discussion. i was wrong. it is extremely math heavy and super complex. Told her that i caught covid and couldnt do my work and she gave me an F lol please if you have another prof take them. otherwise shes an OK choice.", + "pos": 0.165, + "neu": 0.758, + "neg": 0.077, + "_id": { + "$oid": "6711d66dcd60fca157e5ea09" + } + }, + { + "text": "She's a professor that's really knowledgeable about the topic and she shows it through the lectures. We have weekly homework assignments and quizzes every 2 weeks or so. The first half of the class wasn't super difficult but the 2nd half was really hard. If you don't pay attention from the start of truth functions, you will struggle. Pay attention", + "pos": 0.088, + "neu": 0.784, + "neg": 0.128, + "_id": { + "$oid": "6711d66dcd60fca157e5ea0a" + } + }, + { + "text": "Professor Lee is a gem! Logical reasoning is not an easy class. It is very mathematical for a philosophy class. But with effort in homework and frequent reading, you can do it! Professor Lee is available for help outside of class for homework. Although she has strict standards, she will help you if you show her that you care. Participation counts!!", + "pos": 0.176, + "neu": 0.8, + "neg": 0.024, + "_id": { + "$oid": "6711d66dcd60fca157e5ea0b" + } + }, + { + "text": "She is the best. She knows the material and is a real sweetheart. She does give a lot of homework but its really just to know if we understand the material. And logical reasoning isnt that hard either. Sometimes its like puzzles and you can easily understand some in class, spending less time studying for this class at home. Def recommend her", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea0c" + } + }, + { + "text": "She explains the material well as the text is not sufficient to understand. As a humanities major, dislike regular hw but it's very fair and never just busy work. Fair grader, drops lowest quiz and lowest hw. I actually had a lot of fun. At first I thought LR was intimidating but it's like puzzles and riddles.", + "pos": 0.205, + "neu": 0.63, + "neg": 0.165, + "_id": { + "$oid": "6711d66dcd60fca157e5ea0d" + } + }, + { + "text": "Very good at teaching the material. Professor Lee made me want to minor in philosophy and although the class was challenging at times, her study guides helped as well as her notes posted online. You need to put the time in to study and work for an A", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea0e" + } + }, + { + "text": "Overall a good professor who teaches the material in a relatable manner. Pay attention in her classes and you'll understand all of the concepts. She drops the lowest paper and quiz but don't use this as an excuse to slack off, she grades hard. If you're cramming, remember key words of a topic. STUDY MIDTERM AND FINAL REVIEW (review based exams)!!!!", + "pos": 0.052, + "neu": 0.859, + "neg": 0.089, + "_id": { + "$oid": "6711d66dcd60fca157e5ea0f" + } + }, + { + "text": "6 quizzes, 3 papers, midterm & final. Drops 1 paper and quiz. She's not a bad professor at all bioethics. Gives study guides and ALL exam questions come from the study guide! Memorization is very heavy, so MEMORIZE THE ENTIRE STUDY GUIDE and you will pass. She also gives answer to study guide, so TAKE VERY GOOD NOTES and email her for any questions", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea10" + } + }, + { + "text": "She will give around five reading response in a semester and about two papers. She also gave five quiz. I have done everything. I believe I will get at least B. Then it turns out I got C, despite not missing a single class, doing all papers and reading response. All it matters was how you did in the final and midterm.", + "pos": 0.018, + "neu": 0.956, + "neg": 0.026, + "_id": { + "$oid": "6711d66dcd60fca157e5ea11" + } + }, + { + "text": "Very hard class, nothing close to an easy A.", + "pos": 0.25, + "neu": 0.604, + "neg": 0.146, + "_id": { + "$oid": "6711d66dcd60fca157e5ea12" + } + }, + { + "text": "She has an accent, but you'll get used to it. She's very clear when explaining and gives partial credit. There are 6 quizzes, 6 hws, and 3 exams. She drops your lowest homework and quiz grade. Take this class if you like doing word/number games. Last unit is the toughest.", + "pos": 0.174, + "neu": 0.746, + "neg": 0.08, + "_id": { + "$oid": "6711d66dcd60fca157e5ea13" + } + }, + { + "text": "No, you will not learn \"logic\" in this class. VERY hard class. Memorization heavy! A lot of quizes&HW. She has an accent so it takes a while to get used to what she says. NOT an EASY A! most people get C's and B's. if you are fulfilling the PATH WAY credits just find another class. If you choose her sit in the back of the class bc its easy 2 cheat", + "pos": 0.066, + "neu": 0.824, + "neg": 0.11, + "_id": { + "$oid": "6711d66dcd60fca157e5ea14" + } + }, + { + "text": "She gives work constantly which is unwanted just to give work. If the class doesn't understand the topic, she'll make class work homework. She'll drag your gpa if you're not completely sold out to the class.", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d66dcd60fca157e5ea15" + } + }, + { + "text": "If you are in prof. Lee's PHIL 201, be ready to memorize a lot. If you just want an A to boost your GPA, no bother to take this class, but only if you have a good memorization. What I learned from this class isn't really useful for my major, but at least getting an A can keep my GPA good.", + "pos": 0.196, + "neu": 0.756, + "neg": 0.048, + "_id": { + "$oid": "6711d66dcd60fca157e5ea16" + } + }, + { + "text": "She's been really great. She's a strict grader and her quizzes are tricky, but if you do the bare minimum (study the notes she gives you and attend class), you get the hang of her testing style fairly quickly. She doesn't give a lot of homework and is quite understanding. One should have no problem comprehending her if they actually make an effort.", + "pos": 0.083, + "neu": 0.897, + "neg": 0.019, + "_id": { + "$oid": "6711d66dcd60fca157e5ea17" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66dcd60fca157e5ea19" + }, + "professor_name": "Santonyo Bangali", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Such an amazing and caring professor! He will make learning really fun and manageable. He is very understanding about the course load of engineering students and makes sure we know that we can take his class as break/rest too. Very helpful feedback given on all assignments too! TAKE HIM!!", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea1a" + } + }, + { + "text": "Pretty good professor. Understanding if you have difficulties, as well as holding you accountable.", + "pos": 0.402, + "neu": 0.49, + "neg": 0.108, + "_id": { + "$oid": "6711d66dcd60fca157e5ea1b" + } + }, + { + "text": "he convinced me to stay on life support just by going to his class. you will not regret.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea1c" + } + }, + { + "text": "Hes a great guy! The assignments are pretty straight forward. Sometimes his instructions are unclear but he always tries his best to improve as a teacher. He genuinely cares for his students. We had like a crafts day where we build a sling gun with rubber and pop sticks and that was really fun. I highly reccommend taking him hes amazing!! HUmble", + "pos": 0.379, + "neu": 0.569, + "neg": 0.051, + "_id": { + "$oid": "6711d66dcd60fca157e5ea1d" + } + }, + { + "text": "Very caring of his students. Not a tough grader, more leaning towards what your best effort looks like. Amazing teacher overall", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea1e" + } + }, + { + "text": "He is an amazing professor and very understanding when it comes to mental health and how it may affect work.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea1f" + } + }, + { + "text": "Great Professor!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea20" + } + }, + { + "text": "Extremely laid back and one of the nicest professors you'll encounter here. Easy and clear course curriculum with reasonable to easy assignments. Classes themselves are extremely chill and sometimes come with (good) surprises. Try for this professor if you have/want to take this course above any others", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea21" + } + }, + { + "text": "Honestly, this is my third week here in his class and I already love this man. He is so caring, understanding, and filled with positivity. My days are long enough here and whenever I go to his class later, I always look forward and feel motivated in there. Straightforward assignments as well, he's definitely someone to snag for English requirements", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea22" + } + }, + { + "text": "This class was great. Plenty of time to work on assignments. The assignments aren't difficult as long as you show up to class and listen or you could ask him for help and he'll give it to you.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea23" + } + }, + { + "text": "Professor Santonyo Bangali is a really good professor, asking questions to make sure all of us understands, understanding us for what situations we might be going through and is very supportive when needed. For the times I didn't do the work, instead of calling me out for that, he talk about it, figure out why we didn't do it and help us catch up.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea24" + } + }, + { + "text": "He's one of the best English professors at CCNY. Very caring and understanding, but also so passionate. His assignments aren't hard at all, and overall very light and refreshing class. Do recommend!", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea25" + } + }, + { + "text": "He is a very lenient professor. The topics are interesting and do show what await for future of Writing once you are a profesional.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea26" + } + }, + { + "text": "Bangali is fire, he is very chill, his assignments aren't hard but not to easy at the same time, if there was another class, he taught I would take it for sure. He is very caring and tries to satisfy everyone and help them one on one", + "pos": 0.268, + "neu": 0.654, + "neg": 0.079, + "_id": { + "$oid": "6711d66dcd60fca157e5ea27" + } + }, + { + "text": "He is hella chill. Assignments are easy to complete as long you understand what you need to do.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea28" + } + }, + { + "text": "Really cool professor, everything was explained clearly during every session of class.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea29" + } + }, + { + "text": "He is a good teacher caring and always helps u with needed must recommend", + "pos": 0.528, + "neu": 0.472, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea2a" + } + }, + { + "text": "Very understanding and do your best, show up to class, pay attention, and your guaranteed to pass.", + "pos": 0.204, + "neu": 0.728, + "neg": 0.068, + "_id": { + "$oid": "6711d66dcd60fca157e5ea2b" + } + }, + { + "text": "As a professor he was okay. He was one of the only professors that genuninley cared to see you succeed. Although he does give a lot of work, and be ready to do a lot of writing. You'll get through his class well if you ask him for help, he'll guide you through it well. Had a couple of papers for this course as well.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea2c" + } + }, + { + "text": "One of the best professors out there, I had difficulty with attendance during the beginning of the semester and he reached out and helped me in the best way. His way of teaching is entertaining and engaging, I took this class from 3:30-6-15pm and best believe I looked forward to it because I genuinely enjoyed the class.", + "pos": 0.305, + "neu": 0.662, + "neg": 0.032, + "_id": { + "$oid": "6711d66dcd60fca157e5ea2d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66dcd60fca157e5ea2f" + }, + "professor_name": "Laura Hinton", + "rating": 2.8, + "department": "English department", + "comments": [ + { + "text": "Literally never showed up on time, not even once. Almost always dismisses late. Also marked a student absent despite that student leaving after the 15-minute mark (at our school, students can do so without penalty. Talks about her personal life as much as she talks about the subject matter. Has a way of teaching that demotivates the entire class", + "pos": 0.063, + "neu": 0.937, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea30" + } + }, + { + "text": "Her class is test heavy. 3 exams and a writing journal. She misses a lot of classes, she wants really specific words on the exam, but all her exams are out of the lectures so even if you do no read and just listen youll pass. The class was an intro course but was not an easy A. But with hard work and listening skills its def possible!!!", + "pos": 0.0, + "neu": 0.867, + "neg": 0.133, + "_id": { + "$oid": "6711d66dcd60fca157e5ea31" + } + }, + { + "text": "Horrible Professor. She was late every class for 15 min, cancelled six or seven classes and didnt show up for the last exam. Her lectures are very boring and she wants you to memorize specific words and phrases that she demands you to use in her exams for a good grade. Dont take her! Awful professor.", + "pos": 0.083, + "neu": 0.787, + "neg": 0.129, + "_id": { + "$oid": "6711d66dcd60fca157e5ea32" + } + }, + { + "text": "This class was okay . The first two test are not that hard . However, the last test is pretty hard. She misses a lot of classes . The way to get a good grade is by taking good notes , passing two test and giving in the profilo. She giving writing assignments each week . Prepare to work in groups and share ideas with class . Not the best Whum class", + "pos": 0.221, + "neu": 0.702, + "neg": 0.077, + "_id": { + "$oid": "6711d66dcd60fca157e5ea33" + } + }, + { + "text": "Professor Hinton's reading list was phenomenal. The authors that she gave to her class for reading were admirable and I enjoyed learning about these writers. The problem is that she is not organized and it was difficult to keep up with the syllabus, which she changed a few times. She also was not obliged to provide feedback. I don't recommend her.", + "pos": 0.098, + "neu": 0.798, + "neg": 0.104, + "_id": { + "$oid": "6711d66dcd60fca157e5ea34" + } + }, + { + "text": "This class is a waste of your time, but take it for an easy A. Attend class. Cancels class often. I never paid attention. Our substitute teacher Robert was MUCH BETTER than her. The 3 tests are 10 MC questions, pretty easy, rarely tricky. Write good journals at least one page long and you get an A for it. She is late, boring, but NOT STRESSFUL.", + "pos": 0.26, + "neu": 0.634, + "neg": 0.106, + "_id": { + "$oid": "6711d66dcd60fca157e5ea35" + } + }, + { + "text": "She is the worst Lit professor I have taken in my college career. She talks about her life all through class and if you don't answer her test questions with the \"word\" or \"phrase\" she wants your wrong and she takes major points. She has a mandatory journal that she does grade it. DON'T TAKE HER, SAVE YOUR GPA.", + "pos": 0.019, + "neu": 0.825, + "neg": 0.156, + "_id": { + "$oid": "6711d66dcd60fca157e5ea36" + } + }, + { + "text": "This class was like being a freshman in high school. She has a track record of being short with students, rude, and dismissive. There is no hesitation to embarrass a student in front of the entire class and you cannot as much as shift your chair without being accused of trying to leave class. Which is not allowed under any circumstances.", + "pos": 0.092, + "neu": 0.814, + "neg": 0.095, + "_id": { + "$oid": "6711d66dcd60fca157e5ea37" + } + }, + { + "text": "She was late 10 minutes per class, and when she showed up, it took us 30 mins to start the class. She cancelled classes a total of six times. Pass the two exams and do the readings and the papers, you'll do well.", + "pos": 0.047, + "neu": 0.909, + "neg": 0.044, + "_id": { + "$oid": "6711d66dcd60fca157e5ea38" + } + }, + { + "text": "Always late to class. Does not respond to emails. Easily flustered. Kind of a mess (always forgetting things, constantly sick). BUT this class was interesting and engaging. The reading selections were SO GOOD and the lectures were interesting. 100% recommend this course. If you show up to class, the tests are EASY.", + "pos": 0.371, + "neu": 0.557, + "neg": 0.072, + "_id": { + "$oid": "6711d66dcd60fca157e5ea39" + } + }, + { + "text": "She is the worst professor ever, because of many reasons. First, she always comes to class late, she often doesn't call on you when your hand is raised, she doesn't accept doctors notes and she isn't a good teacher. Her entire curriculum is very vague and her tests are dependent on the most obscure parts of the material. Additionally she is rude!", + "pos": 0.044, + "neu": 0.768, + "neg": 0.188, + "_id": { + "$oid": "6711d66dcd60fca157e5ea3a" + } + }, + { + "text": "Avoid taking any classes with her if you can. Always late, lectures are boring and useless. Loves humiliating people and very unorganized. Just terrible. STAY AWAY", + "pos": 0.101, + "neu": 0.547, + "neg": 0.352, + "_id": { + "$oid": "6711d66dcd60fca157e5ea3b" + } + }, + { + "text": "She is always late. Lectures are essentially useless.", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d66dcd60fca157e5ea3c" + } + }, + { + "text": "She is all over the place in lecture. She arrives 10 minutes late to every class. She tends to spend more time on background knowledge then on what is important in all the books you read. You have 2 tests, 2 essays, and have to write weekly paragraphs. Easy class but horrible professor.", + "pos": 0.058, + "neu": 0.861, + "neg": 0.082, + "_id": { + "$oid": "6711d66dcd60fca157e5ea3d" + } + }, + { + "text": "When she is focused on the lecture she is great but we did waste 30 minutes of the class just trying to begin almost every class. As long as you read and do the work you will do great. Just remember what quotes are talked about in class and what themes she mentions for the midterm and final and she gives extra credit!! She is passionate.", + "pos": 0.226, + "neu": 0.729, + "neg": 0.045, + "_id": { + "$oid": "6711d66dcd60fca157e5ea3e" + } + }, + { + "text": "She kind of goes all over the place during lectures, can be OTT, but her class is simple and straight fwd. You read A LOT of diff classic books, write a half to 1 pg journal entry, discuss with your small group and class. *Take notes on what the groups discuss and what she emphasizes about the books, those will be on the short answer exams. Easy A", + "pos": 0.086, + "neu": 0.914, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea3f" + } + }, + { + "text": "If youre into boring lectures, a different book to read every week, and taking a class that is a WASTE OF TIME, then go ahead, this is the class for you.", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d66dcd60fca157e5ea40" + } + }, + { + "text": "Overall, her lectures are pretty good and she brings up really get ideas from the books we've read. But I preferred the recitation classes more: fewer students and it is easier to participate.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea41" + } + }, + { + "text": "After reading reviews, I am compelled to comment. How she is depends upon you. Students interested in learning did well in her class, and found her to be light-hearted but knowledgeable and passionate. Immature, unprepared students sat in the back, chatted and had problems with her. It depends on you. She's one of the best profs I've had at ccny.", + "pos": 0.206, + "neu": 0.745, + "neg": 0.049, + "_id": { + "$oid": "6711d66dcd60fca157e5ea42" + } + }, + { + "text": "I took her senior level feminist theory seminar and thoroughly enjoyed the class. There wasn't an impossible work load with 2 papers and a mini essay every week posted on a blog. One required text book, a few novels, movies to be watched out of class and a packet she hands out. She was a pleasure and I'll be taking her grad course in the fall.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d66dcd60fca157e5ea43" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66ecd60fca157e5ea45" + }, + "professor_name": "Deborah Coates Vietze", + "rating": 2.4, + "department": "Psychology department", + "comments": [ + { + "text": "highly underrated professor, her lectures are great and easy to understand i think the only reason she gets bad reviews is bc she is a bit sassy, and maybe people think she's being mean? but i found her to be really sweet, knowledgeable and caring", + "pos": 0.239, + "neu": 0.721, + "neg": 0.041, + "_id": { + "$oid": "6711d66ecd60fca157e5ea46" + } + }, + { + "text": "I took her for social psych (during the pandemic). If youre looking for a professor who knows how to teach well online you found her! This was as close to a normal class as it can get. Not gonna be an easy A. She requires you to be a good student (come on time, do the readings etc). If you can do that youll do well, otherwise youre wasting time", + "pos": 0.132, + "neu": 0.833, + "neg": 0.035, + "_id": { + "$oid": "6711d66ecd60fca157e5ea47" + } + }, + { + "text": "I was so scared to take her after reading her reviews, I thought she was going to be super strict and unreasonable but that is far from the truth. She is stern but she is also extremely helpful, reasonable and as long as you do what your supposed to do, you'll be fine. The lectures were very insightful and she makes everything very clear.", + "pos": 0.205, + "neu": 0.764, + "neg": 0.031, + "_id": { + "$oid": "6711d66ecd60fca157e5ea48" + } + }, + { + "text": "Dr. Vietze is one of the best professors in the history of CUNY. She is dedicated to seeing her students succeed, if/when they put the effort. The courses are only difficult if you are used to slacking off, she provides incredible insight and is always available to help anyone who needs it. She is an inspiring mentor, take her classes if you can!", + "pos": 0.214, + "neu": 0.753, + "neg": 0.033, + "_id": { + "$oid": "6711d66ecd60fca157e5ea49" + } + }, + { + "text": "I had to drop her class. She gives too much work. She is a very tough grader. If you really want to take her all I can say good luck you are on your own.", + "pos": 0.181, + "neu": 0.725, + "neg": 0.094, + "_id": { + "$oid": "6711d66ecd60fca157e5ea4a" + } + }, + { + "text": "You can tell when a professor wrote a review (the most recent one) and when her students wrote a review. Do not take this class because its clear she cant take criticism but she loves to dish it out.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d66ecd60fca157e5ea4b" + } + }, + { + "text": "She doesn't belittle you, she tells you how you can improve. She doesn't have a 'chip on shoulder', she wants you to advocate for yourself. She 's very encouraging. If you are the type of person to see her firm guidance as an attack, don't join this class. Also she is tech savvy; we are dealing with the covid and everything is running smoothly", + "pos": 0.123, + "neu": 0.808, + "neg": 0.068, + "_id": { + "$oid": "6711d66ecd60fca157e5ea4c" + } + }, + { + "text": "I do not know how a person who belittles students constantly is still working at CCNY. She made me cry and I could not even speak or explain my concerns because she is too rude. CCNY should do something about this situation. She cannot continue treating students like this. SHE DOES not care about students.", + "pos": 0.04, + "neu": 0.82, + "neg": 0.14, + "_id": { + "$oid": "6711d66ecd60fca157e5ea4d" + } + }, + { + "text": "Horrible. Do whatever you can to avoid her.", + "pos": 0.0, + "neu": 0.513, + "neg": 0.487, + "_id": { + "$oid": "6711d66ecd60fca157e5ea4e" + } + }, + { + "text": "This class is a nightmare, I realize she doesn't know how to use Blackboard. Instructions are unclear, communication is impossible and the feedback is generic. She uses an old template \"try better\" for everybody. Pointless here doesn't matter if you study or not.", + "pos": 0.063, + "neu": 0.87, + "neg": 0.067, + "_id": { + "$oid": "6711d66ecd60fca157e5ea4f" + } + }, + { + "text": "Do not take Dr. Vietze, says blatantly incorrect statements and belittles others on a constant basis. Her tests have an inexcusable amount of mistakes, which if a student had in their answers would, rightfully, result in very low marks. Moreover, her directions are vague, and she provided contradictory directions which resulted in much confusion", + "pos": 0.0, + "neu": 0.818, + "neg": 0.182, + "_id": { + "$oid": "6711d66ecd60fca157e5ea50" + } + }, + { + "text": "For those of you currently registering for classes, I advise you now: DO NOT TAKE HER. I am currently in her class and it is a disorganized mess. Gives multiple online quizzes with vague&pointless questions that do not assess your knowledge of the material at all. She is rude and will belittle students who try to ask any clarifying questions", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d66ecd60fca157e5ea51" + } + }, + { + "text": "I'm suspicious of the legitimacy of the few good reviews Vietze has received, as they fooled me into taking her. As most of the reviews state, she is a bitter, mean professor. She barely knows her own textbook and creates vague, grammatically incorrect tests/quizzes. She is even ruder if you try to seek help in office hours. Inferiority complex.", + "pos": 0.107, + "neu": 0.693, + "neg": 0.201, + "_id": { + "$oid": "6711d66ecd60fca157e5ea52" + } + }, + { + "text": "Horrible, mean professor. Condescending to all her students when she barely knows her own textbook and has a poor grasp on general knowledge.", + "pos": 0.0, + "neu": 0.761, + "neg": 0.239, + "_id": { + "$oid": "6711d66ecd60fca157e5ea53" + } + }, + { + "text": "Come to class, bring your textbook ( readings are only from textbook), and participate (most important)! She has 3 online exams, 5 timed online (The exam questions are usually the same as the quiz questions!), and final proposal paper. Does a lot of group work. Also offers multiple extra credit. Recommend her over lecture classes!", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d66ecd60fca157e5ea54" + } + }, + { + "text": "I was hesitant about taking this class because of the reviews regarding Dr. V. While I understand how some people consider her to be \"tough\", I think Dr. V is just the right amount of \"tough\" to keep her students focused and on the right track. Dr. V truly cares about her students. I can honestly tell you I learned much more than I expected.", + "pos": 0.154, + "neu": 0.779, + "neg": 0.067, + "_id": { + "$oid": "6711d66ecd60fca157e5ea55" + } + }, + { + "text": "Dr. V is an awesome professor. She may seem tough at first but she expects the best from her students and is willing to put the time in to help you get there. You MUST have the textbook, without it you are guaranteed to fail. Her exams and assignments are online, but it is imperative that you attend class. Great Mentor, available outside class!", + "pos": 0.218, + "neu": 0.709, + "neg": 0.073, + "_id": { + "$oid": "6711d66ecd60fca157e5ea56" + } + }, + { + "text": "Has no concept of order, she's all over the place. She appears nice and helpful but really is forgetful and a liar. Exams are on BB, sometimes computer marks test answers wrong even when correct, says she will resolve it, not true. Relies on BB and on a \"teacher's aid\" to teach her class for her. Standoffish and disingenuous. Avoid like the plague.", + "pos": 0.127, + "neu": 0.642, + "neg": 0.231, + "_id": { + "$oid": "6711d66ecd60fca157e5ea57" + } + }, + { + "text": "Dr V is a great professor. You must be prepared for her class. If you come to class not ready to learn, you will be exposed quickly. She is compassionate and treats the students like adults. She gets you ready for the real world.", + "pos": 0.26, + "neu": 0.678, + "neg": 0.062, + "_id": { + "$oid": "6711d66ecd60fca157e5ea58" + } + }, + { + "text": "None of the tags could explain how TERRIBLE of a professor she is -as a class we had to go to the dean for help as she was nonexistent! If you email her do NOT expect a response to your question. IF she happens to respond, it is only to belittle you and correct your grammar, no where in the reply will there be a response.", + "pos": 0.037, + "neu": 0.839, + "neg": 0.125, + "_id": { + "$oid": "6711d66ecd60fca157e5ea59" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66fcd60fca157e5ea5b" + }, + "professor_name": "Stan Gedzelman", + "rating": 3.6, + "department": "Science department", + "comments": [ + { + "text": "He was really fun", + "pos": 0.545, + "neu": 0.455, + "neg": 0.0, + "_id": { + "$oid": "6711d66fcd60fca157e5ea5c" + } + }, + { + "text": "Comprehensive coveragei of climate.", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d66fcd60fca157e5ea5d" + } + }, + { + "text": "I adore this man. His jokes were funny, the material was interesting and the exams were fair. He was funny, loved science & spend so many hours in his office helping students who wanted to learn. His class was the best. Evrytime I look at a cloud - I remember him, b/c thanks to him I will always remember the cloud types & names. Fantastic prof", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d66fcd60fca157e5ea5e" + } + }, + { + "text": "He requires students to think and analyze. Exams aren't hard it is just that most CCNY students are good at only memorizing facts so when it is necessary to apply and calculate,they struggle. Negative reviews are from people who don't do the work and complain when they do badly. To perform well,study and go to his office.Tough class, but doable.", + "pos": 0.048, + "neu": 0.832, + "neg": 0.12, + "_id": { + "$oid": "6711d66fcd60fca157e5ea5f" + } + }, + { + "text": "If I marry a man like SG, I will die happy! He loves science, has a good sense of humor, is always really fair, is helpful, believes in his student?s potential, encourages you to come to office hours...and he is hot.. .The only thing you have to do is to think ? is it too much to ask, of you?", + "pos": 0.307, + "neu": 0.644, + "neg": 0.049, + "_id": { + "$oid": "6711d66fcd60fca157e5ea60" + } + }, + { + "text": "Tough professor! But interesting. Could and should limit inappropriate comments.At times rude to students. Not always clear instructions to complete labs.Wants students to think outside of the box. Would say he challenges his students to think.", + "pos": 0.113, + "neu": 0.699, + "neg": 0.188, + "_id": { + "$oid": "6711d66fcd60fca157e5ea61" + } + }, + { + "text": "Professor Gedzelman is awesome. Easily one of the best professors I?ve had at city. It's true that he's tough and his exams are super hard but if you're dedicated you should be fine. He uses cool powerpoints and is extremely helpful. He bought the class cake once. Made me want to be a science major!", + "pos": 0.366, + "neu": 0.6, + "neg": 0.034, + "_id": { + "$oid": "6711d66fcd60fca157e5ea62" + } + }, + { + "text": "His comments and corny jokes are very inappropriate. He doesn't give multiple choice questions on exams and gives pop quizzes in the beginning of the class. If ur 2 min late, u can't take the pop quiz so technically ur apsent cause thats how attendance is taken. Hardest professor I ever had at City.", + "pos": 0.036, + "neu": 0.964, + "neg": 0.0, + "_id": { + "$oid": "6711d66fcd60fca157e5ea63" + } + }, + { + "text": "He is condescending and wants to see his students do poorly. When a student asked a question he said, \"Did you take Geometry in high school?\" On the first day of class he told us there would be tears after the first test. He boasts that he is available to answer questions during office hours. Students are forced to take notes in the dark.", + "pos": 0.0, + "neu": 0.927, + "neg": 0.073, + "_id": { + "$oid": "6711d66fcd60fca157e5ea64" + } + }, + { + "text": "Truth be told, this man is not the easiest professor in CCNY but if you made no effort in trying-no excuse. He is very compassionate about his subject and people will have mixed feelings about him. He was there when I needed extra assistance. Yes, he is harsh when it comes to exams and mocks us but it's shouldn't be mistaken for hostility.", + "pos": 0.167, + "neu": 0.63, + "neg": 0.203, + "_id": { + "$oid": "6711d66fcd60fca157e5ea65" + } + }, + { + "text": "I'm agreeing with the other students who took EAS104 for Fall 2010. Worst professor ever, has no idea what he's doing, and is just so rude to the students. He took half an hour out of a lecture to mock us because we did not do well on his tests. If he taught correctly in the first place, then we would've passed with flying colors. Do not take it.", + "pos": 0.03, + "neu": 0.786, + "neg": 0.184, + "_id": { + "$oid": "6711d66fcd60fca157e5ea66" + } + }, + { + "text": "Like the below comment, EAS104 was one of the worst class I've ever taken. He obviously is incapable of handling a lecture class. The usual class is him talking about his experiences in different places rather than teaching those different places. This class was such a waste of my time.", + "pos": 0.043, + "neu": 0.793, + "neg": 0.164, + "_id": { + "$oid": "6711d66fcd60fca157e5ea67" + } + }, + { + "text": "Anyone who took EAS 104 this semester (Fall 2010) will agree that this was the worst professor to do the job.He was rude, called us babies, didn't want us to get good grades. Even our Recitation teacher told us to complain about him to the chairman. Do NOT take this guy. EVER. I had to withdraw and I never give up on school. Hate him.", + "pos": 0.069, + "neu": 0.744, + "neg": 0.186, + "_id": { + "$oid": "6711d66fcd60fca157e5ea68" + } + }, + { + "text": "Definitely one of the best Earth Science professors I've had. Very intelligent and knows his stuff. Really tries hard to make sure everyone in the class understands. Very approachable and helpful.", + "pos": 0.368, + "neu": 0.592, + "neg": 0.04, + "_id": { + "$oid": "6711d66fcd60fca157e5ea69" + } + }, + { + "text": "He is very passionate about teaching. Willing to help students outside the class. He is funny and very frequent with jokes. If you're willing to work, you can learn a lot and get a good grade", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d66fcd60fca157e5ea6a" + } + }, + { + "text": "Great professor. Very helpful after class or in his office.Quizzes or homework will push you to understand the material. He tells what type of questions the test will cover. Wants us all to do well and are always prepared for the test.Warning: He gets pissed when people don't study. Overall excellent professor.", + "pos": 0.174, + "neu": 0.714, + "neg": 0.112, + "_id": { + "$oid": "6711d66fcd60fca157e5ea6b" + } + }, + { + "text": "Not many can communicate well in science departments but he's very good. Unannounced quizzes is 'cause he wants students to study.He'd rather grade you on how much you learned, not how good or bad you do on tests. Take advantage of this.He's a sweetheart-chatty,funny but overall is a great guy. I wish he taught more classes I could schedule.", + "pos": 0.227, + "neu": 0.672, + "neg": 0.102, + "_id": { + "$oid": "6711d66fcd60fca157e5ea6c" + } + }, + { + "text": "Gedzelman is the best professor!Very knowledgeable,intelligent, helpful, generous, funny, ADORABLE AND HOT! I love him.Labs can be hard but if you go to his office, he goes through the Labs with you until you understand the material.But don?t expect exploit his kindness or get a good grade unless you put in effort and do the work.I'd take him again", + "pos": 0.299, + "neu": 0.663, + "neg": 0.038, + "_id": { + "$oid": "6711d66fcd60fca157e5ea6d" + } + }, + { + "text": "gives unannounced quizzes. i studided really hard for this class and in the end had to drop. He doesnt explain things clearly and basically puts no hope in his students. Donot take his class b/c you will end up dropping or failing", + "pos": 0.0, + "neu": 0.759, + "neg": 0.241, + "_id": { + "$oid": "6711d66fcd60fca157e5ea6e" + } + }, + { + "text": "I don't know how people rated him badly.He's one of the nicest profs here.Iwas scared because of the terrible ratings.He must have read those too and changed his style because he is very well organized and fair professor. Exercises/labs in his class are fun and helpful for learning the material.If you put in the time you'll get a good grade.", + "pos": 0.226, + "neu": 0.694, + "neg": 0.08, + "_id": { + "$oid": "6711d66fcd60fca157e5ea6f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d66fcd60fca157e5ea71" + }, + "professor_name": "William Fishbein", + "rating": 2.4, + "department": "Psychology department", + "comments": [ + { + "text": "Ugh, another one of those soft speaking professors that don't really teach their material too well. He doesn't really help out during office hours. Don't take him, material is 3 papers, tests and final exam failed me :", + "pos": 0.047, + "neu": 0.761, + "neg": 0.192, + "_id": { + "$oid": "6711d66fcd60fca157e5ea72" + } + }, + { + "text": "This man is horrible. Dont even take him if this is the last class available for you to graduate. SPARE YOURSELF! Even to give you an F so you can retake the class is a problem bc he does not believe in the F policy. The F that one attains bc of the complete uselessness he \"teaches\" in class and somehow tries to test you on. And hes beyond rude.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d66fcd60fca157e5ea73" + } + }, + { + "text": "He does speak rather softly, so sit near the front. He's kind of eccentric, but he can also be really funny. He's a good teacher, but he has high expectations for his students. Act like an adult and you'll do well.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d66fcd60fca157e5ea74" + } + }, + { + "text": "Low speaking, doesnt like to help you after class, will not repeat what he says if you cant hear him he will tell u to ask someone else...very stoic and cold. not a good professor i regret taking him", + "pos": 0.0, + "neu": 0.744, + "neg": 0.256, + "_id": { + "$oid": "6711d66fcd60fca157e5ea75" + } + }, + { + "text": "Lisen....Listen very carefully since Dr.Fishbein speaks very low. Sit in the front!!! So you can hear. Take intense notes. I mean intense. Study everything. Know everything. He is very intelligent. You will learn a lot. His tests are hard I will not kid you. I took psychopharmocology my grade was a B. I worked hard for it.", + "pos": 0.134, + "neu": 0.784, + "neg": 0.081, + "_id": { + "$oid": "6711d66fcd60fca157e5ea76" + } + }, + { + "text": "It is ironic because one would expect a trained clinician to care about people, but this guy is the opposite. He is coldhearted and passive agressive and wont even let you use the bathroom! if you think you will learn in his class, forget it you can just learn this stuff yourself! run away and take someone else. 3 tests that are impossible to pass!", + "pos": 0.074, + "neu": 0.874, + "neg": 0.052, + "_id": { + "$oid": "6711d66fcd60fca157e5ea77" + } + }, + { + "text": "Don't get me wrong but he is actually a pretty nice professor, however, he is very boring. His lectures are informative and helpful if you can stay awake, but sometimes, it's hard to stay awake. It is difficult to hear him sometimes too. Attendance is a must.", + "pos": 0.218, + "neu": 0.648, + "neg": 0.134, + "_id": { + "$oid": "6711d66fcd60fca157e5ea78" + } + }, + { + "text": "One of the worst professor's ever!!!! DO NOT take him!! He's boring, speaking a low monochromatic tone and doesn't offer any extra credit, test review or anything.", + "pos": 0.074, + "neu": 0.652, + "neg": 0.274, + "_id": { + "$oid": "6711d66fcd60fca157e5ea79" + } + }, + { + "text": "He is rude, will not help you if you do not understand some of the material , Does not allow you to use the bathroom. Talk in a low tone. worst prof.", + "pos": 0.0, + "neu": 0.673, + "neg": 0.327, + "_id": { + "$oid": "6711d66fcd60fca157e5ea7a" + } + }, + { + "text": "TOOK HIM FOR BEHAVIORAL NEUROSCIENCE 1, WORST PROF. I HAVE EVER HAD, AVOID AT ALL COST. HE IS NEVER AVAILABLE , WILL NEVER ANSWER QUESTIONS!!", + "pos": 0.0, + "neu": 0.734, + "neg": 0.266, + "_id": { + "$oid": "6711d66fcd60fca157e5ea7b" + } + }, + { + "text": "If you take this class bring a recorder and sit in the front. He speaks only at a certain level and when he's excited that's when you'll get some volume out of him. Don't let the fact that he doesn't answer any questions discourage you. Be sure to read and use all the lectures.", + "pos": 0.114, + "neu": 0.839, + "neg": 0.047, + "_id": { + "$oid": "6711d66fcd60fca157e5ea7c" + } + }, + { + "text": "A brilliant and no-nonsense Professor! I especially love the stories he tells during lectures. They reinforce his point and helped me remember the material, especially for the exams. His exams are fair and are only on what he covers in lectures, so if you attend his lectures you will definitely get an A in the class. I recommend taking his class!", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d66fcd60fca157e5ea7d" + } + }, + { + "text": "I honestly have never dealt with a more diffuclt man in my life. I can not understand in the least bit how this man pratices cognitive psychology for a living. I heard is was ok in someother classes, but at all cost avoid taking it for experimental psychology, which is the capstone course at CCNY.", + "pos": 0.062, + "neu": 0.89, + "neg": 0.048, + "_id": { + "$oid": "6711d66fcd60fca157e5ea7e" + } + }, + { + "text": "Very intelligent and funny man! This class is for those who can take initiative and study on their own. Take very comprehensive notes during lectures. Only three exams, so no room to make mistakes. Very low tolerance for tardiness and make sure you take care of restroom needs before class. He can seem strict, but then again this is college!", + "pos": 0.175, + "neu": 0.746, + "neg": 0.079, + "_id": { + "$oid": "6711d66fcd60fca157e5ea7f" + } + }, + { + "text": "Taught me Intro to Cog.Neuro/Quite intelligent prof.and funny/Explains very well/His expertise is psychopharm-course was heavy on drugs etc/ Does NOT stop talking and his voice simply gets tiring/A bit flexible attendance/3 exams- record him and learn 99% of it/know useless data-dates,names, hist.of psy../No much need for book/I'd avoid him :(.", + "pos": 0.12, + "neu": 0.792, + "neg": 0.088, + "_id": { + "$oid": "6711d66fcd60fca157e5ea80" + } + }, + { + "text": "AVOID if possible! the worst prof in the history of city college! He knows a lot but doesnt have the answer to any question. 3 impossibly difficult exams! NO review! and no papers...", + "pos": 0.0, + "neu": 0.642, + "neg": 0.358, + "_id": { + "$oid": "6711d66fcd60fca157e5ea81" + } + }, + { + "text": "This professor is one of the worst . His class is composed of 3 exams. He only lectures and if you dont write down what he wrote, your screwed. There are no reviews, no slides to study, no notes to study for but your own. He doesnt know anyones name and does not care who you are or if you pass or fail. Do yourself a favor and avoid this class", + "pos": 0.058, + "neu": 0.722, + "neg": 0.22, + "_id": { + "$oid": "6711d66fcd60fca157e5ea82" + } + }, + { + "text": "He is eccentric and funny, yet serious and a bit aloof. He rarely stays after class to speak to students, does not know anybody's name and doesn't allow many questions in class. But the course is very interesting and he is good at what he does. Take good notes and pay attention and study hard for exams!", + "pos": 0.203, + "neu": 0.714, + "neg": 0.083, + "_id": { + "$oid": "6711d66fcd60fca157e5ea83" + } + }, + { + "text": "The only reason ppl don't like him is because they don't expect to have to seriously study for a psy course. He is funny, makes pharmacology interesting and so it was breeze sitting through even 2.5hrs of class. One of my favorite profs ever. Structured, intelligent, interesting etc. 50% midterm, 50%final so the pressure's on, but questions are fai", + "pos": 0.149, + "neu": 0.806, + "neg": 0.045, + "_id": { + "$oid": "6711d66fcd60fca157e5ea84" + } + }, + { + "text": "Professor Fishbein is one of the best. He is tough, but fair. He expects adults to act like adults...go figure. He engages those who show a genuine interest in the material. The only problem I had with this class is that it wasn't 2 semesters long. There just wasn't enough time to get through the entire syllabus, but the course was great!", + "pos": 0.265, + "neu": 0.675, + "neg": 0.06, + "_id": { + "$oid": "6711d66fcd60fca157e5ea85" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d670cd60fca157e5ea87" + }, + "professor_name": "Arthur Lynch", + "rating": 3.2, + "department": "Psychology department", + "comments": [ + { + "text": "I took this class in 2019, he is one of the most insensitive professors I have ever had and has no consideration for anyone. My grandmas funeral was the day of the final, I emailed him to reschedule and he said if I dont attend the final, he will give me an F. Just for me to attend and him to tell us we changed the date. For that I missed it.", + "pos": 0.0, + "neu": 0.882, + "neg": 0.118, + "_id": { + "$oid": "6711d670cd60fca157e5ea88" + } + }, + { + "text": "He disappeared so often during the semester!! He announced all of the students' failing grades for everyone to see because they did not sign a contract to promise not to cheat! In the end we took a midterm within 3 weeks of the final and he disappeared AGAIN-no graded midterm, no final. Not one in this class has grade from him.", + "pos": 0.068, + "neu": 0.786, + "neg": 0.145, + "_id": { + "$oid": "6711d670cd60fca157e5ea89" + } + }, + { + "text": "If you are planning to take him in the future DON'T. He would constantly come to class late or not even show up. He would not teach the material in class instead he would talk about if we ever got whipped with a ruler by a teacher?? He's extremely rude and tried to fail 75 of both statistics class because we did fill in the subject in an email.", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d670cd60fca157e5ea8a" + } + }, + { + "text": "We were taught to use SPSS and in certain aspects, Lynch did fine, BUT the hmwk isn't graded, we take no quizzes, no classwork, no grades AT ALL except for the exams. We spent the entire semester trying to work SPSS and rushed to take only two exams. He's snappy and dismissing at times and his exams differ from material taught in class. Good luck.", + "pos": 0.203, + "neu": 0.761, + "neg": 0.037, + "_id": { + "$oid": "6711d670cd60fca157e5ea8b" + } + }, + { + "text": "If you want to learn statistics then you won't learn much of that in this course he only teaches you how to use IBM SPSS. I took him at 8am and his lectures tend to be long and boring. He only gives two exams that are open book and only the final counts towards your final course grade. He isn't accessible after the semester is over which sucks", + "pos": 0.018, + "neu": 0.914, + "neg": 0.068, + "_id": { + "$oid": "6711d670cd60fca157e5ea8c" + } + }, + { + "text": "This class can be an easy A if you pay attention in ALL of his lectures and do all homeworks. They aren't mandatory but helps you understand a lot for the exams. His exams are like the homeworks and he only gives two exams but uses the grade for the final as your final course grade. He also tends to ramble and his lectures can get very boring.", + "pos": 0.069, + "neu": 0.819, + "neg": 0.112, + "_id": { + "$oid": "6711d670cd60fca157e5ea8d" + } + }, + { + "text": "Online", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d670cd60fca157e5ea8e" + } + }, + { + "text": "I love this professor he teaches very well and I would take him again and again. He only gives two exams and the homework aren't mandatory but helps if you do it. Pat very close attention in his class and you'll do fine. Med-School here I come", + "pos": 0.124, + "neu": 0.802, + "neg": 0.074, + "_id": { + "$oid": "6711d670cd60fca157e5ea8f" + } + }, + { + "text": "the only that counts in this class is the final! hw doesnt count neither do the other 2 tests! worse class i've ever taken wouldn't recommend", + "pos": 0.0, + "neu": 0.806, + "neg": 0.194, + "_id": { + "$oid": "6711d670cd60fca157e5ea90" + } + }, + { + "text": "I would not take this class or professor again. He is horrible you only get two quizzes no homework or no extra credit. He dont care if you come to class or not you just have to teach yourself and pass the two test. He rambles about non important things. He is horrible.", + "pos": 0.058, + "neu": 0.722, + "neg": 0.22, + "_id": { + "$oid": "6711d670cd60fca157e5ea91" + } + }, + { + "text": "He is one of the worst professors I have ever taken at CCNY. He does not care at all and at the end of the semester when you get your final grade, he will not be available to discuss it. You cannot go to him for help either because he does not care. You are only graded off two exams, no extra credit homework or even classwork.", + "pos": 0.035, + "neu": 0.788, + "neg": 0.177, + "_id": { + "$oid": "6711d670cd60fca157e5ea92" + } + }, + { + "text": "If you'd like to truly understand statistics, take a different course. If you'd like to learn how to use IBM SPSS, this is definitely the course for you. You will not pass this class if you do not pay attention, it is essential. Lecture notes are helpful, Dr. Lynch is intimidating but helpful, and the homework is optional (doing it helps A LOT).", + "pos": 0.238, + "neu": 0.736, + "neg": 0.027, + "_id": { + "$oid": "6711d670cd60fca157e5ea93" + } + }, + { + "text": "Professor Lynch teaches how to use IBM SPSS. It is on you to learn statistics. If you can show up to every class and pay attention half the time, you will do well. Professor Lynch is strict and likes doing things his way, but his tests are easy if you pay attention to every class.", + "pos": 0.121, + "neu": 0.832, + "neg": 0.047, + "_id": { + "$oid": "6711d670cd60fca157e5ea94" + } + }, + { + "text": "If you truly want to learn AND understand statistics, take another professor. Lectures are long, he can get rude during the lectures. He explains things that shouldn't need to be explained (i.e., how you should do everything he does otherwise you are falling off the cliff) and the only good thing was when he canceled class due to weather.", + "pos": 0.108, + "neu": 0.822, + "neg": 0.07, + "_id": { + "$oid": "6711d670cd60fca157e5ea95" + } + }, + { + "text": "Professor Lynch does not explain the lectures as he should, he is very slow and gets annoyed when students ask him for help. He rarely teaches anything at all I feel like I haven't learned any statistics. He only gives two tests therefore your grade is based on that. If you really want to learn statistics go for someone else.", + "pos": 0.104, + "neu": 0.856, + "neg": 0.04, + "_id": { + "$oid": "6711d670cd60fca157e5ea96" + } + }, + { + "text": "Prof Lynch is not the worst, despite what some students might tell you. Took Stats with him and although I highly think Applied Stats should be taught with both Lecture and Lab, his class was not that bad. If you want to understand better, read the book(don't buy it we didn't use it). And please do all the exercises he gives before the exams.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d670cd60fca157e5ea97" + } + }, + { + "text": "He is very rude and inconsiderate.", + "pos": 0.0, + "neu": 0.383, + "neg": 0.617, + "_id": { + "$oid": "6711d670cd60fca157e5ea98" + } + }, + { + "text": "Professor Lynch was not a hard professor. As long as you attend his lectures, take notes and do his homework (optional), you'll do fine on the exam. Don't get on his bad side because he'll give you an attitude. He's always willing to answer questions and help you with anything you don't understand. Cares about attendant!", + "pos": 0.092, + "neu": 0.809, + "neg": 0.099, + "_id": { + "$oid": "6711d670cd60fca157e5ea99" + } + }, + { + "text": "Excellent professor but be prepared to come to class and work hard. SPSS training makes the learning worth while!", + "pos": 0.307, + "neu": 0.627, + "neg": 0.067, + "_id": { + "$oid": "6711d670cd60fca157e5ea9a" + } + }, + { + "text": "Good class because the tests are open book. He tries his best to make the lesson clear, however sometimes he ramble on about other stuff. When you ask a question he does not get straight to the point. He is very nice, I will give him a 3/5.", + "pos": 0.223, + "neu": 0.748, + "neg": 0.029, + "_id": { + "$oid": "6711d670cd60fca157e5ea9b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d670cd60fca157e5ea9d" + }, + "professor_name": "Abdelahad Khajo", + "rating": 3.7, + "department": "Chemistry department", + "comments": [ + { + "text": "His syllabus is super simple to read and his grading criteria is really fair and generous. If you attend recitation, lab and get 100% of the homework done, you can aim to get a 70 in his exams and pass with an overall great score! His exams are multiple choice which means there is risk of losing more points so study well using his exam review!", + "pos": 0.212, + "neu": 0.73, + "neg": 0.058, + "_id": { + "$oid": "6711d670cd60fca157e5ea9e" + } + }, + { + "text": "Overall I despise General Chemistry, but I appreciate the leniency with Prof Khajo. I despised the time consuming Aleks Hw (department given) just to never touch chemistry again. Khajo does great exam reviews and makes all tests (and final) multiple choice. He also drops the lowest of 3. Recitation was kind of pointless. But the class isnt to hard", + "pos": 0.147, + "neu": 0.733, + "neg": 0.12, + "_id": { + "$oid": "6711d670cd60fca157e5ea9f" + } + }, + { + "text": "100% would recommend taking Professor Khajo. He is very funny, very lenient and very respected within the course. His grading criteria makes it much easier for students to pass the class with a C or an above. One thing that I would recommend is that you study a lot for the exams. Professor is very nice if you don't get on his bad side.", + "pos": 0.253, + "neu": 0.703, + "neg": 0.044, + "_id": { + "$oid": "6711d670cd60fca157e5eaa0" + } + }, + { + "text": "He's a good professor, and a really good lecturer, but his exams are tough. The grading scale is shifted to make it easier to get an A. The final exam was an absolute war crime. If you're like me and have to take a science elective, go with EAS instead of this. If you have no other option and have to take Chem104, go with Khajo.", + "pos": 0.131, + "neu": 0.693, + "neg": 0.175, + "_id": { + "$oid": "6711d670cd60fca157e5eaa1" + } + }, + { + "text": "Very straightforward professor. He reviewed slides during lecture and his tests were similar to the material discussed. We had 3 midterms and 1 final, the lowest midterm was dropped. If you come to class, take good notes, and do the ALEKS (I felt that certain sections did help me understand the topics better), you will pass. He's funny too.", + "pos": 0.195, + "neu": 0.767, + "neg": 0.038, + "_id": { + "$oid": "6711d670cd60fca157e5eaa2" + } + }, + { + "text": "Khajo was in all seriousness a good professor, I had to retake chem before but he made everything so simple. I would not disclose the other prof.'s name but Khajo was 10 times better. Just pay attention to his lecture and solve problems (on your own from free textbook, that he provides or just google problems). 3 tests (1 dropped-low) and a final.", + "pos": 0.161, + "neu": 0.712, + "neg": 0.127, + "_id": { + "$oid": "6711d670cd60fca157e5eaa3" + } + }, + { + "text": "Dr. Khajo is genuinely a really good professor. Tests were mostly mcq with some short answers and were pretty straightforward as long as you reviewed previous tests and his slides. His slides were pretty easy to read and understand. For the final, he let us use a cheat sheet. All in all, it was a pretty fun semester.", + "pos": 0.26, + "neu": 0.699, + "neg": 0.041, + "_id": { + "$oid": "6711d670cd60fca157e5eaa4" + } + }, + { + "text": "The best choice for Chem103 / 104. 3 Exams (1 is dropped) and 1 final with a cheat sheet. Aleks didn't really help but do it for easy 15 points.", + "pos": 0.178, + "neu": 0.718, + "neg": 0.103, + "_id": { + "$oid": "6711d670cd60fca157e5eaa5" + } + }, + { + "text": "I had Prof. Khajo for Gen Chem 1 and 2. He's a good professor and very fair with grading. His exams are usually MCQ questions, mostly from the lecture slides and textbook. ALEKS didn't help for the exams but it's 15% of the grade. He allowed a cheat sheet for the final. Do textbook questions, attend recitation, and the class should be fair to pass.", + "pos": 0.093, + "neu": 0.83, + "neg": 0.078, + "_id": { + "$oid": "6711d670cd60fca157e5eaa6" + } + }, + { + "text": "Pretty good professor. I took him in the spring for Chem104. Clear grading criteria (grade is dependent on HW from the website Aleks, lab, recitation, and exams). You take 3 midterms and the lowest score is dropped. Final exam counts for a lot. The lectures, HW, and his review sessions for midterms are all very helpful. Exams are very fair.", + "pos": 0.203, + "neu": 0.761, + "neg": 0.037, + "_id": { + "$oid": "6711d670cd60fca157e5eaa7" + } + }, + { + "text": "35% Midterms (2 of 3) | 25% Final Exam | 15% Lab | 15% Online HW | 10% Recitation | Do each ALEKS unit a week ahead. Ace the 1st and 3rd midterms (70+ is good). Attend lab AND recitation. Read the textbook and lecture slides. Allows double-sided cheat sheet for final. Exams were all MCQ, similar to midterms. He's the better Gen Chem professor.", + "pos": 0.082, + "neu": 0.876, + "neg": 0.042, + "_id": { + "$oid": "6711d670cd60fca157e5eaa8" + } + }, + { + "text": "Professor Khajo can either be easy or difficult, depending on what you make of it.\n\nHe spends time explaining his lectures unlike some professors who read through, but some concepts will get difficult, so ask questions.\n\nAleks isn't like exams, which are moderately difficult, but exams are curved and you can use 1 \"cheat sheet\" on final exam.", + "pos": 0.028, + "neu": 0.755, + "neg": 0.217, + "_id": { + "$oid": "6711d670cd60fca157e5eaa9" + } + }, + { + "text": "This professor does not care about you at all. He is good as long as you don't run into any issues. I emailed him to ask whether \"periodic knowledge check\" will count towards our grade he said they wont however they brought my pie progress to 67% from 100%. I have to redo like 20 topics and have 3 finals. When I emailed him he said \"Idk\".", + "pos": 0.11, + "neu": 0.835, + "neg": 0.054, + "_id": { + "$oid": "6711d670cd60fca157e5eaaa" + } + }, + { + "text": "You need to study really hard if you want a good grade. His lectures are good but you need to study a lot. He gives lots of home works and the tests are quite hard.", + "pos": 0.131, + "neu": 0.781, + "neg": 0.088, + "_id": { + "$oid": "6711d670cd60fca157e5eaab" + } + }, + { + "text": "Khajo is a good choice if you don't want to learn or just need chem for grove. His syllabus is outlined clearly, his exams are pretty fair (usually gives extra credit and allowed a cheat sheet for the final), and he curves a good amount. The aleks homework is time consuming and unhelpful, but so is this class.", + "pos": 0.175, + "neu": 0.776, + "neg": 0.048, + "_id": { + "$oid": "6711d670cd60fca157e5eaac" + } + }, + { + "text": "35%: 2 out of 3 Midterm Exams\n30%: Final Exam - All Chapters\n10%: Lab (In-Person & ALEKS)\n15%: ALEKS HW\n10%: Recitation\n\nALEKS (online HW) is doable but time-consuming, do it a week prior. Go to Lab and Recitation-it matters. Study the textbook (accessible & free online) front to back. He reviews before each exam. Study concepts/vocab. Good luck!", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d670cd60fca157e5eaad" + } + }, + { + "text": "The program he uses, Aleks, is very time consuming so be prepared for that. He does read off slides and there are a lot of slides only because he adds a ton of review questions. Make sure to study the material off the slides.", + "pos": 0.096, + "neu": 0.904, + "neg": 0.0, + "_id": { + "$oid": "6711d670cd60fca157e5eaae" + } + }, + { + "text": "He likes to joke but wants everyone to focus in his class, the exams are ok but it does require some dedication in studying in order to pass, the online homework is a pain but other than that he is good", + "pos": 0.201, + "neu": 0.711, + "neg": 0.088, + "_id": { + "$oid": "6711d670cd60fca157e5eaaf" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d670cd60fca157e5eab0" + } + }, + { + "text": "He isn't an unfair professor, that's for sure. You probably won't pass if you don't study. For the final, he allowed my class to use a cheat sheet and there was 10 points extra credit for it.", + "pos": 0.172, + "neu": 0.759, + "neg": 0.069, + "_id": { + "$oid": "6711d670cd60fca157e5eab1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d671cd60fca157e5eab3" + }, + "professor_name": "Michael Levin", + "rating": 2.8, + "department": "Philosophy department", + "comments": [ + { + "text": "This professor is lackluster at best. He didnt attend classes. His grading is based on his personal feelings. He has an agenda and used his students to validate his feelings. He is not a teacher.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5eab4" + } + }, + { + "text": "Michael Levin is an excellent professor, I truly learned a lot. I also think it's sad to see people down-voting him simply because of his personal views, as they have nothing to do with his teachings.", + "pos": 0.155, + "neu": 0.773, + "neg": 0.073, + "_id": { + "$oid": "6711d671cd60fca157e5eab5" + } + }, + { + "text": "This prof is confusing as hell, as if philosophy was not already confusing!! His lectures are boring and his tests are so vague and hard.he is terrible dont take him", + "pos": 0.042, + "neu": 0.6, + "neg": 0.359, + "_id": { + "$oid": "6711d671cd60fca157e5eab6" + } + }, + { + "text": "This prof is confusing as hell, as if philosophy was not already confusing!! His lectures are boring and his tests are so vague.", + "pos": 0.054, + "neu": 0.582, + "neg": 0.364, + "_id": { + "$oid": "6711d671cd60fca157e5eab7" + } + }, + { + "text": "I agree with the some of the previous comments, this man is teaching a school in Harlem and yet finds African Americans genetically less intelligent? You should honestly avoid this professor but if you get stuck with him then study the book and you'll be ok (unless he losses your grades cause he's old and senile).", + "pos": 0.129, + "neu": 0.753, + "neg": 0.118, + "_id": { + "$oid": "6711d671cd60fca157e5eab8" + } + }, + { + "text": "Horrible professor. Do a little research on what gained his credibility and you'll understand what kind of person your dealing with. Loses grades alot, and doesnt make the material interesting. AVOID HIM. Deserves not to teach at CCNY.", + "pos": 0.113, + "neu": 0.702, + "neg": 0.186, + "_id": { + "$oid": "6711d671cd60fca157e5eab9" + } + }, + { + "text": "The teacher thinks everybody on his 50+ people class is a phil major... His exams are confusing as hell; this said by one of his own TA's. Don't take this class.", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d671cd60fca157e5eaba" + } + }, + { + "text": "Explained a lot of information very clearly. Terrible attempt at making a syllabus. Very smart man. Wrote my recommendation letter. Attendance not taken but you should go because if you take notes, you won't have to read the readings. I didn't and I got an A. There are four short (500 words) essays, a midterm and a final. He doesn't grade them.", + "pos": 0.061, + "neu": 0.905, + "neg": 0.034, + "_id": { + "$oid": "6711d671cd60fca157e5eabb" + } + }, + { + "text": "You learn a lot, but the class was really tough. Tons of difficult reading, 4 difficult papers, midterm and final with challenging questions. If you miss class you'll miss a ton of info that you will be tested on. This is not the class for you if you want an easy A.", + "pos": 0.113, + "neu": 0.691, + "neg": 0.196, + "_id": { + "$oid": "6711d671cd60fca157e5eabc" + } + }, + { + "text": "This class was interesting but was no joke. I dropped", + "pos": 0.152, + "neu": 0.657, + "neg": 0.191, + "_id": { + "$oid": "6711d671cd60fca157e5eabd" + } + }, + { + "text": "great prof. the reason ppl don't like him is because he does not dumb down the class discussions to where some ADD jerk talks half the lecture. want real philosophy - take him. btw he is very polite and simply expects the same in return.", + "pos": 0.154, + "neu": 0.76, + "neg": 0.086, + "_id": { + "$oid": "6711d671cd60fca157e5eabe" + } + }, + { + "text": "Hey, does anyone on this webpage have the Philosophy 102 Syllabus? If so, can you can it and post it onto the webpage?", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5eabf" + } + }, + { + "text": "He is difficult but not impossible. The worst thing about this teacher is that he is bit derogatory. I don't waht to get into specifics, but let's just say that he may prejudge your work based on the way you carry yourself and that is just wrong.", + "pos": 0.082, + "neu": 0.81, + "neg": 0.109, + "_id": { + "$oid": "6711d671cd60fca157e5eac0" + } + }, + { + "text": "Good logic prof. Does plenty of example problems and always answers questions. Doesn't take attendance. The ONLY things he factors into your class grade are the midterm and final. Drops midterm if you get higher on final. Test problems are usually rather difficult. Not an easy A. Definately an interesting class and prof for those who like to think.", + "pos": 0.115, + "neu": 0.739, + "neg": 0.146, + "_id": { + "$oid": "6711d671cd60fca157e5eac1" + } + }, + { + "text": "I took the honors section. An extremely challenging and rigorous course. He may be controversial and intimidating, but he is incredibly astute and intelligent. Do NOT expect to coast through this class. Plenty or reading and difficult writing selections. Whoever told you \"philosophy is supposed to be EASY\" is lying.", + "pos": 0.194, + "neu": 0.614, + "neg": 0.193, + "_id": { + "$oid": "6711d671cd60fca157e5eac2" + } + }, + { + "text": "great professor. does not deserve the heat he's getting here. very interesting, funny, energetic and loves discussing different points with every student. however, he does keep the class under control and doesn't allow the class to be taken over by the obnoxious clowns (you them - the ones who have a stupid comment for every 5mins of class time).", + "pos": 0.225, + "neu": 0.669, + "neg": 0.106, + "_id": { + "$oid": "6711d671cd60fca157e5eac3" + } + }, + { + "text": "A true peripetetic philospher.", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5eac4" + } + }, + { + "text": "what a jerk, avoid him like bad.........well anything", + "pos": 0.207, + "neu": 0.413, + "neg": 0.38, + "_id": { + "$oid": "6711d671cd60fca157e5eac5" + } + }, + { + "text": "Very HARD professor!! THat's all I have to say.", + "pos": 0.0, + "neu": 0.727, + "neg": 0.273, + "_id": { + "$oid": "6711d671cd60fca157e5eac6" + } + }, + { + "text": "He is a ****. His famous theory (he's been on TV talking about it) is that blacks have a genetical preponderance to committing crime. I got into vicious arguments with him about it and he made life difficult after that.", + "pos": 0.027, + "neu": 0.737, + "neg": 0.236, + "_id": { + "$oid": "6711d671cd60fca157e5eac7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d671cd60fca157e5eac9" + }, + "professor_name": "Peter Ganatos", + "rating": 4.1, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Reads off his lecture pdf. Pay attention! Anything on his lecture notes is FAIR GAME for any of his midterms. Weekly quizzes during lab based on optional hw assignments(u might as well do them). Class gets hard over time, but he is generous with partial and curving. Matlab assignments not crazy either. Overall, amazing prof with tons of experience.", + "pos": 0.228, + "neu": 0.738, + "neg": 0.034, + "_id": { + "$oid": "6711d671cd60fca157e5eaca" + } + }, + { + "text": "Weekly quiz based on hw, 3 exams, 1 project. Enjoyed the class. If you're a space nerd, this class is for you. His exams had similarities to HW/past exams and he tells you the topics to study. Try to look past all the fluff and understand main formulas. Listening to his lecture is crucial. Overall great prof and class.", + "pos": 0.113, + "neu": 0.854, + "neg": 0.034, + "_id": { + "$oid": "6711d671cd60fca157e5eacb" + } + }, + { + "text": "Professor Ganatos was great as always. He does what he typically does and reads off of his notes during lecture. Very lecture heavy. Forget taking notes, pay attention during lecture to understand the material. Take your notes later. The class itself was very interesting and cool. The derivations can get crazy but final formulas are simple to use.", + "pos": 0.101, + "neu": 0.828, + "neg": 0.071, + "_id": { + "$oid": "6711d671cd60fca157e5eacc" + } + }, + { + "text": "The course structure in terms of the labs may seem weird at first. He just gives you a project to do in matlab without really showing much about matlab. He does spoon feed you a lot though and he tries to make your life a lot easier by explaining as much as he can. Dont leave the projects for last min because it helps to get it in your brain ASAP.", + "pos": 0.087, + "neu": 0.89, + "neg": 0.023, + "_id": { + "$oid": "6711d671cd60fca157e5eacd" + } + }, + { + "text": "His lectures can get boring cuz he just reads off of his paper and does math in his head. You cant look away for a second or else youll be lost for the rest of the class. Try to do well on the first 2 exams because the last one is as hard as it gets. the first 2 are literally just memorizing. with some practice youll be good. hes a good prof.", + "pos": 0.098, + "neu": 0.828, + "neg": 0.074, + "_id": { + "$oid": "6711d671cd60fca157e5eace" + } + }, + { + "text": "This class is literally just straight up memorization. If you want to do well on exams, then do the hw and practice exams multiple times. It will help you a lot. Everything you need to know is pretty much in his lecture notes. He asked about two formulas on exams that we had to find in the textbook but other than that, hes a good prof.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5eacf" + } + }, + { + "text": "lecture material is presented clearly and at a good pace. He answers questions quickly and clearly. He's also open to giving extensions for the programming assignments provided you have a legitimate reason. 2 exams and one final - Ex 1 - root-finding mostly Ex 2 - Matrices, curve fitting, integration Final - Differential Equations Generous Curve", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5ead0" + } + }, + { + "text": "Ganatos has been teaching this class for a long time so he knows how to explain things in a way that makes sense; however that also means he has decades of exam material to use so you best be studying. Homeworks are optional but not really if you want to pass his weekly quizzes. A lot of people find this course difficult-He curves a lot at the end", + "pos": 0.065, + "neu": 0.935, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5ead1" + } + }, + { + "text": "I respect him, he is nice, but not a good teacher for ME322. Maybe hes a great choice if the calss is in person, but not for online class because he keep talking while a piece of paper in front of him, and he keeps doing the math by talking and not writing, so you can't learn from his online lecture", + "pos": 0.138, + "neu": 0.818, + "neg": 0.045, + "_id": { + "$oid": "6711d671cd60fca157e5ead2" + } + }, + { + "text": "I would rate him one of the best professors in CCNY. Super organized (but not his office though), always grades on time, never repeats his test, quizzes or assignments which makes the class fun and challenging. He's ALWAYS available outside of class don't hesitate to see him if u need help. Super helpful! And That smile is unbeatable. Final is HARD", + "pos": 0.357, + "neu": 0.611, + "neg": 0.032, + "_id": { + "$oid": "6711d671cd60fca157e5ead3" + } + }, + { + "text": "Take his lab section- quiz every week during lab, based on opt'nl HW - he gives sol's. 2 Exams+ Final & 5 Projects + Final Proj. Be prepared to spend a lot of time doing his projects. Pay attention in lab, he spoon feeds you the equations you need. Coding it is ok, it's the problem setup that's difficult. Generous curve, phenomenal guy! take him", + "pos": 0.072, + "neu": 0.832, + "neg": 0.096, + "_id": { + "$oid": "6711d671cd60fca157e5ead4" + } + }, + { + "text": "If you take his lab section,he gives out homework every week which is not collected but do it because he gives out a quiz based on the homework. He gives 2 exams and a final which are mostly based on the homework but they can be challenging. Be prepared to put in time in for this class as you have to do programming assignments also. He also curves.", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5ead5" + } + }, + { + "text": "Ganatos is a nice guy. He doesn't make the material tougher than it needs to be- it's just tough in general. If you have his lab section be ready to invest quality time in his Matlab programming assignments. They're pretty brutal. There are two exams and a final- formulas are given but not much of a help. HE DOES CURVE. He's solid, but no easy A", + "pos": 0.164, + "neu": 0.745, + "neg": 0.09, + "_id": { + "$oid": "6711d671cd60fca157e5ead6" + } + }, + { + "text": "do hw, dont bomb test, smile back at smiling man, ez A so ez", + "pos": 0.496, + "neu": 0.409, + "neg": 0.096, + "_id": { + "$oid": "6711d671cd60fca157e5ead7" + } + }, + { + "text": "The class is a lot of work and the exams are extremely hard, but there is an insane curve. I got an 85, 45, and bombed the final pretty badly and ended up with a B+. Extra credit was available.", + "pos": 0.149, + "neu": 0.676, + "neg": 0.175, + "_id": { + "$oid": "6711d671cd60fca157e5ead8" + } + }, + { + "text": "Pretty awesome professor. He went hard on the Fall 2015 students but we learned a lot. Try to get into Ganatos' lab class. I heard the TA was hard.", + "pos": 0.143, + "neu": 0.77, + "neg": 0.086, + "_id": { + "$oid": "6711d671cd60fca157e5ead9" + } + }, + { + "text": "In my opinion the best professor I have ever had. Gives you EVERYTHING you need, handwrites each problem from beginning to end, does not use powerpoints, and will go out of his way to help you. I learned from this class more than all my other classes combined. Final project keeps you thinking like crazy. You can change the world if you learn.", + "pos": 0.13, + "neu": 0.8, + "neg": 0.07, + "_id": { + "$oid": "6711d671cd60fca157e5eada" + } + }, + { + "text": "Tests are tough, tedious and long. However, if you do the homework and read your notes you will get a good grade. Also, make sure to answer all questions even if you have to make a guess on the test because there is partial credit. Overall, great class, learnt a lot but it's tough and time consuming.", + "pos": 0.128, + "neu": 0.823, + "neg": 0.048, + "_id": { + "$oid": "6711d671cd60fca157e5eadb" + } + }, + { + "text": "The class is not hard but you gotta put a lot of time in home work could take many hours and the exams are based on exams from previous semesters which he will provide. not exactly the same exam but similar i got 63 32 and i did okay on the final do the projects on your own need help ask him the only professor that smiles when teaching", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d671cd60fca157e5eadc" + } + }, + { + "text": "The key thing in the class is to do the homework. If you do you will pass. For the exams re-do the homework question that seem tough and try to get old finals. He does curve. And for the final project work on your own. He will give you a -100 if he catches you copying.", + "pos": 0.0, + "neu": 0.973, + "neg": 0.027, + "_id": { + "$oid": "6711d671cd60fca157e5eadd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d672cd60fca157e5eadf" + }, + "professor_name": "Diane Sank", + "rating": 3.7, + "department": "Anthropology department", + "comments": [ + { + "text": "I was absent 17 times and I didnt do the hw and I got an A+. If you want a high GPA or just a lil boost, take her class!", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eae0" + } + }, + { + "text": "Never got the textbook. Got an A+. She prints out copies of her notes and hands them to you on a silver platter. Days before the midterm and final, she essentially gives you the answers. She is a nice, straightforward lady. Despite the disinterest and lack of respect of some people, you actually do learn things. Easiest class I've taken so far.", + "pos": 0.126, + "neu": 0.841, + "neg": 0.033, + "_id": { + "$oid": "6711d672cd60fca157e5eae1" + } + }, + { + "text": "look lady!! i dont care how much u love your job, you NEED to retire!!!!!! im serious!!! its creepy!!! my major is Anthropology and i just dont think its fair that i go to an advanced Anthro class and know nothing because all u did was show boring films with no explanation! its easy to pass ur class but WOW... u really made an amazing field boring!", + "pos": 0.223, + "neu": 0.653, + "neg": 0.124, + "_id": { + "$oid": "6711d672cd60fca157e5eae2" + } + }, + { + "text": "EASY A, I NEVER ATTENDED CLASS EXCEPT THE 2DAYS PRIOR TO THE MIDTERM AND FINAL I GOT AN A, THE PAPERS SHE ASSIGN SHE DOESNT EVEN READ AT ALL, SHE SHOWS MOVIES EVERYDAY SHE IS JUS AWESOME I LOVE HER IF U WANT AN EASY A PLZ DO URSELF A FAVOR AND TAKE HER!!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eae3" + } + }, + { + "text": "SO boring. The class was easy, only two papers which count as extra points on a midterm and a final. The tests come purely from lecture notes. Midterm was easy, final was tough. If you can stand the boredom and want an easy A take the class, you won't learn much though.", + "pos": 0.161, + "neu": 0.724, + "neg": 0.115, + "_id": { + "$oid": "6711d672cd60fca157e5eae4" + } + }, + { + "text": "sank is an easy A. she gives 2 essays which she hardly doesnt count, and she gives a midterm and a final. I hardly every went to class because she would pass around the attendance sheet and it was a lecture hall so i would ask a friend to sign me in. she's a kool old lady. take her if you want an A and if you want to enjoy an hr and 15 mins of d", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eae5" + } + }, + { + "text": "This professor is pretty boring but it's a fairly ez class. There r 2 papers that u can practically copy n paste bcuz I hardly doubt she reads em. 1 midterm & 1 final that come from the notes, mostly.Advice sitting up front to pay attention to the notes cuz she's hard to hear.", + "pos": 0.088, + "neu": 0.787, + "neg": 0.126, + "_id": { + "$oid": "6711d672cd60fca157e5eae6" + } + }, + { + "text": "If you are going to take General Anthropology don't take it with her unless you like biology She is a biology Anthropologist and she applies too much of her field into the class that it wont be a General Anthropology class. General Anthropology is supposed study all about humans but she puts too much biology into it that it will be a bio class", + "pos": 0.027, + "neu": 0.973, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eae7" + } + }, + { + "text": "She is a very easy professor and very nice. But she is boring. I took her for Heredity class and didn't like it. if you all like Biology, then take her but if you are not interested in those fields, don't take her.", + "pos": 0.14, + "neu": 0.699, + "neg": 0.161, + "_id": { + "$oid": "6711d672cd60fca157e5eae8" + } + }, + { + "text": "She is a good and nice professor. Helpfull sometimes. Her voice make you want to fall asleep, but eazy class. Get to watch videos most of the time.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eae9" + } + }, + { + "text": "She's an awesome teacher and the class was super easy. All she gave was a midterm, 10 pg papaer, and a final. She gives reviews before the midterm and final.Dont bother buying the text book, just show up to class because she explains things better then txt will. Also sit in front cuz she does speak low and take notes on films", + "pos": 0.186, + "neu": 0.754, + "neg": 0.061, + "_id": { + "$oid": "6711d672cd60fca157e5eaea" + } + }, + { + "text": "she is the coolest granny ever.most people find her boring and the class a waist of time but she means well.She tries to catch everyones attention and she gives you the answers to the test in her reviews!!!!!", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d672cd60fca157e5eaeb" + } + }, + { + "text": "one of the not helpful prof i hv ever seen.very easy but she made a lot of mistake to calculate the grade.she made mistake...to calculate the GPA . I'm the one who is suffering for that.not only me ..I know like 4/5 students who r suffering for that. And DON\"T make them correct.Never read the papers.", + "pos": 0.076, + "neu": 0.732, + "neg": 0.191, + "_id": { + "$oid": "6711d672cd60fca157e5eaec" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d672cd60fca157e5eaed" + } + }, + { + "text": "Professor Sank is a nice person, means well. At times she interrogates the students as to why they should pay so much attention to pop culture and not remember what she teaches. Then she will forget that she is lecturing to a class and not notice raised hands or loud excuse-mes. Class is pretty easy and at times the information is very interesting.", + "pos": 0.191, + "neu": 0.764, + "neg": 0.045, + "_id": { + "$oid": "6711d672cd60fca157e5eaee" + } + }, + { + "text": "Easy A. Just need to follow her lecture.midterm and final and 1 core paper and there is a extra core paper .Exam's are really easy. she gave us review before the exam and most of the qus. was in our exam.so... if u want a easy A just take this class with Sank.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eaef" + } + }, + { + "text": "Screwed up the grading of my final caused me to receive a far less grade than I should have. She won't let me see the final - I feel suspicious and will be investigating it further. \r \r Relatively boring class - video everyday - didn't learn that much as result.", + "pos": 0.0, + "neu": 0.852, + "neg": 0.148, + "_id": { + "$oid": "6711d672cd60fca157e5eaf0" + } + }, + { + "text": "DO NOT BUY THE TEXT BOOK. your attendance is not mandatory. take the tests, \"write\" the 10 page paper and follow all of the directions. she doesnt read it. she is a nice person. her class is mostly videos that have info that will be on the tests. EASY!! you can pass this class in your sleep if you really wanted to.", + "pos": 0.104, + "neu": 0.877, + "neg": 0.018, + "_id": { + "$oid": "6711d672cd60fca157e5eaf1" + } + }, + { + "text": "The best.", + "pos": 0.808, + "neu": 0.192, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eaf2" + } + }, + { + "text": "OMG!!! She is so so so easy!!!! I wasted 90 bucks on the book, there is no use for it at all. Just go to her classes and you'll just get all the info from the films or her lectures. Her exams are multiple choice and only one 10 pg paper to write ( which she doesnt read, but looks at the format).", + "pos": 0.04, + "neu": 0.886, + "neg": 0.074, + "_id": { + "$oid": "6711d672cd60fca157e5eaf3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d672cd60fca157e5eaf5" + }, + "professor_name": "Keino Brown", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "Instead of giving us clear examples, he just gave theoretical applications. Gives too many exams! Was shy three points of C to pass the class but he refused to work with me causing me to go broke to retake. And guess what I got an A+ with another professor with same knowledge. Please, avoid! He might be getting paid extra to fail his students!", + "pos": 0.082, + "neu": 0.71, + "neg": 0.208, + "_id": { + "$oid": "6711d672cd60fca157e5eaf6" + } + }, + { + "text": "I took Professor Brown during the fall 2023 semester. He is a nice guy but for the love of God, he can't teach. He teaches mainly by theory and does not do many practice problems. I think his grading criteria are atrocious. 60% on quizzes (with it being every week and adds on new topics) and 40% on the Final. I would STAY AWAY from this professor.", + "pos": 0.135, + "neu": 0.819, + "neg": 0.046, + "_id": { + "$oid": "6711d672cd60fca157e5eaf7" + } + }, + { + "text": "Gives harder tests than other professors, making it difficult to pass his tests. Going to tutoring wont even help if his tests are 50x more difficult than materials they provide.", + "pos": 0.0, + "neu": 0.781, + "neg": 0.219, + "_id": { + "$oid": "6711d672cd60fca157e5eaf8" + } + }, + { + "text": "Horrible", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d672cd60fca157e5eaf9" + } + }, + { + "text": ".", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eafa" + } + }, + { + "text": "Learning a new chapter then having to do at home activities", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eafb" + } + }, + { + "text": "Hey guys ima be honest he is tough he gives you the hardest exams. I don't want to bad mouth him but please make your schedule with math first so you don't have to be stuck with him. Just please do not take him. Choose someone else like seriously if you don't believe me ask around ifykyk.", + "pos": 0.194, + "neu": 0.704, + "neg": 0.101, + "_id": { + "$oid": "6711d672cd60fca157e5eafc" + } + }, + { + "text": "He is very controlling with homework and grades badly", + "pos": 0.0, + "neu": 0.721, + "neg": 0.279, + "_id": { + "$oid": "6711d672cd60fca157e5eafd" + } + }, + { + "text": "very non motivating and not understanding", + "pos": 0.41, + "neu": 0.59, + "neg": 0.0, + "_id": { + "$oid": "6711d672cd60fca157e5eafe" + } + }, + { + "text": "Yo if you can't math when it's being taught by a dude with a THICK foreign accent, DO NOT TAKE HIS CLASS !!! Also this man gives you a quiz EVER. WEDNESDAY. Or Thursday depending on when you have him. Honestly just a really bad teacher, hard to understand, and bad at teaching.", + "pos": 0.049, + "neu": 0.792, + "neg": 0.159, + "_id": { + "$oid": "6711d672cd60fca157e5eaff" + } + }, + { + "text": "It's only the beginning of the semester, but when I selected him, I was scared because of his ratings. I don't know why he gets the bad rep; he actually breaks down and teaches the material instead of just solving homework questions. He treats it like a class and starts the topic from step one instead of a tutoring sesh.", + "pos": 0.089, + "neu": 0.789, + "neg": 0.121, + "_id": { + "$oid": "6711d672cd60fca157e5eb00" + } + }, + { + "text": "This class was very hard for me as a freshman who has never taken calc in high school before. His teaching style is very poor. You're better off just studying on your own during his class time and start preparing for the department final from day 1. Quizzes are given every week and there is no way to predict what will be on it.", + "pos": 0.045, + "neu": 0.852, + "neg": 0.103, + "_id": { + "$oid": "6711d672cd60fca157e5eb01" + } + }, + { + "text": "And just a continuation, trying to transfer into Grove is tedious enough, especially when you're already 3 semesters deep and have to retake the class because he decides to be the only guy who does not want to give homework or midterms that other math profs from all levels give. He genuinely believes that quizzes are the solution, absolutely not.", + "pos": 0.037, + "neu": 0.943, + "neg": 0.02, + "_id": { + "$oid": "6711d672cd60fca157e5eb02" + } + }, + { + "text": "If you're not a freshman and need calc 1 to take calc 2 to get into Grove, whatever you do, don't take him. I will literally be a late junior before I can get accepted into Grove because of this guy. Doesnt teach well, and doesn't have anything that can boost your grade. He reads his own rmp page and laughs because he knows what ppl say is true.", + "pos": 0.141, + "neu": 0.835, + "neg": 0.024, + "_id": { + "$oid": "6711d672cd60fca157e5eb03" + } + }, + { + "text": "Not the best professor but not the worst. I asked him how I can improve my grades and all he recommended was to study more. You would have a better chance with a different professor tbh", + "pos": 0.344, + "neu": 0.612, + "neg": 0.045, + "_id": { + "$oid": "6711d672cd60fca157e5eb04" + } + }, + { + "text": "Man, just take an e-permit if he's the last available time slot. You'll learn more by teaching yourself and watching the organic chemistry tutor. I feel bad for the first-year students who have never taken another math class with a good professor who understands and can teach the material well.", + "pos": 0.09, + "neu": 0.847, + "neg": 0.063, + "_id": { + "$oid": "6711d672cd60fca157e5eb05" + } + }, + { + "text": "Steer absolutely clear from this prof at all costs. I would suggest not taking him for any math class he is available for. Quizzes are extremely unfair, no matter how much you study for it. His grading system is ridiculous and he is impossibly sub-par at lecturing. His \"practice questions\" on blackboard are of no help.", + "pos": 0.066, + "neu": 0.785, + "neg": 0.149, + "_id": { + "$oid": "6711d672cd60fca157e5eb06" + } + }, + { + "text": "This class is 60% quizzes, 40% final, Professor Browns quizzes are almost impossible to study for in that he takes any information from anytime during the semester and not what was taught the week before. His final is extremely hard and is guaranteed to drop your grade down by a whole letter grade or two.", + "pos": 0.0, + "neu": 0.933, + "neg": 0.067, + "_id": { + "$oid": "6711d672cd60fca157e5eb07" + } + }, + { + "text": "Proffesor Brown was quite tough. He was not too good at actually teaching the material at all to me. I got lucky in that he made it so he would make our final grade into our test grade otherwise I would've failed overwhelmingly. He was very caring though just not a good class especially for someone's first college experience.", + "pos": 0.09, + "neu": 0.746, + "neg": 0.164, + "_id": { + "$oid": "6711d672cd60fca157e5eb08" + } + }, + { + "text": "pt 3. And most importantly, PLEASE do not take him if you did not take Calc AB or BC in high school because you will be so incredibly lost in tears every day trying to study. If you have taken Calc in hs, then you can take a shot at his class if there are no other slots available. If you do decide to take him, good luck, honestly.", + "pos": 0.178, + "neu": 0.735, + "neg": 0.087, + "_id": { + "$oid": "6711d672cd60fca157e5eb09" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d673cd60fca157e5eb0b" + }, + "professor_name": "Stephen Lucci", + "rating": 3.9, + "department": "Computer Science department", + "comments": [ + { + "text": "Teaches by asking questions. If you're there to actually learn something, dont take him. Easy grader? Will make up grades at the end and doesnt give proper feedback to work. Seems confused most of the time and I dont think I ever actually learned anything from him. Its unfortunate because AI is a really interesting topic, wish I gained more.", + "pos": 0.122, + "neu": 0.769, + "neg": 0.11, + "_id": { + "$oid": "6711d673cd60fca157e5eb0c" + } + }, + { + "text": "No syllabus, no indication of how much both the midterm and final is worth. Attendance is taken randomly from time to time. Professor does not reply to emails. Grading is a mystery and it's unclear how to get in contact with the professor outside of class. Spends lecture time reading off slides. Midterm was in-person and final exam was take-home.", + "pos": 0.059, + "neu": 0.875, + "neg": 0.066, + "_id": { + "$oid": "6711d673cd60fca157e5eb0d" + } + }, + { + "text": "If you see his name anywhere, just take him. He is a real gem. He is nice and understanding. He gave us 2 take home tests and a project. They were all very easy and do-able. This is a light class that definitely allows you to focus more on your harder classes. He is not the best at maneuvering through Zoom, but he is the best choice for CSC 304.", + "pos": 0.148, + "neu": 0.825, + "neg": 0.028, + "_id": { + "$oid": "6711d673cd60fca157e5eb0e" + } + }, + { + "text": "Professor Lucci is really funny but can at sometimes go in a tangent on topics not regarding the course material. He only gives 2 tests and a project, which weren't too challenging imo. He's very old so he's not the best with zoom and requires help from his TA. Overall, he's a very fun and chill professor, which made the class have the same feel", + "pos": 0.137, + "neu": 0.782, + "neg": 0.081, + "_id": { + "$oid": "6711d673cd60fca157e5eb0f" + } + }, + { + "text": "It's an easy class if you take it with him. He still doesn't know how to use Zoom. Lectures were very disorganized, often having technical issues that would take up a good amount of the lecture time. He's a cool guy, you'll probably teach everything to yourself. Midterm + final are very doable. I say he's one of the better options for CS 304.", + "pos": 0.152, + "neu": 0.814, + "neg": 0.034, + "_id": { + "$oid": "6711d673cd60fca157e5eb10" + } + }, + { + "text": "Don't expect to learn much from his live lectures. Instead, go over the slides on your own and make sure to take notes and understand. The midterm was very time-consuming but he noticed that and made the final exam more doable. Also, the final paper was super easy. He is the best professor for this class.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb11" + } + }, + { + "text": "Easy Class. Just read the textbook and you will get an A. Group projects are doable. Research paper is easy. Easiest professor and class.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb12" + } + }, + { + "text": "If you want to take 20hour long exams, then go for it. On top of that there is group projects and term papers and presentations. While he doesn't know how to teach or like another person here said, how to use Zoom. It's unfortunate nobody had a clue what to do. His TA saved the class, but still, too much work, little learned.", + "pos": 0.094, + "neu": 0.876, + "neg": 0.03, + "_id": { + "$oid": "6711d673cd60fca157e5eb13" + } + }, + { + "text": "Completely disorganized online. Can't figure out how to use Zoom or send exams on time with the TA. Exams are extremely easy. You don't actually learn from him; you only learn from your own efforts.", + "pos": 0.083, + "neu": 0.853, + "neg": 0.064, + "_id": { + "$oid": "6711d673cd60fca157e5eb14" + } + }, + { + "text": "1. He is a little disorganized, but he rambles on and on in the lecture in a funny manner. 2. Make sure you talk to some classmates or take it with some friends to do the 3 projects that were due after the final. Overall: He is nice overall, goes easy on grading, no pressure on \"hw\" that he says is \"participation.\" 10/10 AHHHHS ;)", + "pos": 0.284, + "neu": 0.698, + "neg": 0.018, + "_id": { + "$oid": "6711d673cd60fca157e5eb15" + } + }, + { + "text": "One of best professors at CCNY", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb16" + } + }, + { + "text": "Amazing professor. Do the usual: watch videos, read the textbook, and do all of the homework. He was very informative and funny, as well. You should get an automatic B or higher in the class if you do the work.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb17" + } + }, + { + "text": "Lucci is the best! Even though summer class was 3 hours a day, he managed to make the class fun and enjoyable. He was able to teach the whole discrete math curriculum in within a month! He's the GOAT, would definitely recommend him!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb18" + } + }, + { + "text": "He's a grade savior. I took this class in the summer after having to withdraw from Troeger's class. The contrast of difficulty is almost comedic. Here, you only need to know basic concepts and there are actual math calculations involved. In Troeger's it was an onslaught of proofs that would make you sob and rip your hair out. God bless for Lucci.", + "pos": 0.106, + "neu": 0.83, + "neg": 0.064, + "_id": { + "$oid": "6711d673cd60fca157e5eb19" + } + }, + { + "text": "He's disorganized . Don't rely on him too much. Get ready to really study on your own. If you study his notes and do all of the home works and also participate in class your A is guaranteed.", + "pos": 0.061, + "neu": 0.885, + "neg": 0.054, + "_id": { + "$oid": "6711d673cd60fca157e5eb1a" + } + }, + { + "text": "Compassionate earnest professor. Disorganized and a below average lecturer. You'll do OK but it will be boring. You may not feel like you learned much at the end.", + "pos": 0.175, + "neu": 0.621, + "neg": 0.204, + "_id": { + "$oid": "6711d673cd60fca157e5eb1b" + } + }, + { + "text": "He is a great lecturer. You would need to study a lot to be able to get a good grade.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb1c" + } + }, + { + "text": "Rude. Period.", + "pos": 0.0, + "neu": 0.25, + "neg": 0.75, + "_id": { + "$oid": "6711d673cd60fca157e5eb1d" + } + }, + { + "text": "He gives a good textbook for this class. Its not hard to read and will help your grade. Also, we use JFLAP for group projects on designing Turing machines, DFA's, PDA's, etc. so a tutorial on JFLAP is very helpful.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb1e" + } + }, + { + "text": "Great professor. Have taken him before for algorithms and he will push you to learn, especially with the projects -- he will know if you really know your stuff or not then. Exams are easy though if you study but he will always give a really nice curve at the end. Funny professor and keeps the lectures interesting which might be hard to do sometimes", + "pos": 0.209, + "neu": 0.77, + "neg": 0.021, + "_id": { + "$oid": "6711d673cd60fca157e5eb1f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d673cd60fca157e5eb21" + }, + "professor_name": "Shuhebur Rahman", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "Content can be difficult at times, but Professor Shuhebur explains the lecture well and provides funny examples to help students comprehend the topics better. Professor Shuhebur also acknowledges all his students and makes the class comfortable enough to participate. Highly recommend taking this class!!!", + "pos": 0.372, + "neu": 0.6, + "neg": 0.028, + "_id": { + "$oid": "6711d673cd60fca157e5eb22" + } + }, + { + "text": "Professor Rahman is an amazing professor. He's lectures are engaging and he is very funny. He makes the course material interesting. I highly recommend him.", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb23" + } + }, + { + "text": "Professor Shuhebur is not the easiest professor to work with at least online. He changes his mind constantly, has long lectures, gets off-topic, and talks a lot about his personal life.", + "pos": 0.0, + "neu": 0.928, + "neg": 0.072, + "_id": { + "$oid": "6711d673cd60fca157e5eb24" + } + }, + { + "text": "Goes off-topic frequently. He attempts to deflate class average by being petty on grading assignments (ex. -30 points off grade for being 1 line short on minimum page count.) so be aware of that. Participation & attendance matters. NO extra-credit. Tests & assignments are light. However, he explains things clearly & good grades are achievable.", + "pos": 0.143, + "neu": 0.781, + "neg": 0.075, + "_id": { + "$oid": "6711d673cd60fca157e5eb25" + } + }, + { + "text": "Amazing professor! Never met a more hilarious and engaging professor. He connects everything you learn in class to real life, making you better understand the concepts. Class is test heavy so make sure you study for them! I recommend him to all psych majors!!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb26" + } + }, + { + "text": "Literally makes you understand concepts way better by comparing it to real life concepts. Lectures are engaging and funny. Definitely recommend.", + "pos": 0.456, + "neu": 0.544, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb27" + } + }, + { + "text": "Took him during the winter and he was great. Really wanted us to well, constantly holding extra review sessions on his days off. Read the book, write your notes and you'll be fine. Uses funny examples in class to engage us, but make sure you participate, its a good chunk of your grade and not points he gives away lightly. If you see him, take him", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb28" + } + }, + { + "text": "Rahman's lecture is very interactive and if you have good note-taking skills and discipline, this class will be very fun to take. His PowerPoint shows all that will be on the test.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb29" + } + }, + { + "text": "Professor Rahman makes class very engaging. The material you learn is straightforward but the way he presents it to you is very interesting and helps you learn it. Grading criteria is clear with exams being the biggest factor. I would recommend to take Professor Rahman's class.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb2a" + } + }, + { + "text": "When I took this class, I was scared but he is a great professor. If yo do your homework earlier you will be fine. He explains very well.", + "pos": 0.297, + "neu": 0.651, + "neg": 0.053, + "_id": { + "$oid": "6711d673cd60fca157e5eb2b" + } + }, + { + "text": "Professor is very engaging during lectures; he does get off topic a little bit sometimes. Grading criteria is very clear. Prof is very understanding; all he asks for is that you show up to class and do well on the exams.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb2c" + } + }, + { + "text": "Professor Rahman is a great professor who genuinely cares about his students success. The class syllabus is clearly stated and followed by the professor. His lectures are absolutely hilarious and will keep you engaged. I most definitely would recommend taking this class with Professor Rahman.", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb2d" + } + }, + { + "text": "He makes class very interesting and you always want to know what he will say next class. The exams are hard but he gave us easy assignments and papers, he's funny and will make you learn the material by making jokes that go along with the topic. I would take his experimental psy class but going to school on Saturdays is ghetto", + "pos": 0.189, + "neu": 0.794, + "neg": 0.017, + "_id": { + "$oid": "6711d673cd60fca157e5eb2e" + } + }, + { + "text": "He was so full of energy. even though it was not an interesting class at all, he use a lot of sarcasm and tell story, making it easier and fun to understand the content.", + "pos": 0.203, + "neu": 0.697, + "neg": 0.1, + "_id": { + "$oid": "6711d673cd60fca157e5eb2f" + } + }, + { + "text": "Amazing professor 10/10", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb30" + } + }, + { + "text": "Good class", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb31" + } + }, + { + "text": "Just do all the work and you should pass", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d673cd60fca157e5eb32" + } + }, + { + "text": "He gets off topic a lot!!! He answers his phone during class and loses his place with lectures. SUCKS because this type of person is controlling your grade. Try as hard as you can to pay attention and ask questions. The best a person can do while taking his class is do all the extra credit or find a different professor that teaches the same thing.", + "pos": 0.089, + "neu": 0.789, + "neg": 0.121, + "_id": { + "$oid": "6711d673cd60fca157e5eb33" + } + }, + { + "text": "I took him for Experimental and he was just awful. Maybe he's better in person but online I would stay far away.", + "pos": 0.081, + "neu": 0.835, + "neg": 0.084, + "_id": { + "$oid": "6711d673cd60fca157e5eb34" + } + }, + { + "text": "Professor Rahman is awesome. I had him for cog psych too. He does a great job of engaging the class. Make sure you attend lecture and lab. Exams and papers are straightforward but not as easy as his cog psych class. He is always willing to help if you have questions after class. Just take him, you won't regret it. He's one of the best at CCNY.", + "pos": 0.251, + "neu": 0.712, + "neg": 0.037, + "_id": { + "$oid": "6711d673cd60fca157e5eb35" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d674cd60fca157e5eb37" + }, + "professor_name": "Gina Marten", + "rating": 2.5, + "department": "English department", + "comments": [ + { + "text": "In my class all she taught was middle school level and taught it in a convoluted way, even saying stuff that was flat-out wrong like we should only use one source for an essay. She gets mad if things aren't done in a hyper specific way and will doc points for petting things. Was also just rude and gave no good feedback.", + "pos": 0.035, + "neu": 0.8, + "neg": 0.164, + "_id": { + "$oid": "6711d674cd60fca157e5eb38" + } + }, + { + "text": "Not very enthusiastic, constantly repeats herself. the class could be 1 hour instead of 3 hours. Overall, she's not horrible, the lessons taught are easy. It's just that the homework is graded harshly and the class is boring. Wouldn't recommend it, but don't worry if you have to take her class.", + "pos": 0.122, + "neu": 0.788, + "neg": 0.09, + "_id": { + "$oid": "6711d674cd60fca157e5eb39" + } + }, + { + "text": "Terrible...No clear syllabus and grading criteria. She has absolutely no idea what she's talking about in class. Just rambles on... at a very elementary level. Very disappointed because she seems like a nice person. But she grades extremely harshly, gives little to no feedback, and is not accessible outside of class.", + "pos": 0.096, + "neu": 0.793, + "neg": 0.111, + "_id": { + "$oid": "6711d674cd60fca157e5eb3a" + } + }, + { + "text": "Not a very organized prof., but is always there when you need help. Make sure to choose your group members wisely. Do all the assignments and you'll be fine. She assigns a good amount of homework, but they aren't difficult. Easy A.", + "pos": 0.332, + "neu": 0.614, + "neg": 0.055, + "_id": { + "$oid": "6711d674cd60fca157e5eb3b" + } + }, + { + "text": "Knowledgable and nice woman. Tends to ramble and talk about things that aren't necessarily important to the class and is very often vague about assignments. Be sure to clarify and run everything over before embarking on her task.", + "pos": 0.12, + "neu": 0.802, + "neg": 0.077, + "_id": { + "$oid": "6711d674cd60fca157e5eb3c" + } + }, + { + "text": "Professor Marten is a nice person, but she's not clear sometimes about hw assignments. expect to do fair amount of work in her class. if you want a decent grade, do every single hw and cite ur sources CORRECTLY. expect no extra credit hw. her class is based on 100 point grading system so if you do bad in 1 exercise, expect your grade to be down", + "pos": 0.079, + "neu": 0.756, + "neg": 0.165, + "_id": { + "$oid": "6711d674cd60fca157e5eb3d" + } + }, + { + "text": "She's a nice person, but a horrible teacher. Her feedback to essays we had did not help me at all. One time I had this essay that received a low grade because the citations were wrong, which btw she doesn't know formats to APA as well as she should know, and then I changed it and went up about 4 grades.", + "pos": 0.061, + "neu": 0.743, + "neg": 0.195, + "_id": { + "$oid": "6711d674cd60fca157e5eb3e" + } + }, + { + "text": "Very weird teacher O_o its either hit or miss. if she likes you, you do good, if she doesnt then you dont do so great. Very vague when helping. she tells you to improve and how and when you do exactly wat she says she acts as if she didnt provide that advice and if u show her she shrugs it off. got a \"B\" shes not that bad just very boring and wie", + "pos": 0.208, + "neu": 0.684, + "neg": 0.108, + "_id": { + "$oid": "6711d674cd60fca157e5eb3f" + } + }, + { + "text": "Ms. Marten is a very interesting individual. She is at times difficult to understand her wants. If you ponder \"later\" on her coments you would realize that she is trying to teach you how to think rather than tell you how. You need to decifer her poetic innuendis and will have grown from it", + "pos": 0.052, + "neu": 0.904, + "neg": 0.043, + "_id": { + "$oid": "6711d674cd60fca157e5eb40" + } + }, + { + "text": "Marten was easily my favorite prof this semester, she's approachable and makes the text relatable and more enjoyable. not to mention, she tailored the class to our commuting schedules and interests. She's definitely an acquired taste, but if you stay on her good side, you're guaranteed to love her class.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d674cd60fca157e5eb41" + } + }, + { + "text": "She wasn't in class enough to make a grade but chose to grade anyway. She is not a bad person outside of class, but I think she shouldn't teach, maybe be a counselor instead. Also, she grades drafts and gets upset if you refuse to do drafts.", + "pos": 0.07, + "neu": 0.815, + "neg": 0.115, + "_id": { + "$oid": "6711d674cd60fca157e5eb42" + } + }, + { + "text": "First problem, she grades drafts. Drafts are called drafts for a reason. She will average the draft graded with the revision grade and yes, you have to do a revision. Pretty much if you fail the draft, you fail the revision as well. The chances of your grade even going up after a revision is low. She, herself isn't even clear on what she wants.", + "pos": 0.123, + "neu": 0.702, + "neg": 0.175, + "_id": { + "$oid": "6711d674cd60fca157e5eb43" + } + }, + { + "text": "OMG! the person who posted the last comment must be on CRACK!! or Marten herself, because she looks like a crackhead from the 70's. This lady CAN NOT teach, i thought i was the only one getting a C...90% students in the class were getting a C. If you gave her a paper, the grade is a C, then you'll revise it..the grade is an F!! Seriously DO NOT TAK", + "pos": 0.05, + "neu": 0.927, + "neg": 0.023, + "_id": { + "$oid": "6711d674cd60fca157e5eb44" + } + }, + { + "text": "Professor Marten is a nice, approachable and helpful professor. She is always willing to talk to students after class if they need help. Furthermore, she is very calm and she is accommodating when it comes to term paper deadlines. She gives everyone the chance to resubmit assignments in order to get a better grade. I highly recommend her class.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d674cd60fca157e5eb45" + } + }, + { + "text": "Dont even think of taking her, shes horrible unclear like all the other comments people wrote about her. Everytime you get your paper back theres always something wrong with it.She expects too much from you as if thats the only class you have. SHES A HEADACHE, dont do it", + "pos": 0.045, + "neu": 0.802, + "neg": 0.153, + "_id": { + "$oid": "6711d674cd60fca157e5eb46" + } + }, + { + "text": "The class itself is annoying to begin with, and the professor is not clear about assignments. however, she gave me a C instead of failing me or giving me a D for not showing up to class numerous times.", + "pos": 0.053, + "neu": 0.768, + "neg": 0.18, + "_id": { + "$oid": "6711d674cd60fca157e5eb47" + } + }, + { + "text": "oh my god! very boring and slow... no one understood the assignments or due dates.. A \"C\" was normal grade for most students. If a couple of students misunderstood, i would blame it on the students, but come on!", + "pos": 0.036, + "neu": 0.792, + "neg": 0.172, + "_id": { + "$oid": "6711d674cd60fca157e5eb48" + } + }, + { + "text": "I told all my friend to avoid her class by ANY COST! I have never gotten less than a B in any english class and guess what? I got a c- from a teacher who apparently is the only who teaches the class and have done so for way too long. She is in her world and done too many repetition of this class which make her very useless as an instructor", + "pos": 0.041, + "neu": 0.887, + "neg": 0.072, + "_id": { + "$oid": "6711d674cd60fca157e5eb49" + } + }, + { + "text": "THE WORST PROFESSR ANYONE CAN EVER HAVE... THE SCHOOL NEEDS TO DO US ALL A FAVOR AND KICK HER OUT... SHE IS USELESS... NO ONE UNDERSTANDS ANYTHING SHE SAYS!!!!!!!!", + "pos": 0.071, + "neu": 0.658, + "neg": 0.27, + "_id": { + "$oid": "6711d674cd60fca157e5eb4a" + } + }, + { + "text": "It's a very boring class. Prof. G.Marten really doesn't know what she is talking about. She is unclear, unorganized, doesn't teach. She tells us to get into groups to discuss our papers, and that is all we do in class, or watch a video. She grades okay, very fair, but don't hand in papers late. I would recommend not taking her for english. Although I got an A-", + "pos": 0.086, + "neu": 0.824, + "neg": 0.09, + "_id": { + "$oid": "6711d674cd60fca157e5eb4b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d674cd60fca157e5eb4d" + }, + "professor_name": "Sally Hoskins", + "rating": 3.1, + "department": "Biology department", + "comments": [ + { + "text": "Hoskins makes this class harder than it needs to be. Her HW is very time consuming & she expects everyone to know everything already - instead of teaching it herself. She always picks on the same \"quiet\" people in class and is very big on participation. This class is NOT an Easy A with her, avoid taking it if you have other time-consuming classes.", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d674cd60fca157e5eb4e" + } + }, + { + "text": "Took Her a while ago for Scientific Writing and her class was pretty straightforward. The course is essentially an English hybrid course with Science and most of the time you're reading/writing research articles. She's a decent professor and the class isn't tough. You get to rewrite your papers for a higher grade.", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d674cd60fca157e5eb4f" + } + }, + { + "text": "Class was pretty easy as a whole, but nothing really special about the professor. I liked that we sat in a big circle a lot, had discussions, and it contained the parts of science I actually liked (i.e, analyzing experiments with the 6 step method). I had friends that I always sat with. Wasn't super boring, but nothing particularly exciting.", + "pos": 0.225, + "neu": 0.636, + "neg": 0.14, + "_id": { + "$oid": "6711d674cd60fca157e5eb50" + } + }, + { + "text": "Her class is interesting but very time consuming. She's very specific ands likes to pick on students during class discussions. Some students just don't like to speak much and she doesn't get that. She is big on participation. You will miss a lot by missing just one class.", + "pos": 0.106, + "neu": 0.764, + "neg": 0.131, + "_id": { + "$oid": "6711d674cd60fca157e5eb51" + } + }, + { + "text": "Her idea of hw doesnot even make sense. she expects everyone to know everything. if you don't like to talk much in class, don't take her.", + "pos": 0.0, + "neu": 0.922, + "neg": 0.078, + "_id": { + "$oid": "6711d674cd60fca157e5eb52" + } + }, + { + "text": "This class was pretty easy if you are on top of things. Its pretty much an easy A. She gives a lot of articles to read, but they are simple. Her lectures are easy to understand. She will call on you if she see that you are not paying attention. To be honest, this class should be taken if you just want the A, it did not help me in the real Bio class", + "pos": 0.221, + "neu": 0.746, + "neg": 0.033, + "_id": { + "$oid": "6711d674cd60fca157e5eb53" + } + }, + { + "text": "A great professor. Participate as much as you can and DO NOT plagiarize! She is very considerate about grading. DO NOT skip Classes.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d674cd60fca157e5eb54" + } + }, + { + "text": "Professor Hoskins is extremely fair. You must read and take all her assignments seriously, you'll get used to them later. There's no textbook, you create your own. She grades it twice, the second time around gives you time to improve mistakes from the first time. She's extremely smart and therefore expects you to participate and give your input.", + "pos": 0.156, + "neu": 0.75, + "neg": 0.094, + "_id": { + "$oid": "6711d674cd60fca157e5eb55" + } + }, + { + "text": "First of all, I loved her class but if you think this class will be a breeze you will be sadly disappointed. Although u can get a good grade, it has to be earned meaning you have to come to class PREPARED no exceptions, exams are good but she heavily emphasizes on class participation so if your not prepared even ONCE consider your grade tainted.", + "pos": 0.163, + "neu": 0.685, + "neg": 0.152, + "_id": { + "$oid": "6711d674cd60fca157e5eb56" + } + }, + { + "text": "No text book. All you have to do is the hw, pay attention to what she SAYS, and participate in class. The homework isn't something you can do last minute if you don't read the handout AND understand them, other wise she can tell you copied the hw. I didn't have a midterm and the final ridiculously easy. You learn a lot, it was fun, and funny also.", + "pos": 0.154, + "neu": 0.77, + "neg": 0.076, + "_id": { + "$oid": "6711d674cd60fca157e5eb57" + } + }, + { + "text": "She is a good professor who's only goal is to make sure you understand the articles that she assigns. You will get a good grade in this class if you take her assignments seriously, participate in class, and make sure that you complete all work before notebook checks. Her assignments are easy but can be time consuming so don't save until last minute", + "pos": 0.13, + "neu": 0.796, + "neg": 0.074, + "_id": { + "$oid": "6711d674cd60fca157e5eb58" + } + }, + { + "text": "best professor ever. extremely helpful. wants you to learn. will literally push you to learn. PARTICIPATE in class. do the hw. you will do great. will revise n learn all other bio class's stuff you took before taking her class.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d674cd60fca157e5eb59" + } + }, + { + "text": "i think shes awesome. she cares alot about us. wants us to learn therefore, so much HW. she knows her stuff. and the class is pretty interesting. O yeah PARTICIPATE.. seriously.. helps you get an A :) .. the class is NOT HARD, just time consuming", + "pos": 0.369, + "neu": 0.603, + "neg": 0.028, + "_id": { + "$oid": "6711d674cd60fca157e5eb5a" + } + }, + { + "text": "dam she is madd boring. ok teacher and dont need to go to class..dont really learn much.", + "pos": 0.113, + "neu": 0.769, + "neg": 0.118, + "_id": { + "$oid": "6711d674cd60fca157e5eb5b" + } + }, + { + "text": "lectures are basically powerpoints that are provided by the textbook company, and mostly pictures. Though bio, is visual so it depends on learning methods. Lectures do not help, study on own & tests for this class are now Multiple choice which may against you. too much thinking, not enough learning from her in particular.tuition for this?! :(", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d674cd60fca157e5eb5c" + } + }, + { + "text": "she makes things harder than its supose to be, she teaches only in stuff in the book no point to go to class, no review sheets and if she does give it has nothing to do with the test, seriously dont take her! she so boring omg", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d674cd60fca157e5eb5d" + } + }, + { + "text": "One of the worst professors I have ever had. She is disorganized, extremely critical, and talks absurdly fast. She is very picky about the way you answer your questions and she is very confrontational. She goes on tirade after tirade and yells at the entire class when we don't understand what she means. Terrible professor, mean, uncaring, and snob.", + "pos": 0.0, + "neu": 0.748, + "neg": 0.252, + "_id": { + "$oid": "6711d674cd60fca157e5eb5e" + } + }, + { + "text": "She was a good professor, she was clear, she was nice, she knew what she was talking about, and most importantly she was fair.", + "pos": 0.41, + "neu": 0.59, + "neg": 0.0, + "_id": { + "$oid": "6711d674cd60fca157e5eb5f" + } + }, + { + "text": "u have to attend her lectures in order to pass the class. she doesnt go directly by the book she mentions alot of other irrelevant stuff in class nd puts them on the tests. u have to do he review sheets cuz she puts most of the same quest on the exams. take notes because she talks pretty fast.", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d674cd60fca157e5eb60" + } + }, + { + "text": "Yeah, as it was said before. A lot of whiners. She explains everything very nicely. Just attend every lecture and review the notes during the week. Also, she gives some extra credit and is fair with her grading.", + "pos": 0.229, + "neu": 0.735, + "neg": 0.036, + "_id": { + "$oid": "6711d674cd60fca157e5eb61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d675cd60fca157e5eb63" + }, + "professor_name": "Jed Shaher", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "Worst I have ever seen...", + "pos": 0.0, + "neu": 0.494, + "neg": 0.506, + "_id": { + "$oid": "6711d675cd60fca157e5eb64" + } + }, + { + "text": "you can learn alot from him and can get an A in his class if you are willing to do the work and follow his directions. However, he is too strict for my liking, he kicks students out of his class for minor things that do not bother the class. Just make sure you don't get on his bad side. Other than that, he is a good professor.", + "pos": 0.13, + "neu": 0.824, + "neg": 0.046, + "_id": { + "$oid": "6711d675cd60fca157e5eb65" + } + }, + { + "text": "Ok it's true Jed is a rather tough grader.. but he's got reason to be. He gives out outlines of what your paper should be, to the point where writing the paper is like madlibs- plus he allows rewrites. There is very little reading involved, but you still learn a lot. If you can follow directions, you can get an A.", + "pos": 0.104, + "neu": 0.877, + "neg": 0.019, + "_id": { + "$oid": "6711d675cd60fca157e5eb66" + } + }, + { + "text": "very mean", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d675cd60fca157e5eb67" + } + }, + { + "text": "This professor is pretty tough, he's very anal about certain things like lateness. He gives a quiz everyday as soon as he starts the class so you better make sure your one time. He also a really hard grader, even when you think you've done you best work yet, think again.", + "pos": 0.278, + "neu": 0.673, + "neg": 0.05, + "_id": { + "$oid": "6711d675cd60fca157e5eb68" + } + }, + { + "text": "I hated this class so much..it was stressful and compared to other teachers JED is a JERK when it comes to grading..he sucks the people who are saying nice stuff is b/c they are suck ups who got on his gud sides but if he dislikes u drop da class for ur own gud.Its hard to get a gud grade tho da class is pretty easy.He is beyond strict and is full", + "pos": 0.072, + "neu": 0.716, + "neg": 0.213, + "_id": { + "$oid": "6711d675cd60fca157e5eb69" + } + }, + { + "text": "very series teacher,hard grader, but you will learn stuffs in his class, quiz will be in the final exam and 3 papers are most important part of average grade. 3 absents will = F", + "pos": 0.074, + "neu": 0.926, + "neg": 0.0, + "_id": { + "$oid": "6711d675cd60fca157e5eb6a" + } + }, + { + "text": "Prof. Shaher is one THE BEST PROFESSORS in City College. He knows his material really well. He is very strict but very clear about what he wants ( to the point where he creates a time chart on how much you will need to spend time on the paper). He really cares about his students and wants everyone to EARN their grade. So if you want an easy A this", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d675cd60fca157e5eb6b" + } + }, + { + "text": "It's true: this is not an easy class. However, it is also not an easy subject, considering that many never had been well educated in grammar. His humor makes up for his intenese teaching style.", + "pos": 0.118, + "neu": 0.722, + "neg": 0.16, + "_id": { + "$oid": "6711d675cd60fca157e5eb6c" + } + }, + { + "text": "This guy has a great way of teaching the subject, but is a VERY VERY VERY hard grader. He will BEAT up your paper! beware of him if you want an A.", + "pos": 0.102, + "neu": 0.738, + "neg": 0.16, + "_id": { + "$oid": "6711d675cd60fca157e5eb6d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d675cd60fca157e5eb6e" + } + }, + { + "text": "hard grader. I'm going to admit this is a tough course but he makes it tougher. He has a short temper and he is very strict with homework, attendance and class participation. He is very meticulous about his work. He knows his stuff but has a short temper. My suggestion if you want to get alone with him - never argue with him about anything.", + "pos": 0.098, + "neu": 0.739, + "neg": 0.163, + "_id": { + "$oid": "6711d675cd60fca157e5eb6f" + } + }, + { + "text": "Only gave A- because not everyone \"gets\" him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d675cd60fca157e5eb70" + } + }, + { + "text": "Extremely Imp to be on time and not be absent and hand papers on time and be prepared w/ hw.He is extermely clear as to what he wants and expects.I thought he was an easy grader.The quizes are easy. You have to do the work, he's not a prof you can warm up to and expect a good grade. He randomly funny which helps keep you awake. I recommend him", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d675cd60fca157e5eb71" + } + }, + { + "text": "He's a tough grader but he does allow rewrites. To get an A you really have to work hard on your papers. Compared to the other teachers that teach Writing for the Sciences, he's by far the one teacher who makes you do the most work. In his class we had a final, a group project, quizzes everyday.", + "pos": 0.039, + "neu": 0.914, + "neg": 0.047, + "_id": { + "$oid": "6711d675cd60fca157e5eb72" + } + }, + { + "text": "Knows his stuff, has a passion for it. Sense of humor.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d675cd60fca157e5eb73" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d675cd60fca157e5eb74" + } + }, + { + "text": "i truely regret that i took his class...what a waste.", + "pos": 0.0, + "neu": 0.588, + "neg": 0.412, + "_id": { + "$oid": "6711d675cd60fca157e5eb75" + } + }, + { + "text": "most of the time he is not clear what he wants. he is tough grader. he gives lot of work. dont take him", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d675cd60fca157e5eb76" + } + }, + { + "text": "well i guess it isn't a bad class. he does give a truck load of papers and work to do, and he doesn't accept any late papers, no matter what. but he is fun, and he isn't afraid to show that he is a regular person. from what i know, if you are a science major, it is a required course and he might be the only professor teaching it, so good luck.", + "pos": 0.203, + "neu": 0.767, + "neg": 0.031, + "_id": { + "$oid": "6711d675cd60fca157e5eb77" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d675cd60fca157e5eb79" + }, + "professor_name": "Jackie Li", + "rating": 2.6, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Memorization based class .optional HW but doing the HW is essential to have a chance at passing the quizzes and tests. take home quiz on blackboard, lecture notes/textbook barely helps sometimes. labs can be fun, but the reports are lengthy and inconsistent. Group project at the end, that can make or break high grade. no curve bc memorization based", + "pos": 0.146, + "neu": 0.812, + "neg": 0.041, + "_id": { + "$oid": "6711d675cd60fca157e5eb7a" + } + }, + { + "text": "She's a nice lady, but a terrible teacher. She only reads off the PowerPoint and her tests are difficult. Makes us study around 8 chapters to only include around 5 chapters. Avoid if you can", + "pos": 0.044, + "neu": 0.719, + "neg": 0.237, + "_id": { + "$oid": "6711d675cd60fca157e5eb7b" + } + }, + { + "text": "She might be an intelligent person but she does not know how to teach. What she will teach in class would be common sense/ easy but the homework and exams are just something else. the class average was around 50. If you want to pass the class you can take her but if you want to learn avoid her at all cost. She didn't even finish the whole course.", + "pos": 0.116, + "neu": 0.847, + "neg": 0.037, + "_id": { + "$oid": "6711d675cd60fca157e5eb7c" + } + }, + { + "text": "Foundation for ME students. Course concepts arent hard but questions get crazy. Grading criteria not clear, dependent on class performance. Started to phase in extra credit for midterms. Midterms fair, final tricky. HW is important. Read the textbook on your own + watch jeff hanson. Prof Li does not understate the importance of this class. STUDY", + "pos": 0.142, + "neu": 0.704, + "neg": 0.153, + "_id": { + "$oid": "6711d675cd60fca157e5eb7d" + } + }, + { + "text": "Jackie Li? More like Jackie LIE. Expects students to include things on report not even mentioned in the project guidelines. Calls it \"common sense\" when ACTUAL common sense is having the decency to make expectations clear. This is how other profs do it when they assign a paper. Says class is an \"Easy A\". No, it's not. What a joke. Avoid. 0.5/10 ew", + "pos": 0.118, + "neu": 0.824, + "neg": 0.058, + "_id": { + "$oid": "6711d675cd60fca157e5eb7e" + } + }, + { + "text": "tough class because its unlike what u see in mechEng. she just reads off of her slides and its hard to understand her. the class is 100% memorization. any calculations are simple. read/memorize the textbook since quizzes/exams are straight from there (literally). gave practice exams for midterm and final. mult choice sections were online.", + "pos": 0.034, + "neu": 0.914, + "neg": 0.052, + "_id": { + "$oid": "6711d675cd60fca157e5eb7f" + } + }, + { + "text": "Lab reports are super tedious and annoying. Ignore the obnoxious comments about her screaming. She just has an accent and talks loud so people understand her. She was actually a nice professor and made the class a bit easier now. Quizzes were online and drops the lowest, hw was only for practice/not collected. Lectures were boring and useless.", + "pos": 0.125, + "neu": 0.632, + "neg": 0.243, + "_id": { + "$oid": "6711d675cd60fca157e5eb80" + } + }, + { + "text": "This was a hard be prepared to put some hours studying. We had quizzes every week towards the end of lecture and had only 10 mins to do them, except for few of them. The midterm and final were extremely question heavy for the amount of time we had to solve them. Some of the people didnt even finish. She did however curve in the end of the course.", + "pos": 0.052, + "neu": 0.928, + "neg": 0.02, + "_id": { + "$oid": "6711d675cd60fca157e5eb81" + } + }, + { + "text": "What can I say? She is by far unbearable. Someone has to teach her how to speak without screaming for 2 hours non stop. I could not even attend class because it would drive me crazy. On top of that, she seems to have zero idea about how to teach. Her \"lectures\"are so mediocre, it makes me sick. Heard she might be retiring soon. What a relief!", + "pos": 0.093, + "neu": 0.8, + "neg": 0.107, + "_id": { + "$oid": "6711d675cd60fca157e5eb82" + } + }, + { + "text": "Wish I could give her a negative score. Worst prof I have encountered in my entire life. Not only she is a mediocre, but cannot communicate the class content, can't answer questions and gives zero f's about students. Her entire teaching style is trash. What a complete mess, waste of time and money. Best example of how not to be a professor.", + "pos": 0.101, + "neu": 0.742, + "neg": 0.157, + "_id": { + "$oid": "6711d675cd60fca157e5eb83" + } + }, + { + "text": "She's ok, not the best but there is a curve bc the class is hard. We had to switch online and she wasn't great at listening to us. Grilled us with online quizzes towards the end when everything was already stressful& only 10 mins to do them. In person, quizzes were better but she yells a lot. Basically teach urself and work hard for a decent grade.", + "pos": 0.049, + "neu": 0.771, + "neg": 0.18, + "_id": { + "$oid": "6711d675cd60fca157e5eb84" + } + }, + { + "text": "Terrible professor. How she still has a job amazes me. A majority of the class consists of her shouting and then blaming T.A's and other professor's for syllabus changes instead of owning up and actually teaching the material. Stay away from her at all costs.", + "pos": 0.062, + "neu": 0.816, + "neg": 0.122, + "_id": { + "$oid": "6711d675cd60fca157e5eb85" + } + }, + { + "text": "Avoid at all costs. Lectures are 2 hours of yelling what is on the slide, won't accurately answer any questions, gives a quiz each week, lots of homework which is graded as harshly as a test and is 20%. Uses quizzes as attendance and will take formal attendance if the class is too empty. Be prepared to teach yourself most of everything and suffer.", + "pos": 0.027, + "neu": 0.865, + "neg": 0.108, + "_id": { + "$oid": "6711d675cd60fca157e5eb86" + } + }, + { + "text": "She mainly reads straight from the powerpoint or writes what's on the powerpoint. She does not prepare you at all for the level of work she expects. I had to do most of the learning either by myself or with a friend. Despite her near non existing teaching, she shows no mercy in grading. She tells the TA to be strict when grading the homework.", + "pos": 0.074, + "neu": 0.896, + "neg": 0.03, + "_id": { + "$oid": "6711d675cd60fca157e5eb87" + } + }, + { + "text": "20% midterm 20% quizzes 20% lab 20% final project 20% final exam not cumltive. boring lectures hard to pay attention but if you manage to follow her you will learn a lot. uses slide to teach so if u miss something she says good luck learning the material w.o the book. i got 87 final grade which she gave A. i usually cut class and studied the book", + "pos": 0.12, + "neu": 0.785, + "neg": 0.095, + "_id": { + "$oid": "6711d675cd60fca157e5eb88" + } + }, + { + "text": "Quizzes every week. Comes late to class often by like 5 to minutes in extreme cases. Lectures are her reading aloud key points in the textbook . Labs are like 20%. Gave 1 midterm & 1 final with a final presentation worth 20%. Attendance isnt necessary but are taken from time to time if kids start leaving. Exams are from old tests. Hard to reach.", + "pos": 0.09, + "neu": 0.886, + "neg": 0.024, + "_id": { + "$oid": "6711d675cd60fca157e5eb89" + } + }, + { + "text": "In a sense her tests are easy only if you do the homework and pay attention in class. Her accent is hard to understand sometimes. She doesn't curve. But she did say if she sees an improvement in your exams as you go along, she'll give you the grade you deserve.", + "pos": 0.107, + "neu": 0.849, + "neg": 0.043, + "_id": { + "$oid": "6711d675cd60fca157e5eb8a" + } + }, + { + "text": "The only complaint I have about this class is that we were never made aware of the grading criteria. However, if you show signs of improvement throughout the semester on exams, she will give you the grade she thinks you deserve based on your improvement throughout. Everyone does poorly on quizzes so the 4 exams are critical to your semester grade.", + "pos": 0.089, + "neu": 0.844, + "neg": 0.067, + "_id": { + "$oid": "6711d675cd60fca157e5eb8b" + } + }, + { + "text": "Tensors were a bit hard to wrap your head around. Kind and open to critic though she definitely knows her stuff. You'll get used to her accent. Very nice person, lighthearted and kind, always seems happy it's baffling. Mostly successful at simplifying complicated concepts. Homeworks were hard but easy grader. Grades you better than you deserve.", + "pos": 0.322, + "neu": 0.622, + "neg": 0.056, + "_id": { + "$oid": "6711d675cd60fca157e5eb8c" + } + }, + { + "text": "This class is mostly just memorizing. The exams are conceptual. If you don't like reading you better learn to like it in order to pass. The labs are a must.And you should try to get old ones for ideas because some of the lab assistants grade harshly. Attendance is a must she gives a quiz every class.", + "pos": 0.088, + "neu": 0.878, + "neg": 0.034, + "_id": { + "$oid": "6711d675cd60fca157e5eb8d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d676cd60fca157e5eb8f" + }, + "professor_name": "Emily Raboteau", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "She does this thing in her class were we break in to group on zoom and get to talk to our classmates about our writing.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb90" + } + }, + { + "text": "Emily seems to have good intentions, but it gets lost through her cold, unapproachable demeanor. Her brief, impersonal notes showed a lack of interest that many CCNY instructors suffer from. I was shocked to receive the grade I did, because of the work and energy I put into the class, so favoritism is possible. I wouldn't take her class again.", + "pos": 0.145, + "neu": 0.645, + "neg": 0.209, + "_id": { + "$oid": "6711d676cd60fca157e5eb91" + } + }, + { + "text": "She's the best professor I've had in the English Department. Super-smart, and a brilliant writer. She made herself available to talk about writing outside of class.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb92" + } + }, + { + "text": "Great class", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb93" + } + }, + { + "text": "The Professor is very knowledgeable on the subject of study, however lacks the ability to properly relay how a student is doing in the class. I think she would be much better if she communicated with the students exactly what was expected and of their performance.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb94" + } + }, + { + "text": "I took two classes with her. She is extremely helpful and knowledgable. She also provides helpful feedback. Aside from that she's a cool lady and will make every effort to make your classes interesting.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb95" + } + }, + { + "text": "Emily was my first workshop teacher since joining the MFA program at City College and I can't imagine a better introduction to fiction-writing, sharing and critiquing work, the school, and even the city itself. She made time to meet with every one of us outside of class and inspired us to create our own supportive community. A'm truly grateful.", + "pos": 0.229, + "neu": 0.736, + "neg": 0.034, + "_id": { + "$oid": "6711d676cd60fca157e5eb96" + } + }, + { + "text": "I was really inspired by this woman to finish my novel. She's one of the best teachers I've ever had, and I've had a lot.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb97" + } + }, + { + "text": "Generous guidance, quick wit, serious critiques and real structure.", + "pos": 0.284, + "neu": 0.603, + "neg": 0.112, + "_id": { + "$oid": "6711d676cd60fca157e5eb98" + } + }, + { + "text": "Hands down the best teacher I've had. Don't miss the opportunity to study with her if you can. She gives a lot of personal attention to your writing.", + "pos": 0.171, + "neu": 0.758, + "neg": 0.071, + "_id": { + "$oid": "6711d676cd60fca157e5eb99" + } + }, + { + "text": "Do what you have to -- this person is overly directive and you will need to give her the version of the piece she wants. You can always burn it later, once you have the grade, and publish your own vision of it.", + "pos": 0.045, + "neu": 0.955, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb9a" + } + }, + { + "text": "Absorbing, provocative class. She was witty, giving and confident enough to let us do much of the talking while still commanding the classroom and making it fun. I looked forward to it every week.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb9b" + } + }, + { + "text": "Never seemed all that engaged in teaching. I didn't get much out of the class.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb9c" + } + }, + { + "text": "She doesn't offer too much to more advanced students. Seems to prefer needy students.", + "pos": 0.137, + "neu": 0.719, + "neg": 0.144, + "_id": { + "$oid": "6711d676cd60fca157e5eb9d" + } + }, + { + "text": "I took Prof. Roboteau's nonfiction class and was inspired to change course from fiction by creative assignments she gave us, which made me write outside of my box and look at the world around me with different eyes. She did a truly admirable job casting a wide net for this class, which represented all different levels of experience and talent.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eb9e" + } + }, + { + "text": "Not bad, but hitting below level for competent grad students. Very \"giving\" to average students -- irritatingly basic to people who already know their way around. Should work with undergrads.", + "pos": 0.219, + "neu": 0.677, + "neg": 0.104, + "_id": { + "$oid": "6711d676cd60fca157e5eb9f" + } + }, + { + "text": "I agree with the person who wrote that she is easily intimidated by those who she feels might be smarter than her. Playing favorites when it comes to grades is juvenile. She's a very mediocre teacher.", + "pos": 0.275, + "neu": 0.661, + "neg": 0.064, + "_id": { + "$oid": "6711d676cd60fca157e5eba0" + } + }, + { + "text": "This class was so much fun. I looked forward to it more than anything else this semester. I wasn't a poet before this class but the professor helped me become one. She made everyone in the class feel welcome.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eba1" + } + }, + { + "text": "Prof. Raboteau brought keen insight and a real feeling of democracy to the critical practice class on the craft of the short story. This class was deep, inspiring and fun. Her passion for writing and seeing is infectious and she goes above and beyond for her students.", + "pos": 0.232, + "neu": 0.727, + "neg": 0.041, + "_id": { + "$oid": "6711d676cd60fca157e5eba2" + } + }, + { + "text": "Easily intimidated by anyone she thinks might be smarter than her. Tries to take \"smarties\" down a peg through their final grade, which is a surprise because she NEVER gives ONE grade in class. If she likes you \"A\". If not, who knows. Was a waste of my time, got more from reading the text than from her. Should ask her for my money (and time) back.", + "pos": 0.165, + "neu": 0.762, + "neg": 0.072, + "_id": { + "$oid": "6711d676cd60fca157e5eba3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d676cd60fca157e5eba5" + }, + "professor_name": "Deborah Coates", + "rating": 2.7, + "department": "Psychology department", + "comments": [ + { + "text": "Having a Phd has no correlation with teaching abilities. She is a prime example of this. If you have not taken statistics in a recent semester do not take her. Her class is not a lecture it is a book club. She creates an uncomfortable environment to learn and have discussions in. If you have other classes forget it. You will be teaching yourself.", + "pos": 0.059, + "neu": 0.845, + "neg": 0.096, + "_id": { + "$oid": "6711d676cd60fca157e5eba6" + } + }, + { + "text": "Dr Coates is my favorite Professor ever. Just like in life, you have to earn your own way in Dr Coates' class. If you are in the Psychology department at City, you know about Dr Coates. Would definitely take again, I'm proud of the\" A\" I earned.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d676cd60fca157e5eba7" + } + }, + { + "text": "Dr. Vietze is an excellent teacher. She is easily the most articulate and caring professor or instructor that I have had at City College. I don?t understand why students complain that she is ?too hard.? Don?t you go to college to learn?", + "pos": 0.205, + "neu": 0.72, + "neg": 0.076, + "_id": { + "$oid": "6711d676cd60fca157e5eba8" + } + }, + { + "text": "Mean and nasty. Has an attitude when answering questions.", + "pos": 0.0, + "neu": 0.69, + "neg": 0.31, + "_id": { + "$oid": "6711d676cd60fca157e5eba9" + } + }, + { + "text": "Mean! Avoid like your life depends on it!!!", + "pos": 0.309, + "neu": 0.506, + "neg": 0.185, + "_id": { + "$oid": "6711d676cd60fca157e5ebaa" + } + }, + { + "text": "Mean, likes to humiliate you in front of the class, two people I know gave there final paper in and she said she never received it and gave them an F, very mean, bad personality", + "pos": 0.067, + "neu": 0.76, + "neg": 0.173, + "_id": { + "$oid": "6711d676cd60fca157e5ebab" + } + }, + { + "text": "I took issue of Racism and Prejudice. She is one of the most demanding professors. She require to student check email 24/7. She add aditional reading and assignments after class. She prefer a students who is same race or ethnic background. She is criticize a student's cultual values in front of classmates. Her class make our life so much difficut.", + "pos": 0.039, + "neu": 0.787, + "neg": 0.174, + "_id": { + "$oid": "6711d676cd60fca157e5ebac" + } + }, + { + "text": "Dr. Coates/Vietze is one of the most demanding professors I have ever came in contact with. She is harsh and mean at times, but that is just her way of making the students rise to the level of expectation. If you want to know your s*** and are committed, you'll be fine. If you are looking for a skate class, go elsewhere.", + "pos": 0.094, + "neu": 0.853, + "neg": 0.053, + "_id": { + "$oid": "6711d676cd60fca157e5ebad" + } + }, + { + "text": "total ****. Discourages students from improving, always tries to make you feel or look stupid. Can be verbally abusive. i think she enjoys humiliating students. Most of my class thought so. Oh, and she invades your personal space by snatching your pen when she thinks its the \"wrong\" one. And she's a psychlogist?? I bet she definitely does NOT have", + "pos": 0.114, + "neu": 0.673, + "neg": 0.213, + "_id": { + "$oid": "6711d676cd60fca157e5ebae" + } + }, + { + "text": "DO NOT take this professor if you expect to skate through without doing your work. She will not baby you or listen to foolish excuses. She will show you how to be rigorous and careful with your work. If you do your work, you'll get an A.", + "pos": 0.032, + "neu": 0.884, + "neg": 0.084, + "_id": { + "$oid": "6711d676cd60fca157e5ebaf" + } + }, + { + "text": "she was very demanding and wasn't too helpful. that explains everything about her", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d676cd60fca157e5ebb0" + } + }, + { + "text": "At the beginning I was afraid of her, and i really could not stand her, but at the semester went on i realized that she really is interested in helping her students succeed in her course..im actually glad i took this class--now i know how to deal with tough professors..", + "pos": 0.244, + "neu": 0.728, + "neg": 0.028, + "_id": { + "$oid": "6711d676cd60fca157e5ebb1" + } + }, + { + "text": "She is a great professor and tough. During office hours she is helpful and kind.It is true, she is easier in Psy 103 compared to Experimental.", + "pos": 0.357, + "neu": 0.6, + "neg": 0.043, + "_id": { + "$oid": "6711d676cd60fca157e5ebb2" + } + }, + { + "text": "she is a mad and evil. when I drop her class she refused to sign my drop slip unless i wrote her a letter. crazy ****.", + "pos": 0.0, + "neu": 0.549, + "neg": 0.451, + "_id": { + "$oid": "6711d676cd60fca157e5ebb3" + } + }, + { + "text": "anal woman who talks down to her students..makes learning a terrifying experience due to her intimidation tactics", + "pos": 0.0, + "neu": 0.698, + "neg": 0.302, + "_id": { + "$oid": "6711d676cd60fca157e5ebb4" + } + }, + { + "text": "This woman thinks too much of herself. And she expects us to be online 24/7 so we can check blackboard all the time. She's not too good of a teacher and she's very unhelpful. Don't take her if you don't have to, but if you do, just don't make any mistakes AT ALL and you'll be fine.", + "pos": 0.08, + "neu": 0.892, + "neg": 0.028, + "_id": { + "$oid": "6711d676cd60fca157e5ebb5" + } + }, + { + "text": "Dr. Coates is a great professor. Yes, she is difficult but when I left her class I felt as if I just began my real college experience. I learned so much from her class, mostly about writing in the social sciences. For those who are in college to learn and not to waste time, she's a great choice.", + "pos": 0.192, + "neu": 0.782, + "neg": 0.026, + "_id": { + "$oid": "6711d676cd60fca157e5ebb6" + } + }, + { + "text": "She is very demanding and tough but if you do what you are suppose to you will be fine", + "pos": 0.104, + "neu": 0.755, + "neg": 0.141, + "_id": { + "$oid": "6711d676cd60fca157e5ebb7" + } + }, + { + "text": "She is a unfair grader -very unfair, demanding, mean, boring...need I say more?", + "pos": 0.0, + "neu": 0.536, + "neg": 0.464, + "_id": { + "$oid": "6711d676cd60fca157e5ebb8" + } + }, + { + "text": "She is demanding but fair. Willing to help but is easier to approach during office hours. You will learn a lot in this class, and an A is easy to get if you work hard. No time for laziness here.", + "pos": 0.266, + "neu": 0.624, + "neg": 0.111, + "_id": { + "$oid": "6711d676cd60fca157e5ebb9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d677cd60fca157e5ebbb" + }, + "professor_name": "Chris Rempfer", + "rating": 4.8, + "department": "Speech department", + "comments": [ + { + "text": "He stressed that the spoken word is the future. He linked it to Aristotle. Blew my mind and made me think about my place in history and that what I say matters. TAKE HIM.", + "pos": 0.031, + "neu": 0.901, + "neg": 0.068, + "_id": { + "$oid": "6711d677cd60fca157e5ebbc" + } + }, + { + "text": "Professor Rempfer is a great speech professor! He gives you really great feedback on your speeches and he really wants you to excel. If you show up and do your speeches, then you will do great in the class.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebbd" + } + }, + { + "text": "Awesome professor. He gives you his expectations clearly. He also gives you a grading rubric for all of your speeches, follow it and you'll get high scores on your speeches. We did about 3/4 speeches, a reaction paper, and had to attend a couple of school plays. I absolutely loved this professors energy, he always brightened my day.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebbe" + } + }, + { + "text": "He is AMAZING! Because of him, this was my favorite class. His sense of humor is great. Fairly easy- 3 major speeches, small reaction paper, participation counts a lot so be sure to talk in class. We did not do our final speech because fell behind schedule. Super understanding, clearly explains what he wants, overall a great guy. Have to take him!!", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebbf" + } + }, + { + "text": "Great teacher. Easy grader if you put the effort in. Practice your speeches ahead of time and do not write essays that you have to read off when you're up there. Look around the classroom when speaking and project your voice. He's an awesome professor and you discuss a variety of topics in his class. Highly recommended.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebc0" + } + }, + { + "text": "give you a lot of chances to practice your speech skill in class, definitely take him!!!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebc1" + } + }, + { + "text": "He's very nice and encourage. Definitely take him if you can!", + "pos": 0.547, + "neu": 0.453, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebc2" + } + }, + { + "text": "He's an amazing teacher. He makes you want to learn how to speak extemporaneously. Gives amazing feedback. Take him for an easy A!", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebc3" + } + }, + { + "text": "This dude is intense... in a good way! He is so energetic and sarcastic! He's straight to the point. He also doesn't expect you to be an amazing speaker, he grades based on how you've improved throughout your speeches which helps those that are shy. Overall, loved being in his class, we often talked current events so read a newspaper before class", + "pos": 0.297, + "neu": 0.649, + "neg": 0.053, + "_id": { + "$oid": "6711d677cd60fca157e5ebc4" + } + }, + { + "text": "Professor Chris Rempfer makes public speaking clear, cut, and easy. His classroom is lively and his lectures are hilarious. He's outgoing and has a great personality. No homework or tests, however, use of textbook is a must. In addition, you'll have to make three main speeches. Participate a lot, and you'll get an A. Gives good feedback.", + "pos": 0.28, + "neu": 0.661, + "neg": 0.059, + "_id": { + "$oid": "6711d677cd60fca157e5ebc5" + } + }, + { + "text": "I took my first term at City. He's awesome. Always energetic and enthusiastic about almost everything that's going on in the world. Plus he's pretty funny.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebc6" + } + }, + { + "text": "EASY A. REAALLY KIND PROFESSOR AND I WAS A MUTE STUDENT IN CLASS. He is willing to help, no assignments no nothing! SHOW UP LISTEN TO SPEECHES AND EASY A.", + "pos": 0.383, + "neu": 0.565, + "neg": 0.052, + "_id": { + "$oid": "6711d677cd60fca157e5ebc7" + } + }, + { + "text": "Has so much sass and class. He's too cool. I love his attitude. He keeps the class entertained and awake. He is too funny and he has a great bond with the students. He taught me to be confident and shut down my negative feelings while speaking. He's a big thumbs up", + "pos": 0.285, + "neu": 0.661, + "neg": 0.054, + "_id": { + "$oid": "6711d677cd60fca157e5ebc8" + } + }, + { + "text": "This professor is easy and fun too. He side tracks a lot which is fine by me. He picks on his students but just do your speech and be loud and just state the speech. There's NO way you can not leave his class without an A.", + "pos": 0.128, + "neu": 0.798, + "neg": 0.074, + "_id": { + "$oid": "6711d677cd60fca157e5ebc9" + } + }, + { + "text": "Awfully sassy and picks on his students, but Rempfer is extremely helpful and nice regarding course material. Just make sure you're not late too often and prepare for class ahead of time.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebca" + } + }, + { + "text": "One of my favorite teachers, he is an awesome professor! All you have to do in his class is the speeches. he cancelled the midterm and final exam. he cares if you're late and absent to his class. he picks on students but in a really friendly way. If you have a chance to take him, do it!", + "pos": 0.2, + "neu": 0.778, + "neg": 0.022, + "_id": { + "$oid": "6711d677cd60fca157e5ebcb" + } + }, + { + "text": "Amazing professor. Knows what he is doing and is hilarious. No exams but he grades you mainly on your speeches and attendance.", + "pos": 0.171, + "neu": 0.765, + "neg": 0.064, + "_id": { + "$oid": "6711d677cd60fca157e5ebcc" + } + }, + { + "text": "One of the best Professors on campus. As long as you attend class, and do the speeches on the date he gives you then there's no way you can fail. Do not miss the day you're suppose to give a speech or you can get a F.", + "pos": 0.104, + "neu": 0.791, + "neg": 0.105, + "_id": { + "$oid": "6711d677cd60fca157e5ebcd" + } + }, + { + "text": "Awesome dude.. feel like im going to a talk show host who wants to talk about everything but speech. He makes us do presentations which in turn is our lectures and speeches are fun. Honestly, its just him who's fun in class and he makes the craziest comments. awesome, take him if you can!", + "pos": 0.324, + "neu": 0.658, + "neg": 0.018, + "_id": { + "$oid": "6711d677cd60fca157e5ebce" + } + }, + { + "text": "He's awesome. you spend most of class talking which gets you comfortable with your peers so that on speech days you're not nervous to talk in front of a bunch of people you don't know. I really like his teaching style, I found him funny. The class is useful and really does teach you that \"words matter\"", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebcf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d677cd60fca157e5ebd1" + }, + "professor_name": "Daniel Greenberger", + "rating": 3.3, + "department": "Physics department", + "comments": [ + { + "text": "It's boarding but Amazing professor!!!!!!!!!!!!!!!!!!!!!!!!!! The beeeeeeeeeeeeeeeeeeeest.", + "pos": 0.515, + "neu": 0.485, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebd2" + } + }, + { + "text": "He's a very nice guy and quantum mechanics aint easy, what can i say? midterm + final + attendance your final grade. he lectures a lot and a lot and can be difficult to follow but u can always ask him questions.", + "pos": 0.046, + "neu": 0.876, + "neg": 0.078, + "_id": { + "$oid": "6711d677cd60fca157e5ebd3" + } + }, + { + "text": "Amazing professor who doesn't expect much, and provides all material needed from the first day of class. Really nice guy, and makes the tests easy enough for anyone to pass.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebd4" + } + }, + { + "text": "Professor Greenberger is not the best lecturer. His lectures are mighty boring and he tends to take up the entire class time, never let out earlier than 10 minutes. The key to this class is to sit close enough to the front because he rarely uses a microphone in the auditorium and to read the notes throughly before the tests. Easy grade if you read.", + "pos": 0.041, + "neu": 0.879, + "neg": 0.08, + "_id": { + "$oid": "6711d677cd60fca157e5ebd5" + } + }, + { + "text": "I fell asleep in almost all of his lectures. Very boring and he speaks low. All you have to do is read the review sheets that he posts on blackboard, the questions are identical to the ones that are on his tests.", + "pos": 0.0, + "neu": 0.895, + "neg": 0.105, + "_id": { + "$oid": "6711d677cd60fca157e5ebd6" + } + }, + { + "text": "Try to pass the test and show up. He curves the grade alot. I thought I fail but I ended up getting a C", + "pos": 0.0, + "neu": 0.911, + "neg": 0.089, + "_id": { + "$oid": "6711d677cd60fca157e5ebd7" + } + }, + { + "text": "I barely listen at his class. But I do not need to listen, I just review the materials which has given on the blackboard. It is a easy course.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebd8" + } + }, + { + "text": "Easily one of the classes that will boost your GPA. Yes, Astronomy may be confusing and Greenberger's lectures may put you to sleep but all you have to do for an A, is read the review sheets and study the practice questions and answers he assigns before each exam which often are very similar if not the exact same questions.", + "pos": 0.086, + "neu": 0.891, + "neg": 0.023, + "_id": { + "$oid": "6711d677cd60fca157e5ebd9" + } + }, + { + "text": "Interesting material but honestly the most boring lectures I've ever been through. I didn't purchase the textbook and just read off of his notes on Blackboard. I probably would've done much better if I had the textbook. Regardless, its hard to fail this class just be prepared to fall asleep.", + "pos": 0.186, + "neu": 0.664, + "neg": 0.15, + "_id": { + "$oid": "6711d677cd60fca157e5ebda" + } + }, + { + "text": "He is a very nice guy, and does want you to pass. However, he goes over a mass amount of information and the parts that he spends the least amount of time on is on the exams. He changes whats on the exam last minute. However, there are make ups. If you read the textbook and keep up w/chp, you'll be fine. Don't forget to HIGHLIGHT, and use POST ITS!", + "pos": 0.108, + "neu": 0.858, + "neg": 0.034, + "_id": { + "$oid": "6711d677cd60fca157e5ebdb" + } + }, + { + "text": "It's a lecture class. If you want an easy A, then take him. But make sure you have a pillow and a blanket when you go to his class because it sure is like a bedtime. He'll put you to sleep.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebdc" + } + }, + { + "text": "what can i say? its a lecture class. too many people, cant hear the professor well. he is adorable looking but dont take this class if you dont have some interest in it. it is not an easy A. you just want to skip or sleep.", + "pos": 0.097, + "neu": 0.782, + "neg": 0.121, + "_id": { + "$oid": "6711d677cd60fca157e5ebdd" + } + }, + { + "text": "Boring. Hard to pay attention. But if u cheat you're good... But its still hard to pay attention.. talks very very and doesn't know how to use his microphone.", + "pos": 0.104, + "neu": 0.593, + "neg": 0.303, + "_id": { + "$oid": "6711d677cd60fca157e5ebde" + } + }, + { + "text": "Bring a pillow, this man will put you to SLEEP! It's helpful if you have a friend in the class who can sign you in, it's really hard to stay the duration of the class. Most people just use their laptops/iphones during class. He tells you all you need to know for the test in the review sheet right beforehand.", + "pos": 0.097, + "neu": 0.877, + "neg": 0.026, + "_id": { + "$oid": "6711d677cd60fca157e5ebdf" + } + }, + { + "text": "Very easy class! Attendance is mandatory. His lectures are a bit boring and he constantly has to stop to tell people to quiet down even if it's a whisper. There is no homework, and the textbook is never used. The tests are very simple as long as you read his review sheets beforehand. Take his class if you want a good grade.", + "pos": 0.127, + "neu": 0.778, + "neg": 0.095, + "_id": { + "$oid": "6711d677cd60fca157e5ebe0" + } + }, + { + "text": "Very easy. He is pretty funny and he explains very clearly. He doesn't want to fail anyone( And he said this). He even offered extra credit work. Book isn't really needed. Just study his notes. He posts all his notes on BB.", + "pos": 0.329, + "neu": 0.649, + "neg": 0.023, + "_id": { + "$oid": "6711d677cd60fca157e5ebe1" + } + }, + { + "text": "Very nice and funny guy, but kind of boring. Tests aren't hard. Puts all his notes up on blackboard within the first week. Also puts up practice questions with answers a week before each test.", + "pos": 0.139, + "neu": 0.776, + "neg": 0.085, + "_id": { + "$oid": "6711d677cd60fca157e5ebe2" + } + }, + { + "text": "This class was straight-forward and I wish more college classes were like this. In addition, the content was interesting (if your interested in astronomy) and he gave notes on everything we needed, so I really didn't need to purchase the textbook. Just go to class, take notes, read the notes he gives, and study it all and you should be fine.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d677cd60fca157e5ebe3" + } + }, + { + "text": "Very patient dude; lots of people leave after attendance but he's tricky b/c he tells the students who stay more important information at times. He does tend to go off track and go into like history lol but also remember ASTR 305 is actually more about physics. I thought the final was easier than the midterm. Does review before tests.", + "pos": 0.189, + "neu": 0.768, + "neg": 0.043, + "_id": { + "$oid": "6711d677cd60fca157e5ebe4" + } + }, + { + "text": "Class is easy. Read the online notes plus takes some notes in class. He gives 3 test multiple choice. Class is boring though find a female friend and enjoy", + "pos": 0.254, + "neu": 0.683, + "neg": 0.063, + "_id": { + "$oid": "6711d677cd60fca157e5ebe5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d678cd60fca157e5ebe7" + }, + "professor_name": "Sami Segni", + "rating": 3.1, + "department": "Earth Science department", + "comments": [ + { + "text": "I took his class this summer. He gives a lot of work. A LOT! If you miss one thing it a zero. It is very difficult to catch up. He does not care at all what happens in your personal life, he will not change anything. So don't bother to ask. He sends tons of emails so you won't forget anything. I was a lot for online. Oh, there is some math.", + "pos": 0.054, + "neu": 0.853, + "neg": 0.093, + "_id": { + "$oid": "6711d678cd60fca157e5ebe8" + } + }, + { + "text": "His class is basically submitting online quizzes and assignments. His work is not hard but he will not change your grade, I would recommend a different professor if you actually want to learn the material.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ebe9" + } + }, + { + "text": "Avoid him at all costs. One of the most boring professors you will ever encounter. Made a 101 class terrible with his incredibly lethargic \"lectures\". Gives no justification for grades either. Before him, I never considered dropping a class I was getting an A from. Take anyone else for this class if you really want to take it.", + "pos": 0.024, + "neu": 0.786, + "neg": 0.19, + "_id": { + "$oid": "6711d678cd60fca157e5ebea" + } + }, + { + "text": "This is honestly an easy A class. Exams, quizzes, and other assignments are all online. He always sends email reminding students when work is due. If you still miss an assignment despite the amount of emails, there is no makeups and you get a zero. Lectures are optional, and assignments are straightforward. Take him!", + "pos": 0.103, + "neu": 0.833, + "neg": 0.063, + "_id": { + "$oid": "6711d678cd60fca157e5ebeb" + } + }, + { + "text": "If I have to take him again I definitely will. HE DOESN'T EXTEND HIS ASSIGNMENTS AT ALL, WITH NO EXCEPTIONS SO MAKE SURE YOU TAKE THIS CLASS AND HAVE TIME FOR IT because if you don't you will be backed up with a lot of assignments and or get 0's. I really enjoyed this class, trust me please take it and you'll pass with flying colors.", + "pos": 0.213, + "neu": 0.725, + "neg": 0.062, + "_id": { + "$oid": "6711d678cd60fca157e5ebec" + } + }, + { + "text": "his class is easy. In his async course people often complained abt too much work but he does gives u like an entire week to complete them and even sometimes sends test out early so u can just get it out of the way asap.", + "pos": 0.106, + "neu": 0.856, + "neg": 0.038, + "_id": { + "$oid": "6711d678cd60fca157e5ebed" + } + }, + { + "text": "He's actually not that bad. It's very easy to pass his class, his deadlines are SUPER strict though. So stay on top of your work. I recommend setting days aside to do assignments, quizzes, and exams. Sometimes he might assign all 3 w the same due date.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ebee" + } + }, + { + "text": "Listen if you want an Easy A take this class! he does NOT accept late work so don't even try it he will give you a big fat 0, other than that super easy he gives u the answers for most of the work. you can also google most if not all of the quiz answers.", + "pos": 0.175, + "neu": 0.791, + "neg": 0.034, + "_id": { + "$oid": "6711d678cd60fca157e5ebef" + } + }, + { + "text": "Although the professor himself is nice, the work he assigns is WAY too much, especially for an INTRO class. he's a tough grader & will take points off for the slightest mistake. The midterm was 100 questions & we only had 105 minutes to do it, so that like a minute per question, which isn't enough for some students. I Wouldn't recommend.", + "pos": 0.081, + "neu": 0.831, + "neg": 0.088, + "_id": { + "$oid": "6711d678cd60fca157e5ebf0" + } + }, + { + "text": "Summer course during Covid. Professor records lectures & post them on youtube for class to watch (Some videos are shorter than the 2 hour class session). This makes it easy to fit the class in your schedule, I found it very lazy and lacking engagement for a class that is mandatory. If I have to pay for a class I have to take I more. No flexibility", + "pos": 0.144, + "neu": 0.771, + "neg": 0.085, + "_id": { + "$oid": "6711d678cd60fca157e5ebf1" + } + }, + { + "text": "Being that the class was for four weeks (summer session), I was thinking it was going to be slight work. I WAS WRONG. You have to work for your grade. It's fairly easy though. Quizzes everyday, 2 assignments and 3 video quizzes. Just stay on top of the deadlines and you'll be fine. Plus he explains everything on live. Take him if you get the chance", + "pos": 0.116, + "neu": 0.832, + "neg": 0.052, + "_id": { + "$oid": "6711d678cd60fca157e5ebf2" + } + }, + { + "text": "He is really good professor, have a lot of respect for all student. But won't forgive if you are late or using phone and talking during the lecture. He explains really good all lectures and answer all question that someone ask him. You just have to follow his instruction and do all the assignments. The exams and reports are not hard.", + "pos": 0.145, + "neu": 0.822, + "neg": 0.033, + "_id": { + "$oid": "6711d678cd60fca157e5ebf3" + } + }, + { + "text": "A lot of lab reports, and talks a lot in class but a great prof. Idc for earth science so i found the lab boring but he tries his best to engage everyone. You have to go to class on time, he's very strict about that. A very nice person, just smile in class and he will love you.", + "pos": 0.335, + "neu": 0.629, + "neg": 0.036, + "_id": { + "$oid": "6711d678cd60fca157e5ebf4" + } + }, + { + "text": "I had him for Atmosphere during the winter 2019. He is kind of scary, but I think because he keeps reminding us of the fact that his class is not easy, he makes us acually work hard. The class was was 2 weeks and a hlaf (very short, I loved it). The first week was tough, but it got eaiser. Do the extra credit. Midterm 80 MC, final 60 MC. Doable", + "pos": 0.11, + "neu": 0.785, + "neg": 0.105, + "_id": { + "$oid": "6711d678cd60fca157e5ebf5" + } + }, + { + "text": "The class has too much work but it's easy. 10 online quizzes (mcqs ), lab reports (labs are computer base), 2 extra credits assignments, midterm, final and a group project (report & presentation). He is sensitive about lateness even tho he is sometimes late too but if you wait he gives one extra credit. no need textbook, his slides & quizlet help.", + "pos": 0.19, + "neu": 0.772, + "neg": 0.038, + "_id": { + "$oid": "6711d678cd60fca157e5ebf6" + } + }, + { + "text": "Honestly, just do what he says and you'll be fine. He's very clear with his expectations, and you can easily meet them. His lectures are boring, and attendance is mandatory. His assignments are easy, and his exams are all multiple choice and can be crammed for. He also gives Video Assignments and Extra Credit to help boost your grade.", + "pos": 0.303, + "neu": 0.666, + "neg": 0.031, + "_id": { + "$oid": "6711d678cd60fca157e5ebf7" + } + }, + { + "text": "Decent professor if the class listens to the rules. He gets mad when people come late, use their phone, fall asleep, forget to write their names on tests, or use pen on a scantron. HIs lectures can get boring but he does post the powerpoint online and they're the best way to study. Tests are only multiple choice about 70 questions.", + "pos": 0.085, + "neu": 0.838, + "neg": 0.076, + "_id": { + "$oid": "6711d678cd60fca157e5ebf8" + } + }, + { + "text": "This professor has a thick accent but he is really caring. He gives extra credit but his lectures are really boring. If you just go to class and take notes, you will be fine. He basically gives away what's going to be on the test. His tests have a lot of questions.", + "pos": 0.167, + "neu": 0.778, + "neg": 0.055, + "_id": { + "$oid": "6711d678cd60fca157e5ebf9" + } + }, + { + "text": "Sami is a chill guy and jokes with the class sometimes, also he would sometimes rant for like the first 15-20 minites of class about past students making silly mistakes on his labs, projects, and quizzes. He cares about his students so he doesnt want us to do bad. Lenient on the group presentations and plentiful of extra credit.", + "pos": 0.184, + "neu": 0.679, + "neg": 0.137, + "_id": { + "$oid": "6711d678cd60fca157e5ebfa" + } + }, + { + "text": "Took this as an elective course and he is the most unclear professor I have ever had. He screams at the class when people come in late, he goes on rants a lot when he gets angry. He makes tests that have 100 questions on it. He does drop an exam grade but other than that I barely learn anything in lecture and the class feels like a waste.", + "pos": 0.042, + "neu": 0.8, + "neg": 0.159, + "_id": { + "$oid": "6711d678cd60fca157e5ebfb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d678cd60fca157e5ebfd" + }, + "professor_name": "Fai Tsoi", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "There is a lot of writing but the professor goes through them thoroughly. She is very kind and will explain anything if you have questions. She gives a lot of extra credit opportunities.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ebfe" + } + }, + { + "text": "Professor Tsoi was really great at explaining the material. Her personality comes off as nonchalant but she's also caring. Make sure you pay attention to the lectures and take notes!! It's a lot of information. DO THE EXTRA CREDIT! She's a tough grader. If you actually try + submit everything on time, the lowest you'll get is a B.", + "pos": 0.207, + "neu": 0.702, + "neg": 0.091, + "_id": { + "$oid": "6711d678cd60fca157e5ebff" + } + }, + { + "text": "Make sure to pay attention and ask questions! Fai is a great professor and gives constant feedback.", + "pos": 0.303, + "neu": 0.634, + "neg": 0.063, + "_id": { + "$oid": "6711d678cd60fca157e5ec00" + } + }, + { + "text": "Professor Tsoi is a great professor to take for PSY 377. She gives alot of extra credit assignments to do. Her exams are tricky but you have to read them carefully. Her lectures are interesting but she wants you to participate. Good professor if you are interested in the topic.", + "pos": 0.278, + "neu": 0.701, + "neg": 0.021, + "_id": { + "$oid": "6711d678cd60fca157e5ec01" + } + }, + { + "text": "She's a great choice for Personality Psychology. There were three in-person exams, one term paper, and four short responses. Exams are based on lectures and the textbook, so it's important to take notes and study. I Would absolutely recommend you take her, especially if your a Psychology major.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ec02" + } + }, + { + "text": "Makes everything so clear. Just do the work, take her feedback, and participate in class. Also gives multiple extra credit opportunities because she really wants you to do well. Assignments are long so don't leave until the last minute. Class takes work but she will help you whenever you ask.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ec03" + } + }, + { + "text": "this class was fun, but you must take notes in class. she does not provide any PowerPoint or slides, she has her own notes snd from there you copy after her, she uses the board to write, I recommend you to type in your computer because it gets heavy and confusing. you have 5 papers two characters analysis and three short responses and three exams.", + "pos": 0.077, + "neu": 0.889, + "neg": 0.034, + "_id": { + "$oid": "6711d678cd60fca157e5ec04" + } + }, + { + "text": "Honestly her short responses on exams were challenging and it was hard to get full points. she gives alot of extra credit and I did all of it. I also got a 100 on my term paper. Lectures were super interesting. I would for sure take her again given the oppurtunity.", + "pos": 0.262, + "neu": 0.715, + "neg": 0.023, + "_id": { + "$oid": "6711d678cd60fca157e5ec05" + } + }, + { + "text": "mane this was a challenging class indeed. Fai is a pretty solid choice but she def had her moments. be prepared for group work and random in class assigments. there are two big papers; proposal and jury study, WORK ON THEM RIGHT AWAY! email her every moment you're confused and she will help you. make sure you follow the lectures or you will be lost", + "pos": 0.18, + "neu": 0.743, + "neg": 0.077, + "_id": { + "$oid": "6711d678cd60fca157e5ec06" + } + }, + { + "text": "Don't get me wrong Professor Fai is a very kind professor who presents a clear syllabus for you to succeed but her grading is a bit harsh sometimes. If it wasn't for her countless extra credit opportunities I would've gotten a B in her class. Attend her office hours and ask many questions. It will make a difference when completing her assignments.", + "pos": 0.201, + "neu": 0.747, + "neg": 0.052, + "_id": { + "$oid": "6711d678cd60fca157e5ec07" + } + }, + { + "text": "Fai has the clearest rubrics of any professor I've ever taken at CCNY. You will always know exactly what you need to do to get 100%, and if you don't get 100% it will be extremely clear why. She is a fair grader and very accessible. She really cares about her students and makes sure everyone has a chance to get an A. Class was fun and structured.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ec08" + } + }, + { + "text": "This class feels intimidating but you get the hang of it. Fai's always there to help. Her syllabus is clear. There are two papers but split up into smaller sections. There are in-class assignments and discussion boards but its to benefit you. Six quizzes, one final. She gives breaks in between and extra credit opportunities. Focus and you'll pass.", + "pos": 0.244, + "neu": 0.729, + "neg": 0.027, + "_id": { + "$oid": "6711d678cd60fca157e5ec09" + } + }, + { + "text": "In the beginning, the class was difficult for me. However, I realized (late) that she gives you all the information you need on her syllabus. Her syllabus is literally the manuscript to the assignments you will do in her class, USE IT! For quizzes, paying attention is key b/c she does not allow you to have her slides until after the quizzes.", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d678cd60fca157e5ec0a" + } + }, + { + "text": "There are 2 papers done throughout course, 6 quizzes (2 lowest dropped) & a final (60+ q's). Material is very dense and heavy & she talks fast so paying attention is a must. I had her during the pandemic; she didnt post slides until the end of a quiz. Dont buy the textbook as her slides go more in detail. Take someone else if u can; very intense.", + "pos": 0.023, + "neu": 0.94, + "neg": 0.037, + "_id": { + "$oid": "6711d678cd60fca157e5ec0b" + } + }, + { + "text": "For experimental, DO NOT take her. Ive heard she's better in her other courses but for experimental, she is a tough grader, gives too many assignments, too much in-class work and doesn't slow down. Of course, she is a nice person but not a good teacher.", + "pos": 0.108, + "neu": 0.8, + "neg": 0.093, + "_id": { + "$oid": "6711d678cd60fca157e5ec0c" + } + }, + { + "text": "Shes super nice and understanding. Her lectures are more like conversations instead of being talked at for an hour and a half. She gives extra credit and her tests are fair. Highly recommend!", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ec0d" + } + }, + { + "text": "She's very knowledgeable and is always willing to talk after class if you're having trouble. She gives extra credit opportunities as well as being a fair grader. I would definitely take one of her classes again.", + "pos": 0.273, + "neu": 0.667, + "neg": 0.06, + "_id": { + "$oid": "6711d678cd60fca157e5ec0e" + } + }, + { + "text": "One of the best professors. Took her during the summer so the work felt heavy, but she makes the lessons easy to understand. The papers lead up to one big paper so you have opportunities to revise the previous ones. Theres always options for extra credit for the assignment and final grade. Quizzes and slides/lectures are from the textbook", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d678cd60fca157e5ec0f" + } + }, + { + "text": "Her class was one of the easier classes I took. She doesn't use powerpoints or online tools for the material, so this class is lecture heavy! She gave 2 papers which were easy and 4 exams which were average in difficulty. There was one presentation that was also pretty easy. There is no extra homework. As for the textbook, just skim through it.", + "pos": 0.164, + "neu": 0.773, + "neg": 0.062, + "_id": { + "$oid": "6711d678cd60fca157e5ec10" + } + }, + { + "text": "Professor Fai is a charming person. However, the class itself is just super tricky. It is experimental psychology, so its \"meant\" to be hard. Other professors teach this course at a more relaxed and less stressful form, so I advise you to take any other class with Fai BUT experimental. A lot of work, quizzes are hard, and the final exam is probably", + "pos": 0.103, + "neu": 0.809, + "neg": 0.088, + "_id": { + "$oid": "6711d678cd60fca157e5ec11" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d679cd60fca157e5ec13" + }, + "professor_name": "Mensur Purisic", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "This guy's class is pretty hard. If you ask around people always end up getting in low and mid 70s on his test. He does not curve at all so your GPAs will suffer if you don't do too great. He also makes class mandatory which is the first from a calc professor. Class is a waste of time just use youtube, keep doing problems, and pray you do good.", + "pos": 0.113, + "neu": 0.702, + "neg": 0.185, + "_id": { + "$oid": "6711d679cd60fca157e5ec14" + } + }, + { + "text": "Prof. Purisic tries very hard to teach in a very understandable way. He cares when you show him that you work hard & that you care; he will definitely notice. He is a harsh grader in some aspects but I wouldn't say is was completely unfair. In order to do well in this class the homework is an absolute necessity. He doesn't give past exams & drops 1", + "pos": 0.098, + "neu": 0.783, + "neg": 0.119, + "_id": { + "$oid": "6711d679cd60fca157e5ec15" + } + }, + { + "text": "Professor Purisic doesn't like the departmental tests, so he made his own tests for his classes, which are easier than the departmental exams. His lectures are clear, therefore it's easy to understand his lectures and easy to get a good grade. If you are hardworking, then you definitely can get an A+ in his class.", + "pos": 0.251, + "neu": 0.717, + "neg": 0.032, + "_id": { + "$oid": "6711d679cd60fca157e5ec16" + } + }, + { + "text": "He gives partial credit if your approach makes sense. However, He does not curve at all. His tests are pretty straightforward, mostly from his lectures and hw. So make sure you pay attention! He is very nice and funny, and also makes the effort to teach everyone in class.", + "pos": 0.252, + "neu": 0.725, + "neg": 0.024, + "_id": { + "$oid": "6711d679cd60fca157e5ec17" + } + }, + { + "text": "I would NOT recommend taking this professor for many reasons. First of all, he does not give any partial credit. I REPEAT HE DOES NOT GIVE ANY PARTIAL CREDIT! Also he DOES NOT curve at all! He is a very rude person and does not care about his students. DO NOT take this professor for Calculus 3, he makes the course harder than it is!!!!!", + "pos": 0.079, + "neu": 0.799, + "neg": 0.122, + "_id": { + "$oid": "6711d679cd60fca157e5ec18" + } + }, + { + "text": "Honestly he just might be the best professor I had this semester. Had Calculus 1 with him and it was great. He explained everything thoroughly. He is a tough grader, but he always sends multiple review sheets, and they are really helpful. He really wants you to know everything, not just pass the class", + "pos": 0.183, + "neu": 0.796, + "neg": 0.02, + "_id": { + "$oid": "6711d679cd60fca157e5ec19" + } + }, + { + "text": "Good professor, but extremely hard grader. You have to do ALL the hw he assigns to do well, even though the hw is never collected. 3 exams, drops 1.", + "pos": 0.141, + "neu": 0.797, + "neg": 0.062, + "_id": { + "$oid": "6711d679cd60fca157e5ec1a" + } + }, + { + "text": "He is very hard in terms of grading. His tests are also very hard and the downside is that on the test day, he will teach further new topics, which can harm your preparation for the test. You will get 4 tests and only 1 hour is allowed for each test. Not a single more second. If you take another second he will not accept your exam and you get a 0.", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d679cd60fca157e5ec1b" + } + }, + { + "text": "I will simply say that avoid him at all costs. Absolutely not recommended!", + "pos": 0.0, + "neu": 0.716, + "neg": 0.284, + "_id": { + "$oid": "6711d679cd60fca157e5ec1c" + } + }, + { + "text": "Great teacher. Tries to teach everyone in the class, and helps out during office hours and is always there for you Truly a professor who wants to teach and help students understand calculus. His tests are hard but if you do the homework and study a little you will be good.", + "pos": 0.206, + "neu": 0.773, + "neg": 0.021, + "_id": { + "$oid": "6711d679cd60fca157e5ec1d" + } + }, + { + "text": "Professor Parisich is a very great math teacher! Taking Calculus 1 with him, honestly he made the class as easy a Calculus class could be. Don't make the mistake of not taking this professor if its an option, you won't regret it.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec1e" + } + }, + { + "text": "One of the best Professors I've ever took. Took him my freshman year, he is very straight forward and clear. The tests are based on the lectures they are very simple. He'll answer any question you have. Explains everything beautifully.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec1f" + } + }, + { + "text": "Very good and clear professor! Harsh with grading but specific with what he looks for.", + "pos": 0.236, + "neu": 0.657, + "neg": 0.107, + "_id": { + "$oid": "6711d679cd60fca157e5ec20" + } + }, + { + "text": "This guy is hands down one of the best professors in CCNY, He can teach really well and he explains the material very well , he is very tough in terms of exams but if you do your part and practice you should be fine", + "pos": 0.165, + "neu": 0.807, + "neg": 0.028, + "_id": { + "$oid": "6711d679cd60fca157e5ec21" + } + }, + { + "text": "There is no hw which is a big disadvantage in terms of grading!!! the tests are pretty easy but there is a higher chance of getting screwed up so make sure to practice everything equally!!! He is very nice as a person but when it comes to grading dont expect any mercy!! Thanks for ruining my gpa", + "pos": 0.244, + "neu": 0.589, + "neg": 0.166, + "_id": { + "$oid": "6711d679cd60fca157e5ec22" + } + }, + { + "text": "He's an amazing professor that actually cares if you pass. He's a fair grader and he explains the material really well.", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec23" + } + }, + { + "text": "It's a lot to take in. He barely finished series on the last day. we couldn't review. But he did give us review sheets he made on his own in series. My mistake was taking 5 clases with this one.", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d679cd60fca157e5ec24" + } + }, + { + "text": "Very clear, detailed explanation in class, and gives out review sheets prior to most exams. Do the homework (even though it's not collected) and the full review sheets and you'll be fine. He also holds review sessions prior to the final, and other than a few curveballs, his exams are fairly straightforward. Highly recommend.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec25" + } + }, + { + "text": "I had some pretty decent teachers at CCNY and this guy is no where near that. He's confusing with what to study for tests. Gave the second test after the drop date. Covered series in 2 weeks before the final and refuses to lower your grade from a D to an F to retake the class. Barely taught matlab. Plus his lectures are dull and isn't engaging.", + "pos": 0.042, + "neu": 0.786, + "neg": 0.172, + "_id": { + "$oid": "6711d679cd60fca157e5ec26" + } + }, + { + "text": "Hes a good professor but his exams are hard. He says the questions are easy, yeah easy to him. He gives hard questions on his exams. He isn't always available when students need him. Just do the homework and you will be fine. three exams and he doesn't curve.", + "pos": 0.245, + "neu": 0.702, + "neg": 0.053, + "_id": { + "$oid": "6711d679cd60fca157e5ec27" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d679cd60fca157e5ec29" + }, + "professor_name": "Hysell Oviedo", + "rating": 1.9, + "department": "Biology department", + "comments": [ + { + "text": "Literally tests concepts and principles that have never been spoken during her lectures. Expects you to come in with exceptional preexisting knowledge and acts as though you're dumb if you don't already know what she's teaching you.", + "pos": 0.0, + "neu": 0.916, + "neg": 0.084, + "_id": { + "$oid": "6711d679cd60fca157e5ec2a" + } + }, + { + "text": "Finally, she left City College!! Good riddance!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec2b" + } + }, + { + "text": "Do not take this professor. She was incredibly condescending and rude to students. I understand it's a 4000-level course, but I had to e-mail the dean regarding her attitude towards students and even she said it was unacceptable. Stay away from her if you don't want to ruin your GPA, take any other bio elective.", + "pos": 0.066, + "neu": 0.815, + "neg": 0.119, + "_id": { + "$oid": "6711d679cd60fca157e5ec2c" + } + }, + { + "text": "For those interested in neuroscience, she is a good choice for a professor. It's clear that she knows what she's doing and is very passionate about it. It shows in her lectures, which were easily the best part of the class. That aside, exams were tough. Taking thorough notes and reading the textbook is a must to do well.", + "pos": 0.282, + "neu": 0.698, + "neg": 0.021, + "_id": { + "$oid": "6711d679cd60fca157e5ec2d" + } + }, + { + "text": "The professor was a tough grader and did not provide many sources for us to do well on the exams. although she stated there were curves, it was not implemented. The course itself is difficult and she did not make it any easier.", + "pos": 0.102, + "neu": 0.814, + "neg": 0.084, + "_id": { + "$oid": "6711d679cd60fca157e5ec2e" + } + }, + { + "text": "terrible professor who is not understanding of students and is an extremely tough grader. her lectures are okay but her grading and assessment do not match. avoid her classes", + "pos": 0.117, + "neu": 0.776, + "neg": 0.107, + "_id": { + "$oid": "6711d679cd60fca157e5ec2f" + } + }, + { + "text": "I was drowning in all the work we had in this course. Lectures were vague and monotonous. Barely passable class. Do yourself a favor and take someone else, maybe at a different campus. This class caused me so much mental anguish. She gets genuinely annoyed when students ask questions. Prepare for a GPA drop.", + "pos": 0.044, + "neu": 0.791, + "neg": 0.166, + "_id": { + "$oid": "6711d679cd60fca157e5ec30" + } + }, + { + "text": "Difficult professor to deal with. Does not have sympathy for students who are struggling in the class. Her exams shows things that are not on lecture. Does not like to answer students questions that often. Yep, it will be really hard to get an A in this course. I recommend you studying other things apart from lecture and marry the textbook.", + "pos": 0.067, + "neu": 0.772, + "neg": 0.16, + "_id": { + "$oid": "6711d679cd60fca157e5ec31" + } + }, + { + "text": "They should not be allowing professors who hate teaching to be conducting any course. She seems to always be in a bad mood, no interest in teaching, no interest in caring about anybody. Lectures have nothing to do with the exam. Always rude and condescending when you ask questions. Not worth your time or tuition for that matter.", + "pos": 0.06, + "neu": 0.703, + "neg": 0.237, + "_id": { + "$oid": "6711d679cd60fca157e5ec32" + } + }, + { + "text": "The person several posts below stated that \"The posts below are trolls. She is a great professor.\" If she was a great professor, why did you get a B+ and not an A? Just curious. Have a great day.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec33" + } + }, + { + "text": "One thing about this class is that grades are distributed between exams and lab. Doing well in lab will help a lot. Her exams have questions that are sometimes not even covered in the lecture. She is not often receptive of feedback or criticism regarding it. Says she doesnt curve but depending on everyones grades she might. Not the best choice!", + "pos": 0.051, + "neu": 0.848, + "neg": 0.101, + "_id": { + "$oid": "6711d679cd60fca157e5ec34" + } + }, + { + "text": "She is not the best professor. However, it is possible to do well in this class. Since it was online, I watched recorded lectures when I studied for the exams, but I also read the textbook because it covered a lot of the content on the test. Not an easy class, but if you space out your studying, you should do well.", + "pos": 0.062, + "neu": 0.859, + "neg": 0.078, + "_id": { + "$oid": "6711d679cd60fca157e5ec35" + } + }, + { + "text": "The posts below are trolls. She is a great professor. Listen, you gotta read! There is no going around it. Lectures help to reinforce topics from the textbook. Make sure to ask her questions if confused. Supplement with YouTube. The lab component alone is 42%, Ace lab and do decent on tests, you will do fine. I cant find the red hot chili pepper..", + "pos": 0.15, + "neu": 0.763, + "neg": 0.087, + "_id": { + "$oid": "6711d679cd60fca157e5ec36" + } + }, + { + "text": "If you stare at her for longer than a minute, she will begin to look like the devil. The exams are extremely difficult and studying is not required because nothing on the exam relates to the textbook or lecture material. To add on, covid does not exist in her world. Enjoy sitting with 150+ students in MR3 on exam day.", + "pos": 0.083, + "neu": 0.813, + "neg": 0.104, + "_id": { + "$oid": "6711d679cd60fca157e5ec37" + } + }, + { + "text": "This course is something you basically have to teach yourself; you'll need to memorize trivia. Oviedo does her best to answer questions, but unfortunately speeds through many topics in a very short amount of time. There were several times where we were tested on material that we hadn't covered in lecture yet, and she often fell behind schedule.", + "pos": 0.042, + "neu": 0.908, + "neg": 0.05, + "_id": { + "$oid": "6711d679cd60fca157e5ec38" + } + }, + { + "text": "She can be a better teacher. I feel as her lectures do not correlate with her test at all. You have to make sure you read everything off the textbook, don't bother using her lectures, they're not helpful which is not fair. She also teaches too fast.", + "pos": 0.135, + "neu": 0.785, + "neg": 0.08, + "_id": { + "$oid": "6711d679cd60fca157e5ec39" + } + }, + { + "text": "This professor must be miserable with her job because she goes out of her way to be disrespectful and harsh on students. Exams do not have anything to do with her lecture and they're extremely hard.", + "pos": 0.0, + "neu": 0.809, + "neg": 0.191, + "_id": { + "$oid": "6711d679cd60fca157e5ec3a" + } + }, + { + "text": "Professor Oviedo made us take in-person exams with no social distancing. We were 150 students in the room with (1ft apart) chairs. Oviedo is very disorganized so prepare to self teach everything. She provides slides but with wrong information. She said she doesnt have time for office hours or questions or review before final. AVOID HER", + "pos": 0.0, + "neu": 0.82, + "neg": 0.18, + "_id": { + "$oid": "6711d679cd60fca157e5ec3b" + } + }, + { + "text": "Interesting class, boring teacher. Breezes through the lecture topics unless a question is asked, not thorough. Review sessions before exams were useless because she makes us ask questions instead of going over the topics that are actually going to be on the test. Expect to do a lot of self-teaching. Avoid this teacher if you can.", + "pos": 0.044, + "neu": 0.839, + "neg": 0.118, + "_id": { + "$oid": "6711d679cd60fca157e5ec3c" + } + }, + { + "text": "She doesn't know how to teach although she may seem very knowledgeable in the field. She expects you to know a lot before taking the class, so she lectures as such. The lectures are very boring and she speaks very fast. Take at your own risk.", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d679cd60fca157e5ec3d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d679cd60fca157e5ec3f" + }, + "professor_name": "Gail Leinwall", + "rating": 3.8, + "department": "Speech department", + "comments": [ + { + "text": "If you have trouble with public speaking then professor Leinwall is the correct person to teach you, she makes the whole experience fun and not nerve wrecking.", + "pos": 0.106, + "neu": 0.806, + "neg": 0.087, + "_id": { + "$oid": "6711d679cd60fca157e5ec40" + } + }, + { + "text": "She's really nice and she makes it her duty to know each person's name... However, she is a bit feisty at times! But her feedbacks are great, and while giving your speeches, she smiles with an approving nod and etc. Nice class.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec41" + } + }, + { + "text": "3 major speeches, 2 short, fun ones at the end, and a midterm with extra credit. She's a nice professor. Respect her and she'll respect you. She wants you to improve in your public speaking and gives good feedback, just pay attention in class and take notes, they really help with the midterm.", + "pos": 0.343, + "neu": 0.637, + "neg": 0.02, + "_id": { + "$oid": "6711d679cd60fca157e5ec42" + } + }, + { + "text": "If u have her drop the class don't stay with her she's not fair and I don't wish to take her again she doesn't care about how u r", + "pos": 0.0, + "neu": 0.736, + "neg": 0.264, + "_id": { + "$oid": "6711d679cd60fca157e5ec43" + } + }, + { + "text": "Horrible class. Do not take her if you have an accent, even if you are a great presenter, the most you will get is a B! Also she plays favorite and plain rude to people she doesn't like. No chance to improve, doesn't care if you hate presentations, will grade you NOT based on how much you improve but on whatever criteria she has.", + "pos": 0.155, + "neu": 0.712, + "neg": 0.134, + "_id": { + "$oid": "6711d679cd60fca157e5ec44" + } + }, + { + "text": "She's a nice professor. She's fun sometimes and she's enthusiastic. She always helps students before their speech project to improve their speech. She gives students chances to do well. She's helpful.", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec45" + } + }, + { + "text": "Great teacher . Very creative with class activitys ... Soo muchh fun .. She even gives games to get extra credit", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec46" + } + }, + { + "text": "I received an A in her class but was kind of hoping for an A+. You have to do three speeches and one test and an outline for each speech. She will clearly teach you how to do an outline, and literally gives you the answers to her midterms in a review she does. I got a 104 very easy. She is helpful and will help you develop your speech skills", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec47" + } + }, + { + "text": "Very nice although she has a tendency to snap at students sometimes. She takes outlines seriously and her midterm is super easy. I would always focus on my harder subjects so I easily forgot I even took this class. Either way, this class is extremely fun so take it even if its not required. It is like a college version of story time. :D", + "pos": 0.282, + "neu": 0.697, + "neg": 0.021, + "_id": { + "$oid": "6711d679cd60fca157e5ec48" + } + }, + { + "text": "At the beginning she is active and fun but soon she started to pick on everyone, she didn't accept anyone's idea or thoughts, she wanted everything her way. She embarrasses you in front of the class. If she doesn't like you then she will keep picking on you!If you ever get a chance to taker her class DON'T!Save your self before its too late!!!!!!!!", + "pos": 0.087, + "neu": 0.777, + "neg": 0.136, + "_id": { + "$oid": "6711d679cd60fca157e5ec49" + } + }, + { + "text": "Her class reminds me of a high school class and she's kinda odd, but she's a good prof. Do the work, seriously, do it. She gives you good notes and the midterm is super easy. One bad thing: if you have an accent she'll try and \"fix\" your pronunciation. It's so rude. Otherwise she's very very nice.", + "pos": 0.258, + "neu": 0.578, + "neg": 0.164, + "_id": { + "$oid": "6711d679cd60fca157e5ec4a" + } + }, + { + "text": "Great teacher. Approachable. Clear. Loves to answer questions. Has a great sense of humor. She relates the class to real life and sometimes just sits down and talks with the class for fun. Excellent teacher, I reccomend her to everyone! She even hands out candy sometimes lol", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec4b" + } + }, + { + "text": "i had to give the first speech of my life and she is the best teacher I ever had, very professional, I feel so lucky to be in her class even though i got a B- ( thats how much my speech was worth) definitely take this class with her, she is the best", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec4c" + } + }, + { + "text": "Professor Leinwall made the class very fun and interesting. All the assignments we did, including the speeches were very helpful. She has a really good sense of humor and you will have no problem staying awake in that class. If you want to improve your public speaking while having a fun time in class, you should definitely take speech 111 with her", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec4d" + } + }, + { + "text": "I don't like speech at all because I'm shy and have a low voice, butt hat thing is she make everything fun. The excercise that she make us do before every speech is really helpful and on the last day we did an award ceremony and we have cake. It was a fun class eventhough I don't know what I get for that class yet.", + "pos": 0.17, + "neu": 0.749, + "neg": 0.08, + "_id": { + "$oid": "6711d679cd60fca157e5ec4e" + } + }, + { + "text": "Strange lady! Her classes are fun and I always looked foward to them. She makes you feel very comfortable and is very interested in the students as individuals.", + "pos": 0.283, + "neu": 0.667, + "neg": 0.05, + "_id": { + "$oid": "6711d679cd60fca157e5ec4f" + } + }, + { + "text": "She is a good professor, but if you are late it will be taken out on your grade. She takes the speeches so serious.But overall she never did anything wrong to me shes good.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d679cd60fca157e5ec50" + } + }, + { + "text": "she should teach in a high school. she gives out pointless hw and does yoga exercises in class. not very fun class.. easy midterm. all of her speeches require formal outlines and and evaluation after. its not worth it. although you learn a lot, and benefit from her class... avoid the hassle", + "pos": 0.103, + "neu": 0.784, + "neg": 0.113, + "_id": { + "$oid": "6711d679cd60fca157e5ec51" + } + }, + { + "text": "She's nice and very organized. A few things to consider: 1) don't be late 2) don't hand in anything late 3) don't take her if you have an accent-she will embarass you in front of the class. Her tests are easy, but she grades the speeches more harshly.", + "pos": 0.076, + "neu": 0.888, + "neg": 0.036, + "_id": { + "$oid": "6711d679cd60fca157e5ec52" + } + }, + { + "text": "She is very clear and concise. Lets you know from the get-go what she expects from you as a student and as a speaker, do it and you'll be fine. Midterm was super easy, just one hour of studying did it for me. She's a very nice individual, but does not like being disrespected.Her constructive criticism is amazing, and extremely helpful, along with h", + "pos": 0.237, + "neu": 0.682, + "neg": 0.081, + "_id": { + "$oid": "6711d679cd60fca157e5ec53" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67acd60fca157e5ec55" + }, + "professor_name": "Fran Leadon", + "rating": 3.7, + "department": "Architecture department", + "comments": [ + { + "text": "He acts more like an English teacher than a history teacher. He failed one of my reading reports that I worked hard on and when I asked to make it up again he told me he didn't want to make the time. I dread doing his reports and would find his class more interesting if he made it more fun. He seems like a nice person but is very critical.", + "pos": 0.123, + "neu": 0.753, + "neg": 0.124, + "_id": { + "$oid": "6711d67acd60fca157e5ec56" + } + }, + { + "text": "He's an incredible lecturer. I love his lectures and his reading reports are, although long, are doable and easy. I'm a computer science major but I'm taking this class for liberal arts credit, and I've gotta say he's the best choice for a 200 level lib art. Easily one of my top 3 professors at CCNY.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec57" + } + }, + { + "text": "He is very picky with grammar in the readings papers. Also, he is a tough grader. I would not recommend anyone to take his class.", + "pos": 0.0, + "neu": 0.864, + "neg": 0.136, + "_id": { + "$oid": "6711d67acd60fca157e5ec58" + } + }, + { + "text": "Professor Leadon's lectures were clear and he explained things very well. You can see how he is very invested into the things he is teaching and really cares for it. Lectures may get boring but taking good notes and staying awake is essential to do good on the quizzes every week, because the slides don't go much beyond images and few words.", + "pos": 0.188, + "neu": 0.789, + "neg": 0.023, + "_id": { + "$oid": "6711d67acd60fca157e5ec59" + } + }, + { + "text": "What a waste of my time. Fran doesn't care if you pass or fail this class, judging from his lectures this guy doesn't even care about his job. For most of the lecture, it's just him blabbing on about random nonsense that doesn't even relate to the class. And his slide shows are pathetic they look like some middle schooler did it for him.", + "pos": 0.032, + "neu": 0.736, + "neg": 0.232, + "_id": { + "$oid": "6711d67acd60fca157e5ec5a" + } + }, + { + "text": "If you don't need to take his class especially if u are taking it online, I suggest you not even try. I wanted to see if architecture was fun but after taking his class i was rlly disappointed. He's a tough grader. His lectures are boring. I don't think he even cares about his students. The only thing i loved about this course were the TA's.", + "pos": 0.143, + "neu": 0.747, + "neg": 0.11, + "_id": { + "$oid": "6711d67acd60fca157e5ec5b" + } + }, + { + "text": "He might be one of the worst professors I ever had a period. He doesn't know how to teach and the presentations he makes are like done last minute. The lecture doesn't help one bit with the test you're better off studying on your own than going to the lecture, but attendance is mandatory.", + "pos": 0.088, + "neu": 0.84, + "neg": 0.072, + "_id": { + "$oid": "6711d67acd60fca157e5ec5c" + } + }, + { + "text": "Very bad at teaching the lecture he gives are very boring just makes you want to fall asleep. A horrible teacher doesn't help one bit if you ask him for help.", + "pos": 0.097, + "neu": 0.608, + "neg": 0.295, + "_id": { + "$oid": "6711d67acd60fca157e5ec5d" + } + }, + { + "text": "THE WORST PROFESSOR", + "pos": 0.0, + "neu": 0.328, + "neg": 0.672, + "_id": { + "$oid": "6711d67acd60fca157e5ec5e" + } + }, + { + "text": "Great professor. Truly so passionate about architecture and knowledgeable about a lot of different things. He is definitely petty and cares a lot about small details of NYC history, so make sure you really pay attention in his class and take good notes. But overall he is a really caring, chill, and fun professor. Recommend for sure", + "pos": 0.392, + "neu": 0.572, + "neg": 0.036, + "_id": { + "$oid": "6711d67acd60fca157e5ec5f" + } + }, + { + "text": "Nice guy... I didn't like his style of teaching. He liked to do weird stuff and i didn't feel like he really cared for our projects. it was like do this model for tomorrow, and another for the day after and another for the day after. You will learn a lot about model building though. not bad, but... meh..", + "pos": 0.166, + "neu": 0.766, + "neg": 0.068, + "_id": { + "$oid": "6711d67acd60fca157e5ec60" + } + }, + { + "text": "Professor Leadon is by far the best prof for MHC101. There's very little homework, but at the same time, I feel that I've gained a ton from his class. Our in class discussions mainly revolve around the museums we visit and are incredibly enjoyable and engaging. Prof Leadon makes the class feel more like a culture club than a college class.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec61" + } + }, + { + "text": "He is a great proffessor. Very random, teaches you alot that you wont really understand until the end of the semester. i recommend you take him, if you work hard you should be fine.He gives alot of work, and his comments have to be deciphered which is basically the essense of architecture. To criticize yourself and make quick decisions.", + "pos": 0.101, + "neu": 0.838, + "neg": 0.061, + "_id": { + "$oid": "6711d67acd60fca157e5ec62" + } + }, + { + "text": "Challenging", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec63" + } + }, + { + "text": "Very helpful guy. People always fight to get into his class. You will definitely pick up your drawing and modeling skills in his class. He cares about his students too. He would occationally ask if your sleep hours are okay or is anyone getting sick or is any other class having a big due day soon.", + "pos": 0.161, + "neu": 0.751, + "neg": 0.089, + "_id": { + "$oid": "6711d67acd60fca157e5ec64" + } + }, + { + "text": "The best studio professor you could ever have! Very clear and helpful! He'll also give you a good grade so long as you do your work!", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec65" + } + }, + { + "text": "He respects everyone. Always on time except for reviews which is frustrating. For the next semester I hope he will do more teaching in studio as he should come to class with instruction, not just take a scrap piece of paper and give a weak, fast explaination.", + "pos": 0.096, + "neu": 0.796, + "neg": 0.107, + "_id": { + "$oid": "6711d67acd60fca157e5ec66" + } + }, + { + "text": "Fran is the best year one professor, hands down. He is friendly, helpful and creative. Don't be afraid to ask him questions, he is always willing to give kind answers. He'll say the word \"fantastic\" about a million times during the semester. He is usually enthusiastic, but expects wonderful drawings and high levels of craft. Great Prof!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec67" + } + }, + { + "text": "He doesn't really teach much and doesn't prepare you much. But he has really good criticism and he is very lenient and chill.", + "pos": 0.233, + "neu": 0.632, + "neg": 0.135, + "_id": { + "$oid": "6711d67acd60fca157e5ec68" + } + }, + { + "text": "Great Professor. You will learn a lot from this guy. Very considerate when it comes to personal problems. If you are looking for someone to learn from, he is the one.", + "pos": 0.192, + "neu": 0.737, + "neg": 0.071, + "_id": { + "$oid": "6711d67acd60fca157e5ec69" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67acd60fca157e5ec6b" + }, + "professor_name": "Joyce Fassbender", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "Professor Fassbender is an amazing professor! She is great with her students and is very knowledgeable! She is always available when needed and always ready to help with anything. All you have to do is do your work and pay attention. She has a very nice way of teaching and makes it easy to understand! I will DEFINITELY take her again, even for fun!", + "pos": 0.324, + "neu": 0.66, + "neg": 0.017, + "_id": { + "$oid": "6711d67acd60fca157e5ec6c" + } + }, + { + "text": "Joyce is one of the best TA on campus! She is very nice and helpful! She makes class fun with her jokes :) very lovely!", + "pos": 0.568, + "neu": 0.432, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec6d" + } + }, + { + "text": "Super cool .. Definitely has the students best interest in mind.. Very helpful and straight forwards .. Funny and you will def enjoy lab with her .. Best lab ever!! If u get her you will have a good time!", + "pos": 0.55, + "neu": 0.45, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec6e" + } + }, + { + "text": "Really cool lab teacher... very funny and down to earth. Just do all the assignments, take notes and pay attention and you're guaranteed to pass. If you don't pass her class then the fault's not with her (she's that good). ^___^", + "pos": 0.184, + "neu": 0.786, + "neg": 0.03, + "_id": { + "$oid": "6711d67acd60fca157e5ec6f" + } + }, + { + "text": "She is one of the best Professors I've had at CCNY. Paying attention in lectures and taking down the notes (she puts on the board!) are all that is needed to get an A. I don't even like science and I looked forward to her funny lectures every week.", + "pos": 0.133, + "neu": 0.829, + "neg": 0.038, + "_id": { + "$oid": "6711d67acd60fca157e5ec70" + } + }, + { + "text": "Was not expecting this Human Bio to be so comprehensive. Fassbender is an excellent teacher... After a one day break from Spring semester, she had energy for eight weeks of summer session \"how cool is that?\"", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec71" + } + }, + { + "text": "She is by far one of the best teachers in the field; she breaks down PhD level work into kindergarten level and is a joy to be around. She's always available when you need her. If you show up to class and do the actual work (laziness need not apply), she practically gives the A away. She is awesome and I would take the class again in a heartbeat!", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec72" + } + }, + { + "text": "She is the greatest lab instructor I ever had.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec73" + } + }, + { + "text": "Fantastic Bio instructor, better than most who have PhD,certif's. Enthusiastic, energetic, makes class joyful. Yes, she make jokes & is quirky (in good way), but for me funny and instructive are NOT mutually exclusively, they're complimentary. Exams cover lecture &book. An A is accessible, but not free. Class always a joy ?entertaining & fun.", + "pos": 0.461, + "neu": 0.495, + "neg": 0.044, + "_id": { + "$oid": "6711d67acd60fca157e5ec74" + } + }, + { + "text": "Fantastic Bio instructor, better than most who already have PhD/certificates. Enthusiastic, energetic, makes class joyful. Yes, I agree, she does make many jokes & is quirky (in a good way)? but for me funny and instructive are NOT mutually exclusively. In Fassbender?s case, they are complimentary. Exams cover lectures & book, that?s stan", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec75" + } + }, + { + "text": "I think that she's okay. makes some lame jokes that can be funny at certain times but other than that....write dow everything she says in class and just study those notes plus the handouts and you'll be fine....", + "pos": 0.203, + "neu": 0.752, + "neg": 0.045, + "_id": { + "$oid": "6711d67acd60fca157e5ec76" + } + }, + { + "text": "She teaches just to trick you in exams, I suggest you don't take her. Her exams are really hard and she expects you to know everything. She is bubbly person and her lectures are interesting.", + "pos": 0.072, + "neu": 0.851, + "neg": 0.077, + "_id": { + "$oid": "6711d67acd60fca157e5ec77" + } + }, + { + "text": "she's really nice..but not that good when it comes to teaching. the exams are mult choice but they are hard though.. curve is useless", + "pos": 0.0, + "neu": 0.75, + "neg": 0.25, + "_id": { + "$oid": "6711d67acd60fca157e5ec78" + } + }, + { + "text": "Super nice. Straightforward. Good Teacher. Fair. Tests are not easy, but she tells you what to make sure to study. Making an A is definately do-able. She's cool too, and has a really great dry sense of humour - makes you laugh, and class more fun. But study!", + "pos": 0.469, + "neu": 0.508, + "neg": 0.023, + "_id": { + "$oid": "6711d67acd60fca157e5ec79" + } + }, + { + "text": "difficult but interesting", + "pos": 0.563, + "neu": 0.159, + "neg": 0.278, + "_id": { + "$oid": "6711d67acd60fca157e5ec7a" + } + }, + { + "text": "she is very intelligent ans knows how to teach her stuff. she manages to keep us awake with her humorous jokes for our am class. i enjoy her class. she gives us facts and tries to make jokes and not bore us to death.", + "pos": 0.266, + "neu": 0.664, + "neg": 0.07, + "_id": { + "$oid": "6711d67acd60fca157e5ec7b" + } + }, + { + "text": "Very nice, puts great effort in teaching the material and uses jokes to grasp our attention.", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec7c" + } + }, + { + "text": "Not bad, Funny, Interesting Lectures and A good Educator. Labs are made Fun", + "pos": 0.417, + "neu": 0.368, + "neg": 0.215, + "_id": { + "$oid": "6711d67acd60fca157e5ec7d" + } + }, + { + "text": "shes cool", + "pos": 0.697, + "neu": 0.303, + "neg": 0.0, + "_id": { + "$oid": "6711d67acd60fca157e5ec7e" + } + }, + { + "text": "Overall, the class is fair however i have difficulty understanding the lab handouts and clarity of the class is not so great.", + "pos": 0.169, + "neu": 0.609, + "neg": 0.221, + "_id": { + "$oid": "6711d67acd60fca157e5ec7f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67bcd60fca157e5ec81" + }, + "professor_name": "Sandra Ann Hayes", + "rating": 1.6, + "department": "Mathematics department", + "comments": [ + { + "text": "I took calculus 201 with her. The test and the quiz where easy, But you have to do read the textbook and do your own work. She doesn't prepare you to the final, and the final grade. Just don' take her", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5ec82" + } + }, + { + "text": "DO NOT TAKE A CLASS WITH HER! Do not take her to begin with and if are taking her, drop the class before its too late.", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d67bcd60fca157e5ec83" + } + }, + { + "text": "just do yourself a favor and don't take her..she talks to the board and is like a thousand years old..her tests make no sense and she can't properly explain how to do problems..absolutely horrible!", + "pos": 0.126, + "neu": 0.728, + "neg": 0.145, + "_id": { + "$oid": "6711d67bcd60fca157e5ec84" + } + }, + { + "text": "Listen... DO NOT TAKE HER PERIOD.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5ec85" + } + }, + { + "text": "Hayes will grant you the illusion that you will somehow pass calculus because her exams are extremely easy.i can safely say this, since i had to sneak into other lectures to learn the material.anyone that takes her will have to deal with learning most of it on your own.Go to other professors office hours and lectures. then focus on the last chaps.", + "pos": 0.09, + "neu": 0.91, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5ec86" + } + }, + { + "text": "dont take her class. she writes everything from the book on the board. she does not know how to solve hard questions. you will fail her class because her test are so easy but the final is dificult. you could pass if you teach youself and look for help", + "pos": 0.134, + "neu": 0.803, + "neg": 0.063, + "_id": { + "$oid": "6711d67bcd60fca157e5ec87" + } + }, + { + "text": "Her grading methods suck!!!! Will take off 10 points on an example for a simple mistake. You never know how much the questions are worth..... HORRIBLE take someone else!!!", + "pos": 0.051, + "neu": 0.665, + "neg": 0.285, + "_id": { + "$oid": "6711d67bcd60fca157e5ec88" + } + }, + { + "text": "Good professor. Just need to study and do a little research and some practice.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5ec89" + } + }, + { + "text": "This teacher is absolutely incompetent of teaching. Her back is towards the class 90% of the class, doesn't teach how to do the problems she just teaches theoretically, Told my class we couldnt use graphin calculators DO NOT TAKE. She offers no extra credit. Homework and attendance does not help whatsoever so she doesnt consider effort in the class", + "pos": 0.0, + "neu": 0.809, + "neg": 0.191, + "_id": { + "$oid": "6711d67bcd60fca157e5ec8a" + } + }, + { + "text": "(1)in order for lecture NOT to be a waste of time; read and practice the chapter BEFORE. (2)study MAX 1 hr for midterm and final. Why? Chances are, if you take them seriously you'll fail. Why is that? Because the exam (and final) are RIDICULOUSLY EASY! It's embarrassing. And I'm taking math376 next semester.", + "pos": 0.081, + "neu": 0.703, + "neg": 0.215, + "_id": { + "$oid": "6711d67bcd60fca157e5ec8b" + } + }, + { + "text": "He is messed up. Be prepared for her exams. Gave a home take test and the class average was about 42! go figure...", + "pos": 0.074, + "neu": 0.821, + "neg": 0.105, + "_id": { + "$oid": "6711d67bcd60fca157e5ec8c" + } + }, + { + "text": "Horrible.", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d67bcd60fca157e5ec8d" + } + }, + { + "text": "This professor is terrible! DO NOT take her. Yes, she is a very nice woman and she tries to help but I believe she needs to retire now. She just tears pages out of the textbook and writes it on the board. We can do that at home. Homework was online on web assign and that's the only way I learned. Tests and Final material weren't even covered at all", + "pos": 0.052, + "neu": 0.864, + "neg": 0.084, + "_id": { + "$oid": "6711d67bcd60fca157e5ec8e" + } + }, + { + "text": "She's got a sweet personality, but is VERY VERY VERY bad at teaching. Tutoring is going to be the only way you'll survive, trust me.", + "pos": 0.172, + "neu": 0.585, + "neg": 0.243, + "_id": { + "$oid": "6711d67bcd60fca157e5ec8f" + } + }, + { + "text": "SHE IS THE WORST PROFESSOR EVER!!!!! TOUGH GRADER, BORING CLASS, EASY EXAMS BUT WHEN YOU GET TO THE FINAL, YOU'LL BE COMPLETELY LOST. DO NOT TAKE HER!!!!!", + "pos": 0.057, + "neu": 0.648, + "neg": 0.295, + "_id": { + "$oid": "6711d67bcd60fca157e5ec90" + } + }, + { + "text": "she teaches from the textbook, cant explain, my class mates ended up correcting her, nice person. just cant teach for her life. DO NOT take her, yes easy tests but the final, good luck to u sir. waste of money and time", + "pos": 0.221, + "neu": 0.679, + "neg": 0.1, + "_id": { + "$oid": "6711d67bcd60fca157e5ec91" + } + }, + { + "text": "One of the worst professor in CCNY. She has no general idea of math and reads from the textbook, ALWAYS. DO NOT TAKE HER CLASS AT ALL!!", + "pos": 0.0, + "neu": 0.784, + "neg": 0.216, + "_id": { + "$oid": "6711d67bcd60fca157e5ec92" + } + }, + { + "text": "Teaches out of text book. If you state a formula one way, she will tell you that you're wrong and restate it as it is in the book, (even if they are equal) I Failed her class and now have to take it over....", + "pos": 0.0, + "neu": 0.868, + "neg": 0.132, + "_id": { + "$oid": "6711d67bcd60fca157e5ec93" + } + }, + { + "text": "Attendance is very random. I came late a lot of times. 30 to even 60 mins late. And she sometimes wouldnt even notice. Drops lowest exam. Teaches straight from the textbook. I barely understood her, so all I did was learn from the textbook. Final is wayharder than her exams. There are better math profs in ccny for Calc I. HW is not always checked.", + "pos": 0.069, + "neu": 0.893, + "neg": 0.037, + "_id": { + "$oid": "6711d67bcd60fca157e5ec94" + } + }, + { + "text": "She literally rips out pages from the textbook and teaches word for word. While speaking, it's more like she's speaking to the blackboard than actually speaking to the class. She is not really an ideal math professor. When we ask for a clearer definition of a theorem she repeats the same thing like how it is stated from the textbook.", + "pos": 0.081, + "neu": 0.873, + "neg": 0.046, + "_id": { + "$oid": "6711d67bcd60fca157e5ec95" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67bcd60fca157e5ec97" + }, + "professor_name": "Charusheel Bapat", + "rating": 3.1, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "This class was terrible I basically taught my self the entire course as the professor just read off from the notes. He gave like 5 hw assignments. So if you understand how to solve them you will pass the exams as the questions are very simple. I dont want to be rude, but if you take him be prepared to teach your self because he wont teach you.", + "pos": 0.076, + "neu": 0.853, + "neg": 0.071, + "_id": { + "$oid": "6711d67bcd60fca157e5ec98" + } + }, + { + "text": "A professor who does not teach at all. His class is very important for ME in general, but he does not care. I have no idea how come he is a professor. Just hope not to see him again in any other class. I can not find something good to type about him. But he is really the worse professor ever.", + "pos": 0.073, + "neu": 0.74, + "neg": 0.187, + "_id": { + "$oid": "6711d67bcd60fca157e5ec99" + } + }, + { + "text": "Don't think he consider changing his teaching style at all. After all, he has a tenure. He really dont care about you at all. He fails to teach this class. He gives the note and somehow this note has previous exam answers! He spends an hour uploading some document while we are in lecture. He is a joke. Avoid he if you can. Good luck", + "pos": 0.111, + "neu": 0.784, + "neg": 0.105, + "_id": { + "$oid": "6711d67bcd60fca157e5ec9a" + } + }, + { + "text": "Nice guy. Poor teacher. He's expired. He's helpful when you go up to him directly. Bad at lectures. 1 midterm. 1 final. Didn't learn anything in 472 about designing. It was reading off of messy tables based on given specs (from him). Nothing about your input in the design. It was like plug & chug. Tests are harder than you'd expect. OK choice.", + "pos": 0.145, + "neu": 0.736, + "neg": 0.12, + "_id": { + "$oid": "6711d67bcd60fca157e5ec9b" + } + }, + { + "text": "Bapat is a nice guy and really means well, but is not a good professor. His class notes are extremely disorganized, making the class difficult for all the wrong reasons. The only thing I've learned from this class is how to decipher his notes. The exams are not as easy as people think, you really need to study if you want an A.", + "pos": 0.066, + "neu": 0.715, + "neg": 0.219, + "_id": { + "$oid": "6711d67bcd60fca157e5ec9c" + } + }, + { + "text": "Bapat is amazing when it comes to helping you learn the material. He makes his own notes because the material is already confusing on its own. However, he sucks at preparing you for his exams. If you cant get his past exams then theres a high chance of failing.", + "pos": 0.136, + "neu": 0.733, + "neg": 0.131, + "_id": { + "$oid": "6711d67bcd60fca157e5ec9d" + } + }, + { + "text": "Professor Bapat is a good professor in terms of his grading criteria and decent amount of partial credit. However, you will not learn a thing from his lectures. Be ready to educate yourself. Projects are always confusing due to inexplicit instructions, but he will answer all questions when asked. Open notes exams were fair. Final was too hard.", + "pos": 0.133, + "neu": 0.819, + "neg": 0.048, + "_id": { + "$oid": "6711d67bcd60fca157e5ec9e" + } + }, + { + "text": "He is a little confusing with his assignments. I'm just glad I had previous projects, otherwise they would've been confusing to do. 2 Midterms, Final, & 10+ mini projects. His exams seem okay, but there is always a curveball. Final was difficult. 100-85 A, 85-70 B, 70-55 C.", + "pos": 0.066, + "neu": 0.82, + "neg": 0.114, + "_id": { + "$oid": "6711d67bcd60fca157e5ec9f" + } + }, + { + "text": "worst professor ive had. confusing, disorganized, contradicts himself, unclear expectations for exams, allows cheating and doesnt take disciplinary action. learned a good amount of nothing. waste of time. if you go to his office he'll explain everything if u need. he gives notes instead of book but theyre disorganized confusing and terrible.", + "pos": 0.056, + "neu": 0.631, + "neg": 0.314, + "_id": { + "$oid": "6711d67bcd60fca157e5eca0" + } + }, + { + "text": "terrible. he gives notes instead of the textbook, and they are disorganized, hard to read, and dont make sense most of the time. the good thing is if you go to his office he clarifies everything for you, but this class is hard for the wrong reasons. its easy material, hard b/c he cant communicate it well. Hes a nice guy tho ask lots of questions.", + "pos": 0.136, + "neu": 0.684, + "neg": 0.179, + "_id": { + "$oid": "6711d67bcd60fca157e5eca1" + } + }, + { + "text": "Took him for 472 and 411. Advised to sit in the front of the class because he does speak softly. He's a nice guy. Tests are pretty easy. To study for 411 skim the homework's and look at the notes. For 472 skim the projects and look at the notes, maybe write an equation sheet because its open notes.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5eca2" + } + }, + { + "text": "He has a thick accent but it's comprehensible if you pay attention. His exams are straight forward if you understand the hw problems. He is one of the nicest professors around, and is willing to help anytime. The only issue is that he spent too much time on the easy chapters and rushed towards the end. However, the course itself isn't hard at all.", + "pos": 0.2, + "neu": 0.734, + "neg": 0.066, + "_id": { + "$oid": "6711d67bcd60fca157e5eca3" + } + }, + { + "text": "Best prof ever taken", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5eca4" + } + }, + { + "text": "I didn't learn much. I just read the notes. He's not that clear. And his class is early in the morning making it hard to stay awake. Exams were three questions and one of them was always very tough.", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d67bcd60fca157e5eca5" + } + }, + { + "text": "The man. Be cool with him and he will be cool too. Good luck trying to figure out sh*t in the class by yourself though.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5eca6" + } + }, + { + "text": "Very unfair grading system. Grades out of 25 for each exam, and basically adds up your exams grades to equal your final grade. 85-100 = A; 70-84 = B; etc. Little to no curve. All over the place, doesn't follow the textbook. Projects are unclear. Exams are tricky.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d67bcd60fca157e5eca7" + } + }, + { + "text": "He is such a nice guy, always smiling. If you pay attention in class you won't even need the book. He's test are hard so you better study.", + "pos": 0.258, + "neu": 0.661, + "neg": 0.081, + "_id": { + "$oid": "6711d67bcd60fca157e5eca8" + } + }, + { + "text": "You don't need to really be in class just read the book and do different kinds of problems. Do all the hw. Everything is grade equally. 25%hw, 25%test 1, 25% test2, 25% final. The only thing I didn't like was that he doesn't go over all the necessary chapters", + "pos": 0.0, + "neu": 0.907, + "neg": 0.093, + "_id": { + "$oid": "6711d67bcd60fca157e5eca9" + } + }, + { + "text": "GREAT PROFESSOR. EASY GRADER.", + "pos": 0.778, + "neu": 0.222, + "neg": 0.0, + "_id": { + "$oid": "6711d67bcd60fca157e5ecaa" + } + }, + { + "text": "Nice guy, but don't trusting him. Gotta study for his tests or you could lower your grade considerably in any one of the exams. You could do excellent on the HW and still get a B... (as I did..)", + "pos": 0.146, + "neu": 0.735, + "neg": 0.119, + "_id": { + "$oid": "6711d67bcd60fca157e5ecab" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67ccd60fca157e5ecad" + }, + "professor_name": "Jay Edelman", + "rating": 2.5, + "department": "Biology department", + "comments": [ + { + "text": "WATCH & TAKE NOTES ON LECTURE VIDS ON YT! Honestly a rlly do-able class if you study and understand his slides. The review questions are not helpful at all. He claims he doesn't curve, but he curves the overall grade a bit (don't rely on the curve to pass). 2 midterms (125 & 150 / 1000 points), final (225/1000 points).", + "pos": 0.037, + "neu": 0.936, + "neg": 0.027, + "_id": { + "$oid": "6711d67ccd60fca157e5ecae" + } + }, + { + "text": "Edelman's lectures are boring and confusing, he tends to ramble when trying to explain topics or answer questions. Exams have highly specific questions that can feel unfair at times. Lab/Lecture have so many combined assignments that it should be considered two different classes. He does curve, so there's that.", + "pos": 0.0, + "neu": 0.863, + "neg": 0.137, + "_id": { + "$oid": "6711d67ccd60fca157e5ecaf" + } + }, + { + "text": "This is a tough class and Edelman tries to make it easier, but usually doesn't succeed. Tests/quizzes are super specific and difficult, even though they're open-book. Final paper is tough to write since there isn't a lot of research published yet. He will work with you, but you have to put in the work too. Probably the hardest class I took", + "pos": 0.101, + "neu": 0.765, + "neg": 0.135, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb0" + } + }, + { + "text": "Exams and quizzes are difficult, they wouldn't be that bad if he actually gave us time to complete them. His quizzes and exams made me develop test anxiety for this first time in my life. He gave us 20 minutes to answer 20 questions including math questions to solve. Class is too Stressful", + "pos": 0.077, + "neu": 0.798, + "neg": 0.125, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb1" + } + }, + { + "text": "Multiple choice exams, lecture heavy. Curves at the end of the semester. Usually gives vague answers in lecture. My advice? Focus on lecture recording, not pre-recorded lecture on Youtube, it has mistakes. Take smart notes, not lots of notes! Review material minimum 2 weeks before an exam. Practice tests rarely helpful. Good luck.", + "pos": 0.044, + "neu": 0.769, + "neg": 0.187, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb2" + } + }, + { + "text": "Edelman was an okay professor, however, class should not have been mandatory as it was not really helpful for his exams. Stick to studying what is on the slides but do not use it as your only resource. My plan was watching the lecture video before class, attend lectures and then study based off the new information. Watch for wording on test!", + "pos": 0.023, + "neu": 0.927, + "neg": 0.05, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb3" + } + }, + { + "text": "If you see him for Bio 207, TAKE HIM! I failed Exam 1/2 very badly like 20-30% badly. Did super well in lab and scored 20 pts above average on the Final Exam. Left the class with a B-, I absolutely thought I was gonna fail but he told me not to drop and I am glad he told me not too! Just for ref I had 674 points, around 590 pts is a C!! TAKE HIM", + "pos": 0.148, + "neu": 0.756, + "neg": 0.096, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb4" + } + }, + { + "text": "Professor Edelman is a great professor. I received a B in the course due to the quizzes (which account for 12% of your grade) and also because of the midterm (25% of your grade) (which I scored in the average). To do well in this course you MUST study the YouTube videos (which are the lectures) because that will be ON your midterm and final exams.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb5" + } + }, + { + "text": "There are quizzes in every class. Make sure to be prepared. Lectures are very boring and unorganized. The questions on the exams are very tricky. The lectures are very unorganized.", + "pos": 0.121, + "neu": 0.75, + "neg": 0.129, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb6" + } + }, + { + "text": "I think he's a great professor overall. He's a bit disorganized but besides that he's a solid professor. He is not as bad as people make it seem. I actually learned a lot taking this class and I highly recommend him. Your grade is not solely based on just exams, you can gain credit from other things presentations, lab paper, participation etc.", + "pos": 0.26, + "neu": 0.719, + "neg": 0.021, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb7" + } + }, + { + "text": "I gotta say, i took this class because it was mandatory for a biology major and he was the only one teaching it. What ever you do, listen to the reviews and avoid this guy's class if you can. The lab work alone is like taking another full 3crd. course. He has 3 presentations, 2 lab reports, multiple lab quizzes, and long/confusing exams.", + "pos": 0.057, + "neu": 0.881, + "neg": 0.063, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb8" + } + }, + { + "text": "imagine getting 82 questions which included some math to do in 1 hour? That is 0.73 sec to a single question. I almost had a panic attack halfway through the questions. If you value your mental health, do not take this class!!!!!! During the pandemic, this class was my worst experience! THE ABSOLUTE WORST! IT DOESNT MAKE SENSE TO STUDY JUST GUESS", + "pos": 0.032, + "neu": 0.754, + "neg": 0.215, + "_id": { + "$oid": "6711d67ccd60fca157e5ecb9" + } + }, + { + "text": "Worst professor and class. Gives a ton of lab/ wrkshp quizzes, tests, lab reports. During quarantine had us do lab reports that required in-class work. Gave 82 ques exam w 1 hr and said we wont finish in time. Not lenient at all. Has no regards for emotions. Avoid. I feel bad for the TAs who cant do anything about it.", + "pos": 0.0, + "neu": 0.802, + "neg": 0.198, + "_id": { + "$oid": "6711d67ccd60fca157e5ecba" + } + }, + { + "text": "The class is too much. There are lab quizzes, workshop quizzes, i-clicker quizzes. It is overwhelming.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5ecbb" + } + }, + { + "text": "the most confusing lectures. super dense information that is scattered and unorganized, i feel MORE confused after lectures. his grading is unclear. seems like a nice guy though, jim gaffigan vibes.", + "pos": 0.225, + "neu": 0.595, + "neg": 0.179, + "_id": { + "$oid": "6711d67ccd60fca157e5ecbc" + } + }, + { + "text": "This course is not supposed to be hard! He made it very unorganized and I never knew how we jumped from one topic to another. Even if you manage to understand lecture material, the exams are HARD and you regret studying! He is a chill guy and says not to worry about anything because he ends up curving a lot. Most of us panicked the entire semester!", + "pos": 0.032, + "neu": 0.828, + "neg": 0.14, + "_id": { + "$oid": "6711d67ccd60fca157e5ecbd" + } + }, + { + "text": "Do yourself a favor and run the other way. Absolutely by far the worst professor at CCNY. He does not use test bank and goes out of his way to trick you on tests. If you take him you will be sorry.", + "pos": 0.057, + "neu": 0.803, + "neg": 0.14, + "_id": { + "$oid": "6711d67ccd60fca157e5ecbe" + } + }, + { + "text": "He has a point system in which all your grades are tallied to 1000. Its really frustrating to work so hard all semester and then miss the grading cutoff by a few points. You can do your best on clicker questions, lab quizzes, papers, but his midterm tests bring your grade down bc the questions are very specific and difficult. Responds to emails tho", + "pos": 0.037, + "neu": 0.842, + "neg": 0.121, + "_id": { + "$oid": "6711d67ccd60fca157e5ecbf" + } + }, + { + "text": "He is a nice professor that thinks he is making the life of his students easier but he is not. The format of class is too much. His has lectures, labs, and workshops which is fine. However,there is lab quizzes, workshop quizzes that needed to be taken twice, this lab practicals, papers , presentations and two midterms and a final. DONT DO IT !!!!!", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc0" + } + }, + { + "text": "He is very confusing and the class is a mess. The class lectures did not correlate to our labs and we were all so confused in every lab because we had not learned the material necessary. He gave some last minute information (posting a lab at 3 am that we had to read by 2pm). He also posts weekly quizzes that must be taken twice. He's nice though.", + "pos": 0.038, + "neu": 0.859, + "neg": 0.103, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67ccd60fca157e5ecc3" + }, + "professor_name": "Patrick Okpo", + "rating": 4.4, + "department": "Mathematics department", + "comments": [ + { + "text": "He is a very good professor. I had him as a Math190 professor. Honestly, he explains every topic very well. If you have any questions or concerns, he is always more than happy to help you. Go to his office hours and do your personal problems, then you will be fine. Overall, lecture is very flexible but chellenging.", + "pos": 0.202, + "neu": 0.769, + "neg": 0.028, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc4" + } + }, + { + "text": "Not sure if this is the same professor but I had him at BCC for ochem and he was amazing! He was our lab prof but the way he made sure that we knew the info and always tested us on our knowledge. One of the best professors i've had throughout my degree. He cares about his students and wants to do well. Practice your questions and take him!", + "pos": 0.247, + "neu": 0.735, + "neg": 0.017, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc5" + } + }, + { + "text": "One of the best professors out there! Cares about the well being of his students. Slows down if he has to, makes exceptions. Stays behind after class to help. Genuinely a good hearted professor who wants to see his students succeed. Highly recommend, best math prof. You could choose.", + "pos": 0.385, + "neu": 0.615, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc6" + } + }, + { + "text": "Took his class as part of the cipass summer bridge program he has a heavy accent which made it hard to understand but overall he slows down if he goes too fast and he allows everyone to ask questions overall a positive experience just a lot of homework and quizzes almost every day but I think that was because we covered 1 semester in 4 weeks", + "pos": 0.07, + "neu": 0.913, + "neg": 0.017, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc7" + } + }, + { + "text": "I've seen students saying this teacher is bad but that is not true at all. Classes can be hard and it may be a little hard to understand because of an accent BUT he's honestly a good teacher all around. He takes his time to make sure everyone gets it and pushes you to ask questions no matter what. Sometimes it can be a bit rushed but thats college.", + "pos": 0.133, + "neu": 0.754, + "neg": 0.113, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc8" + } + }, + { + "text": "gives a lot of quizzes", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5ecc9" + } + }, + { + "text": "one of the best professors in CCNY.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5ecca" + } + }, + { + "text": "Never slows down on lessons. He gives homework a lot out of nowhere like it is due the next day. He does not know how to teach. That's why I dropped this class. Also, quizzes are every week. If you want to pass, don't take him.", + "pos": 0.027, + "neu": 0.928, + "neg": 0.045, + "_id": { + "$oid": "6711d67ccd60fca157e5eccb" + } + }, + { + "text": "I actually started to understand math in this class; he is a good professor and takes his time with lessons. He listens to his students, slows down, and answers questions. There is a weekly quiz, but if you pay attention to the material, it's not too bad. Homework is all online, and he posts notes. Best Math prof for Math 190!", + "pos": 0.168, + "neu": 0.809, + "neg": 0.023, + "_id": { + "$oid": "6711d67ccd60fca157e5eccc" + } + }, + { + "text": "I just wish he would have gave the curve.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5eccd" + } + }, + { + "text": "I just thought this professor wasn't good because half the class was failing and he didn't even gave any curve to anyone. Don't this professor.", + "pos": 0.0, + "neu": 0.801, + "neg": 0.199, + "_id": { + "$oid": "6711d67ccd60fca157e5ecce" + } + }, + { + "text": "very understanding he really encourages students to ask questions during class and as someone who sucks at math he really helped overall i would def take him again", + "pos": 0.101, + "neu": 0.82, + "neg": 0.079, + "_id": { + "$oid": "6711d67ccd60fca157e5eccf" + } + }, + { + "text": "Always makes lectures enjoyable, wants students to ask questions and asks multiple times to make sure everyone is on the same page. Does homework in class to make sure everyone has enough practice. Just attend class and you'll pass.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd0" + } + }, + { + "text": "As someone whose weakness is math, Professor Okpo is an amazing teacher. He does have an accent but is easy to understand. Goes step by step and is always open to questions. Attendance does matter and he gives quizzes and exams on a regular basis. Not lying when I say he's the best math teacher I've ever had. I would take him again in a heartbeat.", + "pos": 0.214, + "neu": 0.762, + "neg": 0.024, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd1" + } + }, + { + "text": "I had professor Okpo for MATH195, he was the best! We took 3 exams and the final, homework was given but not mandatory. To pass, you must go to class, do the homework and go to office hours! I spent everyday before his class in his office, he was extremely helpful, but also goes over the work in class really fast.", + "pos": 0.11, + "neu": 0.87, + "neg": 0.02, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd2" + } + }, + { + "text": "He will review the lecture no matter how many times he is asked. Very kind and always states that he is available outside of the classroom. Great professor overall.", + "pos": 0.224, + "neu": 0.746, + "neg": 0.031, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd3" + } + }, + { + "text": "TAKE HIS CLASS!I'm not a math person but he definitely made math fun for everyone. Don't understand something? He will take 10 minutes to go over what ur struggling w. He was personable with everyone and he will not make a fool out of you if you get a question wrong. The only thing that I recommend is to study on ur own time for the weekly quizzes!", + "pos": 0.176, + "neu": 0.731, + "neg": 0.093, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd4" + } + }, + { + "text": "He really helps students to understand concepts and will take the time to explain. He checks in with the students throughout each class so he if they understand. At times he goes fast but encourages students to ask questions. Weekly quizzes but the Webassign assignments are useful for the quizzes. 3 exams and he drops the lowest quiz grade.", + "pos": 0.142, + "neu": 0.808, + "neg": 0.05, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd5" + } + }, + { + "text": "As someone who has always struggled with math I can genuinely say he's the first person to ever care and properly teach me! He cares so much about his students and goes above and beyond to make sure you understand 10000000xs would take this class again!", + "pos": 0.17, + "neu": 0.785, + "neg": 0.045, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd6" + } + }, + { + "text": "The whole thing was based on three exams, and while half the class was borderline failing, he wouldn't give any extra credit or curve. He does try his best to explain, but he just does it too fast and makes it way more complicated than it actually is.", + "pos": 0.085, + "neu": 0.873, + "neg": 0.042, + "_id": { + "$oid": "6711d67ccd60fca157e5ecd7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67dcd60fca157e5ecd9" + }, + "professor_name": "Damion Scott", + "rating": 2.9, + "department": "Philosophy department", + "comments": [ + { + "text": "Just don't do it. The guy just blacked on a student and kicked him out of class for no reason. I hope that kid is ok.", + "pos": 0.1, + "neu": 0.825, + "neg": 0.076, + "_id": { + "$oid": "6711d67dcd60fca157e5ecda" + } + }, + { + "text": "I don't recommend him at all. If you can take it with another professor, do it. He is so condescending and doesn't care if you don't understand. I took his class online and when a student asked him a question about the first paper he kicked him out of the zoom call. Don't take this class!!!", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d67dcd60fca157e5ecdb" + } + }, + { + "text": "I BEG YOU TO NOT TAKE HIS CLASS! This was my first day in his class and HE WAS VERY RUDE AND SARCASTIC. He talked a lot of nonsense and raised his voice at us when many of us didn't understand his questions. He has no patience and was just doing way too much for a \"professor\". So unprofessional. I HIGHLY recommend that you choose another professor.", + "pos": 0.043, + "neu": 0.741, + "neg": 0.217, + "_id": { + "$oid": "6711d67dcd60fca157e5ecdc" + } + }, + { + "text": "His lectures are super disorganized, so you don't learn about anything at all. You pretty much have to do the readings on your own. There's 2 papers, each 8-12 pages long, and you're completely on your own for that. There's also a final exam. The only redeeming factor is that he's somewhat understanding, so he'll give extensions or extra credit.", + "pos": 0.143, + "neu": 0.825, + "neg": 0.032, + "_id": { + "$oid": "6711d67dcd60fca157e5ecdd" + } + }, + { + "text": "Professor Scott is such a fun professor! You can see he enjoys his job and he made philosophy interesting and fun. Make sure to do all the readings because participation is really important in his class, he wants all his students to discuss and pass his class. He is nice, so if you have any problem, do not hesitate to talk to him.", + "pos": 0.279, + "neu": 0.687, + "neg": 0.034, + "_id": { + "$oid": "6711d67dcd60fca157e5ecde" + } + }, + { + "text": "He's actually not a tough grader if you read and is very flexible with the work assigned. He barely gives any work that he counts, most work are just to read and stay updated with the texts he gives to read. You need to work extra on your self if you have a hard time in his easy class.", + "pos": 0.103, + "neu": 0.875, + "neg": 0.022, + "_id": { + "$oid": "6711d67dcd60fca157e5ecdf" + } + }, + { + "text": "STAY AWAY!! This professor is the worse. He sends you to read a lot of lectures and papers. I had personal problems and all my professors help me out but he didn't. He said I have to stop working and focus on school. How I'm supposed to survive then? DO NOT TAKE THIS CLASS WITH HIM!!.", + "pos": 0.03, + "neu": 0.843, + "neg": 0.127, + "_id": { + "$oid": "6711d67dcd60fca157e5ece0" + } + }, + { + "text": "tough grader and did not explain material well at all. This class is difficult and he does not provide feedback on papers. He gets upset and gives students an attitude if they ask any questions. Avoid this class at all costs your GPA will suffer. Worst semester because of this class and professor. The class is unorganized and has no structure.", + "pos": 0.0, + "neu": 0.722, + "neg": 0.278, + "_id": { + "$oid": "6711d67dcd60fca157e5ece1" + } + }, + { + "text": "Seeing all the bad reviews is shocking because Prof. Scott's class was very engaging and fun! We learned a lot and is a great intro to Phil course. He provides great real world examples that relate to the text we read in class that makes class fun and have interesting discussions. He truly cares about his students and is extremely down to earth.", + "pos": 0.31, + "neu": 0.617, + "neg": 0.072, + "_id": { + "$oid": "6711d67dcd60fca157e5ece2" + } + }, + { + "text": "Easy to reach out for school email and zoom, you can make appointment for office hours talk about in class materials.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d67dcd60fca157e5ece3" + } + }, + { + "text": "Damion Scott's class needs to be focus on how you focus on the material he gave to the lecture. Although as a adjunct professor, he treats this lecture every scrupulously, prepared a lot for giving answers when I was asking him. And please pay attention to readings and do response then you can get a better grade.", + "pos": 0.151, + "neu": 0.827, + "neg": 0.022, + "_id": { + "$oid": "6711d67dcd60fca157e5ece4" + } + }, + { + "text": "Philosophy is a logical thinking course, and although there is a lot to read, it is worth it. As long as you make sure you attend class, participate actively in class discussions, and spend A few minutes after class reading the book and the material in class, you can easily get an A. Damion's classes are not boring at all, and the rich personal exp", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d67dcd60fca157e5ece5" + } + }, + { + "text": "A nightmare. Wasn't specific at all for what he wanted in any of the three papers, and provided no guidelines. When you ask questions he makes students feel belittled for not knowing the answer and is kinda rude as well. Some people shouldn't teach and he's one of them.", + "pos": 0.034, + "neu": 0.822, + "neg": 0.144, + "_id": { + "$oid": "6711d67dcd60fca157e5ece6" + } + }, + { + "text": "Im shook with how many bad ratings there are when in reality Prof. Scott is very passionate, caring, and fun! Hes very modern compared to many philosophy profs that are boring. Of course if your major isnt philosophy like myself you may be a tiny bit confused but prof will clear up your confusion in the most simplest form. Hes an easy grader.", + "pos": 0.184, + "neu": 0.671, + "neg": 0.145, + "_id": { + "$oid": "6711d67dcd60fca157e5ece7" + } + }, + { + "text": "Great professor, talks a lot but it is a philosophy class. Hes very passionate about his class in a great way and loves conversing with his students. Not too many assignments, 3 papers 2 exams. If there are any bad reviews about him dont believe them, they werent willing to do the few assignments he gives. Very caring.", + "pos": 0.289, + "neu": 0.652, + "neg": 0.06, + "_id": { + "$oid": "6711d67dcd60fca157e5ece8" + } + }, + { + "text": "Great professor who cares about the content, engages with student arguments, and who is willing to tailor material to student interests. Most class decisions were made in a democratic or consensus-based way according to the students' preferences.", + "pos": 0.242, + "neu": 0.699, + "neg": 0.059, + "_id": { + "$oid": "6711d67dcd60fca157e5ece9" + } + }, + { + "text": "At first the class seemed like it was going to be enjoyable but by the third class it was just horrible. He doesnt stay on topic and talks about things unrelated to philosophy then gets an attitude when students ask for clarifying questions. When it comes to grading papers he just leaves one comment and most of the time its a negative one. Avoid!", + "pos": 0.049, + "neu": 0.781, + "neg": 0.171, + "_id": { + "$oid": "6711d67dcd60fca157e5ecea" + } + }, + { + "text": "Professor Scott's Afrofuturism was transformative. Those mentioning disorganization must not know that philosophy requires thinking outside of the box which sometimes goes off track. If you are not adaptable, this is your chance to learn under someone who is willing to guide you. Don't worry, he will not test you on things you have not discussed!", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d67dcd60fca157e5eceb" + } + }, + { + "text": "Does not stay on the topics. Gets frustrated when asked a question. Not great at professing information. He is good at explaining the meaning of words. Needs an attitude adjustment.", + "pos": 0.079, + "neu": 0.738, + "neg": 0.183, + "_id": { + "$oid": "6711d67dcd60fca157e5ecec" + } + }, + { + "text": "really nice guy and you can tell he cares about the subject matter/ his students, but he's just really unorganized. He can get lost on a tangent during a lecture and go down a rabbit hole about stuff not important to the course. Constant reworking of the syllabus because we would wind up behind. be prepared to teach yourself the material to pass.", + "pos": 0.107, + "neu": 0.823, + "neg": 0.07, + "_id": { + "$oid": "6711d67dcd60fca157e5eced" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67dcd60fca157e5ecef" + }, + "professor_name": "Alyssa Yankwitt", + "rating": 3.4, + "department": "English department", + "comments": [ + { + "text": "Was strict about being on time but was late herself multiple times. Would have attitude with students when asked questions due to the instructions being unclear. Even with personal stuff that happened to her during the first half of the semester, nothing was graded until the last week of classes. This course felt like we had to learn on our own.", + "pos": 0.05, + "neu": 0.911, + "neg": 0.039, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf0" + } + }, + { + "text": "She is the only person allowed to be late, or doesn't show up . When she is in class she wastes time making jokes, or discussing something completely unrelated to our learning. Speaks to you like a child+nasty attitude. Grading is unfair considering she doesn't teach you anything at all. This class was a headache and a complete waste of time. 0/10", + "pos": 0.066, + "neu": 0.848, + "neg": 0.086, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf1" + } + }, + { + "text": "unfair grader and super irresponsible", + "pos": 0.328, + "neu": 0.168, + "neg": 0.504, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf2" + } + }, + { + "text": "DO NOT TAKE. She is a certified yapper. Doesn't grade anything and will take forever to say one sentence. Doesn't respect your time and canceled class 8 times last minute when we were already on our way, but will continue scolding you if you're late as she walks in 10 minutes late. Hid the grades breakdown, and dragging on every response you make.", + "pos": 0.018, + "neu": 0.93, + "neg": 0.052, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf3" + } + }, + { + "text": "She grades absolutely nothing bc she spends more time yapping than doing her job. Screamed at us to be on time but was perpetually 10+ mins late or didn't show up. Couldn't give clear instructions bc she didn't even know what she wanted. Had the same boring lesson on repeat or talked about how well she knows Spanish - she doesn't. Save your sanity.", + "pos": 0.037, + "neu": 0.814, + "neg": 0.149, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf4" + } + }, + { + "text": "She wastes class time by overexplaining things that you already know, when you ask anything she starts with \"wellllll\" and then takes like 5 minutes to answer and you will still be confused. She is such a slow talker (if you end up taking her, once you notice it it will make the classes more painful.) She will not grade a thing!", + "pos": 0.037, + "neu": 0.877, + "neg": 0.086, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf5" + } + }, + { + "text": "Worst professor ever! Even after having a seizure in class, she was strict with attendance even tho she often missed class and arrived late. She made us register for Zoom meetings at times, causing difficulties, and marked us absent when the link didn't work. She wasted class on irrelevant topics and put our grades at the end, no time to \"improve\".", + "pos": 0.077, + "neu": 0.769, + "neg": 0.154, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf6" + } + }, + { + "text": "She's alright, to be honest. She's not horrible but I would not take her again. She always said being on time was important but there were times when she came over 10 minutes late to class.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf7" + } + }, + { + "text": "holy cow. she is loud and obnoxious. I get that everything is about respect and being on time or whatever. But she repeats it every class and it also seem like she doesn't try to get the student's name right. Her loud voice is actually annoying and she gets really weird if no one replies to her", + "pos": 0.078, + "neu": 0.755, + "neg": 0.166, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf8" + } + }, + { + "text": "As someone who had this professor before, I honestly have to deduct points from her for the awkward grading criteria she gave us. While she is fun in class, Professor Yankwitt sometimes gets sidetracked from lecture/discussion. If you want to pass, participate in discussion boards and do your work. Do your best is the best advice I can give.", + "pos": 0.227, + "neu": 0.751, + "neg": 0.023, + "_id": { + "$oid": "6711d67dcd60fca157e5ecf9" + } + }, + { + "text": "Honestly, I didn't like her. She kept saying she's mean but fair which is true. She's a tough grader and the papers were pretty boring. Lost motivation to continue writing these papers. She also gets weird if the class does not respond to her after she says something. She does care about the students but she's just not my cup of tea.", + "pos": 0.246, + "neu": 0.617, + "neg": 0.136, + "_id": { + "$oid": "6711d67dcd60fca157e5ecfa" + } + }, + { + "text": "I would never ever recommend this Professor bc first she might seem nice but later on you will understand what she is. Damn! Please dont take her class!", + "pos": 0.14, + "neu": 0.695, + "neg": 0.165, + "_id": { + "$oid": "6711d67dcd60fca157e5ecfb" + } + }, + { + "text": "At first she might talk nicely but later on you will understand what she is. I would never take this class again. Many assignments you are going to be stressed out", + "pos": 0.057, + "neu": 0.852, + "neg": 0.091, + "_id": { + "$oid": "6711d67dcd60fca157e5ecfc" + } + }, + { + "text": "A lot of reading!!! This class has 2 sections and Prof. Yankwitts taught the content section. She is very caring and understanding especially because of COVID 19. She tried to make online class more doable for everyone by coming in with tiaras. She goes through everything and gave extra credit opportunities. I would def recommend her to anyone", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d67dcd60fca157e5ecfd" + } + }, + { + "text": "She is a great professor who cares about her students. She is understanding of situations as long as you communicate with her. She regularly gives assignments, but they are easy to do. Assignments are heavily weighted, so please do them. Do participate and read the materials. Very endearing and tries to make the lectures fun.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d67dcd60fca157e5ecfe" + } + }, + { + "text": "Alyssa is really funny and likes to say a joke at the beginning of each class. Alyssa is a very tough trader so much do all your assignments. I loved being in her class and I really learned a lot about how my writing process needed to be improved a bit more.", + "pos": 0.244, + "neu": 0.727, + "neg": 0.028, + "_id": { + "$oid": "6711d67dcd60fca157e5ecff" + } + }, + { + "text": "Nice and funny professor, but a tough grader, especially on the papers. If I didnt do all her extra credit, I probably wouldnt have gotten an A-. Do all her assignments and you should pass. She can be strict when she has to be but shes also very bubbly and funny.", + "pos": 0.194, + "neu": 0.776, + "neg": 0.03, + "_id": { + "$oid": "6711d67dcd60fca157e5ed00" + } + }, + { + "text": "I learned a lot and enjoyed the content, but she is a tough grader. Sometimes it really difficult to understand what she required in an assignment. Even if you go to her office hours, first of all, you need to wait in the line for at least an hour, then she will just keep repeating one question over and over again.", + "pos": 0.033, + "neu": 0.884, + "neg": 0.083, + "_id": { + "$oid": "6711d67dcd60fca157e5ed01" + } + }, + { + "text": "My favorite teacher at CCNY thus far. She gives great feedback and it's obvious that she wants the best for all her students. She's accessible outside of class, and depending on how much your class participates, she gives extra credit. Attending lecture is mandatory! Pop quizzes! But she's great and understanding as long as you communicate.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d67dcd60fca157e5ed02" + } + }, + { + "text": "Maybe it was just my specific scenario but like the last weeks were brutal because all the assignments she had given out were all due the same day and MIND you were all given out the same day. Still a good teacher but not the best experience. She doesn't like hearing whispering so be silent once class starts. Participate or else she gets weird.", + "pos": 0.089, + "neu": 0.725, + "neg": 0.186, + "_id": { + "$oid": "6711d67dcd60fca157e5ed03" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67ecd60fca157e5ed05" + }, + "professor_name": "Gilberto De la Rosa", + "rating": 3.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Amazing professor, gives 2 take home exams that are very similar to the hw and examples he went over in class so pay attention and you'll be fine. Exams are long but you are able to use your notes and textbook for help which is nice. The project that is very hard but he graded very nicely and does curve grades.", + "pos": 0.211, + "neu": 0.742, + "neg": 0.048, + "_id": { + "$oid": "6711d67ecd60fca157e5ed06" + } + }, + { + "text": "Nice dude, cares about the students. The class is tough but it's better than taking it with Kim. Midterm and Final are not super difficult. Gave us plenty of time to figure out the answers. Project is easy if you start early. Make sure to ask questions. Very doable!", + "pos": 0.274, + "neu": 0.641, + "neg": 0.085, + "_id": { + "$oid": "6711d67ecd60fca157e5ed07" + } + }, + { + "text": "Professor likes to ask complicated questions and goes on derivatives of a circuit. For example, he gives you the concept & circuit but then gives you worst-case scenarios. This is over cumbersome because I and other students felt he focus on the inner stuff than the grand stuff of Electronics. I had to work extremely hard for the grade. Hard Final!", + "pos": 0.093, + "neu": 0.853, + "neg": 0.054, + "_id": { + "$oid": "6711d67ecd60fca157e5ed08" + } + }, + { + "text": "Exams are fair and cover what has been mentioned in lectures. Careful though, even a comment made in passing on a certain design may be on the exam. A little circuit he draws in 1 minute may be on the exam. Make sure to take ALL notes and listen during lectures. And ask questions. Otherwise, he's a cool guy and gives credit where he can.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed09" + } + }, + { + "text": "This class is probably the hardest I've taken. If you want to do RF engineering, this is the class. HWs are tough, exams are tough, and the project is tough but you learn a lot. His lectures are good and he answers questions and make sure people are following. He doesnt curve at all so make sure you have a good GPA or a job lined up. Study hard!", + "pos": 0.191, + "neu": 0.742, + "neg": 0.066, + "_id": { + "$oid": "6711d67ecd60fca157e5ed0a" + } + }, + { + "text": "Avoid him if you can. 40% people dropped his class before taking final. His lecture was very unclear and difficult. It is easier to understand the content if you read the book by yourself. Do not trust those guys below. You will regret. Take him only if you like challenge, otherwise you are wasting your time to repeat this class.", + "pos": 0.09, + "neu": 0.698, + "neg": 0.212, + "_id": { + "$oid": "6711d67ecd60fca157e5ed0b" + } + }, + { + "text": "Great professor and very knowledgeable of the subject. He's worked in the field for a very long time. Pay attention to the problems he works on the board, they are not on the powerpoint!", + "pos": 0.103, + "neu": 0.78, + "neg": 0.117, + "_id": { + "$oid": "6711d67ecd60fca157e5ed0c" + } + }, + { + "text": "Nice guy, but the syllabus for this class is DENSE. Subjects don't get the time they should, and you are left to learn for yourself. His exams are not easy! They have 3 parts - concepts, HW question, custom question. The custom question is very tricky and often has many parts. He writes/draws microscopically.", + "pos": 0.032, + "neu": 0.87, + "neg": 0.098, + "_id": { + "$oid": "6711d67ecd60fca157e5ed0d" + } + }, + { + "text": "yes, if you don't know electronics 1&2 just drop the class. At the beginning there were 40+ students, then at the end just survive 16(he still failed people among 16)He is hard but is very friendly though, he's not an ogre. EXAMS ARE SO HARD and he does not curve", + "pos": 0.109, + "neu": 0.727, + "neg": 0.164, + "_id": { + "$oid": "6711d67ecd60fca157e5ed0e" + } + }, + { + "text": "He explains and teaches well, but this class is REALLY HARD. He knows the stuff, so he knows what he's teaching. Too much material to cover. He doesnt hesitate to give u F if you deserve it. He grades very fairly. If you dont have a good electronic background (EE241 - EE342) u'll suffer. It's not an easy A class", + "pos": 0.052, + "neu": 0.74, + "neg": 0.208, + "_id": { + "$oid": "6711d67ecd60fca157e5ed0f" + } + }, + { + "text": "Great professor who knows everything he lectures on like the back of his hand. Only problem is the college will not let him have office hours so plan on only communicating by email. He does answer emails regularly, though.", + "pos": 0.206, + "neu": 0.737, + "neg": 0.057, + "_id": { + "$oid": "6711d67ecd60fca157e5ed10" + } + }, + { + "text": "Class was interesting. Could have been a little more organized. More hands-on course content would be great...", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed11" + } + }, + { + "text": "The most important thing to him is the quantity not the quality", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed12" + } + }, + { + "text": "I do not recommend the course. The material is good, the professor knows the subject very well, but the grading is very bad, some people copy the HW and get advantage over those who are honest.The professor lied about the final exam, he said it would cover everything, but instead he focused on a very small part of the course.", + "pos": 0.131, + "neu": 0.729, + "neg": 0.14, + "_id": { + "$oid": "6711d67ecd60fca157e5ed13" + } + }, + { + "text": "the only thing is that the professor needs to assign his own homework, not from the textbook. this will help students better understand the material. homework should not carry any percentage on the grade because students can easily copy from each other. and spending a few minutes explaining the homework will not harm anyone. this is just my opinion", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed14" + } + }, + { + "text": "Consolidation of the syllabus is a must the next time the same course is taken.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed15" + } + }, + { + "text": "Excellent professor. His exams are a little hard but I you take good notes and do the homework you will do fine. I will definitely take him again", + "pos": 0.332, + "neu": 0.639, + "neg": 0.029, + "_id": { + "$oid": "6711d67ecd60fca157e5ed16" + } + }, + { + "text": "good profeesor but need to explain more clearly, if you plan to get a good grade in this class, you need to understand the material very well, also hws are important too.", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed17" + } + }, + { + "text": "His homework and quizzes are simple, but exams are on another level. Big hints are given during review. He knows his material, but has difficulty expaining at times. Project is really important and he is willing to help, but hard because he doesn't have office hours.", + "pos": 0.117, + "neu": 0.794, + "neg": 0.089, + "_id": { + "$oid": "6711d67ecd60fca157e5ed18" + } + }, + { + "text": "He seems hard at first, but if you prove yourself throughout the course he'll give you a good grade. Just prove that you actually learnt the material and he might even forgive that 50 u got on the first exam! By the way, the project is very important (best if u form a team and learn it inside and out).", + "pos": 0.218, + "neu": 0.765, + "neg": 0.017, + "_id": { + "$oid": "6711d67ecd60fca157e5ed19" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67ecd60fca157e5ed1b" + }, + "professor_name": "Jie Wei", + "rating": 3.5, + "department": "Computer Science department", + "comments": [ + { + "text": "He is great but be ready for hard exams and u can easily use ur phone or chat gpt in his exam since he doesnt walk on the exam hall try to attend his lectures and his group projects are easy but he grades tough so attend his lecture", + "pos": 0.216, + "neu": 0.728, + "neg": 0.057, + "_id": { + "$oid": "6711d67ecd60fca157e5ed1c" + } + }, + { + "text": "This class can get confusing at times, so just make sure you're constantly revising the concepts he goes over. Attend lectures because he will let you know what will be on his exams. Lectures might be a little hard to understand sometimes, so recommend going to his office hours for clarification. Make sure to get started on the group project early!", + "pos": 0.125, + "neu": 0.831, + "neg": 0.045, + "_id": { + "$oid": "6711d67ecd60fca157e5ed1d" + } + }, + { + "text": "He's a good professor but if anyone cannot finish their exam on time, you will get in big trouble. He is strict about people finishing their exams on time. However, the lectures that he gives in the class demonstrate about the real world of Computer Engineers if they work in Silicon Valley as well as the environment and duties over there.", + "pos": 0.07, + "neu": 0.877, + "neg": 0.054, + "_id": { + "$oid": "6711d67ecd60fca157e5ed1e" + } + }, + { + "text": "He can get messy at times with the class notes but if you manage to get good notes, and start the project on time, this class is easy. Also, he basically tells you what will be on the exam so you can just focus on that. As a bonus, he is so funny as a result class was not boring at all.", + "pos": 0.257, + "neu": 0.72, + "neg": 0.023, + "_id": { + "$oid": "6711d67ecd60fca157e5ed1f" + } + }, + { + "text": "Not as bad as he seems. The exams are based on your understanding of the lectures and your knowledge of algorithms and solving coding problems. The algorithm questions are mostly based on your knowledge. My advice: be on time for lectures, take the best notes you can, don't rewatch lectures (time-consuming), and start early on the group project.", + "pos": 0.143, + "neu": 0.816, + "neg": 0.041, + "_id": { + "$oid": "6711d67ecd60fca157e5ed20" + } + }, + { + "text": "Prof Wei is a very knowledgeable guy. You will definitely learn from him; however, you need to put in the time to understand all the diagrams presented in the course. The group project can be absolutely brutal; however, it is still doable. Knowing someone in the class helps for that. My only complaint is that he can get very messy when writing.", + "pos": 0.074, + "neu": 0.795, + "neg": 0.131, + "_id": { + "$oid": "6711d67ecd60fca157e5ed21" + } + }, + { + "text": "truly a gem. He kept the class lively and laughin so i didnt lose focus. He knows which chat is directed at him so he respond asap. felt like learning from a twitch streamer lol. he's a good guy.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed22" + } + }, + { + "text": "Terrible accent, goes all over the place, terrible teaching. You know, just another usual CCNY Prof who teaches high level classes where you will be wasting your time and money.", + "pos": 0.0, + "neu": 0.752, + "neg": 0.248, + "_id": { + "$oid": "6711d67ecd60fca157e5ed23" + } + }, + { + "text": "Lectures vague, not clear and confusing. No solid structure. He uses \"Paint\". You will have to self study alot. Project work is heavy.", + "pos": 0.065, + "neu": 0.739, + "neg": 0.196, + "_id": { + "$oid": "6711d67ecd60fca157e5ed24" + } + }, + { + "text": "Professor Wei seems to know his stuff and is a very avid lecturer. However, his teaching seems to be all over the place and a bit redundant since he writes in ms paint. Beware, there is no material provided from what he covers in class so good luck. Make sure you do your best in trying to understand. You will need to self study a lot.", + "pos": 0.205, + "neu": 0.767, + "neg": 0.028, + "_id": { + "$oid": "6711d67ecd60fca157e5ed25" + } + }, + { + "text": "You gotta go in to class to get notes, but half the times, the notes will be all over the place so do try your best to understand. On exams there will be diagrams, algorithm and conceptual questions. Project is graded leniently and exams graded harshly. He also draws huge diagrams with paint using a mouse so good luck taking notes.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed26" + } + }, + { + "text": "Prof. Wei is a very intelligent person. He knows his stuff. English is not his first language. His presentation and lecture skills could be much improved. Talks fast You must go to lecture to understand the material, as his slides are a group of chunks of words. Exams are very difficult, but there is a curve. Final project is difficult but doable.", + "pos": 0.062, + "neu": 0.861, + "neg": 0.076, + "_id": { + "$oid": "6711d67ecd60fca157e5ed27" + } + }, + { + "text": "Notes he provides are hard to decipher. First quiz contained algorithm questions that were never taught in my algorithm class. Midterm contained diagram questions that he clearly did not teach fully. Assigns an overly complicated final group project that he does not prepare you for. But, I guess you have no choice but to take him for 322.", + "pos": 0.03, + "neu": 0.904, + "neg": 0.066, + "_id": { + "$oid": "6711d67ecd60fca157e5ed28" + } + }, + { + "text": "Very good lectures. You understand the material if you follow through.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed29" + } + }, + { + "text": "Very interesting course. Teaches the subject very well and makes the class fun. Going to class and taking notes will help you a lot for the quiz,midterm,and final. Find a good group (great programmers) and start it as early as you can. Lab quiz will be based on the handouts from your lab TA.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed2a" + } + }, + { + "text": "Great lecturer! His teaching style caters to all learning styles; definitely one of my favorites in the dept. Material was interesting and the class was enjoyable and entertaining at times. Hard exams but lectures are preparation enough. Definitely one of the better classes in the grad program.", + "pos": 0.335, + "neu": 0.645, + "neg": 0.02, + "_id": { + "$oid": "6711d67ecd60fca157e5ed2b" + } + }, + { + "text": "Absolutely loved the class. Very interesting class. Accent will take some time to get used to. But after that you will really enjoy his sense of humor. Loved the assigments, it was very helpful to understand the topics taught in class. Very very helpful and you get quick responses to your mails.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d67ecd60fca157e5ed2c" + } + }, + { + "text": "The project is killer. The exams are crazy. But his accent is the only thing to complain about. Other than that, pretty good professor.", + "pos": 0.235, + "neu": 0.547, + "neg": 0.219, + "_id": { + "$oid": "6711d67ecd60fca157e5ed2d" + } + }, + { + "text": "You can't avoid taking him. He's not exactly the best prof, he's ok. Be ready to take quick notes as he only write on one area of the board. He does expect a lot from the project, he curves the grade. The \"lab\" is useless, so don't even bother going.", + "pos": 0.116, + "neu": 0.778, + "neg": 0.107, + "_id": { + "$oid": "6711d67ecd60fca157e5ed2e" + } + }, + { + "text": "Try to avoid his class. Not a helpful at all.", + "pos": 0.0, + "neu": 0.638, + "neg": 0.362, + "_id": { + "$oid": "6711d67ecd60fca157e5ed2f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67fcd60fca157e5ed31" + }, + "professor_name": "Ihab Darwish", + "rating": 3.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Absolutely loved this course as well as his lectures. He made learning fun. It was practical oriented, so, in each class, we had to do something and in the final exam, there will be a group project. If you do the project well and come up with a new idea, then he will give you the highest grade.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed32" + } + }, + { + "text": "Great and caring professor with passion to teaching. He extend the work and very reasonable. Make sure to submit a clear reports! Hi mid-term is about the experiments and he will assign one to be tested on. Very responsive to emails and he gave us a lot of time before he submitted the grades.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed33" + } + }, + { + "text": "No syllabus, no grading criteria, no responses to emails sent to him and he graded few lab reports in the beginning & then didn't grade any after, so im assuming i got my grade from the exam. You will be questioning where you stand in his class till the last minute because of his unclear grading of reports and no response to the emails you send him", + "pos": 0.026, + "neu": 0.837, + "neg": 0.137, + "_id": { + "$oid": "6711d67fcd60fca157e5ed34" + } + }, + { + "text": "All tutorials are created by the department for the class. Follow tutorials and do the lab report. Report should follow the steps you took to do the lab. Sometimes he issues his own parts to the lab but he explains how to do it. Don't write super-short reports and you will be ok. Email him with questions, he is nice. He submitted final grade late", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed35" + } + }, + { + "text": "Prof Darwish had unclear grading criteria and no syllabus was given to us. Lab reports need to be submitted but deadlines were not accurate and neither did he grade them in reasonable time, so you would know your standing in the class. Did not respond to my emails and we are still waiting for final grade after the deadline has already passed.", + "pos": 0.0, + "neu": 0.951, + "neg": 0.049, + "_id": { + "$oid": "6711d67fcd60fca157e5ed36" + } + }, + { + "text": "He is a very nice person, will provide structure for labs and you can follow along. Gives you an opportunity to be creative with projects which matters in a real life scenario. He will value you if he sees you really did put a lot of work into your project. His classes are fun and you will participate. He will provide documentation you need.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed37" + } + }, + { + "text": "he currently as of 2017 works at qcc. excellent teacher. great feedback. realistic personality.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed38" + } + }, + { + "text": "Prof. Darwish is caring, helpful and encouraging. He is open to suggestions and questions. As for EE 323 the class itself, it's very interesting especially if you are into electronics.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed39" + } + }, + { + "text": "this professor is so much fun, very good guy!", + "pos": 0.502, + "neu": 0.498, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed3a" + } + }, + { + "text": "Clear grading criteria, tells you what questions will be on the exams. Explains everything thoroughly. He did go a bit slow paced since majority of our circuit class had students from majors other than electrical engineering.", + "pos": 0.069, + "neu": 0.931, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed3b" + } + }, + { + "text": "He's eh. Take Li or Kazi if their teaching.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed3c" + } + }, + { + "text": "Very rude. Always yelling at students. For a lab instructor not very instructional.", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d67fcd60fca157e5ed3d" + } + }, + { + "text": "The rumor of Darwish being an easy A is 100% FALSE. Its true that most students achieve As. But you gotta put a lot work. Which this lab was 2 credits. Miss a class kiss that A goodbye. YOU GOTTA show up.", + "pos": 0.217, + "neu": 0.744, + "neg": 0.038, + "_id": { + "$oid": "6711d67fcd60fca157e5ed3e" + } + }, + { + "text": "Just don't slack off like I did! he is a very nice person", + "pos": 0.205, + "neu": 0.667, + "neg": 0.128, + "_id": { + "$oid": "6711d67fcd60fca157e5ed3f" + } + }, + { + "text": "Good person, chill, laid back, cares about students' grades but that doesn't mean you can get an A by doing zero work. Do all labs, write lab reports in IEEE format, and do well on final to get an A. Also, the lab manual is EXTREMELY poorly written and at times, it's so vague on what we should do. However, that's not the professor's fault.", + "pos": 0.132, + "neu": 0.836, + "neg": 0.032, + "_id": { + "$oid": "6711d67fcd60fca157e5ed40" + } + }, + { + "text": "Pros-chill professor. Very lenient with lab reports. nice professors. Cons-kinda depend on yourself depending on the partner you have to do the labs", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed41" + } + }, + { + "text": "Class is not hard but it requires using IEEE format for reports. Prof. is great and he cares about his students and I definitely recommend him! Easy going professor!", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed42" + } + }, + { + "text": "Take him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed43" + } + }, + { + "text": "Easy final. Labs must be written in IEEE format.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed44" + } + }, + { + "text": "He is a nice professor. Only problem is he isnt very good with lab work. He does know the theory for the experiments, but he doesn't know how to use the lab equipments much himself. Dont let him touch your equipment. You have to depend on yourself with your partner to learn on your own. Other than that he is a nice professor and tries to help.", + "pos": 0.122, + "neu": 0.829, + "neg": 0.049, + "_id": { + "$oid": "6711d67fcd60fca157e5ed45" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d67fcd60fca157e5ed47" + }, + "professor_name": "Irina Gladkova", + "rating": 2.1, + "department": "Computer Science department", + "comments": [ + { + "text": "If you actually want to learn something and ready to put effort then take her but if you want easy A, better off avoiding her. She also curves based on the highest grade achieved in class and her HWs are hard but exams are not bad.", + "pos": 0.27, + "neu": 0.649, + "neg": 0.08, + "_id": { + "$oid": "6711d67fcd60fca157e5ed48" + } + }, + { + "text": "So much to remember and learn, on top of that She had us learn a new coding language (R). it felt like twice the work we needed to do. Classes can be boring at times, as it is just her reading from the slides and barely adding anything. Midterm is 30%, Final Exam is 30%, Hw is 10%, project is 15%, quiz is 15%.", + "pos": 0.064, + "neu": 0.902, + "neg": 0.034, + "_id": { + "$oid": "6711d67fcd60fca157e5ed49" + } + }, + { + "text": "She'll seem nice at first, but it's a facade. She's short tempered and generally rude when you ask questions. She makes class incredibly difficult and more complicated than it needs to be. Her homeworks are grueling to complete. You're much better off taking Grimmelmann than her. Avoid her at all costs.", + "pos": 0.092, + "neu": 0.739, + "neg": 0.169, + "_id": { + "$oid": "6711d67fcd60fca157e5ed4a" + } + }, + { + "text": "This class would be much harder in person btw. I had a C before leaving the class. She curved up to a B+. I learned a TON in this class, but keep in mind it is very self taught. Always go to the TA/tutoring for assistance (if there is one) and read the textbook, do the review questions, and ATTEMPT EVERY SINGLE ASSIGNMENT!! Google is your BFF. (-;", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d67fcd60fca157e5ed4b" + } + }, + { + "text": "Hard class. The lectures are easygoing but the project/HWs are a LEAP from whats taught in class. Dont rely solely on the textbook, it has so much jargon. Try to also read online lessons/resources on the material to do HW/project. Would rate lower, but I felt I learned a lot from the project. Also, the final she gave was easier from her past final", + "pos": 0.077, + "neu": 0.865, + "neg": 0.058, + "_id": { + "$oid": "6711d67fcd60fca157e5ed4c" + } + }, + { + "text": "take her and you ruin your GPA no matter how hard you study on your own and go the extra mile.", + "pos": 0.0, + "neu": 0.742, + "neg": 0.258, + "_id": { + "$oid": "6711d67fcd60fca157e5ed4d" + } + }, + { + "text": "Honestly, she teaches this class as if it's a liberal art class. Reading off slides don't prepare us for her very difficult exams and projects. She could at least hire a TA to solve some similar problems and teach us how to code the problems in class. No wonder why students get very low grades.", + "pos": 0.073, + "neu": 0.732, + "neg": 0.195, + "_id": { + "$oid": "6711d67fcd60fca157e5ed4e" + } + }, + { + "text": "Her lectures are mostly just reading off slides. Actually, we could do the reading on our own but really needed to see her do more solving similar problems and coding the problems in class to become prepared for exams or projects. We were often confused and didn't feel like we were learning much except for conceptual definitions on the slides.", + "pos": 0.081, + "neu": 0.74, + "neg": 0.18, + "_id": { + "$oid": "6711d67fcd60fca157e5ed4f" + } + }, + { + "text": "Professor went through A LOT of material in class. She was funny at times and made jokes to keep students attention. Her tests, however, NO JOKE. Study hard for them; 30hr midterm 40hr final. In addition, the assignments were A LOT of work. This class was not easy but I felt I learned a lot in the end. Did poor on tests, curve at very end helps.", + "pos": 0.095, + "neu": 0.771, + "neg": 0.134, + "_id": { + "$oid": "6711d67fcd60fca157e5ed50" + } + }, + { + "text": "Gladkova is an absolutely horrible lecturer. She literally only reads off slides and never asks for input from the class. There is no interaction between her and the class. She just reads off the slides and leaves. In fact most of the time she's out the door before the students. There are 3 exams (75%) and 2 projects (25%). Absolutely no curve.", + "pos": 0.0, + "neu": 0.874, + "neg": 0.126, + "_id": { + "$oid": "6711d67fcd60fca157e5ed51" + } + }, + { + "text": "Absolutely terrible. Do not expect to learn from her lectures. She reads straight from the slides which are based off of the textbook. You are better off reading the textbook and looking at the examples. 1 exam, midterm, final, simulation project, and a group project. Curves are crappy too. Aced everything but final and ended up with a B+ -.-", + "pos": 0.053, + "neu": 0.876, + "neg": 0.07, + "_id": { + "$oid": "6711d67fcd60fca157e5ed52" + } + }, + { + "text": "I took her last spring, absolute worst idea of my graduate life. Went in under the impression i am going to learn but that didn't happen. No material to study no slides no nothing. gave an exam which was ridiculous. negative 1 rating", + "pos": 0.11, + "neu": 0.646, + "neg": 0.245, + "_id": { + "$oid": "6711d67fcd60fca157e5ed53" + } + }, + { + "text": "She is horrible. If you don't do well on the exam, midterm or final, you will no pass the class. She is not ashamed of giving anyone a F. Don't go crazy over the group or individual projects because she will just give you a 100 and that is her way of \"curving,\" otherwise there is no cure. I would no recommend taking her at all.", + "pos": 0.06, + "neu": 0.759, + "neg": 0.181, + "_id": { + "$oid": "6711d67fcd60fca157e5ed54" + } + }, + { + "text": "It can be an interesting course, but she doesn't make it so interesting. Mundane lectures in the morning will not motivate you to read textbook, do hw, or even attend future lectures. She is nice, but not so nice with grades. You can get A but you must read textbook, do MATLAB during your free time, and go to her lectures and ask questions.", + "pos": 0.186, + "neu": 0.73, + "neg": 0.084, + "_id": { + "$oid": "6711d67fcd60fca157e5ed55" + } + }, + { + "text": "Boring lectures, tough material, presented in a decent fashion at best. Tests are hard but she doesnt include anything she didnt cover. Not accessible outside class at all and makes her hw optional. Nice person over all but if you care about your grade gurvits is tougher but more lenient take him instead", + "pos": 0.243, + "neu": 0.694, + "neg": 0.063, + "_id": { + "$oid": "6711d67fcd60fca157e5ed56" + } + }, + { + "text": "Very \"good\" Professor, you can't even give her a negative comment because someone will delete it right the way.", + "pos": 0.134, + "neu": 0.712, + "neg": 0.155, + "_id": { + "$oid": "6711d67fcd60fca157e5ed57" + } + }, + { + "text": "That's a sad story will be happened when you choose her!", + "pos": 0.0, + "neu": 0.747, + "neg": 0.253, + "_id": { + "$oid": "6711d67fcd60fca157e5ed58" + } + }, + { + "text": "Honestly, everything she gave on our exams was covered in class. However, the class is still difficult because you truly need to grasp and understand the concepts in order to do well. She is quite boring at times, and the textbook is awful. Make sure you do well on the group and individual projects, they will help you pass.", + "pos": 0.206, + "neu": 0.683, + "neg": 0.111, + "_id": { + "$oid": "6711d67fcd60fca157e5ed59" + } + }, + { + "text": "Her class is extremely boring.", + "pos": 0.0, + "neu": 0.607, + "neg": 0.393, + "_id": { + "$oid": "6711d67fcd60fca157e5ed5a" + } + }, + { + "text": "Easy professor, but I messed up in the midterm which took my grade down from an A to B. Just do the HW's and make sure you ace the midterm and final, and you'll be fine.", + "pos": 0.168, + "neu": 0.758, + "neg": 0.073, + "_id": { + "$oid": "6711d67fcd60fca157e5ed5b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d680cd60fca157e5ed5d" + }, + "professor_name": "Yehya Elsayed", + "rating": 4.3, + "department": "Chemistry department", + "comments": [ + { + "text": "I strongly recommend taking with Dr. Yehya! A great professor when it comes to explanation, just listen to what he says and you'll be good to go. He can be sort of demanding, but it is worth it", + "pos": 0.237, + "neu": 0.727, + "neg": 0.036, + "_id": { + "$oid": "6711d680cd60fca157e5ed5e" + } + }, + { + "text": "best professor ever!", + "pos": 0.692, + "neu": 0.308, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed5f" + } + }, + { + "text": "great professor!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed60" + } + }, + { + "text": "Take this class with Prof. Yehya. His lectures are very clear and interactive. He makes sure that the students understand the material during the lecture. Unlike many other professors, he is fair in giving the final grade", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed61" + } + }, + { + "text": "Great professor, its not easy for anyone to get a high grade with him, if you don't listen to his advice. However, if you listen to him than you can get an easy A. i advice anyone to take a course with him", + "pos": 0.142, + "neu": 0.81, + "neg": 0.049, + "_id": { + "$oid": "6711d680cd60fca157e5ed62" + } + }, + { + "text": "He is one of the amazing professor city college has, i really enjoy his class his amazing teaching style and willingness to help his students is just beyond words. i really incourage any student who want to be chalenged but walk out with a lot of knowldge and decent grade to take his class. He is just a brilliant instructor", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed63" + } + }, + { + "text": "This professor is a great instructor who guide you well into getting high grades. I regret I didnt follow his instructions from the beginning", + "pos": 0.207, + "neu": 0.7, + "neg": 0.093, + "_id": { + "$oid": "6711d680cd60fca157e5ed64" + } + }, + { + "text": "He is a great professor. One of the best I had so far. Take this professor!", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed65" + } + }, + { + "text": "The professor set the expectation high from the students.You need to study to earn the points. If you attend the lectures and take good notes you guarntee an A in the class.Also he is very helpful when you seek his help on topics you don't understand.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed66" + } + }, + { + "text": "The worst professor at City College. His explanations were difficult to understand and his grading was harsh. He drops one exam if you get a 80 on the third exam and final. My advice is pick another professor for Chem 103.", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d680cd60fca157e5ed67" + } + }, + { + "text": "He is very helpful, organized and prepared. His lectures are straightforward and easy to follow. His tests have no surprises. If you go to class and do the homework, you are prepared. He may come off as a hard teacher, but he's flexible and willing to work with students to understand the concepts. He's one of the best in the Chem Dept.", + "pos": 0.21, + "neu": 0.754, + "neg": 0.035, + "_id": { + "$oid": "6711d680cd60fca157e5ed68" + } + }, + { + "text": "He was a great professor. He used to spend a lot of time helping students unlike the other professors now who provide help only for selected students!!!!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed69" + } + }, + { + "text": "Elsayed exhibits all the components of a great professor, knowledge, patience, organization, clartiy, depth, motivation, and dedication. Dedication to students is one the rarest qualities to find in a professor. It's what seperates good from great and it's what defines elsayed. It is a difficault task to fail his class if you follow his guidance.", + "pos": 0.201, + "neu": 0.746, + "neg": 0.052, + "_id": { + "$oid": "6711d680cd60fca157e5ed6a" + } + }, + { + "text": "The Professor was fair and was very generous for dropping at least one the test grades. He cares about the students performance and has hig expectations for them and himself.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed6b" + } + }, + { + "text": "Quality teacher, very clear expectations, no B.S. and plenty of information provided. Hard work is expected, but exams and grades are fair.", + "pos": 0.19, + "neu": 0.697, + "neg": 0.114, + "_id": { + "$oid": "6711d680cd60fca157e5ed6c" + } + }, + { + "text": "Expects hard work but is reasonable and fair. Excellent customer service. Not enough in class examples.", + "pos": 0.36, + "neu": 0.586, + "neg": 0.054, + "_id": { + "$oid": "6711d680cd60fca157e5ed6d" + } + }, + { + "text": "Set very clear expectations at the start of the course regarding tests; very willing to offer extra help to students; tests aligned well with lectures and assignments. Very organized and efficient. Expects hard work but is reasonable and fair.", + "pos": 0.232, + "neu": 0.741, + "neg": 0.027, + "_id": { + "$oid": "6711d680cd60fca157e5ed6e" + } + }, + { + "text": "he is a very decent man and hard working. he listen to students with problem and works with them.", + "pos": 0.0, + "neu": 0.806, + "neg": 0.194, + "_id": { + "$oid": "6711d680cd60fca157e5ed6f" + } + }, + { + "text": ":)", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed70" + } + }, + { + "text": "He is good profeesor but demanding. If you apply yourself you can get an A in his class", + "pos": 0.096, + "neu": 0.788, + "neg": 0.116, + "_id": { + "$oid": "6711d680cd60fca157e5ed71" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d680cd60fca157e5ed73" + }, + "professor_name": "Hugh Denoncourt", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "I love this professor! He really prepares you for the finals. You can go to his office hours and he will definitely help you. The homework depends on what the school is using during the semester. I had him for Calc I and II. Amazing!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed74" + } + }, + { + "text": "Great Teacher! Prepares you well for the final. Each test of his has problems straight out of past finals, and review sheets tell you exactly what you need for each exam. Love his clumsy humor.", + "pos": 0.317, + "neu": 0.625, + "neg": 0.058, + "_id": { + "$oid": "6711d680cd60fca157e5ed75" + } + }, + { + "text": "Calc 2 is just a hard class in general and Hugh teaches really good. He covers every topic however can be really fast for my pace atleast. Make sure to do the HW because they are good help. His tests help you prepare for the topics on the final since its 40% of your grade and 15% for each of his three tests. Just make sure to stay on top of ur game", + "pos": 0.212, + "neu": 0.771, + "neg": 0.017, + "_id": { + "$oid": "6711d680cd60fca157e5ed76" + } + }, + { + "text": "He is a very tough professor!", + "pos": 0.0, + "neu": 0.706, + "neg": 0.294, + "_id": { + "$oid": "6711d680cd60fca157e5ed77" + } + }, + { + "text": "take him if you don't get distracted in big lecture halls. He is ok, a bit confused, but if you do his homework, then the tests are mad easy.", + "pos": 0.148, + "neu": 0.688, + "neg": 0.164, + "_id": { + "$oid": "6711d680cd60fca157e5ed78" + } + }, + { + "text": "If you are amazing at calculus, you can definitely take him. But, if you aren't that great don't take him! He is a hard professor, and all his exams are basically finals questions, it doesn't get easier. He has a bad temper too, so try to ask valid questions.", + "pos": 0.066, + "neu": 0.656, + "neg": 0.278, + "_id": { + "$oid": "6711d680cd60fca157e5ed79" + } + }, + { + "text": "Impossible. His exams are truly impossible. You can be a scholar in calculus and not pass his calc 2 exams. Even he can't do the questions he gives. He takes finals questions and makes them even harder. AVOID AT ALL COSTS.", + "pos": 0.065, + "neu": 0.87, + "neg": 0.065, + "_id": { + "$oid": "6711d680cd60fca157e5ed7a" + } + }, + { + "text": "he explains everything very well. he tries to make the class more fun", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed7b" + } + }, + { + "text": "Although I already had taken Calculus 1 in High School, Denoncourt really explains what he teaches. Don't understand a problem from class or homework? He is more than happy to explain. Really fun class, attendance didn't really mattered in my morning class. If you do the work and follow along what he says in class, the final will be a breeze!", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed7c" + } + }, + { + "text": "I did not enjoy taking this class, apart from the fact that I didn't learn much, his class and teach skills discouraged me from trying harder. He give attendance quizzes and he can be rude at times. He is disorganized and makes a lot of mistakes when teaching which can be difficult to cope with.", + "pos": 0.0, + "neu": 0.759, + "neg": 0.241, + "_id": { + "$oid": "6711d680cd60fca157e5ed7d" + } + }, + { + "text": "Presents the material very clearly. Look at his calculations carefully cause he makes mistakes too. Relatively easy tests. But the final is what determines your final grade. Therefore, you need to study alot for it. Especially, since he doesn't create it but the department does. I would take his calc 2 class if the class times were good.", + "pos": 0.139, + "neu": 0.8, + "neg": 0.061, + "_id": { + "$oid": "6711d680cd60fca157e5ed7e" + } + }, + { + "text": "Denoncourt is disorganized and will confuse you as much as he confuses himself. He has a weird sense of humor that I appreciated but his lectures are unclear.", + "pos": 0.111, + "neu": 0.632, + "neg": 0.257, + "_id": { + "$oid": "6711d680cd60fca157e5ed7f" + } + }, + { + "text": "Professor Hugh is amazing! I loved his weird sense of humor, and lectures were definitely not boring. He is a bit disorganized but he teaches the material clearly and really cares whether students understand it or not. He is very lenient and will offer extra credit if asked to, also he will go over stuff again to make things clearer.", + "pos": 0.32, + "neu": 0.641, + "neg": 0.039, + "_id": { + "$oid": "6711d680cd60fca157e5ed80" + } + }, + { + "text": "If i had another chance to take denoncourt, i would. He knows the stuff and explains it well. His tests are a bit tough though. However, taking notes in class and practicing the text book problems, as well as doing the homework he assigns will leave you more than prepared. He grades fairly. If you don't pass, it's honestly your own fault.", + "pos": 0.116, + "neu": 0.737, + "neg": 0.147, + "_id": { + "$oid": "6711d680cd60fca157e5ed81" + } + }, + { + "text": "He is one of the best professors I had in CCNY. He has a lot of knowledge and teaches very well. Just do the Webassign homework and study the notes before his exams. His exams are straight-forward if you study. He is willing to answer questions and clear any confusions. Before the final, study his exams and it will guarantee you a passing grade!", + "pos": 0.159, + "neu": 0.815, + "neg": 0.026, + "_id": { + "$oid": "6711d680cd60fca157e5ed82" + } + }, + { + "text": "Hes an amazing professor, teaches exceptionally well and his exams are fairly easy. hes always willing to help even without students having to ask he knows what to cover and practice the most.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed83" + } + }, + { + "text": "Grade was calculated by 3 exams (15% each) with about 6-8 questions each. Each question could be worth from 10-20 points. Get one question wrong and it could severely hurt your grade. Homework was worth 15%. and the final was worth 40%. Very helpful, would explain something even further if asked to explain.", + "pos": 0.137, + "neu": 0.715, + "neg": 0.148, + "_id": { + "$oid": "6711d680cd60fca157e5ed84" + } + }, + { + "text": "FUNNY guy. Tests are from the lectures. Do the homework. u can Rely on ur notes and HWs to get an A. Also understand the material because he does change around stuff in the problems. It's a 300 level class- duh!. I promise u will enjoy this class with him. I stayed awake and interested even though it was the 4th class of the day and at 6pm.", + "pos": 0.156, + "neu": 0.81, + "neg": 0.035, + "_id": { + "$oid": "6711d680cd60fca157e5ed85" + } + }, + { + "text": "DENONCOURT IS AMAZING. His lectures are really jammed with information and yet there's a lot of jokes that occur. Homework is mandatory, lectures are really straitfoward and tests come from textbook questions. He teaches very well. Always at office hours, email appointments also accepted. #BESTprofessor2015 .", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed86" + } + }, + { + "text": "He is a good professor, if you understood math 205 you will do great on his class. If you ace the quizzes, you'll do great on the final!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d680cd60fca157e5ed87" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d681cd60fca157e5ed89" + }, + "professor_name": "Rodney Versace", + "rating": 4.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Pros: VERY generous w. freebies & grace periods to boost your grade! Lectures are straightforward and he shows shortcuts. Friendly guy. \n\nCons: He's lazy & disorganized in terms of keeping Blackboard updated in a timely manner. Very slow to respond to emails. Slide materials posted are incomplete as they don't show problem breakdowns (go to class!)", + "pos": 0.271, + "neu": 0.664, + "neg": 0.065, + "_id": { + "$oid": "6711d681cd60fca157e5ed8a" + } + }, + { + "text": "Great Professor! His class is difficult but as long as you COME to class EVERYDAY and try your best you should be fine. He is very easy to understand and anything you don't get JUST ASK IN A RESPECTFUL manner he will definitely try to help. If you have the chance to take him, definitely do he is great.", + "pos": 0.44, + "neu": 0.541, + "neg": 0.02, + "_id": { + "$oid": "6711d681cd60fca157e5ed8b" + } + }, + { + "text": "The best CHEM Prof ever! Very clear, makes you understand everything. Exams are hard, but if you know algebra and study the material he gives, you will pass.", + "pos": 0.156, + "neu": 0.805, + "neg": 0.039, + "_id": { + "$oid": "6711d681cd60fca157e5ed8c" + } + }, + { + "text": "Had him for lab - great instructor: explains everything, step-by-step, giving you all the answers, formulas - you take notes, ask questions - then proceed with the lab or exam - doing just what he showed you minutes before to do! And he's funny, relaxed, very supportive - never petty or difficult.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed8d" + } + }, + { + "text": "He is one of the best chemistry professor in City College, but exams are hard.", + "pos": 0.151, + "neu": 0.756, + "neg": 0.093, + "_id": { + "$oid": "6711d681cd60fca157e5ed8e" + } + }, + { + "text": "hes a great teacher. had him in the summer for 104 too and it wasnt bad either. very clear and tests are not hard. if you do the masterchem hw youll be set for tests. he lets you borrow another persons account for masterchem (that isnt using it) so you dont have to pay for it. it's very nice of him", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed8f" + } + }, + { + "text": "Great guy. Great professor. Fair exams If you have the option, take this guy. He saved me in chem. Will never forget him Get a high grade on the online homework & you'll be fine.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed90" + } + }, + { + "text": "Really nice guy. His accent is takes a little getting used too but he is there for you if you have any questions. His assistants during exams are SO helpful! He himself gives you very good hints. STUDY PREVIOUS EXAMS. His exams are very alike. The homework on mastering chemistry is hard as F*CK for no reason! you can find answers on yahoo answers..", + "pos": 0.173, + "neu": 0.77, + "neg": 0.057, + "_id": { + "$oid": "6711d681cd60fca157e5ed91" + } + }, + { + "text": "Always finds ways to make learning chemistry easy, if not a little fun which is always helpful for a science class. He is a nice man, his tests are fair and will prepare you for the department final well.", + "pos": 0.267, + "neu": 0.682, + "neg": 0.051, + "_id": { + "$oid": "6711d681cd60fca157e5ed92" + } + }, + { + "text": "DONT take him. His exams were horrible. Make sure to depend on the textbook and self study. DO NOT depend on his notes because his writing is all over the place. You can't read it. Use the textbook and mastering chem. All the best, if you are taking him.", + "pos": 0.116, + "neu": 0.821, + "neg": 0.062, + "_id": { + "$oid": "6711d681cd60fca157e5ed93" + } + }, + { + "text": "Versace is one of the best chem prof you'll find at CCNY. He is helpful and always willing to help his students. Don't be too demanding, he gets irritated! Unfortunately this is his last semester here so good luck in finding someone like him.", + "pos": 0.344, + "neu": 0.568, + "neg": 0.088, + "_id": { + "$oid": "6711d681cd60fca157e5ed94" + } + }, + { + "text": "HE USED TO BE A GOOD TEACHER THEN HE STARTED TO MAKE HIS TESTS HARDER. HE WILL NOT HELP YOU OUT AT ALL. HIS TESTS ARE NOTHING LIKE HIS PAST TESTS. DONT TAKE HIM NO MATTER WHAT YOUR FRIENDS SAY. HE IS ALSO VERY BORING. YOU WILL FALL ASLEEP IN CLASS A LOT IF YOU DONT LOVE CHEMISTRY. ALL HE DOES JUST TALK.", + "pos": 0.082, + "neu": 0.763, + "neg": 0.155, + "_id": { + "$oid": "6711d681cd60fca157e5ed95" + } + }, + { + "text": "Dr. Versace is one of the best chem professors I have ever had. He makes the lectures so simple and easy that you don't even feel the time passing by. His classes get filled up quickly so do the right thing and register in his class early! and please go to office hours to show him that you actually care and get to knw him. hes a very nice person.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed96" + } + }, + { + "text": "Versace is one of the most amazing professors here at CCNY. Make sure you complete the online HW, do well on LABS and go over his slides. You will pass with an easy A. He is amazing, wonderful, I'm out of words.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed97" + } + }, + { + "text": "Prof. Versace is the man! if you have the chance try to take him, his classes get filled up pretty quick so plan ahead! Do all the homework and do well on exams you'll get an A.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed98" + } + }, + { + "text": "LOVED THIS GUY. BEST CHEM PROFESSOR HANDS DOWN! Exams and lectures are super clear and easy to understand. An A is very possible.", + "pos": 0.517, + "neu": 0.483, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed99" + } + }, + { + "text": "Awesome chem professor!!!! His lectures are clear and if you miss class, he posts all the notes on blackboard. So cute and amazing!33", + "pos": 0.363, + "neu": 0.588, + "neg": 0.049, + "_id": { + "$oid": "6711d681cd60fca157e5ed9a" + } + }, + { + "text": "super clear and goes through a lot of practice problems. Provides you with old exams too. Best chem professor ever.", + "pos": 0.364, + "neu": 0.544, + "neg": 0.092, + "_id": { + "$oid": "6711d681cd60fca157e5ed9b" + } + }, + { + "text": "Give him a raise , he honestly deserves it. Best chem lecturer.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed9c" + } + }, + { + "text": "I had him at a different cuny, but he stills retains his reputation of being a great professor. He provides all lectures with his very own side notes. His reviews are extremely helpful when it comes to test day. He might have a little accent , but he's very clear. He's also a devoted professor, you can email or always meet him at his office hours.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5ed9d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d681cd60fca157e5ed9f" + }, + "professor_name": "Teresa Bandosz", + "rating": 2.2, + "department": "Chemistry department", + "comments": [ + { + "text": "I'm gonna be honest, she didn't really teach much, the students had presentations every week by rotation. I guess this is a 400 class, but still I go to school for someone else to do the teaching.\nher exams are complicated, be very careful with her wording and go beyond the book to study", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5eda0" + } + }, + { + "text": "Do not take her, nothing is never enough to for her.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5eda1" + } + }, + { + "text": "Do not take her if you can take do it next semester. run away. you have to teach your self but also answer the question how she wants. but she does not even explain them well. if you follow the book solution she will take many point off. bottom line DO NOT TAKE HER. QUIZ EVERY LECTURE AND BASE ON WHAT SHE SAID NOT THE BOOK 15%.", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5eda2" + } + }, + { + "text": "Nice lady, but her class was needlessly difficult. Impossible quizzes and she's a ruthless grader. She's bad at actually teaching the information so the entire class is self-teach. Do ALL the problems in the book. Start srsly studying a week or two in advance for exams. She is willing to help you which is nice, but she's just not clear.", + "pos": 0.12, + "neu": 0.693, + "neg": 0.187, + "_id": { + "$oid": "6711d681cd60fca157e5eda3" + } + }, + { + "text": "She's the perfect example of a professor who has knowledge, but has no idea how to teach it. Overcomplicates the class, even though the material isn't difficult. If you have to take her, make sure you go through the textbook and do the practice problems otherwise you prob won't learn anything. Also gives lot of quizzes so go to class.", + "pos": 0.115, + "neu": 0.793, + "neg": 0.092, + "_id": { + "$oid": "6711d681cd60fca157e5eda4" + } + }, + { + "text": "Usually I am not best judge on a person's ability expressing in English, but I'll make an exception for her. She is simply awful. She has this awful weird European accent making it impossible to follow her in lecture. And slides she used are useless. Never told you what needed to memorize. She just assumes you know every reaction in the textbook.", + "pos": 0.022, + "neu": 0.753, + "neg": 0.224, + "_id": { + "$oid": "6711d681cd60fca157e5eda5" + } + }, + { + "text": "I am currently taking her class, which I will drop. Her exams are 3 questions each, quizzes every class plus quizzes every lab. Quizzes are worth 20% of your grade. You have 4 exams 1 dropped but make one mistake on a problem and you basically fail. She is a horrible teacher, but the only prof for this course. Hopefully I pass next semester.", + "pos": 0.063, + "neu": 0.715, + "neg": 0.222, + "_id": { + "$oid": "6711d681cd60fca157e5eda6" + } + }, + { + "text": "She will make you work for it and if you screw up one question on one test, you will lose a quarter if not more of the points. Do extremely well on the final and you might still get an A. One of the hardest \"A\"s I ever had to work for.", + "pos": 0.043, + "neu": 0.883, + "neg": 0.074, + "_id": { + "$oid": "6711d681cd60fca157e5eda7" + } + }, + { + "text": "I was debating if I should risk taking her for my minor. However, it was a GREAT decision. Just follow the syllabus. Lots of reading and writing but exams are super easy. Everything in this class is to the point. Effort Grade. And as a prof, she is a very nice lady and uses interesting youtube videos. Take her for this course.", + "pos": 0.256, + "neu": 0.724, + "neg": 0.02, + "_id": { + "$oid": "6711d681cd60fca157e5eda8" + } + }, + { + "text": "Honestly I think she is what's wrong with the American educational system. Here's a professor that appear to only care about a paycheck, who grades when she feels like it and is unnecessarily tough. I could respect any professors teaching style, but her own lacks compassion and basic traits a professor should have.", + "pos": 0.194, + "neu": 0.752, + "neg": 0.054, + "_id": { + "$oid": "6711d681cd60fca157e5eda9" + } + }, + { + "text": "Don't waist your time and money for something worthless seriously.", + "pos": 0.0, + "neu": 0.635, + "neg": 0.365, + "_id": { + "$oid": "6711d681cd60fca157e5edaa" + } + }, + { + "text": "This is a hybrid class so you won't see the professor much. Keep track of dates and assignments. She is specific in what she wants so pay attention. Outwardly she doesn't seem like she cares about the students but she will help you if you ask her. Good luck finding her, though.", + "pos": 0.215, + "neu": 0.737, + "neg": 0.048, + "_id": { + "$oid": "6711d681cd60fca157e5edab" + } + }, + { + "text": "for humanity's sake, don't take her. i did bad in all the other classes because i just focused on hers and i still didn't do well. the worst thing about this class is that her tests are usually 4-5 questions. if you do a little mistake, half the points go away. the lab is even worse!!", + "pos": 0.038, + "neu": 0.737, + "neg": 0.224, + "_id": { + "$oid": "6711d681cd60fca157e5edac" + } + }, + { + "text": "She knows here stuff and I respect her for that. One thing she doesn't know is how to explain the material. Anyone who knows English can read a book. For all of the years of her teaching the same class, I would have thought she would have learned how to teach by now. Nonetheless, if you can take Salame because he actually knows how to teach.", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d681cd60fca157e5edad" + } + }, + { + "text": "she is an embarrassment to the chemistry department, a horrible teacher and so she takes it out on her students. average for first exam 34 no curve. not worth it at all", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d681cd60fca157e5edae" + } + }, + { + "text": "She is a great professor, very organized and teaches very clearly. Her class is difficult, so if you are not ready to do the work you are not going to pass. She gives quizzes every week so make sure you are coming to class on time on the quiz days. You have to practice doing the problems she assigns to make sure that you can do it.", + "pos": 0.151, + "neu": 0.757, + "neg": 0.092, + "_id": { + "$oid": "6711d681cd60fca157e5edaf" + } + }, + { + "text": "Terrible professor indeed! She's the only one who teaches Qua. Analysis at CCNY. Take it in a diff school if possible. She knows her stuff but is terrible at teaching. Exams are problems from textbk. Try to get hold of the solution manual (THAT WILL BE GR8 HELP!)- The labs are good provided you have ZHAO otherwise tough luck!", + "pos": 0.268, + "neu": 0.595, + "neg": 0.137, + "_id": { + "$oid": "6711d681cd60fca157e5edb0" + } + }, + { + "text": "don't expect help from her. she doesn't know the material", + "pos": 0.0, + "neu": 0.799, + "neg": 0.201, + "_id": { + "$oid": "6711d681cd60fca157e5edb1" + } + }, + { + "text": "Albert Einstein once said, \"Do not worry about your difficulties in Mathematics. I can assure you mine are still greater.\" Bandosz should say, \"Do not worry about your difficulties in Q.A. I assure you, mines are still greater.\" Her final was way too long (not enough time), and you wont get any help from her if you do not understand something.", + "pos": 0.199, + "neu": 0.71, + "neg": 0.091, + "_id": { + "$oid": "6711d681cd60fca157e5edb2" + } + }, + { + "text": "if you want fail, take her", + "pos": 0.148, + "neu": 0.455, + "neg": 0.398, + "_id": { + "$oid": "6711d681cd60fca157e5edb3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d682cd60fca157e5edb5" + }, + "professor_name": "Bianca Vidal", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Prof Vidal is amazing! She will go over material multiple times and helps you each step. There is alot of group work but it helps prepare you for exams. Overall, really great professor to pick.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edb6" + } + }, + { + "text": "Dr. Vidal is the best experimental psych professor! There is lots of group work but it helps prep you for exams. She preps students for the paper and makes it less stressful for us. I highly recommend her!", + "pos": 0.186, + "neu": 0.728, + "neg": 0.086, + "_id": { + "$oid": "6711d682cd60fca157e5edb7" + } + }, + { + "text": "She is amazing and explains so well, if you don't get an A it is literally your own fault because she gives so many opportunities. Pay attention on the paired classwork.", + "pos": 0.237, + "neu": 0.654, + "neg": 0.11, + "_id": { + "$oid": "6711d682cd60fca157e5edb8" + } + }, + { + "text": "Professor Bianca is the best, in turns of feedback and lectures, and taking the consideration of an online class. I do recommend her. if you, Read, participate (either in a group discussion or general class), and attend all classes you will be fine and learn how to do an experiment from zero. Also, have your psych statistics notes near.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edb9" + } + }, + { + "text": "She is absolutely amazing, will explain until the entire class understands. Exams easy and short response questions are identical to the in class group work assignments. I honestly wish she taught more courses. Strict with due dates so don't turn in the final paper late.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edba" + } + }, + { + "text": "I LOVE HER! Take her. Tests are based on class activities. The final paper is fairly easy because she provides helpful feedback on the rough draft. She cares about her students and genuinely loves teaching. Extra credit is given and best of all there is no homework :)", + "pos": 0.359, + "neu": 0.573, + "neg": 0.069, + "_id": { + "$oid": "6711d682cd60fca157e5edbb" + } + }, + { + "text": "Absolutely awesome professor for PSY 321. She was super sweet and understanding with the workload. Expect lots of groupwork per class, her exams are based on her heavy lectures which she makes very easy to understand. One of the best professors I've taken thus far", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edbc" + } + }, + { + "text": "She's a great prof. Course load is too much, too many tests, and the TA grades your final paper not the prof. TA is more critical than the prof and the final paper is worth a lot. Also a lot of participation and too many breakout rooms, it gets annoying. Other than that she's a good instructor and is very helpful.", + "pos": 0.166, + "neu": 0.761, + "neg": 0.073, + "_id": { + "$oid": "6711d682cd60fca157e5edbd" + } + }, + { + "text": "She is one of the most caring and sweetest professors. She gives amazing feedback for the final paper, and her exams are logical and based on material in class. You need to attend class because she pairs you off with people every class to complete work. This work is also on the exams. Overall she is amazing, and I would recommend her 100%.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edbe" + } + }, + { + "text": "This was a required class but I ended up loving it. Dr. Vidal is truly amazing. She's been undergoing chemo and NEVER canceled a class. She actually made this course funny and interesting. The best professor I had during my entire time at City. 4 exams, a final paper and lots of group work that was actually fun. I totally recommend her\ufffd\ufffd\ufffd\ufffd", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edbf" + } + }, + { + "text": "Dr. Vidal is an amazing professor. There are four exams, lots of group work, and a 10-15 page paper. You can always ask her questions - she truly cares if you understand the material.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc0" + } + }, + { + "text": "I took her online during COVID. She explains things super well. We had 3 exams, a rough draft, final paper and final exam. She takes attendance and asks a lot of questions during the lectures. She also did break out rooms and we worked with a partner. She was super helpful and went over each activity. I would take her again.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc1" + } + }, + { + "text": "3 exams, 1 final, 1 paper, class activity every class but not too difficult b/c u work w someone. really caring, do every activity and attend every lecture easy 25 poinnts.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc2" + } + }, + { + "text": "Vidal's lectures are very entertaining. This class has A LOT of group work, but you will enjoy it. There are four exams, one 15 page paper, two article reviews, and a final exam. She expects participation so knowing the material before class is necessary. Despite this, she makes experimental easy and fun <3 P.S. I took her during COVID 19", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc3" + } + }, + { + "text": "Prof Vidal is awesome. One of my favorites at CCNY. The class can be difficult but she is so great at explaining everything. Lots of group activities in class which are related to each chapter. Final paper is 10 pages, 3 exams plus the final and 2 small papers.", + "pos": 0.202, + "neu": 0.768, + "neg": 0.03, + "_id": { + "$oid": "6711d682cd60fca157e5edc4" + } + }, + { + "text": "Professor Vidal looks to challenge you when you step into her class, but presents the course expectations clearly and doesn't ask anything more than what's expected of a 300 level course. She is more than willing to speak with students during office hours to guide them and explains the material clearly in class. Plus, she's got a really cute butt.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc5" + } + }, + { + "text": "Prof Vidal cares about students understanding the material. Read the textbook and takes notes before class so lectures will be clear. She gave multiple extra credit opportunities. The in-class activities are tedious but they help with the exams & appear as short answers. Exams are straight forward and she's available. Awesome professor.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc6" + } + }, + { + "text": "Excellent professor, I highly recommend taking experimental psy with Prof. Vidal. Really cares for her students and makes the course engaging. Prepare for class by reading the textbook and you should be fine by the time exams come around. She expects her students to be prepared for class so make sure you stay on top of your assignments. Loved her!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc7" + } + }, + { + "text": "The class is challenging, but if you read the textbook before lectures you'll be fine. If you read the chapters, it's an easy A. The professor gives a lot of extra credit.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edc8" + } + }, + { + "text": "SHE'S THE BEST!!! It was a difficult class but she made it easy with the daily class activities. She gives a lot of extra credit. Read text book before each class and you will be fine. If you do not like to study, do not take this class.", + "pos": 0.223, + "neu": 0.703, + "neg": 0.074, + "_id": { + "$oid": "6711d682cd60fca157e5edc9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d682cd60fca157e5edcb" + }, + "professor_name": "Maria Sanchez Muniz", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Amazing.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edcc" + } + }, + { + "text": "She is the best educator in CCNY. Professor truly cares about students and listens to them.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edcd" + } + }, + { + "text": "She is so nice that my words fail to describe her. If you are worried about Linear Algebra, take her. That is all I will say.", + "pos": 0.112, + "neu": 0.712, + "neg": 0.176, + "_id": { + "$oid": "6711d682cd60fca157e5edce" + } + }, + { + "text": "Get ready to memorize a lot of materials. But her exams are fair. She gave extra credit which is a plus.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edcf" + } + }, + { + "text": "The class is very boring, but attendance is not even mandatory. If you're a really good self study student, then you don't even need to attend any lectures since the slides are good enough. The class is really easy to pass, she gave about 30% on the final grade if you buy the lyryx and complete everything.", + "pos": 0.184, + "neu": 0.77, + "neg": 0.046, + "_id": { + "$oid": "6711d682cd60fca157e5edd0" + } + }, + { + "text": "Absolute GOAT. Easiest A+ ever as a STEM major. 40% final, 30% lyryx, 30% exam 1 and 30% exam 2 (so out of three, lowest gets dropped). Complete webwork for +10 points per exam. And completing it fully 100% at end mean +10 points TO FINAL CLASS GRADE so do it frr!!! She's the best", + "pos": 0.126, + "neu": 0.832, + "neg": 0.042, + "_id": { + "$oid": "6711d682cd60fca157e5edd1" + } + }, + { + "text": "Goat", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd2" + } + }, + { + "text": "The lectures were very good and clear and if you attended all her lectures she made sure to tell you what to study for her exams. The exams were challenging but if you put in the time and effort you will surely get a good grade. Overall one of the best professors at ccny!!", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd3" + } + }, + { + "text": "Great Professor! Knows how to teach and also really generous", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd4" + } + }, + { + "text": "I learned so much from her class and I her office hours! Finally a CCNY a math professor that responds her emails and provides all the recordings and slides", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd5" + } + }, + { + "text": "Great prof ever in CCNY!", + "pos": 0.523, + "neu": 0.477, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd6" + } + }, + { + "text": "Teaches very clear and loves linear algebra. She was very considerate with extensions and homework's. Tries to explain challenging topics in a simple and easy to understand ways. She's an amazing teacher but definitely do your homework if you want to keep up and understand everything.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd7" + } + }, + { + "text": "Absolutely an amazing Professor!", + "pos": 0.593, + "neu": 0.407, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd8" + } + }, + { + "text": "Teaches very well and is very clear and easy to understand. Gives plenty of HW for extra credit and gives sample tests/review to prepare students for tests. 10/10 recommend her for linear algebra.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edd9" + } + }, + { + "text": "Absolutely an amazing professor, if you follow her instructions you'll pass this class easy.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5edda" + } + }, + { + "text": "Very nice and good teacher", + "pos": 0.676, + "neu": 0.324, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5eddb" + } + }, + { + "text": "A professor who truly cares about her students and their success.", + "pos": 0.545, + "neu": 0.455, + "neg": 0.0, + "_id": { + "$oid": "6711d682cd60fca157e5eddc" + } + }, + { + "text": "Great professor to have. Lots of opportunities for extra credit and it is easier to get an A than it is to fail the class. Have to put in a lot of work but nonetheless very very doable.", + "pos": 0.186, + "neu": 0.762, + "neg": 0.052, + "_id": { + "$oid": "6711d682cd60fca157e5eddd" + } + }, + { + "text": "If you are willing to do the work try hard and still get a good grade despite being nervous during tests. Take her, you need her on your life do it.", + "pos": 0.138, + "neu": 0.821, + "neg": 0.041, + "_id": { + "$oid": "6711d682cd60fca157e5edde" + } + }, + { + "text": "Friendly professor that really encourages you to work hard!", + "pos": 0.475, + "neu": 0.426, + "neg": 0.099, + "_id": { + "$oid": "6711d682cd60fca157e5eddf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d683cd60fca157e5ede1" + }, + "professor_name": "Zheng Peng", + "rating": 2.7, + "department": "Computer Science department", + "comments": [ + { + "text": "He's a demanding professor but he gives you everything you need to pass. The more time you put into the class the easier it will be. 100x better than gertner.", + "pos": 0.21, + "neu": 0.75, + "neg": 0.04, + "_id": { + "$oid": "6711d683cd60fca157e5ede2" + } + }, + { + "text": "took this class remotely in 2020. I am so glad to see so many rookies say something like zheng is unfair, or don't care about students... His videos definitely give the knowledge you need to pass this course. By the way, you will see why zheng is on the CS top professor list as you take more classes.", + "pos": 0.158, + "neu": 0.758, + "neg": 0.084, + "_id": { + "$oid": "6711d683cd60fca157e5ede3" + } + }, + { + "text": "really hate to attend his lecture bc he simply plays the lectures he recorded previously. though his lecture videos cover all the content we need to know, it is so uninspiring and of low quality. his midterm is really unfair; 4 hour final but 1.5 hr midterm thought the amount of questions are the same. also, he is very strict; no negotiations.", + "pos": 0.022, + "neu": 0.839, + "neg": 0.139, + "_id": { + "$oid": "6711d683cd60fca157e5ede4" + } + }, + { + "text": "This class should be asynchronous since this guy plays lectures he taught a year ago, and they are not the best quality because they are entirely useless. He is extremely unreasonable in terms of grading and policies. He can always make up new rules that were not on the syllabus, like a 4-hour final, which was never mentioned before he announced it", + "pos": 0.065, + "neu": 0.841, + "neg": 0.094, + "_id": { + "$oid": "6711d683cd60fca157e5ede5" + } + }, + { + "text": "Worst prof ever thankful that I even passed this class. Tests and projects are insane", + "pos": 0.164, + "neu": 0.533, + "neg": 0.302, + "_id": { + "$oid": "6711d683cd60fca157e5ede6" + } + }, + { + "text": "I don't know why he made the class harder than it had to be. He answers questions with \"google it,\" he ignores any emails sent to him, and he REFUSED to curve even though no one in our class finished our midterm. Overall it was a traumatic experience but I can't say stay away from him since he's the only one that teaches csc 211. Good luck.", + "pos": 0.103, + "neu": 0.799, + "neg": 0.098, + "_id": { + "$oid": "6711d683cd60fca157e5ede7" + } + }, + { + "text": "He's not the absolute worst as some people make him out to be, but he makes you work for it. The material isn't difficult to consume (IMO), but there's a lot of it, and this course requires more time and effort than an average 3 credit course. Be careful of your course load when taking this course. HW (fair) Exams > Projects (easy)", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5ede8" + } + }, + { + "text": "if you are reading this during the pendemic, DO NOT CHOOSE THE AFTERNOON COURSE. he disregards the afternoon classes. he would properly teach the morning section and record it for the CC2 course and have them watch a youtube video of the course and expect us if we have any questions, we would ask during office hour. ONLY TAKE THE FIRST SECTION!!!!!", + "pos": 0.0, + "neu": 0.945, + "neg": 0.055, + "_id": { + "$oid": "6711d683cd60fca157e5ede9" + } + }, + { + "text": "Professor Peng tries to make this class easier for his students. I would recommend really trying to understand the material and reading the textbook because this class is really difficult without it. The homework are pretty straight forward and I found the projects pretty difficult. Exams are doable but the final was 7 hours long! Put in the work.", + "pos": 0.147, + "neu": 0.797, + "neg": 0.056, + "_id": { + "$oid": "6711d683cd60fca157e5edea" + } + }, + { + "text": "I fell in love with VHDL after this class despite my B-. There was one project for ASM and three non-extra-credit for VHDL. His lectures slides are clear. His final exam was seven hours long but online, it is passable and not as awful as it sounds. Homework is much harder than the projects. Projects are rinse and repeat. Do the EC project!!", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5edeb" + } + }, + { + "text": "Prof. Peng gives very clear instructions and is always there to help you. Just pay attention in class, do all the hw and projects, and you will be fine. I learned a lot from him and would definitely take him again!", + "pos": 0.217, + "neu": 0.753, + "neg": 0.029, + "_id": { + "$oid": "6711d683cd60fca157e5edec" + } + }, + { + "text": "Professor Peng's lectures may be a little scattered sometimes, but they often give you the intuition needed for the projects and homework. He goes through the most difficult topics (cascading circuits) thoroughly. Anyone saying the labs are extremely difficult just aren't putting in any time to listen in lecture or review the slides.", + "pos": 0.0, + "neu": 0.874, + "neg": 0.126, + "_id": { + "$oid": "6711d683cd60fca157e5eded" + } + }, + { + "text": "He is really tough as a grader but he teaches quite well. Besides, its either this guy or Gertner so just take this guy. 4-5 Labs:20%, 4 Homeworks:15%, Midterm:25% , Final: 30%, Attedance:10%.", + "pos": 0.087, + "neu": 0.874, + "neg": 0.039, + "_id": { + "$oid": "6711d683cd60fca157e5edee" + } + }, + { + "text": "The stats: average for midterm was below a C and average for final was below a C. The exams are surprising long. There is no curve. The good news: midterm and final based of the lecture, homework, and lab, meaning it \"contains no surprises\". There is a considerable amount of extra credit. The professor is nice and funny but strict about this class.", + "pos": 0.134, + "neu": 0.823, + "neg": 0.043, + "_id": { + "$oid": "6711d683cd60fca157e5edef" + } + }, + { + "text": "Prof. Zheng is a fair grader but his expectations do not align with how he teaches the class. His lab projects were very difficult and they were nowhere near what he taught in lab sessions. The worst thing is he tells students to drop his class even when they were doing okay.", + "pos": 0.064, + "neu": 0.746, + "neg": 0.19, + "_id": { + "$oid": "6711d683cd60fca157e5edf0" + } + }, + { + "text": "He's a great lecturer as long as you're willing to ask questions. If you're confused, and you let him know, then he will try to explain it in a different way to make it more clear. The class is tough, but he warns you from day 1. Tests are fair, HW is fair, projects are easy.", + "pos": 0.213, + "neu": 0.719, + "neg": 0.067, + "_id": { + "$oid": "6711d683cd60fca157e5edf1" + } + }, + { + "text": "First time teaching senior design and did a terrible job. Way too many presentations and writing .it's awful. Plus he grades paper harshly as if he is an English professor. Terrible professor please avoid.", + "pos": 0.054, + "neu": 0.679, + "neg": 0.267, + "_id": { + "$oid": "6711d683cd60fca157e5edf2" + } + }, + { + "text": "His class is not bad, especially if you come to class everyday and review his slides. The midterm is super easy, he basically uses his homework questions and lecture slides when making the exams, he just switches wording and numbers. He is a picky grader, but his homework and projects are not very difficult since he gives notes on them in class.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5edf3" + } + }, + { + "text": "Overall good professor but a tough grader. Homeworks and projects are equally important as the midterm and final so you cannot slack off on those. Lectures are decent and the slides are enough to understand the concepts. The homeworks and projects help prepare for the exams.", + "pos": 0.15, + "neu": 0.816, + "neg": 0.034, + "_id": { + "$oid": "6711d683cd60fca157e5edf4" + } + }, + { + "text": "50% of grade is homework and projects meaning the midterm and final is just 20% and 30%. Do all hw/projects, they prepare u very well for tests. Mr. Peng goes over all material thoroughly & review session b4 tests. Encourages questions in class and is very polite. Lectures was interesting and easygoing. Only takeaway is that grading is a bit tough.", + "pos": 0.152, + "neu": 0.826, + "neg": 0.022, + "_id": { + "$oid": "6711d683cd60fca157e5edf5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d683cd60fca157e5edf7" + }, + "professor_name": "Gregory Thompson", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Dr. Thompson is a rarity of a professor, there was honestly never a dull moment in his lectures. No exams!! Just discussion boards, personal statement, and resume building. Also PARTICIPATE!! Make him remember your name and add to the discussion. He was always available for office hours and gave amazing professional advice!! :)", + "pos": 0.209, + "neu": 0.757, + "neg": 0.035, + "_id": { + "$oid": "6711d683cd60fca157e5edf8" + } + }, + { + "text": "Dr. Thompson is probably the best professor I've come across in my college career so far. He truly cares about his students and makes himself available outside of class. He does not respond to emails which is the only downside. No exams, one 5-7pg. paper, 5 DB, PARTICIPATION MATTERS (can't stress that enough)! Really take advantage of his insights.", + "pos": 0.237, + "neu": 0.705, + "neg": 0.058, + "_id": { + "$oid": "6711d683cd60fca157e5edf9" + } + }, + { + "text": "This class was based on discussions and class participation, so if you would rather take an exam maybe don't take this class. He always made sure that each student had a chance to speak their mind, but also brought in his own experiences and the textbook information. We had a few discussion posts and a final paper. Would take again!!", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5edfa" + } + }, + { + "text": "He's an inspiring and lecture heavy professor. My only gripe would be the lack of communication in terms of assignment feedback. He does not grade ANYTHING. I'm 100% sure he literally just grades based off vibes, so be sure to be a good vibe by participating in class often. Just apply your own experiences to the material and SHOW UP TO CLASS.", + "pos": 0.151, + "neu": 0.816, + "neg": 0.033, + "_id": { + "$oid": "6711d683cd60fca157e5edfb" + } + }, + { + "text": "Professor Thompson is amazing! His lectures are so important and leaves you encouraged to do more in your life. He loves participation and requires attendance. His work was helpful and easy. I wish I can take him again!", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5edfc" + } + }, + { + "text": "Professor Thompson was a true inspiration to me. He is very knowledgeable and jumps right into the material. Participation matters above all else. We had just 3 discussion posts and a final paper, that's it! If you are looking for a discussion based class, this is the one to take.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5edfd" + } + }, + { + "text": "Honestly he is one of the professors who genuinely care for the students. He understands not everyone in the class is at the same level. He gives great feedback and guides you with great tips. I will definitely take him again.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5edfe" + } + }, + { + "text": "Great Professor! If I could take him again I would. Cares about his students and made a difference in my college experience. Lectures are amazing and the readings are great. Loved the class, would definitely recommend!", + "pos": 0.46, + "neu": 0.54, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5edff" + } + }, + { + "text": "Great prof! Make sure you participate", + "pos": 0.626, + "neu": 0.374, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5ee00" + } + }, + { + "text": "This is my second class with Dr Thompson and I would honestly take a third if I could. His teaching style is for students who like to participate and can think critically. Tbh if you can do that youve already secured an A. His assignments are easy peasy. I dont even think its possible to fail this class. Great for someone whos making up credits", + "pos": 0.223, + "neu": 0.732, + "neg": 0.044, + "_id": { + "$oid": "6711d683cd60fca157e5ee01" + } + }, + { + "text": "This class should be a requirement. You learn so much! Hes an amazing professor!! His lectures are like motivational podcasts! He shows that he cares & he does value participation. I was worried since I didnt participate much but still got an A. Not many assignments & no final exam. Easy A if you just do the work. Take him you wont regret it!", + "pos": 0.208, + "neu": 0.734, + "neg": 0.058, + "_id": { + "$oid": "6711d683cd60fca157e5ee02" + } + }, + { + "text": "Not awful like some of these reviews paint him to be, but he's not your traditional psych professor. He is a stickler on participation, so if you don't participate you won't receive a good grade. Grading criteria is ambiguous and he basically doesn't give you any feedback on any of the assignments. So you're left clueless as to where you stand.", + "pos": 0.026, + "neu": 0.85, + "neg": 0.124, + "_id": { + "$oid": "6711d683cd60fca157e5ee03" + } + }, + { + "text": "Dr. Thompson set clear grading criteria at the beginning of the semester, show up and participate! In-class participation is a considerable component of your grade. He truly cares for his students, and will go above and beyond to help them. As for those of you wanting to turn off your camera and disappear for the entire lecture, look elsewhere.", + "pos": 0.171, + "neu": 0.801, + "neg": 0.028, + "_id": { + "$oid": "6711d683cd60fca157e5ee04" + } + }, + { + "text": "This was a great class. I was feeling a bit lost with my psych major not sure what to do with it after graduation etc and this class offered so much direction! I feel like I know what Im doing now. Dr T was great and cared about his students beyond a grade. You can tell he is passionate about what he does.", + "pos": 0.239, + "neu": 0.703, + "neg": 0.058, + "_id": { + "$oid": "6711d683cd60fca157e5ee05" + } + }, + { + "text": "Dr. T really opened my eyes to a lot of things regarding personal issues and a career path in Psychology. He in NO WAY brags about himself, he tells you his accomplishments to show that having a rough background doesn't mean you can't be successful. He is always super encouraging and motivating.", + "pos": 0.165, + "neu": 0.74, + "neg": 0.095, + "_id": { + "$oid": "6711d683cd60fca157e5ee06" + } + }, + { + "text": "Lol at the rate below me. But yeah I sort of understand what the guy below me is talking about. His class structure doesnt feel like a lecture, it indeed feels like a therapy session. Where youre obligated to talk, and he basically will penalize you if you dont participate. Each lecture can be condensed down into like 20 minutes, but he rambles.", + "pos": 0.156, + "neu": 0.807, + "neg": 0.037, + "_id": { + "$oid": "6711d683cd60fca157e5ee07" + } + }, + { + "text": "This guy thinks he's some sort of philosopher in regard to the way he speaks, when in reality his \"wisdom\" is jus common sense. I think he forgets its a college lecture and not a therapy session. He's pretentious and feels the need to flaunt his academic success as if any of us care. He craves for attention and that's why he expects participation!", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5ee08" + } + }, + { + "text": "Hes an okay profesor. He thinks that he knows what his students want but only a certain amount can relate. Sometimes there was scenarios were he would say something and certain students will agree but how about the rest? I understand that participating is part of the learning process but he made it feel like if we dont participate we dont pass.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5ee09" + } + }, + { + "text": "Dr. T is the best professor I had within this department in regards to actually preparing and caring about what we do with our future. You will cry, laugh, makes friends, and even get rid of some because you will learn that you are your greatest strength and no one can take that from you. TAKE THIS COURSE! Get ready to be vulnerable in a good way!", + "pos": 0.303, + "neu": 0.618, + "neg": 0.079, + "_id": { + "$oid": "6711d683cd60fca157e5ee0a" + } + }, + { + "text": "Professor Thompson is a real gem. This class has helped me with which career path I want to take. He's a caring person and sets you up for success. As for the work, there were discussion posts, three career helping assignments, and a final three-page paper. For the most part, participation is the key to a good grade. If you can, take this class!", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d683cd60fca157e5ee0b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d684cd60fca157e5ee0d" + }, + "professor_name": "Brian Wey", + "rating": 2.8, + "department": "Biology department", + "comments": [ + { + "text": "He is a bit intimidating at first and condescending when you ask him questions. His review sheets are on the tests, which is helpful. He says he goes easy on the business majors and I'd have to agree, he tells us what's on the exam and what's not. If you're a bio major, you should probably avoid him since he WILL be extra hard on you!!", + "pos": 0.117, + "neu": 0.797, + "neg": 0.086, + "_id": { + "$oid": "6711d684cd60fca157e5ee0e" + } + }, + { + "text": "He is very rude, disrespectful and not polite. He yells at students in a way that is supposed to appear jokingly. Doesn't like when students ask him questions based on his response back. He responds to emails rudely and un-polite as well. I recommend to not take him.", + "pos": 0.082, + "neu": 0.765, + "neg": 0.153, + "_id": { + "$oid": "6711d684cd60fca157e5ee0f" + } + }, + { + "text": "he is terrible! he is rude and disrespectful to students, even if they're only asking questions. he gives frequent pop quizzes that are filled with tangential information that is barely related to the actual course. he provides zero feedback on either quizzes or exams. run away.", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d684cd60fca157e5ee10" + } + }, + { + "text": "Tooked him in Fall 2022 Semester at Baruch. Dr. Wey is just straight up rude and disrespectful. He yelled at one of his students just because they had a question. He never give any feedback on our assignments. He never tells you which question you've got wrong on your exams. His attitude is just rude. Have fun doing self-teaching with this guy.", + "pos": 0.073, + "neu": 0.799, + "neg": 0.128, + "_id": { + "$oid": "6711d684cd60fca157e5ee11" + } + }, + { + "text": "Just straight up Rude sometimes. I got an 85 on the midterm, no thanks to Dr.Wey. Have fun teaching yourselves with this prof. Yelled at me during the midterm because I had a question. He does give extra credit and reviews are helpful however, I don't appreciate the attitude. reviews are on exam", + "pos": 0.165, + "neu": 0.716, + "neg": 0.119, + "_id": { + "$oid": "6711d684cd60fca157e5ee12" + } + }, + { + "text": "This is not one of the classes you skip every so often. Attendance matters, and if you miss class a bunch of times, it may affect finaid. Sentences go 85mph so record his lectures or ask questions for clarification. Non-accessible and you get a lot of back-sass and nonchalant responses about personal matters. Show up, take notes, & self-teach.", + "pos": 0.061, + "neu": 0.913, + "neg": 0.027, + "_id": { + "$oid": "6711d684cd60fca157e5ee13" + } + }, + { + "text": "You can tell by his lectures that he knows a lot about biology. Online textbook questions that were more for you to practice the knowledge. Only exams are midterm and final. I suggest reading the lessons that will be discussed in the lecture prior to attending them. Is a great baker and adds humor to the class.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee14" + } + }, + { + "text": "He is the best professor I have ever had for a biology course, he does more than just read off the slides and you can always reach him outside of class. Exams were type difficult but doable, his presentation is the \"curve\" so make sure you do well on that presentation. Only negative is that he does not tell you what you did wrong on exams. LOVE HIM", + "pos": 0.189, + "neu": 0.686, + "neg": 0.125, + "_id": { + "$oid": "6711d684cd60fca157e5ee15" + } + }, + { + "text": "Took this guy at Baruch for Genetics. Good teacher, helps outside of class if needed. I feel like he's getting a bad rep because he doesn't put up with laziness. Read the syllabus. If you're lost, don't show up with an IDK shrug. He wants to see you are trying and not there for a handout. Its an upper level course, getting into medicine is hard", + "pos": 0.105, + "neu": 0.773, + "neg": 0.122, + "_id": { + "$oid": "6711d684cd60fca157e5ee16" + } + }, + { + "text": "THIS guy makes genetics extremely difficult for NO REASON AT ALL! I learned by watching youtube videos, not because he taught me anything. He messed up my GPA this semester. THERE'S NO CURVING, NO EXTRA CREDIT, Hard grader! and you won't even know what you messed up on because he doesn't give FEEDBACK! he needs to take a break and breathe!", + "pos": 0.035, + "neu": 0.708, + "neg": 0.257, + "_id": { + "$oid": "6711d684cd60fca157e5ee17" + } + }, + { + "text": "I was very worried about this professor given the reviews on here but he was SO NICEEE AND FAIR. The take home exams and quizzes saved me. His lectures went into detail in a good way and did not bore me like I expected. Most of the time, I was able to answer exam and quiz questions based on the lecture. Makes funny dad jokes, take him", + "pos": 0.253, + "neu": 0.695, + "neg": 0.052, + "_id": { + "$oid": "6711d684cd60fca157e5ee18" + } + }, + { + "text": "Dr. Wey isn't as bad as I read from other comments. He would often make jokes during lectures. Grading is based on 2/3 exams (one is dropped), a presentation and weekly quizzes. They were all short answers and can be found mostly in lectures and textbooks. Lab was very interactive and you learn a lot. Should definitely consider him for microbio.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee19" + } + }, + { + "text": "I've done 4 years in ccny for a bio major and let me just say that Brian is the worst TA I've had to deal with as he was rude, unhelpful, and let me just say this again, he's rude! You as a student shouldn't worry about asking questions in class but he'll make you feel like a moron in front of class for asking anything.", + "pos": 0.065, + "neu": 0.788, + "neg": 0.146, + "_id": { + "$oid": "6711d684cd60fca157e5ee1a" + } + }, + { + "text": "He is never clear on what he wants for his Homeworks and Quizzes. I honestly wouldn't recommend this TA for genetics. He takes off meaningless points and doesn't give feedback. When your quiz shuts down due to a power outage or low connection he doesn't allow you to re-take part of the reason I got the grade I got. Stay Away.", + "pos": 0.044, + "neu": 0.798, + "neg": 0.159, + "_id": { + "$oid": "6711d684cd60fca157e5ee1b" + } + }, + { + "text": "If you are wondering why the reviews are negative all of a sudden its because we recently took our Exam and I wouldn't even call that an Exam. Brian didn't prepare us for exams he spent recitation arguing with students and ranting about cheating. If you can take another TA do it. I wouldn't recommend. He never gave feedback for HW.", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d684cd60fca157e5ee1c" + } + }, + { + "text": "I feel like recitation is supposed to be a place to help students with the lecture course. Brian spent less time teaching and more time being Emersons mouthpiece. He didnt prepare us for exams and didnt help us to understand the material. He spent more time fussing with students then doing his job. Took meaningless points of for HW.", + "pos": 0.08, + "neu": 0.842, + "neg": 0.079, + "_id": { + "$oid": "6711d684cd60fca157e5ee1d" + } + }, + { + "text": "I wouldnt recommend taking Brian as a TA. He gave an immense amount of HW that got more difficult and wordy as you move along and didnt really give any feedback for students to know what they did wrong so they can change it for next HW. He always seemed on edge and argued frequently with students over simple questions he could have answered.", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d684cd60fca157e5ee1e" + } + }, + { + "text": "Like Emerson he also spends an extraneous amount of time worrying about cheating then teaching the material. If I never seen him before I would have thought he was Emerson in disguise. You can ask questions but be prepared for a condescending and rude response. He thinks every question is an attack on him. Weekly HW's are lengthy and wordy.", + "pos": 0.058, + "neu": 0.749, + "neg": 0.193, + "_id": { + "$oid": "6711d684cd60fca157e5ee1f" + } + }, + { + "text": "He spends most of his recitation time arguing with students. No doubt that hes knowledgeable but I didn't learn anything from him. Honestly he's like a rude condescending version of Emerson. He takes points off of HW's for no reason and doesn't set a clear grading criteria for it. He won't give feedback either. HWs get harder and wordy as you go on", + "pos": 0.115, + "neu": 0.733, + "neg": 0.152, + "_id": { + "$oid": "6711d684cd60fca157e5ee20" + } + }, + { + "text": "Brian is pretty good for genetics honestly. He goes over and reviews materials for the lecture and prepares you for the exam. Decent grader and a nice person.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee21" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d684cd60fca157e5ee23" + }, + "professor_name": "Jeremy Hubbell", + "rating": 4.3, + "department": "History department", + "comments": [ + { + "text": "I love this professor - he makes tons of jokes so his lectures are super entertaining", + "pos": 0.52, + "neu": 0.48, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee24" + } + }, + { + "text": "Prof. Hubbell is an amazing teacher. He is interesting in class and really knows his stuff. I learned more in his class than probably all of my other classes combined.He inspires you to learn more and demand more from the world you live in. One of my favorites ever.", + "pos": 0.21, + "neu": 0.759, + "neg": 0.031, + "_id": { + "$oid": "6711d684cd60fca157e5ee25" + } + }, + { + "text": "Prof. Hubbell is an amazing teacher. He is interesting in class and really knows his stuf. I learned more in his class than probably all of my other classes combined.He inspires you to learn more and demand more from the world you live in. One of my favorites ever.", + "pos": 0.21, + "neu": 0.759, + "neg": 0.031, + "_id": { + "$oid": "6711d684cd60fca157e5ee26" + } + }, + { + "text": "Professor Hubbell's class is unforgettable. He changed the way I think about the world, and taught me everything I know about America. Whatever your major is, even if it is fashion, TAKE HIS CLASS ! It should be mandatory, he is just that awesome. Never a dull moment. Thanks Hubbell !", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee27" + } + }, + { + "text": "Let's put it this way. If you havn't taken a class with professor Hubbell, YOUR LIFE IS INCOMPLETE. This man reveals what every American deserves to know. He is brilliant, vivid, and exciting. His lectures will always keep your attention. He is sweet, and hilareous. May seem like hard grader but only wants you to analyze. Gives good grade in theend", + "pos": 0.177, + "neu": 0.805, + "neg": 0.018, + "_id": { + "$oid": "6711d684cd60fca157e5ee28" + } + }, + { + "text": "i think the person under me meant to say \"WILL ALWAYS HELP\" instead of HAPPY lolll.. but professor jeremy hubbell is awesome. funny guy, understanding, always helpful, very down to earth, handsome, and BRILLIANT. amazing person. will always help u out, & teaches what should be taught earlier on in life, erases the myths about the world n liberates!", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee29" + } + }, + { + "text": "AMAZING !!! Hubbell is a GOD. Incredible personality, best teacher I've ever had. He is incredibly understanding, will always happy, and although his papers are challenging HE WILL ALWAYS HAPPY. He never distorts anything, but teaches history the way it should be taught, HE TEACHES THE TRUTH. Greatest teacher ever, easy, reasonable, amazing, FUNNY!", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee2a" + } + }, + { + "text": "if you're a non-history major, please do not take him. he is never happy with what you have to say, he scrutinizes and finds something wrong with everything. the essays are the only hard part of the course, the quizzes are pretty easy, take home, and the midterm is fair.", + "pos": 0.179, + "neu": 0.699, + "neg": 0.122, + "_id": { + "$oid": "6711d684cd60fca157e5ee2b" + } + }, + { + "text": "If you go to school to get your attendance, don't take him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee2c" + } + }, + { + "text": "Nothing is ever good enough for the Professor. His class is so confusing. He distorts everything you know about history. If you think you know your wrong he is very in depth and a tough grader. If History is your major then this is the class for you. If you are just taking the class as a requirement I suggest another professor. overall Diffucult", + "pos": 0.0, + "neu": 0.829, + "neg": 0.171, + "_id": { + "$oid": "6711d684cd60fca157e5ee2d" + } + }, + { + "text": "If you are like me, a full time senior with an internship and working nights to pay your bills, I highly recommend you choose another teacher. I have spent more time on work in this class than all three of my other \"more important\" courses combined. Some advice, check blackboard everyday & take detailed notes. Great teacher for history majors.", + "pos": 0.169, + "neu": 0.81, + "neg": 0.021, + "_id": { + "$oid": "6711d684cd60fca157e5ee2e" + } + }, + { + "text": "grades papers strangely, if you think you did well think again. but AWESOME professor. i appreciate us history so much more after having taken the class with him. because he understands that students have a lotta other classes hes a very fair grader. if your grades are well above the average (which is very possible)then you will get the A.", + "pos": 0.243, + "neu": 0.735, + "neg": 0.022, + "_id": { + "$oid": "6711d684cd60fca157e5ee2f" + } + }, + { + "text": "He is a good prof. & his class is a good way to better your GPA. Not very hard. Gives quizes which he also provides some of the ans in class, pay attention. His lectures are confusing at times.Take home midterm.But the final is kinda hard. Three papers to do,the first one he lets u redo. Over all good professor and good class.", + "pos": 0.215, + "neu": 0.726, + "neg": 0.059, + "_id": { + "$oid": "6711d684cd60fca157e5ee30" + } + }, + { + "text": "He is an asset to the history department. I hate history but he made me love it. Take him if you can.", + "pos": 0.261, + "neu": 0.657, + "neg": 0.081, + "_id": { + "$oid": "6711d684cd60fca157e5ee31" + } + }, + { + "text": "Let me just say that I did not want to take USSO, nor did I think I would enjoy it. Professor Hubbell makes the class extremely enjoyable. He is funny, clever, and the most helpful professor I have had thus far. You do have to work hard for your grade, but its worth it, because you really learn. He's the best.", + "pos": 0.252, + "neu": 0.716, + "neg": 0.032, + "_id": { + "$oid": "6711d684cd60fca157e5ee32" + } + }, + { + "text": "Amazing professor, has a great sense of humor he would say things that made me cry in laughter in class and he went on and on!! also very organized and clear with what he expects he has his moments of ignorance on the topic he teaches but for the most part he knows what hes talking about i highly recommend him he's very understanding", + "pos": 0.198, + "neu": 0.751, + "neg": 0.051, + "_id": { + "$oid": "6711d684cd60fca157e5ee33" + } + }, + { + "text": "Professor Hubbel is great! He is young and provides a refreshing teaching style to ccny. He expects you to read and write but you will learn the most by simply going to class and listening while participating in the discussion.", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee34" + } + }, + { + "text": "he teaches as if he was back in history while it was happening..which makes it very interesting n not like ur usual history classes but he does give u alot of work if ur lookin for an easy class this isnt it but if u have alot of time then i would recommend him", + "pos": 0.15, + "neu": 0.824, + "neg": 0.026, + "_id": { + "$oid": "6711d684cd60fca157e5ee35" + } + }, + { + "text": "Knows his stuff, expects you to learn your stuff. Enjoyed the class", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee36" + } + }, + { + "text": "He covers alot of material,gives tests,exams,three papers,extra credit option and does it well. I esp. enjoyed his coverage of the Native Americans.He made me do my papers over,very anal about being thorough but he cares. He's one of my favorite professors.Good story teller,indeed!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d684cd60fca157e5ee37" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d685cd60fca157e5ee39" + }, + "professor_name": "Steve Ocken", + "rating": 2.1, + "department": "Mathematics department", + "comments": [ + { + "text": "I'm surprised to see so many bad comments, Ocken was amazing when I took him for 195 a few years ago. His classes were clear, and he gave lots of feedback. He was also willing to sit down with me after class and go over all the algebra my 190 professor refused to teach. Ocken renewed my interest in mathematics.", + "pos": 0.159, + "neu": 0.758, + "neg": 0.084, + "_id": { + "$oid": "6711d685cd60fca157e5ee3a" + } + }, + { + "text": "Does not have the greatest teaching method. Very dull and boring so its hard to pay attention especially at 10am. Crazy about attendance and a hard grader. Study and you'll be fine", + "pos": 0.043, + "neu": 0.573, + "neg": 0.384, + "_id": { + "$oid": "6711d685cd60fca157e5ee3b" + } + }, + { + "text": "DO NOT TAKE HIM, he is really unfair with grading, unless you are a teacher suck up don't try, he is really boring and tests have sometimes nothing to do with the homework he gives", + "pos": 0.0, + "neu": 0.783, + "neg": 0.217, + "_id": { + "$oid": "6711d685cd60fca157e5ee3c" + } + }, + { + "text": "Lousy professor, comes to class completely unprepared, doesn't drop the lowest score. (I hate ccny policy, because the professor haven't taught calc 2 for two years, and then he was reasigned).", + "pos": 0.111, + "neu": 0.702, + "neg": 0.187, + "_id": { + "$oid": "6711d685cd60fca157e5ee3d" + } + }, + { + "text": "Ocken is such an amazing professor! His explanations are clear and he REALLY CARES about his students, unlike some professors that barely know our names! He gives you a huge opportunity to do well in his class. His exams are very easy. If you study and do you part, there will be great rewards. If you wanna LEARN (not JUST get an A), take this guy!", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee3e" + } + }, + { + "text": "doesntn't have a clear summer session curriculum prepared. He treats it just like a regular semester. He knows math inside out im sure but he is not a responsible teacher. grading methods are ridiculus. he and math chairman are buddies so dont think that you can fight for your grade. He is anything but a teacher. A grumpy old**** is what he is.", + "pos": 0.07, + "neu": 0.823, + "neg": 0.107, + "_id": { + "$oid": "6711d685cd60fca157e5ee3f" + } + }, + { + "text": "honestly he is an average professor, he will help u if u ask, his teaching methods are ok, its just that when it comes to grading he is horrible at that, he is not fair at all when it comes to grading", + "pos": 0.116, + "neu": 0.773, + "neg": 0.111, + "_id": { + "$oid": "6711d685cd60fca157e5ee40" + } + }, + { + "text": "He's one of the teachers who i think is a good pro prof.. It's just students have to study hard themselves..anyways its college not some high school...He's Very Informative!!", + "pos": 0.109, + "neu": 0.847, + "neg": 0.044, + "_id": { + "$oid": "6711d685cd60fca157e5ee41" + } + }, + { + "text": "He can't teach very well. I think he should retire. Plus he grades very badly. If you don't have the right answers you're sure to get very little or no partial credit. He takes off points off your grade for lateness. DON'T take the class with him!", + "pos": 0.042, + "neu": 0.772, + "neg": 0.185, + "_id": { + "$oid": "6711d685cd60fca157e5ee42" + } + }, + { + "text": "he really bad!!! if you wanna past plaese dont take wt. him!!!!", + "pos": 0.0, + "neu": 0.689, + "neg": 0.311, + "_id": { + "$oid": "6711d685cd60fca157e5ee43" + } + }, + { + "text": "Unbelievably useless. He can't teach and is very disinterested. Yes, he will offer help outside of class, but the gap between what he teaches and what is on the tests is VERY big. Inconsistent grader: I lost 10 pts. for a copying mistake and only 2 for a fundamental misunderstanding of the topic. HELLO?", + "pos": 0.06, + "neu": 0.754, + "neg": 0.185, + "_id": { + "$oid": "6711d685cd60fca157e5ee44" + } + }, + { + "text": "The WORST professor in the world. He needs to quit teaching or retired, because he CAN\u00a1\u00afT TEACH. He should be fired!!!! Awful grader, extremely uncooperative. In my life I had never fail a math class until I met him. I know he is the problem because I am currently take the class over with prof Retamoso, who is an excellent professor and I am doing", + "pos": 0.081, + "neu": 0.73, + "neg": 0.189, + "_id": { + "$oid": "6711d685cd60fca157e5ee45" + } + }, + { + "text": "The worst of all", + "pos": 0.0, + "neu": 0.423, + "neg": 0.577, + "_id": { + "$oid": "6711d685cd60fca157e5ee46" + } + }, + { + "text": "He's ok for a math prof. He's willing to help after class and explain things which is a big plus. You need to study outside of class b/c he only introduces the basics, its up to you to learn the rest. His tests are challenging and he's an inconsistant grader; you can get screwed for something stupid. Homework and attendence are checked regularly.", + "pos": 0.091, + "neu": 0.816, + "neg": 0.093, + "_id": { + "$oid": "6711d685cd60fca157e5ee47" + } + }, + { + "text": "You don't learn much in this class. You have to really know the material before class in order to understand because you will not understand anything in class. I learned most of the material on my own, doing homework or during review before a test. A great deal of effort is necessary, as well as high test grades. Attendance is a BIG deal.", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee48" + } + }, + { + "text": "OMG!!! BAD BAD BAD! totally a harsh grader! class is extremely boring. Doesnt explain much. Does not give more than 1 sample problem on topic. You are basically on your own. If your not a math person dont TAKE HIM!", + "pos": 0.0, + "neu": 0.603, + "neg": 0.397, + "_id": { + "$oid": "6711d685cd60fca157e5ee49" + } + }, + { + "text": "Very clear in presenting the material. He doesnt go for showing off how smart he is by making the material hard. Very generous with points on an exam just as long as you know what you are doing. Overall, do the homework when he assigns it and you will pass the exams!! Good guy!", + "pos": 0.205, + "neu": 0.773, + "neg": 0.022, + "_id": { + "$oid": "6711d685cd60fca157e5ee4a" + } + }, + { + "text": "horrible professor, does not teach good, makes a lot of mistakes on board,i dont know where he gets his exam questions from,most people either fail or drop his class!he should be fired! he doesn't know how to teach and does not care! very unhelpful!", + "pos": 0.0, + "neu": 0.634, + "neg": 0.366, + "_id": { + "$oid": "6711d685cd60fca157e5ee4b" + } + }, + { + "text": "he is an ok professor, make sure you know your test cause its cumulative.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee4c" + } + }, + { + "text": "i don't know what the other posters are talking about. professor ocken expects you to put in the work, but he is an extremely generous grader. i made a serious error which i thought would cost me 10 points (out of 20) on an exam. he deducted 2. he's not the most engaging guy, but he knows math.", + "pos": 0.073, + "neu": 0.809, + "neg": 0.118, + "_id": { + "$oid": "6711d685cd60fca157e5ee4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d685cd60fca157e5ee4f" + }, + "professor_name": "David Lohman", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "It was fast paced consisting of a quiz each day and some other assignments but they really were not bad at all. Watch lectures or videos and read material given before class to be able to actually contribute in class, it goes a long way. He's super energetic, funny, and wants to make sure all his students have an understanding of the material.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee50" + } + }, + { + "text": "Dr Lohman is a gem sitting at the marshak buiding with all his science and knowledge.\nHe is a well respected man with a lot of opportunities to offer and a lot to learn from. He makes his lectures interesting, full of science and knowledge and is indeed a man who cares about his students\nWill definitely take him again", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee51" + } + }, + { + "text": "This class is so much work, read the textbook chapter, watch the lecture recording, watch videos, and take a daily quiz EVERYDAY. This man stressed me out so much and I had to watch animals get it on for 50 minutes. My eyes began to hurt. Quizzes are easy, exams are fair but get ready to read and take note of everything. Good luck to you all.", + "pos": 0.187, + "neu": 0.763, + "neg": 0.05, + "_id": { + "$oid": "6711d685cd60fca157e5ee52" + } + }, + { + "text": "Horrible teaching method, the amount of workload he gives is ridiculous. Hours of textbook reading, hours of videos after videos and its impossible to retain this much material just to fail his assignments. Avoid.", + "pos": 0.0, + "neu": 0.719, + "neg": 0.281, + "_id": { + "$oid": "6711d685cd60fca157e5ee53" + } + }, + { + "text": "Simply put, one of the best. You will not regret taking him", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee54" + } + }, + { + "text": "Prof. David is really good, his lectures are all you need for the midterm and final. But you do have to watch long videos and read papers for weekly quizzes which is 20% so that's a lot of work per week. There are just so many things in the lab which is 50% so be aware of that, but overall everything was good because the TA Melenia was really kind.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee55" + } + }, + { + "text": "This is one of those slightly boring required classes, but Dr. Lohman really does his best to keep students engaged. His lectures are clear, and you can tell that he is very passionate about what he does. This class only has lecture once a week, but be prepared to spend a lot of time reading and watching videos.", + "pos": 0.277, + "neu": 0.702, + "neg": 0.02, + "_id": { + "$oid": "6711d685cd60fca157e5ee56" + } + }, + { + "text": "Respected man, he likes to teach and interact with students. Material isn't too hard, tests contain a lot of material but are manageable. He does not like providing slides so students can learn to take concise notes. Go to his lectures and try to understand the material. You need to work to receive an A in this class but it is definitely doable.", + "pos": 0.125, + "neu": 0.837, + "neg": 0.038, + "_id": { + "$oid": "6711d685cd60fca157e5ee57" + } + }, + { + "text": "Excellent! Very engaging class. The topics are fascinating, and tests are straightforward. The assigned homework is useful for acquiring relevant skills.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee58" + } + }, + { + "text": "This is not a relaxing class. Your best way to get an A is to record the lectures, only if you dont want to cram 2 days before the exams. Professor lohman is an alright guy, but his way of presenting the material is not ok. He had long paragraphs on the slides and took 2 seconds to explain each. His exams are crazy specific, specially the short.", + "pos": 0.056, + "neu": 0.862, + "neg": 0.082, + "_id": { + "$oid": "6711d685cd60fca157e5ee59" + } + }, + { + "text": "I wanted to like Dr. Lohman, but he made it too hard for students. He made exams way to specific, so if you are a memorization god then this class should be okay for you. The assignments are okay, but the labs had no correlation with Ecology. I think I had a better time in Orgo than this class. Could have been more interesting.", + "pos": 0.219, + "neu": 0.724, + "neg": 0.057, + "_id": { + "$oid": "6711d685cd60fca157e5ee5a" + } + }, + { + "text": "Dr. Lohman is too complicated. This class should not have been so complicated. He runs through the slides and says he should take notes while he speaks, yet he write paragraph in each slide. If we complain he answers with major attitude. His tests are mostly off the slides but too specific. Didnt learn anything.", + "pos": 0.0, + "neu": 0.969, + "neg": 0.031, + "_id": { + "$oid": "6711d685cd60fca157e5ee5b" + } + }, + { + "text": "Lohman is a good person. But his new teaching style is seriously out of wack. He says he's not giving us the slides. Fine. But zooms through each slide with so much information on them. and then if someone complains he gives major attitude. His exams were okay. But you honestly do have to study a great amount. Honestly, not an easy class.", + "pos": 0.239, + "neu": 0.629, + "neg": 0.132, + "_id": { + "$oid": "6711d685cd60fca157e5ee5c" + } + }, + { + "text": "He gives slides without text before class bc according to this research article he sent the whole class, students learn better that way. Only if a bunch of students request, hell give out slides with text but 1-2 days before the test. In class he goes through the slides quickly and although we werent able to write it all down he continues.", + "pos": 0.03, + "neu": 0.927, + "neg": 0.043, + "_id": { + "$oid": "6711d685cd60fca157e5ee5d" + } + }, + { + "text": "Not sure how this professor was in the past but it seems like he has CHANGED. Gave test with mainly his own specific examples of ecology terms, and was barely written in a way that connects it to his slides or what the textbook shows. Handful of the class wasn't doing to well, he's a nice guy but doesn't seem to care how students are performing.", + "pos": 0.093, + "neu": 0.812, + "neg": 0.095, + "_id": { + "$oid": "6711d685cd60fca157e5ee5e" + } + }, + { + "text": "Awesome, smart, helpful professor. A solid gem at ccny.", + "pos": 0.691, + "neu": 0.309, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee5f" + } + }, + { + "text": "I took two classes with Prof. Lohman, and did well in both of them thanks to his teaching style. He makes things very easy to understand and responds well to all questions. I wish I had more professors like him!!", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee60" + } + }, + { + "text": "teacher is well prepared and lectures are long and interactive. i didn't know what to expect out of ecology and evolution, but after the first few classes I began liking it more and more. i recommend both the class and the professor. we need more like this", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee61" + } + }, + { + "text": "Really good teacher. Would recommend to my colleagues. If you're reading this, Professor Lohman, you and your class are appreciated!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee62" + } + }, + { + "text": "good biology professor", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d685cd60fca157e5ee63" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d686cd60fca157e5ee65" + }, + "professor_name": "Jun Wu", + "rating": 3, + "department": "Computer Science department", + "comments": [ + { + "text": "Oh Brother, this guy stinks! He can't teach so he spends most of his time reading the slides. He's very strict with attendance, and has a very thick accent. His grading policy is fine but he grades you like a magician: If he senses you have an high aura you pass, if not gl. \n\n\nAlso whoever said \"he has issues\" couldn't be more correct.", + "pos": 0.073, + "neu": 0.904, + "neg": 0.022, + "_id": { + "$oid": "6711d686cd60fca157e5ee66" + } + }, + { + "text": "BAD! I don't have a bad grade, somehow fell on the good part of his grading preference. But if he thinks you arent a code person, he will tank your grades. He has no interest in teaching and just reads his slides (for 2 hours). His accent is very hard to understand. Picks on you for using the phone during the lecture. Strict attendance, summer btw.", + "pos": 0.053, + "neu": 0.835, + "neg": 0.112, + "_id": { + "$oid": "6711d686cd60fca157e5ee67" + } + }, + { + "text": "Class is straightforward, everything is on ZyBooks. Unfortunately his 50 minute \"lecture\" doesn't do much justice. He's not difficult, it's just ZyBooks covers most of it, and usually if you have a question, he urges you to tell your lab instructor first. Bro is making BANK", + "pos": 0.042, + "neu": 0.855, + "neg": 0.103, + "_id": { + "$oid": "6711d686cd60fca157e5ee68" + } + }, + { + "text": "Surprised by the negative reviews. I took 'Intro to Computing' with Jun Wu, and only have good things to say. All coursework (Homework, Labs, Exams..) is from an interactive online textbook, so you can track your grade in real time. The downside is you have to buy access to the workbook.", + "pos": 0.083, + "neu": 0.817, + "neg": 0.099, + "_id": { + "$oid": "6711d686cd60fca157e5ee69" + } + }, + { + "text": "he doesnt teach, p much a self-taught class. HW helps tho. Only one exam (final). Attendance used to be optional, now mandatory as of fall '23. And dont get me started on his attendance policy... he made it up midway thru the semester, that if ur 5+ min late, ur marked absent.. rly rude to anyone who was \"late\"/challenged his policy. weird asf..", + "pos": 0.058, + "neu": 0.873, + "neg": 0.07, + "_id": { + "$oid": "6711d686cd60fca157e5ee6a" + } + }, + { + "text": "If you already have coding experience with Python or any other language, take him because it's an easy class overall. He just goes over zybooks during lecture. If you have no coding experience, I don't think he will be the right prof for you because he doesn't really teach. But honestly, you can teach yourself, Python is not that difficult.", + "pos": 0.135, + "neu": 0.841, + "neg": 0.024, + "_id": { + "$oid": "6711d686cd60fca157e5ee6b" + } + }, + { + "text": "Prof. Wu care about his students. Sometimes he is strict with us, but that's for our own good.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee6c" + } + }, + { + "text": "All work is on Zybooks. Just complete them and that's basically it. Attendance is mandatory. He just goes over books every class. That it. Easy to grade, but class it quite useless as you basically learn from what ZYbooks teach you. Man looks and sounds like Jet li, not capping.", + "pos": 0.112, + "neu": 0.814, + "neg": 0.073, + "_id": { + "$oid": "6711d686cd60fca157e5ee6d" + } + }, + { + "text": "Data Structures is already a hard class, you guys need to know that first. He gave us six projects (worth 40%) to work throughout the summer and a final exam (worth 50%) so make sure you get that work done. Make sure when you read the textbook, practice the self-exercise cause some of the test questions comes from there.", + "pos": 0.135, + "neu": 0.843, + "neg": 0.022, + "_id": { + "$oid": "6711d686cd60fca157e5ee6e" + } + }, + { + "text": "Quite frankly. The professor lacks structure in the presentation of information. For a class where attendance of the lecture is required, the lecture is really quite useless. CS102 students are better off spending their lecture time going to the library and studying. Sadly you lose a letter grade for making that (honestly reasonable) choice.", + "pos": 0.093, + "neu": 0.768, + "neg": 0.139, + "_id": { + "$oid": "6711d686cd60fca157e5ee6f" + } + }, + { + "text": "He does not explain anything, attendance is not mandatory. Your entire grade is based on a Zybooks, he will assign homework every week so as long as you do the homework, you will get an easy A+", + "pos": 0.074, + "neu": 0.895, + "neg": 0.031, + "_id": { + "$oid": "6711d686cd60fca157e5ee70" + } + }, + { + "text": "attendance isn't mandatory other than recitation. Everything is on zylabs", + "pos": 0.0, + "neu": 0.88, + "neg": 0.12, + "_id": { + "$oid": "6711d686cd60fca157e5ee71" + } + }, + { + "text": "he is useless as a professor, but the class is extremely easy. your entire grade basically comes from an online homework system, so as long as you're on top of it, you should get a very easy A+.", + "pos": 0.231, + "neu": 0.728, + "neg": 0.041, + "_id": { + "$oid": "6711d686cd60fca157e5ee72" + } + }, + { + "text": "He has issues period.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee73" + } + }, + { + "text": "I am taking a Summer class nowadays with prof. Wu and I agree with the other rates below. This professor discriminates against one student and keeps saying harsh things. We all advocate for her to file a discrimination form against him, hopefully, she will do it, but it seems that she is a nice girl and does not want to harm him.", + "pos": 0.157, + "neu": 0.796, + "neg": 0.047, + "_id": { + "$oid": "6711d686cd60fca157e5ee74" + } + }, + { + "text": "Please do not believe all the positive comments because he rates himself. It is a useless lecture and he is arrogant and racist. He discriminates against one student because she asks him for additional exercise to help her practice the course. Stay away from him.", + "pos": 0.149, + "neu": 0.677, + "neg": 0.174, + "_id": { + "$oid": "6711d686cd60fca157e5ee75" + } + }, + { + "text": "Yes, he is racist and has social class issues plus arrogance.", + "pos": 0.149, + "neu": 0.442, + "neg": 0.409, + "_id": { + "$oid": "6711d686cd60fca157e5ee76" + } + }, + { + "text": "Lectures are extremely useless. 80 percent of this class is completion-based hw. Final was 20 percent and should be okay. Be careful with online resources because you might get caught if you don't change your code. DO NOT COPY! This class takes very little of your time which is great. Recitation is supposed to be mandatory but doesn't affect grade.", + "pos": 0.106, + "neu": 0.862, + "neg": 0.032, + "_id": { + "$oid": "6711d686cd60fca157e5ee77" + } + }, + { + "text": "If you're taking this class with Prof. Wu then make sure you've got other heavy classes during the semester. This class will take up only about an hour of your time every week. Very simple class to pass so you want to put your effort and time into another harder class.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee78" + } + }, + { + "text": "This prof is literally useless. He does not teach. The only reason you see high ratings for him is because it's SO easy to pass. Just do all the online work and you get an A, 100% self-teach. If you want to actually learn from him, good luck cuz you won't. His mic is muffled every lecture and he just reviews hw which you can do on your own.", + "pos": 0.151, + "neu": 0.814, + "neg": 0.036, + "_id": { + "$oid": "6711d686cd60fca157e5ee79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d686cd60fca157e5ee7b" + }, + "professor_name": "Joshua Cochran", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "THE WORKLOAD IS RIDICULOUS! HE IS A NICE PERSON BUT THE CLASS IS JUST SOOO BORING. I WAS AN ENGLISH MAJOR AND AFTER TAKING HIS CLASS I DEVELOPED HATE FOR THE SUBJECT HE MAKES IT SO TEDIOUS!", + "pos": 0.042, + "neu": 0.73, + "neg": 0.228, + "_id": { + "$oid": "6711d686cd60fca157e5ee7c" + } + }, + { + "text": "Best prof I've had at CCNY. He's very realistic, humble, and helpful. I really enjoyed his class.", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee7d" + } + }, + { + "text": "Prof. Cochran has a genuine passion for teaching and helping his students reach their potentional. His ability to create a friendly atmohsphere in the class room makes him a very amiable fellow. Dont take this class however if you do not like writing. There is a massive workload for you. Despite all the work, id recommend him. We'll miss you Joshua", + "pos": 0.227, + "neu": 0.721, + "neg": 0.051, + "_id": { + "$oid": "6711d686cd60fca157e5ee7e" + } + }, + { + "text": "Best professor I've had at City, he's so realistic and charismatic, very down to earth. He made the class very interesting. You do have to read all the course materials and participate. Its hard work but not bad at all. Oh and the textbook is heavy and you must carry it to class.", + "pos": 0.143, + "neu": 0.837, + "neg": 0.02, + "_id": { + "$oid": "6711d686cd60fca157e5ee7f" + } + }, + { + "text": "Needs to take a chill pill with his papers..if you enjoy reading and writing papers - this is the class - not a fair grader.", + "pos": 0.114, + "neu": 0.817, + "neg": 0.07, + "_id": { + "$oid": "6711d686cd60fca157e5ee80" + } + }, + { + "text": "It is very hard to keep your eyes open in his class because he is extremely boring. He tries to make it fun by telling corny jokes. And he is a tough grader. Highly recommended if you enjoy snooze fests and alot of discouragement.", + "pos": 0.191, + "neu": 0.65, + "neg": 0.159, + "_id": { + "$oid": "6711d686cd60fca157e5ee81" + } + }, + { + "text": "He is the best english professor. He is funny and makes the class easy and enjoyable. He helps you in anyway he can. He is a fair grader.", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee82" + } + }, + { + "text": "he's realllllly funny.....i was dying in classs hes the best forreal...he made me love english when i really hated it..i'd take his class over if i had the chance...u shud really take him hes cool ppl", + "pos": 0.227, + "neu": 0.678, + "neg": 0.095, + "_id": { + "$oid": "6711d686cd60fca157e5ee83" + } + }, + { + "text": "Professor J. Cochran has a way of making you enjoy and really appreciate the course material.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee84" + } + }, + { + "text": "He's a great professor. If you have any problem, you could talk with him. He always give great advices.", + "pos": 0.305, + "neu": 0.595, + "neg": 0.1, + "_id": { + "$oid": "6711d686cd60fca157e5ee85" + } + }, + { + "text": "amazing lots of writing but its worth it, very funny, but not an easy A if you dont like to write", + "pos": 0.293, + "neu": 0.519, + "neg": 0.187, + "_id": { + "$oid": "6711d686cd60fca157e5ee86" + } + }, + { + "text": "Best teacher everr!!", + "pos": 0.705, + "neu": 0.295, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee87" + } + }, + { + "text": "Cochran is a very lively professor who makes what to some may be, old and boring literature, as interesting and relevant as possible. Reads the text in class and breaks it down. Loves student imput and opinions. Very fond of his profession and subject. Take this course! Attendance a must.", + "pos": 0.217, + "neu": 0.745, + "neg": 0.038, + "_id": { + "$oid": "6711d686cd60fca157e5ee88" + } + }, + { + "text": "He is an amazing professor. The professor who loves the subject and who makes the studets to love it. He creates very enjoyable environment. Good grades are guaranteed if you read your assignments and participate in class discussions. Great!", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee89" + } + }, + { + "text": "well hes a good professor and he makes everything easy his essays werent bad i mean i did pretty good it was good i recomend taking him there are quizez after every reading that u do but its all good i mean he\"ll make some adjustments if u dnt passs them hehehheh any hes great take him.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee8a" + } + }, + { + "text": "He's really awesome! It's not an easy class, you have to work hard and pay attention but he makes it fun and it all pays off in the end.", + "pos": 0.209, + "neu": 0.675, + "neg": 0.115, + "_id": { + "$oid": "6711d686cd60fca157e5ee8b" + } + }, + { + "text": "Great Professor. Trys to make the class interesting and he's very helpful", + "pos": 0.524, + "neu": 0.476, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee8c" + } + }, + { + "text": "He is a great teacher. He is funny and likes to engage his students in thought provoking discussions. He is one of my fav prof. His assignments make the class interesting. I highly recommend his class. This prof will take time out to help and get to know his students unlike others who are too busy.", + "pos": 0.324, + "neu": 0.651, + "neg": 0.025, + "_id": { + "$oid": "6711d686cd60fca157e5ee8d" + } + }, + { + "text": "He is the best professor I've taken at ccny so far. He is very helpful and cares that his student engaged in class participation. He also gives you a chance to raise your grade through extra credit.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee8e" + } + }, + { + "text": "This teacher is great. He's extra funny and make sthe class enjoyable plus he's young and up on what your into. If your going to take ENG110 find him as soon as possible.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d686cd60fca157e5ee8f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d687cd60fca157e5ee91" + }, + "professor_name": "Miriam Jimenez", + "rating": 3.9, + "department": "Political Science department", + "comments": [ + { + "text": "So enthusiastic, great teacher! Try to take a class with her whenever you can!", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5ee92" + } + }, + { + "text": "I had her in two great classes: very intelligent, professional and loves educating. Makes you use your brain! In the elective, students were more even; in Am. govt (a core-req.) there's all, including those not well adapted to college and those who don't wanna work.) Prof Jimenez is great; she's fair, and the work is challenging, but not too hard.", + "pos": 0.211, + "neu": 0.768, + "neg": 0.021, + "_id": { + "$oid": "6711d687cd60fca157e5ee93" + } + }, + { + "text": "Shes a good professor and gives ok work.", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5ee94" + } + }, + { + "text": "Professor Jimenez is one of my very best professors ever. She is trully professional, organized, and experienced. Clear and coherent. Demanding, too. She is disciplined and highly educated. She is awesome if you are the kind of studnet who is really interesting in learning and understanding. Her electives are great, too.", + "pos": 0.281, + "neu": 0.69, + "neg": 0.029, + "_id": { + "$oid": "6711d687cd60fca157e5ee95" + } + }, + { + "text": "Prof. Jimenez is the worst profesor Ive Ever had in Lehman... I will never take a class with her again... She is not understandable, she treats people like children giving assigned seats you cant use the bathroom.... And doesnt really stay on subject", + "pos": 0.1, + "neu": 0.816, + "neg": 0.084, + "_id": { + "$oid": "6711d687cd60fca157e5ee96" + } + }, + { + "text": "I have her for my Latinos in the United States at Lehman College and I appreciate her lessons. Every lesson with her is not a class, but an understanding into the social frameworks and influence of the Latino culture. You would have to come to class prepared with homework read and a readiness to learn from her. Her lectures are great.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5ee97" + } + }, + { + "text": "Best Sumer Prof I've Evr Had, She Lovs What She Does & Lovs Educating Students. Her Class Wasn't Boring At All & Went By Fast, Considering It Was 4 Days A week 4 3 Hours. If Your Taking PSC 101 In The Summer Pick Her, You're Learn & Get A Good Grade. However, Do Your Part As Well. She Doesn't Just Hand Out Grades. But Her Class Isn't 2 Hard At All", + "pos": 0.117, + "neu": 0.859, + "neg": 0.024, + "_id": { + "$oid": "6711d687cd60fca157e5ee98" + } + }, + { + "text": "She is the best! Her classes may seem like easy only because she's a great teacher. She uses many ways to teach, takes you step by step, encourages you, and cares about class environments. Read the book, participate, do the short homeworks, and be on time. She's engaging and helpful. Great class!", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5ee99" + } + }, + { + "text": "Making an \"A\" is easy with her. I like her accent. Read your text book before class, pay attention to what she ask you to pay attention to then you get and \"A\" without writing that finals.", + "pos": 0.131, + "neu": 0.801, + "neg": 0.068, + "_id": { + "$oid": "6711d687cd60fca157e5ee9a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d687cd60fca157e5ee9b" + } + }, + { + "text": "She is very helpful and understanding. Her exams are multiple choices and at 2-3 questions. I definitely would take another class with her.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5ee9c" + } + }, + { + "text": "I took this class in the Summer of 2006 at Queens College for my major. Ms. Jimenez is a very nice and lovely person and quite knowledgeable in Political Science. She indeed knows her material but sadly the class was too much for the limited time allotted. Her exams are fair and she gives plenty of opportunities to improve your grade. Good class!", + "pos": 0.237, + "neu": 0.688, + "neg": 0.076, + "_id": { + "$oid": "6711d687cd60fca157e5ee9d" + } + }, + { + "text": "She is really good, and she rewards your effort, but do not be mistaken: you have to do your part and work. She knows her stuff, puts lots of enthusiasm in her teaching, and the book is good. She is very receptive, too. I liked this class, but since I had a different major, I had to work seriously. It was worth, though...", + "pos": 0.265, + "neu": 0.709, + "neg": 0.026, + "_id": { + "$oid": "6711d687cd60fca157e5ee9e" + } + }, + { + "text": "She is a really good. Just go to class, participate if you want, study the book and prepare for the exams (3 of them) She doesnt give you homework (only extra-credit little papers) If you pass with \"A\" two of her midterms, you dont have to take the final, and you pass the class with A. Is that good or what? (Believe me, I'm a lazy guy)", + "pos": 0.101, + "neu": 0.864, + "neg": 0.034, + "_id": { + "$oid": "6711d687cd60fca157e5ee9f" + } + }, + { + "text": "She truley is a great teacher and a good listener. On top of that she assigns textbooks that are easy to read. Come to class participate and read at home and her exams will be a breeze. Trust me she isnt hard at all", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eea0" + } + }, + { + "text": "I really enjoyed this class. Not difficult at all read the book, pay attention in class, and participate and you a bound to get an A. Very caring professor. Has certain class rules about lateness and eating in class but nothing extreme.", + "pos": 0.167, + "neu": 0.807, + "neg": 0.026, + "_id": { + "$oid": "6711d687cd60fca157e5eea1" + } + }, + { + "text": "I like her very much, easy to listen too, very helpful, knows her stuff", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eea2" + } + }, + { + "text": "Good teacher, it's hard to understand her accent sometimes, but she okay. Keep up with the reading and you'll be okay.", + "pos": 0.268, + "neu": 0.684, + "neg": 0.048, + "_id": { + "$oid": "6711d687cd60fca157e5eea3" + } + }, + { + "text": "she needs to work alot on her english and communication skills.she says in class exact opposite of what the book says-alot of confusion.not a good teacher at all, but she's smart-who cares, you're in school for a grade, aren't you. too much work for a low grade, drop her if you can-warn others too", + "pos": 0.097, + "neu": 0.816, + "neg": 0.087, + "_id": { + "$oid": "6711d687cd60fca157e5eea4" + } + }, + { + "text": "She is very good. You can realize many interesting things, as tries hard to make more complex arguments. (I wanted to be a Pol Sci major after I took her class, but I have to say that many students only want to pass the core requirement...) I did like her a lot.", + "pos": 0.15, + "neu": 0.795, + "neg": 0.055, + "_id": { + "$oid": "6711d687cd60fca157e5eea5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d687cd60fca157e5eea7" + }, + "professor_name": "Jean Krasno", + "rating": 4.2, + "department": "International Studies department", + "comments": [ + { + "text": "Your grade is based on 1 midterm and 1 final.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eea8" + } + }, + { + "text": "Amazing professor! She makes the class very engaging and intriguing. You will learn lot about the UN and International institutions. Weekly reading response 300 words each, 1 midterm and 1 final.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eea9" + } + }, + { + "text": "Krasno is a nice professor, she care about student and her lesson are so fun and engaeable. You will learn lot about the UN and International institutions.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eeaa" + } + }, + { + "text": "She seems a caring and likable professor at first. HOWEVER, she is also lazy and does not listen sometimes. Test question repeats homework questions and has only 300 words write as essays. Grades are only based on mid-term and final, which booms the grade if u underperform at one of them, which also makes participation and homework don't matter.", + "pos": 0.051, + "neu": 0.892, + "neg": 0.057, + "_id": { + "$oid": "6711d687cd60fca157e5eeab" + } + }, + { + "text": "Although Prof. Krasno does know much about the UN most of the time Krasno is not receptive neither to respond to general emails and when asking for guidance on assignment. One sticking point is that often the grade is based on one assignment this makes it hard to gauge your progress in the course. That is a lazy way to teach.", + "pos": 0.043, + "neu": 0.896, + "neg": 0.06, + "_id": { + "$oid": "6711d687cd60fca157e5eeac" + } + }, + { + "text": "Prof. Krasno is amazing! her class is quite simple, she does not give papers. only one midterm and one final which are simple but if you don't proofread it you might get a bad grade on one of those. I messed up on the midterm but she was kind enough to give me extra credit. If you focus on the exams you will get an A.", + "pos": 0.134, + "neu": 0.767, + "neg": 0.099, + "_id": { + "$oid": "6711d687cd60fca157e5eead" + } + }, + { + "text": "Honestly, one of the best profs in the political science dept. She is clearly super passionate about the UN and you get to learn about how so many deals get cut and she gives great insight on them because she's done fieldwork in that actual topic. Class is straight-forward and an easy B (A if you put in more work).", + "pos": 0.309, + "neu": 0.664, + "neg": 0.027, + "_id": { + "$oid": "6711d687cd60fca157e5eeae" + } + }, + { + "text": "Professor Krasno is one of the sweetest professors I've ever taken. She's so kind and dedicated to making sure that all of her students understand the topics that are being covered. She also makes the class very engaging and intriguing. She shared a lot of valuable information and anecdotes. The work is also very easy. I 100% recommend taking her.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eeaf" + } + }, + { + "text": "Nuclear security/non-proliferation was a great class with prof Krasno. 1 midterm and 1 final paper, with a review session for the midterm. She's very straightforward, kind and caring and works with her students. Truly one of the best at CCNY. For this class she also scheduled a trip to Brookhaven nuclear facility, which was very cool.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eeb0" + } + }, + { + "text": "I dont recommend taking her she is very bad, unless you have no choice.", + "pos": 0.0, + "neu": 0.576, + "neg": 0.424, + "_id": { + "$oid": "6711d687cd60fca157e5eeb1" + } + }, + { + "text": "Wrost professor, completely ruined my GPA. Wont try to work with student. No make up, 1 midterm and 1 final. I regret taking her class.", + "pos": 0.0, + "neu": 0.724, + "neg": 0.276, + "_id": { + "$oid": "6711d687cd60fca157e5eeb2" + } + }, + { + "text": "The class was pure joy. She does an amazing job explaining how UN works, covers most interesting international conflicts. She requires a book but don't buy it, go to class and take basic notes. The final grade is made of midterm and final. She gives study guide where she basically tells the class what's going to be on the exams. You won't regret!", + "pos": 0.144, + "neu": 0.828, + "neg": 0.028, + "_id": { + "$oid": "6711d687cd60fca157e5eeb3" + } + }, + { + "text": "I took Prof Krasno for Peacemaking and Negotiations and learned much more about the UN and global peace operations than I imagined I would. The midterm and final are among the most straight-forward and easiest tests you will take in college, you just need to take good notes for her lectures so you have the info. All in all, very sweet lady", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eeb4" + } + }, + { + "text": "As an engineering major stepping into a Political Science course, I honestly couldn't have felt more welcome in her lectures. I can actually say that I've walked out of her class learning something and I definitely believe professors like this deserve the most respect.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eeb5" + } + }, + { + "text": "She is good at teaching and helps you if you ask for it. The class is kind of not too hard but she clearly has her favorites and gives them preference in terms of grading and other things. I felt it. I feel she is biased against me becasue I once disagreed with her. So try not to argue when she is clearly wrong and be on her good side. BIASED.", + "pos": 0.234, + "neu": 0.624, + "neg": 0.143, + "_id": { + "$oid": "6711d687cd60fca157e5eeb6" + } + }, + { + "text": "Easy as a piece of cake. Just take good notes and study. Lectures are straightforward and there is a review session before every exam. Also, there is a small group presentation.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eeb7" + } + }, + { + "text": "Prof. Krasno is an amazing person and a pleasure to learn from. I fully recommend her to my peers. Take without hesitation. Her superb lectures makes you want to learn Poli Sci. She is kind enough to do review session before exam. If I could, I would take her again. I will miss her.", + "pos": 0.248, + "neu": 0.679, + "neg": 0.072, + "_id": { + "$oid": "6711d687cd60fca157e5eeb8" + } + }, + { + "text": "Hands down to Dr. Krasno. She is the best in the Dept. Her lectures are very clear and interesting. The way she communicate her ideas to you is amazing. Only a brilliant scholar can do such thing. PSC Dept. doesnt have much great professors. Expectation is very reasonable. Grade based on 2 exams and attendance. I wish she taught more PSC courses.", + "pos": 0.259, + "neu": 0.699, + "neg": 0.042, + "_id": { + "$oid": "6711d687cd60fca157e5eeb9" + } + }, + { + "text": "great professor. test heavy tho- must study", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eeba" + } + }, + { + "text": "2 exams, attendance, 1 group presentation gives final grade. Must attend class and take solid notes. Professor is outstanding person and instructor. Very informed of subject matter. Expectations are reasonable. One of the best in the dept. You will learn a lot about UN and other international organizations. I enjoyed her class. Recommended.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d687cd60fca157e5eebb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d688cd60fca157e5eebd" + }, + "professor_name": "Nelly Fazio", + "rating": 2.8, + "department": "Computer Science department", + "comments": [ + { + "text": "Exams are easier than expected, though they can catch you off guard. 1 midterm and final, they follow the same structure. Provides what seems like a generous curve for both. 5 homework sets, 3 of them having a quiz on one of the questions on the set. As a professor, she is very fun and caring. Will always answer questions so dont be afraid to ask.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eebe" + } + }, + { + "text": "The exams are not very difficult as long as you attend lectures and read the textbook (very important for midterm and final). The quizzes in class are pulled from one of the assignment questions, so performance depends on your memory there but I found quizzes to be more difficult.", + "pos": 0.061, + "neu": 0.87, + "neg": 0.07, + "_id": { + "$oid": "6711d688cd60fca157e5eebf" + } + }, + { + "text": "Class consisted of the professor reading slides, which didn't really help me understand the material. She deviated from the recommended textbook as well. For exams, she never really specified what to study, which was unhelpful considering we were tested on four topics while being expected to study at least fifteen different ones.", + "pos": 0.07, + "neu": 0.885, + "neg": 0.045, + "_id": { + "$oid": "6711d688cd60fca157e5eec0" + } + }, + { + "text": "Respect", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eec1" + } + }, + { + "text": "She just goes through her slides and doesn't care if you have understood. Never did any exercises or corrected homework. She doesn't explain how the answer should be in questions. She keeps it in her mind and however you answer, she will always say \"Oh! I did not want it that way.\" and will give you a big 0. She doesn't even give partial marks.", + "pos": 0.0, + "neu": 0.938, + "neg": 0.062, + "_id": { + "$oid": "6711d688cd60fca157e5eec2" + } + }, + { + "text": "This professor gives quizzes and 0 partial credits for answers that are not the same as she expects. Same for exams. Memorizing algorithms and being lucky enough to be asked about the one you memorized could help. If not, you are most likely to get 0s on exams.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eec3" + } + }, + { + "text": "Her classes consisted of three quizzes, one midterm, and one final. I will say self-study is important in this class because class time are so limited and you will not understand the material only through lectures.", + "pos": 0.047, + "neu": 0.888, + "neg": 0.065, + "_id": { + "$oid": "6711d688cd60fca157e5eec4" + } + }, + { + "text": "This professor frankly sucks at really covering the material. I legit learned nothing from her. I just hope that I won't have to take her again.", + "pos": 0.099, + "neu": 0.816, + "neg": 0.085, + "_id": { + "$oid": "6711d688cd60fca157e5eec5" + } + }, + { + "text": "CSC598 is essentially a course for research on a topic. The topic in question for Fall 2020 - Spring 2021 was cryptography. We had to make a gambling site that uses Ethereum as currency while incorporating elements of cryptography in. Professor won't be of much help so be prepared to learn a lot on your own. Choose your team mates carefully.", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eec6" + } + }, + { + "text": "Great professor! We're still in the process of completing our final project, but she has prepared us for it throughout each week. I highly recommend taking her for senior design. You will learn a lot and she gives great feedback.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eec7" + } + }, + { + "text": "5 quizzes within the semester. One midterm, One Final. Offers to give extra points on grade/tests if you attend tutorings. This professor is underrated. I'm glad I took her and she taught me a lot. The pace that she went at helped me learn more than I needed.", + "pos": 0.06, + "neu": 0.94, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eec8" + } + }, + { + "text": "For an important and difficult course like Algorithms prof was fair. Came prepared each lecture with slides, asked students if any questions. IMPORT: If you go to tutor 10 times will improve final grade + drop lowest quiz. Do it! Almost no1 did it and their grades reflect, I did. Wont test u on anything not in class. If u do avg on tests ull b fine", + "pos": 0.171, + "neu": 0.737, + "neg": 0.091, + "_id": { + "$oid": "6711d688cd60fca157e5eec9" + } + }, + { + "text": "Please, Please and please do not take her. You will wish you never did. She isn't just bad at algorithms, she is extremely terrible at teaching the course. Her test does not reflect what she teaches in class, she reads from her slides which come directly from the textbook. You are better off reading the textbook than coming to class TBH. AVOID!!!", + "pos": 0.212, + "neu": 0.705, + "neg": 0.083, + "_id": { + "$oid": "6711d688cd60fca157e5eeca" + } + }, + { + "text": "She knows the materials but she doesnt know how to teach!!!! she gives hw where she doesnt grade, or give you the answers or even a feedback about it! Basically waisting time. Her exams has nothing to do with what she goes over!! No makeups now curving! Her class is a waist of time. NOT RECOMMENDED AT ALL.", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d688cd60fca157e5eecb" + } + }, + { + "text": "3 tests (1 dropped), 3 quizzes which questions come directly from the hw (collected & not returned or graded ) but she doesn't give answers. She tries her best to explain concepts and answer students' questions. She is not the worst professor. Discrete math is a hard class so u have to work hard & can't rely solely on the professor.", + "pos": 0.145, + "neu": 0.809, + "neg": 0.045, + "_id": { + "$oid": "6711d688cd60fca157e5eecc" + } + }, + { + "text": "She isn't the best at explaining. In times she is lazy so she doesn't do the problems on board, but just reads off slide Her course are 2 tests and a final and 3 or 4 quizzes. I don't think she curves or drops tests, but our section was a bit different since almost everyone failed the first test. So she only counted the test with the highest score.", + "pos": 0.022, + "neu": 0.871, + "neg": 0.107, + "_id": { + "$oid": "6711d688cd60fca157e5eecd" + } + }, + { + "text": "First, we did not sign up for her class but due to some internal issue, she was assigned last minute to our section. The weirdest part was she did not give answer to her homeworks and her exams instruction was unclear. She read off other person's slides which had so many errors and she did not know how to explain the slide. The worst professor.", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d688cd60fca157e5eece" + } + }, + { + "text": "I came to this class hoping to learn something. Boy was I was wrong. She obviously got dumped by her boyfriend or girlfriend i domt dudge its 2018. But she took her anger out on us so we suffered od. Never gives back HW, Or exams does not help us . Literally we ask for help and she says read the slides which makes no sence at all. 100% must avoid !", + "pos": 0.06, + "neu": 0.693, + "neg": 0.247, + "_id": { + "$oid": "6711d688cd60fca157e5eecf" + } + }, + { + "text": "awful", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d688cd60fca157e5eed0" + } + }, + { + "text": "Her slides are terrible. She did not make her own slides. Attend the ta class, he knows about the material much better. She does not give answer to her homework problems. One of the worst professor in CCNY.", + "pos": 0.062, + "neu": 0.726, + "neg": 0.212, + "_id": { + "$oid": "6711d688cd60fca157e5eed1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d688cd60fca157e5eed3" + }, + "professor_name": "David King", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Amazing professor. Seems to be careless at times but definitely not the case. He's very knowledgeable and an expert at his craft. The lectures were captivating. You learn something new every class. Very chill dude. Would take him for all my classes if i could. Simply the best I've had so far. Too bad it was his last semester teaching at CCNY", + "pos": 0.155, + "neu": 0.754, + "neg": 0.091, + "_id": { + "$oid": "6711d688cd60fca157e5eed4" + } + }, + { + "text": "I've had the luck throughout the years to always get very good professors in the English field. I truly appreciate King as a teacher. If he could be my professor for the rest of my time here at CCNY I wouldn't want it any other way. Pay attention,participate, and be yourself.", + "pos": 0.198, + "neu": 0.757, + "neg": 0.044, + "_id": { + "$oid": "6711d688cd60fca157e5eed5" + } + }, + { + "text": "King is a really nice person and always has interesting discussions in his class. Took intro to creative writing with him and it was almost a joke, no work, rarely homework, no readings, very minimal class. Grade based on class participation. Didn't help me improve my writing skills because lack of written assignments, but enjoyed the class a lot.", + "pos": 0.192, + "neu": 0.714, + "neg": 0.094, + "_id": { + "$oid": "6711d688cd60fca157e5eed6" + } + }, + { + "text": "He is awesome, really care about his students and his work. he is down to earth, ad always cares about quality!! the best", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eed7" + } + }, + { + "text": "You will analyze things that may seem stupid and small but trust me you will see how important they are. His way of teaching is different but its so good. You will take a lot from this course if your there to learn hell even if you aren't. Write a few pieces. He gives feedback. DONT BE LATE A LOT. Oh and he's hot", + "pos": 0.148, + "neu": 0.743, + "neg": 0.108, + "_id": { + "$oid": "6711d688cd60fca157e5eed8" + } + }, + { + "text": "I really enjoyed this class, the readings for the most part were interesting, and assignments were fun so to speak. Attendance and participation are a must, but not much of a work load . Wasn't very clear with revisions and comments though, other than that one of my favorite classes I've taken!", + "pos": 0.176, + "neu": 0.773, + "neg": 0.051, + "_id": { + "$oid": "6711d688cd60fca157e5eed9" + } + }, + { + "text": "Very good teacher. Participating and reading in class will improve your grade. This class has 3 papers and quiz on the books you read. Good class to improve gpa if you do the work", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eeda" + } + }, + { + "text": "King made it easy to learn the fundamentals to writing fiction in such a way that was relevant to life. His exercises lead to open class discussions that were fun and revealing. I definitely recommend taking his class!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eedb" + } + }, + { + "text": "Excellent young Prof. Uses unique exercises/prompts in class to bring out the best writer in you. Fair grader who makes learning fun and challenging. Knowledgable about literature & his craft (and music too). And yes, although young enough to be my kid, agree with previous \"bangability\" estimates.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eedc" + } + }, + { + "text": "Amazing teacher! One of the best I've had at ccny.", + "pos": 0.509, + "neu": 0.491, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eedd" + } + }, + { + "text": "Prof. King is fabulous. Helps a lot, excellent teaching style, fair grader. Try to take him if u really want to learn with a bunch of fun and it's not very hard to get a good grade. MUST TAKE HIM....", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eede" + } + }, + { + "text": "He's definitely bangable.and his humor is adorable. Very professional and his class is much worth taking.", + "pos": 0.452, + "neu": 0.548, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eedf" + } + }, + { + "text": "Makes class enjoyable, and yes he is hot. Great eye candy and great teacher", + "pos": 0.58, + "neu": 0.42, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eee0" + } + }, + { + "text": "He is has this sarcastic humor that keeps you awake. He is also very real in discussions not sugar coated. His writing guidelines are tedious but I guess there was a purpose to it.", + "pos": 0.044, + "neu": 0.91, + "neg": 0.046, + "_id": { + "$oid": "6711d688cd60fca157e5eee1" + } + }, + { + "text": "Prof. King is a really nice guy. He's young and can relate to the students. I dont even know if he has a masters, because that is how young he looks. The papers he assigns arent hard and he's not a tough grader. He is more than fair. His quizes are extremely easy as well. In this class, Sparknotes.com is your best friend.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eee2" + } + }, + { + "text": "i love him and his brown skinny jeans!", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eee3" + } + }, + { + "text": "Made class fun. Lots of lively discussion, listened to every student, pulled everyone into discussions.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eee4" + } + }, + { + "text": "He is a good teacher and gives straightforward expectations for his students and the class as a whole.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eee5" + } + }, + { + "text": "He will really help you with your writing skills; a highly recommended professor.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eee6" + } + }, + { + "text": "He was a joy to look at ... super cute professor :)", + "pos": 0.631, + "neu": 0.369, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eee7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d688cd60fca157e5eee9" + }, + "professor_name": "Joseph Malinsky", + "rating": 4.8, + "department": "Physics department", + "comments": [ + { + "text": "He is a great professor for physics, you really understand the information. Make sure to do the homework even that he doesnt grade it or checked it but it is a great practice for his exams. Also make sure to ask questions if you dont understand him. Professor Malinsky is chill but he is linear with grading, so dont play around with your grade.", + "pos": 0.171, + "neu": 0.789, + "neg": 0.04, + "_id": { + "$oid": "6711d688cd60fca157e5eeea" + } + }, + { + "text": "By far the best physics professor I have ever had. He really knows the material and goes in depth. Gives background on the history of the concepts too. You definitley get a sense that he puts thought in making the lectures and enjoys teaching the material.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eeeb" + } + }, + { + "text": "This professor is a blessing for CCNY students. The best in Physics dept.", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eeec" + } + }, + { + "text": "I am in the engineering program and I really struggled with this class. There were only two tests, the first one a joke and the second one so difficult that i left crying. Somehow, miraculously, i still had an A-. This professor really teaches well, but expect insane tests. Show him you are participating and study hard, and you will get an A.", + "pos": 0.047, + "neu": 0.795, + "neg": 0.158, + "_id": { + "$oid": "6711d688cd60fca157e5eeed" + } + }, + { + "text": "Love it", + "pos": 0.808, + "neu": 0.192, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eeee" + } + }, + { + "text": "He is a really good professor, his exams are kind of hard, but if you study and learn the problems he does on the board than you'll be fine", + "pos": 0.126, + "neu": 0.731, + "neg": 0.143, + "_id": { + "$oid": "6711d688cd60fca157e5eeef" + } + }, + { + "text": "His teaching is very clear and understandable, especially for those who never took physics before. PAY ATTENTION TO HIS NOTES, one of his practice problems may appear in his midterm or final. His test will be immeasurably difficult if you don't go to his lecture since he doesn't depend or like the physics textbook. He's one of the best prof at CCNY", + "pos": 0.098, + "neu": 0.772, + "neg": 0.13, + "_id": { + "$oid": "6711d688cd60fca157e5eef0" + } + }, + { + "text": "He's the best physics prof i've EVER had. He made the concepts easy to understand and the work manageable. his exams come from his notes so take good notes. hes a funny guy, easy to talk to and super nice. He's also an easy grader and if you show interest and that you know the concepts you'l do fine. Highly recommended.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eef1" + } + }, + { + "text": "No doubt he is one of the best prof. for physics 207 in ccny. He knows the material very well and encourages you to develop your interest in phys. I took his class during the summer and totally loved it. I never took phys 207 before but managed to get B+. His exams are not easy but if you study hard you will get a decent grad for sure.", + "pos": 0.193, + "neu": 0.748, + "neg": 0.059, + "_id": { + "$oid": "6711d688cd60fca157e5eef2" + } + }, + { + "text": "Professor Malinsky is simply the best professor ever, no question about it. He is extremely passionate about what he is teaching and knows it all like the back of his hand. He is always available to help me with any questions that I may have. Obviously if someone has a problem with him they should examine themselves.", + "pos": 0.229, + "neu": 0.702, + "neg": 0.069, + "_id": { + "$oid": "6711d688cd60fca157e5eef3" + } + }, + { + "text": "I took him in the summer b cuz people said he is the best. Let me tell u he is not the best. He knows a lot of stuff but he is not helpful at all. Expects you to know equations he tells you not to worry about. exams are a disgrace. bad teacher....stay away!!!!!!!!!!!", + "pos": 0.081, + "neu": 0.699, + "neg": 0.22, + "_id": { + "$oid": "6711d688cd60fca157e5eef4" + } + }, + { + "text": "One of the best physics teacher at CCNY. He knows the materials by heart. His exams are difficult but he curves a lot. Just do well on the final exam and you will get a good grade.", + "pos": 0.257, + "neu": 0.704, + "neg": 0.039, + "_id": { + "$oid": "6711d688cd60fca157e5eef5" + } + }, + { + "text": "simply the best", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eef6" + } + }, + { + "text": "Great Professor. City College needs him. He makes Physics very easy and understandable. He's awesome!", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eef7" + } + }, + { + "text": "it is TOTALLY NOT as easy as stated in the previous ratings. if u've taken it before of course it would be a piece of cake otherwise even if u study ur ass off u can still fail only because his questions on the test are so different from class but hes GREAT at teaching i learned a lot hes really the BEST of all ccny physics professors I ASSSURE U!", + "pos": 0.165, + "neu": 0.758, + "neg": 0.077, + "_id": { + "$oid": "6711d688cd60fca157e5eef8" + } + }, + { + "text": "Dr Malinsky is nothing but the best. He's a genius. He knows his stuff. He is very helpful and he curves a lot. Even if you don't do well on tests, his final carries the most weight.", + "pos": 0.092, + "neu": 0.757, + "neg": 0.151, + "_id": { + "$oid": "6711d688cd60fca157e5eef9" + } + }, + { + "text": "This professor is wonderful! He is better than all the physics professors that teach in City during the regular semester. I wished he taught Phyics 204 in the summer also. He very knowledgable of the subject and explains it very well. Does not hesitate to help you. His exams are not difficult and he gives great partial credit. He is the best.", + "pos": 0.304, + "neu": 0.668, + "neg": 0.028, + "_id": { + "$oid": "6711d688cd60fca157e5eefa" + } + }, + { + "text": "Is VERY helpful. Understands grad. level E&M is highly difficult to grasp, and takes that into account when grading exams. Gives a fair exam, and is always open for any questions you have. Never be afraid to ask him ANYTHING on the subject. Knows it like the back of his hand.", + "pos": 0.195, + "neu": 0.759, + "neg": 0.046, + "_id": { + "$oid": "6711d688cd60fca157e5eefb" + } + }, + { + "text": "Yep, he does have the subject in the grasp of his hands.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d688cd60fca157e5eefc" + } + }, + { + "text": "damn, why can't all professors be like him. Makes physics fun. on can easily relate the course to the outside world. He has the grasp of the course in his hand. City college needs him. He should just quite Bronx community college. Assured A.", + "pos": 0.255, + "neu": 0.696, + "neg": 0.049, + "_id": { + "$oid": "6711d688cd60fca157e5eefd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d689cd60fca157e5eeff" + }, + "professor_name": "Carol Huang", + "rating": 3.1, + "department": "Education department", + "comments": [ + { + "text": "While Professor Huang is knowledgeable about the subject matter, I found her attitude to be unprofessional and sometimes dismissive. This behavior made it challenging to engage with the material and seek help when needed. I hope she can work on being more approachable and supportive to enhance the learning experience for her students.", + "pos": 0.211, + "neu": 0.736, + "neg": 0.053, + "_id": { + "$oid": "6711d689cd60fca157e5ef00" + } + }, + { + "text": "SHE IS NOT A BAD PROFESSOR!! The workload is intense so if you do not want to write 6+ page papers, 2+ presentations, weekly group presentations, and discussion boards this class is NOT for you. Besides that, she is super nice and understanding. There are deadlines but she accepts late work without penalty. She is a great teacher but too much work.", + "pos": 0.267, + "neu": 0.718, + "neg": 0.015, + "_id": { + "$oid": "6711d689cd60fca157e5ef01" + } + }, + { + "text": "Professor Huang FIQWS classes are pretty lightwork, but you will have to work in groups to present each week. If you don't like presenting, this class is not for you. other than that she knows a lot about what she's teaching and cares about her students. There were weekly group presentations, A literacy paper, a Book review, and a final project.", + "pos": 0.091, + "neu": 0.869, + "neg": 0.04, + "_id": { + "$oid": "6711d689cd60fca157e5ef02" + } + }, + { + "text": "Great Professor!! Work can be a bit overwhelming but she's lenient with deadlines. She is also great with feedback and gives you the opportunity to revise paper for a better grade.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef03" + } + }, + { + "text": "I LOVED this class. Long class, but interesting. She is so knowledgeable and engaging. Not very demanding class, but write GOOD essays. I did and got an A in this class. Never did readings, she discusses in class. She talks A LOT. Dismisses class early. Kind, does not stress, understanding. I would definitely take her again, she is one of a kind.", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef04" + } + }, + { + "text": "Amazing professor! The work is the right amount for a college student. She might not be clear on homework expectations but will explain over and over again if you need help. Also allow you to redo your papers to get an higher grade.", + "pos": 0.175, + "neu": 0.793, + "neg": 0.032, + "_id": { + "$oid": "6711d689cd60fca157e5ef05" + } + }, + { + "text": "She is the most caring and understanding professor. There are 4 major papers but if you pay attention and read the syllabus carefully your easily get an A. she does ask for ALOT with a bit of confusion on what she wants but she gives you the opportunity to fix your papers 3x!!! She'll also give you an feedback on how to improve them. Amazing !", + "pos": 0.252, + "neu": 0.695, + "neg": 0.053, + "_id": { + "$oid": "6711d689cd60fca157e5ef06" + } + }, + { + "text": "She is an Okay professor she just talks wayyyy to much and a lot of us don't understand her. Most of the class goes to sleep once she begins. She doesn't ask for much in her work but it can get confusing so be prepared. Once your on her good side I think you will pass.", + "pos": 0.129, + "neu": 0.833, + "neg": 0.038, + "_id": { + "$oid": "6711d689cd60fca157e5ef07" + } + }, + { + "text": "She was hard to understand at first but I got use to it. Get a head start on her assignments because she does not ask for much but she wants a lot from the little she does give. Assignments can be unclear but just ask again and she is happy to tell you. Show up because she remembers everyone's name. I started out not liking the class but I do now.", + "pos": 0.064, + "neu": 0.852, + "neg": 0.084, + "_id": { + "$oid": "6711d689cd60fca157e5ef08" + } + }, + { + "text": "Just do the readings, participate and do the term project and you'll be fine. Not a though greater, fun class. Must take.", + "pos": 0.195, + "neu": 0.725, + "neg": 0.081, + "_id": { + "$oid": "6711d689cd60fca157e5ef09" + } + }, + { + "text": "she is amazing. The class is very interesting. you will love it. just do all the assignments and read the syllabus and you will be fine.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef0a" + } + }, + { + "text": "Enormous amount of reading. She is supportive, ready with feedback and is very flexible with deadlines, but she can be unclear, partly because thick accent, partly because of apparent inconsistencies between syllabus and actual expectation. Values participation highly. Huge amount of reading. No textbook; posted articles online.", + "pos": 0.208, + "neu": 0.699, + "neg": 0.093, + "_id": { + "$oid": "6711d689cd60fca157e5ef0b" + } + }, + { + "text": "No tests, but you are assigned multiple movie reviews, a ten page review on observation hours, a four page book review, and a six page research paper. Readibgs are extremely long, 50-100 pages (she will advise to skim, but still difficult). Happy, friendly, caring and understanding professor, but unclear with due dates, expectations & topics.", + "pos": 0.195, + "neu": 0.7, + "neg": 0.105, + "_id": { + "$oid": "6711d689cd60fca157e5ef0c" + } + }, + { + "text": "Umm yea, she's not even worth talking about, they need more than one professor for this course.", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d689cd60fca157e5ef0d" + } + }, + { + "text": "a lot of work, but if all homeworks is done u may get A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef0e" + } + }, + { + "text": "This professor is very confusing and hard to understand. She does not follow anything on her syllabus and she is not clear on what she wants from the assignment.", + "pos": 0.0, + "neu": 0.811, + "neg": 0.189, + "_id": { + "$oid": "6711d689cd60fca157e5ef0f" + } + }, + { + "text": "Professor is very unclear, does not follow her own syllabus at all at any point...Class time is pretty much useless. You sit there and stare at her ramble about nothing correlating with the book or films. I am two months in to the semester and still don't understand what the class is about. I don't even get her joke..DON'T TAKE HER!!", + "pos": 0.048, + "neu": 0.867, + "neg": 0.085, + "_id": { + "$oid": "6711d689cd60fca157e5ef10" + } + }, + { + "text": "Books and assignment good, but lectures not, instead, student did a Power Point every class, followed by a mock student debates. This format got old, fast, and felt contrived. More open classroom discussions were discouraged. Also, there was no student feedback solicited at end of the course, which is why I'm rating the professor here!", + "pos": 0.031, + "neu": 0.806, + "neg": 0.163, + "_id": { + "$oid": "6711d689cd60fca157e5ef11" + } + }, + { + "text": "Helpful, but unclear. Did not meet objectives for the course. Tests set on textbook that we almost never used or referenced in class. Tests and study guidelines that she gave did not match. But enjoyable class with student discussions.", + "pos": 0.044, + "neu": 0.827, + "neg": 0.129, + "_id": { + "$oid": "6711d689cd60fca157e5ef12" + } + }, + { + "text": "She is a very unclear professor and which makes her very difficult to follow, but on a personnal note she is a very nice person (which isn't much help in the professor department).", + "pos": 0.105, + "neu": 0.733, + "neg": 0.162, + "_id": { + "$oid": "6711d689cd60fca157e5ef13" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d689cd60fca157e5ef15" + }, + "professor_name": "Deeadra Brown", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "professor brown is an amazing professor. she is considerate, super nice and easily reachable and accessible. she responds to emails very quickly and is up for a 1 on 1 meeting anytime. the amount of work is totally fair and so are the deadlines. she gives you time to breathe in between assignments. and explains the material thoroughly during class.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef16" + } + }, + { + "text": "She is one of those who follows clear grading criteria. And her lectures were pretty dull/boring. But she's kind as long as you are patience with her. She will help you. All you have to do is 'ask' !!", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef17" + } + }, + { + "text": "Prof Brown is super caring. She was always kind to us, gave us extensions with our essays, and was very lenient on grading. The homework was a bit too much at times, but I took a 4 week summer class so maybe that's the reason. Def would take her again.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef18" + } + }, + { + "text": "Nit-picky grader, doesn't answer questions well. Poorly given instructions for assignments. Expects a lot of writing in a short period of time.", + "pos": 0.0, + "neu": 0.92, + "neg": 0.08, + "_id": { + "$oid": "6711d689cd60fca157e5ef19" + } + }, + { + "text": "Genuinely loves her job and cares for her students. Always available outside of class. Very understanding and patient. She cares about what she's teaching and takes time to make sure everyone understands. Lots of reading, but it's very interesting stuff. As long as you're up to date with the readings and films, you'll pass all her quizzes. No tests", + "pos": 0.177, + "neu": 0.782, + "neg": 0.041, + "_id": { + "$oid": "6711d689cd60fca157e5ef1a" + } + }, + { + "text": "Professor Brown is an amazing Professor. She does give a lot of readings (4 books & other sources) and 1 to 2 quizzes every week. If you do the reading you'll be fine. She gives 2 papers and she helps you with everything. If you participate it will help your grade and attendance is mandatory. She also offers extra credit. Overall, amazing Professor", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef1b" + } + }, + { + "text": "Professor Brown is a decent professor but not the best choice for a FIQWS class. She has pop quizzes at least once a week and a paper every once in a while. You also have to buy a couple of books which only cost about $15 in total. She's very kind and reasonable though, just stay up to date on your readings, and you'll definitely pass.", + "pos": 0.117, + "neu": 0.823, + "neg": 0.059, + "_id": { + "$oid": "6711d689cd60fca157e5ef1c" + } + }, + { + "text": "Overall she's very caring and passionate about the subject. Quizzes literally every class so you MUST READ. Stay on top of your readings and the films and you'll do fine. Participation in class is also important, she likes to discuss the readings. She gives 2 papers a comparison essay and a research paper. She's really nice I'd take her again", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef1d" + } + }, + { + "text": "She gives pop up quizzes every week. You must READ everything assigned because you will have to use it towards your research paper . Sometimes she wants everything in her own words and way which can get annoying. She can sometimes drag a situation. Almost everytime she starts saying something she cuts herself off from saying. Overall, okay grader", + "pos": 0.03, + "neu": 0.863, + "neg": 0.107, + "_id": { + "$oid": "6711d689cd60fca157e5ef1e" + } + }, + { + "text": "One of the hardest professors I have ever had..", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef1f" + } + }, + { + "text": "A genuinely kind professor who loves her job and the subject. A bit disorganized at times but provides a clear outline to guide you through the assignment. Expect something due every week but its manageable and she's a lenient grader.", + "pos": 0.225, + "neu": 0.742, + "neg": 0.034, + "_id": { + "$oid": "6711d689cd60fca157e5ef20" + } + }, + { + "text": "She was an incredible professor. Loved going into class because of her. Very kind and extremely down to earth and is willing to explain anything if you just ask. Definitely recommend her to anyone. Praying ill get to work with her again soon!! You must do the readings assigned and engage in class, she'll appreciate it and consider it while grading", + "pos": 0.276, + "neu": 0.688, + "neg": 0.036, + "_id": { + "$oid": "6711d689cd60fca157e5ef21" + } + }, + { + "text": "Professor Brown is an outstanding teacher. Not only are her assignments manageable, but she knows and is inspired about the subject matter. Focusing on the Israel and Palestine conflict, we read several novels that were interesting, provoking, and right on target. She roots for you and is very helpful although she does makes you work.", + "pos": 0.227, + "neu": 0.698, + "neg": 0.075, + "_id": { + "$oid": "6711d689cd60fca157e5ef22" + } + }, + { + "text": "OUTSTANDING. TAKE HER, YOU'LL BE GLAD YOU DID. She loves to teach. It's very noticeable. She is so helpful and really wants students to grasp the subject. The only downside is that she will give you lots to do. I'd take her again in a heartbeat. One of the best professors out there.", + "pos": 0.29, + "neu": 0.681, + "neg": 0.029, + "_id": { + "$oid": "6711d689cd60fca157e5ef23" + } + }, + { + "text": "She is amazing! she made the class interesting and was incredibly understanding. She made sure everyone gave their own input without making you feel embarrassed. It sucks that this class goes hand to hand with a writing workshop. But other than that i loved it! Fair grader, just do the reading and assignments and you will be fine. Loved the class!", + "pos": 0.334, + "neu": 0.622, + "neg": 0.044, + "_id": { + "$oid": "6711d689cd60fca157e5ef24" + } + }, + { + "text": "Shes a great teacher, I loved her class. She gives a lot of required reading and a few films but its definitely manageable. As long as you pay attention and do the assignments you'll be good.", + "pos": 0.276, + "neu": 0.689, + "neg": 0.036, + "_id": { + "$oid": "6711d689cd60fca157e5ef25" + } + }, + { + "text": "She is a very sweet and caring individual who cares about her students. Pleasure to take this class!", + "pos": 0.495, + "neu": 0.505, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef26" + } + }, + { + "text": "very articulate teacher. If you follow her rules in writing the essays you are guranteed an A.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef27" + } + }, + { + "text": "SHES REALLY NICE AND SHE MAKES HER CLASSES INTERESTING. IF YOU NEED ANY HELP SHE IS SURE TO HELP YOU", + "pos": 0.474, + "neu": 0.526, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef28" + } + }, + { + "text": "This professor is quite helpful and an easy grader. If you attend class everyday she will up the grade. She gives a lot of work but it is possible.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d689cd60fca157e5ef29" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68acd60fca157e5ef2b" + }, + "professor_name": "Amr Kamal", + "rating": 4.2, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Really funny professor who clearly cares about his students, tho it felt like he was allergic to giving full marks on grades. Class has a lot of reading but he goes over it. Toward the end he gave so much somewhat lengthy assignmments which made it difficult to get thru because of finals.", + "pos": 0.156, + "neu": 0.764, + "neg": 0.081, + "_id": { + "$oid": "6711d68acd60fca157e5ef2c" + } + }, + { + "text": "Took this class as an elective. Too many readings, he's a tough grader, you won't know the grade of your assignment until the end of the semester. if you are taking this class for an easy A, don't, it's not easy and it's not worth it.", + "pos": 0.099, + "neu": 0.838, + "neg": 0.063, + "_id": { + "$oid": "6711d68acd60fca157e5ef2d" + } + }, + { + "text": "As a non-Arabic speaker, I came out of this class with so much more understanding. I'm able to read and write so much faster and understand a lot more. He gives daily quizzes at the beginning of each class but they help you so much! He was such an amazing professor and I'm so glad I took his class. Truly one of the best!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef2e" + } + }, + { + "text": "This Arabic course is little hard for non speakers. Pay attention during lecture, don't miss class. 1 midterm and final. Homework and quizzes etc.70%. Most important part is homework. Lots of extra credits. Take him and do work regularly you will get A. Professor is kind, helping and very interesting, learnt in this class in a easy and in fun way.", + "pos": 0.28, + "neu": 0.686, + "neg": 0.034, + "_id": { + "$oid": "6711d68acd60fca157e5ef2f" + } + }, + { + "text": "I had him on my 1st semester on Ccny, honestly hes one of the best professor youll ever have. He engages students very well. Even when we moved online he was still really good. Now its my 3rd semester on Ccny so far I dont think Ill have another professor like him. Thanks professor Kamal for everything. Hope youre doing well!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef30" + } + }, + { + "text": "He's amazing. He makes sure everyone can pass. You get daily quizzes and lots of homework. He gives a good amount of extra credits so I wouldn't worry. He does pick on you to talk but he always helps those who are confused. He can definitely teach Arabic so nicely.", + "pos": 0.33, + "neu": 0.625, + "neg": 0.045, + "_id": { + "$oid": "6711d68acd60fca157e5ef31" + } + }, + { + "text": "Really good professor. At times, he may talk fast but don't hesitate to ask questions because he makes sure that you understand the material. He gives daily quizzes, which are often repetitive and not hard. He also gives a lot of extra credit and extra points. They only exams are a midterm and a final, which he prepares you for.", + "pos": 0.177, + "neu": 0.787, + "neg": 0.036, + "_id": { + "$oid": "6711d68acd60fca157e5ef32" + } + }, + { + "text": "Great professor!! Very knowledgeable and gives excellent feedback. The readings are interesting and helpful understanding the Middle East.", + "pos": 0.498, + "neu": 0.502, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef33" + } + }, + { + "text": "I had this guy three years ago, I'm in med school now, (thanks for the letter of recommendation). I was thinking back to my college years, I am telling you this guy is brilliant I only wish I had taken advantage of professors such as him when I was still in college! Thank you for everything Amr, you're great and stop being so busy.", + "pos": 0.236, + "neu": 0.736, + "neg": 0.028, + "_id": { + "$oid": "6711d68acd60fca157e5ef34" + } + }, + { + "text": "He is great! Very nice guy, very smart.", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef35" + } + }, + { + "text": "I don't even know how this man is a professorhis class was extremely unorganized. He barely follows the syllabus and brings up assignments last minute. He also does not know how to move class discussions forward, and we spend days talking about random, irrelevant, and boring things.", + "pos": 0.0, + "neu": 0.952, + "neg": 0.048, + "_id": { + "$oid": "6711d68acd60fca157e5ef36" + } + }, + { + "text": "This professor is one of the best ive had so far. He is really helpful and he cares about his students. He is interactive and funny and he only wants the best for his students. Make sure you attend class or else you will get lost.", + "pos": 0.323, + "neu": 0.639, + "neg": 0.038, + "_id": { + "$oid": "6711d68acd60fca157e5ef37" + } + }, + { + "text": "He is a good professor. He does a really good job in teaching Arabic and I was able to learn faster than I expected to. He's handsome, not hot. He is funny and communicates a lot to try to help the students pass the course. Take the class if you really want to learn Arabic and not if you want to fill your language requirement.", + "pos": 0.218, + "neu": 0.766, + "neg": 0.016, + "_id": { + "$oid": "6711d68acd60fca157e5ef38" + } + }, + { + "text": "He's a passive kind because he's often busy doing something.The class is a laid back atmosphere that's good and bad. Makes you think you can just get an A doing min work but that's not the case, so make sure you hand in all hw/assignments no matter how passive he may seem about it. Overall he's easy and great guy the type you can joke around with.", + "pos": 0.309, + "neu": 0.652, + "neg": 0.039, + "_id": { + "$oid": "6711d68acd60fca157e5ef39" + } + }, + { + "text": "Amazing professor who is really passionate about the language. Very helpful outside of class. Class moves very fast, so if you definitely need to stay on task, if not you'll be lost. Don't recommend missing any classes, but if you do the professor would more than likely briefly go over what was covered. He's also a very guy!", + "pos": 0.186, + "neu": 0.79, + "neg": 0.024, + "_id": { + "$oid": "6711d68acd60fca157e5ef3a" + } + }, + { + "text": "He is a very lovely professor. Very fair in his grading technique, and tries to make you do your best. He takes account to how much effort you put into the class. Overall it is a great class!", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef3b" + } + }, + { + "text": "So I just had an my oral final with him and I was quite nervous. He was very helpful in helping relax and ultimately I got through it, a attribute to his personality and teaching abilities. One of the best language professors I've had, and I've had many :)", + "pos": 0.285, + "neu": 0.677, + "neg": 0.039, + "_id": { + "$oid": "6711d68acd60fca157e5ef3c" + } + }, + { + "text": "I wouldn't judge him the first week or on a 1st impression. Hes has to warm up to teaching in front of a big class. He ok in class but great in his workshop, one on one or tutoring. He looks more into effort then just knowledge so just because you may know your stuff doesn't mean you can get away without showing up. He's kinda cute in a nerdy way.", + "pos": 0.171, + "neu": 0.812, + "neg": 0.016, + "_id": { + "$oid": "6711d68acd60fca157e5ef3d" + } + }, + { + "text": "I just finished the final for this class why it was noott a piece of cake there was no reason why any student should of done poorly hes offers tremendous help. Hes a great prof.", + "pos": 0.172, + "neu": 0.775, + "neg": 0.053, + "_id": { + "$oid": "6711d68acd60fca157e5ef3e" + } + }, + { + "text": "This guy is really knowledgeable in just about any language. He recommends great books and movies in any language, real helpful. He is really committed to his students. Expect to put some work and he takes effort into consideration.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef3f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68acd60fca157e5ef41" + }, + "professor_name": "Ravi Rampersad", + "rating": 3.4, + "department": "Mathematics department", + "comments": [ + { + "text": "He was very strict with his grading and small mistakes that could be permissable could cost you points. Pros are that although he goes fast, he gives you external help in terms of hw. He also drops the lowest test (1 of 5) and quiz.", + "pos": 0.054, + "neu": 0.843, + "neg": 0.102, + "_id": { + "$oid": "6711d68acd60fca157e5ef42" + } + }, + { + "text": "Great lecturer. Easy to understand. Answers questions. We had a quiz every week, but always included materials we discussed. Dropped the lowest graded quiz. 3 midterm exams and he dropped the lowest exam. Always did reviews before exams. Gave us extra credit. Final dept. exam was awful but he curved it. Barely passed the final but still got an A.", + "pos": 0.109, + "neu": 0.743, + "neg": 0.149, + "_id": { + "$oid": "6711d68acd60fca157e5ef43" + } + }, + { + "text": "At CCNY, the math dept doesnt allow professors to give curves or E.C., or to count things like HW, participation or attendance, so dont blame Ravi for many failing grades, blame the system. I give him a great grade because he answers emails faster than my moms text messages concerning HW problems, questions, etc. Put in the work and he will help", + "pos": 0.153, + "neu": 0.714, + "neg": 0.133, + "_id": { + "$oid": "6711d68acd60fca157e5ef44" + } + }, + { + "text": "Just e-permit elsewhere. This class was a joke. Rushed material, constant mistakes, no curves, no hw grading or answers, 4 Question quizzes.", + "pos": 0.153, + "neu": 0.672, + "neg": 0.175, + "_id": { + "$oid": "6711d68acd60fca157e5ef45" + } + }, + { + "text": "Coming from a straight A student, this class has been one of the most frustrating and horrible experiences I have ever had. Exams and quizzes are about 4 questions. 1 mistake and you get a C. Ohh btw make sure you know your material enough to be able to catch all of the professors mistakes. Roughly 1 every exam/quiz. So your C just turned into an F", + "pos": 0.055, + "neu": 0.792, + "neg": 0.154, + "_id": { + "$oid": "6711d68acd60fca157e5ef46" + } + }, + { + "text": "BAD. He is a terrible teacher and rude. No extra credit, and the exams were next to impossible. He would say to just do the homework (which was not graded) and you'll be fine if you can do the homework . LIES, the exams were next to impossible and so were the quizzes. We spoke several times to the dept to no avail! DO NOT TAKE MATH 205 w/ him.", + "pos": 0.021, + "neu": 0.733, + "neg": 0.245, + "_id": { + "$oid": "6711d68acd60fca157e5ef47" + } + }, + { + "text": "Hes not good as people claim. He gives no extra credit, no homework, and no review sheets. Only thing graded are quizzes/exams. 1 wrong would lead you to a 75. Quizzes are every week (4 qs). The final was nothing like what he taught. He doesnt care if you fail. I only took him because of the good ratings, otherwise I would avoid him.", + "pos": 0.036, + "neu": 0.657, + "neg": 0.307, + "_id": { + "$oid": "6711d68acd60fca157e5ef48" + } + }, + { + "text": "Do not take this class!! This is coming from a straight A, Biology major student. Ravi Rampersad is horrible. There were quizzes and exams every week, no extra credit or homework grade to boost your grade. Quizzes differ from the material he teaches. Quizzes are usually 4 questions so if you get even 1 question wrong, you will get a 75 every week.", + "pos": 0.063, + "neu": 0.779, + "neg": 0.158, + "_id": { + "$oid": "6711d68acd60fca157e5ef49" + } + }, + { + "text": "Loved him for 205 and took him again for 209. Quizzes every week but they're the same problems we did in class (aka go to class and write everything). The exams are similar (he changes the info, but it's almost the same problems).", + "pos": 0.05, + "neu": 0.814, + "neg": 0.136, + "_id": { + "$oid": "6711d68acd60fca157e5ef4a" + } + }, + { + "text": "takes time to go through criteria, but goes through basic problems. He doesn't go in-depth into the actual work you would see on the final which was very different than any other test he had given.", + "pos": 0.0, + "neu": 0.908, + "neg": 0.092, + "_id": { + "$oid": "6711d68acd60fca157e5ef4b" + } + }, + { + "text": "Very clear grading criteria and he knows what he is teaching. He focuses only on the important topics that we really need for the course. Every week there will be a 15 mins quiz based on the lecture and the homework from textbooks and each other week there will be a 50 marks test also. very friendly. You will get help after the class if needed. GD", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef4c" + } + }, + { + "text": "He makes learning very accessible and is a very fair grader. Attend classes because he's funny as well, so you won't be bored while learning slower topics!", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef4d" + } + }, + { + "text": "Professor Rampersad is amazing! If you actually want to learn AND understand the material, he is the professor for you. He will do his best to make sure everyone understands the material and is a fair grader. If you do the HW problems and pay attention in class, you'll be able to do well and remember.", + "pos": 0.238, + "neu": 0.702, + "neg": 0.06, + "_id": { + "$oid": "6711d68acd60fca157e5ef4e" + } + }, + { + "text": "Weekly quizzes, and 5 class exams. The quizzes are based on questions he did in class and homework questions assigned. Exams have some have questions from the hw he assigned or from class. I. He drops the lowest test grade and quiz grade. He always answer questions when he do the problem, so don't hesitate to ask.", + "pos": 0.034, + "neu": 0.88, + "neg": 0.086, + "_id": { + "$oid": "6711d68acd60fca157e5ef4f" + } + }, + { + "text": "He rushes through a lot of the material because he wants to finish the syllabus a week ahead so the class can review for the final exams. You have to do 85% of the learning on your own if you want to be successful in the class. Because he is so advanced with the subject, he assumes we all are and thus teaches without dissecting or making it clear.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef50" + } + }, + { + "text": "Excellent professor, gives clear lessons, weekly quizzes and a few tests. Just need to take good notes and you'll be good to go. If do bad on all class tests and get over a 95 on the final, he will give you an A for the class. very lenient and helpful.", + "pos": 0.27, + "neu": 0.676, + "neg": 0.054, + "_id": { + "$oid": "6711d68acd60fca157e5ef51" + } + }, + { + "text": "You'll probably hate him in the beginning because he does rush in lecture, but he's willing to go over questions if you're having trouble over a certain topic. Don't expect to learn everything in lecture, you have to do the hw or study on your own. If you do well on the finals, you'll pass with flying colors. He's nice, I'd take his class again.", + "pos": 0.12, + "neu": 0.801, + "neg": 0.079, + "_id": { + "$oid": "6711d68acd60fca157e5ef52" + } + }, + { + "text": "Prof.Rampersad is great!He really cares about what he teaches, and he wants his students to do well in the class. I am satisfied with the grade I have earned. He tells you exactly what you have to in order to well in the class. The home works he assigns are extremely helpful and important, so do them all!I learned a lot from this class.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef53" + } + }, + { + "text": "Rushes through material but only because if he takes his time, he will not be able to finish class in time. Attendance is mandatory. Easy grader. weekly homework, Quizzes every week (8). Exams every three weeks (4) & one final. I learned a lot from him. Will take him again!", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef54" + } + }, + { + "text": "He is a pretty good professor and he really wants you to do good. He gives weekly quizzes based off the homework. He gives review sheets prior to the exams. Great guy recommend you take him if you like math.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d68acd60fca157e5ef55" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68bcd60fca157e5ef57" + }, + "professor_name": "Adam Bubrow", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "He is a good professor but grading policy is harsh. He will cut off points for every little things. His lecturers are nice too.", + "pos": 0.176, + "neu": 0.622, + "neg": 0.202, + "_id": { + "$oid": "6711d68bcd60fca157e5ef58" + } + }, + { + "text": "Funny guy. His pronouns are bro/bruh. Funny indeed.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef59" + } + }, + { + "text": "Prof. Bubrow really does prepare you for the \"real\" world. He is very particular about his grading criteria, but as long as you follow them, then you'll get good scores. If you like grammar, then you'll like his class even more, in fact there's a thing called the \"quest,\" which is just a test. He likes to crack a lot of dad jokes, and I like it.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef5a" + } + }, + { + "text": "He is a funny professor but he is very picky with grading. He will find every single little mistakes you make. But his teaching does help you in the real world.", + "pos": 0.151, + "neu": 0.771, + "neg": 0.077, + "_id": { + "$oid": "6711d68bcd60fca157e5ef5b" + } + }, + { + "text": "Great professor. He has that dad-joke humor, which is amazing. Would highly recommend him to anyone.", + "pos": 0.516, + "neu": 0.484, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef5c" + } + }, + { + "text": "He can be intimidating but hes a good professor. Grading is clear but strict, and he gives some extra credit although it isnt worth much. I think overall it was a very fair class and you get the grade you work for. Lectures are mandatory but he makes it enjoyable. Id take him again.", + "pos": 0.279, + "neu": 0.664, + "neg": 0.057, + "_id": { + "$oid": "6711d68bcd60fca157e5ef5d" + } + }, + { + "text": "This professor is great.", + "pos": 0.577, + "neu": 0.423, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef5e" + } + }, + { + "text": "Professor Bubrow is a decent enough professor, however, that this is an English course is misleading. He grades you more on confidence in the presentations than the material. Also, the random topics in the quest have more to do with whether you pay attention to the ridiculous quips he makes in class than whether you can write adequately or not.", + "pos": 0.054, + "neu": 0.846, + "neg": 0.1, + "_id": { + "$oid": "6711d68bcd60fca157e5ef5f" + } + }, + { + "text": "Professor Bubrow is a really good professor. He makes class fun and interesting, while also teaching you something new every day. His class is fair and you are given what you worked for. I definitely recommend taking his class.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef60" + } + }, + { + "text": "Professor Bubrow is really nice and funny. His lectures emphasize heavily on grammar and projects/projects. He is a tough grader and will takes points off for little things so it is really hard to get an A/A+ in his class. Do your work well, participate a little and you'll get an easy B+/A-. There's 2 presentations, one group and one solo.", + "pos": 0.162, + "neu": 0.792, + "neg": 0.046, + "_id": { + "$oid": "6711d68bcd60fca157e5ef61" + } + }, + { + "text": "Great teacher. He's funny and makes class very engaging. I was actually excited to go to class after other hard classes. Participate a lot! However, he does grade harshly on assignments and takes points off for very little things. Do all assignments in order to pass! If you do everything exactly as he outlines,you'll easily get either A minus or A.", + "pos": 0.211, + "neu": 0.769, + "neg": 0.02, + "_id": { + "$oid": "6711d68bcd60fca157e5ef62" + } + }, + { + "text": "Bubrow's grading is extremely simple. As long as you do all of the assignments in the syllabus with some effort, you should be able to pass with at least a B. There are two assignments that do require a presentation so watch out for that if you're not comfortable. There's also an exam (the QUEST), which as long as you pay attention, you will pass.", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d68bcd60fca157e5ef63" + } + }, + { + "text": "The world needs more professors like Bubrow. He's courteous, flexible, and caters to the needs of the students but still challenges us. His assignments will teach you a lot. Don't let his nitpicking deter you; it is constructive criticism. If you do all the assignments and show him you're prepared, you'll do great. Enjoy the class; it is a journey.", + "pos": 0.256, + "neu": 0.693, + "neg": 0.051, + "_id": { + "$oid": "6711d68bcd60fca157e5ef64" + } + }, + { + "text": "He is great at his job but he nitpicks at every assignment, however, in class he specifically tells you what to do for each assignment. He played music before class started but his music was like in the 90s. YOU NEED TO PARTICIPATE!!! MAKE SURE YOU submit assignments on time and he is very generous with extending the due date if you ask tho.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef65" + } + }, + { + "text": "Good professor. Clearly passionate about his job. Teaches you several types of writing that someone who majoring in engineering and computer science should know. Has 2 presentations, and 1 quiz (quest) which is pretty easy. You have the end of the day to send it in. Only complaint is he nitpicks mistakes on your assignments and takes points off.", + "pos": 0.21, + "neu": 0.724, + "neg": 0.065, + "_id": { + "$oid": "6711d68bcd60fca157e5ef66" + } + }, + { + "text": "Coming from a student who dislikes writing, professor Bubrow made this class fun and enjoyable. There are no essays in this class, but instead you learn how to make proposals, instructive writing, and how to make a technical description. There is also a quest (kind of like a quiz and test) but it is pretty straight forward. 5-6 assignments.", + "pos": 0.196, + "neu": 0.754, + "neg": 0.05, + "_id": { + "$oid": "6711d68bcd60fca157e5ef67" + } + }, + { + "text": "He made the class enjoyable, went over a lot of good materials, and was understanding.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef68" + } + }, + { + "text": "Greatest professor CCNY can offer! If you literally follow each thing he wants perfectly it will be an easy A. He literally specifies what he wants and makes assignments really easy, as long as you follow all directions. Not only does he makes assignments easy, but he teaches you many lessons to be prepared for life!", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef69" + } + }, + { + "text": "He is really good at making class fun and exciting. He teaches well and really breaks down every assignment so that you know exactly what is needed from you. I only wish that he graded faster, but it's a small price to pay for a great class.", + "pos": 0.27, + "neu": 0.702, + "neg": 0.028, + "_id": { + "$oid": "6711d68bcd60fca157e5ef6a" + } + }, + { + "text": "Good professor, love his sarcasm and seems stuck up and serious at first but totally isn't. Definitely make sure you step out of your comfort zone a bit with group work and interactions, but you'll get through it. Not a strict professor at all laid back compared to others. Gave us the course material that was necessary not like he made it up.", + "pos": 0.105, + "neu": 0.727, + "neg": 0.168, + "_id": { + "$oid": "6711d68bcd60fca157e5ef6b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68bcd60fca157e5ef6d" + }, + "professor_name": "Shlomo Simchon", + "rating": 4.6, + "department": "Biology department", + "comments": [ + { + "text": "Simchon is awesome ! his exams are straight forward from the slides, he also curves the exams. The lab part of this class is a lot of work but simchon's lecture exams helped even out the grade, He gave 3/4's of the class A's. Its requires work but not difficult.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef6e" + } + }, + { + "text": "As previously noted, Prof Simchon is a retired MD, so he approaches the body systems holistically. He is very kind and considerate of his students...but don't be fooled by this, for he expects you to work hard and earn your grade in his class. Overall, I recommend this class esp to premeds who would like to have a taste of a class in med school.", + "pos": 0.189, + "neu": 0.793, + "neg": 0.019, + "_id": { + "$oid": "6711d68bcd60fca157e5ef6f" + } + }, + { + "text": "He knows a lot about Physiology. Very fair grader and cares about student progress. Don't be fooled by the name of the course even though its a bio class you have to do lot of math problems.", + "pos": 0.234, + "neu": 0.707, + "neg": 0.06, + "_id": { + "$oid": "6711d68bcd60fca157e5ef70" + } + }, + { + "text": "He should teach every bio course! You will learn a lot but you have to do the work! He is very clear about what he expects from you and a generous grader.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef71" + } + }, + { + "text": "Very comprehensive course -- designed for pre-meds, taught by retired MD. Lots of work, hard exams, but great lectures and labs, an easy-going charitable grader. If you're interested in this material and do the work you'll learn and do very well. Take any course Prof. Simchon teaches.", + "pos": 0.293, + "neu": 0.687, + "neg": 0.02, + "_id": { + "$oid": "6711d68bcd60fca157e5ef72" + } + }, + { + "text": "Great Professor! Textbooks aren't necessary. If you go to lectures the tests are a breeze. However, he gives a lot of work but they further prepare you for the exams and quizzes. I can't wait to take his other class!", + "pos": 0.074, + "neu": 0.926, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef73" + } + }, + { + "text": "He is awesome. He is the best prof CCNY has, and his lectures are crystal clear. You will learn a lot in his class. Its a lot of work so dont be lazy.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef74" + } + }, + { + "text": "He's by far the best professor at CCNY. The class involves a lot of work (so if you're lazy this isn't the class for you) and there's a lot to remember. But he emphasizes key points and is very fair with his grading. He's also very considerate of the effort that students put in. You'll definetly learn a lot from him.", + "pos": 0.149, + "neu": 0.826, + "neg": 0.025, + "_id": { + "$oid": "6711d68bcd60fca157e5ef75" + } + }, + { + "text": "he is the best in CCNY", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef76" + } + }, + { + "text": "he is DoRaBlE", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef77" + } + }, + { + "text": "This professor is very good. He explains concepts really well. Nice professor to talk to. He is easy going. But there is a lot of work though.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef78" + } + }, + { + "text": "This professor is wonderful. He explains everything so clearly, and his review sessions are very helpful. One of the best there is. The subject material requires a lot of reading which can be done one to two nights before. Take him, and enjoy. Just a lovely man, and excellent with partial credit. Enjoy.", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef79" + } + }, + { + "text": "whoever said this class was easy MUST BE CHEATING their way through because it is not!! on top of A LOT of studying theres just TOOO MUCH work--hand in tutorials(do research n figure out on ur own what the material to be taught is BEFORE its taught),presentations,labquizzes,lab papers MUST take good notes hes a VERY nice guy n lenient grader", + "pos": 0.17, + "neu": 0.748, + "neg": 0.082, + "_id": { + "$oid": "6711d68bcd60fca157e5ef7a" + } + }, + { + "text": "he makes the long lab hours easier for the student", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef7b" + } + }, + { + "text": "Very Good Professor. You really come out the class feeling like you learned somthing. Exams are extremely EASY if you attend all classes and especially the reviews. Fun Lectures and he's very understanding and accommodating.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef7c" + } + }, + { + "text": "Very easy professor, if you do not get an A in his class consider yourself really dumb (more than 50% of the class gets an A). DO NOT BUY THE TEXTBOOK because he gives you out notes. Attend all the lectures because it is only in class that you learn. CAUTION - You do not really learn anything in his course because he doesn't cover a lot.", + "pos": 0.044, + "neu": 0.905, + "neg": 0.05, + "_id": { + "$oid": "6711d68bcd60fca157e5ef7d" + } + }, + { + "text": "He is one of the best for this course, he repeats things over and over eventually it becomes very clear.......", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef7e" + } + }, + { + "text": "He is a great professor. If you don't get the concept the first tims he'll repeat it over and over and over again. It's impossible to fail this man's class. Just read his lecture notes to pass his exams. And if you don't you've got the benchmarks. If that's too much \"work\" he tells you what's on the test. Which is even better!!!!", + "pos": 0.114, + "neu": 0.837, + "neg": 0.049, + "_id": { + "$oid": "6711d68bcd60fca157e5ef7f" + } + }, + { + "text": "He is phenomenal!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef80" + } + }, + { + "text": "I had this guy for lab. He's very approachable. He has a bit of an accent, but if you didn't understand what he was saying, you'll feel comfortable asking him. It helps that he's an MD.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d68bcd60fca157e5ef81" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68ccd60fca157e5ef83" + }, + "professor_name": "Lise Kjaer", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "Do you want to understand Art since 1980? Yes? Then take Prof Kjaer's class. Readings organized around themes like identity and spirituality. Some very dense reading. Comments about not being taught how to write an art history paper are legitimate. If you have difficulties in English, then improve before taking this class.", + "pos": 0.166, + "neu": 0.797, + "neg": 0.037, + "_id": { + "$oid": "6711d68ccd60fca157e5ef84" + } + }, + { + "text": "Lise Kjaer is one of the best professors in the Art department. I'm an international student and it was one of my first classes. It was very hard, but it was all worth it. Prof. Kjaer gives lots of knowledge, you will have to read, write and study a lot, but at the same time the class is very entertaining, she is inspired artist and very sweet too", + "pos": 0.221, + "neu": 0.762, + "neg": 0.017, + "_id": { + "$oid": "6711d68ccd60fca157e5ef85" + } + }, + { + "text": "I am surprised to see the not so favorable reviews of Prof. Kjaer. She is really a nice lady who is VERY helpful without doing the work for you. She is a fair grader and if you pay attention to the lectures and take notes, you will be fine!", + "pos": 0.221, + "neu": 0.702, + "neg": 0.077, + "_id": { + "$oid": "6711d68ccd60fca157e5ef86" + } + }, + { + "text": "I didn't learn to write art paper on her class. I thought she is going to teach us how to write art instead she wants me to go writing center but the writing center don't know how to write art. she really tough on student whose english is second language. I like the field trip. but low steak won't help your grade. she should enage student better.", + "pos": 0.092, + "neu": 0.807, + "neg": 0.101, + "_id": { + "$oid": "6711d68ccd60fca157e5ef87" + } + }, + { + "text": "Professor Kjaer is very helpful and respectful. I would definitely take another graduate class with her.", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5ef88" + } + }, + { + "text": "This class is moronic. Too hard. We had to write research paper but we did not know hot do it for art. We can't do everything in one semester. So why? Kjaer was not that bright in art history. I think she's really an artist. Maybe she should stay with that.", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d68ccd60fca157e5ef89" + } + }, + { + "text": "One of the best professors in the Art History department. Those who complain about her must be lazy. She is very knowledgeable, fair and has a good sense of humor but expects you to work for your grade like any good professor should.", + "pos": 0.28, + "neu": 0.654, + "neg": 0.065, + "_id": { + "$oid": "6711d68ccd60fca157e5ef8a" + } + }, + { + "text": "i have to be honest. Miss Kjaer is the worst professor that i have ever had. end of story.", + "pos": 0.132, + "neu": 0.64, + "neg": 0.228, + "_id": { + "$oid": "6711d68ccd60fca157e5ef8b" + } + }, + { + "text": "I am perplexed to see all these unpleasant comments. She is extremely likable! I've watched so many students turn in assignments late. Most professors are far more strict. I used and found the textbook to be very helpful. Students need to take initiative and not expect to be spoon-fed everything. It's called college! Study for your own good!", + "pos": 0.104, + "neu": 0.815, + "neg": 0.081, + "_id": { + "$oid": "6711d68ccd60fca157e5ef8c" + } + }, + { + "text": "Prof Kjaer....OMG, she is the rudest person ever. All she does is lecture. We never use the 90$ book we had to buy and even though it is an intro class she makes no attempt to explain anything of help you learn to write. whatev. take a different section!", + "pos": 0.049, + "neu": 0.841, + "neg": 0.11, + "_id": { + "$oid": "6711d68ccd60fca157e5ef8d" + } + }, + { + "text": "She's a great role model for academics, a kind teacher and very calm and helpful. She is great!", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5ef8e" + } + }, + { + "text": "If you take Intro to Art History, take it with anyone but this woman! She is rude, unkind, boring and clearly loves the sound of her own hard to understand voice. i have learned nothing, it's just a bunch of memorization. we dont even use the 80 dollar book! then i found out that there were really fun, inspiring young ppl teaching. want my $ back", + "pos": 0.222, + "neu": 0.643, + "neg": 0.135, + "_id": { + "$oid": "6711d68ccd60fca157e5ef8f" + } + }, + { + "text": "prof kjaer is just boring and kinda gruff. almost mean. i wish i could switch sections.", + "pos": 0.13, + "neu": 0.747, + "neg": 0.123, + "_id": { + "$oid": "6711d68ccd60fca157e5ef90" + } + }, + { + "text": "She is a terrific teacher. I didn't think I would like the class but she made it very interesting. If you are lazy though, you will be very unhappy in her class.", + "pos": 0.185, + "neu": 0.64, + "neg": 0.175, + "_id": { + "$oid": "6711d68ccd60fca157e5ef91" + } + }, + { + "text": "Most fantastic teacher I've ever she. She encompasses every perfect quality that a teacher should have. Besides making the subject interesting, she gives a few short paper assignments spaced far apart, the midterm and final are predictable- exactly what you learn in class. She's clear and is willing to answer every and all of your questions.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5ef92" + } + }, + { + "text": "She is very tough with students, specially when she noticed the English is your second language she makes your live difficult. A lot of work this is not a easy class.", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d68ccd60fca157e5ef93" + } + }, + { + "text": "Tough material, you got to constantly study and I recommend you make flashcards. She is very helpful, but if your looking to just pass the class and move on I advise to take another professor.", + "pos": 0.102, + "neu": 0.864, + "neg": 0.034, + "_id": { + "$oid": "6711d68ccd60fca157e5ef94" + } + }, + { + "text": "Alot of work. Class is not hard. Expect to memorize several pieces of art.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5ef95" + } + }, + { + "text": "Her English is pretty good (originally from Denmark), but when she speaks, she likes to say um..um....um......a lot. She can have more than a hundred times of um in one lecture hour. It's boring to listen her talking. She reads text out of her notes. I like art history, but not with this professor.", + "pos": 0.175, + "neu": 0.778, + "neg": 0.047, + "_id": { + "$oid": "6711d68ccd60fca157e5ef96" + } + }, + { + "text": "she sucks at teaching, always talks in a drone monotone n reads of the book..has random pop quizes she really suks n anoying stay away from her", + "pos": 0.0, + "neu": 0.912, + "neg": 0.088, + "_id": { + "$oid": "6711d68ccd60fca157e5ef97" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68ccd60fca157e5ef99" + }, + "professor_name": "Bin Guan", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "His accent makes it hard to understand him. He makes an already difficult topic more complicated. He does give a huge curve at the end however.", + "pos": 0.079, + "neu": 0.788, + "neg": 0.134, + "_id": { + "$oid": "6711d68ccd60fca157e5ef9a" + } + }, + { + "text": "First rule: DO THE WORK! He does problems that will be on the exam. He's a grad student i believe he may have been doing his PhD. Webwork is the designated homework tool for MATH 205-209. He is very caring about his students, and is always open answering questions. My experience was positive. He helps you pass the exam! So pay attention!", + "pos": 0.147, + "neu": 0.79, + "neg": 0.063, + "_id": { + "$oid": "6711d68ccd60fca157e5ef9b" + } + }, + { + "text": "Sometimes too much derivation in his lecture for a math class meant for engineers. Wish he could have done more example problems. Exams are questions from old finals. Plenty of chances to do well since he is a lenient grader and problems are pulled from past final exams.", + "pos": 0.154, + "neu": 0.745, + "neg": 0.101, + "_id": { + "$oid": "6711d68ccd60fca157e5ef9c" + } + }, + { + "text": "His lectures are kind of hard to follow because of his accent (which you'll get used to) and his explanations can be unclear. However, he is a nice professor. If you ask him for help after class, you'll get clearer answers/explanations to your questions. He gives good feedback on homeworks and exams, and he notes alternative methods to problems.", + "pos": 0.124, + "neu": 0.782, + "neg": 0.094, + "_id": { + "$oid": "6711d68ccd60fca157e5ef9d" + } + }, + { + "text": "The professor only reads from the textbook and does not teach the material", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5ef9e" + } + }, + { + "text": "This is the worst professor Ive ever had at CCNY. I dont even wanna major in math anymore because of him.", + "pos": 0.0, + "neu": 0.83, + "neg": 0.17, + "_id": { + "$oid": "6711d68ccd60fca157e5ef9f" + } + }, + { + "text": "just bad attitude", + "pos": 0.0, + "neu": 0.364, + "neg": 0.636, + "_id": { + "$oid": "6711d68ccd60fca157e5efa0" + } + }, + { + "text": "He is the worst prof ever. DONT TAKE HIM AT ALL", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d68ccd60fca157e5efa1" + } + }, + { + "text": "I only went too his class for the first 2 weeks of the semester and then only showed ups for exams and quizzes. He gives total of 8 quizzes every week and 4 exams every two weeks. I basically taught myself from watching videos. He accepts all hws at the end of the semester. Just make sure you do good on the tests and he drops the lowest one.", + "pos": 0.1, + "neu": 0.866, + "neg": 0.035, + "_id": { + "$oid": "6711d68ccd60fca157e5efa2" + } + }, + { + "text": "His accent is really hard to keep up with especially since he speaks fairly quickly. His quizzes are hard (Based on textbook hw) and his exams are just problems from previous finals. If you can teach yourself, then watch videos online from a different professor and you will be fine.", + "pos": 0.034, + "neu": 0.858, + "neg": 0.108, + "_id": { + "$oid": "6711d68ccd60fca157e5efa3" + } + }, + { + "text": "He's a fair grader, will leave comments to help you understand your mistakes. His accent is a bit hard to understand, but if you allow yourself to get used to it, it's not that hard. Quizzes are from hw. Exams are from old finals. Practice makes perfect!", + "pos": 0.227, + "neu": 0.7, + "neg": 0.073, + "_id": { + "$oid": "6711d68ccd60fca157e5efa4" + } + }, + { + "text": "DONT TAKE THIS GUY!! Couldn't understand a thing he was saying because of his accent, and calc 2 is already hard to understand as is. I honestly didn't learn a thing in class, I used online lectures for every lesson. Study old finals, thats what he uses for his exams. He curves but it only helps when you do above average in the class.", + "pos": 0.088, + "neu": 0.895, + "neg": 0.018, + "_id": { + "$oid": "6711d68ccd60fca157e5efa5" + } + }, + { + "text": "horrible !!! Save your time and GPA. I had to drop the class b/c I know I was failing. He's unorganized, has a heavy accent and gives hard tests. The test is way harder than practice problems and old finals. He doesn't do any review and excepts you to know how to solve problems he never showed how to do. Save yourself from a headache and stress.", + "pos": 0.097, + "neu": 0.674, + "neg": 0.229, + "_id": { + "$oid": "6711d68ccd60fca157e5efa6" + } + }, + { + "text": "Calc 2 is a tough class no matter what, but Bin is great at teaching everything you should know and does a good job at not making anything confusing. Gives quizzes and exams, so your whole grade is not dependent on only a few things. I went from an F the semester beforehand to an A+ with Bin. Great guy, always seemed to be in a good mood too.", + "pos": 0.246, + "neu": 0.727, + "neg": 0.027, + "_id": { + "$oid": "6711d68ccd60fca157e5efa7" + } + }, + { + "text": "There are 4 exams, with the examples taken from previous finals, one is dropped. We had 6 quizzes and 3 were dropped, though you also had the opportunity to correct your quiz at home and get half credits. He gives lots of partial credit and curves the exam grades.", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5efa8" + } + }, + { + "text": "Many people think he teaches quick but he really does try his best to make sure we understand everything. He writes comments on tests so you know what you did wrong. Takes quiz questions out of suggested HW and test problems from past finals. Very nice guy, always willing to help you out", + "pos": 0.231, + "neu": 0.661, + "neg": 0.108, + "_id": { + "$oid": "6711d68ccd60fca157e5efa9" + } + }, + { + "text": "I took him last semester for Calculus. He is the most helpful professor I've ever had throughout all my semesters. Very caring and helpful. Visit him during his office hour and he'll try his best to help you! RECOMMENDED!", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5efaa" + } + }, + { + "text": "Gives homework online that he takes the best grades of, same for quizzes in class. Gives quizzes on the material before an exam so you know what you need to study more. Drops a test grade, also curved test average at the end of the semester. VERY helpful lectures, much better than the other professor I had.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5efab" + } + }, + { + "text": "He really structures the class well. There are quizzes every few chapters and four chapter tests. It is particularly helpful that you can take the quizzes home and fix them. He writes really fast and puts a lot of stuff on the board but most of it can be found in the text book. His class was definitely my favorite calc class by far.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d68ccd60fca157e5efac" + } + }, + { + "text": "Worst math professor you can possibly take in City College. He is new too teaching so doesn't speak very good english and when asking questions in class he can't answer them. He bribed the students to give him a good rating and promising he will pass everyone, he failed most of the kids with D's. He knows the subject but can't explain anything.", + "pos": 0.056, + "neu": 0.849, + "neg": 0.095, + "_id": { + "$oid": "6711d68ccd60fca157e5efad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68dcd60fca157e5efaf" + }, + "professor_name": "James Juszczyk", + "rating": 3.8, + "department": "Graphic Arts department", + "comments": [ + { + "text": "Very grumpy and uncomfortable teacher, gets annoyed when asking for instructions and most of the time he just likes to point out your mistakes and is very critical on your work. Not recommended.", + "pos": 0.067, + "neu": 0.644, + "neg": 0.29, + "_id": { + "$oid": "6711d68dcd60fca157e5efb0" + } + }, + { + "text": "The class itself is easy if you know how to use a ruler, pen, and acrylic. He's super sarcastic and can be mean. There were times I'd be going through depressive episodes and coming to class was dreadful because I knew he'd find a way to make a snide remark, even though I do well with A's and A-'s. If you're affected by this, choose another prof.", + "pos": 0.114, + "neu": 0.769, + "neg": 0.117, + "_id": { + "$oid": "6711d68dcd60fca157e5efb1" + } + }, + { + "text": "He's really sassy, if you have never taken an art class EVER and you are not a perfectionist you will struggle. The supplies are SUPER expensive and the projects take time. Prepare to learn alot from trial and error because you apply what he teaches from the first 5 classes or so for the remainder of the semester. He does't always explain enough", + "pos": 0.065, + "neu": 0.834, + "neg": 0.101, + "_id": { + "$oid": "6711d68dcd60fca157e5efb2" + } + }, + { + "text": "Although the materials are kind of pricey, the class itself is pretty easy as long as you come in on time and watch how he shows you to do it. He is actually pretty funny and like the grumpy grandfather from the movie Up but he's actually a pretty nice man. His feedback is really good and he's an easy grader if you follow the rules and be decent.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efb3" + } + }, + { + "text": "His class isn't hard. If you want an A come in on time for the demonstrations and hand in the outside projects the date they're due. Each project takes about 5-9 hours of work at home so plan out your time. You don't have to be an amazing artist to pass his class. You're graded on how well you follow the assignment directions. Good luck!", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efb4" + } + }, + { + "text": "The materials are the worst thing for this class. Mine took over $200 with discount. When you buy these in store, make sure you get the cheaper ones since the guys at the store tend to give you the higher priced materials. The professor's cool, but get ready to work REALLY hard. I'm talking about hours here. Make sure your works are good. Gd luck!", + "pos": 0.22, + "neu": 0.71, + "neg": 0.071, + "_id": { + "$oid": "6711d68dcd60fca157e5efb5" + } + }, + { + "text": "Few tips: -gives an in-class and an at-home assignment, in-class assignments can be finished at home -he can be super sarcastic and overbearing, just let it slide -it can get overwhelming especially when it comes to painting -try not to miss class! get someone's phone number so you can ask them for the assignment -SUPPLIES $200 WITH DISCOUNT:/", + "pos": 0.11, + "neu": 0.858, + "neg": 0.032, + "_id": { + "$oid": "6711d68dcd60fca157e5efb6" + } + }, + { + "text": "Assigns one outside project every week. All projects lead to the next, attendance is important. Can be very sarcastic, but he gives good feedback and will answer all your questions. Great professor, loves neatness and precision. You will be given a list of art supplies on the first day, and gives a lot of importance to them.", + "pos": 0.3, + "neu": 0.678, + "neg": 0.022, + "_id": { + "$oid": "6711d68dcd60fca157e5efb7" + } + }, + { + "text": "He needs to be less sarcastic.", + "pos": 0.0, + "neu": 0.745, + "neg": 0.255, + "_id": { + "$oid": "6711d68dcd60fca157e5efb8" + } + }, + { + "text": "Awesome professor!! He's really chill and clearly knows his stuff. All you have to do is BRING THE ASSIGNMENTS ON TIME (so you won't fall behind), BE ON TIME FOR CLASS (so you won't miss the demos), and BRING THE REQUIRED MATERIALS (so you can work in class)!! That and putting the effort into your work is a recipe for a successful semester!!!", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efb9" + } + }, + { + "text": "Very good professor and interesting class! But I was spending 4-8 hours for each work. I've got A", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efba" + } + }, + { + "text": "Professor James Juszczyk is GREAT. He is easy and straightforward. He explains everything clearly. He can be tough with his words (might come off mean), but he is real and honest. Make sure you do your work on time and take your time. The class can be a bit time consuming, but if you get your work done you will not have a problem.", + "pos": 0.226, + "neu": 0.757, + "neg": 0.017, + "_id": { + "$oid": "6711d68dcd60fca157e5efbb" + } + }, + { + "text": "Great Instructor! May be a little of a hot-head but cools down easily. Don't get scared hes a nice guy. Lets you turn in missing assignments and does not penalize you too much. DO the work they are incredibly helpful. Learned a lot! GREAT COLOR MIXER. Would take a again!", + "pos": 0.346, + "neu": 0.614, + "neg": 0.04, + "_id": { + "$oid": "6711d68dcd60fca157e5efbc" + } + }, + { + "text": "The prof is okay although he can be a little rude/sarcastic. There's times where I wanted to ask a question but would hesitate because he'll respond to you as if you're slow. I'm not an artist at all but I managed to do his work and get A's on most of the work. The only thing I didn't like about the class is that it's too time consuming.", + "pos": 0.02, + "neu": 0.906, + "neg": 0.074, + "_id": { + "$oid": "6711d68dcd60fca157e5efbd" + } + }, + { + "text": "class is very easy but he tends to be rude at times. he will yell at you if you dont follow his directions because hes a perfectionist. just follow the directions and youll get an easy A! and dont ask questions too much he will bite you lmaoooo", + "pos": 0.165, + "neu": 0.765, + "neg": 0.07, + "_id": { + "$oid": "6711d68dcd60fca157e5efbe" + } + }, + { + "text": "took him in the summer very easy but anal bout how things should be done hes an easy grader i found his projects easy i got an A in his class", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efbf" + } + }, + { + "text": "The materials for class are expensive, but thats usually what you spend on one text book. He is a fair grader as long as your extremely neat and follow his exact directions. If you want to do it right expect to take at least 2 hours on each project. He can be rude, but i just killed him with kindness and jokes, and it worked.", + "pos": 0.184, + "neu": 0.694, + "neg": 0.123, + "_id": { + "$oid": "6711d68dcd60fca157e5efc0" + } + }, + { + "text": "i learned a lot about colour theory and the importance of precision in measurements in that class. he's a little hard to follow but he gives many examples and demonstrations. tough love is what you'll get and he doesn't stand for ill-manners but in the end you'll hopefully have some nice work to show for your troubles. don't miss a class!", + "pos": 0.219, + "neu": 0.692, + "neg": 0.089, + "_id": { + "$oid": "6711d68dcd60fca157e5efc1" + } + }, + { + "text": "he's a tough teacher,no one knows how he bases his grades or on what, Grade harshly takes all of the grade into account not only the final project. He's rude at times, Bring all your materials to everyclass always to get on his good side, a perfectionist, Effort does been anything take the time to do all the assignment and do it more than once if n", + "pos": 0.074, + "neu": 0.864, + "neg": 0.062, + "_id": { + "$oid": "6711d68dcd60fca157e5efc2" + } + }, + { + "text": "Don't take this class if you are not require to take it. The 200 dollar plus worth of supply is not worth it. The projects are idiotic and just not fun. Plus the teacher is an **** and likes to pick favorites. Also, if you are not an art major, you will hear the word EDM a thousand times before you are finish with this class.", + "pos": 0.099, + "neu": 0.795, + "neg": 0.106, + "_id": { + "$oid": "6711d68dcd60fca157e5efc3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68dcd60fca157e5efc5" + }, + "professor_name": "Robert Higney", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "Robert was absolutely stellar. He's a professor that really engages with the material, and class discussions never dragged. If you're an avid novel reader or you're taking your first lit course, he is super relaxed and virtually always available by email. If you can, take him. You won't regret it.\n\nIt is reading heavy though, but hey, it's English.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efc6" + } + }, + { + "text": "Professor Higney is incredibly smart and treats his students nicely. He appreciates all answers and doesnt criticize any students. I know my writing skills are bad, but Professor Higney really cheers you up, hell try his best to find your strengths rather than shaming students. Readings are very deep, but hes a softy with grades.", + "pos": 0.284, + "neu": 0.603, + "neg": 0.113, + "_id": { + "$oid": "6711d68dcd60fca157e5efc7" + } + }, + { + "text": "Professor Higney really respects all of his students and cares for them. He has been pretty relaxed this past semester because of COVID, and I think that really shows about his character. Couldn't recommend him more!", + "pos": 0.271, + "neu": 0.683, + "neg": 0.046, + "_id": { + "$oid": "6711d68dcd60fca157e5efc8" + } + }, + { + "text": "He is literally the best professor I've ever had! transition to online learning went smoothly and I was still able to learn a lot from him. He doesn't give much work just a few essays and some mini assignments but they're really easy. I would definitely take him a billion times if I had the chance!!!!", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efc9" + } + }, + { + "text": "Hes the BEST professor at CCNY. Lucky to have had the chance to take his class.", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efca" + } + }, + { + "text": "Not only is Robert hella smart, he's super understanding, extremely helpful and always available. Be prepared to read a ton, but he never calls on people. He's just so genuinely enthusiastic about the topic, that you'd want to attend class prepared. With his kickass book list, you'll def come out smarter. Oh, and he's also reaally handsome.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efcb" + } + }, + { + "text": "He's an amazing professor! My favorite thus far at CCNY. He's so caring and understanding so it makes it easy for students to feel easy and calm in his class. Very knowledgable and he understands every students interpretations of readings without forcing his own beliefs or ideas. ENGL 250 was a wonderful class and Prof. Higney was the best.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efcc" + } + }, + { + "text": "Prof. Higney is a wonderful professor, whose love of reading is clear to see and he can inspire you to read diff. forms of literature as well. From poetry to short stories, everything you read in his class is interesting and you'll learn ways to examine different writing in depth and overall get better at analyzing readings. Definitely recommend!", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efcd" + } + }, + { + "text": "A young, cookie-cutter professor, but decent nonetheless. Tends to ramble for the entire class period. Assigns way too much reading (seven novels to be exact) and four papers (three to four pages), however, he is a fair grader and gives very good feedback. Not the best professor, but good regardless and a nice guy out of the classroom to boot.", + "pos": 0.199, + "neu": 0.74, + "neg": 0.061, + "_id": { + "$oid": "6711d68dcd60fca157e5efce" + } + }, + { + "text": "Professor Higney is one of the BEST professors at ccny. He was charming, thoughtful, understanding, funny, dorky (in a good way), and just the most loving person I had the pleasure of learning from. I had him in ENG250 and decided to take him again for ENG261. Did not regret it. I recommend him thoroughly. The absolute best among the best.", + "pos": 0.43, + "neu": 0.547, + "neg": 0.023, + "_id": { + "$oid": "6711d68dcd60fca157e5efcf" + } + }, + { + "text": "Great, great professor. Lectures can be boring at times, especially if you dont read or arent interested in a particular text. But all in all, I loved Prof. Higney. He stimulates deep thought during lectures and relies on participation for productive conversation. He also gives AMAZING feedback on papers. You will leave his class a better writer", + "pos": 0.305, + "neu": 0.634, + "neg": 0.061, + "_id": { + "$oid": "6711d68dcd60fca157e5efd0" + } + }, + { + "text": "Professor Higney is a great pedagogue, easily the best I had during the semester. His lectures are clear and thought-provoking, he knows how to mediate a class discussion and to lead it towards fruitful territories. Do the readings he asks you to do, be reactive and respectful, and you'll be able to make the most of this amazing class.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efd1" + } + }, + { + "text": "Professor Higney's love of literature makes his classes a fun way to explore novels and how they relate to their period and place. There was a lot of reading, sometimes novel a week. I learned a lot about story construction, contemporary themes, and trends in novels today. Requirements included two essays and participation in class discussions.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efd2" + } + }, + { + "text": "I just adored him. Great teacher. I also spent the entire semester crushing on him.... so that didn't hurt.", + "pos": 0.362, + "neu": 0.547, + "neg": 0.091, + "_id": { + "$oid": "6711d68dcd60fca157e5efd3" + } + }, + { + "text": "Perfect!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efd4" + } + }, + { + "text": "Great professor. Really easy to talk to in regards to class work. Some of the material is dense, but everything is worth reading. He's intelligent and respectful. Pay attention, and you'll learn a lot. If you get the chance, take a class with him every semester. Don't even hesitate!! :)", + "pos": 0.307, + "neu": 0.62, + "neg": 0.073, + "_id": { + "$oid": "6711d68dcd60fca157e5efd5" + } + }, + { + "text": "Love him! He is a great professor who sincerely cares about teaching and how well his students are doing. He's really smart and attractive. Too well dressed, I always wanted to see him in a tee shirt, but he always wore dress shirts and suite pants.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efd6" + } + }, + { + "text": "Loved this class. The professor is great and so was the course. Participation is necessary but he makes it easy to participate even if you did not do the reading. He is an easy grader and says yeah a lot it is really funny. He is a cool guy, take this class it is enjoyable and easy.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efd7" + } + }, + { + "text": "Prof. Higney is the best! I wasn't able to take a quiz and he was so accommodating, even willing to meet me on a different day just so I can take it. The papers are super easy and so are his quizzes. He's also very lenient on handing in late assignments. Will definitely be taking another course with him in the future.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efd8" + } + }, + { + "text": "He is fantastic! Take him if you can! Very understanding, not a tough grader, just respect him and give him your attention in class and you will pass with flying colors!", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d68dcd60fca157e5efd9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68ecd60fca157e5efdb" + }, + "professor_name": "Robert Balun", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "He is an amazing professor and I'm glad I was in his class. The group assignments were interesting to me the most. He does answer questions and is a nice guy. Just do your work and you'll definitely pass. I would recommend him to anyone who need this class.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efdc" + } + }, + { + "text": "Writing for Engineering with Professor Robert Balun was an amazing experience and it was a pleasure being a part of his class as he was always there to help out anybody with any sort of question you may have towards the course content.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efdd" + } + }, + { + "text": "This professor was really amazing. He made sure that everyone was on the same page and was very lenient when it came to submission dates. As long as the class is respectful the semester will go by fast and easy.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efde" + } + }, + { + "text": "Took WHUM Spring 2022 overall he was a great professor. The class consisted of online lectures and in person discussions. There's a lot of reading but the assignments are straight forward and easy to do. He's helpful if you're confused and will go in depth on readings. Chill and understanding as well.", + "pos": 0.236, + "neu": 0.718, + "neg": 0.046, + "_id": { + "$oid": "6711d68ecd60fca157e5efdf" + } + }, + { + "text": "Amazing professor! He lets the class discuss the weekly book readings. I highly suggest going to his office hours to address any advice, issue, or have a nicechat with him :^)", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efe0" + } + }, + { + "text": "Professor Balun is an awesome professor and he is very understanding. He gives amazing feedback. His class is very interesting. He always discussed the readings with us and he wants everyone to participate in the discussions. Take him.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efe1" + } + }, + { + "text": "Prof. Balun's lectures are discussion-based, so they hardly feel like lectures at all. He has a great sense of humor, very engaging, and overall a well-rounded professor. The weekly lectures are about readings from books that are assigned, and the requirements for the class are straightforward. Easy-A+ if you are ready to stay on top of everything.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efe2" + } + }, + { + "text": "Hes an amazing teacher who cares about what his students have to say, and hes very lenient when doing grading for his class. Let alone, his class is discussion-based with only a few essays and hes a really kind grader who understands his students situation. Hes outside of class, has a good sense of humor, and respects you as a person.", + "pos": 0.268, + "neu": 0.705, + "neg": 0.027, + "_id": { + "$oid": "6711d68ecd60fca157e5efe3" + } + }, + { + "text": "He's awesome. I'd definitely take him again. He's really caring and wants you to do well.", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efe4" + } + }, + { + "text": "He's very understanding, a good person who tries to help students as much as he can. I'd take his class ten times outta ten.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efe5" + } + }, + { + "text": "Professor Balun is a kind and understanding person. He's passionate about his class and wants his students to do well. The readings can be boring and hard to understand but he tries to explain it as much as he can. His papers (3 in total) are super clear and he has an optional class workshop if you really need help with them. He's a gem, take him!", + "pos": 0.242, + "neu": 0.723, + "neg": 0.035, + "_id": { + "$oid": "6711d68ecd60fca157e5efe6" + } + }, + { + "text": "We mostly had conversations in class about readings he assigned. Some of the readings were hard to understand but he goes over it in class. He gave 6 short assignments and had us write two long essays. You will enjoy the class if you like English and talking.", + "pos": 0.14, + "neu": 0.837, + "neg": 0.022, + "_id": { + "$oid": "6711d68ecd60fca157e5efe7" + } + }, + { + "text": "Prof. Balun was great! He gave out 2 papers and 5 reading responses to do. Was not a big fan of the \"group work\" It's an easy class as long as you do the work and show up !", + "pos": 0.167, + "neu": 0.79, + "neg": 0.043, + "_id": { + "$oid": "6711d68ecd60fca157e5efe8" + } + }, + { + "text": "Professor Balun is a great professor. He gave us 2 essays this semester and 6 reading responses to write this semester. He gave long readings to read for homework so that we can discuss it in class. He made us sit in groups since the first day of class.", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efe9" + } + }, + { + "text": "Disappointing. We have been still waiting for feedback for the second paper which was due a month ago even after the semester is over. This professor suddenly changed the original plan which was in the syllabus and gave us (high stakes) final exam just 10 day notification before it. You also got to stuck in the same group through the semester .", + "pos": 0.035, + "neu": 0.887, + "neg": 0.078, + "_id": { + "$oid": "6711d68ecd60fca157e5efea" + } + }, + { + "text": "He is the chillest professor ever!!! you cannot fail his class unless you seriously try. hes so sweet and understanding! i feel bad because i feel like the students in the class (including me) took advantage of him because he was so nice!", + "pos": 0.28, + "neu": 0.629, + "neg": 0.091, + "_id": { + "$oid": "6711d68ecd60fca157e5efeb" + } + }, + { + "text": "He's a good professor by all means , hes really nice and is a very generous grader, if you find a way to fail his class its honestly because you did not try the slightest of bits", + "pos": 0.262, + "neu": 0.665, + "neg": 0.073, + "_id": { + "$oid": "6711d68ecd60fca157e5efec" + } + }, + { + "text": "He's literally the best professor. Very understanding, nice and calm and you can learn a lot from his class. No tests or quizzes just essays. If you pay attention in his class, essays are pretty easy to score a A on. I love this guy he's really the best.", + "pos": 0.358, + "neu": 0.589, + "neg": 0.053, + "_id": { + "$oid": "6711d68ecd60fca157e5efed" + } + }, + { + "text": "Genuinely caring professor. Took him over the summer. The works were really easy just follow the instructions. Double check the papers, cite the sources, make a nice looking portfolio. Gives three major papers, no tests, always join the discussion on BlackBoard. Did minimal work and still managed an A+.", + "pos": 0.197, + "neu": 0.76, + "neg": 0.043, + "_id": { + "$oid": "6711d68ecd60fca157e5efee" + } + }, + { + "text": "He's pretty cool. We made blogs showcasing the work we did during the course. I'm proud of the things I did in this class.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5efef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68ecd60fca157e5eff1" + }, + "professor_name": "Mahdieh Allahviranloo", + "rating": 2.9, + "department": "Civil Engineering department", + "comments": [ + { + "text": "This class she taught was actually CE264, but this hasn't been updated. Amazing professor because she actually taught the subject and went through it. Test are super ez if you practice from the textbook. Use the answer key sparingly as they are usually incorrect. Final project is is groupwork so get a good group.", + "pos": 0.192, + "neu": 0.747, + "neg": 0.061, + "_id": { + "$oid": "6711d68ecd60fca157e5eff2" + } + }, + { + "text": "I am taking CE326 with her now. So far she has been amazing. She cares about us and explains each question with kindness. I really enjoy her classes, she has a good energy and is so approachable. I think I will miss her after the class is over.", + "pos": 0.3, + "neu": 0.673, + "neg": 0.026, + "_id": { + "$oid": "6711d68ecd60fca157e5eff3" + } + }, + { + "text": "I think prof. Allahviranloo is a great professor, I took her class in fall 2018. Her courses are not easy but if you make an effort an do your job you'll pass the class with a good grade. She is also very kind and cares for her students. During office hours she makes sure that she is available and always give a knowledgable answer.", + "pos": 0.239, + "neu": 0.739, + "neg": 0.022, + "_id": { + "$oid": "6711d68ecd60fca157e5eff4" + } + }, + { + "text": "Im glad I took her excellent course in Fall 17. She is a very smart, active, and friendly teacher. She gives great lectures; her scientific knowledge made me learn a lot. She cares about students, ask her a question and see how she kindly explains everything to make sure you understand. Helpful homework, fair exams. I strongly recommend her class.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5eff5" + } + }, + { + "text": "I like her teaching, brainstorm and really inspire you to think! I learn a lot from her class, she gives feedback on questions, and so caring about students. Very smart and amazing professor, you really get practiced on logical thinking.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5eff6" + } + }, + { + "text": "I was so hesitant to take this class with her based on the negative comments but I m glad I took. It is half way through the semester and I have already learned a lot. She is so kind and caring, and puts so much energy in class to make sure we understand everything. Her classes are fun because she acts so spontaneously.", + "pos": 0.299, + "neu": 0.652, + "neg": 0.049, + "_id": { + "$oid": "6711d68ecd60fca157e5eff7" + } + }, + { + "text": "Don't listen to other negative comments, she is amazing. She cares about us and her classes are organized. I really enjoy her classes. Homework are doable, nothing crazy.", + "pos": 0.316, + "neu": 0.589, + "neg": 0.095, + "_id": { + "$oid": "6711d68ecd60fca157e5eff8" + } + }, + { + "text": "It's only now that I took 327 with another professor that I realized how bad this teacher is. She doesn't even cover all the material that she should an leaves you unprepared for the transportation section of FE exam. Her teaching style is straight up horrible and she gives you homework and a final project that she doesn't prepare you for them.", + "pos": 0.028, + "neu": 0.869, + "neg": 0.103, + "_id": { + "$oid": "6711d68ecd60fca157e5eff9" + } + }, + { + "text": "She is a really poor professor. The homeworks are really hard and it takes too long to finish it. You don\u00b4t feel prepared for that kind of homeworks. She doesn\u00b4t give you the oportune feedback about the homeworks. The day before the exam she gives the corrections. The exams are difficult. In addition, she treats bad her students.", + "pos": 0.029, + "neu": 0.803, + "neg": 0.168, + "_id": { + "$oid": "6711d68ecd60fca157e5effa" + } + }, + { + "text": "She is a nice person however, she is a professor and should be able to teach. Which she fails at doing completely. Take someone else.", + "pos": 0.098, + "neu": 0.804, + "neg": 0.098, + "_id": { + "$oid": "6711d68ecd60fca157e5effb" + } + }, + { + "text": "I'm so glad I didn't take 327 with this professor. She thinks that she knows how to teach but in reality can't. She assigns extremely difficult hw's and doesn't even prepare us for it. I'm seriously considering in droping the course and switching to structural or multidisciplinary. Do yourself a favor and avoid her class.", + "pos": 0.089, + "neu": 0.778, + "neg": 0.133, + "_id": { + "$oid": "6711d68ecd60fca157e5effc" + } + }, + { + "text": "Can't believe i experienced a teacher at CCNY who is worse than Keles. I advice you to take someone else. She straight up doesn't know how to teach and doesn't know how to make fair exams.", + "pos": 0.104, + "neu": 0.819, + "neg": 0.077, + "_id": { + "$oid": "6711d68ecd60fca157e5effd" + } + }, + { + "text": "Avoid at all cost. One of the worse professors at CCNY I've ever had.", + "pos": 0.0, + "neu": 0.694, + "neg": 0.306, + "_id": { + "$oid": "6711d68ecd60fca157e5effe" + } + }, + { + "text": "This class was horrendous.", + "pos": 0.0, + "neu": 0.441, + "neg": 0.559, + "_id": { + "$oid": "6711d68ecd60fca157e5efff" + } + }, + { + "text": "I really didn't feel like this professor prepared us for the exams. For exam 2 all she said was study the homework's. Yet we had no feedback from the homeworks cause we never got our grades back. And for the final she just said study everything when we still never got our homeworks back. She could have been more specific with what was on the exam.", + "pos": 0.027, + "neu": 0.907, + "neg": 0.066, + "_id": { + "$oid": "6711d68ecd60fca157e5f000" + } + }, + { + "text": "She is a nice person but she is not a teaching person. She is hard to understand and does not give feed back. I am a student that learns through feed back and practice but she fails to give me those options. Her homeworks are crazy. Exams are crazy. I recommend getting a educations degree then come back to teaching.", + "pos": 0.073, + "neu": 0.764, + "neg": 0.163, + "_id": { + "$oid": "6711d68ecd60fca157e5f001" + } + }, + { + "text": "Fast talker, when writing on board can barely keep up with what she writes/talks, Hw insanely difficult, take HOURS to finish, too many questions on exam for 1 hr, doesnt prepare you for the exams, study everything, (-_-) , No posted grades, cant tell where you stand in class, doesnt help you understand Hw, learn by doing mindset, 10/10 Nope", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d68ecd60fca157e5f002" + } + }, + { + "text": "She's OKAY. Her teaching method's pretty fast paced and there usually isnt time to ask questions due to the fact that she speaks at a pace of 50 words per second. Homeworks are very involved and require a lot of time, start them the day they are assigned or else you're screwed. Exams are fair even though everyone crys about them. ATTENDANCE COUNTS", + "pos": 0.116, + "neu": 0.839, + "neg": 0.045, + "_id": { + "$oid": "6711d68ecd60fca157e5f003" + } + }, + { + "text": "She is one of the worst professors I have ever had. She can't teach. Her homeworks are unreasonably hard. Her exams are too long for the period of time that we have with her. She does not give any feed back for homeworks so there is absolutely no way to study for her class. Her notes decent but it is not enough to learn with. Take someone else.", + "pos": 0.0, + "neu": 0.922, + "neg": 0.078, + "_id": { + "$oid": "6711d68ecd60fca157e5f004" + } + }, + { + "text": "A little tougher than Conway in terms of having harder tests and homeworks, but still a very effective professor. Would take again.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d68ecd60fca157e5f005" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68fcd60fca157e5f007" + }, + "professor_name": "William Rednour", + "rating": 4.7, + "department": "History department", + "comments": [ + { + "text": "Took this professor online class during my freshman year of college, easy A as long as you do the work (the work isn't even strenuous). Looking for an easy A, online class? Take this professor!", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f008" + } + }, + { + "text": "I took his class online and it was the best decision of my life. 12 quizzes and 2 papers and you are good to go. Just submit them before the due date and you'll get easy A. The quizzes are hard but if you have the textbook you'll be just fine.", + "pos": 0.156, + "neu": 0.823, + "neg": 0.021, + "_id": { + "$oid": "6711d68fcd60fca157e5f009" + } + }, + { + "text": "It was an online course so yeah easy he puts up the quizzes and papers way ahead of their due date and you can look through the book as you're doing your work. Do all the assigned work and you're money!", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f00a" + } + }, + { + "text": "I had the online course. A quiz every week but straight from the text so its not hard. Midterm and final papers, and a final. Not a hard class as long as you do your work", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f00b" + } + }, + { + "text": "excellent professor, exactly how professors should be in college, very helpful 2 the students, i took the online course 2 papers 5+ pgs each 12 quizzes (multiple choice) & a final exam (short answers). u can go 2 him & he will be very nice very cool prof highly recommended & textbook is a must EVERYTHING COMES FROM THE BOOK", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f00c" + } + }, + { + "text": "very nice, easy, approachable and helpful professor. I took the online course and it was fairly easy. Weekly quizzes (half due before midterms, the rest due before finals), a final and two papers. Everything was based on the text so reading is a must. Interesting subject matter.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f00d" + } + }, + { + "text": "I took this course online. There are 12 chapter quizzes, two papers, and an in person final. He grades the papers pretty difficultly. I spent alot of time on the papers and barely got A's on them. Chap quizzes come straight from the text. He gives a study guide for the final, start memorizing asap!! It's all about memorization!", + "pos": 0.092, + "neu": 0.866, + "neg": 0.042, + "_id": { + "$oid": "6711d68fcd60fca157e5f00e" + } + }, + { + "text": "GREAT PROFESSOR!!!!!! Very sweet and funny!!He Makes class interesting and fun!", + "pos": 0.686, + "neu": 0.314, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f00f" + } + }, + { + "text": "Gives 2 papers (2 pp each) and 12 quizzes. Quiz is 10 multiple choice questions, all of the answers are in the text and his online readings. Work is due at the end of each month. Must come in to take the final (written paper). It is easy to breeze through the quizzes, but you will find yourself lost on the final if you don't study. Take this class.", + "pos": 0.027, + "neu": 0.932, + "neg": 0.041, + "_id": { + "$oid": "6711d68fcd60fca157e5f010" + } + }, + { + "text": "One heck ok a guy. Makes class so much fun every topic there is something to laugh about. Just be in class on time and submit paper on time and you will do fine.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f011" + } + }, + { + "text": "Great professor! very helpful! and loves to teach his class! You'll do great if you do his work on time!", + "pos": 0.507, + "neu": 0.493, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f012" + } + }, + { + "text": "He is a great professor, he loves to teach and is really helpful. He is a really good person.", + "pos": 0.484, + "neu": 0.516, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f013" + } + }, + { + "text": "By far one of the professors at City. He loves what he teaches, you can tell even in th etone of his voice while he letures. He looks for helpful outside sources to relate to the students while lecturing.Reading an takiong good notes- A MUST-will help on quizzes he gives throughout semester. I loved him as an individual, and an intellectual.unny to", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f014" + } + }, + { + "text": "he loves teaching and his students. simply do the reading(if you are unsure about general history) and hand in the papers on time. he has a great sense of humor, organized, focused and clear about everything. you will only fail on your fault.", + "pos": 0.302, + "neu": 0.562, + "neg": 0.136, + "_id": { + "$oid": "6711d68fcd60fca157e5f015" + } + }, + { + "text": "No surprises, take good notes, participate, ask questions, stay focus A+ to B+ at least. PS. he's a sweetheart of a professor, we need more like him.", + "pos": 0.288, + "neu": 0.664, + "neg": 0.048, + "_id": { + "$oid": "6711d68fcd60fca157e5f016" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d68fcd60fca157e5f017" + } + }, + { + "text": "Online class, GREAT!! I wish we had more classes or prof like him. If you the homeworks, the quizzes, and hand in essays on time..you should do fine.", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f018" + } + }, + { + "text": "I took his WCIV online course and did well. Just do all the work, hand it in on time and you will do the same.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f019" + } + }, + { + "text": "Had Rednour for both 101 & 102. Wonderful professor! Must be self-motivated to work!!! Gives you deadline, expects material by deadline!! No lecture!! (best part about class online) Do yourself, and pretty easy to do yourself!", + "pos": 0.231, + "neu": 0.652, + "neg": 0.117, + "_id": { + "$oid": "6711d68fcd60fca157e5f01a" + } + }, + { + "text": "Great Teacher, very good papers. does not expect much just that you hand in papers when they are due and know what is given on exam. easy grader. i highly suggest that you take his class.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f01b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d68fcd60fca157e5f01d" + }, + "professor_name": "Gabriel Hernandez", + "rating": 4.4, + "department": "Spanish department", + "comments": [ + { + "text": "TAKE HIM AND YOU WILL NEVER REGRET!!!! It is so much worth it to come early in the morning to take his class. I have never felt bad coming into his class in the morning. Trust me, this man cares a lot about his students and he is hilarious. If you do your work, participate, and study, you will get an A. Hes the best professor ever at City College.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f01e" + } + }, + { + "text": "Best language professor I've had so far, a must take for those who genuinely want to learn the language. He breaks down even the most complex concepts into their most basic forms which makes learning simple and always makes sure every student has an idea of what's going on. A genuinely great guy and an incredible professor. I recommend!!", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f01f" + } + }, + { + "text": "He is the best professor to take if its your first time taking Spanish. He is very easy and understanding.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f020" + } + }, + { + "text": "Absolutely take him if you can!! He is very helpful and caring and does not belittle students for not knowing the language. He does speak mostly in Spanish during lectures, but if you ask him to clarify in English he will. There is homework after every class but it's fairly simple, overall he's a great professor!", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f021" + } + }, + { + "text": "Good professor. he helped me out. very caring", + "pos": 0.516, + "neu": 0.484, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f022" + } + }, + { + "text": "He's a great professor who cares about teaching Spanish. He makes the class fun and easy to learn. He does talk in Spanish, but I honestly think that helps you comprehend Spanish more. He's very lenient and willing to work with you. You should definitely take this professor.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f023" + } + }, + { + "text": "The professor only speaks in Spanish in his lectures, so for someone who doesn't speak Spanish fluently you will have a hard time understanding the content. He also calls on you randomly so be prepared to respond to his questions. Make sure you complete the homework and take all the quizzes/exams for credit even if you cant come into class.", + "pos": 0.11, + "neu": 0.869, + "neg": 0.022, + "_id": { + "$oid": "6711d68fcd60fca157e5f024" + } + }, + { + "text": "He reminds me of Emeril Lagasse, the man that sells air fryers. On my interviews, I will indicate that I am bilingual even though the only words I remember are hola and lo siento. Despite my lack of ability to remember Spanish, this class is an easy A. He will curve some grades.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f025" + } + }, + { + "text": "He's just such a nice and caring professor. If you have the chance to take his class take it. He really cares about his students like he didn't include topics on the finals the student was struggling in.", + "pos": 0.284, + "neu": 0.659, + "neg": 0.058, + "_id": { + "$oid": "6711d68fcd60fca157e5f026" + } + }, + { + "text": "Prof. Hernandez is a good professor. He is kind and isn't a tough grader. His assignments are mostly on the Pearson website, and other than that it's just exams/quizzes and presentations. My only complaint is that he speaks only in Spanish, which makes it hard cuz we're still learning it. Other than that, I would recommend him as a Span. professor!", + "pos": 0.151, + "neu": 0.796, + "neg": 0.052, + "_id": { + "$oid": "6711d68fcd60fca157e5f027" + } + }, + { + "text": "One complaint is that the tests were sometimes confusing, and the majority of the class could relate. You need to participate. He will grade you on Participation so good luck. his quiz and exam are harshly graded. He will fail easily if you don't put the right word or symbol for his exam or quiz.", + "pos": 0.143, + "neu": 0.742, + "neg": 0.115, + "_id": { + "$oid": "6711d68fcd60fca157e5f028" + } + }, + { + "text": "Gabriel is a really caring professor. I think he went a little too fast for everyone at the beginning of the semester, but other than that, everyone seemed to like him. One complaint is that the tests were sometimes confusing, and the majority of the class could relate. You need to participate. He will grade you on Participation so good luck", + "pos": 0.2, + "neu": 0.732, + "neg": 0.069, + "_id": { + "$oid": "6711d68fcd60fca157e5f029" + } + }, + { + "text": "Gabriel is a really caring professor. I think he went a little too fast for everyone in the beginning of the semester, but other than that, everyone seemed to like him. One complaint is that the tests were sometimes confusing, and majority of the class could relate", + "pos": 0.102, + "neu": 0.802, + "neg": 0.096, + "_id": { + "$oid": "6711d68fcd60fca157e5f02a" + } + }, + { + "text": "Prof Hernandez is great. He makes sure that everyone understands the grammar and his course isn't too heavy. He keeps class fun and engaging. Just come to class and actively try to learn and he'll help with the rest. 10/10 would recommend.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f02b" + } + }, + { + "text": "Best professor for Spanish 123 & Spanish 124. Take him. I learned so much.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f02c" + } + }, + { + "text": "Great Prof. for Spanish. Take him .", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f02d" + } + }, + { + "text": "Great professor, and an even better person. Did everything he could to make Spanish as understandable as possible, especially for first-time speakers. Ask questions! He will answer them back, and do not miss class he's consistent with attendance.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f02e" + } + }, + { + "text": "I took Spanish 1 in high school so this class was a breeze. Professor is pretty funny and cool. online hw everyday but hw is only 10% of your grade. Used my phone to cheat sometimes and I think he saw me one time and looked away. He teaches pretty good too.", + "pos": 0.217, + "neu": 0.72, + "neg": 0.063, + "_id": { + "$oid": "6711d68fcd60fca157e5f02f" + } + }, + { + "text": "If you want to earn Spanish please take him. You have about 5 quizzes which he will give you a review sheet. You have to participate in Spanish but he will help you out. You have to 2 oral presentations that arent long. The hw is online which is very easy to do. Overall, great class and loved him as a professor.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f030" + } + }, + { + "text": "I had him for Spanish 124 and he's great. He really wants you to learn and the class is designed so you are comfortable speaking, listening, and writing in spanish. I recommend taking his class. Its not difficult as long as you do your part", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d68fcd60fca157e5f031" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d690cd60fca157e5f033" + }, + "professor_name": "Kenneth Binns", + "rating": 4.3, + "department": "Mathematics department", + "comments": [ + { + "text": "TAKE HIM! Great professor at Baruch!!", + "pos": 0.499, + "neu": 0.501, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f034" + } + }, + { + "text": "Taught for a semester at FIT but he's not listed there. Went above and beyond, helped me actually understand the subject (business math) and was willing to help me and classmates understand what we had trouble with. The next level of math was really easy because of him. Chill and good sense of humor, class was fun.", + "pos": 0.281, + "neu": 0.672, + "neg": 0.048, + "_id": { + "$oid": "6711d690cd60fca157e5f035" + } + }, + { + "text": "Took CTSM With Binns at Baruch. Math is not an easy subject for me but Binns prepared me enough to pass the department math final with an 80% . Very effective, very cool teacher.", + "pos": 0.253, + "neu": 0.707, + "neg": 0.04, + "_id": { + "$oid": "6711d690cd60fca157e5f036" + } + }, + { + "text": "Pretty chill, really helps out and cares about your grade.", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f037" + } + }, + { + "text": "He's a good teacher if you don't take him poking fun too seriously. He tries to help you if you ask for it but if not, like other teachers, he'll assume you understood. It's better to always ask questions rather than sit there believing you'll eventually get it. Ask any question you have because the next class will be based on what's covered.", + "pos": 0.138, + "neu": 0.805, + "neg": 0.057, + "_id": { + "$oid": "6711d690cd60fca157e5f038" + } + }, + { + "text": "Cool guy, unny Jamaican accent but he helps a lot if you need to, always ask questions if you don't understand", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f039" + } + }, + { + "text": "he is really good and cares about his students. pay attention, do homework and ask questions. Remember to do practice questions by yourself and run it by him if you're still confused. he is very lenient and caring!", + "pos": 0.261, + "neu": 0.662, + "neg": 0.077, + "_id": { + "$oid": "6711d690cd60fca157e5f03a" + } + }, + { + "text": "He's great ! He makes sure you understand the topic well and will keep on explaining it till you understand.His class work is tricky but it makes the quizzes and exams super easy. He's also really funny!!", + "pos": 0.391, + "neu": 0.583, + "neg": 0.025, + "_id": { + "$oid": "6711d690cd60fca157e5f03b" + } + }, + { + "text": "He is the best Math Professor in the Entire world. He makes sure you never leave confuse. I took a class that was almost 3 hours long and he made sure we learned all the material. Good grader and great at explaining things. He even stays after class to help students individually if they need the help. He gets an A++++++ from me. He is the bestttt", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f03c" + } + }, + { + "text": "Great professor, funny and he pushes his students to acheive", + "pos": 0.467, + "neu": 0.533, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f03d" + } + }, + { + "text": "He was awesome. Had a 4 hour class with him everyday and he made class interesting and fun. He was able to explain everything clearly and with some extra studying I aced everything. Def recommend taking him", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f03e" + } + }, + { + "text": "Great professor! He have excellent technique to study!", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f03f" + } + }, + { + "text": "Thinks everyone knows the material and goes too fast. Not good for teaching calculus. Very vague and brief at explaining. I Dont recommend this class, unless you took Calc already somewhere else", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d690cd60fca157e5f040" + } + }, + { + "text": "Need to be fulltime so took it, what a waste. Material is very easy but many people are not even 5th grade math level so they do poorly. Binns can be funny but is average for math teacher. He grades too leniently. I got 90s on every test/quiz and got an A. Other classmates told me they got B+ and A- when they were getting 70s and lower...", + "pos": 0.08, + "neu": 0.857, + "neg": 0.063, + "_id": { + "$oid": "6711d690cd60fca157e5f041" + } + }, + { + "text": "very funny guy. Really great professor. I never left class confused.", + "pos": 0.544, + "neu": 0.456, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f042" + } + }, + { + "text": "great prof. gives hints on whats gonna be on tests and it actually ends up being on tests. pay close attention and you will do good.", + "pos": 0.223, + "neu": 0.732, + "neg": 0.045, + "_id": { + "$oid": "6711d690cd60fca157e5f043" + } + }, + { + "text": "He is one of the best math professors out there", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f044" + } + }, + { + "text": "He was a really good prof. He might have complained but would still review and answer any question asked by the students. He tried to make sure that everyone understood. He tried to make jokes and make the class seem more fun than it really was. And more importantly he does was a little flexible with the grading.", + "pos": 0.251, + "neu": 0.723, + "neg": 0.026, + "_id": { + "$oid": "6711d690cd60fca157e5f045" + } + }, + { + "text": "He was a very good professor. He went out of his way to make sure that we understood the material. The tests are not easy, but if you study hard you can pass. I would definitely recommend him for Precal.", + "pos": 0.22, + "neu": 0.711, + "neg": 0.069, + "_id": { + "$oid": "6711d690cd60fca157e5f046" + } + }, + { + "text": "Very good professor, tries his best to help you understand the material.", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f047" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d690cd60fca157e5f049" + }, + "professor_name": "Terry Wasserman", + "rating": 4.4, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Pretty good professor, just attend her lectures and take good notes (the finals is based on the notes you take in her class throughout the semester). If you miss class, get the notes from someone else. fun projects, light grader as long as you do your work should be fine. Strict with attendance, but allows you to make absences up.", + "pos": 0.147, + "neu": 0.833, + "neg": 0.02, + "_id": { + "$oid": "6711d690cd60fca157e5f04a" + } + }, + { + "text": "She's a welcoming professor and made the class interesting. Just make sure you engage in the class and put some effort into some of the major assignments and you'll be good. Make sure to take good notes since the final is open notes but only notes that you take down.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f04b" + } + }, + { + "text": "As long as you engage in the class you will be fine. Prof.Wasserman is interesting and inspiring. She's funny and the class isn't boring, don't let the title fool you. She is a tough-ish grader but all it takes is a little bit of effort. Reading heavy and longer tests than I expected but not terrible.", + "pos": 0.214, + "neu": 0.755, + "neg": 0.031, + "_id": { + "$oid": "6711d690cd60fca157e5f04c" + } + }, + { + "text": "Only a few small projects but they were very very easy. Shes very understanding and caring so if you have any questions shes happy to help. She tends to get distracted from the main topic but I didnt mind because those class discussions were still fun and intresting. Gives extra credit. Just participate and youll do well.", + "pos": 0.354, + "neu": 0.608, + "neg": 0.038, + "_id": { + "$oid": "6711d690cd60fca157e5f04d" + } + }, + { + "text": "She is a very welcoming professor. Just from the start of the class she maintains a very humorous tone and approach to her class. The materials are a bit boring but she has the effort to make it interesting. Weekly assignments on pop culture reference in Bible are a bit hard, but over all it is a great class. Her website is hard to guide though.", + "pos": 0.172, + "neu": 0.765, + "neg": 0.063, + "_id": { + "$oid": "6711d690cd60fca157e5f04e" + } + }, + { + "text": "Professor Wasserman is an amazing professor. Her classes are very fun & engaging. Papers are very interesting, but not too boring. The final was not too tough - if you pay attention in class & take notes. Would definitely take her again.", + "pos": 0.311, + "neu": 0.658, + "neg": 0.031, + "_id": { + "$oid": "6711d690cd60fca157e5f04f" + } + }, + { + "text": "Professor Wasserman is a very good teacher, the lectures and readings during class were in my opinion very engaging. Make sure to take notes during the lectures and participate maybe once or twice every class. The only con is that she can sometimes be a little unclear about what she expects in an assignment, but it's ok bc she isn't a harsh grader.", + "pos": 0.166, + "neu": 0.814, + "neg": 0.019, + "_id": { + "$oid": "6711d690cd60fca157e5f050" + } + }, + { + "text": "Professor Wasserman is a very fun person, and her lectures are interesting. She listens to her students, and always down to make changes and adjust her class.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f051" + } + }, + { + "text": "What a fabulous teacher! One of the very best at CCNY. Professor Wasserman is so kind and hilarious. I loved her class very much. As long as you do the work and show up, you will get a good grade!", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f052" + } + }, + { + "text": "Great professor as a person and personality wise but when it comes to assignments she can be a tough grader and also doesnt explain the tasks very well so it leaves you with unanswered questions about the assignment. This makes her class more difficult than it should be. If you do take this class, do all the work and youll definitely pass!", + "pos": 0.158, + "neu": 0.767, + "neg": 0.075, + "_id": { + "$oid": "6711d690cd60fca157e5f053" + } + }, + { + "text": "Really enjoyed this class. It is not hard to pass, she works with you and is willing to give you opportunities to improve. If you participate and do the work you can get an easy A. Take good notes, do the weekly assignments, pick good group members and you'll be fine.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f054" + } + }, + { + "text": "Shes a cool Professor but she grades tough - she doesnt do a final review and if you ask her a question she doesnt answer it directly instead shell answer in a question like what do you think? What does the Bible day?", + "pos": 0.112, + "neu": 0.851, + "neg": 0.037, + "_id": { + "$oid": "6711d690cd60fca157e5f055" + } + }, + { + "text": "She's chill but grades very harshly.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f056" + } + }, + { + "text": "Absolutely wonderful professor. Took her for a flexible core requirement. Weekly assignments on bible pop culture, one group project, two papers. Once you get your educational resources together, class will be a breeze. If you're interested in the class and not afraid to converse with her, everything is lovely.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f057" + } + }, + { + "text": "Professor Wasserman is a great professor, I have taken multiple classes taught by her and they basically have the same set up. weekly assignments (like a paragraph each), 1 group project, 1 paper, 1 take home final. I highly suggest taking her class. gives extra credit too.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f058" + } + }, + { + "text": "One of if not the best professor I've had while at CCNY, she's incredibly passionate and knowledgeable. Furthermore she goes out of her way to get her students involved in class discussions and make the classes something more unique and entertaining than your average lecture. Highly recommend her to anyone considering taking her class!", + "pos": 0.157, + "neu": 0.79, + "neg": 0.053, + "_id": { + "$oid": "6711d690cd60fca157e5f059" + } + }, + { + "text": "She's easily the best professor at City. She's passionate, engaging, and seems to truly care about her students. She's pretty funny too. You can ask her anything and she will give you an answer. I found myself taking as many of her classes as I could, and I was an English major.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f05a" + } + }, + { + "text": "Prof was okay. Her feedback was quite terrible; didn't give much for me to work with to improve. Work: 1 major group project, 1 paper, weekly assignments. Tries to make lectures interesting w/ corny jokes; wasn't a fan of them after first few classes.", + "pos": 0.18, + "neu": 0.719, + "neg": 0.101, + "_id": { + "$oid": "6711d690cd60fca157e5f05b" + } + }, + { + "text": "Professor Wasserman is so smart you will become smarter just by being around her! She will help your writing skills grow and your papers other classes will become better thanks to her! She takes the time to teach you how to research and what a good paper should look like, she is willing to meet with you after class to work on your paper!", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f05c" + } + }, + { + "text": "One of my favorite professors at City College. She makes the Bible really accessible and interesting. There are a few assignments, essays and one group project. You definitely have to put in some effort, but it shouldn't be difficult to do well, and you'll never be bored in class. Highly recommend.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f05d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d690cd60fca157e5f05f" + }, + "professor_name": "Vaclav Paris", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "Literary Theory and Joyce class were two of the best classes I took at City College. I would highly recommend all his classes, he is an understanding and caring professor that will help you elevate your writing. No other professor helped me as much as Vaclav.", + "pos": 0.23, + "neu": 0.731, + "neg": 0.039, + "_id": { + "$oid": "6711d690cd60fca157e5f060" + } + }, + { + "text": "The reading list was exhaustive, but Vaclav is the genuine article. His breadth of knowledge is inspiring. Never have I taken a class where the professor inspired so much thoughtful discussion. The Blackboard dialogue contained the most insightful critiques. This course made me feel very grateful for being at City College.", + "pos": 0.256, + "neu": 0.724, + "neg": 0.02, + "_id": { + "$oid": "6711d690cd60fca157e5f061" + } + }, + { + "text": "If you enjoy Professors that are monotone, unexciting, and teaches as if they are reading off a script, Paris is your guy. His class is really boring and he assigns quizzes with ridiculous questions like, \"What is this character's favorite drink?\". He will ignore you if you don't say something that aligns with his own fixated opinion on the text.", + "pos": 0.124, + "neu": 0.768, + "neg": 0.108, + "_id": { + "$oid": "6711d690cd60fca157e5f062" + } + }, + { + "text": "Paris runs his class with the mentality that you are only taking his class. Assigns ridiculous pop quizzes every class and expects you to memorize little details that you would miss in the readings because they are so insignificant. He isn't clear in his expectations at all and will not explain the midterm or final until a week before it's due.", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d690cd60fca157e5f063" + } + }, + { + "text": "Hes fantastic. He really does help a lot and is kinda funny. This is the kind of professor who is kind and makes class enjoyable. He is a tough grader tho, just a bit but not too bad. Take him anyways. I took him twice and both were good classes.", + "pos": 0.292, + "neu": 0.687, + "neg": 0.02, + "_id": { + "$oid": "6711d690cd60fca157e5f064" + } + }, + { + "text": "I took professor Paris for Literary Theory in Fall 2019. He's one of the best professors in the English department. I learned a lot more about literary theory and criticism than I expected. The readings were ALL exceptional. Midterm/Final papers were quite easy. Professor Paris is passionate, and very humorous. I highly recommend taking him.", + "pos": 0.241, + "neu": 0.717, + "neg": 0.042, + "_id": { + "$oid": "6711d690cd60fca157e5f065" + } + }, + { + "text": "If you have a passion for literature and learning, you will love his class. He is very passionate about his teaching, humorous, and very understanding. I've seen some bad reviews so I wanted to make sure that you know what a great professor he is. You have to put in the work if you want a good grade, but he is always willing to help you out!", + "pos": 0.251, + "neu": 0.72, + "neg": 0.028, + "_id": { + "$oid": "6711d690cd60fca157e5f066" + } + }, + { + "text": "Professor Paris isn't a good professor. He is always late to class, does a horrible job at presenting the material, and is disorganized. His lectures make no sense, when he speaks it isn't a coherent thought. His expectations of night time students is absolutely unrealistic. He doesn't understand that we work full-time jobs. Avoid at all cost.", + "pos": 0.0, + "neu": 0.806, + "neg": 0.194, + "_id": { + "$oid": "6711d690cd60fca157e5f067" + } + }, + { + "text": "Really boring class. No good discussions, he's dismissive of student's ideas and goes out of his way to tell you he hasn't reread the books he assigns. Tons of group work, usually at least two people in the group haven't done the reading. It's like taking 8th grade English. Easy, but you won't learn anything. Bored to tears.", + "pos": 0.11, + "neu": 0.798, + "neg": 0.092, + "_id": { + "$oid": "6711d690cd60fca157e5f068" + } + }, + { + "text": "One of the best professor I've take at CCNY. Professor Paris gives amazing lectures and he always accepts the opinions of his students. He makes the class so much better because he goes over the text. I would take him 100 times more.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f069" + } + }, + { + "text": "Professor Paris is a great teacher and breaks the content down and tries to make the class interesting. He is a very fair person and I have definitely learned quite a few things from his class. I highly recommend!", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f06a" + } + }, + { + "text": "Professor Paris is a great teacher and breaks the content down and tries to make the class interesting. He is a very fair person and I have definitely learned quite a few things from his class. I highly recommend!", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f06b" + } + }, + { + "text": "Write a response around 200 words after finish reading each book , a midterm paper and a final paper. 10 quizzes whole semester, drop one of the lower. One group presentation.", + "pos": 0.0, + "neu": 0.871, + "neg": 0.129, + "_id": { + "$oid": "6711d690cd60fca157e5f06c" + } + }, + { + "text": "One of the best professor I've ever taken at CCNY. Take him you won't regret, it was one of the class I looked forward to going to.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f06d" + } + }, + { + "text": "He will tell you that there will be pop quizzes, but his classes are fun and entertaining. He cares about the material and the books he gives. The choices are not bad either, if in doubt take his class, hes great!", + "pos": 0.365, + "neu": 0.581, + "neg": 0.054, + "_id": { + "$oid": "6711d690cd60fca157e5f06e" + } + }, + { + "text": "Hes so funny and sarcastic. I really enjoyed this class. He has a great sense of humor and tries to make the class interesting. Make sure you read because he gives pop quizzes. Hes a really great professor", + "pos": 0.41, + "neu": 0.549, + "neg": 0.041, + "_id": { + "$oid": "6711d690cd60fca157e5f06f" + } + }, + { + "text": "He's very passionate about James Joyce and taught Ulysses in a way that was intriguing! I really enjoyed his class, the readings were a bit on the heavy side (200+ pages each class) but it's doable. There are pop quizzes which you can't miss + two papers, pretty straightforward with what he expects from you. Definite yes :)", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f070" + } + }, + { + "text": "Amazing professor and shows a great passion for literature. He gives great feedback on all papers. I personally see a huge improvement in my argumentative and analyzing skills in all the papers i write now. Overall, don't second think and take a course that he is teaching.", + "pos": 0.323, + "neu": 0.637, + "neg": 0.04, + "_id": { + "$oid": "6711d690cd60fca157e5f071" + } + }, + { + "text": "This professor is amazing. He's is passionate about what he does and gives great feedback. I have seen the growth in my writing throughout the semester. He is very educated. He makes the class a fun learning experience. Show up, do the readings, do the papers, and be prepared for some pop quizzes. He gives ex-cred points. Highly recommend him.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f072" + } + }, + { + "text": "Great, GREAT professor. You have to read but it isn't much, and he's amazing, smart, and makes class fun. He gives lots of excred points here and there for students to get better grades. Plus he's kind of cute.", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d690cd60fca157e5f073" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d691cd60fca157e5f075" + }, + "professor_name": "Hasanthika Sirisena", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "They gives great feedback and are very knowledgeable. The syllabus may read as rude, but it is just written in a professional tone and they want you to know that what they are looking for your methods in writing rather than your innate talent. Read the readings, be ready to discuss, and participate; doing so will help your grade tremendously.", + "pos": 0.21, + "neu": 0.761, + "neg": 0.028, + "_id": { + "$oid": "6711d691cd60fca157e5f076" + } + }, + { + "text": "I have been fortunate enough to be in three of Hasanthika's classes. She has been hands-down my favorite professor at SU. Her classes are engaging and she is understanding of all students. She is an easy-grader and I have learned a LOT from her.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f077" + } + }, + { + "text": "This instructor was not great. She superficially read much of the students' work, and so could not give good feedback as she often misunderstood the submissions. She was also somewhat rude and callous to the feelings of others. Would not recommend- if she's going to teach a course and give feedback, must put more energy in student work.", + "pos": 0.036, + "neu": 0.773, + "neg": 0.192, + "_id": { + "$oid": "6711d691cd60fca157e5f078" + } + }, + { + "text": "This professor gave excellent feedback that helped me immensely. Early on, I wasn't sure she understood my work. But my work went from pretty good to a whole lot better, and after reading her comments again this morning, I have to credit this professor for the improvement. She has very good insights, and a real talent for teaching.", + "pos": 0.371, + "neu": 0.611, + "neg": 0.018, + "_id": { + "$oid": "6711d691cd60fca157e5f079" + } + }, + { + "text": "She was a nice professor. I learned a lot from her class and her workshop. If you put in the work and attend class, you'll receive an A.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f07a" + } + }, + { + "text": "This professor recently won the Juniper prize for her short story writing. In that light she is a tough grader and expects much of her students, yet she provides the meticulous and invaluable feedback on your papers necessary to succeed in any writing course. She is big on syntax and clarity and is very consistent in her teaching style. Take her!", + "pos": 0.187, + "neu": 0.792, + "neg": 0.021, + "_id": { + "$oid": "6711d691cd60fca157e5f07b" + } + }, + { + "text": "She is a very tough grader and very confusing at times. She laughs really weird too.", + "pos": 0.151, + "neu": 0.567, + "neg": 0.282, + "_id": { + "$oid": "6711d691cd60fca157e5f07c" + } + }, + { + "text": "She is honestly one of the greatest teacher out there. so helpful and all she wants to see is her students succeed. She's tough with work but she really wants u to pass", + "pos": 0.235, + "neu": 0.732, + "neg": 0.033, + "_id": { + "$oid": "6711d691cd60fca157e5f07d" + } + }, + { + "text": "Likes to give alot of reading based work, despite the fact that it's a creative writing class. Lessons are boring, gives notebook assignments every class. Not very open to other thoughts of subtext in works other than her own. Too much work.", + "pos": 0.121, + "neu": 0.83, + "neg": 0.049, + "_id": { + "$oid": "6711d691cd60fca157e5f07e" + } + }, + { + "text": "She is a good teacher, if you needed to meet her for extra help she would schedule time to meet. it is good to do what she asks for. Very clear", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f07f" + } + }, + { + "text": "You may be scared by her rules and syllabus at the first day of class but she's really trying to help the students. Also, you will still have a greater chance end up with a good grade even though you don't have good grades throughout the semester. Hard but really learn something from her!", + "pos": 0.205, + "neu": 0.696, + "neg": 0.099, + "_id": { + "$oid": "6711d691cd60fca157e5f080" + } + }, + { + "text": "I'm not crazy about the way she conducts workshop, but her comments are certainly helpful and her lectures are very enlightening.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f081" + } + }, + { + "text": "She conducts this class as if it's a critical reading&writng class or a literature class.There is way too much reading of published work and not enough workshopping, to help students improve their craft.Her demands and criteria are ridiculous.Also,she seems to have favorites.She isn't interesting or engaging.Horrible laugh.", + "pos": 0.165, + "neu": 0.753, + "neg": 0.082, + "_id": { + "$oid": "6711d691cd60fca157e5f082" + } + }, + { + "text": "She is a good professor but a horrible person. Her class is way too structured to be imagination based and she is much to strict. I found this class to be extremely dull, repetitive and uninspiring. I will never take this adjunct lecturer again and will never recommend her.", + "pos": 0.032, + "neu": 0.73, + "neg": 0.238, + "_id": { + "$oid": "6711d691cd60fca157e5f083" + } + }, + { + "text": "Professor Sirisena is a very intelligent and helpful teacher, if you just show up to class and do the work you will actually have fun. Participation is also mandatory but she lets everyone get a chance to do so. Her work load isn't light but it's not too heavy either. The work can be enjoyable as well as her class. Take her class!!!", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f084" + } + }, + { + "text": "She is such a sweet professor who cares deeply for her students. She is always available and is willing to work with you. I have taken 3 classes with her and rcieved and A for each one. As long as you come to class and show effort you will not be dissapointed.", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f085" + } + }, + { + "text": "Intelligent and articulate, professor Sirisena does require consistent but light reading and writing. Roll is taken every day. She is published, and very methodical in her approach to story construction (at least in this course) This may be a breath of fresh air for those used to esoteric instruction. Enjoyed the class.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f086" + } + }, + { + "text": "great professor.has a passion for teaching.highly recomended.", + "pos": 0.587, + "neu": 0.413, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f087" + } + }, + { + "text": "great instructor! fair grader! gives incentives to students who performs well in class, like exemptions on the final exams.", + "pos": 0.498, + "neu": 0.502, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f088" + } + }, + { + "text": "A great teacher", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f089" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d691cd60fca157e5f08b" + }, + "professor_name": "Scott Berlant", + "rating": 2.3, + "department": "Chemistry department", + "comments": [ + { + "text": "!!! THE WORST TEACHER EVER !!!", + "pos": 0.0, + "neu": 0.455, + "neg": 0.545, + "_id": { + "$oid": "6711d691cd60fca157e5f08c" + } + }, + { + "text": "A totally incompetent moron. A Lab tech who is very much more interested in embarrassing students than doing his job(prepare the solutions before lab session, make sure the lab is clean and the machines are operable). Somehow with his jewish connection,he's been allowed to go around like a wild dog. He needs to be tamed (2 bullets in his brain).", + "pos": 0.168, + "neu": 0.701, + "neg": 0.131, + "_id": { + "$oid": "6711d691cd60fca157e5f08d" + } + }, + { + "text": "First of all, scott is a lab tech who is fooling himself by believing that he is a teacher.CCNY is probably the only place that can tolerate such a moron to possess such a low skill in human interaction and survive in the system for such a long time.The Jewish connection kept him floating. Jack ass.", + "pos": 0.0, + "neu": 0.819, + "neg": 0.181, + "_id": { + "$oid": "6711d691cd60fca157e5f08e" + } + }, + { + "text": "Scott is definitely an \"acquired taste\" ... what you should remember is that he's constantly bombarded by students that don't do their homework, come to class unprepared, and want him to spoon-feed them the answers, and he has other things to do. If you respect his time, he'll respect you - and you'll get the answers you seek.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d691cd60fca157e5f08f" + } + }, + { + "text": "He does everything he can to make students feel stupid. Don't even ask him to clarify instructions, because he'll just give some arrogant response. Made us stay 1+ hours late to get the correct data, come to find out something was wrong with the sample HE gave us.", + "pos": 0.0, + "neu": 0.823, + "neg": 0.177, + "_id": { + "$oid": "6711d691cd60fca157e5f090" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d691cd60fca157e5f091" + } + }, + { + "text": "OMG He is like Scrouge!!!! He really looks down on people! Also if you want to avoid his rude comments just don't talk to him or try not to make any mistakes in one of your labs.", + "pos": 0.085, + "neu": 0.716, + "neg": 0.199, + "_id": { + "$oid": "6711d691cd60fca157e5f092" + } + }, + { + "text": "This man is the worst human being I have ever met in my entire life. He NEEDS to get fired ASAP!!! He will not have any patience with students who don't understand and he is generally horrible to each and every students. Thinks all students are idiots, so don't bother tring to prove yourself, he'll still think you're and idiot. AVOID AT ALL COSTS!!", + "pos": 0.029, + "neu": 0.735, + "neg": 0.236, + "_id": { + "$oid": "6711d691cd60fca157e5f093" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d691cd60fca157e5f094" + } + }, + { + "text": "Dude this guy has issues. Its not that he is a bad professor but he is just a bitter bitter man and he takes it out on the students. He should have a heart and try being human for a change. Maybe that will be nice for a change.", + "pos": 0.15, + "neu": 0.697, + "neg": 0.153, + "_id": { + "$oid": "6711d691cd60fca157e5f095" + } + }, + { + "text": "Yeah,I guess Scottie has to learn human realtions...I have never met such a arrogant man.He is usually fine up to the point when something goes wrong with he experiment.Then he doesnt even check the equipement and make students redo everything till they get satisfactory data.Sometimes we had to stay extra hour in lab to get correct data :(", + "pos": 0.065, + "neu": 0.797, + "neg": 0.138, + "_id": { + "$oid": "6711d691cd60fca157e5f096" + } + }, + { + "text": "Though he looks good outside, but he needs to send back to college, to learn human management and human relations because he got zero at this level. moreover, he needs to learn how to be humble, because his too proud and arrogant.change or get fired!!.", + "pos": 0.125, + "neu": 0.784, + "neg": 0.091, + "_id": { + "$oid": "6711d691cd60fca157e5f097" + } + }, + { + "text": "He is clear and concise, and wants nothing more than to get rid of each and every student as soon as possible. However, this man is insufferable. He made a girl cry because she was late. He is very nasty and thinks all students at city college are idiots. It shows. The best thing you can do is to stay out of his way.", + "pos": 0.092, + "neu": 0.813, + "neg": 0.095, + "_id": { + "$oid": "6711d691cd60fca157e5f098" + } + }, + { + "text": "He is the one of the worst people I have ever met!!! I wish he would have been fired. He is very rude and harsh grader..my results were fine, but he still made me do 4 more trials. That day I did a total of 7 trials. What an ass!", + "pos": 0.053, + "neu": 0.702, + "neg": 0.245, + "_id": { + "$oid": "6711d691cd60fca157e5f099" + } + }, + { + "text": "He is clear and knows what he is doing in the lab. Very organized. Have the meanest attitude I have ever seen in my life. I do think he is a bit prejudice, but I can be wrong. I wish he would stop harrassing and disrespecting students the way he keeps doing. It is not acceptable!", + "pos": 0.08, + "neu": 0.744, + "neg": 0.176, + "_id": { + "$oid": "6711d691cd60fca157e5f09a" + } + }, + { + "text": "You can't avoid him if you're taking Chem II. He runs the labs like a dictator. Takes the time to teach but has horrible people skills. Mean to everyone, does not discriminate. Be very careful with your words, even if you are smart and know the right answer!", + "pos": 0.164, + "neu": 0.753, + "neg": 0.083, + "_id": { + "$oid": "6711d691cd60fca157e5f09b" + } + }, + { + "text": "He's sarcastic but very clear, can't tolerate incompetent students...", + "pos": 0.489, + "neu": 0.409, + "neg": 0.102, + "_id": { + "$oid": "6711d691cd60fca157e5f09c" + } + }, + { + "text": "He has got some serious issues...he is almost like a student...competitive with his students to demonstrate his intelligence", + "pos": 0.246, + "neu": 0.694, + "neg": 0.06, + "_id": { + "$oid": "6711d691cd60fca157e5f09d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d691cd60fca157e5f09e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d691cd60fca157e5f09f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d692cd60fca157e5f0a1" + }, + "professor_name": "Michael Marcus", + "rating": 2.1, + "department": "Mathematics department", + "comments": [ + { + "text": "this class is absolutely awesome. Prof Marcus is a very capable teacher, and he is helpful whenever you have a question. this can be the most difficult class at city college, but i highly recommend it if you are motivated and want to learn.", + "pos": 0.287, + "neu": 0.678, + "neg": 0.035, + "_id": { + "$oid": "6711d692cd60fca157e5f0a2" + } + }, + { + "text": "Professor Marcus is a world class researcher in probability/stochastic processes. He is very knowledgeable & his presentation is coherent. However, the level of the development of the material is doctoral & is best suited for the specialist in the subject matter. Some may hit intellectual shoals regarding the discussion of renewal theory.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0a3" + } + }, + { + "text": "Does not know how to teach. Will go into proving the theory even though this is taught in calc 203. Avoid at all costs!!! Will get carried away and believes everyone is supposed to be a math wiz like him. Cannot explain has a very nice ego. Tests are extremely hard from last century.", + "pos": 0.107, + "neu": 0.828, + "neg": 0.064, + "_id": { + "$oid": "6711d692cd60fca157e5f0a4" + } + }, + { + "text": "This Professor is THE WORST!!! Everyone in my class is failing...", + "pos": 0.0, + "neu": 0.5, + "neg": 0.5, + "_id": { + "$oid": "6711d692cd60fca157e5f0a5" + } + }, + { + "text": "from one of his exams I got 90 and couldnt see any mistake. I talked to him and he couldnt see any mistake either and he gave me a 100. Same thing happened to my friend, he got 45, he was expecting 70 or higher. then he talked to him, he also agreed that there were no mistakes in that solution of one question. Yea Thats the way he grades!!!!", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0a6" + } + }, + { + "text": "Worst prof. for math. Avoid at all costs!", + "pos": 0.0, + "neu": 0.476, + "neg": 0.524, + "_id": { + "$oid": "6711d692cd60fca157e5f0a7" + } + }, + { + "text": "Worst prof. I have ever taken. Avoid at all costs.", + "pos": 0.0, + "neu": 0.559, + "neg": 0.441, + "_id": { + "$oid": "6711d692cd60fca157e5f0a8" + } + }, + { + "text": "Why did I even take math 391...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0a9" + } + }, + { + "text": "he is the worst teacher present on planet earth....please dont take him....and if u do, get ready to drop the class...", + "pos": 0.094, + "neu": 0.674, + "neg": 0.232, + "_id": { + "$oid": "6711d692cd60fca157e5f0aa" + } + }, + { + "text": "kind of easy exams almost same as the finals", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0ab" + } + }, + { + "text": "This is the WORST math professor at CCNY (and CCNY has some pretty bad professors). I am not trying to be funny or mean when I say this but you learn ABSOLUTELY NOTHING in this class. He is a nice guy but a HORRIBLE PROFESSOR. I had to take an F in this class and redue the whole class. Don't take this guy unless you want to fail", + "pos": 0.108, + "neu": 0.706, + "neg": 0.186, + "_id": { + "$oid": "6711d692cd60fca157e5f0ac" + } + }, + { + "text": "the worst professor ever. I loved math but whenever i had him i hated his math class.", + "pos": 0.099, + "neu": 0.565, + "neg": 0.337, + "_id": { + "$oid": "6711d692cd60fca157e5f0ad" + } + }, + { + "text": "He's a good enough prof. Plus... he's really cute!", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0ae" + } + }, + { + "text": "this professors is the worst you have him your are done. I recomend you to go to tutory or study from the book as most as possible or ask your friends cause he is useless plus boring and cocky and doesnt teach. DUring class i cameout with this quote and i actually tol d him \"being smart doesnt your able to teach\".", + "pos": 0.08, + "neu": 0.772, + "neg": 0.148, + "_id": { + "$oid": "6711d692cd60fca157e5f0af" + } + }, + { + "text": "confusing class... specially linear integration.& Stokes Theorem..... good thing about him is he is helpful..& willing to teach...", + "pos": 0.252, + "neu": 0.664, + "neg": 0.084, + "_id": { + "$oid": "6711d692cd60fca157e5f0b0" + } + }, + { + "text": "I don't know why everyone has given him such negative reviews, he's a nice guy and he really knows his stuff (he got a doctorate from MIT for christ's sake!). He gives detailed proofs for everything he teaches, unlike bad math teachers i've had in the past. Unless you suck at math and need your hand held through each subject, he's a good teacher.", + "pos": 0.115, + "neu": 0.75, + "neg": 0.134, + "_id": { + "$oid": "6711d692cd60fca157e5f0b1" + } + }, + { + "text": "He makes a lot of mistakes. Initially, he seemed to me a bad professor and a tough grader because his exams are tricky and nasty, but toward the end of the semester, I started grabbing his method of testing. He is a great prof, though. Your test book is your number one friend. In short, I did well in his class.", + "pos": 0.188, + "neu": 0.694, + "neg": 0.118, + "_id": { + "$oid": "6711d692cd60fca157e5f0b2" + } + }, + { + "text": "RUN!!!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0b3" + } + }, + { + "text": "He spends most of the class reading the book cause he doesnt know how to do the problems, he forgets a lot, doesnt give partial credit generally a bad professor...Im definately failing =(", + "pos": 0.0, + "neu": 0.713, + "neg": 0.287, + "_id": { + "$oid": "6711d692cd60fca157e5f0b4" + } + }, + { + "text": "Doesn't prepare significantly for class, constantly screws up his problems, goes off on tangents, bad at explaining stuff. I didn't have much trouble with the course, but I think others probably did. The book is your friend in Prof. Marcus' class; it explains things better than he does most of the time.", + "pos": 0.159, + "neu": 0.749, + "neg": 0.091, + "_id": { + "$oid": "6711d692cd60fca157e5f0b5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d692cd60fca157e5f0b7" + }, + "professor_name": "Stuart Rockefeller", + "rating": 4.4, + "department": "Anthropology department", + "comments": [ + { + "text": "Sweet old guy. His lectures are interesting and he does not give too much work.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0b8" + } + }, + { + "text": "He's a pretty good instructor, and he's very considerate with assignments. The course was graded by two short assignments, quizzes every week (lowest two dropped), a midterm, and a final. Attendance is required but lecture is very interesting. He also offers extra credit during the semester. Would absolutely recommend you take him.", + "pos": 0.269, + "neu": 0.703, + "neg": 0.028, + "_id": { + "$oid": "6711d692cd60fca157e5f0b9" + } + }, + { + "text": "Take this class! Very easy grade, the midterms are open-book, quizzes every week, but they are also open-book, easy to do. He also gives 2 chances for the quiz. \nParticipation is not required. The class was long, like 3 hours, so instead he did this weekly groups discussion, so it ended up on having to do this only 3 times total.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0ba" + } + }, + { + "text": "I went into this class thinking everything was fine until it wasn't. Prof. Rockefeller is nice but very unorganized. The prof. hasn't responded to a single student's email for the entire semester so don't even bother trying to reach out after class. Seems like he is caring for his students but hasn't once proven so throughout the entire semester. L", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0bb" + } + }, + { + "text": "He's such a sweet person. He's very caring and thoughtful of his students. There is quizzes every week based on readings and lecture videos. His midterms and finals are easy as long as your paying attention in class and taking notes. Definitely take him", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0bc" + } + }, + { + "text": "Professor is very nice. He is very flexible with assignments. If you think something is unfair he is willing to hear you out and make a change if necessary. Gives 7 pop quizzes throughout the semester, only 4-5 multiple choice questions which aren't too hard. Definitely need to study before tests and quizzes and take good notes during lecture.", + "pos": 0.14, + "neu": 0.781, + "neg": 0.079, + "_id": { + "$oid": "6711d692cd60fca157e5f0bd" + } + }, + { + "text": "Classes are pretty boring but Rockefeller is really nice and easy going. His tests are straight forward if you read the test book. Lectures are recorded so if you miss anything its fine. Hes a very good professor", + "pos": 0.363, + "neu": 0.563, + "neg": 0.074, + "_id": { + "$oid": "6711d692cd60fca157e5f0be" + } + }, + { + "text": "He's the best man I've ever seen on a screen. His class is something I look forward to every week but, since its over, I'm sad. Loads of weekly quizzes, but, he basically gives you the answers. He wrote a book on Quiripini, so it'll be all over the lectures and quizzes. Love him!", + "pos": 0.136, + "neu": 0.799, + "neg": 0.065, + "_id": { + "$oid": "6711d692cd60fca157e5f0bf" + } + }, + { + "text": "Very nice prof and great lectures. Lots of reading and some short writing assignments.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0c0" + } + }, + { + "text": "One of the best professors. Definitely recommend him.", + "pos": 0.653, + "neu": 0.347, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0c1" + } + }, + { + "text": "Prof Rockefeller is the best", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0c2" + } + }, + { + "text": "Professor Rockefeller's lectures are amazing. But you got to read a lot. Like 30 pages each week, His exams are super easy, so are the quizzes for each week. You will learn more from the lecture than reading the book to be honest. If you like discussing, this is a great class for you. You will get to discuss about culture, people, evolution etc.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0c3" + } + }, + { + "text": "Its a fairly easy class. one final and a few pop quizzes (he tells you in advance) he is extremely nice and funny. lectures can get boring but if youre into anthropology this class is for you otherwise pretty easy going not a harsh grader. do your work and youll get an A with no problem.", + "pos": 0.289, + "neu": 0.687, + "neg": 0.024, + "_id": { + "$oid": "6711d692cd60fca157e5f0c4" + } + }, + { + "text": "Prof Rockefeller is a great person who is caring and interesting. He is very considerate and is not stuck up. There are readings you must do and weekly quizzes. Pretty light class.", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0c5" + } + }, + { + "text": "Professor Rockefeller is a great lecturer & knew how to engage a very large class in a normal classroom setting. I was taken aback & slightly disappointed with how inflexible he became when the class went online. The quizzes were unreasonable at times but the tests were still very easy. His teaching style overall was very effective regardless.", + "pos": 0.193, + "neu": 0.779, + "neg": 0.028, + "_id": { + "$oid": "6711d692cd60fca157e5f0c6" + } + }, + { + "text": "He talks a lot. I'm not going to lie and say I never sat in class and wanted to fall asleep, multiple times. However, this class should not be hard to pass if you understand the material. Weekly quizzes are easy. Get read to read though. Heavy reading every other day or weekly.", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0c7" + } + }, + { + "text": "He is a decent professor but get ready to read. He also gives weekly quizzes which are 3 or 4 questions. One thing to note is that his quizzes/test are multiple choice questions which multiple answers, so they can be trickey. Overall, you're given 2 midterms, weekly quizzes, and a final. Its a decent class but you do have to put some effort in.", + "pos": 0.049, + "neu": 0.951, + "neg": 0.0, + "_id": { + "$oid": "6711d692cd60fca157e5f0c8" + } + }, + { + "text": "Took this class once a week so attendance is a must because he gives a quiz at the beginning of every class. He drops lowest two quizzes. Make sure you read the material for the week because obviously the quizzes are based on that and there are only 3 or 4 questions on it. Tests are easy as long as you read the material! He's really nice too.", + "pos": 0.114, + "neu": 0.851, + "neg": 0.035, + "_id": { + "$oid": "6711d692cd60fca157e5f0c9" + } + }, + { + "text": "Interesting lectures, readings are boring but required. Reading-based quizzes nearly every class. Put in the effort, do the extra credit, and it's not hard to get an A.", + "pos": 0.207, + "neu": 0.742, + "neg": 0.051, + "_id": { + "$oid": "6711d692cd60fca157e5f0ca" + } + }, + { + "text": "Great professor! He requires you to sign your name on a sheet during each class for attendance. You can have someone sign your name for you, but everything on the tests are discussed in lecture so you should go. He also gives pop quizzes almost every week so missing a class would probably hurt your grade. DO THE READINGS! The tests are really easy.", + "pos": 0.09, + "neu": 0.791, + "neg": 0.118, + "_id": { + "$oid": "6711d692cd60fca157e5f0cb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d693cd60fca157e5f0cd" + }, + "professor_name": "Danna Krayem", + "rating": 3.1, + "department": "Business department", + "comments": [ + { + "text": "She uploaded all the modules for the entire semester during the 1st week of class. 2 papers which required a lot of research and reading and 1 PPT project which was easy. Her HWs are super easy as long as you read the slides. This class is not difficult as long as you do the work and also not a class where you'll learn a lot.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0ce" + } + }, + { + "text": "This professor is really not that bad. Her asynchronous class is not that perfectly put together, but trust me, if she delays or messes up she holds herself accountable. I had asynchronous professors that mess up on their modules and don't even notice and let the students suffer. She will make up for any errors on her end.", + "pos": 0.091, + "neu": 0.724, + "neg": 0.185, + "_id": { + "$oid": "6711d693cd60fca157e5f0cf" + } + }, + { + "text": "This class was the absolute worst experience in my educational experience. Extremely inarticulate and absent professor. She graded everything AFTER the end of the semester! Poor feedback and no teaching strategy was implemented. Don't waste your time or money on this useless class or professor.", + "pos": 0.042, + "neu": 0.724, + "neg": 0.234, + "_id": { + "$oid": "6711d693cd60fca157e5f0d0" + } + }, + { + "text": "Terrible professor. Self-taught class, does not respond to emails. 3 assignments every week, requiring a lot of writing. Takes off points for little mistakes & does not tell you what you got wrong on exams to better yourself.. Stay away!!", + "pos": 0.061, + "neu": 0.752, + "neg": 0.188, + "_id": { + "$oid": "6711d693cd60fca157e5f0d1" + } + }, + { + "text": "Unfortunately, I must sadly say that this was the worse professor I had so far. Prof. seems nice, but she spends less than half of the class teaching and does not respond emails. I ace both midterms and don't know why got a terrible grade on the final because she ignores all emails from students. Would not recommend this class!", + "pos": 0.027, + "neu": 0.754, + "neg": 0.219, + "_id": { + "$oid": "6711d693cd60fca157e5f0d2" + } + }, + { + "text": "Took International Bus Environment class with her, its a online class. She wont give much home work. There is no test or final in this course. Her grading is based on weekly module. Its either a quiz, paper, and small assignment. Interesting class though. Just do the weekly module and you will get good grade.", + "pos": 0.094, + "neu": 0.87, + "neg": 0.037, + "_id": { + "$oid": "6711d693cd60fca157e5f0d3" + } + }, + { + "text": "She's a good professor. She also gives a lot of papers, make sure you have good grammar, are specific and get to the point for her papers and you'll have a good grade. She takes a few days to email back so you need to time when you email her and she also posts up grades a little late. You'll learn in her class but it's mainly self teaching.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0d4" + } + }, + { + "text": "Don't. Just DON'T, I honestly do not know how she teaching at a college level, soo many grammatical mistakes on her PP and her writing. Will take months to grade your stuff and the paper criteria are very unclear. All you will get from her is PP and a bunch of last min made up questions. The only upside to this class is the no Zoom meetings.", + "pos": 0.0, + "neu": 0.869, + "neg": 0.131, + "_id": { + "$oid": "6711d693cd60fca157e5f0d5" + } + }, + { + "text": "Class is inconsistent on the weekly basis. No warning on when big projects and assignments are coming. During finals week, she dropped a final project with no warning. Not much material graded material and some can hold a lot of weight. One miss and you might be screwed. She still hasn't graded some things over a month old, almost two months.", + "pos": 0.062, + "neu": 0.865, + "neg": 0.073, + "_id": { + "$oid": "6711d693cd60fca157e5f0d6" + } + }, + { + "text": "Absolutely the worst professor ever. Lazy is her middle name. Takes forever to respond to emails, gives 8 min quizzes. Puts NO effort into creating essays topics to write about. She literally just picks w.e topics. She wants 3x essays surrounded the same topic. Too lazy to type out another prompt. AVOID AT ALL COST !!!!!!!!!", + "pos": 0.032, + "neu": 0.729, + "neg": 0.239, + "_id": { + "$oid": "6711d693cd60fca157e5f0d7" + } + }, + { + "text": "She is a hard professor. she even give more hw even when class are over. She said this is the last one at the end but she still give more work to torture you with more hw. She feel pity for you but she still don't see that we are not PHD student with all this assignmen that she think that she can give us to do. a final project due in a week", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d693cd60fca157e5f0d8" + } + }, + { + "text": "She is a hard professor. the quiz is 8 minutes and five questions. you can't go back after submitting one question. Paper don't get me started. grade your paper like an Ivy college which needs more work coming from her to be exactly perfect. We don't meet but it is a hard class to take this semester. avoid if you don't like timed quizzes and hard paper. Bad Profs", + "pos": 0.051, + "neu": 0.765, + "neg": 0.183, + "_id": { + "$oid": "6711d693cd60fca157e5f0d9" + } + }, + { + "text": "This professor is a hard one. a lot of paper and she give us hw due to then giving holiday. for the people that say she is good, they are an idiot. she is so hard professor and she doesn't grade anything for weeks. You maybe think that think of taking her class but don't take her!!!", + "pos": 0.103, + "neu": 0.82, + "neg": 0.077, + "_id": { + "$oid": "6711d693cd60fca157e5f0da" + } + }, + { + "text": "Fall 2019 semester. It was an online class where we didn't meet. She was specific on what she wanted on her syllabus. 4/5 homework sheets a week with 3/4 questions each, which weren't so bad reading along with the textbook and her powerpoints. 2 tests. 1st was hard, 2nd wasn't so bad. Answers email quickly or 2 days later sometimes. Would take agai", + "pos": 0.105, + "neu": 0.875, + "neg": 0.02, + "_id": { + "$oid": "6711d693cd60fca157e5f0db" + } + }, + { + "text": "This is one of the best professors ive had at ccny. She is very present for her students if thought the course was online, she is caring and straightforward in her grading rubric. Do the work and you will do great.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0dc" + } + }, + { + "text": "The professor grades fairly.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0dd" + } + }, + { + "text": "Took her online class and it was bad. She assigns 4-5 homework each week, based on the PPT or chapters, though you don't really need the book. She doesn't provide any additional help like videos of lectures etc., just the PPT which I think doesn't include a lot, so it can be pretty difficult to do the homework. 1 midterm and 1 final.", + "pos": 0.116, + "neu": 0.801, + "neg": 0.083, + "_id": { + "$oid": "6711d693cd60fca157e5f0de" + } + }, + { + "text": "I took this class online. Class consists of 5-6 HW assignments due every Sunday, most of them were slightly long and required effort. Textbook wasn't used as much even though syllabus says to buy it. Easy A on HWs I'd say but she takes 10+ points off for minimal errors, which is unfair b/c its an online class w/ no physical instruction.", + "pos": 0.028, + "neu": 0.829, + "neg": 0.144, + "_id": { + "$oid": "6711d693cd60fca157e5f0df" + } + }, + { + "text": "She is a great teacher and will give you very good feedback for your work her online class has a lot of material so make sure you dont do it last minute and you read everything.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0e0" + } + }, + { + "text": "around 5 long assignments due every sunday, liked this class since it was online and accessible and wish ccny would offer more online classes", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0e1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d693cd60fca157e5f0e3" + }, + "professor_name": "Daniel Robles", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "I stopped attending class after the third lecture because he simply reads off the slides and then expects you to read the textbook soon top of that. I just read the textbook instead. Content is a lot but his exams are almost painfully easy-- he asked what colour 417 nm light was. Some of the questions are so simple they're confusing. Easy A though.", + "pos": 0.116, + "neu": 0.773, + "neg": 0.111, + "_id": { + "$oid": "6711d693cd60fca157e5f0e4" + } + }, + { + "text": "He is a super chill prof with a great sense of humour. His personality and behaviour reminds me of an average university student, which makes it easier to communicate with, and to relate to. His course material are very easy to learn and memorize, and the final paper is collaborative and straightforward. Nothing but respect for this prof.", + "pos": 0.166, + "neu": 0.783, + "neg": 0.05, + "_id": { + "$oid": "6711d693cd60fca157e5f0e5" + } + }, + { + "text": "Best prof ever if you have to take psychology at the u of a. He was super easy, questions are very straightforward on exams, and makes learning enjoyable!", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0e6" + } + }, + { + "text": "His lectures were very easily understood and he taught them very clearly. Showing up to class and taking notes is enough to do well in this class as his test questions are never surprising material you don't remember learning. He is very accessible outside of class. Always answered emails super fast.", + "pos": 0.196, + "neu": 0.773, + "neg": 0.03, + "_id": { + "$oid": "6711d693cd60fca157e5f0e7" + } + }, + { + "text": "Daniel is a really good professor, his lectures are interesting and if you have questions he will answer them in detail with great patience and respect. And it's not hard to get good grades in his classes. He is one of the best teachers I have ever had!", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0e8" + } + }, + { + "text": "He's a sick dude, 10/10 would recommend. I only have one other professor I have enjoyed as much as him. He was fun and relatable and actually made this class interesting.", + "pos": 0.287, + "neu": 0.633, + "neg": 0.08, + "_id": { + "$oid": "6711d693cd60fca157e5f0e9" + } + }, + { + "text": "This guy is truly a gentle soul. I respect his realness and overall down-to-earthness. He's one of the few professors that doesn't make his class the center of the universe so I was actually able to breathe and looked forward to going to his class. He kept everyone well informed so we knew exactly what to expect as well. 10/10 would recommend. :-)", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0ea" + } + }, + { + "text": "Honestly an amazing professor!! He makes the material relatable to our lives, is so understanding that life happens. Wants you to succeed in the class, and is not out to trick you.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0eb" + } + }, + { + "text": "Oh my goodness, he was amazing. The information he taught was very interesting, you will learn a lot. He posts the slides. He might give out a small group project as a presentation of a chapter in the textbook (so you may need the book). If he taught more classes, I would take them all. You can tell he enjoys teaching.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0ec" + } + }, + { + "text": "In my last year at CCNY and only now I've stumbled upon CCNY's best. He's truly an amazing, genuine, student first professor. He simply loves what he does and its not all about the grade but the learning experience. He's an expert in the field and success will follow him throughout his career. Do the work and you'll be flying high. MUST TAKE.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0ed" + } + }, + { + "text": "He is one of the best professor at CCNY. Very straight forward with grading, he lets you know your grade 48hrs before he submit the grade, giving you the chance to ask about any clarifications if you're not happy with it and willing to help out students at anytime. Great lecture and truly cares about his students. Gives a lot of extra credits also.", + "pos": 0.313, + "neu": 0.651, + "neg": 0.036, + "_id": { + "$oid": "6711d693cd60fca157e5f0ee" + } + }, + { + "text": "Amazing professor, and really funny. He was extremely helpful. The quizzes and tests are pretty straight forward. There was a group presentation and research paper; both were not bad at all.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0ef" + } + }, + { + "text": "I really enjoyed taking this course ,PSY253-remembering, thinking, and knowing. He really knows the material and makes class fun and engaging! Enjoyed attending the class even though it was an evening class (8pm). the grading is straight forward. His tests and quizzes are not hard. Make sure to take notes and read the textbook. Awesome Professor!", + "pos": 0.291, + "neu": 0.681, + "neg": 0.028, + "_id": { + "$oid": "6711d693cd60fca157e5f0f0" + } + }, + { + "text": "He is the best professor I've ever had. He keeps the class interesting, gives amazing real life examples. Gives extra credit and you can tell he loves his job. By far the Best! Will take many more classes with him!", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0f1" + } + }, + { + "text": "Best psychology professor in the world!! honestly super fun and engaging. he's a nice guy, and really encourages and gives everyone a chance to speak (if you want to). Exams have no surprises and gives partial credit. does not stress students, rather engages them in the subject. definitely a professor to take!!!!!", + "pos": 0.482, + "neu": 0.496, + "neg": 0.022, + "_id": { + "$oid": "6711d693cd60fca157e5f0f2" + } + }, + { + "text": "Best professor ever!!! he teaches the subject very clearly. For the final i barely had to study because he made sure during lecture that we all knew the material and it made it easy to comprehend and memorize the material. He needs to get tenure immediately!! If you ever need help with anything, he is there for you.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0f3" + } + }, + { + "text": "This professor is amazing! he creates a positive environment that encourages you to learn and participate. He is approachable and flexible. You actually learn in this class, and have fun doing it! my only regret is that it is my last semester and i cant take any more classes with him! Great job, professor!", + "pos": 0.319, + "neu": 0.642, + "neg": 0.039, + "_id": { + "$oid": "6711d693cd60fca157e5f0f4" + } + }, + { + "text": "Simply amazing! you will learn so much in this class.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0f5" + } + }, + { + "text": "I would strongly recommend this professor. He is soooo nice and easygoing. We do not have homework, just a simple quiz every week . It's only 3 questions and it is all about the lecture. We have four papers in this semester, and he is not crazy about the paper length, just explain everything properly and you will be fine.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d693cd60fca157e5f0f6" + } + }, + { + "text": "He is an amazing professor. He really cares that you are learning and is actually there in his office most of the time and offers his student to come by whenever if something is unclear. His grading is strait forward. He does assign papers, but if you pay attention in class then they shouldn't be difficult.", + "pos": 0.118, + "neu": 0.832, + "neg": 0.051, + "_id": { + "$oid": "6711d693cd60fca157e5f0f7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d694cd60fca157e5f0f9" + }, + "professor_name": "Marjan Persuh", + "rating": 3.7, + "department": "Psychology department", + "comments": [ + { + "text": "THE WORST PROFESSOR! SPEAKS DOWN TO STUDENTS DURING PRESENTATIONS DOES NOT EXPLAIN ANYTHING. DOESNT HAVE TIME FOR STUDENTS AFTER OR BEFORE CLASS.\nIF YOU HAVE A CHOICE DON'T TAKE HIS CLASS.", + "pos": 0.0, + "neu": 0.872, + "neg": 0.128, + "_id": { + "$oid": "6711d694cd60fca157e5f0fa" + } + }, + { + "text": "Dr. Persuh is an extremely talented teacher. Prepare to enjoy learning a lot of material. He's great. The only issue is that when you ask for individual attention he is dismissive and makes you feel like you're bothering him, and responds to e-mails very slowly. If you need his attention, be persistent and do not give up.", + "pos": 0.197, + "neu": 0.765, + "neg": 0.038, + "_id": { + "$oid": "6711d694cd60fca157e5f0fb" + } + }, + { + "text": "Lights up the whole class when he smiles. Such a nice professor Makes you forget its 7 on a Saturday", + "pos": 0.238, + "neu": 0.685, + "neg": 0.077, + "_id": { + "$oid": "6711d694cd60fca157e5f0fc" + } + }, + { + "text": "The class is hard, but the professor is good. You can tell he knows a lot and is passionate about the subject . We had 1 final, 1 midterm and 1 presentation and participation grade which counted the most. He was funny, the discussions were interesting even though I hated the subject and struggled with the material , I did the work and got an A-.", + "pos": 0.19, + "neu": 0.691, + "neg": 0.118, + "_id": { + "$oid": "6711d694cd60fca157e5f0fd" + } + }, + { + "text": "I dont understand how some comments here are so mean. He is a very good professor. Explains everything thoroughly. if u need him to explain again he will. he is patient. the class itself is difficult so don't expect an easy A professor at all. you'll get the grade you deserve in the end. he is fair and honestly id take it with him again if i could.", + "pos": 0.111, + "neu": 0.825, + "neg": 0.064, + "_id": { + "$oid": "6711d694cd60fca157e5f0fe" + } + }, + { + "text": "For those of you guys saying that he was a very bad professor and he was hard, he was the complete opposite. The course itself was definitely hard but he helped so much in understanding the material and explaining what we didnt understand. Extra credit and hw really helped boost our grades. Deff recommend him for future psych courses!!!!!!", + "pos": 0.147, + "neu": 0.745, + "neg": 0.108, + "_id": { + "$oid": "6711d694cd60fca157e5f0ff" + } + }, + { + "text": "The format of this course was the class present the material with using a psychology article in order to inform the class the material. Basically the class had to teach the material and I still not sure what I learned in this course. Not easy an easy course but he tends to grade ok-ish. Tends to ask the class to think about the experiments.", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d694cd60fca157e5f100" + } + }, + { + "text": "LOVED THIS CLASS!Wow..what can i say about this professor. He is extremely demanding but tries his best to make us understand the material. He gives many extra credit opportunities and he cares more about the effort we put into passing his quizzes. Just participate, do hw, extra credit and you're GOOD. Got an A+ in this class! expected a B-", + "pos": 0.346, + "neu": 0.635, + "neg": 0.019, + "_id": { + "$oid": "6711d694cd60fca157e5f101" + } + }, + { + "text": "HORRIBLE PROFESSOR!SPEAKS DOWN TO STUDENTS, DOES NOT EXPLAIN ANYTHING.DOESNT HAVE TIME FOR STUDENTS AFTER OF BEFORE CLASS. IF YOU CAN TAKE ANYONE ELSE FOR THIS CLASS IT WOULD BE WISE TO DO SO!! HE BELTTLED MY WHOLE CLASS EVERYONE WAS LOST THE WHOLE SEMESTER! HAD TO RELY ON TUTORING FOR EVERYTHING!!!!!", + "pos": 0.053, + "neu": 0.827, + "neg": 0.12, + "_id": { + "$oid": "6711d694cd60fca157e5f102" + } + }, + { + "text": "Did not enjoy this class at all. He talks down to students. Attendance mandatory, weekly homework assignments due, extensive online work due outside of the classroom, 3 exams, last exam is cumulative. He was not helpful outside of the classroom. Missed class twice and did not give advance notice to the class. Definitely do not recommend.", + "pos": 0.063, + "neu": 0.79, + "neg": 0.147, + "_id": { + "$oid": "6711d694cd60fca157e5f103" + } + }, + { + "text": "This professor is AMAZING!!! if you DO THE WORK, its an easy A. I wasnt that great at math but he explained the material SOOO well. best professor ever. he makes the class really interesting and funny and he's attractive.He gives a midterm, final and 3 quizzes, which is all based on the homeworks.", + "pos": 0.312, + "neu": 0.658, + "neg": 0.03, + "_id": { + "$oid": "6711d694cd60fca157e5f104" + } + }, + { + "text": "Great teacher--engaging and humorous. The daily quizzes are annoying but help you keep up with your reading. You'll appreciate them come exam time. You are pretty much expected to teach yourself from your reading, but he explains the tougher concepts really well. You definitely have to work in this class, but Persuh eases the way.", + "pos": 0.372, + "neu": 0.603, + "neg": 0.025, + "_id": { + "$oid": "6711d694cd60fca157e5f105" + } + }, + { + "text": "He takes attendance by the daily quizzes, which are pretty easy if you read the textbook before class. You pretty much read, teach yourself, and then he helps you with the tough concepts, which there are a lot. He makes the class interesting. It's one of those class that you really have to study for or else you'll be lost.", + "pos": 0.204, + "neu": 0.742, + "neg": 0.053, + "_id": { + "$oid": "6711d694cd60fca157e5f106" + } + }, + { + "text": "Great professor!! Really knows what he's teaching. The daily quizzes can get annoying, but are extremely helpful when the exams come around-exam questions come from quizzes. He's very thorough and the book really helps.", + "pos": 0.259, + "neu": 0.698, + "neg": 0.043, + "_id": { + "$oid": "6711d694cd60fca157e5f107" + } + }, + { + "text": "When he explains the material he does a really good job. He really tries to teach. DO NOT take this class thinking its going to be psych...its not its 98% chemistry. The daily quizes are rough. The quizes and tests are 100% short answer. No multiple choice. The textbook might as well have been in another language. GOOD professor.", + "pos": 0.135, + "neu": 0.832, + "neg": 0.033, + "_id": { + "$oid": "6711d694cd60fca157e5f108" + } + }, + { + "text": "This class is a horrbile class. The professor is great tho he will guide you thru the material and the quizs he give are 90% of the midterm and final", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f109" + } + }, + { + "text": "i felt like i was taking a chemistry class rather than a neuroscience class. ended up dropping it b/c those daily quizzes got on my nerves.", + "pos": 0.09, + "neu": 0.86, + "neg": 0.05, + "_id": { + "$oid": "6711d694cd60fca157e5f10a" + } + }, + { + "text": "First of all, what you really are taking is Intro to Neuroscience. And the textbook is ABSOULTELY required. Be prepared to have a general understanding of the first 450 pages by the time of the final. But don't panic! Persuh is a cool humble professor and practically spoon feeds the information. Ppl that didn't do well were simply lazy.", + "pos": 0.122, + "neu": 0.797, + "neg": 0.081, + "_id": { + "$oid": "6711d694cd60fca157e5f10b" + } + }, + { + "text": "Pro Persuh is a good teacher. I know some people who found neuroscience interesting because of him. But this is not an easy A class. You have to work hard to understand the material and Pro Persuh will be happy to help you understand it. If you fail the class, it's because you did not study, not because of his accent! Please....", + "pos": 0.198, + "neu": 0.683, + "neg": 0.12, + "_id": { + "$oid": "6711d694cd60fca157e5f10c" + } + }, + { + "text": "horrible...he speaks with a heavy accent...you can not understand what he says...he sounds like a textbook speaking...he teaches like he's teaching ivy league professors who already know the material...he goes over and over the same thing again and yet still remains 2 make it clear 4 us...i did not learn and i'll be taking it over with another prof", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f10d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d694cd60fca157e5f10f" + }, + "professor_name": "Zeev Dagan", + "rating": 2.5, + "department": "Administration department", + "comments": [ + { + "text": "Where did this guy disappear to? He was a hot shot, high handed, administrator. He is now teaching and became a nobody?", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d694cd60fca157e5f110" + } + }, + { + "text": "Not too much HW & very explicit about what will be on the exam. He's level-headed about how much time you have. But, not a lot of inspiration in that classroom, I gotta say.. He takes a dry subject (Heat Transfer) and makes it pretty dreary. Couldn't wait for that class to be over. Anytime heat transfer comes up in some other class, I cringe.", + "pos": 0.12, + "neu": 0.838, + "neg": 0.042, + "_id": { + "$oid": "6711d694cd60fca157e5f111" + } + }, + { + "text": "Did not really accomplish a whole lot for the money paid to to him, did he? Waste of a faculty position.", + "pos": 0.0, + "neu": 0.78, + "neg": 0.22, + "_id": { + "$oid": "6711d694cd60fca157e5f112" + } + }, + { + "text": "If u've had a lecturer that didn't care about students, you've had Dagan. I asked for a grading scheme. He became defensive & said if u get a low score, it's ur fault. He doesn't even spend 5 seconds grading HW or exams. It's super subjective and based on his mood. No feedback, just a number on exams. Buy a great textbook, read it, and do problems.", + "pos": 0.129, + "neu": 0.718, + "neg": 0.153, + "_id": { + "$oid": "6711d694cd60fca157e5f113" + } + }, + { + "text": "He goes beyond the general curriculum and textbook to teach material that would let his students better understand the topic. He is humerous, a fair grader, and emphasizes the informatiom you need to take away from the course. Heat Transfer has heavier material that he breaks up into more managable lectures.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f114" + } + }, + { + "text": "Professor Dagan is a great professor. He goes beyond the general curriculum and textbook to teach material that would let his students better understand the topic. He is humerous, a fair grader, and emphasizes the informatiom you need to take away from the course. Heat Transfer has heavier material that he breaks up into more managable lectures.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f115" + } + }, + { + "text": "Prof. Dagan's Heat transfer class was great. Heat transfer is a hard drawn out subject, however, Dagan's humor kept the class alive. When that didn't work professor sometimes ended class early for us to study on our own pace. The exams were fair. Professor, told us what chapters will be on the exams, if you studied those chapters you would do fine.", + "pos": 0.183, + "neu": 0.797, + "neg": 0.02, + "_id": { + "$oid": "6711d694cd60fca157e5f116" + } + }, + { + "text": "He changed the college in the last 10 years.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f117" + } + }, + { + "text": "This guy is still around? With the poor ratings he should have lost his job.", + "pos": 0.0, + "neu": 0.707, + "neg": 0.293, + "_id": { + "$oid": "6711d694cd60fca157e5f118" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d694cd60fca157e5f119" + } + }, + { + "text": "Horrible man. Little idea of what should be done, very full of himself for no real reason since he is an underachiever who has taken the college down from where it was some time ago. Under his leadership there is little hope for anything-despair is the current trend at the college. Dont waste money coming here.", + "pos": 0.079, + "neu": 0.83, + "neg": 0.091, + "_id": { + "$oid": "6711d694cd60fca157e5f11a" + } + }, + { + "text": "Without him this college would be lost", + "pos": 0.0, + "neu": 0.723, + "neg": 0.277, + "_id": { + "$oid": "6711d694cd60fca157e5f11b" + } + }, + { + "text": "Probably the only vision this man has is a television", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f11c" + } + }, + { + "text": "CCNY will suffer as long as he is provost. He has no vision whatsoever and his leadership skills are lacking.", + "pos": 0.0, + "neu": 0.775, + "neg": 0.225, + "_id": { + "$oid": "6711d694cd60fca157e5f11d" + } + }, + { + "text": "His disappearance is awaited. Absolutely no use and no help. Arrogant person.", + "pos": 0.159, + "neu": 0.485, + "neg": 0.355, + "_id": { + "$oid": "6711d694cd60fca157e5f11e" + } + }, + { + "text": "He's got to go.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f11f" + } + }, + { + "text": "Grade = F. No interpersonal skills, no administration skills, probably zero research and teaching skills (based on other factors). Running the place down. Will not be tenured elsewhere!", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d694cd60fca157e5f120" + } + }, + { + "text": "Two words can describe Zeev Dagan: arrogant and useless. City College students and administration would be better off without this individual. His plans to improve the college have failed and will continue to do so. Get rid of him!", + "pos": 0.117, + "neu": 0.688, + "neg": 0.194, + "_id": { + "$oid": "6711d694cd60fca157e5f121" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d694cd60fca157e5f122" + } + }, + { + "text": "He runs the place", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d694cd60fca157e5f123" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d695cd60fca157e5f125" + }, + "professor_name": "Allan Panoff", + "rating": 2.7, + "department": "Economics department", + "comments": [ + { + "text": "look if you do not care about your valuable time and rather learn literally nothing for an entire semester but get an A if you have a pulse... you found your guy!", + "pos": 0.069, + "neu": 0.878, + "neg": 0.053, + "_id": { + "$oid": "6711d695cd60fca157e5f126" + } + }, + { + "text": "took marketing class, you dont need the book, he will always repeat the same things over and over. The exams and Quizzes are all take home and open book. Participate as much as you can(he likes students who speak), the more he knows you the better grade you get.He sometimes misplaces his emails, so always be on top of what you send him", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f127" + } + }, + { + "text": "he is an easy professor, a great professor to take if you need to fill the economics core, everyone gets and A and you dont do any work at all !!! really EASY!!!! his classes are extremely boring and you hardly learn anything bt its a core and its an easy A,", + "pos": 0.232, + "neu": 0.728, + "neg": 0.04, + "_id": { + "$oid": "6711d695cd60fca157e5f128" + } + }, + { + "text": "This professor should not be teaching. In fact he does not teach. He spends class time going on about Wal-mart and China and how Social Security is a Ponzi scheme. Easiest A in the world if he knows your name. But note, you will not learn ANYTHING in his class. That is not an exaggeration. Easy A, waste of tuition.", + "pos": 0.054, + "neu": 0.843, + "neg": 0.103, + "_id": { + "$oid": "6711d695cd60fca157e5f129" + } + }, + { + "text": "This professor doesn't know how to teach. not organized and no point. His lectures don't relate to the book or current events. All he talks about is China's economy, Walmart, and \"how to market yourself.\" He is bias and not a fair grader. He always agrees with favored students and cant argue with students' point. Do Not take him if you wanna learn!", + "pos": 0.127, + "neu": 0.824, + "neg": 0.049, + "_id": { + "$oid": "6711d695cd60fca157e5f12a" + } + }, + { + "text": "Easiest class in the entire world. Exams are open notes, open laptop, open cellphone. i am not kidding. and exams are 80%. participation is 20% and all you need for an A is that he knows your face and name. anyone who gave him less than a 5 for easiness is out of their mind", + "pos": 0.092, + "neu": 0.886, + "neg": 0.022, + "_id": { + "$oid": "6711d695cd60fca157e5f12b" + } + }, + { + "text": "Panoff is not one to have for 6-10PM winter session. Very boring and often rambled about his divorce. Very biased (favors outsourcing, hates unions). There was no textbook use. I didn't learn anything in the course (supply and demand curve was main focal point). Gave me a B- and never answered emails demanding an explanation. Participation = A", + "pos": 0.059, + "neu": 0.767, + "neg": 0.174, + "_id": { + "$oid": "6711d695cd60fca157e5f12c" + } + }, + { + "text": "this is professor does not know how to teach AT ALL. he does not even talk about current news, all he talks about is \"if you can sell yourself, you can sell everything,\" his only examples are Wal-mart and China's economy. and he is not a fair grader, he gives A to whoever he likes. if you want to learn, DO NOT TAKE HIM. its a waste of time", + "pos": 0.056, + "neu": 0.88, + "neg": 0.064, + "_id": { + "$oid": "6711d695cd60fca157e5f12d" + } + }, + { + "text": "you would learn nothing from him. everyday, he just repeat what he discussed in previous class. discuss the financial news. but the midterm and final are easy. because they are open book and open internet you can use whatever you have and take-home essay.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f12e" + } + }, + { + "text": "I had him for both Eco 100(Micro) and Eco 103 this fall. He does repeat himself a lot. I think I showed up to Macro like 6 times in the semester, Micro I came a bit more frequent & participated, BS-ed on tests for both. I didn't learn ANYTHING I could remember to save my life from either class. Somehow he gave me a B+ for Micro and a A- for Macro.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f12f" + } + }, + { + "text": "This class is extremely boring. You only need the textbook for vocabulary words he gives. Also, take a lot of notes because his exams are based on what he goes on in class(even though he doesn't go over a lot of things). If you want to get an A, YOU MUST PARTICIPATE IN CLASS!! No exceptions. Make sure he knows your name by the end of the term.", + "pos": 0.049, + "neu": 0.877, + "neg": 0.074, + "_id": { + "$oid": "6711d695cd60fca157e5f130" + } + }, + { + "text": "First: DO NOT BUY THE TEXTBOOK you can pass the class without it(save your money) just go to class(boring) and take notes test mostly base on notes easy professor but i doubt you will learn anything since he repeats himself over and over again", + "pos": 0.041, + "neu": 0.89, + "neg": 0.069, + "_id": { + "$oid": "6711d695cd60fca157e5f131" + } + }, + { + "text": "Hes an a really nice professor. You attend and PARTICIPATE then you'll get your A. No text just notes and listen cause he loves to call on people. He also remembers your attendance. I've taken him a few times.", + "pos": 0.151, + "neu": 0.8, + "neg": 0.049, + "_id": { + "$oid": "6711d695cd60fca157e5f132" + } + }, + { + "text": "He loves to call on people and have you participate so you have to pay attention. You realy indeed do learn some communication skill. Hes an awesum professor.", + "pos": 0.119, + "neu": 0.836, + "neg": 0.045, + "_id": { + "$oid": "6711d695cd60fca157e5f133" + } + }, + { + "text": "The most boring and pointless class. He likes to babble about \"Toastmasters\" and \"Bricks and Clicks\". However, midterm is open book. If you need to increase your GPA take him. If you want to learn, don't take this class.", + "pos": 0.145, + "neu": 0.796, + "neg": 0.059, + "_id": { + "$oid": "6711d695cd60fca157e5f134" + } + }, + { + "text": "Easy A", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f135" + } + }, + { + "text": "he's the best professor in the world. i took him for marketing, money and banking and public finance. you'll get an A if you participate. you really don't have to buy the book just take lots of notes b/c they will be exactly like that on the tests. attendance is a must but exams are open book and'or take home. and pay attention because he will call", + "pos": 0.062, + "neu": 0.915, + "neg": 0.023, + "_id": { + "$oid": "6711d695cd60fca157e5f136" + } + }, + { + "text": "i love panoff!!! if you participate and show that you think on your feet you will be fine...i love his class because he uses real life examples as opposed to his fellow professors who focus mainly on old, boring formulas..i think everyone should take a class with panoff", + "pos": 0.164, + "neu": 0.795, + "neg": 0.041, + "_id": { + "$oid": "6711d695cd60fca157e5f137" + } + }, + { + "text": "yeah, so i pretty much didnt learn anything.. i got an A- though.. he seems like he just zones off and starts talking about random things (his favorite topics being Adam Smith & Wal-Mart.. if you want an A+, just tell him you work there.) the class was actually kind of humorous, he jumps from subject to subject, leaving the whole class lost.", + "pos": 0.202, + "neu": 0.766, + "neg": 0.031, + "_id": { + "$oid": "6711d695cd60fca157e5f138" + } + }, + { + "text": "If u wanna a very good grade and don't care a lot about the material.. he's perfect for u.. it's an easy A.. His class is fun also.. not boring at all..", + "pos": 0.345, + "neu": 0.595, + "neg": 0.06, + "_id": { + "$oid": "6711d695cd60fca157e5f139" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d695cd60fca157e5f13b" + }, + "professor_name": "Lena Retamoso", + "rating": 3.1, + "department": "Spanish department", + "comments": [ + { + "text": "Great class. The only class with student socializing well amongst another. The problem with the class however is the tough grading and heavy lectures. You really need to study in order to defend your grade in this class. Its sucks because i had to take a language class so i took spanish for the easy pass. But this prof makes the course too annoying", + "pos": 0.085, + "neu": 0.798, + "neg": 0.118, + "_id": { + "$oid": "6711d695cd60fca157e5f13c" + } + }, + { + "text": "Do not take this professor. She assumed because my roots were hispanic that I had to fluent speak and write the language when i clearly could not. She is not helpful and grades so harsh. Try and take another teacher who is more understanding and will help you out. I never missed a class and still ended up with a horrible grade.", + "pos": 0.1, + "neu": 0.769, + "neg": 0.131, + "_id": { + "$oid": "6711d695cd60fca157e5f13d" + } + }, + { + "text": "She is very harsh on students, takes absences very seriously and will take points off of your grade if you're late. She has very little sympathy and expects people to be experts on the subject (even in a beginner course). She is not accessible via email and hardly clarifies when you get confused. The course is mostly self-taught.", + "pos": 0.063, + "neu": 0.821, + "neg": 0.116, + "_id": { + "$oid": "6711d695cd60fca157e5f13e" + } + }, + { + "text": "Shes definitely a fair professor. She grades strictly according to her criteria. Her lessons are interesting and class can be fun. If you want to pass, make sure you attend class everyday and be on time. She takes off points when you're late or absent. You have to participate and have the textbook also. She also has homework assignments every night", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f13f" + } + }, + { + "text": "She's very demanding, lots of homework and quizzes & exam. Do not arrive late she will take points off. If your absence she will fail you. If Spanish isn't a passion do not take it. If you're familiar with the language then the course will be easy.", + "pos": 0.054, + "neu": 0.795, + "neg": 0.151, + "_id": { + "$oid": "6711d695cd60fca157e5f140" + } + }, + { + "text": "She expects you to know Spanish as soon as you walk in the classroom. She is pretty strict on lateness and attendance so if you have to tendency to come late do not take her she will fail you. She teaches straight from the textbook.", + "pos": 0.101, + "neu": 0.83, + "neg": 0.069, + "_id": { + "$oid": "6711d695cd60fca157e5f141" + } + }, + { + "text": "Great professor, absolutely loved her! At the end of the semester, she'll give you a good grade, even if you didn't exactly earn it. She gives online homework, which is easy. BRING YOUR TEXTBOOK EVERYDAY. Participate a lot and she'll love you", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f142" + } + }, + { + "text": "This professor is really good, the only drawback is that her English is not the best. But this is a Spanish course after all. Overall the class is super easy if you are a native speaker. The essays are not hard at all and the exams are a breeze as long as you pay attention and keep up with everything. The textbook is used a lot so don't lose it.", + "pos": 0.194, + "neu": 0.761, + "neg": 0.046, + "_id": { + "$oid": "6711d695cd60fca157e5f143" + } + }, + { + "text": "I disliked this professor. Im not a spanish speaker and she expected the class to speak fluently after the first week she teaches STRAIGHT from the book and doesnt explain anything properly. She is way to strict for a required language course. DO NOT take this class with her if you are not comfortable with the language. Not recommended.", + "pos": 0.041, + "neu": 0.851, + "neg": 0.108, + "_id": { + "$oid": "6711d695cd60fca157e5f144" + } + }, + { + "text": "sh's absolutely amazing. great teacher, very nice, helps you if you don't understand anything. answers all questions and makes everyone participate. she's also really adorable. you'll definitely love her", + "pos": 0.533, + "neu": 0.467, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f145" + } + }, + { + "text": "She is a great professor and takes her time to teach. If you don't understand she will explain it to you. She will also take as much time as you need outside of class to assist you. I strongly recommend her.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f146" + } + }, + { + "text": "she is a great literature professor, very calm and ready for class.", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f147" + } + }, + { + "text": "Excellent professor, very nice, and committed to students' learning. Always available for additional help outside of class", + "pos": 0.477, + "neu": 0.523, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f148" + } + }, + { + "text": "she's extremely helpful, always available whenever you need help. the test are very very easy and she lets you get extra points if you do poorly on a test, and pay attention and STUDY the review sheets she gives out...it might actually be the test", + "pos": 0.179, + "neu": 0.794, + "neg": 0.027, + "_id": { + "$oid": "6711d695cd60fca157e5f149" + } + }, + { + "text": "Ms. Retamoso is completly unqualified for a spanish teaching position. After a week she expects one to know the entire Spanish language. It is a ludicrous notion and she is just simply completely inept. Do not waste your time", + "pos": 0.056, + "neu": 0.884, + "neg": 0.06, + "_id": { + "$oid": "6711d695cd60fca157e5f14a" + } + }, + { + "text": "Do not do it to yourself shes is the equivalent of a robot. She just reads from the book and does not actually \"teach\". She speaks broken English, only take her if you speek Spanish already. Also she is an extremely strict grader and unsympathetic. This is not a \"chill\" class be prepared to do a lot of work and be stressed out over a required class", + "pos": 0.027, + "neu": 0.896, + "neg": 0.077, + "_id": { + "$oid": "6711d695cd60fca157e5f14b" + } + }, + { + "text": "A straightforward class. Quizzes and exams are based on the classwork and homework. She explains the material clearly and wants you to succeed. Muy bueno.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d695cd60fca157e5f14c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d695cd60fca157e5f14d" + } + }, + { + "text": "she is a disappointment. she lacks organization and leadership skills. this translates into everyone being confused about which lesson to study to which hwk is due to when are the tests. she doesn't have the confidence to deal with students who are grudgingly taking a required course. so avoid her b/c you will go insane before you learn anything.", + "pos": 0.0, + "neu": 0.796, + "neg": 0.204, + "_id": { + "$oid": "6711d695cd60fca157e5f14e" + } + }, + { + "text": "she is a dedicated teacher who is always organized. Also very simpathec with her student. it is not an easy class but she gives alot of quizzes to make sure that you get the point", + "pos": 0.128, + "neu": 0.828, + "neg": 0.044, + "_id": { + "$oid": "6711d695cd60fca157e5f14f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d696cd60fca157e5f151" + }, + "professor_name": "Jennifer Corby", + "rating": 3.9, + "department": "Political Science department", + "comments": [ + { + "text": "Prof. Corby was a great professor while online, her folders are the most organized and structured can ever find. She is very know knowledgable about American government and politics, you will leave her class feeling a political commentator. She has a heart and cares about students. Respond to emails onetime.", + "pos": 0.217, + "neu": 0.763, + "neg": 0.02, + "_id": { + "$oid": "6711d696cd60fca157e5f152" + } + }, + { + "text": "Not an easy A professor. She takes attendants right on time, lateness=absent. She's very passionate about her job. she speaks clearly.had her for psc 124.she's a hard grader", + "pos": 0.114, + "neu": 0.769, + "neg": 0.117, + "_id": { + "$oid": "6711d696cd60fca157e5f153" + } + }, + { + "text": "Politics and Time: one of the best professors. She is passionate, well-spoken, and very knowledgable. If you are interested in theory and perhaps applying it to current topics this is your spot. She is also very helpful and encouraging with complex topics. Only 3 papers a semester, no books to buy, attendance a MUST as well as participation/read", + "pos": 0.265, + "neu": 0.705, + "neg": 0.03, + "_id": { + "$oid": "6711d696cd60fca157e5f154" + } + }, + { + "text": "Politics of Time with this instructor is basically a philosophy course, don't take it if you're looking for an easy A or if you don't care to think philosophically about the concept of time. The instructor struggles to reconcile political ideas with the philosophical concepts that she presents, very knowledgable, strict attendance policy.", + "pos": 0.05, + "neu": 0.862, + "neg": 0.088, + "_id": { + "$oid": "6711d696cd60fca157e5f155" + } + }, + { + "text": "She was great at first, but towards the end of semester became a bore and a tough grader. For the most part she is good. I learned a lot.", + "pos": 0.18, + "neu": 0.701, + "neg": 0.119, + "_id": { + "$oid": "6711d696cd60fca157e5f156" + } + }, + { + "text": "Great teacher, very clear and always engaging. Fair grader.", + "pos": 0.7, + "neu": 0.3, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f157" + } + }, + { + "text": "...When grading papers, she does what in my opinion every teacher of a higher education institution should do: grade the paper based on the assumption that the student has gone through at least 4 drafts before submitting the paper. It is simple. If you are looking for an easy A DO NOT TAKE. If you are interested in your acaemic development TAKE IT.", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f158" + } + }, + { + "text": "Do not let my easiness rating mislead you .I say the class is easy because political philosophy (in fact any philosophy) is something that interests me a lot, so I did all the work (which for some, depending on critical thinking capabilities and familiarity with the topic can be challenging) assigned...KEEP READING", + "pos": 0.112, + "neu": 0.811, + "neg": 0.077, + "_id": { + "$oid": "6711d696cd60fca157e5f159" + } + }, + { + "text": "You can get an A here! She is clear, but U MUST read, analyze & take good notes on her lectures.She makes it all come alive... but U MUST READ. No TEST, just 3 or 4 Essays. She likes to answer questions & will guide U if U are having difficulties with essays. She has nice personality.", + "pos": 0.231, + "neu": 0.691, + "neg": 0.077, + "_id": { + "$oid": "6711d696cd60fca157e5f15a" + } + }, + { + "text": "Other than the fact that she's a harsh grader, her class is pretty awesome. She gave great discussions, we took detailed notes every class & the readings were ok for the most part. Oh, by the way, she's pretty too.", + "pos": 0.313, + "neu": 0.633, + "neg": 0.054, + "_id": { + "$oid": "6711d696cd60fca157e5f15b" + } + }, + { + "text": "HARDEST GRADER. Take lots of notes. Like don't even look up just take mad notes and put them into ur essay. I wouldn't take this PROF again. knows her stuff but cant teach a lick.", + "pos": 0.047, + "neu": 0.896, + "neg": 0.057, + "_id": { + "$oid": "6711d696cd60fca157e5f15c" + } + }, + { + "text": "She's a tough grader because she expects you to analyze the text. She is very helpful, if you take non-stop notes your papers will be good. It's almost the end of the semester and I wish I would have bought a recorder cause she does talk way too fast. She knows so much information that you can't write it all. Not an easy A, but it's college.", + "pos": 0.083, + "neu": 0.876, + "neg": 0.042, + "_id": { + "$oid": "6711d696cd60fca157e5f15d" + } + }, + { + "text": "This is a true professor. Passionate and well-rounded, she loves politics and is extremely intelligent. Make sure to do the readings because she asks for a lot of participation and genuinely likes to hear what the students have interpreted from the readings. She makes the class fun and keeps it very real.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f15e" + } + }, + { + "text": "I absolutely loved her. You can tell that she is dedicated to her work. I wasn't expecting the class to be what it was but it was. She doesn't ask for much but that we read. She prepares a packet as well as asks for several books. Quizzes are given to classes who DO NOT participate. Write down A LOT of notes and use it in your essay!", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f15f" + } + }, + { + "text": "Assignments can be a bit demanding. Comparing these theorists to one another is not easy. However, she is quite approachable during her office hours and will give you advice. she actually types her response to the 3 papers she gives. There she explains why you got your grade and how you can improve. Work hard and an A is possible.", + "pos": 0.045, + "neu": 0.867, + "neg": 0.088, + "_id": { + "$oid": "6711d696cd60fca157e5f160" + } + }, + { + "text": "very tough grader", + "pos": 0.0, + "neu": 0.527, + "neg": 0.473, + "_id": { + "$oid": "6711d696cd60fca157e5f161" + } + }, + { + "text": "She's very demanding, you have to read A LOT!! but her class is 101 for political science, you HAVE to know the basics so read, read and read. She's an excellent professor!", + "pos": 0.158, + "neu": 0.8, + "neg": 0.043, + "_id": { + "$oid": "6711d696cd60fca157e5f162" + } + }, + { + "text": "She's big into reading. If you want to know about political philosophy, though, I'm not sure you can do any better than her PSC 124. Tough grader, but fair (IMHO).", + "pos": 0.179, + "neu": 0.74, + "neg": 0.081, + "_id": { + "$oid": "6711d696cd60fca157e5f163" + } + }, + { + "text": "She is hot but WAY to much reading... She expects you to be able to read Machiavelli in one week.... Impossible. Her papers are 5-7 pages long and this is for political philosphy. All she does is lecture writes absolutly nothing down on the board and gives suprise quizzes. IF YOU CAN AVOID HER CLASS", + "pos": 0.0, + "neu": 0.933, + "neg": 0.067, + "_id": { + "$oid": "6711d696cd60fca157e5f164" + } + }, + { + "text": "she a great teacher. yea her midterms and finals are alittle tough but if you do you work you should do good . I enjoyed taking her.", + "pos": 0.309, + "neu": 0.655, + "neg": 0.036, + "_id": { + "$oid": "6711d696cd60fca157e5f165" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d696cd60fca157e5f167" + }, + "professor_name": "Kameshwari Shankar", + "rating": 2.4, + "department": "Economics department", + "comments": [ + { + "text": "Constant errors when teaching", + "pos": 0.0, + "neu": 0.556, + "neg": 0.444, + "_id": { + "$oid": "6711d696cd60fca157e5f168" + } + }, + { + "text": "what do you want other students to know about this professor?", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f169" + } + }, + { + "text": "Makes life HELL. The textbook material does not translate to quizzes and tests. AVOID at all costs. Heavy accent and the application used for the class are not optimal for learning. Her TA Mohd Hassan is a joke, dude would let you skip class, outdated Computer, get questions wrong and most of the time he never showed up.", + "pos": 0.032, + "neu": 0.772, + "neg": 0.196, + "_id": { + "$oid": "6711d696cd60fca157e5f16a" + } + }, + { + "text": "Save money and avoid her. Its unfortunate that she teaches so many classes at CCNY because she is really monotious and does not teach well. PSETS and exams were really hard, and she graded harshly. Be prepared to study everyday because the hws will take up your whole day. Micro is hard but there are better professors for this class", + "pos": 0.111, + "neu": 0.777, + "neg": 0.113, + "_id": { + "$oid": "6711d696cd60fca157e5f16b" + } + }, + { + "text": "Prof. Shankars class requires you to study a lot. There are weekly quizzes, a paper, and midterm + final exams. This is an incredibly difficult class. You will need to study pretty much every day in order to do well.", + "pos": 0.118, + "neu": 0.821, + "neg": 0.062, + "_id": { + "$oid": "6711d696cd60fca157e5f16c" + } + }, + { + "text": "I would not recommend her. She does not teach well, and grades very tough. I dont understand why she teaches so many business courses at CCNY. She grades the PSETS and exams very harshly. Students will be happy if they get at least 50% on the exams. She responds to emails late, and CCNY should keep an eye out on her. Please avoid at all costs. 1/5", + "pos": 0.08, + "neu": 0.814, + "neg": 0.106, + "_id": { + "$oid": "6711d696cd60fca157e5f16d" + } + }, + { + "text": "DO NOT TAKE HER. It was the hardest class I have taken. She doesn't explain very well. Expects you to answer perfectly. Those PSETs were overly complicated. PSETs, quizzes and midterms were three different things. She had to curve the grades because they were so bad.", + "pos": 0.078, + "neu": 0.8, + "neg": 0.121, + "_id": { + "$oid": "6711d696cd60fca157e5f16e" + } + }, + { + "text": "She positions herself as if she cares and wants her students to do well, and that may be true, but her grading policy doesn't reflect that. The readings are extremely long and she doesn't give extra credit. One thing she does is respond to emails. Often times, though, her emails are all fluff and no substance! She also overcomplicates everything!!!", + "pos": 0.081, + "neu": 0.819, + "neg": 0.1, + "_id": { + "$oid": "6711d696cd60fca157e5f16f" + } + }, + { + "text": "Her lectures are extremely bland and monotonous. She makes simple economic concepts difficult. The best way to learn her material is to go to the classroom discussion sessions and then watch khan academy. If you go to the discussion, get Taylor Price, he's absolutely amazing at teaching economics in a simple to understand and visual fashion.", + "pos": 0.13, + "neu": 0.831, + "neg": 0.039, + "_id": { + "$oid": "6711d696cd60fca157e5f170" + } + }, + { + "text": "Doesn't care at all. We worked so hard on those big problem sets which was worth only 5% of our grade, and even on that she graded so harsh. She is never satisfied in short answers for midterm and final doesn't matter how good you write. Yes she curved at the end because everyone failed the class but never bother to provide extra credit.", + "pos": 0.123, + "neu": 0.691, + "neg": 0.186, + "_id": { + "$oid": "6711d696cd60fca157e5f171" + } + }, + { + "text": "Her lectures are very important to attend. She expects specific types of answers in problem sets. Exams are vaguely connected to problem sets. Expects you to answer to be according to her way. Curves but exams are pretty tough. But is very approachable outside class, is respectful. Study her notes, attend her lectures(very important).", + "pos": 0.187, + "neu": 0.729, + "neg": 0.085, + "_id": { + "$oid": "6711d696cd60fca157e5f172" + } + }, + { + "text": "You know the saying its not rocket science , well it doesnt apply to this course because this professor makes it rocket science.", + "pos": 0.087, + "neu": 0.913, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f173" + } + }, + { + "text": "Professor Shankar is a tough grader. Her homework is confusing because certain topics are not thoroughly explained in class. I wish I hadn't taken her class. She's stressing me out more than she is teaching me things. Her explanations usually go off topic and not in the context of that particular material that she is teaching. Very disappointing.", + "pos": 0.073, + "neu": 0.786, + "neg": 0.142, + "_id": { + "$oid": "6711d696cd60fca157e5f174" + } + }, + { + "text": "Kameshwari is the worst!!She pretends to teach but in reality she is extremely unclear. She gives problem sets each week - they are impossible to do. It isn't because the problem sets are hard, it's because she doesn't present the material clearly at all and no one in class understands what is going on. She is a horrible teacher. Do not take!", + "pos": 0.082, + "neu": 0.691, + "neg": 0.227, + "_id": { + "$oid": "6711d696cd60fca157e5f175" + } + }, + { + "text": "Very tough Professor and fair to students. Her lectures are clear and study material well organized. You cannot be lazy at her classes! Be ready to study! If you attend her classes, take notes, and do problems sets- you'll get a good grade!", + "pos": 0.28, + "neu": 0.638, + "neg": 0.082, + "_id": { + "$oid": "6711d696cd60fca157e5f176" + } + }, + { + "text": "Amazing professor. Gives amazing class notes, posts lectures and practice problems online open book tests class is 3 exams pay attention in class take good notes practice the problems from hw and youll do well", + "pos": 0.266, + "neu": 0.591, + "neg": 0.143, + "_id": { + "$oid": "6711d696cd60fca157e5f177" + } + }, + { + "text": "Excellent professor. I loved that she made the exams and they were open book, so there was not a cheating problem as there is in many other of my classes. She is fair and understanding and really goes the extra mile to help you understand.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f178" + } + }, + { + "text": "Excellent professor to take and her exams fairly reflect your progress in the class. Very helpful if you need help. Must study hard for her exams and don't let the attendance policy fool you.. ATTEND or FAIL!", + "pos": 0.246, + "neu": 0.587, + "neg": 0.167, + "_id": { + "$oid": "6711d696cd60fca157e5f179" + } + }, + { + "text": "Where do i begin, I always wanted to major in econ but after taking her course i realized that econ wasn't for me. attendance isn't required and her grading is all weird. she is very direct and encourages students who suck at math to withdrawal asap. No make ups. Your grade heavily empathizes on the midterm/final and your quizzes are only 10% ....", + "pos": 0.075, + "neu": 0.804, + "neg": 0.121, + "_id": { + "$oid": "6711d696cd60fca157e5f17a" + } + }, + { + "text": "Confusing at times, really puts in the extra effort for her students as so many didnt understand her the first or even second time around. She curved the midterm a bit and really dumbed down the exams, so not passing was your fault and not hers. Not the most interesting class but she can be funny at times. Above average for the CCNY economics dept.", + "pos": 0.054, + "neu": 0.848, + "neg": 0.097, + "_id": { + "$oid": "6711d696cd60fca157e5f17b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d696cd60fca157e5f17d" + }, + "professor_name": "Devon Harrison", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Prof. Harrison is great at what she does. She has a great understanding of adolescents and you will learn a lot from her class. Even though the reading may seem like a lot, it ends up being manageable. Be prepared to do presentations!! Show up to class, do all assignments, and you will definitely get the grade you deserve! She's one of the best!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f17e" + } + }, + { + "text": "Excellent professor. I had taken the class prior to her and had to withdraw because of the professor. Was nervous taking the class again due to its difficulties the first time; however ended up being one of my favorite classes and favorite instructor. She care for her students, makes sure everyone understands and makes the class very interesting.", + "pos": 0.251, + "neu": 0.69, + "neg": 0.059, + "_id": { + "$oid": "6711d696cd60fca157e5f17f" + } + }, + { + "text": "Professor Harrison is enthusiastic and has a good aptitude almost every single day. She is also very easy to understand. She also shares personal experience to relate to the material, which makes the class more engaging and more fun. I personally liked her stories. She's a great teacher, I would totally take her again.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f180" + } + }, + { + "text": "If you do your work you will pass .... she is amazing b", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f181" + } + }, + { + "text": "I took Professor Harrison for EDUC 205 and the discussion were cool. You are required to complete 15 hours of field work for a 10 page assignment that was due at the end of the semester (Which is pretty fair). We had one quest (quiztest), one group presentation and one individual presentation. She is awesome & a modern \"hip\" teacher. Take her!", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f182" + } + }, + { + "text": "Prof. Harrison is probably one of the best professors I've ever taken. She is motivational and passionate about teaching. Although her class does require a lot of effort, its still quite easy to pass as long as you do the work. Her classes are very engaged and laid back with no real structure.", + "pos": 0.215, + "neu": 0.75, + "neg": 0.034, + "_id": { + "$oid": "6711d696cd60fca157e5f183" + } + }, + { + "text": "The teacher is very motivational. Great class and fun. The teacher engages with all the students most of the class and your opinions are very important.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f184" + } + }, + { + "text": "Professor Harrison is a really fun and knowledgable professor. She's very helpful and makes class very fun and promotes critical thinking. However, DO be prepared to read! She gives a lot of reading! Participation also counts a lot in her class. You learn a lot in her class including some psychology stuff since she's a clinical psychologist.", + "pos": 0.224, + "neu": 0.742, + "neg": 0.033, + "_id": { + "$oid": "6711d696cd60fca157e5f185" + } + }, + { + "text": "If you want to lean she is the professor for you", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f186" + } + }, + { + "text": "This professor was very clear from the beginning what it takes to pass the class. There were absolutely no surprises and she was always available to extra clarification. This is a teacher you want if you care about getting good grades.", + "pos": 0.239, + "neu": 0.721, + "neg": 0.04, + "_id": { + "$oid": "6711d696cd60fca157e5f187" + } + }, + { + "text": "Professor Harrison is truly one of the best. Her knowledge and enthusiasm always shine through. She is very encouraging and will make sure that everyone has a good understanding of the material. She doesn't just lecture and really makes class discussions enjoyable! You will love her class.", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f188" + } + }, + { + "text": "Prof. Harrison is a great prof. She tries to motivate her students to participate in class as much as possible. There are a lot of readings in the class and she does a great job at explaining and building on the reading. Participation and attendance are a must.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f189" + } + }, + { + "text": "Professor Harris is awesome she may seen a little crazy but trust me she is brilliant and stylish. she really cares about her student and she would go out of her way to help you with your observation. Take her you wouldn't regret. 5stars", + "pos": 0.372, + "neu": 0.603, + "neg": 0.025, + "_id": { + "$oid": "6711d696cd60fca157e5f18a" + } + }, + { + "text": "One of the best professors at CCNY. If you do the work, your grade will reflect that!", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f18b" + } + }, + { + "text": "Prof Harrison genuinely cares for her students. The classes are interesting and not boring at all. The assignments she gave challenges the class while keeping us engaged. Overall I loved the course and would definitely recommend her class!", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f18c" + } + }, + { + "text": "An amazing teacher completely fair and easy to deal with. VERY PROFESSIONAL! Worth showing up to class interesting and engaging discussions.", + "pos": 0.543, + "neu": 0.457, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f18d" + } + }, + { + "text": "One of the best professors at CCNY. Great sense of humor. Prof. Harrison is very caring,helpful, and really wants to see students sucfeed. Course was interesting and requires alot of reading of articles. No textbook. She gives 2 exams, one paper and weekly responses. You MUST do reading to pass course. I would take her again!", + "pos": 0.201, + "neu": 0.766, + "neg": 0.033, + "_id": { + "$oid": "6711d696cd60fca157e5f18e" + } + }, + { + "text": "Overall a great educator. She makes sure that you gain as knowledge as possible. A pleasant personality makes her a sublime professor who is willing to work with you to better your grades.", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f18f" + } + }, + { + "text": "I loved her. She was amazing and one of the few profs that care if everyone understood the material or not. If she sees someone falling asleep she goes into her purse and gets them gum or candy to try and keep them awake its hilarious. grading wise, she makes sure everyone has a chance of getting the best grade they can. one of the best in ccny.", + "pos": 0.33, + "neu": 0.652, + "neg": 0.018, + "_id": { + "$oid": "6711d696cd60fca157e5f190" + } + }, + { + "text": "Professor Harrison always made herself available during office hours & via email. She helped with any questions as well as ensured we understood the material & made it come alive! One of the best! Would gladly take ANY of her courses again!!", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d696cd60fca157e5f191" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d697cd60fca157e5f193" + }, + "professor_name": "Mitchell Kellman", + "rating": 3.4, + "department": "Economics department", + "comments": [ + { + "text": "read the power point and show up for attendance. guarenteed A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f194" + } + }, + { + "text": "PUBLIC FINANCE, WILL NOT LEARN ANYTHING MEANINGFUL,HOWEVER THE COURSE COVER 6 CHAPTERSHE TESTS AT THE END OF EVERY CHAPTER DOESN'T COUNT UNLESS U MESS UP ANY OF THE 2 MID TERMS, YES NO FINALS! ALL MULTIPLE CHOICES QUESTIONS ON ALL TESTS HE WILL REPEAT QUESTIONS AND QUESTIONS ARE STRAIGHT FROM THE BOOK SLD BE AND EASY A", + "pos": 0.147, + "neu": 0.763, + "neg": 0.09, + "_id": { + "$oid": "6711d697cd60fca157e5f195" + } + }, + { + "text": "unless you really like the course that he teaches, i suggest not to take his class. only good thing about him is that he is not strict on the attendance.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f196" + } + }, + { + "text": "if you want to learn you shouldn't take him but if you just want the grade go ahead and take him......he curves the grades at the end good for me cuz i was lost i hardly understand a word he said... good luck!!", + "pos": 0.271, + "neu": 0.675, + "neg": 0.054, + "_id": { + "$oid": "6711d697cd60fca157e5f197" + } + }, + { + "text": "I've had Kellman for 2 different classes at this point. His classes are easy if 1)you aren't an idiot and 2)you study a minimal amount. The people who complain about the guy do absolutely nothing in class or out of it and then are shocked that he gives them a C. If you do the minimal amount of work in the class you're basically guaranteed a B+", + "pos": 0.076, + "neu": 0.858, + "neg": 0.065, + "_id": { + "$oid": "6711d697cd60fca157e5f198" + } + }, + { + "text": "should not be teaching", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f199" + } + }, + { + "text": "not professor material! unprofessional, arrogant, ill-mannered, and extremely anal. replies with smart comments to student's questions and homework assignments, which is hilarious since he DOES NOT EVEN KNOW HOW TO USE A COMPUTER. if you want a good grade, then be ready to suck up to him, otherwise DO NOT TAKE HIM. HE WILL TRY HIS BEST TO FAIL YOU.", + "pos": 0.249, + "neu": 0.622, + "neg": 0.129, + "_id": { + "$oid": "6711d697cd60fca157e5f19a" + } + }, + { + "text": "kellman sucks! first of all, he doesn't know how to teach! second, he doesn't know how to use computer. And third, you never get him!", + "pos": 0.0, + "neu": 0.877, + "neg": 0.123, + "_id": { + "$oid": "6711d697cd60fca157e5f19b" + } + }, + { + "text": "Whoever said he's easy is full of crap. SAS is the most frustrating program there is and he's so smug and nonchalant. The test looks nothing like the homework. He has favorites in the class. I got a C in his class. In every other ECO course I had A's and B's. Please listen to me and avoid this charlatan.", + "pos": 0.143, + "neu": 0.718, + "neg": 0.139, + "_id": { + "$oid": "6711d697cd60fca157e5f19c" + } + }, + { + "text": "He is great in every way! I took his class during the summer. He shorten the material and curved 20 points!!! Very helpful and nice. It is so hard to find professors like him.", + "pos": 0.311, + "neu": 0.647, + "neg": 0.042, + "_id": { + "$oid": "6711d697cd60fca157e5f19d" + } + }, + { + "text": "very nice person, easy on grades. gives extra credit assignments. if the whole class sucks at exams he curves. he is one of the best teachers i have ever had.", + "pos": 0.322, + "neu": 0.616, + "neg": 0.062, + "_id": { + "$oid": "6711d697cd60fca157e5f19e" + } + }, + { + "text": "He helps a lot with the grades and it's an easy A if you study the book good.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f19f" + } + }, + { + "text": "He's pretty good-very clear and tries to make the class interesting. His tests aren't too bad-always multiple choice and if you do the practice questions you should do well. We didn't have much hw except to read the chapters but that may be because it's a summer session... Oh, and he raises your grade if you have good attendance or do extra credit.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1a0" + } + }, + { + "text": "He always tells funny jokes, you can't take lecture notes in class, because he talks really really fast. Uses the phrase \"You know\" after he makes an argument.", + "pos": 0.151, + "neu": 0.772, + "neg": 0.077, + "_id": { + "$oid": "6711d697cd60fca157e5f1a1" + } + }, + { + "text": "took him for 4 classes over 2 semesters...very easy, his practice exams are exact exam questions...not complainging...he's funny cuz he's a dufus sorta...uses term \"penagogic\" too much...like what is that? But he's really cool", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1a2" + } + }, + { + "text": "Very easy professor if you study.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1a3" + } + }, + { + "text": "I had him for all three eco classes. He is an easy grader and his classes are straightforward. Occasonally humorous. Gives lots of homework. Practice exams. Needs to be harder on his students because these classes are a foundation for the more sophisticated Eco courses.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1a4" + } + }, + { + "text": "he's really clear..just make sure to do the hw and you'll be fine.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1a5" + } + }, + { + "text": "He's one of the best eco prof. i've had in my college life. He's clear and understanding. Just do the HOMEWORK and u'll be fine.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1a6" + } + }, + { + "text": "Very clear, straightforward and understanding. Just read the book and be prepared. He will pick on you at random. Homeworks count more than other things in the class! Grades well too :)", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d697cd60fca157e5f1a9" + }, + "professor_name": "Elizabeth Starcevic", + "rating": 4.1, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Charismatic, hard worker and ernergetic. Great teacher", + "pos": 0.39, + "neu": 0.476, + "neg": 0.133, + "_id": { + "$oid": "6711d697cd60fca157e5f1aa" + } + }, + { + "text": "I AM SORRY THAT SHE IS RETIRING. DEFINITELY A GREAT PROF! SHE WAS STRICT, BUT BECAUSE SHE WANTED US TO LEARN. SHE TAUGHT IN CCNY FOR OVER 20 YEARS, AND I BELIEVE SHE DESERVES APPRECIATION FOR HER WORK AND DEDICATION TOWARDS US. WE WILL MISS YOU!!", + "pos": 0.203, + "neu": 0.718, + "neg": 0.079, + "_id": { + "$oid": "6711d697cd60fca157e5f1ab" + } + }, + { + "text": "I thought that by speaking spanish, everything else would be a piece of cake, but it wasnt. Starcevic is one of a kind, with comments like \"conectate\" she would made us laugh but also pay more attention. I would make sure i did my readings because i knew the next day she would ask everyone about it (she doesnt skip anyone!). I was amazed onher stri", + "pos": 0.248, + "neu": 0.733, + "neg": 0.02, + "_id": { + "$oid": "6711d697cd60fca157e5f1ac" + } + }, + { + "text": "If you are looking for an easy or filler class, do not take her! At the beginning of her class, I was doing horribly, but with her help I drastically improved. She is hard on us because this subject is her passion. Because of her, my writing is 100% better....Do not be late! Do your work! Talk to her after class a lot if you're having problems!", + "pos": 0.18, + "neu": 0.73, + "neg": 0.089, + "_id": { + "$oid": "6711d697cd60fca157e5f1ad" + } + }, + { + "text": "She is too agressive and intimidating without a reason, makes you feel like an idiot and laugh after all. I don't like her at all, altought she can teach you about literature.", + "pos": 0.147, + "neu": 0.652, + "neg": 0.201, + "_id": { + "$oid": "6711d697cd60fca157e5f1ae" + } + }, + { + "text": "She's not easy, but she is a great professor, she make you \"indagar\" on of her favorite words!(research)always willing to help. Try to get in her good side its not hard, just be on time, and do your readings. The test are not hard but she always makes you think for yourself! I just registered to take two classes with her on the fall", + "pos": 0.259, + "neu": 0.719, + "neg": 0.021, + "_id": { + "$oid": "6711d697cd60fca157e5f1af" + } + }, + { + "text": "Best Spanish teacher I?ve ever had. I was extremely intimidated for the first few classes but quickly realized how dedicated and intelligent she is. She does pick on some students, but it's only when they can't respond to a question as simple as 'que dia es hoy?' study, do your work, and participate, you will learn immensely", + "pos": 0.166, + "neu": 0.802, + "neg": 0.032, + "_id": { + "$oid": "6711d697cd60fca157e5f1b0" + } + }, + { + "text": "Starcevic is no joke. She is very dedicated, and wants all her students to learn Spanish, but don't expect any curves or freebies. You really get out of it what you put into it. Even if she does have favorites in class, it doesn't effect her grading. All I can say is that she's very sweet, but tough at the same time.", + "pos": 0.19, + "neu": 0.761, + "neg": 0.049, + "_id": { + "$oid": "6711d697cd60fca157e5f1b1" + } + }, + { + "text": "I agree with what someone else said, she does pick on certain people. I couldn't stand that class. She can be so disrespectful in the way she talks to you. Don't take her.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1b2" + } + }, + { + "text": "She is a hard grader. I understood her more than any other spanish professor/teacher and I've been taking Spanish since grade school. She tells you whats going to be on test/exams...no **** about that. Just study and talk **** and you good. Dont be LATE! or F! Participate, too and talk ****...if you make effort you will pass.", + "pos": 0.057, + "neu": 0.92, + "neg": 0.023, + "_id": { + "$oid": "6711d697cd60fca157e5f1b3" + } + }, + { + "text": "She is such a wrench. I hate her she loves to fail her students. She loves to pick on certain students and plays favorites. Sh expects too much and she is full of crap. Don't take this class if you have learning disabilities because she is not sensitive to your needs.", + "pos": 0.213, + "neu": 0.641, + "neg": 0.146, + "_id": { + "$oid": "6711d697cd60fca157e5f1b4" + } + }, + { + "text": "Smart, funny, tough. She will meet you halfway. You gotta put the work in, but if you do, she will help you.", + "pos": 0.276, + "neu": 0.677, + "neg": 0.047, + "_id": { + "$oid": "6711d697cd60fca157e5f1b5" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d697cd60fca157e5f1b6" + } + }, + { + "text": "Passionate, but not helpful.", + "pos": 0.306, + "neu": 0.278, + "neg": 0.417, + "_id": { + "$oid": "6711d697cd60fca157e5f1b7" + } + }, + { + "text": "UGH. Takes herself too seriously. Constantly hammers home her message. Ice cold. Makes you hate foreign languages.", + "pos": 0.0, + "neu": 0.61, + "neg": 0.39, + "_id": { + "$oid": "6711d697cd60fca157e5f1b8" + } + }, + { + "text": "this is one of the best teachers that i have had ever. she is very strict, but she cares so much about her students that you end up loving her. dont be late, because she will embarass you, and do the work and you will notice at the end of the semester how much you learned with her.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1b9" + } + }, + { + "text": "She gives a lot of work and going to class is crucial. Participation is also required. She can be intimidating but she is very passionate and extremely helpful. Her jokes are pretty funny too. Overall you will learn a lot.", + "pos": 0.36, + "neu": 0.605, + "neg": 0.035, + "_id": { + "$oid": "6711d697cd60fca157e5f1ba" + } + }, + { + "text": "She can appear intimidating at first but hang in there and give her a chance. She knows her stuff. She wants you to learn, seriously. She cares that you get it. She's not there for her own benefit. You can tell she has a lot of experience. You'll be happy you studied with her. She my new favorite.", + "pos": 0.262, + "neu": 0.684, + "neg": 0.054, + "_id": { + "$oid": "6711d697cd60fca157e5f1bb" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d697cd60fca157e5f1bc" + } + }, + { + "text": "She is very enthusiastic and engaging when teaching. She has a great interest in her students and is a challenging, yet rewarding professor.", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d697cd60fca157e5f1bd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d698cd60fca157e5f1bf" + }, + "professor_name": "Natallia Schabner", + "rating": 3.5, + "department": "Philosophy department", + "comments": [ + { + "text": "Prof is okay. Class is easy as long as you have notes or at least save copies of the pdf she uses. For every document she assigns you to read, there will be a one-page response paper (sometimes, it will be two or three documents for the same paper). There is one midterm and a final (final just covers any material after midterm) short-answer only.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1c0" + } + }, + { + "text": "She will require you to buy the textbook but then post all readings onto the blackboard so you could make your own judgement. A lot of reading is not difficult. She is a bit rude and impatient so be clear and fast when speaking. Try to go to all classes, so you don't miss any information.", + "pos": 0.129, + "neu": 0.769, + "neg": 0.102, + "_id": { + "$oid": "6711d698cd60fca157e5f1c1" + } + }, + { + "text": "Passionate, engaging, and interested in what students have to say. Clearly loves the subject and it shows. Lots of short papers on short, dense readings, very lenient with the direction you take your writing, just wants to see students interfacing with the material. A little heavy on student presentations, but mixes lectures and discussions well.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1c2" + } + }, + { + "text": "Love her! Shes a great professor and her lecture are very interesting. she has a great way of explaining different philosophical views and ideas. Would take her again in a heartbeat! She gives a reading for the week and a one page double spaced paper is due on that reading. Easy grader for the most part never had an issue.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1c3" + } + }, + { + "text": "Love this professor--she is very enthusiastic about art and philosophy and makes it funny and interesting. She's a tough grader but the material is tough, and deserves to be regarded as such. She is an incredibly insightful and intelligent person.", + "pos": 0.266, + "neu": 0.673, + "neg": 0.061, + "_id": { + "$oid": "6711d698cd60fca157e5f1c4" + } + }, + { + "text": "Worst professor ever! shes brutal.", + "pos": 0.0, + "neu": 0.261, + "neg": 0.739, + "_id": { + "$oid": "6711d698cd60fca157e5f1c5" + } + }, + { + "text": "AVOID HER! She grades extremely unfair and gives some people extra credit and not others. Also she is so unclear with her grading for exams and reading responses. just save yourself and dont take her.", + "pos": 0.129, + "neu": 0.666, + "neg": 0.205, + "_id": { + "$oid": "6711d698cd60fca157e5f1c6" + } + }, + { + "text": "There is always one assignment due in every class, but the readings she gives are super tense. You need to really read in order to understand what it means. She knows what she is teaching because when she explains the readings it is understandable.", + "pos": 0.106, + "neu": 0.833, + "neg": 0.061, + "_id": { + "$oid": "6711d698cd60fca157e5f1c7" + } + }, + { + "text": "Weekly readings and reading responses. Her lectures are funny and she knows what she is talking about. Her enthusiasm about philosophy makes you get excited about the topic. The midterm and final include exactly what was covered in class.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1c8" + } + }, + { + "text": "There was a one page paper due for an assigned reading each week and the professor gave out study guides for the midterm and final. Although, she can be extremely rude to her students when she wants to be. I got back papers crumpled like it was garbage and whenever I would ask her a question, she would tell me to drop the class.", + "pos": 0.036, + "neu": 0.885, + "neg": 0.078, + "_id": { + "$oid": "6711d698cd60fca157e5f1c9" + } + }, + { + "text": "8 weekly assignments (1 page each) based off chapters in the textbook. So you MUST read AND show up. Also, one essay. To pass her Midterm, and Final, you MUST TAKE NOTES. Copy everything she says! Both exams are based off of everything covered in class. Overall she's great! She has a thick accent, but she's kind, funny, and gives extra cred.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1ca" + } + }, + { + "text": "Weekly short chapter and summarization, midterm and final. Participation in professor Schabner's actually helps. If you enjoy philosophy, debating, and looking at things at a different perspective, take her. P.S she has a thick Russian accent and is a beauty", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1cb" + } + }, + { + "text": "Professor Schabner gives a different sets of grades. I feel that her point system is very low which causes the grading to change dramatically if you lose a point or half. She gives out assignments every week and the readings are about 10 pages long. I did not particularly enjoy this subject or lecture. Would not take again", + "pos": 0.0, + "neu": 0.874, + "neg": 0.126, + "_id": { + "$oid": "6711d698cd60fca157e5f1cc" + } + }, + { + "text": "Professor Schabner has a really heavy ascent. But as the time passes you would get use to it. She is a great professor. Only one term paper, a midterm of 6 questions, and a final of 5 questions. Clearly explains the topics and make sure students understand. every week you have to write one page from the readings. She is a tough grader.", + "pos": 0.167, + "neu": 0.809, + "neg": 0.024, + "_id": { + "$oid": "6711d698cd60fca157e5f1cd" + } + }, + { + "text": "Amazing professor, very clear, class notes were essential lucid and clear. Philosophy is not for everyone, but she makes it very reachable and understandable. Take notes, study, read, write papers from your personal view. Tests are easy if you studied the notes. Show up and enjoy the class, very entertaining class! I personally learned a lot.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1ce" + } + }, + { + "text": "Not at all personable, Heavy Russian accent may prove difficult to understand for some. Her grading system for writing assignments are vague at best (a check mark) and she is not adverse to moving the goal posts whenever it suits her; what may go un-noticed one week, will be adorned with red ink the next. Avoid if you can", + "pos": 0.121, + "neu": 0.789, + "neg": 0.091, + "_id": { + "$oid": "6711d698cd60fca157e5f1cf" + } + }, + { + "text": "Great for the beginner. Schabner was a good teacher, she explained everything well. She was funny too sometimes. The tests aren't hard as long as you take lecture notes. 1 page writing per week plus a 3 page essay. Mid term and final were essay questions. I got a good idea of philosophy from this class.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1d0" + } + }, + { + "text": "Her notes are so helpful. Midterm and final are based on her study guide.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1d1" + } + }, + { + "text": "She is okay and fairly interesting. But I think her grading technique makes it really easy to not get a good grade. Also, her paper topic was somewhat vague and I believe she graded according to her personal beliefs. Textbook use is about average but you can get by on just notes.", + "pos": 0.129, + "neu": 0.799, + "neg": 0.073, + "_id": { + "$oid": "6711d698cd60fca157e5f1d2" + } + }, + { + "text": "She is the coolest professor. She really knows what she is talking about, and she is very humerus which helps a loooot, being that this is Philosophy- which is kind of boring. Take her! you wont regret it :-)", + "pos": 0.122, + "neu": 0.777, + "neg": 0.101, + "_id": { + "$oid": "6711d698cd60fca157e5f1d3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d698cd60fca157e5f1d5" + }, + "professor_name": "Julianne Davidow", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "I took Julianne's 'Writing for Engineering' course and really enjoyed it. Expect to write 3-4 papers and do some group projects, but the workload is manageable. She is kind and understanding, definitely recommend.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1d6" + } + }, + { + "text": "Super nice professor and grading is very simple. Provides feedback and opportunities to resubmit. Only problem is the number of papers and homeworks. So many things to do, especially paired with other classes during midterms and finals week.", + "pos": 0.229, + "neu": 0.713, + "neg": 0.058, + "_id": { + "$oid": "6711d698cd60fca157e5f1d7" + } + }, + { + "text": "Very understanding professor, doesn't really mind if cameras are off. Her papers were reasonable but became a pain near the end of the semester. Lots of group work for two of the assignments.", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d698cd60fca157e5f1d8" + } + }, + { + "text": "She was a sweet professor who actually cared about peoples grades and writing. However, she could not work a computer and would often forget how to even pause a youtube video. Overall, she gives lots of handouts to keep when we could access it on Blackboard.", + "pos": 0.114, + "neu": 0.848, + "neg": 0.037, + "_id": { + "$oid": "6711d698cd60fca157e5f1d9" + } + }, + { + "text": "Your average college-level English class, Professor Davidow, is very nice and actually cares for her students. Definitely would recommend taking her. The workload is also very fair for an English course!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1da" + } + }, + { + "text": "A real gem! One of the best teachers I took so far. She is very kind and caring towards her students. Clarifies things really nicely and is always giving feedback. Easy A. Assignments are straight forward. Take her class!", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1db" + } + }, + { + "text": "If you are an incoming freshman student, pick professor Davidow's classes. Her classes were the least stressful class I took this year. She clearly wants to help each student become a better writer. She also isn't a harsh grader at all. Show up to class, do the homework and assignments and you'll pass with an easy A.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1dc" + } + }, + { + "text": "Freshmen, pick her! She is a very kind and caring professor. She expects people to participate in class. She has discussions at the beginning of the class and you'll write about your thoughts. She makes you write and you'll improve from it. There's a website you'll have to create which is kinda fun. Do all the assignments and you'll have an easy A.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1dd" + } + }, + { + "text": "She is very nice and caring. Her lectures were a bit boring though. Be sure to do the papers and hw. The class is pretty straightforward and it shouldn't be hard at all to get an A if you just do what is asked of you, which isn't much.", + "pos": 0.228, + "neu": 0.733, + "neg": 0.039, + "_id": { + "$oid": "6711d698cd60fca157e5f1de" + } + }, + { + "text": "Ms. Daviddow is an amazing professor. She is really caring and cares about her students. Do the work and u wont regret taking her.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1df" + } + }, + { + "text": "Professor Davidow clearly explains how she wants the writing assignments done. If you reference the textbook as you write, the way she says to, you are likely to do well. Non-English speakers could struggle with any professor in an English course, including her, but she will take that into consideration and give many examples for expectations.", + "pos": 0.059, + "neu": 0.913, + "neg": 0.028, + "_id": { + "$oid": "6711d698cd60fca157e5f1e0" + } + }, + { + "text": "Sometimes doesn't make the requirements for assignments clear, but will let you rewrite a paper. Is funny, and gives really good feedback, and talks to students when they are having trouble.", + "pos": 0.245, + "neu": 0.667, + "neg": 0.088, + "_id": { + "$oid": "6711d698cd60fca157e5f1e1" + } + }, + { + "text": "Very nice teacher, there's a lot of writing but there is a lot you can learn from this class, and I'd say that if you do all the discussion boards and know some good English an A is achievable.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1e2" + } + }, + { + "text": "She is nice. Many people said that there are lots of works, in fact those works are required by the English department. Show up in class and submit works that are required, you will get an easy A. (It seems she only checks the format of papers so make sure you follow the instruction)", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1e3" + } + }, + { + "text": "Easy class. She's very nice, gives great feedback, and as long as you attempt to do the assignments you'll do good in the class. Class is boring sometimes but theres nothing you could really do about it since attendance is mandatory. She sends out emails saying read pages from the textbook before class, you don't need to since she goes over it.", + "pos": 0.149, + "neu": 0.827, + "neg": 0.024, + "_id": { + "$oid": "6711d698cd60fca157e5f1e4" + } + }, + { + "text": "Very flexible with grading and abcenses but theres a lot of work that you need to you, lots of papers", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1e5" + } + }, + { + "text": "To get an A+, just come to class every day, skim through the readings, do all the blackboard discussions (you can miss a few), hand in decent papers (she's lenient with deadlines). If English isn't your first language, go to the Writing Center; otherwise her assignment are very easy. Easy A, but not for those who actually want to learn.", + "pos": 0.144, + "neu": 0.836, + "neg": 0.02, + "_id": { + "$oid": "6711d698cd60fca157e5f1e6" + } + }, + { + "text": "Professor Davidow was an extraordinary person. Take her! Can't get lower than B if you do all the work.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1e7" + } + }, + { + "text": "She is the best teacher if you're looking for a slightly laid-back informative class where you spend more time finding your own talent in writing. She's lenient in grading but will edit your drafts profusely to see the best in you. Easily my favorite english teacher", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1e8" + } + }, + { + "text": "You'll do a lot of in-class readings and exercises in small groups or pairs. You also get a lot of papers but that's the class. Davidow is really kind and grades very generously. You have to reference the textbook a lot and just follow the format it shows there. She's really nice and understanding if you're a day late with 1 or 2 papers. Take her!", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d698cd60fca157e5f1e9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d699cd60fca157e5f1eb" + }, + "professor_name": "Bonnie Lucas", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "She really motivates you to do art. Projects are really fun and great for beginners! I would take her class again, we didn't have to read much. Make sure you're on time and your participation is great!", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1ec" + } + }, + { + "text": "I took Prof. Lucas Spring semester 2020. I had her course on Saturday's which was something to get used too. However, Prof. Lucas is an amazing Professor. Class consisted more of art projects rather than reading a lot. One essay (which wasn't hard). The art projects are fun but do take time so do not leave for last minute. Take her! Promise me.", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1ed" + } + }, + { + "text": "I have to be honest. I took her class in 2016. Do not let her sweetness fool you! If you are late, she makes you wait outside of the classroom, then lets you in but also documents every time you are late or absent in her tiny notepad so that at the end of the course, she lowers your grade. She is a tough grader, escially for written reports!", + "pos": 0.029, + "neu": 0.865, + "neg": 0.106, + "_id": { + "$oid": "6711d699cd60fca157e5f1ee" + } + }, + { + "text": "She LOVES teaching art! This class was a lot of fun - great projects. There is a book that you get tested on as well as some lengthy, but interesting articles. Attendance is mandatory and DO NOT be late or she will lock you out until after the lecture and lower your grade. She is very sensitive to being disrespected in any way. Incredibly sweet!", + "pos": 0.232, + "neu": 0.685, + "neg": 0.083, + "_id": { + "$oid": "6711d699cd60fca157e5f1ef" + } + }, + { + "text": "Ehhhh! Very passionate about Art. You'll discover amazing activities to transfer into your own classroom. Everything and anything can be used as/for art. I just don't understand how anyone can put a grade on Art. Thought I earned an A, but ended the course with a B+. DON'T EVER BE LATE TO CLASS!", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1f0" + } + }, + { + "text": "Shes an incredible professor. Very inspirational and very sweet. She cares and makes you feel like the greatest artist. Cares a lot about TLC , make sure you show interest and do the work.", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1f1" + } + }, + { + "text": "Lateness really upsets her and can severely hurt your grade other than that she's really sweet her class is really fun and easy", + "pos": 0.277, + "neu": 0.469, + "neg": 0.254, + "_id": { + "$oid": "6711d699cd60fca157e5f1f2" + } + }, + { + "text": "Great professor! Very passionate not only about art, but about teaching. She does correct grammar because we're college students and its her job. She gives feedback on tests and writing. She is def strict on attendance. Be on time! Easy A", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1f3" + } + }, + { + "text": "This lady is out of her mind.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1f4" + } + }, + { + "text": "She is nice but isn't a fair grader. BEWARE, she hates lateness don't be late because this can hurt your grade and the way she sees u as a student. This can hurt u be because it can affect your grade in the end", + "pos": 0.034, + "neu": 0.692, + "neg": 0.275, + "_id": { + "$oid": "6711d699cd60fca157e5f1f5" + } + }, + { + "text": "Amazing professor!!! She would make you fall in love with art and is passionate of her work. Downside she hates lateness and pet peeve on grammatical errors. Other than that take her class you won't regret it!", + "pos": 0.285, + "neu": 0.575, + "neg": 0.14, + "_id": { + "$oid": "6711d699cd60fca157e5f1f6" + } + }, + { + "text": "she gets upset when people are late or talk but overall she is nice, helpful and passionate. she only assigns a couple of readings from the text but otherwise you really don't need it. seriously save your money. one paper at the end, she has a pet peeve about grammatical errors. as long as you do your work she is happy. she will make you love art.", + "pos": 0.315, + "neu": 0.632, + "neg": 0.053, + "_id": { + "$oid": "6711d699cd60fca157e5f1f7" + } + }, + { + "text": "The course is great. The Prof talks too much. One way of dropping your GPA even tough the course is easy. She is bad at grading. Don't take her!", + "pos": 0.196, + "neu": 0.67, + "neg": 0.134, + "_id": { + "$oid": "6711d699cd60fca157e5f1f8" + } + }, + { + "text": "Prof Lucas is very sensitive. She gets upset for little things. The course is easy. Prof Lucas is a nice person. Great teacher. No matter you work hard you get A`s, she can give you a C if you come late. Great teacher,but most of students complain about her grading.", + "pos": 0.218, + "neu": 0.659, + "neg": 0.123, + "_id": { + "$oid": "6711d699cd60fca157e5f1f9" + } + }, + { + "text": "Lucas does not grade fairly, she should analize her grading method and change it. This hurts the students GPA.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d699cd60fca157e5f1fa" + } + }, + { + "text": "she is one of the sweetest teachers in city college. she is very passionate about art and is very helpful giving suggestions. her course is fun and u will fall in love with art!", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1fb" + } + }, + { + "text": "She is crazy, talks too much and I can see why someone may think her class is interesting. She may need therapy. :)", + "pos": 0.203, + "neu": 0.712, + "neg": 0.085, + "_id": { + "$oid": "6711d699cd60fca157e5f1fc" + } + }, + { + "text": "The woman is a little crazy, but the class is fairly easy. You can get an easy A if you do all the work. The worl load is not that much and she gives you a week to completed it.", + "pos": 0.166, + "neu": 0.8, + "neg": 0.034, + "_id": { + "$oid": "6711d699cd60fca157e5f1fd" + } + }, + { + "text": "THe woman is crazy, but the class is really easy. If you do all the work, an easy A!", + "pos": 0.323, + "neu": 0.612, + "neg": 0.065, + "_id": { + "$oid": "6711d699cd60fca157e5f1fe" + } + }, + { + "text": "The best art teacher I have ever had. She is very knowledgeable and skillful. I truly admire her and learned a lot from her. It's a lot of work but it's worth it. She is the best in the art business. A true gem.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f1ff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d699cd60fca157e5f201" + }, + "professor_name": "Clara Nieto Wire", + "rating": 2.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Paying for a College class expecting get Academic Instruction DURING class. Only to be shush and sent to tutors. Forbidden interrupt if you have a doubt: go to tutors. (That want you to give your work and not helpful either).\nUncaring.", + "pos": 0.027, + "neu": 0.761, + "neg": 0.212, + "_id": { + "$oid": "6711d699cd60fca157e5f202" + } + }, + { + "text": "professor Nieto is the best teacher I ever had. Do not pay attention to these bad review. she is a wonderful teacher", + "pos": 0.3, + "neu": 0.586, + "neg": 0.114, + "_id": { + "$oid": "6711d699cd60fca157e5f203" + } + }, + { + "text": "This professor has no mercy, her grade is based only on exams and quizzes. At the end she does not care about attendance, participation or anything. She does not curve so what you get on exams you will have no matter how hard you work.", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d699cd60fca157e5f204" + } + }, + { + "text": "I truly not recommend her. She is a good professor but she explains very fast and she is a tough grader. We started the semester with 21 students and after the first exam, more then half of the class dropped. I was one of the best students in her class and I had a C", + "pos": 0.154, + "neu": 0.794, + "neg": 0.052, + "_id": { + "$oid": "6711d699cd60fca157e5f205" + } + }, + { + "text": "She has a handle on the topic, but she teaches too much , too fast and does not allow students enough time to write notes from the board. She would always go over her time by at least 20 minutes on each class. Her grading methodology is not flexible, very few of us passed all her test during the semester and we were 25-30 students.", + "pos": 0.0, + "neu": 0.94, + "neg": 0.06, + "_id": { + "$oid": "6711d699cd60fca157e5f206" + } + }, + { + "text": "She will push you to your limit but you will love it. Inorder to pass this class you have to dig deep and keep going. It will definitely aid you in your future studies as an engineer. Perfect for preparation for the rest of your college career.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f207" + } + }, + { + "text": "One of the many professor's I admire. Her style of teaching is excellent. She is a hard grader. She believe and encourage each one of her students for their best. Notes on point. The grade one earn doesn't indicate intellectual. Understanding the material is what matter no matter what grade you get. Her office hours do really help. Very good prof.", + "pos": 0.28, + "neu": 0.654, + "neg": 0.066, + "_id": { + "$oid": "6711d699cd60fca157e5f208" + } + }, + { + "text": "NEVER EVER AGAIN IF YOU DON'T TRUST MY COMMENT YOU WILL REGRET A LOT,SHE MAKE YOU THINK THAT THE CLASS IS EASY BY THE TIME YOU REALIZE THAT YOU SHOULD FOCUS MORE IT WILL BE TO LATE FOR YOU TO PASS THE CLASS. 1ST AND 2ND QUIZ 10% OF THE ENTIRE GRADE,1ST AND 2ND EXAM 25% OF THE ENTIRE GRADE,FINAL 30% AND THE 2ND EXAM IS ON THE LAST DAY OF CLASS.", + "pos": 0.046, + "neu": 0.869, + "neg": 0.085, + "_id": { + "$oid": "6711d699cd60fca157e5f209" + } + }, + { + "text": "NEVER EVER AGAIN!!! I DONT recommend taking this teacher. She is a nice person but her tests tend to be harder than the homework that is given and the classwork that she teaches. She wont curve your grade and she isnt flexible with trying to HELP you pass. If you say you dont understand, she'll try to help you but she moves VERY quickly", + "pos": 0.149, + "neu": 0.802, + "neg": 0.048, + "_id": { + "$oid": "6711d699cd60fca157e5f20a" + } + }, + { + "text": "SHE IS AMAZING! People don't like her because she's VERY tough, but that's their laziness. You have to do homework and attend class because topics build on each other. She is very available for extra helpoffice hours. I completely adore her; she is very inspirational and wants the best for her students. She made me like math, which I usually hate!", + "pos": 0.269, + "neu": 0.631, + "neg": 0.1, + "_id": { + "$oid": "6711d699cd60fca157e5f20b" + } + }, + { + "text": "Worst professor on campus I've took so far. She tends to wait until the last moment to complete topics. I truly don't recommend this professor due her horrible teaching skills, if you want to take this class it'll only harm your GPA. Her assumption is this is the only class on your schedule. This class won't do anything besides harm your GPA.", + "pos": 0.055, + "neu": 0.725, + "neg": 0.22, + "_id": { + "$oid": "6711d699cd60fca157e5f20c" + } + }, + { + "text": "This is by far the worst professor in existence, her teaching skills and strategy is beyond poor. I wouldn't recommend this professor at all due to her laziness and her assumption of how we know the material before we enter the class. She tends to procrastinate a lot and delay with assignments and falls behind all other math professors. Horrible!", + "pos": 0.0, + "neu": 0.781, + "neg": 0.219, + "_id": { + "$oid": "6711d699cd60fca157e5f20d" + } + }, + { + "text": "This is by far the worst professor in existence, her teaching skills and strategy is beyond poor. I wouldn't recommend this professor at all due to her laziness and her assumption of how we know the material before we enter the class. She tends to procrastinate a lot and delay with assignments and falls behind all other math professors.", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d699cd60fca157e5f20e" + } + }, + { + "text": "Tough Grader. Can't be late. Exams has too much problems.If you take only her class in the whole semester, you can do it but if you take a lot of classes then you will end up with dropping the class. Otherwise, C- or lower will be yours. Never take this class or you will regret.Worst...Worst..Worst than others..must be ontime, perfect in exam", + "pos": 0.074, + "neu": 0.866, + "neg": 0.059, + "_id": { + "$oid": "6711d699cd60fca157e5f20f" + } + }, + { + "text": "One of the strict professor I have ever seen in my whole life. Not allowing to use the scientific calculator and a lot of questions make you do a lot of practice. Never guarante to get a good grade even though you got a good grade in one exam. Don't ever take this professor in your life. The worst professor I have ever seen!!! toughgrader,strict", + "pos": 0.092, + "neu": 0.852, + "neg": 0.056, + "_id": { + "$oid": "6711d699cd60fca157e5f210" + } + }, + { + "text": "You deserve wat u get in class.. tough grader.. explains very good... helpful... one class u cant tend to slack off.. exams r not that tough.. but u can run out of time if u dont practise enough", + "pos": 0.131, + "neu": 0.838, + "neg": 0.031, + "_id": { + "$oid": "6711d699cd60fca157e5f211" + } + }, + { + "text": "Oh please! She's excellent. Tough grader but if you study from the material she gives you, no problem.", + "pos": 0.32, + "neu": 0.624, + "neg": 0.056, + "_id": { + "$oid": "6711d699cd60fca157e5f212" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d699cd60fca157e5f213" + } + }, + { + "text": "she is good and responsible professor, but she is very strict in grading your projects and exams. she is not nice grader.", + "pos": 0.141, + "neu": 0.742, + "neg": 0.117, + "_id": { + "$oid": "6711d699cd60fca157e5f214" + } + }, + { + "text": "I'm very happy that i got this professor. She is VERY helpful during class. The notes she gives are excellent, and her lectures are very good. I do not know about her test. I believe its very similar to classwork example and homework. homework are not hard to do, just make sure you pay attention in class. Projects are matlab problem from the book.", + "pos": 0.233, + "neu": 0.714, + "neg": 0.052, + "_id": { + "$oid": "6711d699cd60fca157e5f215" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d699cd60fca157e5f217" + }, + "professor_name": "Matthew G. Nagler", + "rating": 4.7, + "department": "Economics department", + "comments": [ + { + "text": "take him! weekly quizzes and hw were easy as long as you follow the lectures and textbook. drops two lowest quizzes.", + "pos": 0.129, + "neu": 0.766, + "neg": 0.105, + "_id": { + "$oid": "6711d699cd60fca157e5f218" + } + }, + { + "text": "You have weekly quizzes based on the videos provided. Study the textbook and watch the videos, and you'll be ok. Nagler is very nice and is willing to help you with any issues you have.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f219" + } + }, + { + "text": "I have enjoyed learning with Nagler for two semesters: ECO20250 and ECO33950 . Both classes were asynchronous with a clear layout. Just weekly chapters to study using slides and the textbook, with a short quiz & homework each week. I especially enjoyed Behavioral Economics as it combined Psychology & Business. He also grades & replies quickly.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f21a" + } + }, + { + "text": "Actually took ECO20250 w/him. BEST PROFESSOR. Nice, respects students, responds quick to emails about anything. Understanding. His grading criteria is clear and you know exactly what is happening in the class. Quizzes were short but still not easy A's. You def have to study to understand what is going on.", + "pos": 0.147, + "neu": 0.798, + "neg": 0.055, + "_id": { + "$oid": "6711d699cd60fca157e5f21b" + } + }, + { + "text": "SIMPLY THE BEST OF THE VERY BEST PROFESSOR EVER! The class was one of the hardest class I took but his teaching's and advice helped me earn my first ever A+ in grad school!", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f21c" + } + }, + { + "text": "If I could take more of his classes again, I most definitely would! The best of the very best teachers in the campus and respects students like they're professionals. Professor Nagler is highly recommended! Take his class. You guys can thank me later :)", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f21d" + } + }, + { + "text": "The number one professor! You will absolutely love taking his class. He will teach and give the best advice out there. A REAL GEM!", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f21e" + } + }, + { + "text": "Hands down the BEST professor in the Economics department. He may even be the best professor in City College. I would take him again and definitely recommend him. There's a reason he was quickly promoted to be the chairman of the department. He respects students and gives crystal clear and detailed feedback. Amazing personality. Definitely take him", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f21f" + } + }, + { + "text": "Good personality", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f220" + } + }, + { + "text": "He is an amazing professor, take him you will not regret! Quiz, Midterm, Final, 7 home works. He really took his time explaining to the class how to work the algebra, he didn't need to but he obviously cared if we understood the problem.", + "pos": 0.156, + "neu": 0.775, + "neg": 0.069, + "_id": { + "$oid": "6711d699cd60fca157e5f221" + } + }, + { + "text": "Professor Nagler is a really good professor. He has no problem answering your questions during office hours and through email. He gave weekly homework and posts the answers after it is handed in. Study the provided material and you will do good. He also made YouTube videos on the subject which is cool of him to do for his students.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f222" + } + }, + { + "text": "Need to REALLY understand the concepts in order to pass the tests. He posts his own Youtube lectures videos and uploads all the PowerPoint. As long as you attempt to solve all of the hw problems he will accept it. Overall, Professor Nagler gives good vibes when teaching.", + "pos": 0.135, + "neu": 0.815, + "neg": 0.05, + "_id": { + "$oid": "6711d699cd60fca157e5f223" + } + }, + { + "text": "Had him for two classes. Very test heavy like its your whole grade. Really cares about attendance and hw but does give a 1 week grace period on hw which is good. his class just makes me want to sleep I know hes smart but not so great as a professor or engaging. you got to work for your grade and he likes to hold the class back a few extra minutes.", + "pos": 0.254, + "neu": 0.684, + "neg": 0.062, + "_id": { + "$oid": "6711d699cd60fca157e5f224" + } + }, + { + "text": "Love this guy. Hes very clear and wants to help students follows the syllabus and gives a grace period. He is fair and exams are fair. You can tell he wants students to learn and very nice one of the best prof at CCNY!!!", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f225" + } + }, + { + "text": "Great professor. I wish he would teach more classes. The exams are directly from the notes. No other professor can explain statistics materials and marketing research as well as he does. If you want to learn and also want an A, definitely take his class. The best economics professor at ccny.", + "pos": 0.289, + "neu": 0.676, + "neg": 0.035, + "_id": { + "$oid": "6711d699cd60fca157e5f226" + } + }, + { + "text": "Great professor. Very organized, clear when explaining material.", + "pos": 0.538, + "neu": 0.462, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f227" + } + }, + { + "text": "AWESOME teacher. he is by far the best teacher in the economics dept.", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d699cd60fca157e5f228" + } + }, + { + "text": "Negler is a very good professor. Presented the material clearly and let you know his expectations right away. The class did get boring at times and dreadful, but you definetly learn a lot and have fun doing it. I got A+. and i did not take the final because he drops ur lowest grade out of the three tests he gives.", + "pos": 0.119, + "neu": 0.781, + "neg": 0.099, + "_id": { + "$oid": "6711d699cd60fca157e5f229" + } + }, + { + "text": "good teacher, enjoyed his class. he even gave me an A- and wrote me a letter of recommendation. looking forward to more classes he's cheating for eco.", + "pos": 0.182, + "neu": 0.705, + "neg": 0.113, + "_id": { + "$oid": "6711d699cd60fca157e5f22a" + } + }, + { + "text": "He was a good teacher, and he is very clear on the subject. But he is a hard grader, so he knows what it means to work for your grade.", + "pos": 0.12, + "neu": 0.831, + "neg": 0.049, + "_id": { + "$oid": "6711d699cd60fca157e5f22b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69acd60fca157e5f22d" + }, + "professor_name": "Atilim Murat", + "rating": 3.9, + "department": "Economics department", + "comments": [ + { + "text": "i really enjoyed his class. prof. murat had a really good way of teaching material that other teachers could make boring. he will change your perspective on a lot of business and world issues.", + "pos": 0.169, + "neu": 0.773, + "neg": 0.057, + "_id": { + "$oid": "6711d69acd60fca157e5f22e" + } + }, + { + "text": "I loved Mr. Murat. BEST PROFESSOR EVER! Super cool and super nice! I RECOMMEND HIM TO ANYONE!", + "pos": 0.721, + "neu": 0.279, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f22f" + } + }, + { + "text": "Extraordinary professor. His knowledge is even better than best market strategists and commentators.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f230" + } + }, + { + "text": "He was an extraordinary professor. If he's still teaching in City College, I strongly recommend his class.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f231" + } + }, + { + "text": "if you want to learn eco-fin, I suggest you take his class.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f232" + } + }, + { + "text": "He was the best professor I've ever had. Extremely knowledgeable.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f233" + } + }, + { + "text": "Really bad professor. Try to avoid him if you can. Just repeats(oops...rewrites) whatever is in the book and for that you don't need a professor. You have to teach yourself.", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d69acd60fca157e5f234" + } + }, + { + "text": "Lake of knowledge and attidtude. Major attitude problem. He have hard time to understand questions. And if he can, he cannot answer them. Don't know any thing about us economy expect \u201cUS is in budget deficit\u201d He gives good grade to every one no matter how u perform. never in the hell take this proff.......", + "pos": 0.106, + "neu": 0.806, + "neg": 0.088, + "_id": { + "$oid": "6711d69acd60fca157e5f235" + } + }, + { + "text": "nice guy but gives tough exams stay away from him, take jellin instead", + "pos": 0.13, + "neu": 0.751, + "neg": 0.119, + "_id": { + "$oid": "6711d69acd60fca157e5f236" + } + }, + { + "text": "Extremely confusing and the lack of good attitude throws you off immediately, maybe an easy grader but it's a real hard time to follow him, his accent is strong and his attitude just doesn't help, my advice don't take him even if he's the best...", + "pos": 0.24, + "neu": 0.628, + "neg": 0.131, + "_id": { + "$oid": "6711d69acd60fca157e5f237" + } + }, + { + "text": "Very nice guy, easy going. Take him and you won't regret it.", + "pos": 0.488, + "neu": 0.512, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f238" + } + }, + { + "text": "extraordinary, to the point, extremely relevant. i loved discussing current events in finance along with learning complex formulas from him, overall, excellent and funny equals great teacher.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f239" + } + }, + { + "text": "The class is kinda stupid and subjects are oversimplified to the point that it's horrifying to hear it called 'quantitative'. the tests are multiple choice and he himself often gets tricked by the questions and gives credit for the wrong answer. Very easy grader, but leaves doubt whether there was any value in taking the class.", + "pos": 0.106, + "neu": 0.727, + "neg": 0.167, + "_id": { + "$oid": "6711d69acd60fca157e5f23a" + } + }, + { + "text": "He teaches you not very much about the topics but you will not have hard exams since they are all multiple choices.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f23b" + } + }, + { + "text": "He teaches pretty good & sometimes toggles diff. topics in eco-but economics itself can be confusing, which eventually makes the tests seem more difficult than they are. Don't need book for him, but if subject confuses or u suck at taking notes-buy book. Tests are usually mult. choice--out of a book. No one fails unless they try to.", + "pos": 0.101, + "neu": 0.714, + "neg": 0.185, + "_id": { + "$oid": "6711d69acd60fca157e5f23c" + } + }, + { + "text": "If you're an Eco major don't take him, you wont learn much. He said that we would go through the WSJ in class to look at Economics in real time but we didn't. I checked the website of the instructor who was supposed to teach the class and the course material was like night and day. Murat's class was a review of Eco 100.", + "pos": 0.049, + "neu": 0.951, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f23d" + } + }, + { + "text": "Best teacher I've had. I didn't buy the book and got a B. He is down to earth yet teaches everything in his lessons. The test was easy because there were no surprises. Take his Class!!", + "pos": 0.181, + "neu": 0.779, + "neg": 0.039, + "_id": { + "$oid": "6711d69acd60fca157e5f23e" + } + }, + { + "text": "He's the best teacher I've had. I did not buy the book but he covers the material in class thoroughly. Gives no homework and if you go to class you will pass the tests. He is down to earth.", + "pos": 0.061, + "neu": 0.864, + "neg": 0.075, + "_id": { + "$oid": "6711d69acd60fca157e5f23f" + } + }, + { + "text": "Cool guy! Has that \"i dont care\" attitude but gets the work done and makes it simple. Funny at times but very strict with in class behavior (dont laugh)! Easy first exam, and every exam is multi choice!!", + "pos": 0.113, + "neu": 0.681, + "neg": 0.206, + "_id": { + "$oid": "6711d69acd60fca157e5f240" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69acd60fca157e5f242" + }, + "professor_name": "James Diotte", + "rating": 1.8, + "department": "Mathematics department", + "comments": [ + { + "text": "Prof. Diotte is a very smart guy and knows his math. However, his way of teaching and presenting the information in a easy to understand way is lacking. Very often, I would attend lecture and not have really anything from it. Maybe it's a me thing, I don't know.", + "pos": 0.111, + "neu": 0.889, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f243" + } + }, + { + "text": "He gave extra credit so I thank him for that", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f244" + } + }, + { + "text": "Professor Diotte is not a bad professor, he is in fact one of the easier math professors you will have at CCNY. Now I had him for a different class, his grading criteria was 40% Final, 25% Tests, 25% Homework, 10% MATLAB. Exams were very straight forward, good at explaining concepts. I only got a D because I didn't do the homework.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f245" + } + }, + { + "text": "He gives extra credit but it doesn't help at all. Like zero. Also, he just loves putting graphing questions on his tests. Like okay thanks for the graphs but how did you get those curves? And if you get one question wrong on the test, u will lose like 10 pts.", + "pos": 0.307, + "neu": 0.551, + "neg": 0.142, + "_id": { + "$oid": "6711d69acd60fca157e5f246" + } + }, + { + "text": "I think the doodles I drew in my notebook could teach better than him", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f247" + } + }, + { + "text": "THAT FINAL WAS SO EASY, SAID NO ONE EVER", + "pos": 0.283, + "neu": 0.53, + "neg": 0.187, + "_id": { + "$oid": "6711d69acd60fca157e5f248" + } + }, + { + "text": "You would think he would be good at teaching since he's young but nope. Take someone else", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f249" + } + }, + { + "text": "Yeah he curves his tests but that just shows how much he sucks. You might think the curves help but wait until that final. He doesn't curve the final and makes it soooo hard. 2 square root tan equals I don't know because you never taught me this. Do not take him!!", + "pos": 0.098, + "neu": 0.819, + "neg": 0.083, + "_id": { + "$oid": "6711d69acd60fca157e5f24a" + } + }, + { + "text": "This class should seriously be called, \"The Definitions Class\" because seriously he gave more definitions than problems. He had to give a definition for EVERYTHING. Like this dude will really give u the def of the word def. Instead of giving definitions, give more problems so we know what we're learning.", + "pos": 0.083, + "neu": 0.759, + "neg": 0.158, + "_id": { + "$oid": "6711d69acd60fca157e5f24b" + } + }, + { + "text": "His tests are horrible because their nothing like the webassign questions. U can try to study off webassign but it won't help. You have to learn his way which is hard. Did not like his way of teaching. Avoid him guys", + "pos": 0.0, + "neu": 0.718, + "neg": 0.282, + "_id": { + "$oid": "6711d69acd60fca157e5f24c" + } + }, + { + "text": "Please take another professor . Clearly teaching is something he doesnt enjoy and he also clearly is not very good at it . I would recommend for him to get better and stop making pre calculus harder than it is . I felt like I was in calculus 3 .", + "pos": 0.244, + "neu": 0.64, + "neg": 0.116, + "_id": { + "$oid": "6711d69acd60fca157e5f24d" + } + }, + { + "text": "This dude is good for people who want to ruin their GPAs. Like his final was so hard that I was literally sitting there like maybe if I close my eyes, the final will change into something easy. Boy used the hardest questions for the final. Like u made the final, why not chose questions we ACTUALLY LEARNED.", + "pos": 0.208, + "neu": 0.712, + "neg": 0.081, + "_id": { + "$oid": "6711d69acd60fca157e5f24e" + } + }, + { + "text": "Wow !where do I start. If you enjoy how your gpa looks avoid this class at all cost . If you enjoy your time save it and use it for something else . When I tell you this guy will give you the most confusing lectures ever and give you the hardest final . Please believe me and remember this rating. I think this rating doesnt do him justice just bad", + "pos": 0.18, + "neu": 0.699, + "neg": 0.12, + "_id": { + "$oid": "6711d69acd60fca157e5f24f" + } + }, + { + "text": "HORRIBLE!!!!!!!!!!!!!!!!! Dude really messing up my GPA. Like it's pre-calc but he making it so hard that I feel like I'm in some physics class", + "pos": 0.192, + "neu": 0.655, + "neg": 0.153, + "_id": { + "$oid": "6711d69acd60fca157e5f250" + } + }, + { + "text": "Do not take this professor. He is the laziest professor that I have ever come across. He made the final very hard and didnt even teach a lot of material that was on the final. He told us that he would give us extra credit that didnt even count towards the final grade.", + "pos": 0.045, + "neu": 0.862, + "neg": 0.093, + "_id": { + "$oid": "6711d69acd60fca157e5f251" + } + }, + { + "text": "He does very few examples and spends most of his time writing definitions. He just seems like he doesnt really want to be there. He makes problems seem more difficult than they are. It doesnt seem like he even wants to teach. Maybe this is something for him to put on his resume. He curves and rushes through a lot of material.", + "pos": 0.036, + "neu": 0.832, + "neg": 0.132, + "_id": { + "$oid": "6711d69acd60fca157e5f252" + } + }, + { + "text": "This professor is not the best. He even makes the easy lessons complicated. You can do the web assign problems, but if you don't learn the way he teaches, then you're going to have a difficult time during the tests", + "pos": 0.043, + "neu": 0.796, + "neg": 0.161, + "_id": { + "$oid": "6711d69acd60fca157e5f253" + } + }, + { + "text": "James is GREAT. He will go over any questions you have either in class or outside without any judgement. He gives a curve on his tests as well, and will actively tell you what you should study for the tests and the final at the end of the semester. There were also review sessions before every tests and the class before the test was dedicated", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d69acd60fca157e5f254" + } + }, + { + "text": "He was the best math professor I've ever had. He genuinely cares about the success of each student and teaches Calculus in an extremely comprehensive way. He turns bad grades into EXTRA CREDIT. His exams were SUPER easy, but this made the final pretty difficult, but my grade in the class was untouched by the final (40%) bc his curves were so crazy.", + "pos": 0.243, + "neu": 0.638, + "neg": 0.119, + "_id": { + "$oid": "6711d69acd60fca157e5f255" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69bcd60fca157e5f257" + }, + "professor_name": "Maria Berman", + "rating": 3.3, + "department": "Architecture department", + "comments": [ + { + "text": "stern,great professor, helpful, makes you work and think", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f258" + } + }, + { + "text": "She comes off condescending. She's the boss, and you're nothing and she will let you know it. She expects A LOT OF WORK! That is what makes her happy. Your models can be crappy but as long as you have them. She's a mind reader. Love her. Would definitely take her again. She wants to see progress. Use lots of tracing paper!", + "pos": 0.212, + "neu": 0.757, + "neg": 0.031, + "_id": { + "$oid": "6711d69bcd60fca157e5f259" + } + }, + { + "text": "Berman was capable of doing something no professor had done before; scare the living hell out of me. Contrary to what you might think, this was good; I'm a notorious procrastinator, and she drove the best out of me. Confusing and never satisfied, she gave me views on design I did not appreciate until after I finished class. Definitely recommended.", + "pos": 0.174, + "neu": 0.588, + "neg": 0.238, + "_id": { + "$oid": "6711d69bcd60fca157e5f25a" + } + }, + { + "text": "At first, and throughout the semester I thought she was a little crazy. But now that I look back at it, I realized that she was a great professor compared to the others I have taken. If you stick with it and work hard, she will reward you with a good grade.", + "pos": 0.225, + "neu": 0.726, + "neg": 0.049, + "_id": { + "$oid": "6711d69bcd60fca157e5f25b" + } + }, + { + "text": "I heard that she was a lame student in grad school. She's elitist for reasons that are unknown to me.", + "pos": 0.0, + "neu": 0.872, + "neg": 0.128, + "_id": { + "$oid": "6711d69bcd60fca157e5f25c" + } + }, + { + "text": "She gets straight into whats working and whats not in your concept and model, you dont always understand her advice or comments, but the end product is always improved, and she encourages that. Yes shes late, yes she has favorites, but if you work well, have clean craftsmanship, and actually put some though into your concept,she likes you. its simp", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f25d" + } + }, + { + "text": "great", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f25e" + } + }, + { + "text": "If you are interested in the ideas of structures and tectonics, this is the proffesor for you.Usually late to class, 1-2 hrs. Unclear in explanations. Can be sarcastic perhaps even rude in critique and conversation. tends to favor students with similar personality or better understanding of the material than others.", + "pos": 0.14, + "neu": 0.742, + "neg": 0.118, + "_id": { + "$oid": "6711d69bcd60fca157e5f25f" + } + }, + { + "text": "always 2 to 3 hours late. talking on the phone very often (probably with horn). Her comments can be very sarcastic and rude.", + "pos": 0.0, + "neu": 0.791, + "neg": 0.209, + "_id": { + "$oid": "6711d69bcd60fca157e5f260" + } + }, + { + "text": "she just....seems to not care about class..arriving late and leaving early. perhaps she cares more about flipping her hair around and talking to horn than helping the students out....i agree totally with the previous person who said personality has a lot to do with the grades...", + "pos": 0.147, + "neu": 0.803, + "neg": 0.05, + "_id": { + "$oid": "6711d69bcd60fca157e5f261" + } + }, + { + "text": "She is incredibly hard but it is so worth it. we could not believe what we were capable of doing when this studio was over.", + "pos": 0.221, + "neu": 0.734, + "neg": 0.045, + "_id": { + "$oid": "6711d69bcd60fca157e5f262" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d69bcd60fca157e5f263" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d69bcd60fca157e5f264" + } + }, + { + "text": "if you like photoshop and structures, take her. warning: she is not for everyone, your personality has a lot to do with your grades.", + "pos": 0.093, + "neu": 0.818, + "neg": 0.089, + "_id": { + "$oid": "6711d69bcd60fca157e5f265" + } + }, + { + "text": "She gives you more opportunity to design on your own. When you are off track she will push you back on track. Great professor to take if you want to learn something.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f266" + } + }, + { + "text": "Exellent proffesor. great Crit. a must for all 1st year students trying to maximize their potential, bust out great projects and not get much sleep.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f267" + } + }, + { + "text": "Very helpful critique in my Summer Design Studio 2005.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f268" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d69bcd60fca157e5f269" + } + }, + { + "text": "She is as tough as it gets, but she is the best first year professor for Architecture.", + "pos": 0.263, + "neu": 0.68, + "neg": 0.057, + "_id": { + "$oid": "6711d69bcd60fca157e5f26a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69bcd60fca157e5f26c" + }, + "professor_name": "Michelle Wallace", + "rating": 2.4, + "department": "Humanities department", + "comments": [ + { + "text": "Not there to teach, there to talk herself to sleep. grading policy: 3 papers each 25% (total of 75%), each class is equal to 1% of the rest. Meaning, you could miss class every day and still manage to get a C. SMH Tried to add quizzes to the syllabus when she realized reading wasnt happening, didn't work. Very leniant about paper choices Easy A", + "pos": 0.042, + "neu": 0.892, + "neg": 0.067, + "_id": { + "$oid": "6711d69bcd60fca157e5f26d" + } + }, + { + "text": "Professor Wallace is possibly the most disorganized, uneducated woman with a PhD that I have ever had the misfortune of studying under. I DO NOT and will not ever recommend that anyone take this woman's course as she is a complete disgrace to the academic community. Save your time and your money. 5", + "pos": 0.053, + "neu": 0.817, + "neg": 0.13, + "_id": { + "$oid": "6711d69bcd60fca157e5f26e" + } + }, + { + "text": "Disorganized, strays off topic, I doubt you'll learn anymore than you do now. Did I mention she was unorganized? She forgot what her requirements were for a midterm and ended up giving some students an undeserved grade due to her forgetfulness. She can be easy but its definitely a drag going to this class.", + "pos": 0.118, + "neu": 0.788, + "neg": 0.094, + "_id": { + "$oid": "6711d69bcd60fca157e5f26f" + } + }, + { + "text": "She's a sweetheart. Very nice, kind person. She's willing to answer any question(s) you may pose after class. She's also an easy grader for the most part-- as long as you do the work AND show up. People tend to stop going to her class after a while--idk why--but i suggest YOU dont cause attendance is the hugest part of the grade!", + "pos": 0.194, + "neu": 0.776, + "neg": 0.03, + "_id": { + "$oid": "6711d69bcd60fca157e5f270" + } + }, + { + "text": "so hot", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f271" + } + }, + { + "text": "PROFESSOR WALLACE IS A NICE LADY, BUT YOU WILL LEARN NOTHING IN HER CLASS. PLEASE DO NOT THINK SHES AN EASY A.... TO SOME SHE IS TO SOME SHES NOT.I MADE AN A+ AND MY FRIEND GOT AN B,AND WE EQUALLY DID NOTHING. RARELY USED THE BOOK EXCEPT FOR TAKE HOME TEST. PARTICIPATE IN HER CLASS SO SHE CAN LEARN UR NAME. THIS IS IMPORTANT FOR A GOOD GRADE.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f272" + } + }, + { + "text": "Unfortunately, professor Wallace was the most useless professor I've ever had. I was so disappointed at how unprofessional she was. She is disorganized, always comes to class late and always goes off topic. I'm pretty sure she is very knowledgeable but she just doesn't show it in class. Don't take her if you have any interest in getting educated.", + "pos": 0.113, + "neu": 0.742, + "neg": 0.145, + "_id": { + "$oid": "6711d69bcd60fca157e5f273" + } + }, + { + "text": "She?s very knowledgeable. She might be old school, but she's a very good person. Once you have the office meeting you will find that she?s a different person and that she?s extremely nice. I think if you want to learn just be responsible with the material she give. Do the reading. Its college. things she teach will be hopful later on. take my words", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f274" + } + }, + { + "text": "sadly all the comments are true. She is an easy professor.Expect to learn nothing from class. Class time is spent attempting to organize herself. If you show a little of interested you'll get an A. Have a couple of discussion with her after class and your good to go! Physical attendance isnt necessary, have someone sign you in and that'll be fine.", + "pos": 0.182, + "neu": 0.779, + "neg": 0.039, + "_id": { + "$oid": "6711d69bcd60fca157e5f275" + } + }, + { + "text": "OMG WHERE DO I START THIS LADY IS ALL OVER THE PLACE, SHE GIVES LIKE ONE PAPER AND TAKE HOME FINAL AND TALK ABOUT NOTHING TO DO WITH THE CLASS, SHE COMES LATE AND TAKES ABOUT 45 MIN TO TAKE ATTENDCE..O WELL IT WAS A EASY A+ FOR ME", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f276" + } + }, + { + "text": "Never stays on topic with the lesson, always talks about her own personal matters and comes late to class most of the time.", + "pos": 0.048, + "neu": 0.952, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f277" + } + }, + { + "text": "Agree with some undergrad comments. I took grad seminar and she ate lunch every day, was always late, rambled on off-topic for entire sessions, assassinated fellow classmates' intellectual character. I got an A but can't see any reason why--useless class. Skip her.", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f278" + } + }, + { + "text": "Never prepared for class She comes half hour late every class to eat her lunch in front of the class. Talk about things that doesn't make sense and hate to teach large group of students. No HW, tests, discussions. jUST TAKE HOME midterm and final abou what is your fav. book. Don't pay so much money to just go and sit in this class to see her eating", + "pos": 0.057, + "neu": 0.842, + "neg": 0.101, + "_id": { + "$oid": "6711d69bcd60fca157e5f279" + } + }, + { + "text": "Bad, bad, bad teacher. Not because it is hard, but because she never seems to have prepared the lecture class. You will feel that everything is an imptovisation with her. I just hate the idea that she gets paid for such a terrible work.... Do not take her for this class.", + "pos": 0.037, + "neu": 0.693, + "neg": 0.27, + "_id": { + "$oid": "6711d69bcd60fca157e5f27a" + } + }, + { + "text": "I took several grad classes with her and like her a lot. There's not too much middle ground here--either you'll love or hate her, teaching methods are unorthodox, and she can be opinionated (you *won't* win an argument with her!). But her bark is worse than her bite and in reality she's very sensitive and caring.", + "pos": 0.159, + "neu": 0.716, + "neg": 0.125, + "_id": { + "$oid": "6711d69bcd60fca157e5f27b" + } + }, + { + "text": "An absolutely brilliant professor. Funny, intelligent, compelling - one of my Top Three professors of my whole CCNY experience.", + "pos": 0.499, + "neu": 0.501, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f27c" + } + }, + { + "text": "She is rusty as someone said coming back into the profession; and the format she wants for the class frequently changes. She loves discussions, and arguing with students make sure you articulate your argument well or youll burn fast. Just participate as much as u can and read youl be fine. Got an A", + "pos": 0.156, + "neu": 0.757, + "neg": 0.087, + "_id": { + "$oid": "6711d69bcd60fca157e5f27d" + } + }, + { + "text": "she is funny always doing group discussions tests are fair and so are the quizzes, she is a very interesting person one on one", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f27e" + } + }, + { + "text": "This is her return back into world humanities. She is rusty,unclear,admonishing,dimwitted about other subjects and thats all she talks about. She doesnt discuss humanities. She needs to either quit after this class or go into some intensive re-traini", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d69bcd60fca157e5f27f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69ccd60fca157e5f281" + }, + "professor_name": "Rory Duffy", + "rating": 3.7, + "department": "History department", + "comments": [ + { + "text": "I'm not going to lie, he makes class fun and is very charming. However, I felt his teaching style was too unstructured for my learning style so it all depends on how you like to learn. Don't take this class if you're planning to half-a$$ it just because it's not related to your major. He posts a final review video that perfectly covers the exam.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f282" + } + }, + { + "text": "He is a good professor one of the few professors who actually enjoys teaching. Pretty generous with deadlines and it is a pretty easy class as long as you do the papers he is very straightforward with what he wants. Don't be a total robot and you will do fine.", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f283" + } + }, + { + "text": "He is a nice fun guy makes the class fun. His quizzes are pretty easy but he definitely is a tough grader. but he actually makes the class fun.", + "pos": 0.445, + "neu": 0.512, + "neg": 0.043, + "_id": { + "$oid": "6711d69ccd60fca157e5f284" + } + }, + { + "text": "Anyone whining, get outta here! Just participate, engage, get over your fear of speaking up, have your own point of view, and argue, for f sake!\nHe absolutely loves this and would grade you for your participation, and papers/exam, but those are also easy if you just aren't lazy ass and curious. Send him emails, ask him to pre-grade your work, etc.", + "pos": 0.236, + "neu": 0.695, + "neg": 0.069, + "_id": { + "$oid": "6711d69ccd60fca157e5f285" + } + }, + { + "text": "He a good professor make me feel like I am back in high school and his speed for lecture is pretty fast and his assignments is decent and his feedback on them for improvement is not really good but he give me good grades on them (most A- and B+) for each essay.", + "pos": 0.193, + "neu": 0.777, + "neg": 0.03, + "_id": { + "$oid": "6711d69ccd60fca157e5f286" + } + }, + { + "text": "Professor Duffy is really nice and chill. He assigned some papers, they are mostly easy to write however he rarely gives an A+. Sometimes he came late or even canceled lectures. Overall, I enjoyed the lectures but he certainly doesn't stay on topic all the time (that was the fun part of the class for me).", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f287" + } + }, + { + "text": "He is an understandable and nice professor, but those lectures... I felt like they went on and on and I still learned nothing, he is very disorganized and often spent half of the class talking about external factors (what was new in the media and it wasn't history related). I wouldn't recommend taking this if you care about your educational time.", + "pos": 0.132, + "neu": 0.785, + "neg": 0.083, + "_id": { + "$oid": "6711d69ccd60fca157e5f288" + } + }, + { + "text": "Unclear on grading requirements, very disorganized, often late or cancels class last minute. He is nice, but that does not help my grade. His relaxed teaching style does not match my learning style. Some might enjoy this class, but I would advise not to take it if disorganized teachers are demotivating for your work ethic.", + "pos": 0.155, + "neu": 0.692, + "neg": 0.153, + "_id": { + "$oid": "6711d69ccd60fca157e5f289" + } + }, + { + "text": "Although he respects history, if I could describe him in one word id say -Inattentive He loves to talk about his acting career so much like if you love it so much pursue it and stop teaching. Remember to watch him act in the marvelous Mrs Maisel on amazon prime.", + "pos": 0.291, + "neu": 0.674, + "neg": 0.034, + "_id": { + "$oid": "6711d69ccd60fca157e5f28a" + } + }, + { + "text": "Professor Duffy was a bit of a tough grader but his grading criteria is also very clear and easy to follow. I was worried that this class was going to feel like another high school history class but he's very passionate about what he teaches which helped make this class a lot more interesting.", + "pos": 0.285, + "neu": 0.658, + "neg": 0.057, + "_id": { + "$oid": "6711d69ccd60fca157e5f28b" + } + }, + { + "text": "There are 6 papers throughout the semester, 1 paper about yourself (really simple) and only 1 extra credit assignment towards the end. He has humor and is easy going. Knows what he's doing. The prompt questions are a bit confusing. Takes a while to grade work but eventually gets it all done.", + "pos": 0.097, + "neu": 0.877, + "neg": 0.026, + "_id": { + "$oid": "6711d69ccd60fca157e5f28c" + } + }, + { + "text": "Hes okay, gives a lot of papers. His prompts are a little confusing and what I didnt like was initially he mentioned we would learn to write papers, but it turned to us just submitting and getting feedback towards the last minute.", + "pos": 0.033, + "neu": 0.901, + "neg": 0.066, + "_id": { + "$oid": "6711d69ccd60fca157e5f28d" + } + }, + { + "text": "He only gave papers. He discusses things very well but he lacks communication skills. Its hard to reach him. He waits to grade papers last minute. Wouldnt recommend.", + "pos": 0.091, + "neu": 0.771, + "neg": 0.137, + "_id": { + "$oid": "6711d69ccd60fca157e5f28e" + } + }, + { + "text": "Professor Duffy has been my favorite professor so far. His lectures are very engaging despite the disconnect with online learning. He still manages to make the homework light and straight-forward. The textbook also costs less than $10.00 and it's really all you need.", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f28f" + } + }, + { + "text": "Hes attentive, and he is willing to let the conversation be headed by students. He will sometimes bring in his acting career, and it doesnt go far from the topic, as hes focused to hit objectives that are outlined in syllabus. He truly knows the subject, and his papers were a joy to write. He will appreciate good thorough essays!", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f290" + } + }, + { + "text": "Duffy is an amazing professor. Some of the topics we cover can be boring but he makes them fun and enjoyable. Always try and participate every class, whether you think you're write or wrong, he takes note of participation a lot.", + "pos": 0.204, + "neu": 0.686, + "neg": 0.11, + "_id": { + "$oid": "6711d69ccd60fca157e5f291" + } + }, + { + "text": "It was a boring class but he made it fun! He would joke around and make the whole class laugh. Participation is the way to go, wrong or right, participating gives you a boost especially if youre lost when writing his papers.", + "pos": 0.266, + "neu": 0.582, + "neg": 0.152, + "_id": { + "$oid": "6711d69ccd60fca157e5f292" + } + }, + { + "text": "This professor isn't very clear with his instructions and seems very irresponsible. He assigns paper a week before deadline so you ONLY have a week to finish and hand it in. His rubrics for papers are unclear and he grades harshly when you don't meet those requirements he has on the rubric. Overall, I wouldn't take his class again.", + "pos": 0.049, + "neu": 0.836, + "neg": 0.115, + "_id": { + "$oid": "6711d69ccd60fca157e5f293" + } + }, + { + "text": "Do not take this professor if you want to actually learn anything. He is an actor and acts as if teaching is just a hobby or side job. Most lectures were about his acting credentials and work. He assigns lots of papers with ambiguous instructions and then grades you tough if you don't follow what he intended. Extremely annoying and pretentious.", + "pos": 0.02, + "neu": 0.909, + "neg": 0.07, + "_id": { + "$oid": "6711d69ccd60fca157e5f294" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69ccd60fca157e5f296" + }, + "professor_name": "Rishi Raj", + "rating": 3.4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "No grading criteria, no useful feedback from homeworks, lectures are a waste of time where he only talks about himself, makes you buy his textbook. Not difficult, but you won't learn anything useful from him or his book.", + "pos": 0.036, + "neu": 0.77, + "neg": 0.194, + "_id": { + "$oid": "6711d69ccd60fca157e5f297" + } + }, + { + "text": "He is a funny man. In the beginning he makes you feel that he is going to design an engine along with the students and that engine shall be used for the jet plane that has been sitting at JFK for many years. During the mid semester, he will make you feel how great he is. In the end, he will make you feel how stupid you are to believe him so easily.", + "pos": 0.123, + "neu": 0.836, + "neg": 0.041, + "_id": { + "$oid": "6711d69ccd60fca157e5f298" + } + }, + { + "text": "Great guy, usually diverges away from the topic and talks about his personal life, which can be a life lesson to student engineers of what they can encounter in their career as he did. Exams are all from the past papers, minimum homework and the main grade goes towards the project; so focus on that.", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f299" + } + }, + { + "text": "Inspirational professor. Lectures about practical subject matter. Must have some knowledge about the subject matter before hand. Textbook is based on his experience, and it is a compilation of what ought be taught and relevant. Exams, home works and projects test your understanding of the subject matter. Want to do good then think like an engineer.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f29a" + } + }, + { + "text": "Extremely knowledgeable professor. His lecture philosophy is different as he mostly do it in a real world situation manner as if he is talking to actual engineers about projects. The best way to learn is to have some knowledge of the topics, and this also helps to understand the textbook which is compilation of necessary practical subjects matter.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f29b" + } + }, + { + "text": "Very knowledgeable professor. Knows his stuff. Made his own book, you are forced to use it which is a crazy downside and has so many typos. You won't learn much in his class. The ONLY way to pass his exams is either past exams or being extremely smart in Thermo2. Difficult q's. Test heavy, and two design projects. No attendance. Minimum homework.", + "pos": 0.042, + "neu": 0.788, + "neg": 0.17, + "_id": { + "$oid": "6711d69ccd60fca157e5f29c" + } + }, + { + "text": "Textbook is copy paste of other books. Terrible lectures where he talks about his accomplishments and not necessary to attend. 2 very long papers/ projects on designing engine. Nice guy but cant teach. 2 midterms 15 % each, Final worth 30%. Can only pass tests if you have old tests otherwise impossible. Should kiss his ass to get points.", + "pos": 0.104, + "neu": 0.796, + "neg": 0.1, + "_id": { + "$oid": "6711d69ccd60fca157e5f29d" + } + }, + { + "text": "Very intelligent guy, and an expert in the field of thermofluids, but it's hard to follow his lecture. Would recommend taking in a small class, or with not a lot of other classes. Will learn a lot if you have the time.", + "pos": 0.117, + "neu": 0.848, + "neg": 0.035, + "_id": { + "$oid": "6711d69ccd60fca157e5f29e" + } + }, + { + "text": "I haven't gotten a grade yet but he is a nice guy. I think he gives us many opportunities to show we know the material and raise our grade. Some people say he likes to boast but he isn't that bad. I honestly have no idea how to study for his exams, I pretty much study everything including the book and old exams.", + "pos": 0.28, + "neu": 0.686, + "neg": 0.034, + "_id": { + "$oid": "6711d69ccd60fca157e5f29f" + } + }, + { + "text": "Expecting an A, but literally one of the worst professors I've ever had. Made account just for him. Tough subject, but he makes it worse. Lectures are nearly pointless to attend. 90% is his philosophy on life, how amazing he is, and how stupid you are. He also wrote the textbook. It's a copy/paste job loaded with glaring inconsistencies. Good luck.", + "pos": 0.157, + "neu": 0.649, + "neg": 0.194, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a0" + } + }, + { + "text": "All about the students. Conveys knowledge that is not acquired else where. Good Professor.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a1" + } + }, + { + "text": "I took Energy Conversion, Turbo Machinery, Power Plant System Design, and submitted a (Master) research paper on Micro Turbie to him. He is a great teacher. He tends to deviate from the topic to allude to some personal experience. But if you are mature student you will find him interesting.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a2" + } + }, + { + "text": "He is pretty easy going. Exams are open everything. You have to do the projects which he gives you mad time to do. Get old exams that's the only way to study.", + "pos": 0.159, + "neu": 0.757, + "neg": 0.084, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a3" + } + }, + { + "text": "I love the way he teaches. He is a real world professor. Take him if you want to be a man!", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a4" + } + }, + { + "text": "Quite possibly one of the most arrogant people I have ever seen. Rambles on about how great he is ALL THE TIME. Incredibly easy class, but the grading is really suspect. If you want to learn, then avoid his ego. If you want an easy A, then he is the way to go.", + "pos": 0.176, + "neu": 0.696, + "neg": 0.128, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a5" + } + }, + { + "text": "Great guy tends to ramble. Projects when given is tough but fairly graded, HW is a joke, and test are a mystery both in difficulty and final grade.", + "pos": 0.159, + "neu": 0.712, + "neg": 0.129, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a6" + } + }, + { + "text": "Quite simply one of the worst professors I've ever had. The questions on his tests were either ridiculously easy or impossible to answer. A midterm answer was literally, \"this question is wrong\". Either that or you had to assume that the surface area of the engine changed with it's temperature.", + "pos": 0.05, + "neu": 0.786, + "neg": 0.164, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a7" + } + }, + { + "text": "the best! as we would call him. he is the greatest of all. he made the thermo very interesting. take any class you can take with him. you will learn it and love it.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a8" + } + }, + { + "text": "great prof. interesting project and stuff", + "pos": 0.63, + "neu": 0.37, + "neg": 0.0, + "_id": { + "$oid": "6711d69ccd60fca157e5f2a9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69dcd60fca157e5f2ab" + }, + "professor_name": "Daniela Viviana Vladutescu", + "rating": 3.5, + "department": "Engineering department", + "comments": [ + { + "text": "She is a great professor but gives too much work. You must finish more than 50 calculus problems and one experimented lab report of about 20 pages every week. The good news is that in the lab report, we are two members in each group. Also, an 85 above is an A in her class. Her exams are easy and only a few questions needed to be answered.", + "pos": 0.132, + "neu": 0.823, + "neg": 0.046, + "_id": { + "$oid": "6711d69dcd60fca157e5f2ac" + } + }, + { + "text": "In this class, I learned a lot and discovered a passion to code with C language and to explore the world of possibilities with Arduino boards. The class is worth takin, you just gotta to do work and ask questions as the semester unfolds. The projects that were assigned were fun and cool and most importantly, they spark curiosity to do learn more.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2ad" + } + }, + { + "text": "I had 132 credits before I took prof. Daniela class. based on my experience i can confidently say that she is probably the best professor I ever had. I never came across a professor who is so sincere and so eager to stuff your head with useful knowledge. she is a valuable asset to her college. and lucky is the one who can be her student.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2ae" + } + }, + { + "text": "She is unfair in term of exams. She makes u do derivations like HO. She is trying to set her own standards. She is un-organized, goes really fast and exams will be out of no where. So just B S . Dont waste your time. Also she is good in ruining your GPA. SO have fun.", + "pos": 0.176, + "neu": 0.717, + "neg": 0.107, + "_id": { + "$oid": "6711d69dcd60fca157e5f2af" + } + }, + { + "text": "She is very dedicated to her students. She really loves teaching, and cares about the students. I am a student with disability and she was always available and had patience to answer my questions. She is one of the best professors I've had. You'll learn. Also, she is good looking which is just another reason to make you want to go to her class.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b0" + } + }, + { + "text": "best professor ever!!!!", + "pos": 0.729, + "neu": 0.271, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b1" + } + }, + { + "text": "Definitely one of the best professors. She explains things very well,she is clear,she knows the material and whats most important she cares about her students. She is always available to answer your questions and she is understanding in case you have any problems. Her exams are reasonable,she gives credit if you show that you know what your doing.", + "pos": 0.214, + "neu": 0.748, + "neg": 0.039, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b2" + } + }, + { + "text": "Her classes are Unique and you really need to pay attention from the get go. she tries to help out as much as she can but the course itself is very tough. Go to her office if you dont understand things are try and study as much as you can. Exams can be pretty tough but go over what she specifies in class and you will be OK. Dont expect that it is a", + "pos": 0.076, + "neu": 0.858, + "neg": 0.066, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b3" + } + }, + { + "text": "her explanations are clear, but she does go fast. take good notes, because her exams are based on notes. and when she tells you to \"look at this page\", she's giving you that hint, because those can also appear in the exam.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b4" + } + }, + { + "text": "She is very smart and you can tell she knows this stuff, unfortulatly for the students she has to many things going on in her life to really take time and make this stuff easy for us, and I do mean WAY TO MANY. A good professor is one that can make things easy to understand, she is not a good professor. But you can tell she wants you to pass.", + "pos": 0.104, + "neu": 0.874, + "neg": 0.023, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b5" + } + }, + { + "text": "This prof. is into her work and thus makes the course very interesting. EE30 is a very involved: your Physics, Calc, Chem. and \"imagination\" have to be in tip-top shape if you want to be challenged and receive a good grade. 1-semester is definitely not enough for any prof. to cover this course.IT WAS A WONDERFUL SEMESTER PROF.THANKS AND GOOD LUCK!!", + "pos": 0.291, + "neu": 0.691, + "neg": 0.018, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b6" + } + }, + { + "text": "She's a smart professor. She knows the material very well, so she goes though the materials fast, it's quite easy to fall behind her class.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b7" + } + }, + { + "text": "Oh NO NO NO NONONOOOOOOOOOO. she is not consistant with her notations, makes a lot mistakes and even if you do the very few homeworks she gives, you will still do bad on the exams because she will bring something totally different. Do not take her.", + "pos": 0.097, + "neu": 0.76, + "neg": 0.143, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b8" + } + }, + { + "text": "her exam are tough. but she does her best to help student understand the concepts. and she's real good at explaining the problems. but this class is really hard. so give your self a lotta time and understand what you read. plus you gotta know vector calculus real well.", + "pos": 0.245, + "neu": 0.649, + "neg": 0.106, + "_id": { + "$oid": "6711d69dcd60fca157e5f2b9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d69dcd60fca157e5f2ba" + } + }, + { + "text": "Since i took the class I've been dreaming about this professor, unfortunatelly my dreams would end up as nightmares...she is a horrible, horrible teacher, the only way you can pass her class is by cheating, and everyone is doing that...bad, bad experience, she is worse than gross", + "pos": 0.043, + "neu": 0.635, + "neg": 0.322, + "_id": { + "$oid": "6711d69dcd60fca157e5f2bb" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d69dcd60fca157e5f2bc" + } + }, + { + "text": "better than worst", + "pos": 0.362, + "neu": 0.125, + "neg": 0.512, + "_id": { + "$oid": "6711d69dcd60fca157e5f2bd" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d69dcd60fca157e5f2be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69dcd60fca157e5f2c0" + }, + "professor_name": "Ronen Samson", + "rating": 2.4, + "department": "Mathematics department", + "comments": [ + { + "text": "He's a different kind of professor that what a lot of students are used to. I think seems as if he's flying off the seat of his pants but he's not. He knows what he has to cover and when but is laid back. You however cannot be that laid.l back in your efforts. He's a good guy not as type a & structured as most instructors. Go to class review repeat", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c1" + } + }, + { + "text": "RUN! This guy gave me my first F and ruined my GPA. He gives the hardest exams ever and is just so RUDE. He speeds through sections and doesn't prepare you enough for exams or the final. I took this class with a different professor and got an A. I regret taking this class with him and do not recommend him to anyone who wants a good GPA.", + "pos": 0.037, + "neu": 0.798, + "neg": 0.166, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c2" + } + }, + { + "text": "This professor is really harsh. In the beginning of the course he's all dandy. He'll help if you ask but mid way he starts racing through the course because he didnt plan well. His exams are EXTREMELY DIFFICULT! There's no gateway in his class. Dont bother asking for help or an extension. Try to take a different professor if you can if not GG.", + "pos": 0.1, + "neu": 0.716, + "neg": 0.184, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c3" + } + }, + { + "text": "Samson was always in his office when I went there. Very clear and really tries to understand where you get stuck on problem. He dropped lowest grade and gave partial credit. i don't understand why everybody say bad stuff, students want to pass with easy A. very unfairly negative to him. i was prepared for final good and had no problems.", + "pos": 0.208, + "neu": 0.608, + "neg": 0.184, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c4" + } + }, + { + "text": "He is a tough grader and expects dedication from the student. He is not a kind of teacher one can totally depend on; you have to work hard. His lectures are clear and concise(sometimes too much concise). Doesn't check Homework, but the homework questions are really good. He can be hilarious with legit jokes.", + "pos": 0.194, + "neu": 0.767, + "neg": 0.039, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c5" + } + }, + { + "text": "Did not respond to e-mails. Did not show up to office hours. Very unprepared, please avoid him at all costs.", + "pos": 0.112, + "neu": 0.781, + "neg": 0.107, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c6" + } + }, + { + "text": "After taking the final it became I see that he didn't teach us everything and even didn't test us fairly. His tests were based on the textbook and he didn't prepare the class for the departmental final. Please do not take him.", + "pos": 0.053, + "neu": 0.947, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c7" + } + }, + { + "text": "Doesn't show up to office hours. He understands the concepts well, but he can't articulate it well to the class. Textbook use was essential.", + "pos": 0.06, + "neu": 0.854, + "neg": 0.086, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c8" + } + }, + { + "text": "He is good at explaining concepts, and helpful when questions are asked. He does not give extra credit, and expects you to study hard and understand the material fully. Overall a tough course, but with enough practice an A is within reach.", + "pos": 0.111, + "neu": 0.797, + "neg": 0.092, + "_id": { + "$oid": "6711d69dcd60fca157e5f2c9" + } + }, + { + "text": "Ronen is one of the few truly great teachers. He doesn't baby you, he treats you like an adult and he expects you to act like one. It's not an easy class, because it covers ALL of mathematics up to Calculus. A lot of people complain that he's tough, and that's true, but if you can't pass this class, you don't have the work ethic to go on.", + "pos": 0.133, + "neu": 0.804, + "neg": 0.063, + "_id": { + "$oid": "6711d69dcd60fca157e5f2ca" + } + }, + { + "text": "For the sake of your GPA just dont take him.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2cb" + } + }, + { + "text": "One of the worst professors at CCNY. Doesnt give partial credit, tests are way harder than the final administered by the math department. Dont let his charisma fool you, he shows no mercy on your final grade. Avoid him!!!", + "pos": 0.0, + "neu": 0.703, + "neg": 0.297, + "_id": { + "$oid": "6711d69dcd60fca157e5f2cc" + } + }, + { + "text": "Took Samson for Calc 2 over the summer. Very clear in his grading policy. Homework was optional (meant to help you, but he does not collect) Exams will be tough if you don't supplement lecture. His lectures were okay, he has the tendency to go off on tangents but aside from that, he's a very nice guy and is there for you if you need help.", + "pos": 0.183, + "neu": 0.794, + "neg": 0.023, + "_id": { + "$oid": "6711d69dcd60fca157e5f2cd" + } + }, + { + "text": "Clear explanations and examples. Relates the material to what you learned before. Make sure you know your algebra. Does many problems.", + "pos": 0.191, + "neu": 0.703, + "neg": 0.105, + "_id": { + "$oid": "6711d69dcd60fca157e5f2ce" + } + }, + { + "text": "he's so unprepared. Doesn't even have a syllabus he follows, he makes one up along the way. How is he a professor? He's so bad and clueless. 90% of your points are taken off on exams for missing a negative or making a minor mistake. I wouldn't want my worst enemy to be stuck with him, take anyone else!", + "pos": 0.043, + "neu": 0.659, + "neg": 0.297, + "_id": { + "$oid": "6711d69dcd60fca157e5f2cf" + } + }, + { + "text": "Avoid him at all costs. he cannot teach, he looks at the textbook and goes \"oh yeah that's how we do it\" and forgets when we're supposed to have quizzes and remembers halfway through the class. He honestly seems like he's high 24/7. He doesn't believe in partial credit on exams and he doesn't give extra credit. He's a nut case bad prof. Avoid!!!!", + "pos": 0.148, + "neu": 0.722, + "neg": 0.13, + "_id": { + "$oid": "6711d69dcd60fca157e5f2d0" + } + }, + { + "text": "Please don't take him :'( . In the beginning of the semester he goes very slow and steady, but as the term progresses he teaches a single chapter(consisting 6-7 sections) in just 2 lectures. He is enthusiastic and helping but expects too much(I mean it). If you want to pass in his class you have to read the book on your own before the class starts.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2d1" + } + }, + { + "text": "RUN!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d69dcd60fca157e5f2d2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69ecd60fca157e5f2d4" + }, + "professor_name": "Pragya Yadav", + "rating": 2.4, + "department": "Chemistry department", + "comments": [ + { + "text": "Nice woman, horrible professor. She reads off the slides and her reviews are the complete opposite of her exams. She takes points off for dumb things as well as ask unrelated questions on the exam. More concept based. Exams are 7-8 questions and the class average was lower than 50 everytime. Save yourself and DO NOT TAKE HER!", + "pos": 0.117, + "neu": 0.749, + "neg": 0.134, + "_id": { + "$oid": "6711d69ecd60fca157e5f2d5" + } + }, + { + "text": "Honestly, the class was very difficult mainly because students didn't know how to study for her exams. Sometimes the exams were straight from the textbook other times from homework. It was very inconsistent. However she is very caring and wants you to do well. If you try hard enough then you should be fine since she curves at lot. Great person.", + "pos": 0.223, + "neu": 0.72, + "neg": 0.057, + "_id": { + "$oid": "6711d69ecd60fca157e5f2d6" + } + }, + { + "text": "Only reads off powerpoint which is identical to text, so if you read the textbook you don't have to go to class. Average of class was 48. She does not know how to teach but is very caring so going to office hours does help. Her reviews are the most basic questions, does not help at all. Curve saved the class. Be above average and you'll get a B", + "pos": 0.15, + "neu": 0.814, + "neg": 0.036, + "_id": { + "$oid": "6711d69ecd60fca157e5f2d7" + } + }, + { + "text": "This must have been her first time teaching. I honestly hope she gets better because the material is not that difficult but you can't just come to class and read slide that came from the book. You need to be actively working problems out have review sessions and recitation. Don't just get angry when the grades reflect your lazy teaching style", + "pos": 0.189, + "neu": 0.719, + "neg": 0.092, + "_id": { + "$oid": "6711d69ecd60fca157e5f2d8" + } + }, + { + "text": "Although the big curve saved most of student's grade, Yadav is still not a great professor for Chem 104. She does not offer much educational support to students and she reads off slides. There are better option for Chem 104 at CCNY", + "pos": 0.169, + "neu": 0.765, + "neg": 0.066, + "_id": { + "$oid": "6711d69ecd60fca157e5f2d9" + } + }, + { + "text": "Shes awesome great professor and nice.", + "pos": 0.786, + "neu": 0.214, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2da" + } + }, + { + "text": "Yadav is a very caring professor, which is very hard to find these days. All of her test questions are either word for word or slightly changed textbook chapter problems! She truly wants everyone to do well in her class. There is also a MASSIVE curve!", + "pos": 0.167, + "neu": 0.753, + "neg": 0.081, + "_id": { + "$oid": "6711d69ecd60fca157e5f2db" + } + }, + { + "text": "Professor Yadav is a very nice and understanding professors you will ever meet. Make sure to study the Textbook sample problems and checkpoint problems because that is where 95% of the test questions are from. If you study those questions intensively, you can't fail. Also, she curves A LOT!", + "pos": 0.147, + "neu": 0.759, + "neg": 0.093, + "_id": { + "$oid": "6711d69ecd60fca157e5f2dc" + } + }, + { + "text": "Shes a very sweet and understanding professor. Her tests are hard but the textbook and homework questions will help you do well on her exams. She makes you work for your grade, study ahead of time for exams and prep yourself. The final also counts for most of the grade, so make sure you do well on that.", + "pos": 0.213, + "neu": 0.77, + "neg": 0.018, + "_id": { + "$oid": "6711d69ecd60fca157e5f2dd" + } + }, + { + "text": "She is tough, thats for sure. I honestly wasn't expecting a good grade. All you have to do is do above average on her tests! She's really nice, you have to study the lecture slides and textbook since that's where she gets most of her questions from. I am pretty sure she curved because I was not expecting the grade I got.", + "pos": 0.194, + "neu": 0.752, + "neg": 0.053, + "_id": { + "$oid": "6711d69ecd60fca157e5f2de" + } + }, + { + "text": "DO NOT TAKE HER FOR CHEM104. Save yourself! Her tests are really random, hard, and conceptual. She wants you to solve her tests HER OWN way or else you will lose alot of points (really low class avgs). She's like the Falk of Chemistry. She's nice but take someone else for chem104 and save your gpa. She reads off the slides too.", + "pos": 0.166, + "neu": 0.765, + "neg": 0.069, + "_id": { + "$oid": "6711d69ecd60fca157e5f2df" + } + }, + { + "text": "This professor is the WORST. I got an A+ in Chemistry 10301, but am not passing her exams. She is a nice woman but cannot teach concepts. I do not understand how she says her exams are easy but half of the class is failing. I am hoping that her final will be easier or else my gpa will be ruined!!! Do not take her if you want an A in chemistry.", + "pos": 0.186, + "neu": 0.69, + "neg": 0.124, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e0" + } + }, + { + "text": "This professor is horrible! The exams are extremely difficult. She does not give a clear idea of what will be on the exams! Her review sheets are worthless. All of the students are complaining about her in class. I study all of her lecture slides, review sheets, and read the book but still cannot do well on her exams. Praying that I pass her final.", + "pos": 0.044, + "neu": 0.793, + "neg": 0.163, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e1" + } + }, + { + "text": "Hands down one of the worst Chem professors at CCNY. Review sheets are nothing like the exam, professor isn't helpful and does not go over problems in class.", + "pos": 0.065, + "neu": 0.69, + "neg": 0.245, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e2" + } + }, + { + "text": "Terrible choice of Chem 104. She does not go a single problem in class. Just reads off the slides and expects students to know everything.", + "pos": 0.0, + "neu": 0.799, + "neg": 0.201, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e3" + } + }, + { + "text": "By far the worst professor to have for a science course, especially a demanding one like chemistry. Doesn't review the math problems in the chapters. Tests and review sheets are complete opposites of each other, doesn't give a concise idea of whats actually on the exam. Expects you to master the work after each lecture. Terrible just terrible.", + "pos": 0.036, + "neu": 0.746, + "neg": 0.218, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e4" + } + }, + { + "text": "Seems like a nice professor but results arent shown in the exams. Class average was around 45 because her exams are really random,time consuming, and worded weirdly. The review sheets don't match/prepare the actual exam which dont prepare you. Also reads off the slides. Don't recommend her theres better options for chem104. Half the class failing.", + "pos": 0.111, + "neu": 0.742, + "neg": 0.147, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e5" + } + }, + { + "text": "Worst professor ever. Doesn't go over problem in class. Exam questions are random", + "pos": 0.13, + "neu": 0.634, + "neg": 0.236, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69ecd60fca157e5f2e8" + }, + "professor_name": "Andr\u00e9a Stella", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "She's really caring and understanding. If you see her, take her immediately. Trust me, you won't regret it.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2e9" + } + }, + { + "text": "One of the best professors ever. Not putting an INSANE amount of pressure on the students is actually extremely helpful for learning as we get to learn without the constant fear of failing. At the end of most high-pressure courses, I vomit out whatever was hand-fisted to me. But in this course, I genuinely wanted to learn things and be in class.", + "pos": 0.123, + "neu": 0.822, + "neg": 0.055, + "_id": { + "$oid": "6711d69ecd60fca157e5f2ea" + } + }, + { + "text": "She is fantastic. One of the best professors ever. One of the very few professors who understands how hard college is for students and tries to make her class as simple as possible. She made her class asynchronous to take pressure off of us and weekly assignments were easy to do. Lucky to be apart of her class.", + "pos": 0.195, + "neu": 0.753, + "neg": 0.052, + "_id": { + "$oid": "6711d69ecd60fca157e5f2eb" + } + }, + { + "text": "amazing teacher. Was so understanding that during the covid situation that students were under a lot of stress. Easy A", + "pos": 0.253, + "neu": 0.642, + "neg": 0.106, + "_id": { + "$oid": "6711d69ecd60fca157e5f2ec" + } + }, + { + "text": "You cannot go wrong with taking her, she is absolutely one of the best English professors there is. Easy A+", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2ed" + } + }, + { + "text": "Absoulute Gem", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2ee" + } + }, + { + "text": "You can't go wrong in this class. You gotta do the work but the workload is not that much. Your work/paper/project does't even have to be completed as long as you show her that you really try. Late assignments are ok but don't just submit everything by the end of the semester. She doesn't provide formats but if you ask her, she'll come up w/ sth.", + "pos": 0.067, + "neu": 0.933, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2ef" + } + }, + { + "text": "she's the most wonderful sweetest person ever and geniunely cares about everyone. class once a week and very helpful for students that are busy", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f0" + } + }, + { + "text": "She is one of the best professors at CCNY. You can not go wrong with her.", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f1" + } + }, + { + "text": "You can't go wrong with this professor. Very open minded, meaning open to new ideas coming from colleagues and students to improve and make the class more productive and interactive. Her way of teaching is unconventional, drafts are not \"polished drafts\" . Room for errors for drafts are allowed bc it is a draft. Very cool prof!!", + "pos": 0.135, + "neu": 0.828, + "neg": 0.037, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f2" + } + }, + { + "text": "Shes one of the best English professors Ive ever had. Shes very caring and understanding. The class is easy but you have to do the work. If you skip any of the assignments youre gonna miss an easy good grade. If you couldnt submit an assignment on time ,you can still talk to her and submit it. Shes amazing !!!", + "pos": 0.273, + "neu": 0.702, + "neg": 0.025, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f3" + } + }, + { + "text": "Best professor at ccny", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f4" + } + }, + { + "text": "She is one of the best professors at CCNY . All you have to do is do the work and you will receive 100%. Would definitely recommend her. Very understanding and would ask the class if everything made sense. If you need to take an english class and she's available take her!", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f5" + } + }, + { + "text": "best teacher ever as a freshmen she helped me", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f6" + } + }, + { + "text": "Very good professor. It's an easy A if you take it with her. She is very lenient and very passionate about teaching. This class consists of multiple hw including a group project at the end. She is accessible through emails and listens to your problems and try to work with you. Note: group project gave 3 days later and received 95 with no penalty", + "pos": 0.195, + "neu": 0.77, + "neg": 0.036, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f7" + } + }, + { + "text": "Best professor ever! She was very understanding and fun. She always gives priority to her students, very understanding if a student has personal issues and she gives them time to make up. Sees the best in students. She also makes the class very interesting and interacting. She connects with her students.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f8" + } + }, + { + "text": "Andrea is awesome! She's kind and very understanding but do not take her lightly. She really cares for her students, has a great personality and is willing to help you every step of the way. I am glad to have taken this required course with her. Just do her work (she gives extensions if needed) and you will be perfectly fine.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2f9" + } + }, + { + "text": "Was definitely one of the better Professors I had in my first semester at CCNY. Was very considerate and as well caring.", + "pos": 0.453, + "neu": 0.547, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69ecd60fca157e5f2fc" + }, + "professor_name": "Les Hansen", + "rating": 3.9, + "department": "Speech department", + "comments": [ + { + "text": "This prof finally showed me how to write a good paper; helped for other courses; he's picky but so's the real world. He mad eme look loosely at my meaning and grammar", + "pos": 0.054, + "neu": 0.828, + "neg": 0.119, + "_id": { + "$oid": "6711d69ecd60fca157e5f2fd" + } + }, + { + "text": "lots of helpful handouts and exercises, good comments to help you write better, his voice will keep you awake and interested", + "pos": 0.467, + "neu": 0.533, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2fe" + } + }, + { + "text": "taught me all the stuff other writing courses skipped like organization aand grammar; well organized and uses classtime real good; at end of semester, he's fair with grades", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f2ff" + } + }, + { + "text": "Dr. Hansen is initially intimidating: with his vast knowledge, 7 degrees, and perfect diction. Your first few papers will be marked up, you will most certainly want to quit to save face. But stick with it and I promise you will learn about life, and be a better writer at the end of it. My absolute favorite college professor ever.", + "pos": 0.254, + "neu": 0.719, + "neg": 0.027, + "_id": { + "$oid": "6711d69ecd60fca157e5f300" + } + }, + { + "text": "Best professor for teaching you how to really write well. Will not hold back on his critiques, but is still a fair grader. Really funny and cool guy.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f301" + } + }, + { + "text": "He's probably one of the best professors at CCNY. He's funny and inspiring so you will enjoy his lectures a lot. But getting an A in his class is hard, unless you show drastic improvements in your writing. Other than that, take his class, you won't regret it.", + "pos": 0.256, + "neu": 0.716, + "neg": 0.028, + "_id": { + "$oid": "6711d69ecd60fca157e5f302" + } + }, + { + "text": "Professor Les is a good teacher; I wish every teacher teaches like him, if like an easy A his class is not for you but if you want to become a better writer take his class. Yes, he is picky but he wants students to their best and improve, he also take his time to go over grammar, sentence structure outside of the classroom.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f303" + } + }, + { + "text": "he is the most intelligent prof at ccny! he has 6 degrees which 4 are from Columbia university! WOW ! he has knowledge about everything and I wish he would have a class that he would just sit and say random stuff about the world! that's how amazing he is. he is a really tough grader, but at least once for all in your life u will actually LEARN !", + "pos": 0.135, + "neu": 0.847, + "neg": 0.018, + "_id": { + "$oid": "6711d69ecd60fca157e5f304" + } + }, + { + "text": "Don't be afraid when you get you papers back. Papers are always red, he finds every single mistake and punishes you harshly for them. Always pay attention to what he says because it can help out a lot. If you are struggling in his class, GO TO THE WRITING CENTER.", + "pos": 0.047, + "neu": 0.784, + "neg": 0.169, + "_id": { + "$oid": "6711d69ecd60fca157e5f305" + } + }, + { + "text": "Without any doubt, Dr. Hansen is the best English professor that I've ever had. He is very passionate about writing as well as thoughtful and inspirational. Is he a tough grader? YES, but if you want to succeed in college do not expect any class to be easy. His class did not only made me a better writer, but also helped me to grow as a person.", + "pos": 0.33, + "neu": 0.655, + "neg": 0.015, + "_id": { + "$oid": "6711d69ecd60fca157e5f306" + } + }, + { + "text": "Terrible professor. Extremely strict with grading and specifically looks for the \"badnegativity in everything.\"", + "pos": 0.0, + "neu": 0.807, + "neg": 0.193, + "_id": { + "$oid": "6711d69ecd60fca157e5f307" + } + }, + { + "text": "Dr.Les Hansen is a great professor.However, he is tough and will literally spill blood(red ink) on your corrected papers. Do not be afraid to take Hansen's class, just make sure your on top of him. The more Hansen see's a student care, the more effort he will put into helping you. In the end be prepared and purchase \"They Say I Say\" - great tool.", + "pos": 0.251, + "neu": 0.73, + "neg": 0.019, + "_id": { + "$oid": "6711d69ecd60fca157e5f308" + } + }, + { + "text": "I liked Dr. Les Hansen, he was pretty funny. He's also very clear about what he wants to see on his papers and grades on improvement. What I would do was that i would visit him on his office hours and have him look over my paper before it's due.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f309" + } + }, + { + "text": "Dr. Hansen's lecture style is really incoherent, he's jumpy and I don't feel like I actually learn anything from what he \"teaches\" in class, if you can call it teaching. On top of this he's an extremely tough grader so it makes getting an A impossible, do not take this class with this professor if you can.", + "pos": 0.03, + "neu": 0.869, + "neg": 0.101, + "_id": { + "$oid": "6711d69ecd60fca157e5f30a" + } + }, + { + "text": "Unless you are good with grammar it is a very hard course. He grades very harsh and not even going to the writing center help.", + "pos": 0.178, + "neu": 0.667, + "neg": 0.155, + "_id": { + "$oid": "6711d69ecd60fca157e5f30b" + } + }, + { + "text": "Super hard. Very strict with grammer and grading. Requires a lot of going over your work to get a good grade. Unless you are amazing at writing skip his class.", + "pos": 0.279, + "neu": 0.684, + "neg": 0.037, + "_id": { + "$oid": "6711d69ecd60fca157e5f30c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d69ecd60fca157e5f30d" + } + }, + { + "text": "He is good at speaking and has much in his head. You will like his sense of humor. But we have more fun than studies. Only three speechs in the term. He is a strict grader but worth taking.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d69ecd60fca157e5f30e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69fcd60fca157e5f310" + }, + "professor_name": "Abby Kornfeld", + "rating": 4, + "department": "Judaic Studies department", + "comments": [ + { + "text": "too strict with grading.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f311" + } + }, + { + "text": "Dr. Kornfeld is so nice and I really enjoyed her lectures. She can be a tough grader. She's very willing to meet with students for help outside of class, but she's not super talkative so you have to go in with very specific questions in mind. Overall she's great and very knowledgeable, and I'd love to take another class from her.", + "pos": 0.231, + "neu": 0.698, + "neg": 0.071, + "_id": { + "$oid": "6711d69fcd60fca157e5f312" + } + }, + { + "text": "Kornfield is a very great professor. She is very understanding and helps students a lot. discussion posts on the readings each lessons are annoying, but they are just a little opinion piece and you dont have to read the entire thing to do it. Readings are long and lectures are a bit boring, dominated by presentations. But she is trying to change it", + "pos": 0.068, + "neu": 0.862, + "neg": 0.07, + "_id": { + "$oid": "6711d69fcd60fca157e5f313" + } + }, + { + "text": "She explains her expectations in the syllabus. If you're someone looking for an easy A w/o doing any of the work, not for you. You have to be willing to actually learn the material and do the work to get the grade you deserve. Yes, there are readings, the projects weren't useless. I would blindly take another class with her, she knows her materials", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f314" + } + }, + { + "text": "Prof Kornfeld is AWESOME. This is my second time taking her. I took her Art of Jerusalem class. There is a LOT of reading you will do. The class consists of mainly discussion board posts. There was a midterm but the professor was kind enough to remove it and instead had us do a different assignment. There is also a final paper. Take her if u can!!!", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f315" + } + }, + { + "text": "She's 'nice' but gives too much work. Readings every week + discussion board posts. Then making a timeline of Islamic Art History for a midterm. Then for the final it's a research paper + another timeline. Don't participate? Points deducted. Not in class? Points deducted. You can pass but its annoying. Only positive is camera on is not mandatory.", + "pos": 0.107, + "neu": 0.82, + "neg": 0.073, + "_id": { + "$oid": "6711d69fcd60fca157e5f316" + } + }, + { + "text": "Kornfeld's comix class is fun! You will read different comic books and do discussion boards answering a few questions. There is also one group project. The class is easy. Just beware that you will be ordering 5-7 comic books for this course. Otherwise, Prof. Kornfeld is extremely nice and helpful. Take her if you can.", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f317" + } + }, + { + "text": "Great professor overall but not exactly an easy A. Im not sure what it would take to get an A+ on one of her papers. Enjoyed the class as it was a chill environment and we read many comic books together.", + "pos": 0.141, + "neu": 0.747, + "neg": 0.112, + "_id": { + "$oid": "6711d69fcd60fca157e5f318" + } + }, + { + "text": "Instructed presented the material well. But fails to give you the grade you deserve imo. At times too strict, like everything should be according to rules. Never missed a class, did all the assignments got a bad grade. Might be Good class for lib. arts students", + "pos": 0.185, + "neu": 0.673, + "neg": 0.142, + "_id": { + "$oid": "6711d69fcd60fca157e5f319" + } + }, + { + "text": "Took her for Islamic Art. Get ready for lots of reading, long lectures, occasional participation activities & fair exams. I don't think she's a tough grader. If anything she's flexible with exams like grammar. I couldve done better than a B but had other priorities. Regardless she's caring and wants everyone to do well. However you MUST work for it", + "pos": 0.225, + "neu": 0.756, + "neg": 0.018, + "_id": { + "$oid": "6711d69fcd60fca157e5f31a" + } + }, + { + "text": "While I enjoyed this class towards the end of the semester, it was rough throughout. I feel she does a good job with lectures. However when it comes to grading it's meh. Her policy is decent, but she doesn't really have actual grades for each assignment. It should be letter grades or percents. Lastly in order to succeed you need to care this class.", + "pos": 0.174, + "neu": 0.81, + "neg": 0.016, + "_id": { + "$oid": "6711d69fcd60fca157e5f31b" + } + }, + { + "text": "Professor Kornfeld is an awesome professor! I would def take her again. Jewish studies was a fun class with awesome people. Work is fairly easy, whatever you give is what you will get, so put some effort. She is super understanding, very helpful, friendly! I love her! Take her!! You wont regret it!", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f31c" + } + }, + { + "text": "I had this professor for the Art in Jerusalem class and she helped me so much, as well for my choice of master thesis next year. The class is so interesting that I enjoyed working for it.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f31d" + } + }, + { + "text": "Abby is probably one of the best teachers I had in school. Just be aware, she does assign long readings but they relate to the lecture as a whole. She is a very helpful professor, but also a tough grader. She does lay out what she expects you to write about, so take advantage of that. If you have trouble writing, go visit her office hours! Helpful!", + "pos": 0.174, + "neu": 0.76, + "neg": 0.066, + "_id": { + "$oid": "6711d69fcd60fca157e5f31e" + } + }, + { + "text": "This is one of the most enjoyable classes I've had at city college. Dr K gives you an incredibly helpful study guide before each exam. This is an easy class but it does require a little effort. \r I am really glad I took this class!One of the best Jewish studies/art classes at ccny!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f31f" + } + }, + { + "text": "Art of Jerusalem is a very interesting class. Dr Kornfeld is funny and teaches her lectures in the most interesting way. her lectures led me to research Jerusalem and find many texts that elaborated on topics we learned in class. The final paper was the most fun I ever had on a school assignment. We had to write historical fiction!!!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f320" + } + }, + { + "text": "I really enjoyed this class. I am planning on taking more classes with Dr Kornfeld in the future.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f321" + } + }, + { + "text": "Really great class! with a wonderful Professor! I have really enjoyed this class! The subject is interesting and is delivered in a way that makes one really exited about coming into class! Take this class! you will defiantly not regret it! if you do the readings there is no reason you should not receive an A", + "pos": 0.255, + "neu": 0.713, + "neg": 0.031, + "_id": { + "$oid": "6711d69fcd60fca157e5f322" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d69fcd60fca157e5f324" + }, + "professor_name": "Nathaniel Kingsbury", + "rating": 4.7, + "department": "Computer Science department", + "comments": [ + { + "text": "Really passionate about the subject, accessible in office hours, midterms don't count for a lot but are based off of the mock exams, weekly quizzes that count for a lot but they're pretty simple and it keeps you caught up with the material.", + "pos": 0.132, + "neu": 0.794, + "neg": 0.073, + "_id": { + "$oid": "6711d69fcd60fca157e5f325" + } + }, + { + "text": "Don't take his class or take it if you want to destroy your GPA. You won't be able to read anything he writes. You will have to learn thing by yourself through YouTube and books. He gives a quiz every week and it counts 35% of your grade. I will never take this professor class in my life again. The worst professor ever I have never met in my life.", + "pos": 0.017, + "neu": 0.883, + "neg": 0.1, + "_id": { + "$oid": "6711d69fcd60fca157e5f326" + } + }, + { + "text": "Super kind, understanding, helpful. Only downside is pop quizzes which were almost weekly but they were easy one question. It was 35% of grade and 7 quizzes (lowest 2 dropped) Just know the material from last lecture for quizzes. Mock exams exactly like real exams so easy to pass. Don't be late, quizzes first 10 mins of class. Email to make up.", + "pos": 0.233, + "neu": 0.66, + "neg": 0.107, + "_id": { + "$oid": "6711d69fcd60fca157e5f327" + } + }, + { + "text": "first and last portions of his course was very well structured and easy to follow but when he goes over number theory he gets excited and rushes through the material too fast and somewhat messily\nHighly recommend going to recitations for him\nHes very caring and kind, terrible handwriting though\nexams are very similar to mock\nquiz weekly unannounced", + "pos": 0.267, + "neu": 0.629, + "neg": 0.104, + "_id": { + "$oid": "6711d69fcd60fca157e5f328" + } + }, + { + "text": "Absolute angel of a Professor. Having him teach us discrete math was a stroke of genius by the CS department honestly. Lectures are straight forward and interesting, gives exams that are actually representative of the material in class, and responds to all emails. Handwriting is meh but you can overlook that. Wish he taught other CS courses. A++", + "pos": 0.14, + "neu": 0.841, + "neg": 0.018, + "_id": { + "$oid": "6711d69fcd60fca157e5f329" + } + }, + { + "text": "Kingsbury has a deep understanding of the content and demonstrates that in the lectures. The lectures were enjoyable.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f32a" + } + }, + { + "text": "Wonderful professor, entirely willing to hold your hand through the material, and completely transparent on tests, quizzes, and homework. Responsive. Awful handwriting, but that's nothing to worry about he'll gladly clarify if you ask.\nIf you try, you'll be just fine.", + "pos": 0.289, + "neu": 0.672, + "neg": 0.04, + "_id": { + "$oid": "6711d69fcd60fca157e5f32b" + } + }, + { + "text": "He is amazing!! Def take him for 104. He will give a quiz once a week and that's your attendance. If you email him in advance, you can make up. Lowest 2 quiz gets dropped. His exams exams are the same as mock ones he gives. You need to study outside class and pay attention in lecs too. He will be there to help always.", + "pos": 0.088, + "neu": 0.812, + "neg": 0.1, + "_id": { + "$oid": "6711d69fcd60fca157e5f32c" + } + }, + { + "text": "He was overall a great professor, he gave us practice exams a week before the exams that actually helped us do good on the exam if we studied them. He gave quizzes almost weekly but 2 of them get dropped and the quizzes were relatively easy if you went to class and paid attention. One complaint I do have was that his handwriting was atrocious.", + "pos": 0.116, + "neu": 0.845, + "neg": 0.039, + "_id": { + "$oid": "6711d69fcd60fca157e5f32d" + } + }, + { + "text": "For a first time professor I truly appreciate the extra time he spent to make videos to help us understand the topics. I have to admit that his handwriting is a little hard to read but he is worth taking. Prepare yourself for weekly quizzes!! Youtube videos helped me best to learn each topic. Mock exams helped most during actual exams.", + "pos": 0.215, + "neu": 0.721, + "neg": 0.065, + "_id": { + "$oid": "6711d69fcd60fca157e5f32e" + } + }, + { + "text": "As a first time professor, he was absolutely amazing. His lecture notes might be a little confusing but watching youtube videos on the topic and reading the textbook helps a lot. His mock exams before the actual exam is literally the same, just different numbers so there are no surprises. He also has a pop quiz once a week.", + "pos": 0.109, + "neu": 0.787, + "neg": 0.104, + "_id": { + "$oid": "6711d69fcd60fca157e5f32f" + } + }, + { + "text": "W professor is all i gotta say. if u get anything below an A+/A in his class then you need to drop out.", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d69fcd60fca157e5f330" + } + }, + { + "text": "Be ready to learn, do the homework, and study. Exams are fair if you study and learn the material.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f331" + } + }, + { + "text": "He's a great prof. He didn't give exams during Ramadan. He gives simple one-question quizzes weekly. Drops two quizzes. Offers an extra credit project and final was optional. He is always available to help after class and responds quickly to emails. Even took extra time to create videos reteaching concepts and posted to blackboard.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d69fcd60fca157e5f332" + } + }, + { + "text": "30% Midterms (3) | 30% Weekly Quizzes (~7, drops the lowest 2) | 20% HW (~5, 50% completion and 50% accuracy) | 20% Final Exam | Extremely caring for his students; explains concepts when asked; curves midterms if the class didn't do well; friendly and outgoing. For us, he made the final optional. Just put in the work, and you'll succeed. Good luck!", + "pos": 0.196, + "neu": 0.713, + "neg": 0.091, + "_id": { + "$oid": "6711d69fcd60fca157e5f333" + } + }, + { + "text": "Has clear lectures and is always ready to answer questions during and after class as well as by email. His handwriting is a bit hard to read, but he was willing to clarify if asked. The mock exams were perfect for being prepared for the exams. Overall, I really liked his class and would definitely take him again.", + "pos": 0.273, + "neu": 0.661, + "neg": 0.066, + "_id": { + "$oid": "6711d69fcd60fca157e5f334" + } + }, + { + "text": "Gives quizzes throughout semester but two of them get dropped. Gives mock exams to prepare students for exams and will curve exam if students do badly. Homework is given and is often done in recitation. Offers extra credit project. Overall, Kingsbury provides students an environment where you can succeed if you put in the work.", + "pos": 0.116, + "neu": 0.766, + "neg": 0.118, + "_id": { + "$oid": "6711d69fcd60fca157e5f335" + } + }, + { + "text": "He is an amazing professor. If take him then you will do pretty well. He cares about his students and make sure they are graded and treated correctly. He does give pop quizzes but they are mostly straight forward and simple. The only downside I would think is his handwriting is not the best.Overall, I enjoyed his class and would take him again.", + "pos": 0.223, + "neu": 0.743, + "neg": 0.034, + "_id": { + "$oid": "6711d69fcd60fca157e5f336" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a0cd60fca157e5f338" + }, + "professor_name": "Ellen Handy", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "She is awesome", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f339" + } + }, + { + "text": "Professor Handy is extremely knowledgeable of photography and american art. She is passionate and wants students to participate (she is very big on this!) so do yourself the favor and read so you can give your input. She is extremely helpful during office hours so take advantage of that opportunity!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f33a" + } + }, + { + "text": "Very charming teacher who is passionate about the topics of the lectures. Her class can be interesting but you have to do the long readings to participate in class discussion. Also, if you can't handle group projects aka doing all the work yourself don't sign up!", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f33b" + } + }, + { + "text": "Weekly Read and Respond (a lot of visits to the library) Group Powerpoint presentation (whoever picks the same topic as you) 10+ page research paper Felt like I didn't have time for any other class, it was a lot of work. But Professor Handy does help you if you meet her during office hours, if I didn't meet with her I would have failed the class", + "pos": 0.073, + "neu": 0.866, + "neg": 0.061, + "_id": { + "$oid": "6711d6a0cd60fca157e5f33c" + } + }, + { + "text": "very boring class. Handy is very strict with attendance and the no eating and drinking in class rule, only 5 min break in a 3 hour class. not particular conducive to an enjoyable learning environment. wouldnt recommend this instructor", + "pos": 0.065, + "neu": 0.781, + "neg": 0.154, + "_id": { + "$oid": "6711d6a0cd60fca157e5f33d" + } + }, + { + "text": "She is passionate about her subject , if a little narrow minded. She is mono tonal- painfully boring. stingy and frugal grading. Think you could learn more from reading a book , at least you wouldn't end up with her dogmatic point of view. No more than 5 min break in a 3 hour class , strictly no food or liquids, sign a late sheet if your 1 min late", + "pos": 0.042, + "neu": 0.799, + "neg": 0.159, + "_id": { + "$oid": "6711d6a0cd60fca157e5f33e" + } + }, + { + "text": "She became so easily frustrated constantly and just became overall unbearable by the end. Horrible teacher AND NOT A FAIR GRADER. Have no idea how i ended up with a C+ when all my grades were a B and higher. Not fair, boring and overall irritating.", + "pos": 0.085, + "neu": 0.634, + "neg": 0.281, + "_id": { + "$oid": "6711d6a0cd60fca157e5f33f" + } + }, + { + "text": "Extremely challenging - a serious brain bender but worth every penny put towards course tuition. You will learn and stretch and seriously engage material. She is incredibly professional and truly expert in her field - a once in a lifetime opportunity... intense workload and high level engagement of material - I celebrated after the final!", + "pos": 0.347, + "neu": 0.609, + "neg": 0.043, + "_id": { + "$oid": "6711d6a0cd60fca157e5f340" + } + }, + { + "text": "Professor Handy is awesome. I am currently taking her for the second time. I am not really interested in either of the subjects but she makes it wonderful. She is extremely clever, quite the wordsmith! I can listen to her for hours. She is hilarious and so unbelievably caring. Highly recommended.", + "pos": 0.345, + "neu": 0.63, + "neg": 0.025, + "_id": { + "$oid": "6711d6a0cd60fca157e5f341" + } + }, + { + "text": "She is a very responsible teacher, but she is a hard grader! Be well prepared if you decide to take her class!!!", + "pos": 0.289, + "neu": 0.653, + "neg": 0.058, + "_id": { + "$oid": "6711d6a0cd60fca157e5f342" + } + }, + { + "text": "her sylabus isa little less than 20 pages long and her work load gives you little to no time for other school work or for people who work full/part time. Good Luck to all who decide to take her course because its a strech !!!", + "pos": 0.134, + "neu": 0.828, + "neg": 0.038, + "_id": { + "$oid": "6711d6a0cd60fca157e5f343" + } + }, + { + "text": "Professor Handy is an example of a teacher who cares a lot, but a combination of boring subject matter and bland monotone talking makes most lectures a big snoozefest. I found myself working very hard to stay awake and pay attention in class, which is important considering the Tests are all memorization. She is very passionate about her work.", + "pos": 0.151, + "neu": 0.754, + "neg": 0.096, + "_id": { + "$oid": "6711d6a0cd60fca157e5f344" + } + }, + { + "text": "She is a nice person, her course is very engaging. However, she is very strict when it comes to attendance,papers e.t.c. If you really want to learn about art, take her. If you just want to take the class because its a requirement don't take her, you will end up getting bored and doing so much because she takes art extremely serious.", + "pos": 0.123, + "neu": 0.823, + "neg": 0.054, + "_id": { + "$oid": "6711d6a0cd60fca157e5f345" + } + }, + { + "text": "This professor is absolutely horrible. stay away from her. she is a fair teacher but her expectations of studenst are too much.her lectures are not clear at all. her voice changes every day and it puts you to sleep. she is a very MEAN and HARD grader. i did well in her class but i am aware about what she did to other students. RUN AWAY FROM HANDY!!", + "pos": 0.056, + "neu": 0.827, + "neg": 0.116, + "_id": { + "$oid": "6711d6a0cd60fca157e5f346" + } + }, + { + "text": "Very tough and very strict with your work. She expects alot from you. If you do not participate, she will make you. You have to visit the met many times.", + "pos": 0.0, + "neu": 0.942, + "neg": 0.058, + "_id": { + "$oid": "6711d6a0cd60fca157e5f347" + } + }, + { + "text": "Don't take this class! If you get a bad grade in any of the 3 papers (most likely) she will make you re- do it! talks about anything besides what she will ask in the midterm and final test - which is to identify artworks and write an essay. In our case she forgot to show up for the final exam! and made us take a home test after finals were over.", + "pos": 0.0, + "neu": 0.942, + "neg": 0.058, + "_id": { + "$oid": "6711d6a0cd60fca157e5f348" + } + }, + { + "text": "This was the worst art class in history. I had the night class and it was sooo boring. She is so critical when it comes to papers. She gave me an A- on a 12 page paper that I spent 2 weeks working on. And, to do her papers, you have to go the museum and stay there for hours. Run away from Handy!!", + "pos": 0.0, + "neu": 0.859, + "neg": 0.141, + "_id": { + "$oid": "6711d6a0cd60fca157e5f349" + } + }, + { + "text": "she tries really hard to keep the class interesting, but well it just wasn't. Her voice does make people not pay attention since she tends speak in monotone. Her midterm and final are unbelievably hard and she is a strict grader on papers (3 papers)", + "pos": 0.12, + "neu": 0.811, + "neg": 0.069, + "_id": { + "$oid": "6711d6a0cd60fca157e5f34a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a0cd60fca157e5f34c" + }, + "professor_name": "Marco Tedesco", + "rating": 2.3, + "department": "Earth Science department", + "comments": [ + { + "text": "Taken in 2009/2010. The class and material itself was fine. the issue i had was that he was incredibly petty. he sliced 25% off of EVERYONE's final grade (except 3 people), because we couldn't attend a non-mandatory lecture. The bulk of us complained to the Dept. Head,but nothing was done.", + "pos": 0.034, + "neu": 0.877, + "neg": 0.089, + "_id": { + "$oid": "6711d6a0cd60fca157e5f34d" + } + }, + { + "text": "he is a very cocky guy. I worked so hard in reading for the class but his grading system is useless.just dont come late to class and it just seems that he gives any grade he likes to anyone even if u work hard. He also made a pop quiz which was not part of our syllabus grading to worth 10% of our final grade just randomly. Making me to perform bad.", + "pos": 0.074, + "neu": 0.813, + "neg": 0.113, + "_id": { + "$oid": "6711d6a0cd60fca157e5f34e" + } + }, + { + "text": "He's not bad as most people say. Yes he's arrogant but also really funny. He gets annoyed at students who are late comers, don't participate, and slow at learning hehe. But i find him quite funny and cute ;)", + "pos": 0.345, + "neu": 0.556, + "neg": 0.099, + "_id": { + "$oid": "6711d6a0cd60fca157e5f34f" + } + }, + { + "text": "great class ! very much worthy .", + "pos": 0.602, + "neu": 0.398, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f350" + } + }, + { + "text": "I am taking the new class he is teaching about remote sensing and fieldwork and this is great. I also took his remote sensing class and there is a big difference (improvement) ... this class is definitely a must !", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f351" + } + }, + { + "text": "A good professor and class. Definitely worth it the money.", + "pos": 0.517, + "neu": 0.483, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f352" + } + }, + { + "text": "A good class with a good program. the major problem is that Earth Science students expect to learn Remote Sensing without physics and math background and engineering students do not understand that science is about understanding processes rather than writing formulas. He does a great job balancing these aspects.", + "pos": 0.171, + "neu": 0.777, + "neg": 0.052, + "_id": { + "$oid": "6711d6a0cd60fca157e5f353" + } + }, + { + "text": "He does not have any time for students. Doing any project with him is almost imposible. His grades are also not fair.", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d6a0cd60fca157e5f354" + } + }, + { + "text": "He is a very good professor, I do not know what you guys are talking about ! He is clear and his class are very exciting !", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f355" + } + }, + { + "text": "He is very theoretical, definitely not for Engineering majors. He also puts very little time for students. When he comes to class, he will skip topics and you learn it on your own. When you see him in his office, he will make you WAIT. I really don't know why he is teaching with that kind of attitude. He should do pure out research on his own.", + "pos": 0.043, + "neu": 0.957, + "neg": 0.0, + "_id": { + "$oid": "6711d6a0cd60fca157e5f356" + } + }, + { + "text": "Horrible experience. Waste of time. He does not prepare for class all he does is speak nonsense non related to the class. He grades student according \"his\" opining not to what you deserve", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d6a0cd60fca157e5f357" + } + }, + { + "text": "He is one of the worst professors I have ever taken any class with. He is very discriminating in term of grading. It seems like grade comes from his pocket. Whoever he feel like giving A he will give A and whoever he feels like giving C or C- or D he is going to give. It doesn?t matter if you are a good student or not. Nothing matters in this class", + "pos": 0.205, + "neu": 0.746, + "neg": 0.049, + "_id": { + "$oid": "6711d6a0cd60fca157e5f358" + } + }, + { + "text": "Arrogant with an attitude towards students. He thinks he knows everything when in reality does not have most of the time clearness about what he teaching. As a Grad student just cannot recommend him at all.", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d6a0cd60fca157e5f359" + } + }, + { + "text": "waste of time and money", + "pos": 0.0, + "neu": 0.588, + "neg": 0.412, + "_id": { + "$oid": "6711d6a0cd60fca157e5f35a" + } + }, + { + "text": "The subject is really good, but the professor is very unprofessional. I think he needs to take profession ethics class first before teaching this class. Grading is according to his will, one has to beg for the grade they deserve. It was on of the most frustrating class, I have ever taken. He has no ability to teach, very poor quality. No wonder he", + "pos": 0.026, + "neu": 0.73, + "neg": 0.244, + "_id": { + "$oid": "6711d6a0cd60fca157e5f35b" + } + }, + { + "text": "Please Dont waste your time & money taking this class, you will learn nothing-unless you know the subject.He's not clear & doesnt explain anything.But he expects a lot from everybody.Lots of Assignments & test(open book).You will find better prof from the same. department.The subject is good.", + "pos": 0.195, + "neu": 0.765, + "neg": 0.041, + "_id": { + "$oid": "6711d6a0cd60fca157e5f35c" + } + }, + { + "text": "Worst experience ever.Major issues with explaining material.Strong personal attitude towards few students.Very unprofessional.Doesn?t come prepared to the class.He keeps using one word basically all time.only Plus point all are open book test but still hard.Projects are very hard.Gotta learn the software by urself.Does not curve the score.", + "pos": 0.03, + "neu": 0.918, + "neg": 0.052, + "_id": { + "$oid": "6711d6a0cd60fca157e5f35d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a0cd60fca157e5f35e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a1cd60fca157e5f360" + }, + "professor_name": "Matt Mead", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Many of your other profs will disappoint you after taking Mead because they won't measure up! He's v good at raising students' awareness about sociopolitical issues in an engaging, accessible way, especially for a white guy. Take him if you can!", + "pos": 0.126, + "neu": 0.816, + "neg": 0.058, + "_id": { + "$oid": "6711d6a1cd60fca157e5f361" + } + }, + { + "text": "It's been a year since I took English with Mead.. and god do I miss that class. It was one of the best classes I've taken in my entire college career. I haven't stumbled upon another professor that thinks the way he does. Definitely take him if you can! Go to his office hours because that'll really help too, plus he's great company to have around!", + "pos": 0.213, + "neu": 0.767, + "neg": 0.02, + "_id": { + "$oid": "6711d6a1cd60fca157e5f362" + } + }, + { + "text": "Mead is an amazing professor. Go to his office hours and he will definitely help you, and he'll bring up amazinginteresting topics and new ideas. Also he really appreciates all the extra effort, so if you do try, you will most likely get an A.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f363" + } + }, + { + "text": "Very knowledgeable prof who can make you consider majoring in English.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f364" + } + }, + { + "text": "Best professor ever. His essays graded fair and good. Although you ask him a question he almost takes like an hour; but he just want to make sure you clear what to do. His recommend is very helpful i wish i can have him again.", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f365" + } + }, + { + "text": "Best professor ever. His essays grading is easy and fair. Just follow the guilde line that he asked you to do and you will be fine. Also, this class is fun and nice. if i am majoring in English, i might want to pick him again.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f366" + } + }, + { + "text": "Best professor ever. all essays and memo are graded fair and easy. Just follow the guilde line that he asks you to do and you will be fine.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f367" + } + }, + { + "text": "His workshop class is very easy and fun. However, he needs to talk less and let students do most of the talking. Once he starts talking, lets just say it never ends.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f368" + } + }, + { + "text": "Matt Mead did a great job at getting the material across and anyone who did poorly in the class has only themselves to blame. He's a really nice guy, more than willing to work with you about your answers, and takes the time to explain things if you didn't get them the first time.", + "pos": 0.119, + "neu": 0.842, + "neg": 0.04, + "_id": { + "$oid": "6711d6a1cd60fca157e5f369" + } + }, + { + "text": "He spent half of his class talking about he and his wife and nothing. plz don't just say he is good because he is hot. It doesn't mean anything.", + "pos": 0.093, + "neu": 0.868, + "neg": 0.039, + "_id": { + "$oid": "6711d6a1cd60fca157e5f36a" + } + }, + { + "text": "Mr. Mead is awesome. He posts all the assignments online, reminds you multiple times in class that their due, and the assignments aren't that difficult. He's also really funny (he has the best stories) and so adorable! I recommend him highly! Did I mention he really adorable?", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f36b" + } + }, + { + "text": "By far the coolest professor I had in CCNY.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f36c" + } + }, + { + "text": "He's a good professor, he spends a lot of time talking and getting into the inner workings of literature and its writing. He did speak a little too much but was good at giving suggestions when you came to him. Great guy and I would take another class with him if I could.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f36d" + } + }, + { + "text": "I love his class, he is extremely funny, he creates an open environment to learn in, and he interprets things really interestingly during workshops (however as an instructor, he should do less talking, workshops=students)Only neg= he is very minimal on paper feedback and suggestions. Another neg= he's married :(", + "pos": 0.214, + "neu": 0.738, + "neg": 0.049, + "_id": { + "$oid": "6711d6a1cd60fca157e5f36e" + } + }, + { + "text": "Matthew Mead is freaking awesome! I would like to take another class with him, and he's pretty hot to look at!", + "pos": 0.344, + "neu": 0.563, + "neg": 0.093, + "_id": { + "$oid": "6711d6a1cd60fca157e5f36f" + } + }, + { + "text": "It's worth it to you to take a class with Professor Mead!", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f370" + } + }, + { + "text": "Fun teacher, very easy. I recommend him 100%. A+++", + "pos": 0.607, + "neu": 0.393, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f371" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a1cd60fca157e5f373" + }, + "professor_name": "Timothy Porter", + "rating": 4.8, + "department": "Political Science department", + "comments": [ + { + "text": "I am glad I took his class. He is a great Professor and a great human being. Expectations for the course are clear. You will get the grade you want if you work for it. Doesn't make your life harder by amigouiys or unrealistic demands. Tests are very objective, offers extra credit and some paper writing. I believe he is one of the best in the dept.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f374" + } + }, + { + "text": "Great professor. Great class. Does everything in his power to help you pass. Just take the course.", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f375" + } + }, + { + "text": "Just put this class on your schedule!! He is awesome, the class is awesome!! From reading the book to his lectures, you will gain so much. The mock trial was awesome!! Definitely take this class!! He helps you gain points as much as possible!! He's an attorney, so great letter of recommendation from him!! Talk in class at least once! Awesome class!", + "pos": 0.388, + "neu": 0.578, + "neg": 0.034, + "_id": { + "$oid": "6711d6a1cd60fca157e5f376" + } + }, + { + "text": "One of the best at City College. I would have loved to take more of his classes.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f377" + } + }, + { + "text": "he is great, he will help you every way he can. mock trail was great in his class", + "pos": 0.394, + "neu": 0.505, + "neg": 0.101, + "_id": { + "$oid": "6711d6a1cd60fca157e5f378" + } + }, + { + "text": "Professor Porter is one of the best professor in CCNY. He gives you a lot of extra credit. The only way you can fail is if you never show up in class or never read his powerpoint or the book. He also gives you great recommendation letter. If you want to learn and get good grade, I highly recommend you to take his class.", + "pos": 0.228, + "neu": 0.727, + "neg": 0.045, + "_id": { + "$oid": "6711d6a1cd60fca157e5f379" + } + }, + { + "text": "Easy A. Definitely not a challenging course, but hey who can complain about a class that will boost your GPA.", + "pos": 0.274, + "neu": 0.559, + "neg": 0.167, + "_id": { + "$oid": "6711d6a1cd60fca157e5f37a" + } + }, + { + "text": "Professor Porter is amazing! he will do anything in his power to see you pass. Must take him!", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f37b" + } + }, + { + "text": "\"insultingly easy\" is probably the most accurate way to describe this class. you can learn a lot about the way the legal system works, however, especially if you have a weak background. i was not a big fan of him pushing his (liberal) political agenda on the class, even though most of the class already thought conservatives were evil.", + "pos": 0.063, + "neu": 0.758, + "neg": 0.18, + "_id": { + "$oid": "6711d6a1cd60fca157e5f37c" + } + }, + { + "text": "Professor Porter is the best professor in city college he will teach everything you need to know about political science. City college should hire more professors like Professor Porter.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f37d" + } + }, + { + "text": "reviews missing the point. Easy A yes - but you had to learn and memorize a lot of stuff people usually ignore. He inspired a lot of people - I took one class with him and 2 years later I have a a 200 thousand scholarship at Brooklyn Law because he inspired me to do it - and yes he made it feel easy.", + "pos": 0.246, + "neu": 0.694, + "neg": 0.06, + "_id": { + "$oid": "6711d6a1cd60fca157e5f37e" + } + }, + { + "text": "Great Professor easy A, great guy, hes the best", + "pos": 0.754, + "neu": 0.246, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f37f" + } + }, + { + "text": "Great teacher, one of the best easy A. Gives 3 exams drops lowest and 2 very easy papers. Watch movies in class is really fun. He buys cookies and goodies for you guys sometimes. Practically throws bonus points at you. You can score a 61 on his final and he gives you 39 take home extra credit so you can get a 100.(LOL) one of by far the best teache", + "pos": 0.308, + "neu": 0.664, + "neg": 0.028, + "_id": { + "$oid": "6711d6a1cd60fca157e5f380" + } + }, + { + "text": "Insultingly easy. Didn't challenge students one bit, which ultimately led to him being a pushover. He's a great guy, but this class is purely for slackers. He practically throws \"bonus points\" at you. If you dont participate, he gives you +5 for showing up instead of actually challenging you. Doesn't help you as an academic. Total blowoff class", + "pos": 0.163, + "neu": 0.747, + "neg": 0.09, + "_id": { + "$oid": "6711d6a1cd60fca157e5f381" + } + }, + { + "text": "Professor Timothy is an extremley helpful and easy going professor. Easy A. I got A+ with very minimum work. No one failed in my class even they didn't do any work at all. Lots of people got A's and A+'s in my class. I didn't expect to get A+, but he gave me. Nice and helpful professor I even seen at CCNY.", + "pos": 0.21, + "neu": 0.766, + "neg": 0.024, + "_id": { + "$oid": "6711d6a1cd60fca157e5f382" + } + }, + { + "text": "Extremely helpful. Will provide you with all of the information on the class and how to receive a good grade. If you do everything for class, you will definitely pass. (Attend class as well.)", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f383" + } + }, + { + "text": "Awesome Professor! Very helpful in and out of class. Willing to work with you to help you understand material and relate it to real world usage all while tapping your potential for a maximum earned grade. Funny guy as well!", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f384" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a1cd60fca157e5f386" + }, + "professor_name": "Stori MacPhee", + "rating": 2.7, + "department": "Speech department", + "comments": [ + { + "text": "truly one of the worst professors I have ever had!!! so discouraging to see a teacher who shames her students instead of actually communicating with us to tell us what we could do better. Incredibly disrespectful if you don't give her the exact answer she wants. reads directly from an outdated textbook, truly laughable.", + "pos": 0.145, + "neu": 0.688, + "neg": 0.167, + "_id": { + "$oid": "6711d6a1cd60fca157e5f387" + } + }, + { + "text": "Professor Stori was a little rude in her criticism of your speeches but its only for you to improve. She would tell us that you don't learn from your successes but rather from your mistakes and she just wants the best for you. She gave 3 speeches thats the only thing you're graded by. she's a lenient grader I got 3 90s and got an A in the class..", + "pos": 0.199, + "neu": 0.719, + "neg": 0.082, + "_id": { + "$oid": "6711d6a1cd60fca157e5f388" + } + }, + { + "text": "Hands down the worst professor I've ever had. I ended up having to drop her class, because she will belittle you (loudly, in front of the class) instead of actually giving useful feedback. I've had my fair share of bad teachers, but she's the first one to make me cry. I can't stress enough DO NOT TAKE HER CLASS", + "pos": 0.139, + "neu": 0.687, + "neg": 0.174, + "_id": { + "$oid": "6711d6a1cd60fca157e5f389" + } + }, + { + "text": "She may call out your mistakes on your speech(s), but she's just trying to help you improve. There are only 3 speeches throughout the semester (3-5 mins each), and if you follow her outline plus do the reading, you'll be fine. (does talk about politics/feminism a lot)", + "pos": 0.177, + "neu": 0.791, + "neg": 0.032, + "_id": { + "$oid": "6711d6a1cd60fca157e5f38a" + } + }, + { + "text": "This professor is an easy grader but shes really judgmental. You do not truly need the text book just ask a peer to look over it.", + "pos": 0.067, + "neu": 0.826, + "neg": 0.107, + "_id": { + "$oid": "6711d6a1cd60fca157e5f38b" + } + }, + { + "text": "3 speeches. Just follow her formats for the outlines. Speak clearly. Make sure you have good presentation skills. She can come off as a little rude, but as long as you present your speeches well you will earn a good grade. Ask questions if you dont understand her prompts. Heavily grades the written and speaking outlines.", + "pos": 0.187, + "neu": 0.784, + "neg": 0.029, + "_id": { + "$oid": "6711d6a1cd60fca157e5f38c" + } + }, + { + "text": "She can be tough when she is criticizing but at the end of the day she wants her students to be able to give speeches in a clear manner. Make sure you read the assigned chapters, if she notices the class has not read she will give pop up quiz. Three speeches, easy A if you follow her guidelines for the outlines.", + "pos": 0.145, + "neu": 0.812, + "neg": 0.043, + "_id": { + "$oid": "6711d6a1cd60fca157e5f38d" + } + }, + { + "text": "Very rude and critical while you present your speeches. 3 speeches total for the entire semester. Overall the class is an easy A if you follow her guidelines for the outlines. Even if you don't do well on the speeches and she belittles you in front of the entire class, she usually grades very generously. Dont like her personally, but it was an ez A", + "pos": 0.1, + "neu": 0.803, + "neg": 0.097, + "_id": { + "$oid": "6711d6a1cd60fca157e5f38e" + } + }, + { + "text": "She can be rude and steadfast with her opinions sometimes but she genuinely wants to help students become better speakers. She starts off the class with a template for all of the outlines; just follow that, show improvement with every speech, and you'll do fine. Also participate and smile a lot so she'll know your name.", + "pos": 0.265, + "neu": 0.707, + "neg": 0.029, + "_id": { + "$oid": "6711d6a1cd60fca157e5f38f" + } + }, + { + "text": "She is a harsh critic. She is welcoming. Her speeches are easy and the topic is your choice but the type of speech is chosen by her. Expect to hear a lot of criticism good and bad. All you have to do if speak clearly, loudly, and with emotion and you should be fine for the class", + "pos": 0.183, + "neu": 0.652, + "neg": 0.164, + "_id": { + "$oid": "6711d6a1cd60fca157e5f390" + } + }, + { + "text": "You don't have to use your textbook at all. There are ONLY 3 speeches, no finalmidterm. Attendance is important, so just show up! She criticizes people in front of the whole class and is strict on how she wants the speechoutline to be. However, she gives you good grades in the end. VERY easy class. I recommend taking her.", + "pos": 0.165, + "neu": 0.768, + "neg": 0.067, + "_id": { + "$oid": "6711d6a1cd60fca157e5f391" + } + }, + { + "text": "Instead of giving feedback on how to improve, she harshly criticized speakers in front of the classroom. Especially struggling ESL students. She was rude and disrespectful. She would YELLLLLLL at students when they didn't do something EXACTLY the way she wanted. It was hard to watch. We're all adults, no need to yell at us like children.", + "pos": 0.113, + "neu": 0.71, + "neg": 0.177, + "_id": { + "$oid": "6711d6a1cd60fca157e5f392" + } + }, + { + "text": "MacPhee is an ignorant professor who has no interest in her students' differing opinions. Despite her uselessness, she only assigns 3 easy speeches. If you follow her \"my way or the highway\" instructions and outline format, you'll receive a good grade. Expect an older professor who can't seem to grasp that it's not 1973 anymore.", + "pos": 0.128, + "neu": 0.799, + "neg": 0.073, + "_id": { + "$oid": "6711d6a1cd60fca157e5f393" + } + }, + { + "text": "This professor is super bipolar. One moment she's making the class enjoyable and the next she is complaining about how the class couldn't follow her unclear instructions. Overall it's an easy class though.", + "pos": 0.277, + "neu": 0.679, + "neg": 0.044, + "_id": { + "$oid": "6711d6a1cd60fca157e5f394" + } + }, + { + "text": "I agree with comments below... she is very bi-polar. She does have the tendency to compare you to others. Besides her attitude, her speeches are rather simple. Just follow her precise directions, and you'll get an A.", + "pos": 0.065, + "neu": 0.935, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f395" + } + }, + { + "text": "Very bipolar lady however extremely lenient with grading! Follow her instructions and your good! Only does 3 very interesting speeches, which are much simpler and easier than the speeches other profs give! Not a bad prof, fair grader!", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d6a1cd60fca157e5f396" + } + }, + { + "text": "Fairly easy class. Only 3 major speeches and no final exam.", + "pos": 0.202, + "neu": 0.627, + "neg": 0.172, + "_id": { + "$oid": "6711d6a1cd60fca157e5f397" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a2cd60fca157e5f399" + }, + "professor_name": "Janelle Poe", + "rating": 2.7, + "department": "English department", + "comments": [ + { + "text": "She's intelligent and passionate about her work thats the only positive thing I can say. disorganize and disconnected to what is happening in today's world is another aspect of her. Every week it felt like she was assigning more assignments on top of all the other work she wanted. A LOT OF reading . I WILL NEVER TAKE HER AGAIN.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f39a" + } + }, + { + "text": "Professor Poe is very kind and sweet. You can tell she truly likes her job. However, in terms of the work, she's very disorganized. She isn't clear with the assignments and gives way too many unnecessary readings. The readings will honestly have you stressed out. Personally, I wouldn't recommend taking this class.", + "pos": 0.231, + "neu": 0.634, + "neg": 0.135, + "_id": { + "$oid": "6711d6a2cd60fca157e5f39b" + } + }, + { + "text": "Shes not the best. Beware there will be a lot of work and shes not so understanding but wants you to understand her life. If you have another choice take it. The final project counts for a lot of your grade which is good cause you get to pick the topic and have creative control. Otherwise a lot of readings and tedious assignments.", + "pos": 0.11, + "neu": 0.859, + "neg": 0.031, + "_id": { + "$oid": "6711d6a2cd60fca157e5f39c" + } + }, + { + "text": "First of all, she never replies to emails in a timely fashion or at all. Expects way too much effort to be put into her class and grades very harshly for no good reason, It is always unclear what is expected of you for the assignment. Lectures are mandatory but unhelpful. Extra credit saves you though", + "pos": 0.095, + "neu": 0.852, + "neg": 0.053, + "_id": { + "$oid": "6711d6a2cd60fca157e5f39d" + } + }, + { + "text": "DO NOT take this class. She's one of the worst professors I've seen at CCNY. She gives random assignments with no instruction and then grades super strictly. She expects so much from her students but does give it in return. She's firm on deadlines but doesn't get any of her work done on time. I don't think she was prepared to teach this course.", + "pos": 0.07, + "neu": 0.87, + "neg": 0.06, + "_id": { + "$oid": "6711d6a2cd60fca157e5f39e" + } + }, + { + "text": "She was honestly a great teacher, provides textbooks and readings online and gives great feedback on work She was a little hard on readings but it is because she needs you to understand the class. Email her but try to meet during office hours, get to know her she is an amazing teacher, wants you to pass. Some classes are online so no need to meet.", + "pos": 0.159, + "neu": 0.778, + "neg": 0.063, + "_id": { + "$oid": "6711d6a2cd60fca157e5f39f" + } + }, + { + "text": "In the very beginning of this class this professor was cool in the beginning of the class, but I later realized that's shes very unprofessional, hard to reach outside of class, always wants you to respect her life outside of class but doesn't allow the class to have a life outside of class because she piles work ontop of us and then grades it late.", + "pos": 0.093, + "neu": 0.788, + "neg": 0.119, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a0" + } + }, + { + "text": "Seemed like she was just reaching for a pay check, hard to contact outside of class and constantly complained about how much work she had to do, while give us more work. I understand she had two jobs but so do alot of other profs and students", + "pos": 0.064, + "neu": 0.85, + "neg": 0.086, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a1" + } + }, + { + "text": "At first this professor seemed down to earth but as the semester went on she was unprofessional and unapproachable. Her lectures rarely had a point and were full of endless rambling. she was very hard to contact and help the students to a much higher standard than herself. Assignments were constantly being changed at whim and lacked instruction.", + "pos": 0.055, + "neu": 0.846, + "neg": 0.1, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a2" + } + }, + { + "text": "Shes very strict on deadlines but doesnt hold herself to the same standard. Meaning, she would take off major points for late work (maybe not even accept it) but she barley graded assignments and we didnt receive our final grade until WELL past the due date. She barley graded work throughout the semester. She doesnt like questions either.", + "pos": 0.058, + "neu": 0.857, + "neg": 0.085, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a3" + } + }, + { + "text": "She is a pretty nice prof. She is new but really good at teaching. The work is a lot but she listens to our problems. She doesn't explains some assignments that well so ask her outside of class. Overall a caring and respectable teacher. She also gives really good notes and very helpful feedback on papers So do take her!", + "pos": 0.329, + "neu": 0.628, + "neg": 0.044, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a4" + } + }, + { + "text": "She is a teacher that does care for her students. There is a lot of reading she gives, however it is more to help you on your papers. She is not very specific on her paper criteria so it is best to reach her outside of the classroom for one on one discussions. Paper feedbacks are very solid however you have to just do the work at your best ability.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a5" + } + }, + { + "text": "I personally don't like English so I found this class annoying. But she's a very nice lady and she really cares about her students. A lot of writing assignments and she's new at teaching so she messes up sometimes.", + "pos": 0.183, + "neu": 0.745, + "neg": 0.072, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a6" + } + }, + { + "text": "She's an amazing teacher and she cares about her students ALOT. She always encourages people to come to office hours and allows you to rewrite papers. The class itself was fairly easy.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a7" + } + }, + { + "text": "She gives great feedback on all the assignments and essays you do, and if you follow all the guidelines she gives for essays, you will get a good grade. Thing is, you have to be on top of your grammar and punctuation and a lot of other things like the sentence and paragraph structure and chronological order on your assignments or else you won't get A.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a8" + } + }, + { + "text": "Poe is a very good professor even though she is very new to teaching a classroom. She eventually got the hang of things. She is very kind and understanding if an issue were to arise. (TIP: start your essays early and proofread). She grades your essays in depth and gives rewrites. Keep on top of notifications with her, she is also easily accessible", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3a9" + } + }, + { + "text": "This professor is new to teaching, and I believe she is one of the best English professors I have ever taken. She puts all of her time and effort into giving you the most thoughtful feedback and constructive criticism. She also gives you opportunities on extra credit and re-writes. If you want someone that will benefit your writing skills, take her", + "pos": 0.254, + "neu": 0.708, + "neg": 0.039, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a2cd60fca157e5f3ac" + }, + "professor_name": "Joseph Brisendine", + "rating": 3.2, + "department": "Physics department", + "comments": [ + { + "text": "Do his homework and you should be fine with the exams.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3ad" + } + }, + { + "text": "He's a good professor and tries his best to help you pass. I don't understand why some people complained about him it's not his fault that pchem is a difficult subject. The tests are open book and related to the hw problems, but the hw problems are almost impossible to do. You won't find the answers online or on chegg. Extremely conceptual class.", + "pos": 0.111, + "neu": 0.764, + "neg": 0.125, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3ae" + } + }, + { + "text": "He is very passionate about what he teaches! it is important to show up to his lectures. He gives a set of homework questions and notes before each exam. If you review and are able to understand how to solve them, you should do well! He is always willing to help out and gave bonus questions for extra points on an exam so people do well. he cares!", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3af" + } + }, + { + "text": "Let's be honest, I got A at organchem 1&2 and Phys 1&2. This professor is smart, but he doesn't know how to teach. Base on my experience, he though he is teaching a group of genius. Rarely explain how to apply the formula in the question, sometimes off the topics. Be aware and be ready if you are going to take physchem with him. Good luck.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b0" + } + }, + { + "text": "I felt very conflicted about him in the beginning because he didn't seem to care. Now it's the end of the semester, and I see that he could definitely do more but also I see his current effort. He is inspirational and knows a lot. I got good quality education in his class.", + "pos": 0.166, + "neu": 0.804, + "neg": 0.03, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b1" + } + }, + { + "text": "Awesome professor! Teaches physics with such a passion, you wont be disappointed! Show that you care and youll be fine!", + "pos": 0.509, + "neu": 0.491, + "neg": 0.0, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b2" + } + }, + { + "text": "If you're taking him for bio or chem, it'll feel like a biophysics class or a physics/chem class. He's more into concepts and the fundamentals than the calculations so pay more attention to that. He curves a lot on exams tho. If you show improvement and do all the extra credit, he'll boost your grade up a lot. Read his emails/study guides clearly", + "pos": 0.187, + "neu": 0.788, + "neg": 0.026, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b3" + } + }, + { + "text": "Okay, after reading the rest of the comments, i thought i should give my input. He was thrown into the class last minute to substitute so i think thats mainly why he didn't care as much. If this were his physics class i doubt he would let us off so easy. I didn't like him in the beginning but i think he realized he needed to relax, and so he did.", + "pos": 0.099, + "neu": 0.836, + "neg": 0.066, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b4" + } + }, + { + "text": "I had some difficulties with this class at first, mainly because Dr. Brisendine focuses on the theoretical aspect of chemistry. But as time went on, I adapted to his way of teaching. He also gives you a second chance to prove yourself on the final. That is what I liked about him. I would take him again, he's very considerate.", + "pos": 0.154, + "neu": 0.822, + "neg": 0.023, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b5" + } + }, + { + "text": "He takes a physics approach to his lectures and exams, therefore its different from other chem 104 classes. Unlike other chem classes, there's no plug and chug problems. You have to derive formulas. But he gave opportunities at the end to do better. Just read his review sheets!!! They are the key to do well in the exams. That's how I got A.", + "pos": 0.149, + "neu": 0.803, + "neg": 0.048, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b6" + } + }, + { + "text": "AVOID! If you are taking him attend lectures/listen to what he is saying cause that's what he will test you on. DON'T study form the textbook/slides & u don't need it. The only way you'll do well is if you are genius & have taken calc/physics/biochem or you have taken notes/have read his review sheets 10x which u will get 3 or so days before exam", + "pos": 0.03, + "neu": 0.923, + "neg": 0.047, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b7" + } + }, + { + "text": "Refers to people who prefer the textbook and/or disagree with the physics he disguises as Gen Chem 2 as his \"haters\". Thinks his theoretical interpretations are more important than the textbook that the university has selected for the course. You will not acquire the solid foundation in Chem that you will need by taking this course. Avoid.", + "pos": 0.032, + "neu": 0.79, + "neg": 0.177, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b8" + } + }, + { + "text": "Prof invests in his students' comprehending the overarching mechanisms. His enthusiasm has stimulated my interest in the subject. Lectures have helped me change my approach to problem solving. Plug&chug won't get you far in class, but it won't in life either. He emphasizes thinking critically about the course material and why it matters", + "pos": 0.144, + "neu": 0.823, + "neg": 0.032, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3b9" + } + }, + { + "text": "He's smart but he talks about many topics that are way out of the scope of this class in a futile attempt to give us a good understanding of chemistry. Has such a huge ego that he would rather spend a class session proving the textbook wrong rather than help us review for our exams. Avoid him", + "pos": 0.167, + "neu": 0.685, + "neg": 0.148, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3ba" + } + }, + { + "text": "This should be a course for Seniors. This is a high-level physics course disguised as an entry-level chemistry course. He takes his sweet time going through lectures. We are weeks and topics behind compared to other Chem 104 classes. He takes his egotistical lectures to the heart, I would not suggest this course for new students.", + "pos": 0.114, + "neu": 0.823, + "neg": 0.063, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3bb" + } + }, + { + "text": "Avoid if you need to learn general chem. Replaces regular chem concepts from textbook with classical Physics. You will be lost if you have not taken high levels of Calculus, Biochem, and Physics. Some concepts are used from his PhD thesis on Biochem and Biophys. Textbook required for hw, but not much referred to. Very difficult to follow.", + "pos": 0.0, + "neu": 0.888, + "neg": 0.112, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3bc" + } + }, + { + "text": "Hes math based so BE PREPARED FOR QUESTIONS UNLIKE USUAL. I don't appreciate that mainly because it hurts the GPA to get anything less than an A, especially for someone who's applying to med school. But he wants you to ABSORD THE FUNDAMENTALS. Admirable but annoying at times.", + "pos": 0.12, + "neu": 0.753, + "neg": 0.127, + "_id": { + "$oid": "6711d6a2cd60fca157e5f3bd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a3cd60fca157e5f3bf" + }, + "professor_name": "Bruce Burnside", + "rating": 4.8, + "department": "Anthropology department", + "comments": [ + { + "text": "(took ANTH 31982 with him) He is one of the best professors. The class readings were interesting and he encouraged participation and it was easy to participate as the discussions were engaging. There were only a few assignments: two in-class assignments and fieldwork for the final exam. The assignments were easy and fun to complete.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c0" + } + }, + { + "text": "Really good professor and has amazing lectures that are fun. Would definitely take him again.", + "pos": 0.542, + "neu": 0.458, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c1" + } + }, + { + "text": "Easy A. Just read the book (only a chapter or two a week) and be able to discuss it in class. He only gave a few assignments throughout the semester, all of which were extremely easy.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c2" + } + }, + { + "text": "This is the second class I have taken with Professor Burnside. He is a knowledgable professor with a true expertise in the subject matter. I also have a disability that he has sensitively accommodated. Grading criteria is straightforward and class assignments are some of the most interesting that I have encountered as a college student.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c3" + } + }, + { + "text": "Professor Burnside has clear grading criteria. His assignments are manageable, and even enjoyable. He wants his students to succeed, and proactively restructured a discussion to accommodate my disability. His enthusiasm for the subject matter makes attending his lectures a true pleasure. I highly recommend taking a class with Professor Burnside.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c4" + } + }, + { + "text": "Dr.Burnside is a very chill person. 4 main assignments, 3 little attendance HW like assignments, due to some online classes. Make sure you take notes. Interesting discussions when we don't focus on the book. Interesting life stories. Would take this class again.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c5" + } + }, + { + "text": "Professor Burnside is one of the best professors I have had so far! There are only 4 assignments that you are graded on, which are all tied back to one book you read for the entire semester. If you do the required reading and pay attention in class, the assignments will only take about 10 minutes to complete. Participation matters too!", + "pos": 0.09, + "neu": 0.888, + "neg": 0.021, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c6" + } + }, + { + "text": "Easy class to pass. Homework is given about every 3-4 weeks I believe. It's just 3-4 hws he's given all semester. 1-2 pages for each assignment, like a book report, choose a quote and write how it's meaningful to you and one of the things you have to include is how it connects to class. So always take notes and show up. Very caring.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c7" + } + }, + { + "text": "Professor Burnside is a professor who is very laidback. He is one of the most understanding professors I've had. The class itself is super interesting and in class, there are more open discussions. As long as you do the work on time you'll be okay.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c8" + } + }, + { + "text": "Really chill and super light grader.", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3c9" + } + }, + { + "text": "Informative lectures and easy assignments", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3ca" + } + }, + { + "text": "Mr. Burnside is a good professor. The lectures are good and engaging. There are only four assignments that are not hard and fun.", + "pos": 0.314, + "neu": 0.596, + "neg": 0.089, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3cb" + } + }, + { + "text": "His class is very easy going and he is very clam as a professor. participation does matter and he will cold call on you but the work load isn't heavy at all (only 4 reading responses that are 2-4 pages long ). If you read the pages from the books required and do the work you'll easily pass with a good grade.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3cc" + } + }, + { + "text": "Professor Bruce is a great guy! Learned a lot from him!", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3cd" + } + }, + { + "text": "His lectures are informative and interesting. He is also a very understanding and kind person. Participation is a must in this class and there are 2 books that we read throughout the semester. Not an obscene amount of work, just a few papers due every few weeks. Overall, I really enjoyed his class and would take him again.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3ce" + } + }, + { + "text": "Loved taking this class. The book we had for this class was pretty interesting and you can find it free online. His assignments are pretty fair, I'd say about two assignments per week. Highly recommend his class!!!", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3cf" + } + }, + { + "text": "Professor Burnside made this semester much less stressful with his kind and easy-going attitude. The class was very interesting and enjoyable making the three hours pass by quickly. The amount of work assigned is pretty fair and manageable, 2 reading reflections per week, and only 2 papers to present. I definitely recommend this class!", + "pos": 0.295, + "neu": 0.661, + "neg": 0.043, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d2" + }, + "professor_name": "Salih Yildiz", + "rating": 4.1, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "He is an excellent professor who effectively explains the fundamentals of CAD and demonstrates how to use finite element software with practical examples. His clear teaching style and enthusiasm make the complex concepts much easier to understand.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d3" + } + }, + { + "text": "Confusing and propagated guidelines, error repetition, not a clear project schedule, and at the end, I did not get what was the main point of taking this course! Perhaps, just waste of time?! But the only thing I could say is that he tries to show his respect. He may change his method to make it something fruitful for the students. Hope he would!!!", + "pos": 0.124, + "neu": 0.784, + "neg": 0.092, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d4" + } + }, + { + "text": "It was one if the best class I took. The course material he prepared and the demos were very helpful. He is very helpful and caring professor.", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d5" + } + }, + { + "text": "Prepare for lengthy projects. I learnt a lot from the projects.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d6" + } + }, + { + "text": "He was very accessible. He covered the lectures with many practical examples. I was planning to take his ME461 in this fall, but apparently he is not teaching in this fall.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d7" + } + }, + { + "text": "IMHO, if you can avoid taking his class and wait for another semester and another instructor, please do; as you will secure your grade, plus you will learn something that you may deserve. No idea why Mr. Salih has decided to teach in the academia, as I believe that he might be in a better working position such as experimental projects. That's all!", + "pos": 0.112, + "neu": 0.825, + "neg": 0.063, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d8" + } + }, + { + "text": "He is a great professor. Lectures were well prepared and the projects were not so hard.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3d9" + } + }, + { + "text": "Overall, the lecture part of the course was theoretically intense but he managed to make it less boring, and kind of entertaining. He is one of the few caring professors I know at CCNY.", + "pos": 0.214, + "neu": 0.725, + "neg": 0.061, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3da" + } + }, + { + "text": "The classes were sometimes very boring and frustrating, as you need to take a few breaks during the class in order to get back to your normal mood. The reason is that the instructor is like talking to himself, and you just need to focus on the slides or monitor. I can say that he is like a no-nonsense person which you can expect a mutual respect.", + "pos": 0.107, + "neu": 0.817, + "neg": 0.076, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3db" + } + }, + { + "text": "Not much to say about this instructor. The lab part was more useful than the classes. Pradip was a good hand to help. Try to search relevant online materials by yourself, so that would save your paid tuition fee and time. His accent was also thick, but you can understand him. Somehow differentiates between the students, but I didn't understand why.", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3dc" + } + }, + { + "text": "He's a middle of the pack prof. Doesn't explain very well but he's a very nice person and was very lenient with due dates, attendance, and quizzes. You'll have to work on learning stuff on your own, but I thought he did a solid job. My recommendation for the lab TA is Pradip. Just do your best on all the projects and homeworks and you'll be good.", + "pos": 0.231, + "neu": 0.75, + "neg": 0.019, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3dd" + } + }, + { + "text": "He is one of the few professors who really care about the students! He represents the course materials clearly! This was a difficult course and project was a bit challenging but if you pay attention in class and make use of his office hours, you will do phenomenal! If you do your best, he does his best!", + "pos": 0.254, + "neu": 0.699, + "neg": 0.047, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3de" + } + }, + { + "text": "It is very practical class. Prof. Salih made the course easy and understandable.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3df" + } + }, + { + "text": "He cares about his students. He is one of the best instructor at CCNY. He knows about the materials very well.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3e0" + } + }, + { + "text": "Professor Yildiz was one of the most caring Professors. He makes sure his students understand all the content and is very accessible. Would definitely take him again!!!", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3e1" + } + }, + { + "text": "I really enjoyed his class", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3e2" + } + }, + { + "text": "One of the best professor at CCNY. He teaches the fundamentals very well. I would definitely take another class with him.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d6a3cd60fca157e5f3e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a4cd60fca157e5f3e5" + }, + "professor_name": "Campbell Dalglish", + "rating": 3, + "department": "Communication department", + "comments": [ + { + "text": "I thought he was kind and provided great tips on creating films, but rambled too much in class. Also not the best with technology so he took a while to load projects to show for class. I think he was helpful but it was only if you asked first. I can see he has a lot of passion for film and isn't a strict grader as long as you did the assignments.", + "pos": 0.166, + "neu": 0.78, + "neg": 0.054, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3e6" + } + }, + { + "text": "He's a great guy, and was very much helpful with screen writing. Even if it seems like he's a bit frustrated that he'd have to explain some material again, he'd do it anyways because he wants to make sure you get it for not just the class but yourself in the future. Funny at times, and a very great story-teller ( not surprised).", + "pos": 0.232, + "neu": 0.713, + "neg": 0.054, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3e7" + } + }, + { + "text": "Just bad.", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3e8" + } + }, + { + "text": "He's the best. I learned a lot.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3e9" + } + }, + { + "text": "not reliable. self-centered.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3ea" + } + }, + { + "text": "Please, don't take his class!!!", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3eb" + } + }, + { + "text": "If you really have an interest in screenwriting, you cannot go wrong with this professor. I found him to be very helpful and I wouldn't hesitate to go to him with any questions about the craft. I don't know who gave this guy a horrible rating but obviously theyre just pissed because they probably couldn't handle the demands of the class and failed.", + "pos": 0.097, + "neu": 0.738, + "neg": 0.165, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3ec" + } + }, + { + "text": "Horrible professor.", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3ed" + } + }, + { + "text": "One of the best I've had. Laid back but cares a whole lot; great one-on-one. Opened a career door for me. You want to learn screenwriting or directing or how to score in an internship, he's your prof. Just don't get fooled that because he's laid back you don't have to work to learn. Be prepared to write, and write hard.", + "pos": 0.253, + "neu": 0.726, + "neg": 0.021, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3ee" + } + }, + { + "text": "GREAT Professor if you go to Class DO the one Assignment a week. do not be late to class either he will lock you out. You will do Great! if u do all his work on TIME He helped me out greatly got a B+ :) www.antdogs.com :)", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3ef" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f1" + } + }, + { + "text": "Good prof overall. Not great, but good", + "pos": 0.174, + "neu": 0.357, + "neg": 0.469, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f2" + } + }, + { + "text": "Great professor. Altough he's very laid back he never lets the slackers take advantage. With only one assignment per week (in the 200 level class) it isn't hard to pass the class. Instead of lecturing, he assigns rather easy exercises that will teach you all you need to know. Go for it, he's great!", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f3" + } + }, + { + "text": "He is really nice but the class is a little hard, although he is very fair grading.", + "pos": 0.264, + "neu": 0.68, + "neg": 0.056, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f4" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f5" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f8" + }, + "professor_name": "Joseph Soryal", + "rating": 4.8, + "department": "Computer Science department", + "comments": [ + { + "text": "Exams are heavy but you need to have good memory. He is great with grading for projects but still requires a lot of research and understanding.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3f9" + } + }, + { + "text": "Amazing professor, loves talking about the communications industry and is open to us asking questions and breaking everything down to simplest forms. One midterm and final that he tells us what to study for and 2 presentations that hes isn't too harsh on grading and helps whenever he can.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3fa" + } + }, + { + "text": "Two project's, two homework's, one midterm, and one final. Very easy. Be sure to pick a good group for the last project because you have to present it and write a lab report on it. He is very nice and likes students who participate. Course is not heavy at all, and if you have questions be sure to ask. I wish more professors were like him.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3fb" + } + }, + { + "text": "He is a very knowledgeable person and his teaching differs from what you might have seen. Exams are 2-question and half the time. Hit or miss since questions come from what he said during the lectures. You don' pay attention, you won't answer. The only downfall are projects in the OPNET, since he doesn't provide background. Self study. Challenging", + "pos": 0.026, + "neu": 0.924, + "neg": 0.05, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3fc" + } + }, + { + "text": "Great professor, it was definitely the most worth it class of MIS so far. He teaches from his experience and put his maximum effort in covering the most material. If you show that you are working hard he will give you a good grade because it is all about learning, world could use more professors like him especially CUNY.", + "pos": 0.212, + "neu": 0.767, + "neg": 0.02, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3fd" + } + }, + { + "text": "I think he is ok...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3fe" + } + }, + { + "text": "Awesome professor, not only does he teach you the subject, he also helps prepare for real world presentation and on the job interactions with managers and upper level executives. Tough class but teaches it very well and really wants to know youre digesting the topics instead of using tests as a metric. 10/10 would take again.", + "pos": 0.123, + "neu": 0.857, + "neg": 0.021, + "_id": { + "$oid": "6711d6a4cd60fca157e5f3ff" + } + }, + { + "text": "Great professor. Make the subject interesting and I've learn so many things during the semester. Attendance isn't mandatory, but it is hard to miss his class because of great lecture. Print and bring ppt slides to class for better understanding and tips for exam. Exam are straight forward, but you do need to study.", + "pos": 0.243, + "neu": 0.688, + "neg": 0.069, + "_id": { + "$oid": "6711d6a4cd60fca157e5f400" + } + }, + { + "text": "Awesome experience! Just follow the lecture and be clear on concept. Write at least something on exam paper so that he can help you. Explain your thoughts in exam and get A+. All questions will be from slides.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f401" + } + }, + { + "text": "The Class is straight forward and the professor expect you to study the material. He is available before class and via email if you have any questions. Just don't expect an EASY A. if you show work then it's quite easy.", + "pos": 0.111, + "neu": 0.825, + "neg": 0.064, + "_id": { + "$oid": "6711d6a4cd60fca157e5f402" + } + }, + { + "text": "Very great professor! He is very patient and supportive, and make this class understandable.I experienced growth in networking and security from his class.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f403" + } + }, + { + "text": "Excellent professor, He class was challenging but at the same time fun. He has a lot of practical experience. I think this is the only useful class in the MIS program in the computer science squence.Everything else is a waste of time and money.", + "pos": 0.219, + "neu": 0.714, + "neg": 0.068, + "_id": { + "$oid": "6711d6a4cd60fca157e5f404" + } + }, + { + "text": "They key to passing his class is reading his slides and understanding before coming to class. No textbook is required. Make sure you start or have an idea of your project early and start early on it. The class was very exciting and I learned alot from the professor as well as my fellow classmates.", + "pos": 0.129, + "neu": 0.835, + "neg": 0.036, + "_id": { + "$oid": "6711d6a4cd60fca157e5f405" + } + }, + { + "text": "Great instructor;he knows his stuff and make sure the student understand before he moves on.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f406" + } + }, + { + "text": "Very good professor who knows his stuff. Very well prepared and present the material clearly which peaked my interest in network and security. Very open to student's idea and very helpful when you don't understand. Tells you exactly what is expected to pass the class and sticks by it. Exams are fair.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f407" + } + }, + { + "text": "Excelent professor, teaching useful and to the point with real world practical examples, very recommendable, even when assistan is not mandatory, you don't want to miss a class.", + "pos": 0.141, + "neu": 0.78, + "neg": 0.079, + "_id": { + "$oid": "6711d6a4cd60fca157e5f408" + } + }, + { + "text": "I had a wonderful experience and l think part of the reason was that the professor had practical field experience alongside teaching experiece. The course materials he gave was detailed and explanatory, his way of teaching is unique. He is the most helpful professor l've had so far.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d6a4cd60fca157e5f409" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a5cd60fca157e5f40b" + }, + "professor_name": "Ross Nehm", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "One of the best at City (in a spotty bio dept). Too bad he left :/", + "pos": 0.182, + "neu": 0.563, + "neg": 0.255, + "_id": { + "$oid": "6711d6a5cd60fca157e5f40c" + } + }, + { + "text": "Probably the best structured lectures I've ever been to. They tie together really well, and they really leave you with a sense that you're learning something useful. His handouts the course bible (he doesn't really use the textbook). Interesting, well-taught class.", + "pos": 0.245, + "neu": 0.725, + "neg": 0.03, + "_id": { + "$oid": "6711d6a5cd60fca157e5f40d" + } + }, + { + "text": "Great teacher", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f40e" + } + }, + { + "text": "Dr. Nehm is clear and concise. His classes are well-structured, with clear aims. Dr. Nehm is thorough, he stimulates students and offers mile challenges that aren't overwhelming. He provides valuable tools. This was a graduate ed course. Highly recommended.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f40f" + } + }, + { + "text": "Best Bio professor I have ever had! Makes passing his class more than feasible if you study his handouts and do the review questions. His tests are straight forward and come from the hand outs / review questions. He is very responsive to questions. I recommend this class for Pre-meds if you need an A.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f410" + } + }, + { + "text": "Very good professor. He is truly interested in what he's teaching and really focuses on the most important concepts. The exams are easy if you study the notes he gives and review the questions.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f411" + } + }, + { + "text": "He is horrible. Professor Lee is better.", + "pos": 0.254, + "neu": 0.439, + "neg": 0.307, + "_id": { + "$oid": "6711d6a5cd60fca157e5f412" + } + }, + { + "text": "He explains everything however his exams are difficult. But not to worry, he has study sessions so if you attend and study you'll do just find.", + "pos": 0.108, + "neu": 0.832, + "neg": 0.061, + "_id": { + "$oid": "6711d6a5cd60fca157e5f413" + } + }, + { + "text": "He has humor and makes learning biology a true discovery process.", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f414" + } + }, + { + "text": "This is a really good teacher. He hands out the things he is going to be discussing and he explains what he is talking about. It gives you an interest and gives you a hope of actually passing the class.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f415" + } + }, + { + "text": "This is the best professor to take for and Sci103 or 104 class. His lectures are very clear and he makes it very interesting.", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f416" + } + }, + { + "text": "he was really fun. All i did was pay attention in class, I never studied and ended up with a A-. That was by far the easiest grade i have ever gotten. Lab was the worst part of the class.", + "pos": 0.133, + "neu": 0.752, + "neg": 0.115, + "_id": { + "$oid": "6711d6a5cd60fca157e5f417" + } + }, + { + "text": "awesome guy. smart and very informative. take any of his science/biology classes. his humor and awesome teaching methods keep you on your feet. i didnt care for science before his class. after, i felt much more interested and i feel like i already have learned much.", + "pos": 0.308, + "neu": 0.649, + "neg": 0.044, + "_id": { + "$oid": "6711d6a5cd60fca157e5f418" + } + }, + { + "text": "Funny smark and cute. SCI 104 is by law a terribly boring class but Nehm makes it fun. The lab is terribly boring. But it's all easy. Don't have to buy the book for his class he posted all the notes in blackboard and review questions. He turned a rather dreary class fun. Pluse he's kind of cute", + "pos": 0.251, + "neu": 0.581, + "neg": 0.168, + "_id": { + "$oid": "6711d6a5cd60fca157e5f419" + } + }, + { + "text": "great professor, very funny and happy. his lectures are very well presented and is always ready to start working. get ready to work hard in his class in order to get a good grade. science is not a joke, its difficult but with his charm and jokes you will have a good time.", + "pos": 0.353, + "neu": 0.583, + "neg": 0.064, + "_id": { + "$oid": "6711d6a5cd60fca157e5f41a" + } + }, + { + "text": "Very Good Professor! He uses PowerPoint to present his lectures. He gives you the questions for the Midterm/Final. Just study, pay attention and be on time and you will be fine. Has a very good sense of humor.", + "pos": 0.235, + "neu": 0.734, + "neg": 0.031, + "_id": { + "$oid": "6711d6a5cd60fca157e5f41b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a5cd60fca157e5f41d" + }, + "professor_name": "Chirsta Schneider", + "rating": 3.7, + "department": "English department", + "comments": [ + { + "text": "I would be lying if I didn't say that I view the world at a complete 180 degree angle of separation from Prof. Schneider, and perhaps rightfully so: different race, religion, and gender tends to result in that. But it makes for fun class discussions; I appreciate the same written works, for totally different reasons.", + "pos": 0.129, + "neu": 0.836, + "neg": 0.035, + "_id": { + "$oid": "6711d6a5cd60fca157e5f41e" + } + }, + { + "text": "C.Schneider is avant garde. Do not expect to be 'textbook' taught-This is a higher education, do your reading prior to class, and you will definitely have fun in her class, she is awesome!", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f41f" + } + }, + { + "text": "The class is probbly fair, but like ppl below, she seems unprepared for class at times, little to offer, like cliches on feminist. Books were dull, she loves Vilette, but its not Jane Eyre. She gets pass bcuz she has newborn baby.", + "pos": 0.24, + "neu": 0.693, + "neg": 0.067, + "_id": { + "$oid": "6711d6a5cd60fca157e5f420" + } + }, + { + "text": "Professor Schneider is a writer herself. She can relate and has much to offer on almost any topic when it comes to improving one's writing.She encourages you to become better and knows her stuff when it comes to writing.It's a participation class and if it's boring it's probably because students don't participate enough.", + "pos": 0.144, + "neu": 0.818, + "neg": 0.038, + "_id": { + "$oid": "6711d6a5cd60fca157e5f421" + } + }, + { + "text": "I took 20th C Womens Writers with Christa and while she's a very nice women, she had zero preparation for her class. The texts she chose were tedious and boring; ergo the clas was tedious and boring. But a fairly easy grader. I don't dislike her, but probably would not take a class with her again.", + "pos": 0.138, + "neu": 0.81, + "neg": 0.052, + "_id": { + "$oid": "6711d6a5cd60fca157e5f422" + } + }, + { + "text": "shes very sweet and helpful but her class discussions are very very boring. easy grader, just make sure you read the assigned readings", + "pos": 0.351, + "neu": 0.536, + "neg": 0.113, + "_id": { + "$oid": "6711d6a5cd60fca157e5f423" + } + }, + { + "text": "I took this class fall semester of 2008 and I loved it! I might even take another class in Prose. She is awesome, sweet and funny! I recommend to any English major she is EASY!!!!", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f424" + } + }, + { + "text": "She should not teach advanced grammar, needs to stick to creative writing classes or just get out of the teaching business. She is not difficult but boring and has no idea how to relate to students. DON'T DO IT...stay away", + "pos": 0.132, + "neu": 0.776, + "neg": 0.092, + "_id": { + "$oid": "6711d6a5cd60fca157e5f425" + } + }, + { + "text": "She should lose her job...our tuition is getting too high to pay for young losers who teach as a side gig while really interested in other things. She is super boring and when trying to spice things up is stereotypical and has no clue about racial sensitivity. RUN FOR YOUR LIFE", + "pos": 0.11, + "neu": 0.7, + "neg": 0.191, + "_id": { + "$oid": "6711d6a5cd60fca157e5f426" + } + }, + { + "text": "She's ok, but she's sooo boring. I would fall asleep with my @s open in her class :0zzz. Did I mention how boring she is? Seriously! ok...if you want to pass just do all the gazillion pgs of rding she requires. She's absolutely a tough grdr but it is an eng sr lvl class...I wouldn't expect any less...sorry prof but you need to spice class up a bit.", + "pos": 0.019, + "neu": 0.842, + "neg": 0.139, + "_id": { + "$oid": "6711d6a5cd60fca157e5f427" + } + }, + { + "text": "She's a really nice person but her teaching in class is very boring. She's somewhat vague when assigning work which often leads to uncertainty about what she wants.", + "pos": 0.061, + "neu": 0.712, + "neg": 0.227, + "_id": { + "$oid": "6711d6a5cd60fca157e5f428" + } + }, + { + "text": "I was extremely motivated in her class. She is very supportive and encouraging of her stuidents as long as she feels they are serious about their work. I would take another class with her anytime.", + "pos": 0.226, + "neu": 0.743, + "neg": 0.031, + "_id": { + "$oid": "6711d6a5cd60fca157e5f429" + } + }, + { + "text": "She is friendly,sweet, and easy. she loves class discussion, but sometimes really boring. 3 regular papers and a long final one. no midterm, no final, just reading. if you want a easy prof, take her.", + "pos": 0.259, + "neu": 0.607, + "neg": 0.134, + "_id": { + "$oid": "6711d6a5cd60fca157e5f42a" + } + }, + { + "text": "She is a very friendly and understanding person. shes always there when u need her. wants all her students to pass....however dont get fooled of her easiness towards the beginning cuz she becomes less lenient towards the end.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f42b" + } + }, + { + "text": "She's really nice, kind of anul about formatt, but easy to pass, and kind of a push over.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d6a5cd60fca157e5f42c" + } + }, + { + "text": "She's brilliant! She's very sweet, and extremely open to anything you have to say. She'll leave the conch on you a little too long (just stares at you even if you're done talking.) She loves class discussions. Always participate and read the chs. She'll remember you for that. 4-5essays excluding drafts, no test, no midterm, no final.", + "pos": 0.218, + "neu": 0.732, + "neg": 0.05, + "_id": { + "$oid": "6711d6a5cd60fca157e5f42d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a6cd60fca157e5f42f" + }, + "professor_name": "Hongjoon Kim", + "rating": 4.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Prof. Kim is awesome! He makes class very simple, provides you with notes, and is a overall great professor. I didnt have to open the textbook once during his class. Makes everything easy to understand so you dont get too stressed. Take him for sure.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f430" + } + }, + { + "text": "Prof. Kim is a really nice professor who knows his material very well and can make a hard class become fun and enjoyable. If you want to learn the essentials of electronics and enjoy your life at the same time, take kim. Also kim is very clear with his explanations and methods which will be the same to use on exams, so pay attention in class", + "pos": 0.24, + "neu": 0.718, + "neg": 0.041, + "_id": { + "$oid": "6711d6a6cd60fca157e5f431" + } + }, + { + "text": "If u dont speak too much english u will not understand much what he says, but definitely he's the man for this class. Try him to know ur name. He knows who copy the hw's. Btw, try to solve and practice hw's and book's excercs for the exams, u'll be fine. The class is not easy, but he makes it a kind of easy. He likes to talk about politics & soccer", + "pos": 0.179, + "neu": 0.784, + "neg": 0.037, + "_id": { + "$oid": "6711d6a6cd60fca157e5f432" + } + }, + { + "text": "Look..the subject itself is difficult, you must attend all the lecture classes so that you can get good notes; do all the homework assignments, and keep studying the subject by not falling behind. If you can do these you will definitely get a good grade. He is a fair professor, that is the best way to describe the class. From time to time he jokes.", + "pos": 0.237, + "neu": 0.731, + "neg": 0.032, + "_id": { + "$oid": "6711d6a6cd60fca157e5f433" + } + }, + { + "text": "Kim is the top professor in city college. he mixes humor with education and enables students like myself to feel comfortable and confident in his class. he is down to earth and is deserving of tenure in the school.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f434" + } + }, + { + "text": "whats wrong with this guy, he's should've been a stand up comedian and we all would be watching his shows. But he became a Prof and a pretty good one. He knows what the students would find hard on exam and does extra review on it. Exam are from notes and homework, but make sure you understand the material. Everyday is like an adventure in his class", + "pos": 0.234, + "neu": 0.722, + "neg": 0.045, + "_id": { + "$oid": "6711d6a6cd60fca157e5f435" + } + }, + { + "text": "Knows his stuff and understands importance of course organization,very clear expectations,& teaching at a measured pace. We knew exactly what to study for test(hw)but it was still tough (perfect combo for learning). Also,funny guy, likes to take breaks to chat. My favorite line from any course: \"Lets have a 5-minute discussion about...anything.\"", + "pos": 0.235, + "neu": 0.741, + "neg": 0.024, + "_id": { + "$oid": "6711d6a6cd60fca157e5f436" + } + }, + { + "text": "Professor Kim is the best.. If you do all your work and try your best you will be very happy with your grade. He pushes you to study, and just try hard on the exams, and you won't be sorry.", + "pos": 0.272, + "neu": 0.7, + "neg": 0.028, + "_id": { + "$oid": "6711d6a6cd60fca157e5f437" + } + }, + { + "text": "To be honest with you he is the best electronics professor. He try's his best to help you out, but you must attend all classes, and follow the lectures carefully. An excellent grader by the way, but don't ever cheat in his class, hes so serious about that. He provides some jokes in class to refresh the class, its really needed. He's a good man.", + "pos": 0.309, + "neu": 0.665, + "neg": 0.026, + "_id": { + "$oid": "6711d6a6cd60fca157e5f438" + } + }, + { + "text": "Professor Kim is truly one of the best professors this school has to offer. Come to class everyday, do not be lazy. Pay attention to the classnotes, and do your homeworks accordingly. The exams reflect homeworks, and classnotes. If you can do these you wil succeed. One more thing. Do not cheat, you will fail. He is nice, but dislikes cheaters.", + "pos": 0.176, + "neu": 0.693, + "neg": 0.131, + "_id": { + "$oid": "6711d6a6cd60fca157e5f439" + } + }, + { + "text": "Excellent professor. His method of note-taking is great, since you don't have to write everything, but enough to help you actually remember the material. Exams aren't that tricky, but you should study old HWs. He also likes to discuss current events and such, providing a much needed break in class.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f43a" + } + }, + { + "text": "If you want to get your BEEEEE degree take kim other wise find someone who can make you drop the class like ?pinki ?but it is hard to register for his class ,if you get in you are the luckiest person on this planet", + "pos": 0.206, + "neu": 0.733, + "neg": 0.061, + "_id": { + "$oid": "6711d6a6cd60fca157e5f43b" + } + }, + { + "text": "seriously, do the hw because evreything is from the hw. no joke.", + "pos": 0.0, + "neu": 0.736, + "neg": 0.264, + "_id": { + "$oid": "6711d6a6cd60fca157e5f43c" + } + }, + { + "text": "Amazing class and one of the best professor you can find in the City College of New York.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f43d" + } + }, + { + "text": "The guy is the best, homework make you learn the material and his exams are based on his notes and the hw. He is very funny and helps when u go to his office hours. He curves and can be generous if u have good reason to miss his midterm or final.", + "pos": 0.257, + "neu": 0.718, + "neg": 0.025, + "_id": { + "$oid": "6711d6a6cd60fca157e5f43e" + } + }, + { + "text": "this guy is the coolest, hw can be hard. but won't kill u. he is very funny in class. the midterm wasn't bad, but he gave too many questions that almost everyone couldn't get to finish it. class average was a D in midterm. but with a curve, its equivalent to a B!!!! he curved us BIG TIME. this guy willing to help u in office hours. funny guy.", + "pos": 0.253, + "neu": 0.733, + "neg": 0.014, + "_id": { + "$oid": "6711d6a6cd60fca157e5f43f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a6cd60fca157e5f441" + }, + "professor_name": "Tanni Baidya", + "rating": 4.6, + "department": "Psychology department", + "comments": [ + { + "text": "She covered my class a couple of times when my prof didnt show up. All I have to say is why wasnt she my prof in the 1st place??? The material made so much more sense when she taught it. Cute as a button with her Psych jokes lol.. like she would say CLASSICAL CONDITIONING? THAT RINGS A BELL. HAhaha take her!!! she is beyond amazing..", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f442" + } + }, + { + "text": "I took her a while back. I passed the class. She is really nice but don't be fooled. You really have to work hard to pass. She relates concepts to real life and doesn't blurt out definitions and expect you to just memorize them, which makes learning more fun for me. I still remember a lot of things she taught. she's great and always helpful!!!. :D", + "pos": 0.296, + "neu": 0.685, + "neg": 0.019, + "_id": { + "$oid": "6711d6a6cd60fca157e5f443" + } + }, + { + "text": "Worked really hard for my grade, which I wouldn't get if it wasn't for her. She really is the best.", + "pos": 0.185, + "neu": 0.745, + "neg": 0.07, + "_id": { + "$oid": "6711d6a6cd60fca157e5f444" + } + }, + { + "text": "She's nice but strict too! She's a no nonsense professor. You must do all the work to pass, no exceptions. Gotta agree with the first comment, she's awesome and cute.. Loved her!!!! :))))", + "pos": 0.457, + "neu": 0.491, + "neg": 0.053, + "_id": { + "$oid": "6711d6a6cd60fca157e5f445" + } + }, + { + "text": "Very nice!!", + "pos": 0.786, + "neu": 0.214, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f446" + } + }, + { + "text": "Awesome sauce prof !", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f447" + } + }, + { + "text": "Let me tell you that this class is not easy for a 100 level class. There's a lot of work you have to do. But she's so understanding and will go out of her way to help you pass the course..", + "pos": 0.08, + "neu": 0.881, + "neg": 0.038, + "_id": { + "$oid": "6711d6a6cd60fca157e5f448" + } + }, + { + "text": "She is really HOT!!!!! Amazing all around and really pleasant to look at which made everything even more interesting... Really happy she was my professor", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f449" + } + }, + { + "text": "It was a pleasure having her as my instructor. Very helpful with course material and clear on the class' expectations. She is the kindest person I have ever met- take her if you ever have the chance!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f44a" + } + }, + { + "text": "She is was a great instructor. VERY PATIENT, FRIENDLY, AND KIND. She wants to see students succeed. Also she is very attractive, and easy on the eyes as well. She makes these cute corny jokes, which made learning the material fun and entertaining. Overall, very clear and helpful, learned a lot.", + "pos": 0.525, + "neu": 0.475, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f44b" + } + }, + { + "text": "I have hard time with English. She help me with my writing skill for essays. She help to review my essays and help improve my English. I study hard because English hard for me. Most professors don't care.. She cares. She help me a lot. I thank her so much..", + "pos": 0.25, + "neu": 0.602, + "neg": 0.148, + "_id": { + "$oid": "6711d6a6cd60fca157e5f44c" + } + }, + { + "text": "Just listen to her lectures. I just relied on her lectures that I only used the textbook for essays. She likes you to critically think and apply concepts learned to real life. She interacts with students when she teaches and doesn't just read definitions from Powerpoint slides, which I really liked. I learned a lot in her class. She's great!!", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f44d" + } + }, + { + "text": "She is the best!!!!! Totally recommend her. She is available when you need her, in person and by email. She really cares about her students and I loved her lectures. If I didn't have her I probably wouldn't have gotten an A in the class. She does an excellent job in making you learn the material.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f44e" + } + }, + { + "text": "She is funny and enjoyable. I get bored easily in classes, but her class was the only one I looked forward to. She made the lectures really interesting. You can tell she really loves teaching. She is understanding and genuine with students and will do anything to help you ace the class.", + "pos": 0.286, + "neu": 0.69, + "neg": 0.024, + "_id": { + "$oid": "6711d6a6cd60fca157e5f44f" + } + }, + { + "text": "Follow everything she says and what is expected of you in the syllabus and you will be fine. She is super nice and really sweet! She prepares you well for exams and really knows her material. She showed us cool videos and pictures as examples that made me really understand the concepts well. Take her if you can. You won't regret it!!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f450" + } + }, + { + "text": "She is incredible! Kept the class engaged with her great lectures. She is always willing to help you understand the material, and always prepared to answer any question you ask her. Gives you feedback and responds to emails quickly. I learned more from her class than I did during lecture. Just do the work and you'll pass! Plus she's really cute!!!", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f451" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a6cd60fca157e5f453" + }, + "professor_name": "Majumder Towfiq", + "rating": 3.8, + "department": "Chemistry department", + "comments": [ + { + "text": "Great instructor.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f454" + } + }, + { + "text": "HE IS NOT A PROFESSOR!! who's the idiot that posted this in the first place?!", + "pos": 0.0, + "neu": 0.77, + "neg": 0.23, + "_id": { + "$oid": "6711d6a6cd60fca157e5f455" + } + }, + { + "text": "He's very helpful. Always tells what is going to be on the exams and quizzes and concentrates a lot on the topics that are most likely to appear and those that are the hardest. He's a fair grader but not if you don't attend the class. The only flaw is his hand writing.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f456" + } + }, + { + "text": "He really help with the workshops, If you do attend his workshops you don't need to study the whole book again. And he has that facikity and shortcuts to make difficult things easier. may God bless him and guide him.", + "pos": 0.222, + "neu": 0.726, + "neg": 0.052, + "_id": { + "$oid": "6711d6a6cd60fca157e5f457" + } + }, + { + "text": "This guy doesnt know his stuff seems as if he is just paraphrasing info off the book not helpful at all this guy needs to really learn how to teach.", + "pos": 0.0, + "neu": 0.926, + "neg": 0.074, + "_id": { + "$oid": "6711d6a6cd60fca157e5f458" + } + }, + { + "text": "i have to agree, he really does have to do some studying of his own... also, he confirms incorrect information which does nothing but confuses us all!", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f459" + } + }, + { + "text": "thanks for all the help...i relly appreciate it..", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f45a" + } + }, + { + "text": "Thought that workshop would be useless initially, but proved otherwise. Definitely helped get a grasp of the initial chapters; the most important part of the class.", + "pos": 0.199, + "neu": 0.74, + "neg": 0.061, + "_id": { + "$oid": "6711d6a6cd60fca157e5f45b" + } + }, + { + "text": "He is always prepared. Everyday quizzes but in reality he doesn't care. He just wants you to show up and put a little effort. One of the best leaders. Very strict, but funny at times. Smart person who knows how to address what he really wants to say. One of the best!!!", + "pos": 0.305, + "neu": 0.646, + "neg": 0.048, + "_id": { + "$oid": "6711d6a6cd60fca157e5f45c" + } + }, + { + "text": "nice guy but needs to do some studying of his own.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f45d" + } + }, + { + "text": "Towfiq is the only reason why i learned chemistry! if it wasn't for him i probably would have failed miserably. thanx hun!1 your my favvvv teacher", + "pos": 0.0, + "neu": 0.775, + "neg": 0.225, + "_id": { + "$oid": "6711d6a6cd60fca157e5f45e" + } + }, + { + "text": "Great personality. Does more than just workshop; he actually teaches and makes chemistry easy. Hope he becomes a professor.", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f45f" + } + }, + { + "text": "I appreciate your effort and hopefully one day you will teach more than workshop.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f460" + } + }, + { + "text": "He does more than he suppose to. But I think if u get on his bad side he will turn into satan. He made chem pretty easy.", + "pos": 0.221, + "neu": 0.65, + "neg": 0.129, + "_id": { + "$oid": "6711d6a6cd60fca157e5f461" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a6cd60fca157e5f462" + } + }, + { + "text": "This guy is awesome and if your really nice to him he favors and helps you alot.", + "pos": 0.476, + "neu": 0.524, + "neg": 0.0, + "_id": { + "$oid": "6711d6a6cd60fca157e5f463" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a7cd60fca157e5f465" + }, + "professor_name": "Vittorio Rotella", + "rating": 3.9, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Best Professor ever! I majored in Italian language and literature thanks to him. He also inspired me to see the word and explore Europe. I was lucky to have had him as my professor for most of my Italian classes at CCNY. He was always available after class, inspirational, and gives good feedback.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f466" + } + }, + { + "text": "It's time to retire. Had him for Italian literature and he was terrible. Had us read aloud in class as if we were first graders. Forget any textual analysis. His discussions consist of you summarizing the book and then him simplifying the themes into one word. If you are a Lit major, STAY AWAY!", + "pos": 0.0, + "neu": 0.908, + "neg": 0.092, + "_id": { + "$oid": "6711d6a7cd60fca157e5f467" + } + }, + { + "text": "Not clear at all, grumpy,impatient,boring, and very unfair grader.", + "pos": 0.0, + "neu": 0.557, + "neg": 0.443, + "_id": { + "$oid": "6711d6a7cd60fca157e5f468" + } + }, + { + "text": "NON DIRE STUPID AGGINI! this is one of the best professors in all of CUNY. I took him in the summer and there were only 6 of us in the class so he personally knew everyone. I noticed he was gonna pick on me alot so i started giving back stupid answers which made everyone laugh including him. his exams r not bad, he makes jokes, i def recomend him", + "pos": 0.176, + "neu": 0.698, + "neg": 0.127, + "_id": { + "$oid": "6711d6a7cd60fca157e5f469" + } + }, + { + "text": "profesor rotella is the best italian teacher in city college... he will make you understand thinsgs he has no problem sitting down with you for 2 hours until you understand he is the best in all the different fields in thek italian department.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f46a" + } + }, + { + "text": "He is the best Italian teacher at City College. Don't let his black humor and his attitude foolish you. He is very helpful, the way he speaks may make you think that he is a person with a nasty attitude but the thruth is that he is very HELPFUL, he is great. I recommend him 100%. Do not think it twice if you need his help.", + "pos": 0.282, + "neu": 0.673, + "neg": 0.045, + "_id": { + "$oid": "6711d6a7cd60fca157e5f46b" + } + }, + { + "text": "He's a funny grumpy old man. He's very cool and he'll keep you engaged.", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f46c" + } + }, + { + "text": "Everyone love Rotella, but I didn't. He made learning Italian difficult for me by constantly picking on me. I tired very hard in his class, but dreaded going there because of his attitude (sarcasm) towards me. If you don't reply fast to a questions then there will be sarcasm. Be ready to be put on the spot. Oh, I dropped the class within a few weeks.", + "pos": 0.071, + "neu": 0.701, + "neg": 0.228, + "_id": { + "$oid": "6711d6a7cd60fca157e5f46d" + } + }, + { + "text": "Can be very sarcastic and funny despite the gruff exterior, which took me a while to figure out, then I loved the guy. Very clear explanation of ideas and he will not let you fail: will tutor you and do whatever it takes to help you learn.", + "pos": 0.264, + "neu": 0.697, + "neg": 0.039, + "_id": { + "$oid": "6711d6a7cd60fca157e5f46e" + } + }, + { + "text": "he's a good professor, but be prepared for his sarcasm.", + "pos": 0.315, + "neu": 0.513, + "neg": 0.172, + "_id": { + "$oid": "6711d6a7cd60fca157e5f46f" + } + }, + { + "text": "Not a bad professor, Good grader though.\r The test was somewhat easy but there's no notes to take during lecture b/c he doesn't write any and the students do most of the talking.", + "pos": 0.152, + "neu": 0.774, + "neg": 0.075, + "_id": { + "$oid": "6711d6a7cd60fca157e5f470" + } + }, + { + "text": "Obnoxious. If you want to learn the language, take another professor...any professor. They'll be 10x better than him. What a dickhead.", + "pos": 0.148, + "neu": 0.601, + "neg": 0.251, + "_id": { + "$oid": "6711d6a7cd60fca157e5f471" + } + }, + { + "text": "an easy A", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f472" + } + }, + { + "text": "This guy is so funny. Full of funny stories. What's bad about them is that he tells most of it in Italian, so I have no idea what he said half the time. Highly reccomended. Had lots of fun.", + "pos": 0.199, + "neu": 0.681, + "neg": 0.12, + "_id": { + "$oid": "6711d6a7cd60fca157e5f473" + } + }, + { + "text": "Traditional yet modern. acts tough but hes not. very interested on your well being. Take him. hes one of the best among Cuny", + "pos": 0.265, + "neu": 0.595, + "neg": 0.14, + "_id": { + "$oid": "6711d6a7cd60fca157e5f474" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a7cd60fca157e5f475" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a7cd60fca157e5f477" + }, + "professor_name": "Kamrul Hasan", + "rating": 3.9, + "department": "Mathematics department", + "comments": [ + { + "text": "The class was fine in the beginning but it will get hard as you go through the semester. As a student that took his class, he has good note but the only problem is that his quiz is from note depend sometimes. he tries to help but sometimes he is not able to help you. You can't see him after class. he is a part-time professor", + "pos": 0.115, + "neu": 0.781, + "neg": 0.105, + "_id": { + "$oid": "6711d6a7cd60fca157e5f478" + } + }, + { + "text": "The BEST calc professor EVER! I SUCK at math and I managed to do really well on his first three exams, but slipped up on the final because of personal issues. Super fair, no tricks. He wants you to pass his class. He breaks everything down and explains it really clearly. Exam questions question from textbook and lecture. PLEASE take his class!", + "pos": 0.291, + "neu": 0.68, + "neg": 0.029, + "_id": { + "$oid": "6711d6a7cd60fca157e5f479" + } + }, + { + "text": "The class was fine tat the beginning but it will get hard as you go through the semester. As a student that took his class he has good note but the only problem is that his quiz is from note depend sometimes. you have to study his study guide hard. he tries to help but sometimes he is not able to help you. try to tell that you need to watch a video", + "pos": 0.104, + "neu": 0.782, + "neg": 0.114, + "_id": { + "$oid": "6711d6a7cd60fca157e5f47a" + } + }, + { + "text": "Prof. Hasan I would say the best out of all other calc profs at CCNY. His explainations make math a piece of cake. His exams are based on his notes and textbook hw. If u practice his notes and do the textbook problems you will be in good shape!", + "pos": 0.132, + "neu": 0.82, + "neg": 0.048, + "_id": { + "$oid": "6711d6a7cd60fca157e5f47b" + } + }, + { + "text": "He's such a great guy. His class is REALLY easy, because he knows how to teach. The class is 60% Exams and 40% final exams. As long as you get the in class questions and know how to do each one. YOU ARE SET. He reuses the questions from there but changes the numbers. Great guy, we need more like him.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f47c" + } + }, + { + "text": "Prof Hasan was one of the nicest professors I've had. He takes his time to break down the material for you and tries his best to make sure you understand it. His grades are only based off of exams, however. He drops the lowest one. There are no surprises in his exams, everything he puts on it is taught in class. Usually they're identical to notes.", + "pos": 0.129, + "neu": 0.814, + "neg": 0.057, + "_id": { + "$oid": "6711d6a7cd60fca157e5f47d" + } + }, + { + "text": "PRO:If you remember what's taught in high school, this class would be very easy for you. You didn't have to do any homework and study for the test, if you knew what's going on in the class. CON:He directly taught what's in the book, if you didn't understand what he said, better got some help from others.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f47e" + } + }, + { + "text": "Professor Hasan cares about his students and respects them, all he wants is to pass his students. There's no pop quizzes or any surprise in his class. You have to show up in class and take notes. There were 4 exams in his class and he dropped the lowest one. Overall, it was awesome experience. Definitely will take him again in the future!", + "pos": 0.192, + "neu": 0.744, + "neg": 0.064, + "_id": { + "$oid": "6711d6a7cd60fca157e5f47f" + } + }, + { + "text": "Teaches straight from the textbook. Does not like it when you ask questions in class, prefers if you ask after class which doesn't make any sense. No extra credit given. It's hard to learn with this professor. Doesn't allow you to speak even before class starts.", + "pos": 0.037, + "neu": 0.777, + "neg": 0.186, + "_id": { + "$oid": "6711d6a7cd60fca157e5f480" + } + }, + { + "text": "I miss Mr. Hasan! I used to struggle in H.S. Calc, but he breaks everything down. He does teach fast, but trust me he will be there for you if you need help. He is such a happy and funny man, never upset with students. The tests are usually what we did in class, don't stress just study and look your notes over. Take him you won't regret it :)", + "pos": 0.282, + "neu": 0.651, + "neg": 0.067, + "_id": { + "$oid": "6711d6a7cd60fca157e5f481" + } + }, + { + "text": "Very helpful! You can tell he cares about what he does and that students understand the material and do well in his class. Tests are very straightforward-no tricks and he is pretty laid back with the homework deadlines. Take notes and look over them before tests and you should be fine. I hope to take another math course with him in the future!", + "pos": 0.224, + "neu": 0.752, + "neg": 0.024, + "_id": { + "$oid": "6711d6a7cd60fca157e5f482" + } + }, + { + "text": "Amazing teacher, he gives a lots of feedback answers email really fast, is available after class does give a little homework but he will most times extend the deadlines make sure you study for the test and final he drops the lowest test grade take him! he is one of the best at ccny", + "pos": 0.21, + "neu": 0.739, + "neg": 0.051, + "_id": { + "$oid": "6711d6a7cd60fca157e5f483" + } + }, + { + "text": "One of the best math teacher. Stay's cool always. Gives his best and keeps trying until everyone understands. Available after class also via email, super fast in replying email. Homeworks are easy, not much. Tests are also easy. Just practice the class problems and you should be fine. Getting A is not hard in his class. Math is all about practice.", + "pos": 0.3, + "neu": 0.665, + "neg": 0.035, + "_id": { + "$oid": "6711d6a7cd60fca157e5f484" + } + }, + { + "text": "He's really nice. You just have to show up to his class, put in the effort and you'll get an A.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f485" + } + }, + { + "text": "Professor Kamrul Hassan is great! His grading system and test are really easy. Homework also plays a big margin to your grade.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f486" + } + }, + { + "text": "His tests are easy because he only gives similar questions that he does in class. Study the notes and you'll be fine.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d6a7cd60fca157e5f487" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a8cd60fca157e5f489" + }, + "professor_name": "Jorge Velez", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "One of my first professors ever and they were the absolute best! I wish I could stick with them for all 4 years in college He makes the whole class engaging and doesn't demand shy students to participate. He gives ample time for papers and does an excellent job discussing difficult papers or pieces we work with. DEFINITELY TAKE THIS CLASS!", + "pos": 0.266, + "neu": 0.701, + "neg": 0.033, + "_id": { + "$oid": "6711d6a8cd60fca157e5f48a" + } + }, + { + "text": "He is the most favorite professor in cuny for me ever. He grades based on the effort and the time. You can get full marks if you do not submit late. It was so fun to be in his class but you need to work on some things with mini groups every week. His class is \"easy going\" class and he spends every second of him with students if needed.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f48b" + } + }, + { + "text": "shoutout to professor velez for singlehandedly helping me overcome my writing anxiety, esp for writing papers. he meets with every student individually to discuss your ideas and where you're at for each major assignment. during the first progress check i showed up with just an idea & nothing else, and he helped me outline the entire paper over zoom", + "pos": 0.08, + "neu": 0.893, + "neg": 0.027, + "_id": { + "$oid": "6711d6a8cd60fca157e5f48c" + } + }, + { + "text": "This professor is the goat. They always want their students to try their best and doesn't compare them to others. He grades you based on the effort that you put rather than writing skill, which is quite subjective from person to person. As long as you complete the assignments and submit them on time you should be golden! Go ahead and enroll!", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f48d" + } + }, + { + "text": "Very understandable and flexible with assignments and papers as long as you communicate with them. Super upbeat and made the 2 hour lecture enjoyable. Gave awesome feedback and was an easy grader. TAKE THEM!!!!!!", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f48e" + } + }, + { + "text": "Took one of my very first college courses with this professor. Very caring professor, accessible outside of class and responds to emails if you have any questions, would highly recommend taking this professor", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f48f" + } + }, + { + "text": "Very kind and understanding professor. Had him fall 21.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f490" + } + }, + { + "text": "Took their FIQWS class Fall 2021. Great conversations during class and they kept the class engaged. Easy to approach with any questions and they're understanding.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f491" + } + }, + { + "text": "Loved this class so much <3", + "pos": 0.639, + "neu": 0.361, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f492" + } + }, + { + "text": "I took Jorge's class during fall 2021. 10/10 super nice and accepting. Not rude or bitter at all.", + "pos": 0.521, + "neu": 0.479, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f493" + } + }, + { + "text": "I had this prof last year for one of my first classes in CCNY. I was a bit worried about this class because writing isn't my strong subject. However, by the end of the semester I got my first A on writing, all thanks to this prof for being very understandable and helping me throughout the process. I would def recommend him he's a real gem !!!", + "pos": 0.116, + "neu": 0.82, + "neg": 0.065, + "_id": { + "$oid": "6711d6a8cd60fca157e5f494" + } + }, + { + "text": "If you see this name, do not hesitate to take Jorge. They are unmatched in the English department, and while theyre new to teaching, theyre a whole lot better than anyone else.", + "pos": 0.135, + "neu": 0.828, + "neg": 0.037, + "_id": { + "$oid": "6711d6a8cd60fca157e5f495" + } + }, + { + "text": "Professor Velez is one of the best professors! Their class is super chill and fun. They are very understanding of their students and truly cares about them. This class includes many discussions so make sure to participate but he doesn't force us to when we don't want to. Overall, amazing professor and I would definitely recommend this class!", + "pos": 0.341, + "neu": 0.641, + "neg": 0.018, + "_id": { + "$oid": "6711d6a8cd60fca157e5f496" + } + }, + { + "text": "I love this class, it helped me get more in touch with writing, and of course this is a required course for Freshman Composition, Professor Velez was great with creating an emphasis with expression along with the academic form. Their course I would say I would recommend it for any newcomers to CCNY for sure.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f497" + } + }, + { + "text": "Jorge is one of the kindest professors I've come across. The way they teach is engaging, making sure all of their students are understanding the material. Jorge is also extremely understanding of any circumstances that may come up which helps show how much they care for their students.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f498" + } + }, + { + "text": "Professor Velez is a really chill professor. This was a hybrid course and I appreciated his patience with students not being very responsive or not turning their cameras on and I like how he follows up on your answers in class to make you think harder. Just hand in your homework on time and participate in the discussions, you will do just fine. :)", + "pos": 0.186, + "neu": 0.782, + "neg": 0.031, + "_id": { + "$oid": "6711d6a8cd60fca157e5f499" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a8cd60fca157e5f49b" + }, + "professor_name": "Jeffrey Blustein", + "rating": 4.5, + "department": "Philosophy department", + "comments": [ + { + "text": "Prof. Blustein is a great teacher, and he really trains you to think and write philosophically. I took his class Moral Psychology, which was very interesting and has changed the way I think about morality. He also gives good feedback for papers. Some of the best philosophy discussions I have had in an academic setting.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f49c" + } + }, + { + "text": "Sincere and cares deeply about the material, answers questions honestly and thoroughly. Constant stream of small assignments, good prep for grad school. Lenient with grades, but strict with deadlines. Material can be challenging but he is more interested in students engaging with the ideas then just memorizing. Accessible + helpful out of class.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f49d" + } + }, + { + "text": "Great professor, i walked out of class feeling like i learned however get ready to write because you will do doing a lot of that.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f49e" + } + }, + { + "text": "While Prof. Blustein is a tough grader and quite stern, I learned to appreciate his ways throughout this course. Weekly 500-word essays, which he grades very precisely. It sounds rough but you will come out of this course learning many new things. Also, you will become a better writer.", + "pos": 0.108, + "neu": 0.869, + "neg": 0.024, + "_id": { + "$oid": "6711d6a8cd60fca157e5f49f" + } + }, + { + "text": "Professor Blustein is a great professor. He has high expectations for his students, and he will do his best to help you achieve his expectations. Lots of readings and weekly 500-word essays. Honestly not bad for a philosophy course. You will definitely learn a lot from him since he is very knowledgeable about moral philosophy.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a0" + } + }, + { + "text": "Professor Blustein is a great professor for biomedical ethics. He gives weekly readings that help guide class discussion. He very clearly outlines the material. There are short weekly case study assignments and then two longer papers. Tough, but fair grader.", + "pos": 0.205, + "neu": 0.768, + "neg": 0.027, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a1" + } + }, + { + "text": "Not an easy A class but it is an easy A- class. He gives a lot of readings but he goes over each philosopher's work so well during his lectures that you really don't have to read. I was definitely quiet but still did well. His midterm and final have multiple essays but he gives the questions beforehand so there's no excuse not to do well.", + "pos": 0.192, + "neu": 0.737, + "neg": 0.072, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a2" + } + }, + { + "text": "3 paper overall. 2 people will be grading your paper, the Professor and an instructor, both gives bad feedback on the paper. Tough grader. Very hard to concentrate in class. No powerpoint. Do not recommend to take this class. Final and midterm are all 4-5 short essays. Basically, if you can't write, don't take this class, you will suffer.", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a3" + } + }, + { + "text": "Very helpful, passionate, and knowledgeable. Forces you to examine the details of some very complex philosophy. A fair grader and accessible professor.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a4" + } + }, + { + "text": "He is one of the best professors! He doesn't try too hard to be funny but has a great sense of humor. He teaches well, you really understand what is going on if you take good notes. The notes will help you on your essay and the tests! he is very helpful! Take him if you want to learn!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a5" + } + }, + { + "text": "OMG, HE IS SUCH A HARD GRADER. IF YOU'RE NOT A PHILOSOPHY LOVER, DO NOT TAKE IT. YOU HAVE TO BE A VERY GOOD NOTE TAKER BECAUSE HE DOES NOT WRITE ON THE BOARD. THREE PHILOSOPHICAL ESSAYS WHICH ARE EXTREMELY DIFFICULT.YOU HAVE TO READ THE TEXT IN ORDER TO UNDERSTAND THE CONCEPTS. OVERALL, HE'S REALLY ENTHUSIASTIC PERSON BUT HIS GRADING IS VERYY HARD.", + "pos": 0.065, + "neu": 0.863, + "neg": 0.072, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a6" + } + }, + { + "text": "He knows his stuff and expects students to know it too....hard grader...very nice guy overall...", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a7" + } + }, + { + "text": "Great professor! very clear and 4 essays mid term and final all short essays easy if you take notes and study. Highly recomend", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a8" + } + }, + { + "text": "I wrote that this course was easy due to my great interest on the subject; there were students who were struggling. Great prof, clear, explains well, and most importantly he is very welcoming in terms of speaking outside of class. Cool guy.", + "pos": 0.436, + "neu": 0.519, + "neg": 0.045, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4a9" + } + }, + { + "text": "Every lecture is well thought out and interesting. Ample time to prepare 5 short papers. This course/professor is interesting and stimulating and well worth the moderate effort required to do well.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4aa" + } + }, + { + "text": "awesome professor. extremely intelligent and helpful. i'd recommend taking every class that he teaches.", + "pos": 0.564, + "neu": 0.436, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4ab" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a8cd60fca157e5f4ad" + }, + "professor_name": "Zach Samalin", + "rating": 4.1, + "department": "World Humanities department", + "comments": [ + { + "text": "A lot of reading assigned but you definitely don't have to do all of it. Interesting class and an easy A if you put in the effort and go to the lectures. 5 two page journals that were free points and take home midterm and final.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4ae" + } + }, + { + "text": "(NYU Core Texts and Ideas) His class was so inspiring and there weren't many papers and homeworks besides a disgust journal every 3 weeks and midterm, final papers. Definitely take him!!! He is the GOAT of NYU T&I professors.", + "pos": 0.153, + "neu": 0.764, + "neg": 0.083, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4af" + } + }, + { + "text": "Professor Samalin acts as though he is relaxed and approachable in his lectures, probably in an effort to convince his students that he's not just a pretentious English professor. He lacks compassion and doesn't seem to actually care about his students' well-being. Attendance to his \"screen-free\" lectures is required and 25% of your final grade.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b0" + } + }, + { + "text": "Great choice for T&I at NYU. All exams take home, journal entries were free points, and never did a single reading. (idk what's up with the previous comment). He was very kind and approachable. Also my TA (Emily) was THE BEST!", + "pos": 0.304, + "neu": 0.67, + "neg": 0.026, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b1" + } + }, + { + "text": "I highly recommend you do NOT take his class at NYU. Trust me, you're better off dropping it", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b2" + } + }, + { + "text": "I took Victorian Literature with him and although there was a great deal of reading, he made sure that we talked about everything we read. It's a literature class so prepare to read, he doesn't want a plot synopsis but really well though out responses to the themes of the literature. And he's hot.", + "pos": 0.125, + "neu": 0.856, + "neg": 0.019, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b3" + } + }, + { + "text": "Zach is an amazing teacher and knows his stuff. He's funny, approachable and helpful. I always loved Victorian Literature but he made it even more exciting and enjoyable. I never missed a class both times I had him for a teacher and I was sad when the semesters were over. Take his classes. You won't be sorry.", + "pos": 0.29, + "neu": 0.653, + "neg": 0.056, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b4" + } + }, + { + "text": "Great guy and professor. He is very energetic and charismatic, which makes the class very interesting to take part for class discussions. I advise to take his classes. Gives interesting books to read and not a hard ass about papers. Really cool and laid back professor.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b5" + } + }, + { + "text": "The worst readings ever. Talk about booooring. Participation is a big part of his grading", + "pos": 0.0, + "neu": 0.773, + "neg": 0.227, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b6" + } + }, + { + "text": "Read the books and pay attention in class. If you like literature you'll really enjoy yourself. If you don't, then the class will be bearable because the workload is pretty low and he's a funny, approachable dude. Still keep in touch with him via e-mail.", + "pos": 0.222, + "neu": 0.714, + "neg": 0.064, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b7" + } + }, + { + "text": "Zach is HOT!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b8" + } + }, + { + "text": "awesome dude! makes the class interesting...and is extremely funny!", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4b9" + } + }, + { + "text": "Very funny guy. Worked very hard. However there's only so much you can talk about a single book before you start spitting out ****. But his humor and energy helped the class go by.", + "pos": 0.191, + "neu": 0.774, + "neg": 0.035, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4ba" + } + }, + { + "text": "All I can say is...he has bedroom eyes..which makes it hard to concentrate.", + "pos": 0.0, + "neu": 0.896, + "neg": 0.104, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4bb" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4bc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6a8cd60fca157e5f4bd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6a9cd60fca157e5f4bf" + }, + "professor_name": "Nooreddin Naghibolhosseini", + "rating": 3.6, + "department": "Computer Science department", + "comments": [ + { + "text": "Took him for the summer, he was late everyday. Always talked about other things other than the lecture. Said final was on a certain day and when everyone showed up basically blamed us for not paying attention. Less than half the class was able to make it to the makeup date since he messed up. Do not recommend at all. Stay away from him.", + "pos": 0.03, + "neu": 0.861, + "neg": 0.109, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c0" + } + }, + { + "text": "He's often 30 minutes late and is a very tough grader, no curves. He said the final was going to be in July 25th but then when everyone showed up, he insisted it was the 26th despite it being after the period finals were officially meant to be taken. He's not trust worthy. Don't take him.", + "pos": 0.0, + "neu": 0.842, + "neg": 0.158, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c1" + } + }, + { + "text": "No partial credit. You either get 100% or 0% on assignments. Brutal grading on exam as well. Clearly not easy or laid back. There were a lot of honest reviews here before someone reported all of them.", + "pos": 0.165, + "neu": 0.612, + "neg": 0.222, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c2" + } + }, + { + "text": "Avoid him, no more easy A and learn nothing from him. He returned the midterm two class before the final. And his final MUST be the copy from other section and contains problem that he did not teach at all with his grading policy \"You have to get EVERYTHING right to get credit\". Overall, he is now not the easy A choice nor the learning choice.", + "pos": 0.035, + "neu": 0.802, + "neg": 0.163, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c3" + } + }, + { + "text": "Nooreddin is passionate about teaching, but he cannot do it to save his own life. Frequently comes in late, takes months to grade assignments, and provides poor feedback on submitted work. Furthermore, his communication with his students is abysmal. Doesn't respond on Piazza nor his email. No clear grading criteria.", + "pos": 0.109, + "neu": 0.774, + "neg": 0.117, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c4" + } + }, + { + "text": "He is the best at what he does the best. Everyone likes him for being way too caring. Lets us know how well we are doing in class. Professor grades our tests as fair as possible as a software developer. Understands the material really well. Students would be encouraged to participate in class.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c5" + } + }, + { + "text": "BEST PROFESSOR! I LEARNED SO MUCH ABOUTvCODING IN A MERE FEW MONTHS. Couldn't ask for a better professor honestly. dedicated and brilliant!", + "pos": 0.517, + "neu": 0.483, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c6" + } + }, + { + "text": "He's a really good teacher but I wish he taught the material faster. People say he's slow but it's because nobody in the class knows how to code well, so he has to re-teach how to use c++ again.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c7" + } + }, + { + "text": "Nooreddin really cares about his students, he will stop to explain something in the easiest possible way and he's very relaxed. You'll learn a lot of life lessons as well as CSC, enjoy him if you have him because a lot of other professors in this school aren't as enjoyable to have.", + "pos": 0.231, + "neu": 0.698, + "neg": 0.071, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c8" + } + }, + { + "text": "Cool guy, pretty chill. He rambles on a lot about life , then makes up for it by keeping you extra time. Easy pass, take him.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4c9" + } + }, + { + "text": "Would take this professor again for further class!!! He really cares student and a kind professor.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4ca" + } + }, + { + "text": "He is the best CS professor in the CCNY. His lectures are very clear and easy to understand his concepts. CCNY need this type professor in the furture.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4cb" + } + }, + { + "text": "Prof. Nooreddin is a very knowledgeable person I know in the City College, and I think he is easily the best professor I had in my college career. He explains data structures very well, and makes sure you understand. If you do not understand a concept, ask a question at the end of the class, he will explain it for you AGAIN.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4cc" + } + }, + { + "text": "This dude is the most wololo person ever. for those not familiar with the term it basically refers to how chill he is. He probably knows his stuff and it seems like he does but theres no real way to know for sure LOVED IT AYY LMAO", + "pos": 0.282, + "neu": 0.673, + "neg": 0.045, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4cd" + } + }, + { + "text": "He is very helpful. If you have a question, he will really go out of his way to answer your question. Make sure to implement everything you learn into code. He gives pop quizzes so be prepared at all times because the quizzes account for a big portion of your grade as do hw. We've had 2 hws and 2 quizzes so far. You get 1 final and a midterm.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d6a9cd60fca157e5f4ce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6aacd60fca157e5f4d0" + }, + "professor_name": "Samir Ahmed", + "rating": 2.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "I just don't get the point of this class for EE major, waste of time imho, if you want to give economics knowledge for engineers at least you should give us adequate professors.", + "pos": 0.088, + "neu": 0.827, + "neg": 0.085, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d1" + } + }, + { + "text": "Im not kidding, I really think he exhibits symptoms of dementia. What was that final all about?", + "pos": 0.0, + "neu": 0.925, + "neg": 0.075, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d2" + } + }, + { + "text": "Beware of final, he did change all the problems on final, gave really stupid problems", + "pos": 0.0, + "neu": 0.561, + "neg": 0.439, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d3" + } + }, + { + "text": "Required curriculum class, no alternative sections, 90 students in class and a 90 year old professor. This class sucks, but Im not sure if the reason is the professor or the college.", + "pos": 0.0, + "neu": 0.834, + "neg": 0.166, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d4" + } + }, + { + "text": "Grade is based on just 2 exams (total 3 exams, takes the highest out of the first 2, and then the final). Lectures are pretty straightforward. Nothing too hard to follow. Review a bit before exam and it will be clear. He is hard to hear at times and his handwriting is also messy so try to sit in the front.", + "pos": 0.106, + "neu": 0.836, + "neg": 0.058, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d5" + } + }, + { + "text": "Nice, but old professor. Amazing TA (clarifies questions during exams). Def possible to get an A. 2 midterms (highest is 40%) and a final (60%). HW + attendance don't matter at all (never handed in one and missed half the classes), but do the HW's b/c test questions are VERY similar. Gives \"review hw\" before final, studied ALL those and got a 99.", + "pos": 0.121, + "neu": 0.823, + "neg": 0.056, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d6" + } + }, + { + "text": "Bad professor, avoid him", + "pos": 0.0, + "neu": 0.26, + "neg": 0.74, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d7" + } + }, + { + "text": "Not a hard class. Your highest midterm is 40%, the final is 60%. His lectures are pretty bad but his questions are recycled from old tests. Overall, the material isn't hard, its just tedious. Get good at linear approximations. Effective interest rates are the only other tricky topic.", + "pos": 0.274, + "neu": 0.657, + "neg": 0.068, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d8" + } + }, + { + "text": "Prof tries his best to teach but due to age, he can't speak loud enough for people in a big lecture hall. On the other hand, his TA is the man!! Going to his office hours is a huge help. He is extremely competent & polite compared to many TA's I've had. During exams, he tries his best to clarify any confusing questions. DO ALL HW to ace the exams.", + "pos": 0.262, + "neu": 0.712, + "neg": 0.027, + "_id": { + "$oid": "6711d6aacd60fca157e5f4d9" + } + }, + { + "text": "Quite soft spoken but does his best to help you understand by repeating it several times (almost till bored). He gave 2 mid exams and selects the best grade (worth 40%) and 1 final (worth 60%). try to understand effective interest rates, its key, the other concepts are str8 forward... The class sessions is also really long so bring a snack.", + "pos": 0.336, + "neu": 0.637, + "neg": 0.027, + "_id": { + "$oid": "6711d6aacd60fca157e5f4da" + } + }, + { + "text": "U will not understand what he says. Just read the book and solve hw's. Follow what TA teaches. Have clear the concepts. He takes 3 exams (he drops the worst of the first two exams) but just counts 2. Problems are straightforward if u have clear the concepts. Easy A", + "pos": 0.173, + "neu": 0.727, + "neg": 0.101, + "_id": { + "$oid": "6711d6aacd60fca157e5f4db" + } + }, + { + "text": "He is a very good professor. His TA is also good if you follow his instruction. If you don't follow his intruction....it could be a problem.", + "pos": 0.192, + "neu": 0.723, + "neg": 0.085, + "_id": { + "$oid": "6711d6aacd60fca157e5f4dc" + } + }, + { + "text": "professor is aiight but the TA is not good. simple material but you still need to study. Please change the TA!!!", + "pos": 0.114, + "neu": 0.733, + "neg": 0.154, + "_id": { + "$oid": "6711d6aacd60fca157e5f4dd" + } + }, + { + "text": "This not not an easy A.Do not be deceived.You do have to study tremendously to pass.They are simple topics but can prove to be a disaster if you take it for granted.An added (F) if you think you can attend the class,sit and pass it easily.Easy to pass and easy to fail.", + "pos": 0.084, + "neu": 0.753, + "neg": 0.163, + "_id": { + "$oid": "6711d6aacd60fca157e5f4de" + } + }, + { + "text": "easy class. most of his work is done by his T.A. tests exactly the same as the previous exams given by him. you can very easy take a B with a minimum effort, i got a B+ without even having a book. you only need the previous exams.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4df" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6aacd60fca157e5f4e1" + }, + "professor_name": "Marina Fernando", + "rating": 4.3, + "department": "International Studies department", + "comments": [ + { + "text": "We will miss her dearly as she retires from the college. She did a great job remembering each and every student's names, and research interests. She was very helpful and always there for the students. Some like to call her the mother hen of IS. Her presence will be greatly missed in City College", + "pos": 0.221, + "neu": 0.717, + "neg": 0.062, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e2" + } + }, + { + "text": "Amazingly easy grader. Phenomenal administrator. The most helpful Prof you'll find. Doesn't deal well with whiners or the lazy. This woman has single handedly made sure hundreds of students made their way successfully through College by helping, begging, badgering, & threatening. One of the best humans I've ever known. Now complete your Thesis!", + "pos": 0.261, + "neu": 0.607, + "neg": 0.132, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e3" + } + }, + { + "text": "now I am a professor. She give me the fundations. A real Queen Bee. we love her. She is not for those who don't want academic excellence. Thank her for ever.", + "pos": 0.175, + "neu": 0.707, + "neg": 0.118, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e4" + } + }, + { + "text": "A really caring professor. More like her are needed.", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e5" + } + }, + { + "text": "A Lady most admired!", + "pos": 0.564, + "neu": 0.436, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e6" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e7" + } + }, + { + "text": "Unpredictable... bi-polar, very vey very helpful but it comes with a high price. be on your guard at all times when dealing with her. Wonderful teacher!!!", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e8" + } + }, + { + "text": "Sad! Outstanding academic qualities with a lot of personality issues. Has her pets and feminism gets in her way.", + "pos": 0.176, + "neu": 0.697, + "neg": 0.127, + "_id": { + "$oid": "6711d6aacd60fca157e5f4e9" + } + }, + { + "text": "She is the best.Although,class itself is very challenging she is always there to help.By the way make sure you are ready to work because by the end of the semester/senior seminar you will know the definition of work.Don't complain about it because in the near future it will pay off.She is a wonderful asset to CCNY!You can't get better then her!!", + "pos": 0.218, + "neu": 0.729, + "neg": 0.052, + "_id": { + "$oid": "6711d6aacd60fca157e5f4ea" + } + }, + { + "text": "Be aware - this is the most bi-polar personality I have come across in the academia. She has her 'pet' students and if you're not part of this crowd - well your not going to do well. Do not be misslead by her superficial niceties - this women is something else!", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4eb" + } + }, + { + "text": "I endured her bi-polar behavior for most of my college career (International Studies major). Unless you're one of her \"pets\", she'll drive you mad! Every semester we had some sort of \"issue\". I knew many who switch their majors because of her tyrant ways. With God's help, I was able to survive Senior Thesis Seminar/Senior Thesis and graduate.", + "pos": 0.043, + "neu": 0.9, + "neg": 0.056, + "_id": { + "$oid": "6711d6aacd60fca157e5f4ec" + } + }, + { + "text": "she is the most caring and helpful professor in the building. she is always available for her students and seldom keeps you in the waiting room. she is very demanding so be prepared to do the work NO LATE WORK ACCEPTED!!! no matter what, keep her informed or else she will know from somewhere else.", + "pos": 0.187, + "neu": 0.72, + "neg": 0.093, + "_id": { + "$oid": "6711d6aacd60fca157e5f4ed" + } + }, + { + "text": "I learned so much in this class, enough said.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4ee" + } + }, + { + "text": "She's the oracle..she knows it all in IS. She's kinda hard though..doesn't allow anyone to slack and if you do, you will pay!", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d6aacd60fca157e5f4ef" + } + }, + { + "text": "She has a motherly quality with a mix of excellent teaching skills.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6aacd60fca157e5f4f2" + }, + "professor_name": "Matthew Reilly", + "rating": 4.9, + "department": "Anthropology department", + "comments": [ + { + "text": "I had archaeology class with him fall of 21'. Very understanding professor and easy to reach out to with questions. I'm not much of an anthro person but I was pretty engaged throughout his lectures and covered interesting material. Some of the assignments are heavy but that's coming from me who is a heavy procrastinator.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f3" + } + }, + { + "text": "He is such a nice lecturer and professor. His course isn't two heavy and you're guaranteed to pass if you do all the assignments.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f4" + } + }, + { + "text": "The prof gives pop quizzes sometimes to make sure u attend class and the hws are just readings (mostly) / videos/podcast that prepare u for the next class. He has one midterm and one final (very lenient with his grading & you will do well if u skim through the hws and go over his ppts). He also gives three easy writing assignments & lots of EC!", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f5" + } + }, + { + "text": "Reilly is easily one of the most incredible profs as CCNY. He has a passion for anthropology and academia that is evident in everything he does. I have had the privilege of taking two classes with Professor Reilly and would take more if I could. He is very thorough and organized which makes it an incredibly meaningful class. 10/10 love him <3", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f6" + } + }, + { + "text": "He was very nice and his lectures are very easy to understand. He's a very caring and understanding person, so he'll probably be lenient with things. There are a lot of assignments but they're very straightforward and if you do what's required you'll get full points.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f7" + } + }, + { + "text": "I am a science major, yet he made me enjoy a topic so foreign to me. He was extremely understanding when I was absent for a while and his grading is very fair. I definitely recommend him! Amazing lectures and you can tell he is very passionate about his classes as well! He's really sweet", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f8" + } + }, + { + "text": "Reilly is a gem. His lectures are well put together, clear and contain well thought out material. Guidelines and review sheets for papers and exams precisely state what you need to do/know to do well on assignments. He is passionate about teaching his students and genuinely cares. Take notes, read and listen to his directions & you should get an A", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4f9" + } + }, + { + "text": "He gives great lectures, make sure you take notes on the lectures and review them for the exams and you will be fine. There is quite a lot of work but not an unreasonable amount. He has a clear grading criteria and very accessible out of class and gives a lot of extra credit opportunities too!", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4fa" + } + }, + { + "text": "Archaeology is not a class you'd think of much from an outside perspective but Professor Reilly really shows you how intriguing the subject really is. You do need to do a lot of reading, but so long as you pay attention in class and take notes, you can pass easily. Also he gives a lot of extra credit opportunities. Don't pass him up, he's amazing!", + "pos": 0.2, + "neu": 0.779, + "neg": 0.021, + "_id": { + "$oid": "6711d6aacd60fca157e5f4fb" + } + }, + { + "text": "He's one of those professors that really cares about his students. He offers lots of extra credit opportunities and his lectures are extremely engaging. You can tell he's really passionate about archaeology. He's always responsive and helpful outside of class as well. There's minimal classwork and assignments that can be done easily. Great class!", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4fc" + } + }, + { + "text": "Class is easygoing, but not as easy as human origins. Although assignments are short, you have to put a lot of thought into it. Attendance is necessity to do well. Best part of class is you watch movies/documentaries every 3rd-4th lecture. To do well on exams, take notes each lecture and study it, textbook not necessary imo. Overall good class.", + "pos": 0.225, + "neu": 0.733, + "neg": 0.042, + "_id": { + "$oid": "6711d6aacd60fca157e5f4fd" + } + }, + { + "text": "Professor Reilly is such a laid back caring type of guy! Simple as if you get your stuff done show up to class and take good notes, you should get an A. He gives a ton of extra credit opportunities and will help you if you need it! He is a funny respected guy who lectures amazing and will not get boring. OH AND DID I MENTION EXTRA CREDIT!!!", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d6aacd60fca157e5f4fe" + } + }, + { + "text": "Hes a solid lecturer and always open to discussions after class. As long as you take good notes during lecture and review (skim) the readings youll get an A. However, if you cut corners on your essay or exams hell definitely indicate that in his detailed written feedback. Also, he gives a lot of great extra credit opportunities.", + "pos": 0.225, + "neu": 0.683, + "neg": 0.092, + "_id": { + "$oid": "6711d6aacd60fca157e5f4ff" + } + }, + { + "text": "Easy going, laid back. Very helpful during office hours and via email. You have to read a lot and take a lot of notes but other than that, it is a good class even if youre not an Anthropology major. Tests are straightforward and there are no surprises as far as the format goes.", + "pos": 0.131, + "neu": 0.835, + "neg": 0.033, + "_id": { + "$oid": "6711d6aacd60fca157e5f500" + } + }, + { + "text": "An awesome professor, very understanding, accessible outside of class and helpful. His Exams are tricky but manageable, and the only thing that could be tough are the readings. TAKE NOTES! They are not available on blackboard or any course website! The movie responses are an easy way to boost up your grade, and he offers tons of Extra Credit!!!!!!!", + "pos": 0.23, + "neu": 0.728, + "neg": 0.043, + "_id": { + "$oid": "6711d6aacd60fca157e5f501" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6abcd60fca157e5f503" + }, + "professor_name": "Miguel Briones", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "easy but slightly stressful A. he was delayed in posting the course's first half of assignments so deadlines were extended and one assignment canceled. then didn't post the last half of the assignments, says we'll have one more test but doesn't post it. then posts everything during finals week saying it was all canceled and we all get credit", + "pos": 0.08, + "neu": 0.824, + "neg": 0.095, + "_id": { + "$oid": "6711d6abcd60fca157e5f504" + } + }, + { + "text": "just close your eyes and take him he is the perfect psychology professor you want to have, there is no workload his assingments are veryy easyyy and have some discussion post but those are very easy and there is no final no midter, so just TAKE HIMMM", + "pos": 0.182, + "neu": 0.738, + "neg": 0.079, + "_id": { + "$oid": "6711d6abcd60fca157e5f505" + } + }, + { + "text": "if you get a chance to take his class then please take him, hes a easy grader, and his works are so easily and its only 1 dc and 1 assignment every week. and there no midterm or final. i wish i could take more class with him", + "pos": 0.227, + "neu": 0.734, + "neg": 0.038, + "_id": { + "$oid": "6711d6abcd60fca157e5f506" + } + }, + { + "text": "Summer course: 3 discussion boards and 3 case studies. Got to learn lots of new things. Professor was kind and nice and allowed an extension without penalty as long as you emailed him. As long as you write a lot and follow instructions, it's an easy A. Super calm summer semester. Take more classes w him if you can.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f507" + } + }, + { + "text": "Took him over the summer, the lectures were really detailed if you really want to learn, if you dont just grasp the basic concept, easy assignments and open book case studies. Participation in bb posts were alright and easy. easy extra credit.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f508" + } + }, + { + "text": "Took Professor Brioness PSY 3082 course this summer session 1 at Baruch College. Unlimited attempts on quizzes which are worth 15%, 3 case studies each worth 10%, 2 conference presentations each worth 20%, 5 discussion boards worth a total of 15%, and self-reflection forum for extra credit worth 10%. He is very helpful. I totally reccomend him!", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f509" + } + }, + { + "text": "Professor Briones is awesome - not only are his lectures/videos clear and easy to understand but his quizzes also help you improve your knowledge on the topics. He grades extremely fairly and overall he's an understanding Professor. Definitely take him", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f50a" + } + }, + { + "text": "Neuroscience was so fun to learn with Prof Briones, the class was asynchronous and it was best one I have taken. They're 2 opportunities for extra credit, 3 case studies, 2 power point presentations and 5 discussion board post. His lectures were very easy to follow & if you did nor understand anything he'll be happy to help.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f50b" + } + }, + { + "text": "Prof. Briones is young and sometimes funny. But I honestly didn't learn much from his course. We only had one exam and he cancelled the other two for unknown reasons. Final was either a paper or a take home exam. If you want an easy A, take him. If you actually want to LEARN, take someone else. Also cancelled loads of classes, which got annoying.", + "pos": 0.162, + "neu": 0.728, + "neg": 0.109, + "_id": { + "$oid": "6711d6abcd60fca157e5f50c" + } + }, + { + "text": "Miguel is a very cool professor. Young dude that looks like a student himself. I attended most of his lectures although he couldn't care less about that. Someone said he's hot..I suppose in a gay, nerdy way, maybe? Anyways, take him. You will learn and also have fun doing it. He's very laid back too", + "pos": 0.135, + "neu": 0.804, + "neg": 0.062, + "_id": { + "$oid": "6711d6abcd60fca157e5f50d" + } + }, + { + "text": "This guys class was so much fun! I really enjoyed attending his lectures, although attendance is not mandatory. He has very dry, but funny, humor. All of his exams are online and you can take them even on your phone. You won't regret taking him!", + "pos": 0.273, + "neu": 0.707, + "neg": 0.02, + "_id": { + "$oid": "6711d6abcd60fca157e5f50e" + } + }, + { + "text": "I love this guy so much! I wish he taught all of the psych courses at CCNY! He seems to be very young but is probably one of the most knowledgeable professors I have met. He's very cool and easy to talk to. The beginning of the semester may seem a bit difficult, but just stick with it! He explains anything and everything if you just ask questions!", + "pos": 0.168, + "neu": 0.791, + "neg": 0.041, + "_id": { + "$oid": "6711d6abcd60fca157e5f50f" + } + }, + { + "text": "Easy course. He's super cool and understanding. Would definitely take him again!", + "pos": 0.602, + "neu": 0.398, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f510" + } + }, + { + "text": "He is very laid back. His tests are open book and his lectures are both educational and easygoing", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f511" + } + }, + { + "text": "Miguel is super hot and really nice. I learned a lot from his course. Easy class. Would definitely take again.", + "pos": 0.44, + "neu": 0.56, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f512" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6abcd60fca157e5f514" + }, + "professor_name": "Henry Ma", + "rating": 3, + "department": "Economics department", + "comments": [ + { + "text": "He works against you to make that you get bad grades. He doesnt want to post the review sheets for the exams even tho he has them. You have to take the exam during the class time compare to the rest of the profs that i have taken where they care about you and give a day or so to do the exam. Kicks you out if you cant answer a question.", + "pos": 0.042, + "neu": 0.897, + "neg": 0.061, + "_id": { + "$oid": "6711d6abcd60fca157e5f515" + } + }, + { + "text": "Absolutely terrible professor. All his materials are recycled garbages. This means that he doesn't take any effort at all to review the material that he sends to students and almost all the materials he sends are filled with major errors including answers to quiz and tests. He will not correct his errors and will fail you for his mistakes.", + "pos": 0.03, + "neu": 0.793, + "neg": 0.177, + "_id": { + "$oid": "6711d6abcd60fca157e5f516" + } + }, + { + "text": "Pros: Interesting grading criteria: Your grade is based on how your class performed. Easy online HW: online homework is pretty easy During online HW due day, there is no class. which is half the semester. tell like what it is. Cons: Confusing Grading system. to many question on test. will stop the lecture until that student answer.", + "pos": 0.204, + "neu": 0.705, + "neg": 0.091, + "_id": { + "$oid": "6711d6abcd60fca157e5f517" + } + }, + { + "text": "I took his course in Spring 2018. Theres a lot of homework but the course is not that hard. Its curved. The top 30% get A. The middle 40% get B and the bottom get C. So getting an A is very doable.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f518" + } + }, + { + "text": "He is so disrespectful. One of the worst professors in City. He dismisses you when you attempt to ask him a question about your grade. He is very rude. If he randomly calls on you and you don't know the answer he will stop the entire class until you give him the answer. If you are 2 mins late YOU'R ABSENT, don't even bother. HORRIBLE.", + "pos": 0.072, + "neu": 0.8, + "neg": 0.128, + "_id": { + "$oid": "6711d6abcd60fca157e5f519" + } + }, + { + "text": "This man is a savage. You always have to be on your toes during class. He will embarrass you if you cannot answer his question. If you pay attention in his class then you will understand the material. He expects you to memorize the formulas and no programmable calculators. Make sure to always ask questions in his class before he moves on.", + "pos": 0.034, + "neu": 0.837, + "neg": 0.129, + "_id": { + "$oid": "6711d6abcd60fca157e5f51a" + } + }, + { + "text": "His grading policy is clear. Be prepared to do a lots of annoying homework. If you miss a class, he will email about it and will warn you. Even lateness counts as an absence and he is strict about it. He will not move on with the course if you cannot answer his question during the class so always be ready. Get your hands on his previous exams.", + "pos": 0.097, + "neu": 0.827, + "neg": 0.076, + "_id": { + "$oid": "6711d6abcd60fca157e5f51b" + } + }, + { + "text": "Professor Ma is very strict. But the others are right. Stats is hard, but this is your best chance to pass stats.", + "pos": 0.287, + "neu": 0.657, + "neg": 0.055, + "_id": { + "$oid": "6711d6abcd60fca157e5f51c" + } + }, + { + "text": "I just had Professor Ma for Stats and the bottom line is that it's hard to fail his class. You just have to get a 40% or above to pass. His homeworks are on Hawkes and they help you learn the material although it's a lot at times. This class isn't an easy A but considering how difficult stats can be, this is your best chance at a passing grade.", + "pos": 0.124, + "neu": 0.773, + "neg": 0.103, + "_id": { + "$oid": "6711d6abcd60fca157e5f51d" + } + }, + { + "text": "Horrible. Constantly criticizes students for not knowing new material and acts like his class is the only class that matters.", + "pos": 0.141, + "neu": 0.627, + "neg": 0.231, + "_id": { + "$oid": "6711d6abcd60fca157e5f51e" + } + }, + { + "text": "Took his course last year. Lots of homework, but manageable. Everything you need is in the lectures.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f51f" + } + }, + { + "text": "Amazing professor. Clearly explains what is crucial to know for each exam. Just do the homework and you're guaranteed an A.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d6abcd60fca157e5f520" + } + }, + { + "text": "Just don't! Waste of money and time, no point whats so ever and yes you will fail no matter how hard you try. I don't know why i stayed, he is a pointless professor and a very boring lecturer.", + "pos": 0.11, + "neu": 0.662, + "neg": 0.229, + "_id": { + "$oid": "6711d6abcd60fca157e5f521" + } + }, + { + "text": "Be prepared to work hard. But he's clear enough so you won't get any surprises. One of the better City professors.", + "pos": 0.312, + "neu": 0.573, + "neg": 0.115, + "_id": { + "$oid": "6711d6abcd60fca157e5f522" + } + }, + { + "text": "statistics with Henry Ma wasn't too bad. As long as you can keep up with his math and stay focused you will be fine. He knows the material may be tough for many people so he does curve (even if he says he doesn't). My class was a hybrid so the homework counted a lot and it was not too different from his lectures. It's not an easy class but doable.", + "pos": 0.069, + "neu": 0.891, + "neg": 0.04, + "_id": { + "$oid": "6711d6abcd60fca157e5f523" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6accd60fca157e5f525" + }, + "professor_name": "Lucas Parra", + "rating": 3, + "department": "Biomedical department", + "comments": [ + { + "text": "He assumes that we know everything already and wont clarify things. The worst part is hell say Ive explained this 2 times already but here we go again in a sarcastic manner so students Feel ashamed to ask him questions because they dont wanna seem dumb obviously. He needs to be more considerate and stop faking like he cares when he doesnt.", + "pos": 0.178, + "neu": 0.615, + "neg": 0.207, + "_id": { + "$oid": "6711d6accd60fca157e5f526" + } + }, + { + "text": "Prof Parra is the kind of prof who we feel like was walking outside of class, saw a room open, and decide, let me teach them a thing or two. He does not prepare for lectures. He start the class by literally saying : uhm, what should we learn today. I was hoping to learn more coding about MRI, CT ect. I wish the BME choose for teaching not research", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f527" + } + }, + { + "text": "Awful instructor. Isn't organized and doesn't know how to teach. Only gets away with it because of his research responsibilities. City College needs to hire people who care about teaching and less about research.", + "pos": 0.084, + "neu": 0.838, + "neg": 0.079, + "_id": { + "$oid": "6711d6accd60fca157e5f528" + } + }, + { + "text": "His class is hard and the material is difficult to understand, but he is not a bad teacher. In lecture you learn a lot at a time and he is always available at office hours. The coding homeworks are hard-- and he could definitely spend more time in class going over coding-- but the TA's grade them fairly.", + "pos": 0.113, + "neu": 0.817, + "neg": 0.07, + "_id": { + "$oid": "6711d6accd60fca157e5f529" + } + }, + { + "text": "Expects you to know Matlab perfectly, so practice your coding. Otherwise, his class s ok.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f52a" + } + }, + { + "text": "This guy is all over the place, who let him teach? probably a good researcher but just doesn't cut it as a quality teacher.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f52b" + } + }, + { + "text": "Very dissapointed. I thought I would learn useful Matlab coding related to MRI and CT but did not. He did not finish the whole material. Plus he gets irritated when students don't understand his many hand gestures. Power of PINK!!", + "pos": 0.143, + "neu": 0.774, + "neg": 0.084, + "_id": { + "$oid": "6711d6accd60fca157e5f52c" + } + }, + { + "text": "Very new age professor. Teaches using powerpoint slides that are uploaded on blackboard. The Matlab part might seem educating, but the theoretical statistics are utterly useless and boring. Gives pop quizzes and hw on the matlab coding. Exam is based on statistics and the presentation on microscopes. One presentation/semester - easily graded", + "pos": 0.052, + "neu": 0.822, + "neg": 0.126, + "_id": { + "$oid": "6711d6accd60fca157e5f52d" + } + }, + { + "text": "Not a great professor", + "pos": 0.0, + "neu": 0.477, + "neg": 0.523, + "_id": { + "$oid": "6711d6accd60fca157e5f52e" + } + }, + { + "text": "That 12/17 posting is so fake, way to go Lucas? And who in the world thinks Parra is hot????", + "pos": 0.0, + "neu": 0.784, + "neg": 0.216, + "_id": { + "$oid": "6711d6accd60fca157e5f52f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6accd60fca157e5f530" + } + }, + { + "text": "he is in love in matlab", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f531" + } + }, + { + "text": "how can you concentrate in class when the professor is this HOT!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f532" + } + }, + { + "text": "is a kind of bravado", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f533" + } + }, + { + "text": "Very will prepared lectures, with excellent explanation during lectures. Very patient and one of the best by far at City College. Thumbs up! NO second thoughts about taking his class. Begin the semester clueless and dumb and end the semester wise and smart! Way to go Lucas.", + "pos": 0.256, + "neu": 0.608, + "neg": 0.136, + "_id": { + "$oid": "6711d6accd60fca157e5f534" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6accd60fca157e5f536" + }, + "professor_name": "Rosa Maria Prado", + "rating": 4.7, + "department": "Speech department", + "comments": [ + { + "text": "My favorite professor ever she is super kind and open to second chances, she gave me a chance to redo my presentation and I stayed on top ever since there are 3 presentations in this class that are so much easier when you use google slides or PowerPoint the first is a how-to the second is an informational presentation and the last one is persuasive", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f537" + } + }, + { + "text": "This professor is amazing! She is super cool and down to Earth, very reasonable and clear in her directions. Loved her!", + "pos": 0.52, + "neu": 0.48, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f538" + } + }, + { + "text": "has favorites, either u suck her ass and get an A or be urself and get a low grade", + "pos": 0.106, + "neu": 0.57, + "neg": 0.323, + "_id": { + "$oid": "6711d6accd60fca157e5f539" + } + }, + { + "text": "Professor Prado is super chill and understanding. She looks at improvement rather than how good of a speaker you are and is always very respectful and trying to help you do your best. I love her mini-stories and how relatable she is. Make sure to participate every now and then, and just hand in your stuff in time. Easy A while also learning 10/10", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f53a" + } + }, + { + "text": "This was my most favorite class. I def recommend taking her. Just make sure to participate and get all the work done which isn't much. Professor Prado is very generous and caring for her students. This class is a easy A. I promise you wont regret taking her class", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f53b" + } + }, + { + "text": "professor prado was a real gem !! Loved her class she was straight forward in what you need to pass the class. she doesn't give out a lot of homework. Gives great feedback and is such a sweetheart. Def recommend her class!", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f53c" + } + }, + { + "text": "She is caring and considerate, will try to make you succeed. Take the class and easily A guranteed. You just have to participate and make improvments throughout the semester and you are good to go. Only 4 presentation/speeches and one theatre review. 4 speeches do seem overwhelming but they will be end before you think. JUST TAKE HER CLASS. EASY A", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f53d" + } + }, + { + "text": "One of the only classes I looked forward to! Unfortunately it was online so the potential was limited but it was still a great class. Thorough feedback on speeches, clear that she wants her students to become better speakers by the end of the semester!", + "pos": 0.238, + "neu": 0.706, + "neg": 0.056, + "_id": { + "$oid": "6711d6accd60fca157e5f53e" + } + }, + { + "text": "Easiest class. 3-4 speeches. 1 theatre review that has to be 2-3 pages. Gives great feedback. Understanding professor. Easy A. You wont regret taking this class.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f53f" + } + }, + { + "text": "She was the reason why I always looked forward to this class. Even thought it was remote, she made it so fun. Very caring and understanding. Participation matters a lot in the class though. Overall one of my favorite professors ever I recommend her to everyone!", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f540" + } + }, + { + "text": "Absolutely loved her! I would recommend her to anyone taking her class, she made the class so interesting and she's such a great professor! Graded on 4 presentations, each no longer than 7 minutes, 2-3 quizzes on readings, a theater review and participation! She really cares about her students!", + "pos": 0.293, + "neu": 0.672, + "neg": 0.034, + "_id": { + "$oid": "6711d6accd60fca157e5f541" + } + }, + { + "text": "She is a great professor! Grading is super clear from day one just present your four speeches and show up. She gives good feedback to help you better your future speeches and she makes the course simple to the point it's hard to do well.", + "pos": 0.359, + "neu": 0.618, + "neg": 0.023, + "_id": { + "$oid": "6711d6accd60fca157e5f542" + } + }, + { + "text": "Professor Prado was such a great professor she cares about her students and gives good feedback on how to make your speeches better.", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f543" + } + }, + { + "text": "Professor Prado wants you to improve on your speeches, gives clear feedback and is very chill. Makes you write outlines to organize your speeches, however not much time to prepare (depending on when you go). Very understanding and helpful. Just practice, easy A.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f544" + } + }, + { + "text": "She is amazing, she truly cares about you and your progres. She does an exercise before each speech to see where you are in terms of comfort which really helps! You don't need to heavily read the textbook to understand, she gives you a digital copy. As long as you participate, come on time and follow the guidelines for a speech you'll do very well!", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d6accd60fca157e5f545" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6adcd60fca157e5f547" + }, + "professor_name": "Norma Fuentes-Mayorga", + "rating": 3.2, + "department": "Latin American Studies department", + "comments": [ + { + "text": "This is one of the worst professors I have taken here at City. She is unprofessional, and constantly rambles abut her during lectures! She wants students to participate, but will interrupt during every single answer! She also never grades her assignments and either uploads the wrong readings to BB or doesn't upload them at all", + "pos": 0.0, + "neu": 0.803, + "neg": 0.197, + "_id": { + "$oid": "6711d6adcd60fca157e5f548" + } + }, + { + "text": "caring professor, big heart and is very knowledgeable in their fields of study/expertise. just try to keep up with the readings and do your best with turning in work. big on communication. great teacher which is rare to come by at public uni. also cool to be taught by latino professor as a poc myself.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f549" + } + }, + { + "text": "Professor Fuentes is great and grades stuff right away for the most part. There aren't a lot of assignments for this class: an assignment, a midterm, a research proposal, an annotated bibliography, and a research paper. Participation accounts for 20% of the final grade, so do read the assigned readings.", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f54a" + } + }, + { + "text": "Dr. Fuentes has worked hard for her degree and expects all of her students to demonstrate the same work ethic as her, which in my opinion is totally unfair to do. If you take a class with her, prepare to read and read and read and read. She is okay at virtual learning, but she could give better lectures with powerpoints to help students understand", + "pos": 0.122, + "neu": 0.83, + "neg": 0.047, + "_id": { + "$oid": "6711d6adcd60fca157e5f54b" + } + }, + { + "text": "She is very caring and loves hearing student's stories that relate to the topics discussed. There is a lot of reading, so be prepared to read and participate in class. The final paper/podcast was confusing, but if you work with her one on one you'll ace it. I wish this course was a full year because of how interesting it was!", + "pos": 0.195, + "neu": 0.784, + "neg": 0.021, + "_id": { + "$oid": "6711d6adcd60fca157e5f54c" + } + }, + { + "text": "She is an amazing Professor. If you follow the readings or atleast try to skim them before each class you will be able to participate. She tries to engage every student and all stories and personal experiences are encouraged. If you don't put in effort and ask 0 questions you shouldn't expect an A! She wants all of her students to do well.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f54d" + } + }, + { + "text": "I really liked this professor. Be prepared to read. But its interesting. She knows her stuff. Do your reading and you will be alright", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f54e" + } + }, + { + "text": "She really cares for her students. Just know that if you put in the work and time you will most likely get an A", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f54f" + } + }, + { + "text": "She knows her stuff. She is nice. She cares. BUT I still do not know ANY of my grades from last semester. Seldom answers emails. My final grade is based on grades I DO NOT KNOW. Unless you are a teachers pet, you better do ALL of your work with A++ potential.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f550" + } + }, + { + "text": "Honestly, she is a very nice woman but not the best professor. Her classes are filled with way too much material and its difficult to keep up. Her assignments are unclear and due dates are too close together. If you don't have to take her then don't.", + "pos": 0.072, + "neu": 0.745, + "neg": 0.183, + "_id": { + "$oid": "6711d6adcd60fca157e5f551" + } + }, + { + "text": "Personable but is not a good professor. 13 minutes late to EVERY class. Readings were inaccessible 90% of the time, then got upset when class didn't read. Lectures were unclear and repetitive. NEVER answers emails, doesn't give clear directions, arrogant when students ask questions. Few TEDIOUS assignments, all within last 2weeks.", + "pos": 0.0, + "neu": 0.708, + "neg": 0.292, + "_id": { + "$oid": "6711d6adcd60fca157e5f552" + } + }, + { + "text": "Unfortunately, I ignored the reviews&took her class. She is unorganized & unprofessional. Too bad, she was nice at times. Mostly condescending. The few assignments given were VERY unclear&was rude if you ask for clarification, didn't get grades back until end of semester. Stated it was a 300 level course but didn't teach like a 300 level professor", + "pos": 0.029, + "neu": 0.772, + "neg": 0.199, + "_id": { + "$oid": "6711d6adcd60fca157e5f553" + } + }, + { + "text": "unorganized!!!!!!!! Do not want to ever deal with her again", + "pos": 0.0, + "neu": 0.79, + "neg": 0.21, + "_id": { + "$oid": "6711d6adcd60fca157e5f554" + } + }, + { + "text": "She's a very nice woman but a horrible professor: very unorganized, never uploads texts on time, and NEVER RESPONDS TO EMAILS! Ive gotten a lot of anxiety from this course due to her terrible teaching practices, so if you don't have to take her I'd advise you to stay away. Constantly boasts Columbia education, but its not reflected in her teaching.", + "pos": 0.029, + "neu": 0.811, + "neg": 0.16, + "_id": { + "$oid": "6711d6adcd60fca157e5f555" + } + }, + { + "text": "She was really straight forward for what you needed to know for exams. Always encouraged students to come to office hours. MUST read to be able to participate and enjoy the class. She gives really interesting material, and is a very respected professor. She's humble, brilliant, and makes things as simple as possible to get. WOULD TAKE AGAIN!!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f556" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6adcd60fca157e5f558" + }, + "professor_name": "Andrew Blake", + "rating": 2.6, + "department": "Biology department", + "comments": [ + { + "text": "Andrew is hands down one of the best TA's I've had to ccny. His exams are straightforward forward and he always gives extra time when needed.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f559" + } + }, + { + "text": "Literally the worst ta. Avoid him at any cost", + "pos": 0.0, + "neu": 0.526, + "neg": 0.474, + "_id": { + "$oid": "6711d6adcd60fca157e5f55a" + } + }, + { + "text": "he is the worst ta you can ever take, he is unfair when it comes to grades. he acts like he knows everything but you ask him questions he is not gonna give you a clear response", + "pos": 0.12, + "neu": 0.772, + "neg": 0.108, + "_id": { + "$oid": "6711d6adcd60fca157e5f55b" + } + }, + { + "text": "Literally the best TA i've ever had at CCNY!! Andrew always made lab more entertaining and kept us in the loop about any issues. His quizzes and exams was fair and he was very understanding and went over material, ALWAYS! He didn't care if we didn't have enough time, if there was something we didn't understand, he'd explain it until we got the conc", + "pos": 0.144, + "neu": 0.82, + "neg": 0.036, + "_id": { + "$oid": "6711d6adcd60fca157e5f55c" + } + }, + { + "text": "One of the most laid-back TAs out there. The entire vibe of the lab is very relaxed, and a good mix of fun, and work. Study the lab manual of the previous lab, and current lab before the quizzes, and you will do well on his quizzes. He grades them fairly and would drop any question that was ambiguous. Highly recommend this TA.", + "pos": 0.198, + "neu": 0.774, + "neg": 0.028, + "_id": { + "$oid": "6711d6adcd60fca157e5f55d" + } + }, + { + "text": "Grossly incompetent and disorganized. Would openly admit he didnt know basic statistics or plant physiology all while we were expected to do tedious lab reports with little to no guidance. Its just unfathomable the disconnect between the expectations of students and the actual competence of the instructors.", + "pos": 0.034, + "neu": 0.794, + "neg": 0.172, + "_id": { + "$oid": "6711d6adcd60fca157e5f55e" + } + }, + { + "text": "There is a quiz everyday. There are two lab exams, one being the final exam. He is not very clear on instructions, just follow the lab manual. He says one thing, and the manual says another thing. He is a nice guy, he is not very clear though, which makes things confusing.", + "pos": 0.049, + "neu": 0.835, + "neg": 0.117, + "_id": { + "$oid": "6711d6adcd60fca157e5f55f" + } + }, + { + "text": "You can try so hard but not being able to do well on his quizzes, exams are hard too. He is strict with rules and grading. Lab manual has a lot of information but he gets you on the very detail. I came prepare but it was not enough. He curves based on the highest score, which makes no sense. If you have option, don't risk taking him. Otherwise, GL", + "pos": 0.113, + "neu": 0.813, + "neg": 0.074, + "_id": { + "$oid": "6711d6adcd60fca157e5f560" + } + }, + { + "text": "Andrew is the man. He is very good at essentializing seemingly complex topics and breaking them down. Especially on the more quantitative type problems in the beginning to middle of the course, Andrew really helped me a lot. He was also a huge help to us in 350 lab often putting in extra time, incl. during spr. break. Semester VIP. Thank you Andrew", + "pos": 0.197, + "neu": 0.763, + "neg": 0.04, + "_id": { + "$oid": "6711d6adcd60fca157e5f561" + } + }, + { + "text": "He teaches the workshops for genetics. Went to a couple of them and I was able to get through the homework with his help, but then I noticed that I can get through it a lot better on my own. He talks too much and is a bit annoying. He tries to be helpful but he's really not. It's so weird to say that, but it's the truth.", + "pos": 0.153, + "neu": 0.768, + "neg": 0.079, + "_id": { + "$oid": "6711d6adcd60fca157e5f562" + } + }, + { + "text": "Blake is NOT the best person to learn from if that's why you're in the course. He's tries his best but he's very lackluster in the way he teaches and isn't great with information. But he's always willing to offer help if he can. Great personality but not too bright. Just show up and do the work. You should be fine.", + "pos": 0.18, + "neu": 0.695, + "neg": 0.125, + "_id": { + "$oid": "6711d6adcd60fca157e5f563" + } + }, + { + "text": "Blake is tough, but you can't blame him. He's working under the supervision of Dr. Jerry Guyden, one of the most demanding professors in City. Once you get past Blake's tough personality and really show him that you're serious, he'll go out of his way to help you. You have to study real hard. If you don't understand his explanations, ask questio", + "pos": 0.087, + "neu": 0.786, + "neg": 0.126, + "_id": { + "$oid": "6711d6adcd60fca157e5f564" + } + }, + { + "text": "He didn't know how to explain stuff and didn't know how to teach.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f565" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6adcd60fca157e5f566" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6adcd60fca157e5f567" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6adcd60fca157e5f569" + }, + "professor_name": "Adeyinka M. Akinsulure-Smith", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "You will learn more than you expect about trauma from Professor Yinka's class. There are many assignments like writing short weekly journals, a summary journal, creating a self-care plan, a very long research paper, and a group case conceptualization paper and presentation on a book that must be read. It can be overwhelming but a good class overall", + "pos": 0.114, + "neu": 0.856, + "neg": 0.03, + "_id": { + "$oid": "6711d6adcd60fca157e5f56a" + } + }, + { + "text": "Take her and you won't regret it.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f56b" + } + }, + { + "text": "Taking Prof. Adeyinka's course was life changing. Everything about her and her course was amazing. Your level of critical thinking, knowledge of counseling, empathy, and support for others increases as a result of Prof. Adeyinka's personality and method of teaching. Her support throughout in & out of class was so helpful. Study hard for the final!", + "pos": 0.195, + "neu": 0.745, + "neg": 0.059, + "_id": { + "$oid": "6711d6adcd60fca157e5f56c" + } + }, + { + "text": "Dr. Yinka was one of the best professors I've ever had. She showed so much passion in her lectures and cared for her students. Get ready to read lectures and the textbook because both are on the exams. If you keep up with the readings (they're interesting) and the lectures, participate, and do the mini writing assignments, you'll pass.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f56d" + } + }, + { + "text": "Prof. Adeyinka changed my life. Her knowledge of the subject plus her passion is inspirational. I learned so much and she's motivated me even more to be a counselor. She is simply a high caliber Professor & during class you'll see more of who she is apart from being a doctor. She is awesome and wants you to think outside the box & within yourself", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f56e" + } + }, + { + "text": "Can be dismissive of you.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f56f" + } + }, + { + "text": "Professor mostly reads from her slides At times she did not even read slides prior to class and had difficulty reading them.", + "pos": 0.0, + "neu": 0.897, + "neg": 0.103, + "_id": { + "$oid": "6711d6adcd60fca157e5f570" + } + }, + { + "text": "She wasn't a bad professor but not amazing either. You can tell she is very uninterested with this class because she only read straight from the book so if you read, you'll do great. PowerPoint presentations are good, go to the recitation class for attendance, and do her 3 papers on time", + "pos": 0.212, + "neu": 0.724, + "neg": 0.063, + "_id": { + "$oid": "6711d6adcd60fca157e5f571" + } + }, + { + "text": "Amazing professor, can't say enough about her. Class discussion is great! just stick to the syllabus and what he requires from you and you should be fine", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f572" + } + }, + { + "text": "Great professor. She is clear with explaining the material and really makes sure everyone understands. She is helpful even outside of the classroom if you need her help. Highly recommended.", + "pos": 0.413, + "neu": 0.587, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f573" + } + }, + { + "text": "Great professor. Shes really clear with the material and really makes sure everyone understands. Extremely helpful outside of class if you need extra help as well. Highly recommended.", + "pos": 0.482, + "neu": 0.518, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f574" + } + }, + { + "text": "highly recommended...very organized, clear professor..i learned a lot in this class. she is fair in grading and very helpful even outside of the class.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f575" + } + }, + { + "text": "Great professor! She's organized and clear! I would take her class all over again! I learned so much! :)", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f576" + } + }, + { + "text": "I had a really awakening when i took her Violence against women class. I wish i could take it again!!!!!", + "pos": 0.104, + "neu": 0.693, + "neg": 0.203, + "_id": { + "$oid": "6711d6adcd60fca157e5f577" + } + }, + { + "text": "Wonderful professor, highly reccommended.", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d6adcd60fca157e5f578" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6aecd60fca157e5f57a" + }, + "professor_name": "Craig Hutchison", + "rating": 4.1, + "department": "Speech department", + "comments": [ + { + "text": "I took his class in 2013, still can't forget his lack of empathy. I made it to 90% of his classes while juggling time between school and visiting my sick mom in the hospital. She passed away and I missed class for her funeral. I explained myself and did extra credit instead of grieving, and he still dropped my A to a B-. Shame on you Professor.", + "pos": 0.078, + "neu": 0.741, + "neg": 0.181, + "_id": { + "$oid": "6711d6aecd60fca157e5f57b" + } + }, + { + "text": "ridiculous grader", + "pos": 0.0, + "neu": 0.286, + "neg": 0.714, + "_id": { + "$oid": "6711d6aecd60fca157e5f57c" + } + }, + { + "text": "This guy is the man. Not the easiest grader but his class is straightforward. He gives you the opportunity to be creative! He is a professor that can teach!", + "pos": 0.227, + "neu": 0.726, + "neg": 0.047, + "_id": { + "$oid": "6711d6aecd60fca157e5f57d" + } + }, + { + "text": "He's hilarious! Although he's assigns 8 speeches and an written paper, he has no strict requirement for performing your speech except reading directly from your outline. Also every assignment is counted the same towards your grade, including the final. He also has extra credit work that you can do to raise your grade. Take him, you won't regret it.", + "pos": 0.122, + "neu": 0.845, + "neg": 0.034, + "_id": { + "$oid": "6711d6aecd60fca157e5f57e" + } + }, + { + "text": "the speech topics are really good and he is really funny too. Trust me you guys will like him. 8 speeches, 2 tests, and 1 paper. Loved the class.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f57f" + } + }, + { + "text": "He makes class fun! you have to do 8 speeches, that's good since it is a speech class. He says he won't make you do anything you don't want to do, so if you choose not to do your speech, you're only hurting yourself and grade. Read the handbook and participate. He gives good feedback and you'll definitely improve.", + "pos": 0.211, + "neu": 0.733, + "neg": 0.055, + "_id": { + "$oid": "6711d6aecd60fca157e5f580" + } + }, + { + "text": "I totally underestimated this class until I started getting bad grades on the speeches. Then I started to actually practice the speeches at home and made index cards to organize my thoughts. My only criticism about the prof. is that he does not provide enough written feedback on the speeches. He needs to explain why the student deserved that grade.", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d6aecd60fca157e5f581" + } + }, + { + "text": "Prof. Hutchison is great. If you want an easy A take him. No homework for his class. Only a midterm and a final (fairly easy) and one final paper (2 to 3 pages). If you don't mind talking in front of the class take him. There are 8 speeches in total and you don't have to be great. Just go up and talk you will get an A. He is extremely funny.", + "pos": 0.216, + "neu": 0.759, + "neg": 0.026, + "_id": { + "$oid": "6711d6aecd60fca157e5f582" + } + }, + { + "text": "Great guy , really funny. if your good at public speaking or even ok youll do fine. if your not and prefer to do more essays and less actual speeches then dont take his class because all other speech professors give a max of 4 speeches yet he does 8. Theres no hw or anything in his class which is a plus.", + "pos": 0.196, + "neu": 0.774, + "neg": 0.03, + "_id": { + "$oid": "6711d6aecd60fca157e5f583" + } + }, + { + "text": "Great professor! Very funny! He makes you not want to miss his class. You'll pass as long as you do your assignments. Very helping in making you understand that day's lecture. Definitely recommend him!", + "pos": 0.38, + "neu": 0.593, + "neg": 0.027, + "_id": { + "$oid": "6711d6aecd60fca157e5f584" + } + }, + { + "text": "LOVE THIS PROFESSOR! He is soo funny. There are 8 speeches, one essay. Hutchison is such a generous grader, he allows 5 extra credit assignments as long as you make all your speeches. There is one written final (short answers). Hutchison taught me a lot even though he didn't give students rigorous work. He's a great professor. TAKE HIM!!!", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f585" + } + }, + { + "text": "the best teacher !! its a class you wont regret taking!", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f586" + } + }, + { + "text": "I would recomend this professor to ANYONE. He is extremely funny and makes it very difficult for anyone to dislike this class. Easy A. no real homework, just make sure you do what little easy work he assigns.", + "pos": 0.222, + "neu": 0.625, + "neg": 0.153, + "_id": { + "$oid": "6711d6aecd60fca157e5f587" + } + }, + { + "text": "Very funny, makes taking speech a fun and pleasurable experience. YOU MUST HAVE A SENSE OF HUMOR FOR THIS CLASS!!!", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f588" + } + }, + { + "text": "The best speech teacher ever. Very understanding, and catches every single student's attention. Very funny as well. Doesn't care if you miss a class, but he is so good you wouldn't want to", + "pos": 0.274, + "neu": 0.62, + "neg": 0.106, + "_id": { + "$oid": "6711d6aecd60fca157e5f589" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6aecd60fca157e5f58b" + }, + "professor_name": "Alex Welcome", + "rating": 2.6, + "department": "Sociology department", + "comments": [ + { + "text": "PLEASE DON'T TAKE THIS PROFESSOR!!! SAVE YOURSELF. He doesn't accept the final paper even if it is a few minutes late. He ruined my average and chances of getting into the rad tech program", + "pos": 0.22, + "neu": 0.66, + "neg": 0.12, + "_id": { + "$oid": "6711d6aecd60fca157e5f58c" + } + }, + { + "text": "Everything must be hand written. He makes you take notes, then create cornell notes out of those notes. Makes you do 350 word in class essays , question sets for a book you MUST buy for his class, ALL FOR NOTHING! because out of all the things he lists for you to do on the day of he'll only collect maybe 2 out of the 40 things that he asked for smh", + "pos": 0.073, + "neu": 0.897, + "neg": 0.03, + "_id": { + "$oid": "6711d6aecd60fca157e5f58d" + } + }, + { + "text": "If i could grade this professor, I'd give him an F. He is good at teaching his material, however, he is very disorganized, not understanding of the fact that we do have other classes and lives outside of his class. On the last two weeks of class, he gave us 2 papers and a 21 slide slideshow(with photographs we have to take) due on the last day....", + "pos": 0.041, + "neu": 0.923, + "neg": 0.035, + "_id": { + "$oid": "6711d6aecd60fca157e5f58e" + } + }, + { + "text": "This professor is extremely knowledgeable on the subject he teaches, and you can tell through his teaching style. Although he is EXTREMELY strict on his grading policy, it is not impossible to earn a good grade. Attendance is mandatory and so is reading every night as the quizzes are always text based.", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f58f" + } + }, + { + "text": "This professor is one of the most stubborn professors in the college. He is completely disorganized and over emphasizes his reasoning through quotes and food for some reason. If u miss a word in his quizzes/ exams kiss the grade that you truely have earned goodbye. Don't take a class with this professor", + "pos": 0.048, + "neu": 0.832, + "neg": 0.12, + "_id": { + "$oid": "6711d6aecd60fca157e5f590" + } + }, + { + "text": "This is probably the worst professor in the college. I am a professor at another college and I have never seen anyone grade on format over content. On an 18 line paper I cited 15 lines and received a C for not citing the other 3. LITERALLY! Another paper I received a C because he wanted Times New Roman Font size 12 and mistakenly used Arial size 11. That's 2 C's having nothing to do with content. DO NOT TAKE THIS PROFESSOR!", + "pos": 0.0, + "neu": 0.921, + "neg": 0.079, + "_id": { + "$oid": "6711d6aecd60fca157e5f591" + } + }, + { + "text": "Very confusing!!!Likes to link everything to music! He also has a tendency to lose grades and papers and can be very unfair with his grading! I would advise anyone to avoid him", + "pos": 0.0, + "neu": 0.754, + "neg": 0.246, + "_id": { + "$oid": "6711d6aecd60fca157e5f592" + } + }, + { + "text": "no no no no ... theres so many things wrong with this professor its not enough space. listen to me dont talk this professor. very very very unfair and thinks he cool which is annoying", + "pos": 0.173, + "neu": 0.609, + "neg": 0.218, + "_id": { + "$oid": "6711d6aecd60fca157e5f593" + } + }, + { + "text": "Not as easy or awesome as everyone mentioned before. very strict on guidelines. Collects notes. wants things a certain way. counts the lines in his essays. very hard grader. Took him in the summer and it was not that easy going. But he is very intellegent and able to explain the concepts so that you are able to understand.", + "pos": 0.065, + "neu": 0.859, + "neg": 0.076, + "_id": { + "$oid": "6711d6aecd60fca157e5f594" + } + }, + { + "text": "So I went on here to see if he was a good teacher so I took him. Ummm not. Apparently he's more strict with his class now cuz he has his masters degree. The format of the papers are dumb. He take off points for little ass mistakes. Makeup papers are 8 pg and he grades it harshly. He's not the cool dude everyone says he is. Don't do it.", + "pos": 0.037, + "neu": 0.827, + "neg": 0.136, + "_id": { + "$oid": "6711d6aecd60fca157e5f595" + } + }, + { + "text": "Mayb this teacher was cool in the past but listen to me ppl DONT DO IT.he collects class notes on random and grades it harshy.gives you a sylabus and dont even goes by it.like i never had a teacher lik this one.to me clearly the worst.a bunch of 8 page paper he force you to do or just keep the grade u got.if its 1 comment u should go by is this 1", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f596" + } + }, + { + "text": "Awesome professor. He makes sure you understand everything, and will give different examples to help you if you do not understand.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f597" + } + }, + { + "text": "Had him for Soc Theory. Great teacher, definitely take him.", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f598" + } + }, + { + "text": "Great professor! explains everything clearly, very funny and keeps things real! if u know about sports, comedy and bacon thats a plus. only shame he's only teaches in the summer.", + "pos": 0.318, + "neu": 0.607, + "neg": 0.075, + "_id": { + "$oid": "6711d6aecd60fca157e5f599" + } + }, + { + "text": "He is very good. I just wish he was a permanent professor. He explains the materials for Social Theory very well. Easy papers to do and a final that is open book.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d6aecd60fca157e5f59a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6afcd60fca157e5f59c" + }, + "professor_name": "Lavinia Ciungu", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "if u ever see a class being taught by her TAKE IT, she is by far the best prof I have had at this college, gives many review sessions before midterms and the final, provides review sheets for the midterms, she is also a fair grader and teaches very well. She is also always available via email. Midterms(2 of them 25% each) final(40%) hw is (10%).", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f59d" + } + }, + { + "text": "Great at explaining concepts & providing practice. Make sure to study on own time too. HW thru mymathlab. Review sheet b4 every midterm. Numerous review sessions b4 midterms & finals. Seriously the greatest professor of all time. Super caring and sweet. Deserves the strongest hugs of all time. Any class taught by her... TAKE IT.", + "pos": 0.36, + "neu": 0.617, + "neg": 0.023, + "_id": { + "$oid": "6711d6afcd60fca157e5f59e" + } + }, + { + "text": "Best professor, EVER. Provides extra credit, and lots of review sessions as midterm/finals near. If you do not take her, you are wasting your life.", + "pos": 0.216, + "neu": 0.698, + "neg": 0.086, + "_id": { + "$oid": "6711d6afcd60fca157e5f59f" + } + }, + { + "text": "She is probably the nicest person you will meet at CCNY. She explains everything so well material won't be harder than learning abc's. Everyone was scaring me by telling me how hard the final was honestly with her material it was the easiest exam I had taken in my life.Go to her class pay attention and I promise you will do good.", + "pos": 0.224, + "neu": 0.701, + "neg": 0.075, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a0" + } + }, + { + "text": "Guys, if you need to take this class; take it with her. She's kind, respectful, and cares about her students. She makes sure the class understand the topics and has time for questions. She also relies to emails if you had questions or concerns. Just make sure to do the work, study, and ask questions if needed. You won't regret taking it with her.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a1" + } + }, + { + "text": "literally the sweetest woman EVER!! if you have the chance to take her class, please do. you wont regret it AT ALL. shes amazing", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a2" + } + }, + { + "text": "I absolutely love her! Her teaching style is very good and she wastes no time when teaching the material. This is the first professor I have met who truly cares about her students. She goes out of her way and makes time to host online lectures when we ask her to and review sessions that are super beneficial. Plus, you are well-prepped for exams!", + "pos": 0.262, + "neu": 0.711, + "neg": 0.027, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a3" + } + }, + { + "text": "She's an amazing professor if you have the option to take her please do. She is very forgiving in her exams and her lectures are all the more reason to take her class. Do yourself a favor and don't miss out on this opportunity.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a4" + } + }, + { + "text": "Best Math professor i had yet in city college. Amazing lectures and notes that are posted on blackboards. The exams that she makes are very short and easy. Just make sure to study because the math department makes the most difficult exams ever.", + "pos": 0.248, + "neu": 0.7, + "neg": 0.051, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a5" + } + }, + { + "text": "She is a fantastic professor. Her lectures aren't boring to the point of falling asleep and she provides incredible notes. She gave us review sheets for problems that would be on the exam and even allowed us to bring formula sheets to her midterms. If you can, take her. You will not regret it.", + "pos": 0.129, + "neu": 0.801, + "neg": 0.07, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a6" + } + }, + { + "text": "Best Math professor i've had so far, exams are quite easy. Following lectures are very easy, and she makes sure everyone is learning. if you're taking math 212 or any other math apply to her class.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a7" + } + }, + { + "text": "Best professor I've ever had. She makes sure everything is clear. Her handwriting is neat and easy to follow, and she explains everything! She's always available after class for questions, and she responds quickly to emails. She's a gem! The math department could use more people like her. The content is hard, but she makes it very understandable.", + "pos": 0.193, + "neu": 0.789, + "neg": 0.019, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a8" + } + }, + { + "text": "TAKE PROFESSOR CIUNGU. I have never had a teacher that is this determined in helping her students pass. The material itself is pretty hard and it was definitely made easier since the final and the two midterms were online. Leading up to the final, Professor Ciungu made about 6-7 additional zoom calls which addressed individual questions. Best prof!", + "pos": 0.257, + "neu": 0.723, + "neg": 0.02, + "_id": { + "$oid": "6711d6afcd60fca157e5f5a9" + } + }, + { + "text": "She is one of the best Calc teachers I have ever had. I wish all professors were like her. She is understanding, open-minded, and a great teacher!", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5aa" + } + }, + { + "text": "Very caring, no homeworks. Just a couple quizes, 2 midterms and final. The material is pretty easy and she makes it enjoyable.", + "pos": 0.391, + "neu": 0.532, + "neg": 0.078, + "_id": { + "$oid": "6711d6afcd60fca157e5f5ab" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6afcd60fca157e5f5ad" + }, + "professor_name": "Johnson Desilva", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "This Professor has a unique way of teaching. She emphasizes that student should be able do \"writing to learn\"; this method would make you better at science writer. She trend to get emotional about certain topics, and is slightly moody but she means wells. DONT BE LATE FOR HER CLASS!!! DO the assignments youll get and A.", + "pos": 0.132, + "neu": 0.842, + "neg": 0.026, + "_id": { + "$oid": "6711d6afcd60fca157e5f5ae" + } + }, + { + "text": "Excellent Professor but a bit crazy, Very lenient, a lot of work, but if you do all of them and on time, you will get a A, it is the key to the class. She lets you write freely about your own stuff. Teaches you how to write outside the box, and very interesting. Participation is also key in the class. Very kind, open, accepting, take this class", + "pos": 0.257, + "neu": 0.708, + "neg": 0.036, + "_id": { + "$oid": "6711d6afcd60fca157e5f5af" + } + }, + { + "text": "Be on time. Do all the assignments. Don't cross her. Don't ask stupid questions via google group. Be nice and become her friend. If you don't, you will not receive the grade you truly deserve.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b0" + } + }, + { + "text": "She simply is one of the most unique and motivating teacher in CCNY. She teaches completely different from any professor, but trust in her \"system\", and keep a good work ethic, you'll do very well. She's one professor to remember.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b1" + } + }, + { + "text": "This is one of the best professors that I have encountered at CCNY. She is very inspiring and motivates you to do better.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b2" + } + }, + { + "text": "SHE IS ONE OF THE BEST PROFESSOR I HAVE COME ACROSS AT CCNY. DO HOMEWORKS AND FOLLOW HER INSTRUCTIONS YOU WILL GET AN EASY A. BIGINNING YOU MAY FEEL HEAVY WORKLOAD BUT YOU SHOULD WORK TO GET GOOD GRADES. TAKE HER CLASS, YOU WILL GET GOOD GRADE.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b3" + } + }, + { + "text": "Amazing teacher. Very insightful, and when approachable is very helpful but is kind of crazy or all over the place.", + "pos": 0.178, + "neu": 0.68, + "neg": 0.142, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b4" + } + }, + { + "text": "She is amazing. Such a great professor. Not only will you learn how to write, to read critically, and to give excellent oral presentations but also how to think about life in general. She promotes reading and writing all the time. Even if it's something silly. Take her, you will truly learn how to think and analyze everything in your life.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b5" + } + }, + { + "text": "Very insightful professor. She is very passionate about teaching and helping students to learn. Taking her class was one of the best decisions I have ever made.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b6" + } + }, + { + "text": "Best Professor ever!", + "pos": 0.692, + "neu": 0.308, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b7" + } + }, + { + "text": "Very insightful and fair professor.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b8" + } + }, + { + "text": "She is the best proffessor for ENG 210 i would reccomend her eyes closed. she is a very very nice and understanding.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5b9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6afcd60fca157e5f5ba" + } + }, + { + "text": "A little nutty, but a good professor.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d6afcd60fca157e5f5bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b0cd60fca157e5f5bd" + }, + "professor_name": "Laura Wallace", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "My favorite professor ever. If you read, you pass. I wish she taught other english courses, I'd take them all. Not an easy A, but definitely easy to work towards it. She makes the readings fun.", + "pos": 0.331, + "neu": 0.633, + "neg": 0.036, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5be" + } + }, + { + "text": "Such a kind person and so helpful. Gives plenty papers to write but always gives feedback and helps you with it if she sees you're struggling. If excuse is reasonable she will give extra time to finish it. But truly makes writing a breeze. Would love to take another class where she teaches it!!!", + "pos": 0.282, + "neu": 0.666, + "neg": 0.052, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5bf" + } + }, + { + "text": "GIVES MANDATORY ESSAYS VERY SWEET AND GIVES INDIVIDUAL FEEDBACK DURING CLASS SHE WILL GIVE YOU EXTENSIONS IF NEEDED NOT A LOT OF HOMEWORK BESIDES THE ESSAYS I WOULD TAKE HER AGAIN", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c0" + } + }, + { + "text": "She is one of the best, very sweet and understanding. She gives great feedback and tries really hard to make sure everyone understands the topic at hand. I used to fall asleep in her class but only because a lot of writing is done in class. As long as you complete assignments and receive feedback and fix mistakes, you'll be fine!", + "pos": 0.19, + "neu": 0.745, + "neg": 0.065, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c1" + } + }, + { + "text": "Attendance is mandatory and is a must. This is no easy A class. You have to work hard and put in effort to receive a good grade. Laura is a good professor and is helpful. Her papers can be tedious and she grades leniently.", + "pos": 0.191, + "neu": 0.735, + "neg": 0.074, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c2" + } + }, + { + "text": "She is one of the best professors I've had in CCNY so far! She is very helpful and her papers are doable. PS: In my opinion, she is pretty hot, so make sure to never skip class!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c3" + } + }, + { + "text": "I am so happy I took her! Great professor. She is so nice and sweet. I absolutely love her British accent. I enjoyed her class a lot because she was super helpful and understanding. TAKE HER. Yes, you have to do the work but it pays off at the end.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c4" + } + }, + { + "text": "She is my favorite professor!", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c5" + } + }, + { + "text": "AMAZING INSTRUCTOR!!!!!! Very helpful, takes the time to explain the text and eager to help students. Take her!!! she's great!", + "pos": 0.547, + "neu": 0.453, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c6" + } + }, + { + "text": "I also took her 19thC Novel course. I had never read so much for one course before, but it was worth it. She is a very nice professor; friendly demeanor. Her lectures are clear enough. She gives daily quizzes, which are a pain but they at least make sure you read every night. The midterm is easy, she grades leniently.", + "pos": 0.29, + "neu": 0.654, + "neg": 0.056, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c7" + } + }, + { + "text": "I took her for 19th century british novel. she is by far, the best professor i have had. she's so nice and she's so helpful!!! a lot of those novel can be very confusing and she goes over them carefully!", + "pos": 0.347, + "neu": 0.612, + "neg": 0.041, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c8" + } + }, + { + "text": "She goes over the required reading very carefully, which is very useful for her almost everyday quizzes. The midterm and final are essay format, but are easy if you pay attention. She's very available for help before and after class if needed.", + "pos": 0.226, + "neu": 0.742, + "neg": 0.032, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5c9" + } + }, + { + "text": "She's very helpful when explaining the class material. She also doesn't joke with attendance. She also has a cool British accent", + "pos": 0.213, + "neu": 0.712, + "neg": 0.075, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5ca" + } + }, + { + "text": "L. Wallace is a fantastic professor! It's a lot of work but worth it since she's really nice. She cares about attendance so try to avoid being absent. For my Victorian Era class, we had to read Bleak House, Jane Eyre and Middlemarch. All great books however long. Everyday there is a quiz on the reading. One final paper. A midterm and a final exam.", + "pos": 0.235, + "neu": 0.726, + "neg": 0.039, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5cb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b0cd60fca157e5f5cd" + }, + "professor_name": "Alejandra Iannone", + "rating": 1.6, + "department": "Philosophy department", + "comments": [ + { + "text": "2 Tests, 1 Final Paper, 1 extra credit, weekly reading responses and quizzes. SUPER harsh grader. I think only about a few people actually aced the class. Multiple people dropped it. She is rude and impatient when answering questions. I don't know why she teachers introduction. Its an introduction class, not graduate studies! SYG- save your grade!", + "pos": 0.157, + "neu": 0.727, + "neg": 0.116, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5ce" + } + }, + { + "text": "Horrible Professor, has limited knowledge of what she is trying to teach. Do not tolerate questions and aways rudely replies with: \"trust me, I know what I am talking about\" As someone else has putted, she would not pass her own class. AVoid her!!", + "pos": 0.061, + "neu": 0.726, + "neg": 0.212, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5cf" + } + }, + { + "text": "The workload is easy. The problem is her attitude and harsh grading. She is unclear with directions. She is funny but also rude, snappy, and sarcastic. If you have experience with hard readings, you'll have no problem with the material. Figure out how she grades though. 1 Quiz & 1 Reading Response per week. 2 Midterms. 1 Final Paper. AVOID!!!", + "pos": 0.091, + "neu": 0.667, + "neg": 0.242, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d0" + } + }, + { + "text": "Horrendous professor. This professor has a chip on her shoulder which she takes out on her students. If she were to have herself as a professor she would never pass her own class. She does not understand the material she teaches and gets flustered when questions are asked, thus turning her aggressive. Latenesses are taken personal. Steer clear.", + "pos": 0.041, + "neu": 0.844, + "neg": 0.116, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d1" + } + }, + { + "text": "do not waste your money or time.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d2" + } + }, + { + "text": "Absolutely worst professor I have thus far! If you don't understand what she's talking about, she basically makes you feel like an idiot, as if you should know the material better than her. Holds you back after class time because she \"feels like it\". Stay far, far away from her. I find that because she's so young, she wants to show power over you.", + "pos": 0.109, + "neu": 0.788, + "neg": 0.103, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d3" + } + }, + { + "text": "PLEASE AVOID!!! She is the worst professor I have met. And she can not teach, although she is very sarcastic and funny sometimes, other than that she cannot clarify the work she gives. The readings are difficult to understand and she goes through them quick. She makes us answer the question but does not tell us if it is right.", + "pos": 0.061, + "neu": 0.807, + "neg": 0.131, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d4" + } + }, + { + "text": "Pleaseee if you can AVIOD! Yes on day 1 it seems like its going to be a good and fun class but that just is NOT the case going further in the semester! She is not clear on the readings and a harsh grader on reading responses. Overly dramatic is an understatement.", + "pos": 0.136, + "neu": 0.755, + "neg": 0.109, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d5" + } + }, + { + "text": "Despite her annoying little requirements and lack of availability, I really learned from this class. She won't let you through her class easily. Patience and effort are essential. I struggled and was so frustrated with it for the entire semester, but got an A. She makes philosophy difficult, but it is do-able. Avoid if you seek an easy class.", + "pos": 0.102, + "neu": 0.727, + "neg": 0.17, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d6" + } + }, + { + "text": "Avoid.", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d7" + } + }, + { + "text": "AVOID!! I was always reluctant to take Philosophy, bc I was afraid it was going to confuse me. After taking this class, its worse than I imagined! The readings are too difficult, and we go through them too quickly and there were too many of them! u wont have any idea of how ur doing in this class until the end, so if ur doing bad, you cant drop it!", + "pos": 0.022, + "neu": 0.769, + "neg": 0.209, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d8" + } + }, + { + "text": "She is the worst professor I have ever taken at CCNY. She is sarcastic beyond belief and does not provide clear details for her assignments. Don't even go to her during office hours because she does not help, all she does is make snotty comments about not being prepared for the assignment. Stay away from her class.", + "pos": 0.0, + "neu": 0.81, + "neg": 0.19, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5d9" + } + }, + { + "text": "This is an unnecessarily difficult class. Grading on papers is really strict, someone should remind her that this is an intro class. There no understanding of the difficulty the class is experiencing, everyone is having a hard time", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5da" + } + }, + { + "text": "The class is very difficult. I'm having a hard time with the reading responses, and there's one due almost every week! Its just very difficult readings. Shes ok, never responds to emails. the class is ok, work SUCKS, its 102, idk why shes making it so hard on us", + "pos": 0.0, + "neu": 0.757, + "neg": 0.243, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5db" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b0cd60fca157e5f5dd" + }, + "professor_name": "Stephanie Jeanjean", + "rating": 3.4, + "department": "Art department", + "comments": [ + { + "text": "I believe that she was hired to teach French just off the basis that she is French. Don't ask questions because she won't answer them. Spends the whole class going over homework and the last five minutes actually teaching a lesson (which is notes from textbook). Rude, degrading, and overall a terrible teacher. Would never take her class again.", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5de" + } + }, + { + "text": "Passing is based on how good you are at memorization. If you have a bad memory don't take this class.", + "pos": 0.119, + "neu": 0.738, + "neg": 0.143, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5df" + } + }, + { + "text": "Other than her unclear english, she is a very decent professor and quite helpful.", + "pos": 0.181, + "neu": 0.702, + "neg": 0.117, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e0" + } + }, + { + "text": "She is really nice. She have to know that you are an A (hard working) student if you want to sleep or be late in her class like me. Distinct yourself from others. That will help. Eazy A!!!", + "pos": 0.233, + "neu": 0.735, + "neg": 0.031, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e1" + } + }, + { + "text": "Veryyyy Goooddd Professor!! she helps out alot. i mean yeah the stuff is hard but, she's willing to help. u can email her anytime and she gets baq to you. I reallly like her. class is boring but not her fault , its art history. if u r not a history person well dont blame the teachr.", + "pos": 0.266, + "neu": 0.676, + "neg": 0.058, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e2" + } + }, + { + "text": "she knows what she's talking about but has absolutly NO idea how to present it. the whole class is slides, midterm is 10 slides there is a research paper and a final exam both are easy if you just do the work, but she is way way too boring", + "pos": 0.068, + "neu": 0.811, + "neg": 0.121, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e3" + } + }, + { + "text": "Horrible, the worst teacher I ever had. She is not helpful and is very rude. Very harsh grader and hardly ever gives A. She has a strong acent that make it hard for students to understand what she is saying. Not only that but her exams are impossible to pass.", + "pos": 0.038, + "neu": 0.752, + "neg": 0.211, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e4" + } + }, + { + "text": "Theres 3papers 1 is a museum paper another is a research paper she is a harsh grader her classes are so boring its the explaination of a billion paintings and sculptures that you will need to know very well for the final and the midterm if you work hard and she sees that then you have yourself an A try to let her know your name ATTENDANCE is a must", + "pos": 0.032, + "neu": 0.872, + "neg": 0.096, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e5" + } + }, + { + "text": "She is a very helpful Prof. Her lectures are boring but the class is pretty easy. This was one of my least stressful classes.", + "pos": 0.4, + "neu": 0.552, + "neg": 0.048, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e6" + } + }, + { + "text": "Great Professor. Challenging on midterm and final (requires A LOT of studying). Very generous with help on papers and overall she's a nice woman and great teacher.", + "pos": 0.477, + "neu": 0.523, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e7" + } + }, + { + "text": "Shes tough but her exams are a breeze..and she lets you redo bad papers", + "pos": 0.0, + "neu": 0.667, + "neg": 0.333, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e8" + } + }, + { + "text": "There are three major assignments: research paper, formal paper, and self portrait. She gives unexpected quizzes and of course, the midterm and the final. She is extremely willing to help you and answer your questions. But I MUST caution you: this is a VERY boring class. Good luck not falling asleep.", + "pos": 0.203, + "neu": 0.726, + "neg": 0.071, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5e9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5ea" + } + }, + { + "text": "She has a french accent but can be easily understood. Do the homework and you will pass. Very easy grader but the lectures will put you to sleep.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d6b0cd60fca157e5f5eb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b1cd60fca157e5f5ed" + }, + "professor_name": "Benjamin Liaw", + "rating": 3.7, + "department": "Engineering department", + "comments": [ + { + "text": "Really appreciate the snowstorm otherwise have to do the presentation. Two midterm and final (cancle). Midterms are open book and open note. You will use matlab on it as well. HW is really time consuming and two labs are very tedious. Would like to take him again.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5ee" + } + }, + { + "text": "I found me461 to be one of the most interesting and useful classes for the future engineer career. Professor Liaw is extremely organized and will tell you how you do in class over the semester if desired. No exams, only quizzes EVERY class (provides all the materials), labs and a final group presentation (30%). Great class, great professor.", + "pos": 0.233, + "neu": 0.736, + "neg": 0.031, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5ef" + } + }, + { + "text": "It's a tough class but I wouldn't have had it any other way.", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f0" + } + }, + { + "text": "Professor Liaw is the best professor in my mind. He has very strong background in mathematics and mechanics. I took four classes from him since 2011, Advanced Vibration, Stress Analysis, Elasticity and Wave Propagation and got A+, A, A and A-. The class were very clear and helpful. I enjoy his classes that's why I took four courses from him.", + "pos": 0.254, + "neu": 0.709, + "neg": 0.037, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f1" + } + }, + { + "text": "You'll be learning and working hard in his class. The exam are similar to the assignments. He curves based on the class performance. DO NOT do his project in the last minute or else you have a bad grade", + "pos": 0.0, + "neu": 0.883, + "neg": 0.117, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f2" + } + }, + { + "text": "His class is a lot of work. He is a very fair grader and his exams are entirely based on the assigments.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f3" + } + }, + { + "text": "Very knowledgable professor. Overall, a huge amount of homework, but relatively easy class, grading-wise. If you work hard, it shouldn't be hard to get an A.", + "pos": 0.227, + "neu": 0.72, + "neg": 0.052, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f4" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f5" + } + }, + { + "text": "he is a great person, the class is not hard but has incredible work load. i think his grading is fair and easy as long as you do the work he asks you to do. i think you will understand and learn the subject of control at the end of this class.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f6" + } + }, + { + "text": "WAY too much work. Too much material stuffed into 1 class. Should be at least 2 classes. Professor jumps around between topics so it's impossible to follow. Be prepared to stay up all night often just to do the homework.", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f7" + } + }, + { + "text": "I have him last year and I am exhaust as hell", + "pos": 0.0, + "neu": 0.57, + "neg": 0.43, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f8" + } + }, + { + "text": "HARDEST CLASS EVER. EXTREMELY UNREALISTIC WORKLOAD. PROF THINKS HES TOO GOOD TO GRADE HIS OWN STUDENTS PAPERS. EXTREMELY UNREASONABLE GRADING WITH NO EXPLANATION. COURSEWORK IS INTERESTING BUT EXTREMELY INTENSE AND DIFFICULT.", + "pos": 0.154, + "neu": 0.704, + "neg": 0.142, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5f9" + } + }, + { + "text": "extremely fun class but its alot of work", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5fa" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5fb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b1cd60fca157e5f5fd" + }, + "professor_name": "Hope Hartman", + "rating": 3.5, + "department": "Education department", + "comments": [ + { + "text": "professor Hartman is a very knowledgable. She have a very impressive and knowledgable background in her field of study and loves psychologist Jean Piaget. :) Her class is very funny, easy, and straight to the point. As long as you do the required readings and projects you will do just fine. Attendance is mandatory.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5fe" + } + }, + { + "text": "Between high school, undergrad, and my current enrollment as a graduate student, Prof. Hartman is hands-down the worst teacher I have ever had. She puts up a front of empathy with students, however she will NOT help you. Teaching is completely unorganized. Entirely too many assignments, and she does not grade consistently. TERRIBLE PROF! AVOID!", + "pos": 0.048, + "neu": 0.797, + "neg": 0.154, + "_id": { + "$oid": "6711d6b1cd60fca157e5f5ff" + } + }, + { + "text": "Adolescent Learning & Development. Very useful and practical course for teachers, I found her to be fair and helpful. WebQuest project was a good experience, readings were insightful. She did a great job especially considering some students were immature & disruptive. She can improve re: proofreading her course documents for typos though!", + "pos": 0.281, + "neu": 0.684, + "neg": 0.035, + "_id": { + "$oid": "6711d6b1cd60fca157e5f600" + } + }, + { + "text": "OMGi loved taking this class it was my fav class i looked forward to going. very helpful andhad fun in class the discussions were enjoyable.text books u need for the tests but just really the one that she made the discussions help out on tests a lot and she lets u make corrections on ur tests.YOU WILL NOT REGRET TAKING THIS CLASS! only 5HW MIDterm&", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f601" + } + }, + { + "text": "I enjoyed being in this class. However I thought her constant assessment of her students was a bit annoying. We really do not need that many projects/presentations. Still I learned quite a bit and she is a wonderful person.", + "pos": 0.153, + "neu": 0.788, + "neg": 0.059, + "_id": { + "$oid": "6711d6b1cd60fca157e5f602" + } + }, + { + "text": "Has basically wrote everything in this field.... extremely knowledgeable and always there to help. Love her little stories too. She and the class are extremely interesting... must take", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d6b1cd60fca157e5f603" + } + }, + { + "text": "Best course I ever took because it was interesting, fun and I was immediately able to apply all the theories and research to my own mathematics classroom.\r We also did a lot of group work in class so I got to find out how my peers were teaching and what kinds of problems they had and how they solved them.", + "pos": 0.176, + "neu": 0.786, + "neg": 0.039, + "_id": { + "$oid": "6711d6b1cd60fca157e5f604" + } + }, + { + "text": "demanding but worthwhile", + "pos": 0.559, + "neu": 0.18, + "neg": 0.261, + "_id": { + "$oid": "6711d6b1cd60fca157e5f605" + } + }, + { + "text": "She was the best professor and teacher I have ever had. She is very demanding but I learned so much that I didn't mind. I highly recommend her course.", + "pos": 0.186, + "neu": 0.767, + "neg": 0.047, + "_id": { + "$oid": "6711d6b1cd60fca157e5f606" + } + }, + { + "text": "I have been in school for most of my 25 years of life on this planet and this was by far the worst class that I have ever taken from the worst teacher I have ever had! Please do not take this class.", + "pos": 0.045, + "neu": 0.788, + "neg": 0.167, + "_id": { + "$oid": "6711d6b1cd60fca157e5f607" + } + }, + { + "text": "If you can take this class from anyone else do, every other person I gave talked to that had another teacher enjoyed the course. Trust me this will be one of the worst experiences of your grad life, she is beyond demanding, she is unreasonable.", + "pos": 0.123, + "neu": 0.765, + "neg": 0.112, + "_id": { + "$oid": "6711d6b1cd60fca157e5f608" + } + }, + { + "text": "Horrendous. Note the capital H. This teacher should be excessed and the material should be burned.", + "pos": 0.0, + "neu": 0.798, + "neg": 0.202, + "_id": { + "$oid": "6711d6b1cd60fca157e5f609" + } + }, + { + "text": "This was really one of the worst classes I have ever taken. The assignments were plentiful and vague. The class is all theory that really doesn't apply to real-life teaching in New York City. The class is long and very boring. The professor reads obituaries in class, and sometimes doesn't even show up (she missed the first class of the year).", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d6b1cd60fca157e5f60a" + } + }, + { + "text": "She is a very kind and friendly professor, but the class really drags. She burdened the class with busy work (weekly papers, field reports, etc.).", + "pos": 0.143, + "neu": 0.656, + "neg": 0.201, + "_id": { + "$oid": "6711d6b1cd60fca157e5f60b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b2cd60fca157e5f60d" + }, + "professor_name": "David Diaz", + "rating": 2, + "department": "Political Science department", + "comments": [ + { + "text": "He is not a good teacher who cannot give students clear instrument about what is the goal of class. He will give your heavy assignment of reading,including three books and some other material. At then end semester, he told you to go through all the material, yes, this is how he gave you instrument about how to prepare your final.", + "pos": 0.042, + "neu": 0.887, + "neg": 0.071, + "_id": { + "$oid": "6711d6b2cd60fca157e5f60e" + } + }, + { + "text": "DO NOTTTT TAKE HIM! a lot of material to read from tooo many sources. hard grader. does not cover the readings. gets lost easily telling random stories about when he used to be a journalist.", + "pos": 0.063, + "neu": 0.834, + "neg": 0.104, + "_id": { + "$oid": "6711d6b2cd60fca157e5f60f" + } + }, + { + "text": "The comments are right! Huge ego, a lot of reading which he doesn't cover sufficiently, hard grader and seems to go to class and just wings it. Then complains that people are not prepared enough. Has bad grammar, then complains about others. Honesty teaching is not his thing, unless you count learning about him important.", + "pos": 0.13, + "neu": 0.709, + "neg": 0.161, + "_id": { + "$oid": "6711d6b2cd60fca157e5f610" + } + }, + { + "text": "He was probably a great journalist in his time, but he is not a great teacher. His directions are never clear, he is a horrible speller who is always talking about the importance of grammar (Yes, you read right). He offers no guidance at all on assignments for an INTRODUCTORY CLASS. Completely defeats the purpose. Great anecdotes, crappy teacher.", + "pos": 0.172, + "neu": 0.563, + "neg": 0.265, + "_id": { + "$oid": "6711d6b2cd60fca157e5f611" + } + }, + { + "text": "Diaz is the man... Just do your work. His chance gives you a chance to be creative. Imma warn you that he is not an easy A but with that said his class is great. My favorite class this semester (Intro Journalism", + "pos": 0.278, + "neu": 0.667, + "neg": 0.055, + "_id": { + "$oid": "6711d6b2cd60fca157e5f612" + } + }, + { + "text": "avoid this class otherwise you'll get a \"D\" which he call decent grade. i had to drop. what a waste of time and money", + "pos": 0.0, + "neu": 0.747, + "neg": 0.253, + "_id": { + "$oid": "6711d6b2cd60fca157e5f613" + } + }, + { + "text": "A teacher with a lot of experience in the field but little mercy when it comes to grading.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f614" + } + }, + { + "text": "A pretty straightforward presenter, easy-to-understand material, but sets a very high standard for students. If you can see past his ego, he's really a good person at heart. Do something different for a change! Challenge yourself! Take this class, stick with it, and you will come out better prepared for life itself.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f615" + } + }, + { + "text": "Avoid this professor if you can. He doesn't give clear directions on assignments. He is a very harsh grader--he's all about the end product, he doesn't count your energy, time, and effort. And really he has a huge ego, so there really is no reasoning with him b/c he's always right and you're always wrong.", + "pos": 0.035, + "neu": 0.735, + "neg": 0.229, + "_id": { + "$oid": "6711d6b2cd60fca157e5f616" + } + }, + { + "text": "bad prof I had to drop that class otherwise I will end up getting a d which he called decent grade. he assigned too much reading do not take him if you can", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d6b2cd60fca157e5f617" + } + }, + { + "text": "Clarification: the \"d\" at the end stands for \"decent grade\".", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f618" + } + }, + { + "text": "He is a good instructor, but I became annoyed with his regressive views and arrogance. Further, he assigned too much reading for exams, especially for the final, forgetting students have other classes to attend to. \r His exams are in essay form only (no, they're not take-homes), and if he thinks you've presented your answer well, he'll give you a d", + "pos": 0.067, + "neu": 0.816, + "neg": 0.117, + "_id": { + "$oid": "6711d6b2cd60fca157e5f619" + } + }, + { + "text": "He is not clear on what or what not to know for exams. He is not even a professor and acts like he is the ultimate authority.", + "pos": 0.127, + "neu": 0.8, + "neg": 0.073, + "_id": { + "$oid": "6711d6b2cd60fca157e5f61a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6b2cd60fca157e5f61b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b2cd60fca157e5f61d" + }, + "professor_name": "Joel W. Fisher", + "rating": 4.9, + "department": "Art department", + "comments": [ + { + "text": "Joel should be teaching full time in the graduate program.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f61e" + } + }, + { + "text": "Joel Fisher is a great teacher, super cool guy and not to mention VERY easy on the eyes. I owe a lot of my knowledge in photography to him and completely would take more classes with him if the opportunity presented itself. He made me love the darkroom again. ;)", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f61f" + } + }, + { + "text": "I thought I was going to always shoot film until I took digi photo. So much technical material, but a lot of attention to working out assignment ideas. Would recommend this class to anyone wanting to take a photo class.", + "pos": 0.076, + "neu": 0.885, + "neg": 0.04, + "_id": { + "$oid": "6711d6b2cd60fca157e5f620" + } + }, + { + "text": "Fisher's classes are always good, but this was the best.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f621" + } + }, + { + "text": "The large format class is very technical, but assignment concepts were fun! Not only learned a lot about the camera, but photo in general. Highly recommend this class and this teacher. A little pricy on the supplies:(", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f622" + } + }, + { + "text": "Hands down best photo class I've taken. Very demanding but I learned a ton about contemporary photo. May first I was resistant but my project changed for the better.", + "pos": 0.189, + "neu": 0.764, + "neg": 0.047, + "_id": { + "$oid": "6711d6b2cd60fca157e5f623" + } + }, + { + "text": "Hes such a great teacher, He is also extremely helpful gets back to your emails asap. he knows his stuff and is strict but laid back taking digital 1 with him also and would love to take more classes with him the best teacher i ever had", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f624" + } + }, + { + "text": "This class was really great! tons of information, tons of material- ALOT of work but totally worth it", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f625" + } + }, + { + "text": "Wish this class was a year long.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f626" + } + }, + { + "text": "Didn't take Photo I with Professor Fisher, but I wish that I had. He caught me up within the first two weeks of class. Really learned a lot from the assignments and left the class with a really good fiber portfolio.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f627" + } + }, + { + "text": "Always love taking Fisher's classes. This one was hard. Lots of reading. But very good.", + "pos": 0.343, + "neu": 0.597, + "neg": 0.06, + "_id": { + "$oid": "6711d6b2cd60fca157e5f628" + } + }, + { + "text": "Best class ever. Great teacher, great guests.", + "pos": 0.756, + "neu": 0.244, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f629" + } + }, + { + "text": "One of the greatest teachers I have had at city.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f62a" + } + }, + { + "text": "(Digital Photo 1) Professor Fisher knows his stuff and his lessons are well worked out. You'll learn a ton and he's helpful when you're stuck. It's work intensive but you'll get a lot out of it.", + "pos": 0.091, + "neu": 0.87, + "neg": 0.04, + "_id": { + "$oid": "6711d6b2cd60fca157e5f62b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b2cd60fca157e5f62d" + }, + "professor_name": "Edger Sterjo", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Sterjo is a great lecturer, i personally liked how detailed his lectures could get, he does make you work for the class, so you have to practice on your own, but his lectures were enough that i never had to open the textbook to feel ready for an exam, etc. Overall a very good professor.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f62e" + } + }, + { + "text": "He goes very quickly through the material. And is a tough grader. Majority of kids did very poorly on the exams. Nice guy but not the best teacher. Found him to be very confusing and moved too fast.", + "pos": 0.043, + "neu": 0.764, + "neg": 0.193, + "_id": { + "$oid": "6711d6b2cd60fca157e5f62f" + } + }, + { + "text": "My favorite thing was that he gave review sheets before exams. And they resembled the exams, just with different questions. He described the concepts extremely clearly, and gave examples that were all real world problems. He can be wordy as some other raters said. This can be annoying, but it really paid off when he went through examples.", + "pos": 0.065, + "neu": 0.875, + "neg": 0.06, + "_id": { + "$oid": "6711d6b2cd60fca157e5f630" + } + }, + { + "text": "hes a great teacher. wordy and take his lecture definitions from the textbook a lot. but a cute, nice teacher that is clear and everything expected from a calc teacher.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f631" + } + }, + { + "text": "He is the clearest math professor I have ever had. He clearly has a mastery of the material and goes out of his way to make you see the picture. But theres a lot of material and you have to put in the time. Practice and homework are essential for a high grade.", + "pos": 0.034, + "neu": 0.966, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f632" + } + }, + { + "text": "He is a good professor. i took 201 with him. he is too wordy butexplains everything so clearly. gives review sheet before each exam. the exams are so similar to the review sheet, so if u do the review sheet, u will pass each exam. He gives partial credit. he never absents and is in class on time. Attendance is necessary. for homework uses webassig.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f633" + } + }, + { + "text": "The true MVP. He explains math very clearly & goes over it multiple times, especially if you ask. Do all your webassign, it's good practice. He really does care about his students passing, you just need to put work into it. Calculus is a dense subject (as he reminded us) so you'll need to do a lot of studyingpractice!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f634" + } + }, + { + "text": "Professor Sterjo certainly raises the bar when it comes to teaching Calculus. He engages you in the material without being all boring. He's young and energetic and I think that helps his cause. He's extremely smart and rarely ever makes a mistake and even jokes about it if he makes a mistake. I failed his class, but I learned a ton because of him.", + "pos": 0.167, + "neu": 0.755, + "neg": 0.078, + "_id": { + "$oid": "6711d6b2cd60fca157e5f635" + } + }, + { + "text": "no", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f636" + } + }, + { + "text": "Mr. Sterjo is a good professor who offers a deeper understanding of calculus. He has a good sense of humor and knows how to keep the class engaged! His grading policy is a little harsh and he spends time reinforcing word for word examples from the textbook. In the end, he's thorough and somewhat prepares you for the final. PRACTICE & Good luck!", + "pos": 0.226, + "neu": 0.74, + "neg": 0.034, + "_id": { + "$oid": "6711d6b2cd60fca157e5f637" + } + }, + { + "text": "Sterjo is a cool professor and helpful. He follows the textbook and his teaching is like reading from the textbook. His tests are fair and he gets the questions from the homework.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f638" + } + }, + { + "text": "Mr. Sterjo was a good professor, but he is too wordy during lectures, & to me just re-iterates exactly what the textbook has to say. He is very generous when grading & always gives partial credit in exams if you tried to find an answer. He is also funny & promptly responds to emails. If you have basic knowledge of Calculus, I totally recommend him.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f639" + } + }, + { + "text": "He is a new professor. So in the beginning of the semester he was really disorganized but towards the end he showed big signs of improvement and my opinion proved to be a great professor. He is really intelligent guy and has a great passion for math. Ask him to go over a problem and he will go over it. Just don't piss him off and he has jokes too.", + "pos": 0.305, + "neu": 0.639, + "neg": 0.056, + "_id": { + "$oid": "6711d6b2cd60fca157e5f63a" + } + }, + { + "text": "Smart guy. Class is very interesting helpful and well prepared. I love the way he teaches he is the best professor that I ever had. I really want to thank him for everything that has done.", + "pos": 0.486, + "neu": 0.514, + "neg": 0.0, + "_id": { + "$oid": "6711d6b2cd60fca157e5f63b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b3cd60fca157e5f63d" + }, + "professor_name": "Mohammad Charrwi", + "rating": 4.9, + "department": "Computer Science department", + "comments": [ + { + "text": "Nice and tech savvy lectures, he was the first professor i took a course with to ask us to use github even though it was not necessarily on the syllabus. Overall great professor.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f63e" + } + }, + { + "text": "He is a great professor, very helpful and kind.", + "pos": 0.644, + "neu": 0.356, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f63f" + } + }, + { + "text": "this professor is very accessible during his office hours, he responds even on the weekend when i asked him about the project he gave us, the comments below shows he is good at what he does and i agree with that.", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f640" + } + }, + { + "text": "The professor is considerate and delivers the material clearly. 100% highly recommended.", + "pos": 0.461, + "neu": 0.539, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f641" + } + }, + { + "text": "I took his algorithm course this summer. he does well in delivering the point. The course is kind of dense to be offered in the summer but I need it for credits, but overall I liked his class!", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f642" + } + }, + { + "text": "Perfect Professor!!!! I was worried that this course would be hard but he explained the concept of circuits and gates very clearly. I learnt how to program in assembly in this class and this was useful for my job. Grateful that he taught me this course. He should be teaching other courses as well. Highly recommend taking his class when offered!!!", + "pos": 0.28, + "neu": 0.684, + "neg": 0.036, + "_id": { + "$oid": "6711d6b3cd60fca157e5f643" + } + }, + { + "text": "Comprehensive lectures but can go kind of fast, reviews the materials well, accessible during office hours, no tests or quizzes besides the final, pretty chill class", + "pos": 0.254, + "neu": 0.662, + "neg": 0.084, + "_id": { + "$oid": "6711d6b3cd60fca157e5f644" + } + }, + { + "text": "He's one of the sweetest professors I have ever taken a class with!! I had no idea about binary before this class. He willingly explains over and over again until you understand. He's accessible during office hours. project is useful to improve C++ coding skills. Highly recommend taking a course with him. I wish he can permanently teach at CCNY!!!", + "pos": 0.179, + "neu": 0.79, + "neg": 0.032, + "_id": { + "$oid": "6711d6b3cd60fca157e5f645" + } + }, + { + "text": "Easy class as long as you do the work needed on the midterm (assigned project) and prepare for presentation with your group. Final exam was easy as long as you attended review and studied topics he requested. Attendance otherwise is not mandatory and Zybooks has everything.", + "pos": 0.116, + "neu": 0.86, + "neg": 0.024, + "_id": { + "$oid": "6711d6b3cd60fca157e5f646" + } + }, + { + "text": "I appreciate the professor who cares about the student. He explains C++ lessons that we forgot and reviews them with us multiple times. I highly encourage more students to attend this professor's class.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f647" + } + }, + { + "text": "One of the best professor at CCNY! he gladly explains a topic more than one time to ensure that the student understands. Highly recommend taking a class with him.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f648" + } + }, + { + "text": "20% Zybook Assignments | 20% Recitation/Lab | 25% Midterm Project (Group) | 35% Final Exam | The course heavily relies on Zybooks so make sure to complete them on time. Lecture isn't mandatory but you should attend so you know what's happening. Midterm Project was based on running MIPS/C++ code. Final Exam is fair (generous with partial credit).", + "pos": 0.189, + "neu": 0.795, + "neg": 0.017, + "_id": { + "$oid": "6711d6b3cd60fca157e5f649" + } + }, + { + "text": "This class is heavily on zybooks, final presentation and final. The professor explains things well and helps you understand the topic sometimes better than zybooks. Attendance is not mandatory but I definitely recommend going anyways", + "pos": 0.287, + "neu": 0.687, + "neg": 0.026, + "_id": { + "$oid": "6711d6b3cd60fca157e5f64a" + } + }, + { + "text": "Very good lectures, thoroughly explains topics and answers questions in depth considering the difficulty of the material. Graded based on zybooks completion, midterm project, and final exam. Recommend taking him if possible.", + "pos": 0.153, + "neu": 0.782, + "neg": 0.065, + "_id": { + "$oid": "6711d6b3cd60fca157e5f64b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b3cd60fca157e5f64d" + }, + "professor_name": "Christopher Hoffman", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "I had the pleasure of being a student in Professor Hoffman's class this semester, and I must say it was an exceptionally positive experience. From start to finish, their kindness and approachability created a supportive learning environment that truly enhanced my academic journey.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f64e" + } + }, + { + "text": "Really nice professor. Cares for his students and is clear and serious about the grades. If you put in the work you're garneted an A. Entertaining and different lectures. Definitely enjoyed his class and would recommend him", + "pos": 0.402, + "neu": 0.572, + "neg": 0.026, + "_id": { + "$oid": "6711d6b3cd60fca157e5f64f" + } + }, + { + "text": "As a person Prof. Hoffman is amazing. He is kind and his classes are fun. HOWEVER the work load is extraordinary! Weekly journals, a group project followed by a 5pg paper after the project. A research proposal paper with a ton of requirements, then another project. A peer review paper. The readings are endless. Great course but very hard!", + "pos": 0.15, + "neu": 0.819, + "neg": 0.031, + "_id": { + "$oid": "6711d6b3cd60fca157e5f650" + } + }, + { + "text": "One of the best psych professors at CCNY! His classes don't require a lot but they're also not minimal either but he always keeps his students engaged in his lectures. He's super nice and has such a sweet soul, always makes the classes fun and it's an easy A for sure. Grading-wise, as long as you do what his assignments ask for, you'll be good.", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f651" + } + }, + { + "text": "we love prof Hoffman", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f652" + } + }, + { + "text": "This class was very informative and provided me with information I would have never thought possible. The work is not unbearable and he is very inclusive of everyone. This class is worth taking.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f653" + } + }, + { + "text": "He is such a nice guy. He knows you by name even if there are 40 students. He is really caring and gives you good feedback. He would give a lot of chance to do good on this class just don't be dumb to misuse those.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f654" + } + }, + { + "text": "Chris is a great professor. He's laid back yet affirmative. Our class was 2.5 hours long. He tried his best to keep the topics interesting and us invovled. This class allows you to be creative and he gives you a clear outline on what he expects. No exams! 1 paper mid-term, weekly DB's (your opinion), solo/group presentation/project/essay", + "pos": 0.24, + "neu": 0.729, + "neg": 0.031, + "_id": { + "$oid": "6711d6b3cd60fca157e5f655" + } + }, + { + "text": "He's a very chill and easy professor. This class is based on your opinions and can be answered freely without any criticism. Group presentation and one paper on it. There is no exams, but one final project. He gives clear criteria and gives u a lot of freedom to present your work! It is boring sometimes but he's a great professor!", + "pos": 0.269, + "neu": 0.673, + "neg": 0.058, + "_id": { + "$oid": "6711d6b3cd60fca157e5f656" + } + }, + { + "text": "Prof. Hoffman is great, he gets the class to engage in fun activities. There are two presentations for this class, one is a group presentation and the other is a solo presentation. no quizes, no tests. Only 2 papers 2-3 pages long. Super relaxed and smooth way of teaching, great environment, plus inspires students to do their best with feedback!", + "pos": 0.367, + "neu": 0.606, + "neg": 0.027, + "_id": { + "$oid": "6711d6b3cd60fca157e5f657" + } + }, + { + "text": "Chris is one of the best professors you can take for stats 215. He makes the material engaging, easy to understand and makes sure to go over everything to prepare you for the quizzes and exams. I received a D in my other college algebra class but I received an A+ in this class because of Chris' ability to teach math effectively.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f658" + } + }, + { + "text": "Professor Hoffman was the absolute BEST!!! A must take! Hes relatable, in tune with his students & offers loads of EC. Go to tutoring if you have trouble or ask him. Absolutely read the text-many quiz/test questions come from there. Practice, practice, practice because the material isnt really that difficult. Must attend and participate to pass.", + "pos": 0.131, + "neu": 0.827, + "neg": 0.042, + "_id": { + "$oid": "6711d6b3cd60fca157e5f659" + } + }, + { + "text": "If you arent good at math TAKE CHRIS! HE IS AMAZING! Only reason I gave a 4 for level of difficulty is because STAT is hard. There are quizzes weekly & homework due every week BUT ITS FOR YOUR BENEFIT! The questions repeat on quizzes and it helps that Chris is an AMAZING professor & really wants u to learn & pass! TAKE HIM!", + "pos": 0.233, + "neu": 0.71, + "neg": 0.057, + "_id": { + "$oid": "6711d6b3cd60fca157e5f65a" + } + }, + { + "text": "I'm not too big on math, this was my first math class in college and I am so grateful that Chris was the professor. He is so sweet and takes time to make sure that the information we're learning is presented in a way that we understand. Quiz every week but if you put in the work then you'll be ready for it. He is one of my favorite professors!", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d6b3cd60fca157e5f65b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b4cd60fca157e5f65d" + }, + "professor_name": "Ye He", + "rating": 4.6, + "department": "Science department", + "comments": [ + { + "text": "You can do very well in her class and still don't end up getting an A. She gives out A+, A, and A- based on ranking between your classmates. Prepare for a dog-eat-dog world if you're taking her class.", + "pos": 0.059, + "neu": 0.941, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f65e" + } + }, + { + "text": "Professor He is incredibly knowledgeable and her knowledge definitely comes through in her lectures. Lots of guest speakers in the course. I personally am not a STEM person, so I did find the lectures a bit confusing at times, but I still learned a lot!", + "pos": 0.046, + "neu": 0.923, + "neg": 0.031, + "_id": { + "$oid": "6711d6b4cd60fca157e5f65f" + } + }, + { + "text": "Professor Ye He is very caring and provides her students with great opportunities to do good in the class. She gives many extra credit assignments and she was always nice to everyone.", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f660" + } + }, + { + "text": "prof ye he is great super nice and friendly and there is a lot of freedom within her assignments", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f661" + } + }, + { + "text": "really nice and sweet but doesn't explain assignments clearly. takes the class a little more seriously than it needs to be but overall really good, easy A, tons of extra credit, great connections and exposure, real preparation for STEM majors", + "pos": 0.371, + "neu": 0.545, + "neg": 0.084, + "_id": { + "$oid": "6711d6b4cd60fca157e5f662" + } + }, + { + "text": "Professor He is an amazing and dedicated teacher. She spent so much time learning about all of us and preparing interesting lectures and guest speakers. She really made the class special. She was also very understanding and kind. I felt lucky to have her as a professor.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f663" + } + }, + { + "text": "It was a pleasure to have Professor He. She was so kind and would even reach out to me if I missed an assignment to see if everything was alright instead of just giving me a 0. Shes one of the most understanding professors Ive had. You definitely have to work for your grade, but its worth it. I learned a lot and enjoyed every moment of the class", + "pos": 0.225, + "neu": 0.754, + "neg": 0.02, + "_id": { + "$oid": "6711d6b4cd60fca157e5f664" + } + }, + { + "text": "Professor He really cares about her students and if you put in effort, you will pass with an A. She is really kind and engaged with the class. The class was mostly guest speakers giving lectures about different science topics and imaging techniques. The assignments were straightforward and there are a few group presentations.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f665" + } + }, + { + "text": "Professor He really cares about her students. She gives plenty of time to do the assignments and is accessible by email easily. This class gives you a taste of what actual research looks like. It does include very specific and complex research topics, but you can get a general idea from each of them. Definitely recommend taking her.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f666" + } + }, + { + "text": "Prof He is amazing. Though she's new at teaching you can tell that she puts in a lot of effort to get to know her students, support them, and invite speakers who are informative and inspirational. Assignments in this class tend to be pretty open-ended so feel free to get as creative as you want and/or ask for more directions. Take her if you can!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f667" + } + }, + { + "text": "Her class was straightforward. And designs her class based on what the majority student wants.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f668" + } + }, + { + "text": "Professor He's class was a one-of-a-kind experience. It was challenging in all the right ways, and the content we learned forced me to think and pay attention, which is something I feel like I haven't done much with virtual learning. Professor He is kind, caring, and understanding and I am grateful to have had the opportunity to take her class.", + "pos": 0.226, + "neu": 0.713, + "neg": 0.06, + "_id": { + "$oid": "6711d6b4cd60fca157e5f669" + } + }, + { + "text": "Professor He's class is what you make of it. The class had a lot of assignments and complicated topics related to science, which can either be very interesting or very boring. There are a lot of science topics that make it easy to lose track, so take notes. However, despite all that, Professor He is a gem. She really cares for her students.", + "pos": 0.127, + "neu": 0.8, + "neg": 0.073, + "_id": { + "$oid": "6711d6b4cd60fca157e5f66a" + } + }, + { + "text": "This was Prof. He's first class at CCNY for the Macaulay Science seminar. A LOT of guest presentations, you should always take notes, and a lot of group work also. Topics include imaging, nanoscience, COVID-19. At times it was a lot of work but she's always willing to help, super nice and always responds to your emails xD", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f66b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b4cd60fca157e5f66d" + }, + "professor_name": "Lia Krusin-Elbaum", + "rating": 2.2, + "department": "Physics department", + "comments": [ + { + "text": "I know the reviews are bad but overall she is an amazing teacher. She is very caring and will consider your opinion when it comes to exam. We had 6 students, we asked if we can make midterm take home and she did. And final she curved alot and passed everyone. Def a hard class tho so if you're taking it make sure this is the only difficult class.", + "pos": 0.155, + "neu": 0.759, + "neg": 0.086, + "_id": { + "$oid": "6711d6b4cd60fca157e5f66e" + } + }, + { + "text": "Final - 50%, Midterm - 20%. Rest - attendance, quizzes, HW. She doesn't show up for exams, the TA does. The TA walks like crazy and there is no way to cheat, where this is the only way to pass. HW's don't reflect exams at all. She takes exams questions from PhD level physics textbooks. If you want to pass, take only this class in your semester.", + "pos": 0.052, + "neu": 0.845, + "neg": 0.104, + "_id": { + "$oid": "6711d6b4cd60fca157e5f66f" + } + }, + { + "text": "Shes a nice lady and does know her stuff but like the other review said, she cant really teach. Her lectures are hard to follow and grading is based on one midterm and one final and hws/quiz. Exams are too hard despite them being open notes from lectures. She may curve your grade if the entire class does poorly.", + "pos": 0.081, + "neu": 0.868, + "neg": 0.051, + "_id": { + "$oid": "6711d6b4cd60fca157e5f670" + } + }, + { + "text": "Lectures are hard to follow and lecture slides are just a mess of equations and terms with no clear relationships. This professor does not understand how to make these concepts clear to undergrad engineering majors. It feels like this class is intended for physics majors with some background in quantum. I just feel really lost in this class", + "pos": 0.078, + "neu": 0.791, + "neg": 0.132, + "_id": { + "$oid": "6711d6b4cd60fca157e5f671" + } + }, + { + "text": "As the final came around, I sat in front of class with phone under my paper and the time ticking away. Just waiting for someone to send me the answers on our hangouts group chat. Lifting my paper any chance I get just to copy one symbol per minuet, only answering 2 out of the 4 questions... I thought to myself, why did I sit in front of class?", + "pos": 0.029, + "neu": 0.971, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f672" + } + }, + { + "text": "The only reason why I took this class with her is because I heard that the tests were open book. Well, I found out the hard way that its NOT OPEN BOOK ANYMORE. The tests are insanely difficult and she is not that good of a professor. If you are good at teaching yourself, then take this class with her otherwise take it with the other professor.", + "pos": 0.068, + "neu": 0.846, + "neg": 0.086, + "_id": { + "$oid": "6711d6b4cd60fca157e5f673" + } + }, + { + "text": "She is really smart but she is completely incapable of conveying any clarity to her students. Have to teach yourself from day 1. And if you're taking any other course that requires focus, forget about it cause this class is gonna take it all. Even if you pass, what's worse is you need to understand what's going on for later classes. DONT TAKE HER.", + "pos": 0.074, + "neu": 0.788, + "neg": 0.138, + "_id": { + "$oid": "6711d6b4cd60fca157e5f674" + } + }, + { + "text": "She knows a lot of interesting things about physics. The problem is she doesn't have the talent of communicating her golden knowledge to undergraduate engineering students. Quantum mechanics is a difficult subject- perhaps, the most difficult in EE curriculum. It's very hard to find an expert who is able to teach this dense subject to newcomers.", + "pos": 0.042, + "neu": 0.773, + "neg": 0.186, + "_id": { + "$oid": "6711d6b4cd60fca157e5f675" + } + }, + { + "text": "didn't understand the class at all during this semester the exams are open book!! and found this class hard because understanding the materials was ridiculous and she taught less as a professor and more as a researcher; but still the professor is really nice.", + "pos": 0.097, + "neu": 0.842, + "neg": 0.061, + "_id": { + "$oid": "6711d6b4cd60fca157e5f676" + } + }, + { + "text": "Quantum mechanics is a serious course, and it is NOT for all.... But if you are serious about this course, you will learn plenty.", + "pos": 0.0, + "neu": 0.894, + "neg": 0.106, + "_id": { + "$oid": "6711d6b4cd60fca157e5f677" + } + }, + { + "text": "Copies lectures from websites, unclear, to brief and not helpful", + "pos": 0.0, + "neu": 0.649, + "neg": 0.351, + "_id": { + "$oid": "6711d6b4cd60fca157e5f678" + } + }, + { + "text": "I learned nothing in this class and still received an A. She basically speaks to herself during lectures since no one has any idea what she is talking about. But that is not a problem since exams are open book, and she always picks questions from the exam same texts. Needless to say, this class was a complete waste of time. On to semicon...", + "pos": 0.042, + "neu": 0.882, + "neg": 0.077, + "_id": { + "$oid": "6711d6b4cd60fca157e5f679" + } + }, + { + "text": "Quantum Mechanics is a difficult subject. The course is tough. I guess it is for those who really want to learn. If you just want credit (i.e. not willing to study hard), look somewhere else.", + "pos": 0.138, + "neu": 0.727, + "neg": 0.135, + "_id": { + "$oid": "6711d6b4cd60fca157e5f67a" + } + }, + { + "text": "copies website hyperphysics and puts into powerpoint", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6b4cd60fca157e5f67b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b5cd60fca157e5f67d" + }, + "professor_name": "Ivana Harrington", + "rating": 4.7, + "department": "Computer Science department", + "comments": [ + { + "text": "She is a very good professor. Very knowledgeable about the topics taught and challenges the students to work harder. Shes super chill but does assign a lot of reading though so be prepared to read but overall shes great.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f67e" + } + }, + { + "text": "One of my favorite Professor, she will always push you to improve and if you take her critique with an open mind, you will surely learn a lot. I learnt so much in her class (Econs & Fin) I now see the world differently and understand why things are the way they are and how to use critical thinking to proffer solution when there is a problem.", + "pos": 0.144, + "neu": 0.791, + "neg": 0.065, + "_id": { + "$oid": "6711d6b5cd60fca157e5f67f" + } + }, + { + "text": "Professor Harrington is an awesome professor but be ready to have a lot of work. She speaks clearly, is able to connect with her students and for the most part, convey her message. If there is any confusion, we had her personal phone which we could text or call. Awesome professor,10/10 would take again(and will since shes teaching another class)", + "pos": 0.206, + "neu": 0.755, + "neg": 0.038, + "_id": { + "$oid": "6711d6b5cd60fca157e5f680" + } + }, + { + "text": "Professor Harrington was a gem, very informative easy to understand. Gave each student the opportunity to show their talents. I look forward to her class Fall of 2018", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f681" + } + }, + { + "text": "Her teaching process is different than other professors. She always try to focus on recent topics and issues. If you like to read a lot, this course is for you. Overall she is knowledgeable and helpful professor.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f682" + } + }, + { + "text": "Ivana is one of my favorite professors at CCNY. Very passionate about her work and always willing to help, sharing real work life experience and great articles that addresses modern global economic challenges. Shes very knowledgeable and, makes lectures and class interesting. If you show up and do all her assigned work you'll be fine. I wish more", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f683" + } + }, + { + "text": "She is an amazing professor, the articles are all relevant of the course. I will recommend to take it because you will learn a lot of things and you will by the way perform your writing skills.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f684" + } + }, + { + "text": "A very inspirational and well designed curriculum", + "pos": 0.544, + "neu": 0.456, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f685" + } + }, + { + "text": "Professor is great, group and teamwork are emphasized in class lectures which is better than working alone and taking exams.", + "pos": 0.269, + "neu": 0.654, + "neg": 0.077, + "_id": { + "$oid": "6711d6b5cd60fca157e5f686" + } + }, + { + "text": "This class is great. The professor actually cares about the learning process. Although there are HUGE amount of readings, yet these readings will benefit you so much, especially if you are working in the field. The professor prepares the class well and it is a fun learning experience.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f687" + } + }, + { + "text": "She has perfect academic and professional exposure. One of the best class I have ever taken just because of her teaching approach. Highly recommend her.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f688" + } + }, + { + "text": "One of the best class I ever attended, she is very practical. She integrates the concepts into the reality and how they are in the real work environment.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f689" + } + }, + { + "text": "This professor really care about the learning process.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f68a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b5cd60fca157e5f68c" + }, + "professor_name": "Alan Strauber", + "rating": 2.8, + "department": "History department", + "comments": [ + { + "text": "He was not understanding with a personal issue I was having. He would constantly make very snide remarks to all of the students in the class. He would say the students were arguing with him when they would simply ask a question that he didnt have the answer to. He tends to go off track when giving his lectures causing many students to be confused.", + "pos": 0.034, + "neu": 0.89, + "neg": 0.076, + "_id": { + "$oid": "6711d6b5cd60fca157e5f68d" + } + }, + { + "text": "Tough grader and he gives no useful feedback on your paper, and there is A LOTS of readings to do.", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d6b5cd60fca157e5f68e" + } + }, + { + "text": "He really knows the subject and makes it interesting. His anecdotes bring life to each topic we cover. The quizzes are easy if you read the textbook.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f68f" + } + }, + { + "text": "He knows a lot about history. Quizzes are based off readings so if you think you can just attend class, take notes, and not read, you gonna do bad on quizzes lol He DOES have a sense of humor which is good. He also stays true to his syllabus. One thing though is I never got some of my papers back from him. I might be the only one this happened to", + "pos": 0.131, + "neu": 0.826, + "neg": 0.043, + "_id": { + "$oid": "6711d6b5cd60fca157e5f690" + } + }, + { + "text": "This Professor is a True U.S Historian. He is engaging,knows the subject and presents it crystal clear. He shares with students historic insights and places to visit. He lets you know in the syllabus everything you need. Papers due are on the syllabus so you can start first day. Read the chapters,take notes and you will pass the Quizzes and Final.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f691" + } + }, + { + "text": "Passionate historian, terrible Professor. Doesn't provide feedback on essays - don't expect to gain anything in this class other than memorizing the text book and spitting it back out. He offers little in helping you develop into a better/stronger student. Don't expect a nurturing environment. Very disappointing.", + "pos": 0.091, + "neu": 0.705, + "neg": 0.204, + "_id": { + "$oid": "6711d6b5cd60fca157e5f692" + } + }, + { + "text": "If interested in history and have strong knowledge of history this professor is great. If not this professor is not best for you. Teaching style is very hands off. He did not explain much and always directed me to the text which was difficult to read unless you're into I'm not much but appreciate US history. Visuals at end of semester helpful.", + "pos": 0.142, + "neu": 0.763, + "neg": 0.095, + "_id": { + "$oid": "6711d6b5cd60fca157e5f693" + } + }, + { + "text": "This is my 1st time posting a commment on ratemyprofessor, therefore, all should heed of the frustration & disappointment i have experienced from this professors style of teaching & responding to uncontrollable events. If you are not a history major but enjoy history, I HIGHLY recommend NOT taking this class! I would give an outline if i had space", + "pos": 0.14, + "neu": 0.774, + "neg": 0.085, + "_id": { + "$oid": "6711d6b5cd60fca157e5f694" + } + }, + { + "text": "Overall this class was honestly kinda easy. 3 papers and 4 quizzes throughout the semester solely on the textbook. Im a decent writer and I wrote my best papers in his class. Big on citations and foot notes so you better know how to. You're in college you better know. Final was really easy and gives you topics for the essay. I highly recommend Me=A", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d6b5cd60fca157e5f695" + } + }, + { + "text": "Is an OK prof, who just sits and summarizes the testbook basically. The quizzes are pretty easy as well as the exams, all multiple choice. One thing is that he poorly grades papers. Just gives you a letter grade and no reason for it. I couldnt get more then a B on a paper and am a great writer.", + "pos": 0.216, + "neu": 0.752, + "neg": 0.031, + "_id": { + "$oid": "6711d6b5cd60fca157e5f696" + } + }, + { + "text": "He was a good teacher and I found him to be understanding with a personal issue I had. If you issues with writing i suggest you go the writing center, because no matter how good your paper is your not going to do well.", + "pos": 0.161, + "neu": 0.817, + "neg": 0.022, + "_id": { + "$oid": "6711d6b5cd60fca157e5f697" + } + }, + { + "text": "many times I could not understand what he talks and some terms he uses. The feedback is poor. However, his exams are pretty easy, with multiple choices and the 3 papers he asks are fine as well. He is not a tough grader.", + "pos": 0.221, + "neu": 0.719, + "neg": 0.06, + "_id": { + "$oid": "6711d6b5cd60fca157e5f698" + } + }, + { + "text": "He knows the information, but gives no feedback on essays. Not very approachable or understanding.", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d6b5cd60fca157e5f699" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b6cd60fca157e5f69b" + }, + "professor_name": "Michael Green", + "rating": 1.3, + "department": "Chemistry department", + "comments": [ + { + "text": "It's really important you attend lecture even if they're awful because exams come mostly from the style of problems he works out on the projector. You will not find those problems in the textbook. The online homework will help you predict what topics will be on exams. Workshop is worthless because of the disconnect with the Prof's materials.", + "pos": 0.104, + "neu": 0.769, + "neg": 0.127, + "_id": { + "$oid": "6711d6b6cd60fca157e5f69c" + } + }, + { + "text": "He does not care about the students, he's super old so he still uses the old projectors so you cannot access the notes again, he includes unnecessary information, and he honestly makes concepts harder than they need to be. Cannot teach.", + "pos": 0.145, + "neu": 0.8, + "neg": 0.055, + "_id": { + "$oid": "6711d6b6cd60fca157e5f69d" + } + }, + { + "text": "Worst professor ever. Ever. Please do not take him. Cannot teach, you cannot hear him, answers questions sarcastically and does not respond to emails. Just the worst.", + "pos": 0.065, + "neu": 0.646, + "neg": 0.289, + "_id": { + "$oid": "6711d6b6cd60fca157e5f69e" + } + }, + { + "text": "you can skip class, never takes attendance. I got an A- for the class, with no assistance from Green, doesn't teach. Don't take his class, all the work I had to do to get an A- in this introductory Chem course wasn't worth it. The amount I had to work for that grade here should be the amount I'd have to work for an A- in like, a Chem 300 course.", + "pos": 0.034, + "neu": 0.914, + "neg": 0.052, + "_id": { + "$oid": "6711d6b6cd60fca157e5f69f" + } + }, + { + "text": "He's a very knowledgable guy. I personally had trouble understanding in his lecture. He doesn't go that fast, but he tends to go off topic. Homework the do help in my opinion. If you get his class, I suggest to take advantage of workshop and tutoring. He does curve a lot. Got an A with Midterms 91 88 77 drops lowest one. Not sure of final exam.", + "pos": 0.08, + "neu": 0.819, + "neg": 0.102, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a0" + } + }, + { + "text": "Worst professor in CCNY EVER. If you're a CHEM major, don't start off with him. It's worth the one semester extra wait with the hopes of starting with Salame or Kowach, someone much more intelligent than he is, that can actually teach you.", + "pos": 0.156, + "neu": 0.763, + "neg": 0.08, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a1" + } + }, + { + "text": "He is nice and very smart, but can't teach! He is confusing and rambles off into other topics like the history of the subject instead of the actual subject. His exams are hard and short. The questions are worth so many points. He includes a lot pf physics too, and refuses to admit that the exams are hard. He tries to help, but it doesn't work.", + "pos": 0.19, + "neu": 0.738, + "neg": 0.072, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a2" + } + }, + { + "text": "Don't take the course. the man is smart, he explains stuff okay-ish in office hours. But he can NOT teach during lecture. He just rambles and speaks softly into the mic. I have to go to tutoring everyday just to learn the stuff he should be teaching (Stienman 2M7 for those who need it). To those that are taking hm, good luck passing the final.", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a3" + } + }, + { + "text": "someone missed that day in elementary school where they taught you how to answer questions, and it was this guy. Withdrew from the course due to failing grade, then sat in on Versace's Chem 10301 with my free time. I learned more from Versace in that one class then I have 8 classes with Green, and now regularly sit Versace, dont take green. EVER .", + "pos": 0.047, + "neu": 0.876, + "neg": 0.078, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a4" + } + }, + { + "text": "Only 2 tests, but tests are worth 40% of the grade. He's too lazy to grade, therefore his overly-strict pre-doctorals grade, unfairly at that. I was first given a 61 on a test, (improperly graded) then brought it up to his attention where I got an 81. He's the worst Chem teacher I've ever had, but having a Chem background I have a B-. Dont take.", + "pos": 0.032, + "neu": 0.848, + "neg": 0.12, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a5" + } + }, + { + "text": "Bar none the worst professor I have ever had. They brought this guy out of a 10 year hibernation so that Chem class demand could be met, and it more than shows. Incredibly messy, unclear, unhelpful, and not in control of the classroom. Exams are comically misworded and confusing, although the material shouldn't be hard. Avoid at any and all costs.", + "pos": 0.094, + "neu": 0.783, + "neg": 0.123, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a6" + } + }, + { + "text": "Don't, by all means don't take his class. When they say your own your own in college ... his class takes it to a whole new level. I'd wait to take it with a better professor if I was you. Exams are out of hand lectures don't help one bit!", + "pos": 0.115, + "neu": 0.845, + "neg": 0.041, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a7" + } + }, + { + "text": "The class is hard. If you do not go to his class you will have no idea what is going to be in the exams. He is very unclear and one must pretty much teach themselves. If you have never taken chemistry before in high school, i recommend not to take this professor.", + "pos": 0.096, + "neu": 0.805, + "neg": 0.099, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6a8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b6cd60fca157e5f6aa" + }, + "professor_name": "Erik Grimmelmann", + "rating": 4.8, + "department": "Computer Science department", + "comments": [ + { + "text": "HW was easy (it's an intro class) and final project was picking an ML topic of your choice and building some models for it. Pretty similar to what you do for the HW. no tests. As long as you do things decently right + explain your findings, you'll get a good grade. Lecture was math heavy HW was application based so u dont necessarily need lecture.", + "pos": 0.123, + "neu": 0.847, + "neg": 0.03, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6ab" + } + }, + { + "text": "An absolute gem! Class is pretty straight forward with 3-4 homeworks done on python and 1 project. No exams!", + "pos": 0.238, + "neu": 0.67, + "neg": 0.092, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6ac" + } + }, + { + "text": "Lectures are extremely well-organized. No exams for this class, only homework assignments, attendance, and final paper/presentation are what your grade is based on. Professor Grimmelmann is extremely knowledgeable in this field and always willing to answer any questions during and after class. Definitely recommend taking him if you can!", + "pos": 0.102, + "neu": 0.852, + "neg": 0.046, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6ad" + } + }, + { + "text": "Take him! Be as descriptive as you can in your writings for assignments. As a tip, use his recorded lectures, textbook, and online resources for help on assignments. Don't worry about not understanding what he is teaching because the assignments are simple, and you could teach yourself, if anything.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6ae" + } + }, + { + "text": "Professor Grimmelmann is one of the best and kindest professors I've taken at CCNY. He's like a nice grandpa. He is very knowledgeable and has an impressive background. His assignments are not tough at all, his grading is very clear and flexible, and his lectures are very theoretical and easy to understand. Sometimes he goes slow but thats okay imo", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6af" + } + }, + { + "text": "Prof Grimmelmann is a great professor, especially when you get to talk to him. The coursework is light (4 hws, 1 presentation, and the final project). He is also a very nice grader. Although he can drone on sometimes and speed through slides loaded with content, he is very knowledgeable. You can pick his brain and always expect a response.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b0" + } + }, + { + "text": "He is excellent. 5/5 professor. You don't find professors like him at CCNY that often. Take his class and enjoy!", + "pos": 0.273, + "neu": 0.646, + "neg": 0.08, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b1" + } + }, + { + "text": "Although the topics covered in this course contains mathematical concepts on the difficult side, Professor Grimelmann was always eager to delve deeper into topics. He was also transparent about the upcoming course content regarding lectures, assignments and any changes made. Don't sleep on this professor and his amazing lectures!", + "pos": 0.12, + "neu": 0.835, + "neg": 0.045, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b2" + } + }, + { + "text": "Prof. Grimmelmann is literally the best professor I have had in my experience at CCNY. He is methodical, and well organized in his lectures. His machine learning class was also an amazing experience. 10/10 on Professorlyness, and has great life experience that I appreciated hearing.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b3" + } + }, + { + "text": "His lecture slides contain a lot of heavy but useful information. He's very knowledgeable in the field of scientific programming. He answers your questions thoroughly in lectures and by email. I enjoyed talking to him about any questions that I had. Although it might be easy to lose focus during lectures, I highly recommend him.", + "pos": 0.228, + "neu": 0.721, + "neg": 0.051, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b4" + } + }, + { + "text": "Probably the nicest professor you'll ever meet and one of the best. Attendance is mandatory and he likes to read completely off of slides so its easy to get side tracked but the work he assigns is really fair and helps you learn. Final project at the end that is also graded leniently, you just have to show that you tried to do something.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b5" + } + }, + { + "text": "One of the nicest professors you'll have. Grades very leniently, all homeworks are done using python+jupyter. Total of 6 homeworks and 1 project + presentation. Project isn't too difficult and the homeworks can be done in a day. His lectures are very boring but can be helpful for homework.", + "pos": 0.136, + "neu": 0.831, + "neg": 0.033, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b6" + } + }, + { + "text": "He's really knowledgeable and is willing to help you out. I found he is more helpful one on one because during lecture he relies too much on the slides he prepares beforehand.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b6cd60fca157e5f6b9" + }, + "professor_name": "Ron Kopp", + "rating": 3.7, + "department": "Film department", + "comments": [ + { + "text": "very knowledgeable \nvery supportive \nvery intelligent \nvery accessible \nquite inspiring \nreally made one think critically \nchallenging course", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6ba" + } + }, + { + "text": "Wish there were more Professors like Professor Kopp. He is a brilliant teacher - super knowledgeable about films but also supportive, generous with time, and encouraging. For the first time in my entire college career a professor actually believed in me. His expectations were reasonable, feedback was specific, and directions easy to understand.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6bb" + } + }, + { + "text": "Professor Kopp was an absolute pleasure to learn from. His passion for film is palpable and he is not one to impose his opinions on others, only to encourage them to think critically. He is not strict but also makes it clear he expects active participation. I hope I can take another one of his courses very soon. He's a true gem and a very nice guy!", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6bc" + } + }, + { + "text": "Hands down the professor who took the most time with me to explain course materials and how critical thinking when analyzing media could even enhance my definition on the reflexive relationship I personally have with society. You should already have certain writing skills and critical thinking skills to get here. If you don't, reach out for help.", + "pos": 0.077, + "neu": 0.832, + "neg": 0.091, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6bd" + } + }, + { + "text": "Professor Kopp does not grade anything on time. He feels his opinion is the only one that counts and you see it in the feedback given on the papers that you get back. It was a horrible class.", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6be" + } + }, + { + "text": "Professor Kopp, \nNever graded on time even though I turned in every assignment on time.\nHe graded unfairly and never took into account what his students opinions were of the films we watched in class. His opinion was the only one that counts. It showed in the feedback of my papers. That what I wrote was wrong every time.", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6bf" + } + }, + { + "text": "One of the greatest professors in terms of willing to help students get higher grades. (Yet it's hard to earn an A+) Has great knowledge regarding documentaries. Expands understanding of critical thinking processes and objectivity of documentary filmmakers. Interesting class, great films and thought provoking assignments.", + "pos": 0.311, + "neu": 0.6, + "neg": 0.089, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c0" + } + }, + { + "text": "Dictates essay questions rather then type them. Never returns paper on time so you can prepare for your next paper. Expects your paper to mimic his personal opinion on a film even though he gives you the impression that he wants your feedback.", + "pos": 0.043, + "neu": 0.957, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c1" + } + }, + { + "text": "Did not give papers back on time. Does not give you feedback on how you are doing. Provides long essay questions to make up for lack of providing student with feedback.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c2" + } + }, + { + "text": "Nice man, this professor. Doesn't seem to know a lot about movies, though.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c3" + } + }, + { + "text": "would not recommend", + "pos": 0.0, + "neu": 0.487, + "neg": 0.513, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c4" + } + }, + { + "text": "Thought-provoking material. Interesting class discussions and great feedback on papers. Unlike so many classes at CCNY (sorry, but it's true), this class (and prof) is for grown-ups.", + "pos": 0.251, + "neu": 0.713, + "neg": 0.036, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c5" + } + }, + { + "text": "Torture. This class was super boring and even through the prof seems like a nice guy he is rediculous about plagerism. Makes you affirm on every thing submitted you did not plagerize. Rediculous.", + "pos": 0.212, + "neu": 0.645, + "neg": 0.143, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c6" + } + }, + { + "text": "If you like watching films, then this is the class for you. Professor is very knowledgeable about how to analyze films. Lively class discussions. Not many paper assignments but grades hard on class papers that are. Your writing skills will improve if you allow yourself to be open to criticism.", + "pos": 0.167, + "neu": 0.741, + "neg": 0.092, + "_id": { + "$oid": "6711d6b6cd60fca157e5f6c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b7cd60fca157e5f6c9" + }, + "professor_name": "Jared Fagen", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Really great Professor. He's a super understanding and easy guy. The lectures can be a little boring but he doesn't force participation. Overall easy class if you submit your work!", + "pos": 0.298, + "neu": 0.662, + "neg": 0.04, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6ca" + } + }, + { + "text": "Professor Fagen was a great professor and makes a heavy class easy to digest. While there were weekly quizzes and a few papers, he is not a harsh grader and allows you to turn in work later than the due date so you don't fail. Participation matters in this class but there's no pressure! He is very easygoing and chill. I feel I made a great choice.", + "pos": 0.249, + "neu": 0.738, + "neg": 0.013, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6cb" + } + }, + { + "text": "Fagen is so sweet. He cares for his students and he thoroughly reads through our assignments. There are weekly quizzes but they aren't hard at all... just make sure to pay attention. The class itself was nice since he was easygoing and he was open to all interpretations. He also offers a lot of extra credit at the end so take advantage of that!!!", + "pos": 0.287, + "neu": 0.693, + "neg": 0.02, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6cc" + } + }, + { + "text": "I enjoyed taking professor Fagen this semester! He's very understanding and patient with students in his lectures. participation does matter in his class. You're given weekly quizzes online (very easy) and a midterm and final (also easy). I'd recommend taking his class to anyone who wants a light class to pass with a good grade!", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6cd" + } + }, + { + "text": "Great professor!! Patient, understanding, down to earth, funny. Weekly quizzes, no midterms or finals, just two papers and couple discussion posts on Blackboard. If you put in effort and do the work you'll definitely pass.", + "pos": 0.237, + "neu": 0.713, + "neg": 0.051, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6ce" + } + }, + { + "text": "he brings an interesting perspective to the readings andn really cares for your success in the class. plenty of chances to boost your grade. This class will make you think differently about reading & writing. strongly recommended for non literature students like me", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6cf" + } + }, + { + "text": "Classes were really insightful. He helps you to think beyond the readings and how literature can teach us about society. Assignments were manageable and he's pretty flexible with deadlines so long as you email him ahead of time. Definitely one of my favorite professors.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d0" + } + }, + { + "text": "Jared is a solid choice for a WHUM professor. He is super knowledgable and truly cares to teach. He gives you 4 absences which is great for a class that is once a week. You do have to read a lot but the majority of the text is entertaining. You do definitely have to do the work But if you pay attention you will get something out of it", + "pos": 0.22, + "neu": 0.76, + "neg": 0.02, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d1" + } + }, + { + "text": "Weekly DBAs. You have to read the text he gives you to pass the class. Its very easy. The midterm and final was based on the readings. 2 papers. Weekly quizzes. Gives extra credit during exams. Nothing heavy. He makes the work fair.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d2" + } + }, + { + "text": "I really liked Jared. He is very understanding and grades fairly. The class was only once a week and we had weekly DBAs so be ready to read different texts. Overall, the assignments were light work and you'd get enough time to complete all the work.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d3" + } + }, + { + "text": "you have to read the readings to pass and understand, but such a nice caring guy. easy class only once a week", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d4" + } + }, + { + "text": "Great professor, you can tell he cares. Bought the class little snacks sometimes. Class at times was boring because of the books. Would love to take a class with him again. If you get a chance do take him. The best!!", + "pos": 0.327, + "neu": 0.632, + "neg": 0.042, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d5" + } + }, + { + "text": "This class was average, he spoke a lot and it did get boring at times, but he was very open to students opinion and always encouraging. He gave a lot of pop quizzes but never too hard once you did the reading. I felt bad for him because some of the readings were god awful and he had to carry the class on his own just struggling to talk about it.", + "pos": 0.1, + "neu": 0.737, + "neg": 0.162, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d8" + }, + "professor_name": "Katelyn Conroy", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "Grade is based off completion of papers and other in class participation. Gives amazing feedback on papers. Easy A if you complete assignments on time and read directions.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6d9" + } + }, + { + "text": "Professor Conroy clearly taught the various parts of being a good writer. In every class, we had to write which was great for honing my craft as a writer. Three assignments and a group project at the end, all of which are fairly easy, especially if you put some effort into your revised draft.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6da" + } + }, + { + "text": "Very easy class to pass unless you do not do the work. 4 major essays with other assignments sprinkled in between essays. 4-5 pages per assignment/essay. Amazing feedback from completed assignments and make sure to read all assignments carefully! You are graded on completion/quality, not by accuracy and length", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6db" + } + }, + { + "text": "Really accessible outside of class and learned a lot through this course!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6dc" + } + }, + { + "text": "She's really nice and caring. There are like 4 projects/papers you'll have to do. It was pretty easy because if you put in the effort and complete everything, you'll get an automatic A. She gives great feedback on papers as well. Remember to do the readings before class bc she asks questions about them during class. Participation matters.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6dd" + } + }, + { + "text": "Super sweet. Weekly discussion boards along with three major projects and end of the semester portfolio. Her class requires effort but it isn't hard. I was just going through it. But if you do the basics you'll pass. She's also really easy to talk to and genuinely cares for her students. 10/10 take her you won't regret it.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6de" + } + }, + { + "text": "Overall a great professor, and gives great feedback but the coursework is A LOT so be prepared, but I would definitely take her again if I had the chance! As long as you put in the effort you'll be fine", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6df" + } + }, + { + "text": "She's a solid professor and gives great feedback. This a wonderful introductory writing class for freshman and as long as you turn in your assignments on time and put in the effort you'll do great.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6e0" + } + }, + { + "text": "She truly cares about the well being of her students and always responds to her emails. She always checks to make sure everyone understands the assignment. Her grading policy makes it really fun to learn. As long as you complete all your assignments on time, you get an A. She does give extensions to students who ask and need them. Take her class!", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6e1" + } + }, + { + "text": "She is so caring. The class is writing intensive. 100-word Responses are due every week but its manageable. She gives extensions when asked but dont abuse it. Very accessible just email her she answers quickly. Discussions are interesting wants you to participate. do the readings. easy A.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6e2" + } + }, + { + "text": "This is an amazing professor! She is the best professor I've had so far at CCNY. She really cares about her students and is very inspirational. I took her during Covid-19 crisis and I definitely do not regret it. 3 papers, 1 PAC, and a portfolio. TAKE HER CLASS!!!!!", + "pos": 0.314, + "neu": 0.625, + "neg": 0.061, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6e3" + } + }, + { + "text": "TAKE HER NOW!!! If you're taking ENGL 21003, you have to take her!! I took her during this COVID-19 crisis and I do not regret signing up for this class. She really cares about her students and understands them as well. There are 3 term papers, a PAC, and a portfolio needed in this class. Easy A if you pay attention and ask the right questions.", + "pos": 0.153, + "neu": 0.776, + "neg": 0.071, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6e4" + } + }, + { + "text": "I took her for freshman composition. Very down to Earth and cares about her students. Very transparent with how you're doing through the course of the semester.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d6b7cd60fca157e5f6e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b8cd60fca157e5f6e7" + }, + "professor_name": "Jianting Zhang", + "rating": 2.8, + "department": "Computer Science department", + "comments": [ + { + "text": "He is the best of 212, he understands students, highly recommend", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6e8" + } + }, + { + "text": "30% Assignments (4-6) | 60% Exams (2 Midterms + 1 Final) | 10% Quizzes | The comments below are tweaking. Ace the assignments, study the material early (use textbook questions, they're similar), do the quizzes on time, and reach out to him in OH (accessible), you'll be fine. He does read slides but he KNOWS the content, just ask him. Good luck!", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6e9" + } + }, + { + "text": "One of the more questionable professors out there!! Data structures is a difficult class but this professor made my life more difficult. He reads off the slides and wants us to \"memorize\" the code in his slides. When it comes to coding questions on exams, we either have to do it his way or we don't get credit at all... Bad learning environment ://", + "pos": 0.0, + "neu": 0.794, + "neg": 0.206, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6ea" + } + }, + { + "text": "I am the guy with the petition. I gave him a 5 by mistake.Smh. Hope this evens it out", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6eb" + } + }, + { + "text": "If someone paid me to take his class again, I would still not join", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6ec" + } + }, + { + "text": "He is stingy with the grades. Literally no one likes him as an educator. Do not take him. AVOID AVOID AVOID AVOID AVOID.", + "pos": 0.067, + "neu": 0.413, + "neg": 0.52, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6ed" + } + }, + { + "text": "What ever you read below, do not believe it. This guy makes the devil jealous.First, his lectures was the worse. He DOES NOT TEACH, he basically reads from the slides. Grading always harshly. Basically if you memorize the slides and book, you are good but other than that no. The coding questions in the book also have to be same as the slides!!!!", + "pos": 0.029, + "neu": 0.884, + "neg": 0.087, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6ee" + } + }, + { + "text": "Apart from his accent, the professor is great. The material itself is difficult, so be prepared to use outside sources to understand and explain concepts. Tests and projects are easier than expected. Recommended to follow along with the textbook and do not procrastinate. The professor is stern with deadlines and grading criteria.", + "pos": 0.18, + "neu": 0.778, + "neg": 0.041, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6ef" + } + }, + { + "text": "Exams are fair but lectures are a bit hard to follow sometimes.", + "pos": 0.125, + "neu": 0.755, + "neg": 0.121, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f0" + } + }, + { + "text": "He is so sweet and kind truly a gem. He goes above and beyond to make sure you understand whats going on. very to the point and clear. very accessible outside of class. \n\nnote i took him for ENGR 59910 but rmp wont let me add it", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f1" + } + }, + { + "text": "His lectures are hard to follow through and it gets really confusing when he starts stuttering a lot but overall he is very reasonable with grading and he offers an extra credit project if you are below a C in the class. I went from failing to getting a B so he must be doing something right.", + "pos": 0.053, + "neu": 0.809, + "neg": 0.138, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f2" + } + }, + { + "text": "Your only chance of passing this class is to study in your own free time and utilize the textbook. His lectures are very hard to follow through. He legit uses \"no\" as a vocal filler, racking up to about 14 \"no\"s per minute. He seems like a nice guy but being a nice guy doesn't equal understanding the material and getting a good grade.", + "pos": 0.203, + "neu": 0.779, + "neg": 0.018, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f3" + } + }, + { + "text": "His lectures are understandable and he explains the topics well. Projects aren't too much work, but start early so you can ask questions if you run into problems. You have to study hard for the tests (very detailed) or you will not get a good grade.", + "pos": 0.03, + "neu": 0.811, + "neg": 0.159, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f6" + }, + "professor_name": "Francisco Perez", + "rating": 4.1, + "department": "Education department", + "comments": [ + { + "text": "Amazing professor. He was easy to reach outside of class hour. He provided a lot of feedback. I recommend him 100%. I took him for two different classes and loved his classes.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f7" + } + }, + { + "text": "Amazing professor. He was easy to reach outside of class hour. He provided a lot of feedback. I recommend him 100%", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f8" + } + }, + { + "text": "I took several courses with Professor Uceda. He is a kind, hardworking individual, who had the grace to treat us like a colleague. His lessons and feedback helped me write a Masters' project, which I never thought I would be able to write. I have presented my work in Best practices at my school and I am planning to pursue it further. Inspirational.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6f9" + } + }, + { + "text": "Uceda is a kind, highly knowledgeable professor. As someone who is actively teaching in the public school system, he brings his real-life experience in combination with the pedagogical and linguistic theory that Spanish teachers must understand. My master's project and Spanish grammar class with him have taught me how to rethink teaching Spanish.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6fa" + } + }, + { + "text": "Best professor in the program by large. He really knows the stuff and was available after hours. He is funny in a peninsular sort of way, ;-)", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6fb" + } + }, + { + "text": "He is very professional and he knows exactly what he is teaching and be ready to learn because you are going to learn.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6fc" + } + }, + { + "text": "Awesome Professor. I learned so much about Spanish Grammar and how to insert it in my lessons. He is funny, too!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6fd" + } + }, + { + "text": "I took several classes with Professor Uceda and completed my Master's project with him. He is very flexible as he understands that we are all teaching and many already have families. His feedback, support and advice continued well beyond the classes I took with him. Awesome professor!", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6fe" + } + }, + { + "text": "I took Professor Uceda's class last fall. As a fellow, I was having lots of problems at work, designing lessons with classroom management and with life in general. His work, his ideas, the lessons and the resources provided were very helpful to me. I got feedback from my work and I was also able to reach him anytime I needed him. A one of a kind.", + "pos": 0.105, + "neu": 0.858, + "neg": 0.037, + "_id": { + "$oid": "6711d6b8cd60fca157e5f6ff" + } + }, + { + "text": "Professor Uceda was available after class for hours. He made the class worthwhile every single time, by providing resources, experience and good ideas. For me, he was inspirational.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f700" + } + }, + { + "text": "Tuve una mala experiencia. No tomar\u00eda esta clase con \u00e9l otra vez. No contesta los correos, no te da retroalimentaci\u00f3n, y la clase es pura teor\u00eda. Trat\u00e1ndose de clase en linea a\u00fan peor!! horrible", + "pos": 0.0, + "neu": 0.737, + "neg": 0.263, + "_id": { + "$oid": "6711d6b8cd60fca157e5f701" + } + }, + { + "text": "He is a nice guy, but extremely disorganized. He arrives late and ends the class late. Furthermore, you won't get any feedback throughout the semester. I also have to agree with the fact that he does NOT reply to his emails. He means well, but he needs to improve his time management skills and feedback.", + "pos": 0.18, + "neu": 0.771, + "neg": 0.05, + "_id": { + "$oid": "6711d6b8cd60fca157e5f702" + } + }, + { + "text": "He is a nice guy and means well. However, he has a problem with arriving on time and ending class on time. What you read in the class textbooks, will not be discussed in class. He does NOT give you feedback what so ever, he does not reply to emails, NOTHING. He is a nice guy; you can tell he knows his stuff, but just not a good college level prof", + "pos": 0.07, + "neu": 0.865, + "neg": 0.065, + "_id": { + "$oid": "6711d6b8cd60fca157e5f703" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b8cd60fca157e5f705" + }, + "professor_name": "Tugce Ozdemir", + "rating": 4.7, + "department": "Computer Science department", + "comments": [ + { + "text": "Okay so, off rip her grading criteria is given first day. The Zybooks you can essentially just do and slack off. Question sets are worth 25% so do them. The Midterm is easy and she does review sessions. She does have an accent that's a bit tough but she can always reexplain if you ask. She's a good professor. Also, she curves at the end. Take her!!", + "pos": 0.128, + "neu": 0.855, + "neg": 0.017, + "_id": { + "$oid": "6711d6b8cd60fca157e5f706" + } + }, + { + "text": "SHE IS THE GOAT. \nEXTRA CREDIT based on attendance, and she does curve. ZYBOOK and lecture note have everything, and recitation helpful too.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f707" + } + }, + { + "text": "Such a sweet lady and so understanding. Lectures were a bit confusing, but she's willing to explain anything if you ask, though you can just self-learn from Youtube. Gives so much extra credit on midterms + the final. She's the best", + "pos": 0.232, + "neu": 0.739, + "neg": 0.029, + "_id": { + "$oid": "6711d6b8cd60fca157e5f708" + } + }, + { + "text": "Lots of extra credit opportunities, making it easier on your final grade. Everything is essentially on zybooks. Review is nothing like the actual exams.", + "pos": 0.266, + "neu": 0.664, + "neg": 0.07, + "_id": { + "$oid": "6711d6b8cd60fca157e5f709" + } + }, + { + "text": "TBH I think most of the class took her for granted. Shes super nice and tries to make sure everyone understands the topics, but nobody really ever participated so you kinda felt bad at times. Shes really generous with grading and attendance is extra credit, but i recommend going. Id definitely take her again. SHES THE GOAT.", + "pos": 0.302, + "neu": 0.641, + "neg": 0.058, + "_id": { + "$oid": "6711d6b8cd60fca157e5f70a" + } + }, + { + "text": "Lectures cover everything for exam, but some topics get difficult to understand.\n\nMake sure everything in lecture slides make sense, and you will most definitely be ready for exams.\n\nExam review content will definitely show up on the test, so use that to prepare as well.", + "pos": 0.28, + "neu": 0.666, + "neg": 0.054, + "_id": { + "$oid": "6711d6b8cd60fca157e5f70b" + } + }, + { + "text": "she's super sweet and her class is super fair. generous with both extra credit and partial credit. she uploads every lesson and all of the material is on zybooks but, but you should still go to class tbh. overall, i'd highly recommend.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f70c" + } + }, + { + "text": "Good.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f70d" + } + }, + { + "text": "Who is Tugce Ozdemir? For the blind, she is the light. For the hungry, she gives the bread. For the sick, she has the cure. For the sad, she is the joy. For the poor, she is the treasure. Take her class, make sure you study each topic thoroughly. do not procrastinate. attendance is not mandatory but it is counted towards extra credit. curves exams.", + "pos": 0.122, + "neu": 0.754, + "neg": 0.124, + "_id": { + "$oid": "6711d6b8cd60fca157e5f70e" + } + }, + { + "text": "Discrete is a very difficult course but professor Ozdemir tried to make everything easier for the students. Although attendance was not mandatory, I highly recommend that you go to class as well as lectures because majority of her exam problems showed up from lecture and recitation so make sure you don't skip if you want a B or higher", + "pos": 0.205, + "neu": 0.702, + "neg": 0.093, + "_id": { + "$oid": "6711d6b8cd60fca157e5f70f" + } + }, + { + "text": "Professor has thick accent so it made it hard to understand what she was saying, especially in the lecture hall. Class seemed too difficult for an intro course. She is very nice however and is always willing to extend deadlines. For me, class seemed mostly self taught. HW on ZyBooks so easy to get 100's there. Just study and you will pass.", + "pos": 0.123, + "neu": 0.821, + "neg": 0.056, + "_id": { + "$oid": "6711d6b8cd60fca157e5f710" + } + }, + { + "text": "All the hw is done on zybooks, which does a good job at explaining. Lecture goes through hw and gives problems. Honestly a really easy class...discrete is a CS class that students usually DREAD but she made things so easy. Tests are 6-8 questions, some with 2 parts. Gives a lot of partial credit, so just put down as much info when doing tests", + "pos": 0.192, + "neu": 0.752, + "neg": 0.056, + "_id": { + "$oid": "6711d6b8cd60fca157e5f711" + } + }, + { + "text": "New professor, but, she knows what she's doing. I was happy to say that she made Discrete Math easy to understand.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d6b8cd60fca157e5f712" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b9cd60fca157e5f714" + }, + "professor_name": "Dionne Miller", + "rating": 3.8, + "department": "Chemistry department", + "comments": [ + { + "text": "Excellent prof. I actually learned and understood chemistry. Enjoyed the course even did extremely well in a science course which i normally don't. We need more passionate prof like her especially in science who are willing to teach student nd not just fail them!!! Lowest exam dropped. Final cumulative. Fare grade & passionate. I got very lucky.", + "pos": 0.34, + "neu": 0.626, + "neg": 0.034, + "_id": { + "$oid": "6711d6b9cd60fca157e5f715" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6b9cd60fca157e5f716" + } + }, + { + "text": "Among the best Professors I had in every aspect: intelligence, teaching, prepared-ness & genuine care. Harvard or Yale would be lucky to have her. She knows her stuff & her lectures/notes are well-organized. Her genuine care & dedication shine through in every aspects: she was always available to speak with us after class to clarify confussion", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d6b9cd60fca157e5f717" + } + }, + { + "text": "she's really easy. very helpful aviable after class. gives out online test practices.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d6b9cd60fca157e5f718" + } + }, + { + "text": "Perfectly choreographed lectures. Well prepared and thought out. Makes herself available to explain the material, and actually enjoys it.", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d6b9cd60fca157e5f719" + } + }, + { + "text": "nasty person, gives hard exams without teaching you how to do well on her exams. her lecture's are pointless if you can study the material by yourself then take her but if you never took chem before you will not learn from her. waste of time and money!", + "pos": 0.029, + "neu": 0.83, + "neg": 0.141, + "_id": { + "$oid": "6711d6b9cd60fca157e5f71a" + } + }, + { + "text": "Going to her class is so pointless because she reads straight from her lecture notes. She is a direct grader. Only exams. The lab does not count at all toward your grade, neither does the workshop. She has straight forward questions on the exam. A bit of studying from your part and its an A.", + "pos": 0.067, + "neu": 0.933, + "neg": 0.0, + "_id": { + "$oid": "6711d6b9cd60fca157e5f71b" + } + }, + { + "text": "She really cares about her students, she gives you all the materials to do well in her class, make sure you attend her class and do all the hw questions, you can even ask her questions and she'll sit down with you to go over it, I highly recommend her if you're serious about your studies", + "pos": 0.167, + "neu": 0.812, + "neg": 0.021, + "_id": { + "$oid": "6711d6b9cd60fca157e5f71c" + } + }, + { + "text": "If you're looking for an easy A, this is not the professor to take. However, she explains the work very well and tells you ahead of time what to expect. Her test's are hard so you better study. Attendance is not mandatory but you should go so that you don't fall behind. Her tests seem hard but the final is a piece of cake if you study.", + "pos": 0.081, + "neu": 0.863, + "neg": 0.055, + "_id": { + "$oid": "6711d6b9cd60fca157e5f71d" + } + }, + { + "text": "I'm not going to lie and tell you that this professor is easy and you'll get an easy A. No, on the contrary, if you focus in class, manage your time out of class to study, and do all your homework, the test will seem a lot easier. I learned a lot of chemistry when I came out of her class. I highly recommend this professor for the hardworking people", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d6b9cd60fca157e5f71e" + } + }, + { + "text": "If you saw the class average of her exams you will not want to be in her class. she lack communication with students she does not like and picks her favorites.", + "pos": 0.079, + "neu": 0.762, + "neg": 0.159, + "_id": { + "$oid": "6711d6b9cd60fca157e5f71f" + } + }, + { + "text": "Great Professor, one of the best chem prof u will find in CCNY. But her test are difficult. Sh always makes time for her students and really cares.", + "pos": 0.26, + "neu": 0.651, + "neg": 0.088, + "_id": { + "$oid": "6711d6b9cd60fca157e5f720" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6b9cd60fca157e5f722" + }, + "professor_name": "Robert Anderson", + "rating": 3.5, + "department": "Biology department", + "comments": [ + { + "text": "Boring lectures. He doesn't give you slides until after the class and they're not very helpful. It's not always clear what will be on the tests. The class is interactive, he asks many questions to the students but never says which answers are correct or not and he doesn't really indicate clearly what the correct answer is", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d6b9cd60fca157e5f723" + } + }, + { + "text": "Great person but he can't teach. His powerpoint are practically useless as it mostly only contains diagrams with few words here and there. When asked a question most of the time he either dismisses the student, claims it's not important or that it's not clear in biology. Lecture is only 2hrs but can be shortened to an 1 hr if he doesn't speak slow", + "pos": 0.036, + "neu": 0.846, + "neg": 0.118, + "_id": { + "$oid": "6711d6b9cd60fca157e5f724" + } + }, + { + "text": "Not a great teacher in this class as he technically never taught anything. All material based off of PhD students' presentation. One final group project, two exams, a final and bunch of quizzes. Open ended questions will kill your grade in this class, toughest grader. If you can avoid him, just take another elective. It is definitely not worth it.", + "pos": 0.039, + "neu": 0.773, + "neg": 0.188, + "_id": { + "$oid": "6711d6b9cd60fca157e5f725" + } + }, + { + "text": "The class is pretty easy, out of the other biology classes, this one has been the easiest. At first I thought this class was going to be boring because I personally do not enjoy ecology and evolution but he makes it interesting and easy to understand. You'll definitely pass if you study, he is pretty funny. Lab is easy too, trips can be annoying.", + "pos": 0.329, + "neu": 0.591, + "neg": 0.08, + "_id": { + "$oid": "6711d6b9cd60fca157e5f726" + } + }, + { + "text": "listen dont bother with the textbook just come to class. test is right off the PowerPoint this guy not trying to make nobody life hard. is the hunger games with when dr anderson teaches EVERYBODY wants to take his classes because is chill promotes learning and making friends even TA are your friends haha LOOK FOR THIS GUY!", + "pos": 0.204, + "neu": 0.746, + "neg": 0.05, + "_id": { + "$oid": "6711d6b9cd60fca157e5f727" + } + }, + { + "text": "DR. anderson WANTS TO HELP. he is focus on passing his students. easy class but by the end you will know the basics and thats all you need to know for pcat, mcat etc. the BASICS. other professors shoved their phd knowledge down your throat. good guy. undergrad shouldnt be that difficult u learn everthing grad school. highly recomened. PLEASE TAKE", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d6b9cd60fca157e5f728" + } + }, + { + "text": "He is a great Prof! This class is based off of student interest, thats right YOU decide what YOU want to study as a class! 2 exams, a final, and a DIVA-GIS project which he is not very helpful with. must do the readings and he is a very specific harsh grader! but he is very helpful and interested in his students", + "pos": 0.199, + "neu": 0.748, + "neg": 0.053, + "_id": { + "$oid": "6711d6b9cd60fca157e5f729" + } + }, + { + "text": "Prof. Anderson is a great prof....he got easier in spring '10 semes b/c the class got bigger which means more grading so now his exams are simpler, fr his notes, and a lil fr the txtbk....i got a B w/o the txtbk.....final was repeat questions from exam 1 n 2..but watch out for his tricks! and b as specific w/ ur ans cuz he's picky", + "pos": 0.102, + "neu": 0.877, + "neg": 0.021, + "_id": { + "$oid": "6711d6b9cd60fca157e5f72a" + } + }, + { + "text": "He makes you work for your grade. The first test is tricky. You have to take good notes and understand the lecture as well as read the textbook, because some of the material that shows up on exams are not even touched on in class. The final is easy though. Just keep up with the class because he likes pop quizes as well.", + "pos": 0.179, + "neu": 0.798, + "neg": 0.022, + "_id": { + "$oid": "6711d6b9cd60fca157e5f72b" + } + }, + { + "text": "He teaches very vaguely and his 1st exam is tricky. you have to read the book to really study for his exams. The final was easy though. He also gives quizzes from time to time.", + "pos": 0.077, + "neu": 0.88, + "neg": 0.043, + "_id": { + "$oid": "6711d6b9cd60fca157e5f72c" + } + }, + { + "text": "Not the best professor. Sometimes seems like it's his first time teaching. Grades overly harshly, and doesn't go out of his way to help students. Can be rather brusque at times.", + "pos": 0.142, + "neu": 0.766, + "neg": 0.092, + "_id": { + "$oid": "6711d6b9cd60fca157e5f72d" + } + }, + { + "text": "Very nice and mellow guy. Very organized. He really cares for students.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d6b9cd60fca157e5f72e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bacd60fca157e5f730" + }, + "professor_name": "David Judelson", + "rating": 3.1, + "department": "Architecture department", + "comments": [ + { + "text": "Amazing professor will be missed!!!", + "pos": 0.473, + "neu": 0.304, + "neg": 0.223, + "_id": { + "$oid": "6711d6bacd60fca157e5f731" + } + }, + { + "text": "He doesn't have solid deadlines like the rest of first year professors and tries to help you in your design process with analogies and references,sometimes a hands-off approach, which helps you to think more independently. He gives a decent amount of workload compared to other studios.", + "pos": 0.152, + "neu": 0.82, + "neg": 0.028, + "_id": { + "$oid": "6711d6bacd60fca157e5f732" + } + }, + { + "text": "he is awesome.", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f733" + } + }, + { + "text": "I had him for my whole 1st year. Big mistake. He's super abstract and his analogies make everything more confusing and he tries to help, I'll give him that, he's not picky about the drawings as long as it looks like you tried, craftsmanship doesn't have to be perfect. He's easy in that aspect.", + "pos": 0.233, + "neu": 0.698, + "neg": 0.068, + "_id": { + "$oid": "6711d6bacd60fca157e5f734" + } + }, + { + "text": "He keeps favorites when it came to grading, overall he is OK and u will learn a lot from him but keep in mind that he keeps favorites even if their projects are crap.", + "pos": 0.185, + "neu": 0.732, + "neg": 0.083, + "_id": { + "$oid": "6711d6bacd60fca157e5f735" + } + }, + { + "text": "At first i argued with him, but after realizing to what extent he lacks creativeness and intelligence i stopped. If you like dry one way conversations on architecture take him!", + "pos": 0.281, + "neu": 0.617, + "neg": 0.101, + "_id": { + "$oid": "6711d6bacd60fca157e5f736" + } + }, + { + "text": "PROF. Judelson ,is a harded grader. He grades people based on the process of their model .He is very limited on the instructions he gives , allowing people to be more abstract and open to an unlimited possibilities of design.To some this freedom of design is good, but to other like me a sense of limitation and direction would have been helpful", + "pos": 0.165, + "neu": 0.775, + "neg": 0.061, + "_id": { + "$oid": "6711d6bacd60fca157e5f737" + } + }, + { + "text": "i took judelson for a whole year, he is a very nice person. wants u took have a strong design idea. ur craftsmanship can be ok and ull get away with it but he gets picky soemtimes with drawings. he's not an easy A (easy B+)like ppl think but he is the best 1st year professor,he is more concerned about the desing above all i highly recommend him.", + "pos": 0.23, + "neu": 0.733, + "neg": 0.037, + "_id": { + "$oid": "6711d6bacd60fca157e5f738" + } + }, + { + "text": "Gives the utmost in creative freedom. Unlike others he has a soul & gets you you to follow your heart& won't psychologically abuse you into working, but grades fair so dont take him for a sucker. I did more overnights for him than anyone else because I was inspired, not terrified. WILLING TO EXPLAIN BASIC DRAWING SKILLS, e.g perspective, iso, etc", + "pos": 0.266, + "neu": 0.675, + "neg": 0.059, + "_id": { + "$oid": "6711d6bacd60fca157e5f739" + } + }, + { + "text": "Good teacher.. to bad student do not see the real part of Architecture take him so you not need to think ABSTRACT for the rest of college life 1 year with him will do.. one thing he grade kind funky be aware beside that great teacher", + "pos": 0.185, + "neu": 0.728, + "neg": 0.087, + "_id": { + "$oid": "6711d6bacd60fca157e5f73a" + } + }, + { + "text": "He's more of a sculptor than an architect.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f73b" + } + }, + { + "text": "He is a subtle and artful teacher and his class is a great place to start your architecture education. What to learn from him is where to find opportunities in your work.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f73c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bacd60fca157e5f73e" + }, + "professor_name": "Marit Dewhurst", + "rating": 3.7, + "department": "Art department", + "comments": [ + { + "text": "The class feels like an insult to academia in general. She lacks respect for the subject matter as well as for her students. Marit's class is an uninviting tense environment.", + "pos": 0.229, + "neu": 0.623, + "neg": 0.148, + "_id": { + "$oid": "6711d6bacd60fca157e5f73f" + } + }, + { + "text": "Extremely unprofessional as a leader, terrible class you learn 0 useful information that will help you. She has an indifferent outlook on her students.", + "pos": 0.169, + "neu": 0.574, + "neg": 0.257, + "_id": { + "$oid": "6711d6bacd60fca157e5f740" + } + }, + { + "text": "PLEASE TAKE HER CLASS", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f741" + } + }, + { + "text": "I took her Exploring Starts in Humanities and Arts HUM 11001 class; it was fun, easy and informative!", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f742" + } + }, + { + "text": "Marit is a political activist masquerading as an educator. Nothing in this course will show you how to be a quality teacher its just preachy political pontification on a religious level. It is discouraging when everyone gets an A just for showing up. She does not know how to motivate/train/prepare students who will become new teachers.", + "pos": 0.0, + "neu": 0.95, + "neg": 0.05, + "_id": { + "$oid": "6711d6bacd60fca157e5f743" + } + }, + { + "text": "Take her class. It was very helpful to take as a uprising educator. I loved how she inserted ways for us to express ourselves and learn.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f744" + } + }, + { + "text": "This was such a good class to take between my other stressful classes. It was a really good class I 100% recommend any major to take this class. I love her. there are a lot of small hw and towards the end there are 3 major assignments that feel kinda rushed but it sill a pretty easy A class.", + "pos": 0.234, + "neu": 0.736, + "neg": 0.03, + "_id": { + "$oid": "6711d6bacd60fca157e5f745" + } + }, + { + "text": "She's a very kind person. Personally I think she lacks the knowledge of the ins and outs of the DOE which can cause confusion and aggravation in the program. Additionally, most of the classes are exactly the same and while it's definitely pedagogy, none of her classes cover the real issues of classroom management, conflict, and relationships.", + "pos": 0.1, + "neu": 0.83, + "neg": 0.07, + "_id": { + "$oid": "6711d6bacd60fca157e5f746" + } + }, + { + "text": "one of the best professors ever!!! TAKE HER! EASY A", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f747" + } + }, + { + "text": "Professor Marit Dewhurst's class is built on ideas that will help her students to become better educators and health professionals.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f748" + } + }, + { + "text": "Marit is truly amazing. She gives open/creative assignments with little guidelines so that you can fully express yourself through your work. She is insanely intelligent and kind. Simply, the best.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f749" + } + }, + { + "text": "Marit is truly inspirational. She gives a lot of work -but all is very helpful in making you become a better educator. Very down to earth and helpful. Gives clear instructions to assignments and makes sure her students understand what is to be expected. She makes it her duty to have a community environment between her and the students.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f74a" + } + }, + { + "text": "Professor Dewhurst is awesome. She is very helpful and clear when it comes to assignments and teaching the class. She is super nice too. Even though she is nice you have to take her assignments seriously and also do not hand in your work late b/c she deducts points. Take her though you will learn. Do everything and you will get an A.", + "pos": 0.248, + "neu": 0.697, + "neg": 0.055, + "_id": { + "$oid": "6711d6bacd60fca157e5f74b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bacd60fca157e5f74d" + }, + "professor_name": "Laurie Woodard", + "rating": 3.9, + "department": "History department", + "comments": [ + { + "text": "Work was manageable and Professor was flexible. She was nice to most\nbut tended to pick apart a few students.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f74e" + } + }, + { + "text": "Professor Woodard is an exceptional professor and is the type of Professor that everyone needs at least once in their lives. She is very flexible and understanding, truly caring for her students and their goals. Professor Woodard is also very knowledgeable in her field of history.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f74f" + } + }, + { + "text": "Dr. Woodard is an extraordinary professor! She is incredibly well-versed in her field and provides excellent feedback. I have taken her twice: one for a BA-level class and another for an MA-level class, and she was a delight! Very empathic and intelligent, not to mention one who excites her students on the subject(s) at hand. Take her!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f750" + } + }, + { + "text": "The professor is really really nice and understanding,. Her class does require ALOT of weekly reading and makes you do weekly discussions on BlackBoard. She DOES assign heavy graded papers up to 15 pages. Overrall, the lessons are mostly discussions and lectures with PP slides. There is alot of reading so be ready to read non stop. She is very nice", + "pos": 0.135, + "neu": 0.833, + "neg": 0.032, + "_id": { + "$oid": "6711d6bacd60fca157e5f751" + } + }, + { + "text": "1.) Pop Quizzes 2.) Discussion Questions 3.) Research Prospectus 4.) 14 page research essay 5.) Final Essay 6 to 8 pages 6.) Analytical Essay This was the format of the class (and I think it's the same for all of her other classes as well). Get ready to read, write, and work hard. Want that A? You will work to the bone for it. I sure did!!", + "pos": 0.122, + "neu": 0.859, + "neg": 0.019, + "_id": { + "$oid": "6711d6bacd60fca157e5f752" + } + }, + { + "text": "Professor Woodard is someone who is well versed in her expertise. However, one thing that she could improve on is being more specific in her lectures with names and factual evidence. This would improve her lectures. However, she is a easy grader and cares a lot about her students.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f753" + } + }, + { + "text": "This class was very interesting. If you are not interested in the subject matter it will be hard for you to care about what is being said. She really knows what she is talking about and enjoys having conversation. Also brought in guest speakers. In terms of grading she is tough but understanding. As long as you are upfront and care she will.", + "pos": 0.164, + "neu": 0.778, + "neg": 0.058, + "_id": { + "$oid": "6711d6bacd60fca157e5f754" + } + }, + { + "text": "This class is a research workshop class. A LOT of reading but the class is only once a week so totally understandable. She really makes sure that everyone gets their chance to review others work as well as get theirs reviewed. The work we did is important because a lot of us are going to either masters courses or to graduate school in general.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f755" + } + }, + { + "text": "She is extremely caring. In addition she is very flexible. The only issue is that she does expect you to do your work and care about her class but it is more than a fair exchange in terms of what we get back from her. I have taken a couple classes from her and she always does try her best to make sure that we are heard as well as fairly graded.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d6bacd60fca157e5f756" + } + }, + { + "text": "She may seem \"nice\" but obviously has issues with students like myself -- students who struggle with real-life experiences that may affect scholarly performance. I also find that she perpetuates the ghetto-ization of education, while she thinks it's okay to send me nasty e-mails about matters I cannot control, for ex. I have considered a lawsuit.", + "pos": 0.116, + "neu": 0.732, + "neg": 0.152, + "_id": { + "$oid": "6711d6bacd60fca157e5f757" + } + }, + { + "text": "A really sweet & smart professor. A lot of reading but sometimes it's interesting & if you read even a little it's easier to get participation points. Blackboard questions weekly, a couple of papers & a really long final paper but they're all doable. Not an easy class but it's very possible to do well & she'll definitely help you if you ask her.", + "pos": 0.259, + "neu": 0.702, + "neg": 0.039, + "_id": { + "$oid": "6711d6bacd60fca157e5f758" + } + }, + { + "text": "Nice person, shes always available via email and after class. reading assignments were kinda annoying (40+ pages each). 2 papers,midterm, final . The grading was a little harsh on the midterm, and 2 papers. Honestly the class was just boring, you show up, go over a moment in history ,talk about the social injustice and then talk about the reading.", + "pos": 0.082, + "neu": 0.763, + "neg": 0.156, + "_id": { + "$oid": "6711d6bacd60fca157e5f759" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bbcd60fca157e5f75b" + }, + "professor_name": "Javier Garcia", + "rating": 2.8, + "department": "Communication department", + "comments": [ + { + "text": "I had this professor twice and found his class interesting and Informative both times. He always answered my emails and even looked over my resume for me. Class is not too hard and he gives good feedback if you ask for it.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f75c" + } + }, + { + "text": "Probably the worst professor I ever had throughout my whole time at CCNY. Not a single lecture was given, I basically paid for this class, just to watch YouTube videos. At that point I could've stayed home and learned the material on my own. Doesn't reply to emails and if he does it will be DAYS later. Steer clear, you WILL regret taking his class.", + "pos": 0.036, + "neu": 0.867, + "neg": 0.097, + "_id": { + "$oid": "6711d6bbcd60fca157e5f75d" + } + }, + { + "text": "Lectures can be a bit robotic but if you take simple notes you're fine, compared to many of the other reviews he's seemed to soften up a bit. The only thing that was off was the group project assigned before thanksgiving break (almost out of nowhere) that we didn't have to present, but then he gave us another one after thanksgiving that felt rushed", + "pos": 0.034, + "neu": 0.966, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f75e" + } + }, + { + "text": "this was for the previous semester. if your currently enrolled in communications at CCNY you will unfortunately have to encounter this professor. Be prepared for no email responses for a few days, extremely harsh grading techniques, and 0 ramose or empathy. He also tends to have a creepy smile during his lectures. good luck", + "pos": 0.158, + "neu": 0.722, + "neg": 0.12, + "_id": { + "$oid": "6711d6bbcd60fca157e5f75f" + } + }, + { + "text": "very bad experience with professor. Harsh grader and very un compassionate He has given more assignments during COVID than before and grades the final essay very harsh", + "pos": 0.096, + "neu": 0.632, + "neg": 0.272, + "_id": { + "$oid": "6711d6bbcd60fca157e5f760" + } + }, + { + "text": "This professor has one of the most arrogant, snobby, most beletting attitude I ever witnessed in this school. When students have a simple question he always follows up his answer with some snarky remark like he knows it all. It takes him 3 days to reply to your email, and he always mis grades the final. Never shows compassion, talking to a robot", + "pos": 0.035, + "neu": 0.837, + "neg": 0.127, + "_id": { + "$oid": "6711d6bbcd60fca157e5f761" + } + }, + { + "text": "Although he is very knowledgeable, it is shadowed by his hubris, smug demander. His fault lies within his ability to be an advocate for his students. During harsh times a little compassion goes a long way. However if you do your work, show up and participate you will receive what you put in... Hopefully.", + "pos": 0.146, + "neu": 0.724, + "neg": 0.129, + "_id": { + "$oid": "6711d6bbcd60fca157e5f762" + } + }, + { + "text": "Good guy who knows his stuff. Lectures are engaging. Expectations are clearly presented and he gives good feedback. Extra credit offered. I would take him again.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f763" + } + }, + { + "text": "This class is lecture heavy and slides are not provided. He is not an easy grader but is lenient and allows re-submission of papers for a better grade. Midterm was writing heavy and long. He brings real world experience to the classroom and gives good feedback. Take this class if you want to learn something and be prepared to work.", + "pos": 0.203, + "neu": 0.773, + "neg": 0.024, + "_id": { + "$oid": "6711d6bbcd60fca157e5f764" + } + }, + { + "text": "Professor Garcia isn't a bad professor but he does give a lot of work that is graded pretty heavy. I wouldn't mind taking him again. For the midterm, you're going to have to study on your own and make your own review sheet but its not that bad since most professor don't even provide one for you lectures aren't boring and he's a good guy.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f765" + } + }, + { + "text": "Good class if you study on your own, don't purchase the book as you can read of his slides. FOR ALL THE REVIEWS TAKE PICTURES OF THE SLIDES, HE WON'T POST IT ONLINE AND MEMORIZE ACH OF THEM, EVERYTHING IS ON THE EXAM. The exams are completely long answer questions two absences allowed doesn't matter if excused or not. REALLY HARD GRADER for papers", + "pos": 0.081, + "neu": 0.903, + "neg": 0.016, + "_id": { + "$oid": "6711d6bbcd60fca157e5f766" + } + }, + { + "text": "Garcia is a professor who knows all the material due to his first hand experience in the field of advertising. However, his slides arent too great in class. ALSO, be advised that the midterm and final require LOTS of writing. He also does not believe in posting review sheets, for the professor expects you to read the book and know the material.", + "pos": 0.048, + "neu": 0.902, + "neg": 0.05, + "_id": { + "$oid": "6711d6bbcd60fca157e5f767" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bbcd60fca157e5f769" + }, + "professor_name": "Jennifer Chmielewski", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "What an amazing experience I have had with Prof. Chmielewski. At first, it was a bit concerning because we would hardly meet for class with her, but she left us amazing content to familiarize us with the material. I have heard how difficult this class has been for others, and this class with Jennifer was an absolute pleasure.", + "pos": 0.181, + "neu": 0.773, + "neg": 0.046, + "_id": { + "$oid": "6711d6bbcd60fca157e5f76a" + } + }, + { + "text": "Easy going professor and class is very easy. We get easy quizzes and short labs after we finish a chapter. Final is cumulative. She drops the lowest quiz grade and gives extra credit. 1 paper that is divided into two parts, it is a research proposal draft that is 4 pages which is part 1. Part 2 is the final revision of the paper.", + "pos": 0.158, + "neu": 0.806, + "neg": 0.036, + "_id": { + "$oid": "6711d6bbcd60fca157e5f76b" + } + }, + { + "text": "Professor Jen is such a great person for this class. Experimental psych is not hard you just have a lot of readings to do. At times it can get confusing but Professor Jen breaks down the material for you to understand. Very lenient with grading as long as you let her know. Def take her you wont regret it", + "pos": 0.15, + "neu": 0.828, + "neg": 0.022, + "_id": { + "$oid": "6711d6bbcd60fca157e5f76c" + } + }, + { + "text": "One of the best professors at City college ! She is truly a gem. Experimental psych is not the hardest but it is definitely not the easiest, this was my second time taking this class and I did much better with this professor. She is really understanding and caring !! She teaches for you to understand not just for a passing grade.", + "pos": 0.229, + "neu": 0.732, + "neg": 0.039, + "_id": { + "$oid": "6711d6bbcd60fca157e5f76d" + } + }, + { + "text": "She genuinely want her students to do great. Shes a grad student obtaining her phd so she understand and relates to the students. However, this is a challenging class. Be prepared to read A LOT of article reviews and respond to them. She does this to prepare for our research proposal so get ready. 1 exam which is the final exam and quizzes weekly.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f76e" + } + }, + { + "text": "Professor Chmielewski is wonderful! The two papers take time to do but she is kind with grading. Labs can be annoying but she will address any issues with grades and make adjustments. Weekly simple quizzes and a fair final exam. She is very considerate of her students and it made the class a pleasure to take. Highly recommended for Experimental!", + "pos": 0.284, + "neu": 0.671, + "neg": 0.045, + "_id": { + "$oid": "6711d6bbcd60fca157e5f76f" + } + }, + { + "text": "She is a solid choice, class though was a little over the place and most instructions for assignments were poorly given so you just have to be communicating if you're really confused. Feel like many things impeded her teaching and just our learning, a great person though, very caring of situations and sometimes fair.", + "pos": 0.22, + "neu": 0.74, + "neg": 0.04, + "_id": { + "$oid": "6711d6bbcd60fca157e5f770" + } + }, + { + "text": "I only put beware of pop quizzes because I forgot to take the quizzes online. Prof. C is a really nice and helpful professor. She makes it super easy for everyone and gives great feedback. Really understanding always and very respected. Get your final paper done ASAP, study for the final and you'll pass with ease.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f771" + } + }, + { + "text": "Wonderful Prof. Will take her again. One of the best profs at CCNY.", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f772" + } + }, + { + "text": "Professor C. is amazing. Take her if you ever get the chance to. She is very understanding, caring and wants all her students to perform well in her class. Does not give alot of work; quiz for every chapter, a research paper, which was divided in sections and a finals. A few homeworks. I would take her class again. She is a great prof.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d6bbcd60fca157e5f773" + } + }, + { + "text": "Such an amazing professor. Shes nice and cares how her students are doing. Theres a test after every chapter and 2 quizzes are dropped. Very understanding and very easy. One research project with a group but everything is written separately. No use of the textbook.", + "pos": 0.164, + "neu": 0.781, + "neg": 0.055, + "_id": { + "$oid": "6711d6bbcd60fca157e5f774" + } + }, + { + "text": "She was a really easy professor for Experimental 321. We were able to miss 4 classes. Also, every class we went over the chapters that are in the textbook. We had quizzes every class that were based on the lecture we talked about last class. The quizzes were online and very easy. The final exam was also very easy!!! No need to stress the final.", + "pos": 0.137, + "neu": 0.773, + "neg": 0.09, + "_id": { + "$oid": "6711d6bbcd60fca157e5f775" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bccd60fca157e5f777" + }, + "professor_name": "Alexandra Stern", + "rating": 4.9, + "department": "History department", + "comments": [ + { + "text": "Puts in a lot of effort and it shows. Lectures are well done and informative, but not afraid of breaking from script either. Excellent knowledge of the subject. Wide range of assignments with very lenient deadlines, but no-nonsense attitude towards grading. Lots of readings, but not overwhelming. Understanding and helpful in and outside of class.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f778" + } + }, + { + "text": "Professor Stern is extremely understanding and has fantastic lectures with relevant material that is presented quickly and simply. Grades in this course were based on a 5-page analysis paper, 5-page reading response worksheet, 15-page take-home midterm, and 15-page research paper. I highly recommend her.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f779" + } + }, + { + "text": "great profesor; very caring, assignments are easy and shes always there to help", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f77a" + } + }, + { + "text": "Professor Stern really helped me out during a major rough patch. She let me take an incomplete in the class when I got Covid and helped keep me on track to finish my assignments. I couldn't have done it without her.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f77b" + } + }, + { + "text": "Probably the best professor you'll ever have.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f77c" + } + }, + { + "text": "Even though i'm pre-med and took this class as an elective, it was definitely the most impactful class I took this semester. Besides the really interesting lecture content I liked the choice we had for the final assignment. Enough research papers thank you. The Unessay Project turned out to be a lot of fun once i figured out what I wanted to do.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f77d" + } + }, + { + "text": "She's a great lecturer and inspires discussion. She has lots of smaller assignments and chances at extra credit. I just didn't like how she takes so long to grade all the work. Also, I wasn't a fan of her final \"unessay\" project.", + "pos": 0.221, + "neu": 0.699, + "neg": 0.079, + "_id": { + "$oid": "6711d6bccd60fca157e5f77e" + } + }, + { + "text": "Finally, an Indigenous History course at CCNY! I learned a lot about the history of Native Americans and about modern day issues in Indian Country. And Professor Stern is great; she cares a lot about her students and is flexible about deadlines. Every class discussion was interesting. I would definitely take other classes with her in the future.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f77f" + } + }, + { + "text": "Professor Stern's classes are very well organized, easy, and straight to the point. If you participate, do the lecture activities, and all required assignments to the best of your ability, you will definitely pass! She encourages group discussion and engagement so reading often will ensure you are what aware with what is going on in the class.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f780" + } + }, + { + "text": "She is a BREATH of fresh air. She encourages DIALOGUE. She stirs the pot. I LOVE the fact that she is willing to stir controversy in class and make us sit with it. She even gives us a chance for creative expression. If I had had professors like this and maybe I would have completed the BA/MA program.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f781" + } + }, + { + "text": "Great mix of readings. I especially enjoyed reading the primary sources each week and seeing different perspectives on the Civil War - not just white soldiers - and Reconstruction. I also appreciated her creativity, such as starting the class with a poll, use of lots of visuals, and the variety of activities during class.", + "pos": 0.204, + "neu": 0.737, + "neg": 0.059, + "_id": { + "$oid": "6711d6bccd60fca157e5f782" + } + }, + { + "text": "Really interesting class with some of the best discussion I've had since COVID forced us online. It was clear Professor Stern cared about us and tried to be flexible. Her weekly to-do checklists and broad paper extension policy were a god-send. Read the paper prompts and you'll do fine on the papers. The creative unessay project is a lot of fun.", + "pos": 0.29, + "neu": 0.671, + "neg": 0.039, + "_id": { + "$oid": "6711d6bccd60fca157e5f783" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bccd60fca157e5f785" + }, + "professor_name": "Scott Schwartz", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "This is such an easy class, if you are interested he posts tons of readings that can help you prepare for the next class although it's not needed. He has on his syllabus that there are essays although it ended up being the midterm, final papers, and a couple of 300-word papers based on articles you find (took an hour in total for those).", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f786" + } + }, + { + "text": "I highly recommend taking Prof Schwartz for an easy A. Although the syllabus says there are essays and such, the course only has 2 grades. Midterm exam grade and Final exam grade. If you attend class, you can expect to get 1 extra credit point for every time you participate/ speak, he keeps a record even if the class is 100+ students.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f787" + } + }, + { + "text": "such an amazing professor he's really chill and very knowledgeable about so many things i highly recommend his courses they are very manageable", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f788" + } + }, + { + "text": "Grade is composed of weekly discussion board questions based on readings where he only requires a 2-3 sentence response and a final paper. Only saw him once a week and he often let us out early. Easy A if you do the assignments.", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f789" + } + }, + { + "text": "Discussion questions every week. 3 ask your own questions assignment. 1 midterm and 1 final. No exams just essays and paragraphs and writing.", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d6bccd60fca157e5f78a" + } + }, + { + "text": "Professor Schwartz is by far the best professor I ever had. Not only were the lectures interesting, the homework were easy too. If you do the work and show up to class you will have no trouble passing this class with an A.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f78b" + } + }, + { + "text": "He is one of the best professor I have ever had. I wish every professor was like him. Tests homework eventing is easy.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f78c" + } + }, + { + "text": "good professor. I did the essays and discussion posts last-minute (no late penalties) bc I was overworked most of June. 3 300-500 word essays revolved around a specific topic, 3 discussion posts (a question to answer), and a paragraph of a final paper idea (this was mostly due to the fact the class is short, which is 1 month). took him in summer", + "pos": 0.045, + "neu": 0.955, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f78d" + } + }, + { + "text": "Professor Schwartz is super laid back and chill. He gave 2 short papers, weekly discussions, a midterm, and 1 final paper. He made the assignments very clear and interesting. Take his class if you want to learn more about anthropology! Very knowledgeable and funny.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f78e" + } + }, + { + "text": "He's super chill and as long as you turn in your work you'll get a good grade. We only had discussion boards, midterm, and a final. He provided all the content you needed to complete the assignments. Literally, all you had to do was look over the material, and you'll find what you need to answer the questions.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d6bccd60fca157e5f78f" + } + }, + { + "text": "Honestly, this class will be the least of your worries. Super laid back guy, isn't so strict on late work or attendance. As long as you submit work, you'll get a good grade.", + "pos": 0.236, + "neu": 0.697, + "neg": 0.067, + "_id": { + "$oid": "6711d6bccd60fca157e5f790" + } + }, + { + "text": "The absolute BEST teacher to take an online course with. Does not penalize you for submitting late assignments and it not strict at all with grading. Gave three short essays, 3 discussion boards and a short 3-5 sentence assignment; super easy! Would take this class again a million times over!! (I reviewed another scott schwartz by accident, oops!)", + "pos": 0.202, + "neu": 0.754, + "neg": 0.044, + "_id": { + "$oid": "6711d6bccd60fca157e5f791" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bdcd60fca157e5f793" + }, + "professor_name": "Jonathan Jiang", + "rating": 4.8, + "department": "Chemistry department", + "comments": [ + { + "text": "He's a great Lab TA. He's understanding if you have other classes or work that interferes with the lab. He explains the lab very clearly and always ensures that everyone understands. He's also very accessible if you have a question about the labs. The lowest lab grade gets dropped. Would really recommend you have him as your Lab TA.", + "pos": 0.146, + "neu": 0.815, + "neg": 0.039, + "_id": { + "$oid": "6711d6bdcd60fca157e5f794" + } + }, + { + "text": "A great lab instructor. He always spent at least 20 minutes at the beginning of the lab going over it in detail, making sure it was clear for everyone. Very accessible for questions during the lab if you had any difficulties. Also dropped the lowest lab grade. He was also quick to answer emails.", + "pos": 0.143, + "neu": 0.78, + "neg": 0.076, + "_id": { + "$oid": "6711d6bdcd60fca157e5f795" + } + }, + { + "text": "Great lab teacher. He makes the labs pretty simple and always showed samples of his work and calculations for the results of the labs. He's also really nice and helpful if you are having trouble executing the labs.", + "pos": 0.274, + "neu": 0.671, + "neg": 0.055, + "_id": { + "$oid": "6711d6bdcd60fca157e5f796" + } + }, + { + "text": "A perfect, polite and professional chemistry lab teacher assistant drops a lowest grade on lab assignment and teaches you how to make a graph. Please take this chemistry lab teacher assistant if you will be happy and surprised.", + "pos": 0.246, + "neu": 0.699, + "neg": 0.055, + "_id": { + "$oid": "6711d6bdcd60fca157e5f797" + } + }, + { + "text": "Best part of my chemistry class!! Lab are easy and he explains everything so well, very friendly guy. One time I forgot my homework and didn't know how to do it. He explained how to do it step by step and still accepted it. I wish all lab TA's were like him", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f798" + } + }, + { + "text": "He is the best lab teacher 10/10 and is very nice. He has a very thick accent as if he is going to spit on you but he gives good credit. Just be sure to follow instruction and get the sig figs right.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f799" + } + }, + { + "text": "The best lab TA. Explained the lab beforehand with ease, made the lab as easy as possible for students, answered questions throughout the lab, graded the labs easily, etc. Can't find one bad thing about him to be honest with you.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f79a" + } + }, + { + "text": "Professor Jiang is a great lab TA for Chemistry. He always explained how to do each lab during the beginning of class. He will also answer any question you have if you're confused towards how to do the lab. He's very nice as well. Take him if you can, you won't regret it!!!", + "pos": 0.202, + "neu": 0.761, + "neg": 0.036, + "_id": { + "$oid": "6711d6bdcd60fca157e5f79b" + } + }, + { + "text": "You will not regret taking him!", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f79c" + } + }, + { + "text": "He seems rude and he is but at the end, he will give you an A so take him", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d6bdcd60fca157e5f79d" + } + }, + { + "text": "One of the best lab Ta's by far. Didn't really have to read the lab manual before lab because he would explain and provide a detailed procedure for the experiment. Make sure to do the pre labs and additional homework he assigns. Overall, a really nice guy and get to know him!", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f79e" + } + }, + { + "text": "One of the best professors I've had in CCNY. He helps you out in lab if you get stuck and explains you everything. Very understanding and funny. Just come to lab and follow instructions and you will get a good grade. He drops the lowest lab.", + "pos": 0.224, + "neu": 0.696, + "neg": 0.08, + "_id": { + "$oid": "6711d6bdcd60fca157e5f79f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a1" + }, + "professor_name": "Karen Hubbard", + "rating": 2.9, + "department": "Biology department", + "comments": [ + { + "text": "She grades off very few exams and the questions are ripped straight from the slides; You CANNOT rely on her study guides as they don't include everything you need to study, just study straight from the slides. Her lectures consist of her reading off slides as she comes to class entirely unprepared to teach; Also takes forever to grade (1+ months)", + "pos": 0.061, + "neu": 0.939, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a2" + } + }, + { + "text": "This is my second course with this professor, just amazing overall. Only negative is you wait awhile for exam scores back but study guides are extremely similar to her exams. Super fair exams with extra points every exam which helped me alot. She also puts you on to opportunities since she is so well connected so make sure she knows who you are", + "pos": 0.265, + "neu": 0.705, + "neg": 0.03, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a3" + } + }, + { + "text": "I literally cannot understand the negative reviews. She was extremely helpful and kind. The only annoying thing is her grader who is so subjective but other than that this has been an easy and fun class.", + "pos": 0.315, + "neu": 0.645, + "neg": 0.04, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a4" + } + }, + { + "text": "Amazing professor", + "pos": 0.792, + "neu": 0.208, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a5" + } + }, + { + "text": "Never prepared, she reads straight off her slides. She openly admits that she doesn't write her own exam questions, nor does she grade the assignments/exam herself. Her guest lecturers (and there were many) were the only bright part of the class, but if you have a problem with your exam grade she tells you that the guest lecturers wrote/graded it.", + "pos": 0.077, + "neu": 0.848, + "neg": 0.075, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a6" + } + }, + { + "text": "Easy, half lecture half student presentations, one midterm all from lectures, 10 page experimental design paper as a final, attendance is mandatory, she's really nice and knows her stuff, the class is super boring but she enjoys what she's teaching", + "pos": 0.253, + "neu": 0.713, + "neg": 0.035, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a7" + } + }, + { + "text": "Easy class, boring, she misses class a lot.", + "pos": 0.24, + "neu": 0.413, + "neg": 0.347, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a8" + } + }, + { + "text": "One Of the best professors, I ever had!!", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7a9" + } + }, + { + "text": "Cancer biology. She only taught us for 2 lectures the rest was guest lecturers that was the best part. The guest lecturers are really good. The professor is nice though. But she cant teach. The class was the best bio class. U learn a lot. But she doesn't grade the exams. So I dont know if thats a good think or bad. The exams are not easy though.", + "pos": 0.187, + "neu": 0.691, + "neg": 0.122, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7aa" + } + }, + { + "text": "without a doubt the worst prof, speaks so softly and mainly tells you how busy she is and why she can't meet with you the whole semester! i was really interested in cancer till I did her course .. horrible", + "pos": 0.097, + "neu": 0.665, + "neg": 0.238, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7ab" + } + }, + { + "text": "There are lots of readings to do in this class. She gives out one midterm and one final. Your midterm is an oral presentation you've to make in class, so be sure to know your stuff well. Also, she gives out some questions for the final, a take-home, choose the one that seems easiest for you. Again, if you know your stuff, you will do well for sure!", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7ac" + } + }, + { + "text": "I was really interested in learning about cancer bio until I came to her class; I learnt nothing. She is a useless teacher and really disorganised too, always saying how busy she is but does not do anything to prepare for class. Invited speakers speak as though they are talking to experts not students", + "pos": 0.035, + "neu": 0.885, + "neg": 0.08, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7ad" + } + }, + { + "text": "Nice person, but horrible teacher. She hates teaching and gets other people to give her most of lectures. Her own lectures are terrible, no structure, confusing, and very hard to follow. Exams are very easy and greaded by students who probably know more than she does.", + "pos": 0.128, + "neu": 0.596, + "neg": 0.276, + "_id": { + "$oid": "6711d6bdcd60fca157e5f7ae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6becd60fca157e5f7b0" + }, + "professor_name": "Nicholas Madamopoulos", + "rating": 3.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Study hard and you should pass, gives extra credit through discussion board", + "pos": 0.186, + "neu": 0.714, + "neg": 0.1, + "_id": { + "$oid": "6711d6becd60fca157e5f7b1" + } + }, + { + "text": "Extremely generous professor. If you *try* and give it as much as you can give while taking 3-4 other classes, you will pass. He curved multiple times and even gave extra credit opportunities. Students who did not get a curve the semester before were not on the right track, how can you give a curve to someone who thinks 1+13?", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7b2" + } + }, + { + "text": "Not sure if the rating is too accurate anymore as people are just mad the professor did not curve. It was kinda unfair as tests were difficult yet professor barely curved as intended. EMAG is hard in general, and this professor is a better option. Hard exams, but manageable if you practice his examples. Did not really learn much from his lectures.", + "pos": 0.029, + "neu": 0.826, + "neg": 0.145, + "_id": { + "$oid": "6711d6becd60fca157e5f7b3" + } + }, + { + "text": "Do not even plan taking him. He does not curve , not even a little.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7b4" + } + }, + { + "text": "Even though he has office hours. He gives hard times to students. His exams are hard and he does not curve.", + "pos": 0.0, + "neu": 0.872, + "neg": 0.128, + "_id": { + "$oid": "6711d6becd60fca157e5f7b5" + } + }, + { + "text": "Great professor who really tries to explain the topic. EE 330 is a tough class and you need a good understanding of Calculus, but he explains the math behind the solutions very well. Quizzes are on blackboard and focus on the concepts covered in class, so make sure you understand them. Curve is higher than what he initially says it is, good luck", + "pos": 0.27, + "neu": 0.713, + "neg": 0.016, + "_id": { + "$oid": "6711d6becd60fca157e5f7b6" + } + }, + { + "text": "Prof. Madamopoulos is very enthusiastic and responsible. He made great efforts in preparing the classes and always gave clear explanations whenever you had questions. The online course part, however, lacked interactions with students. But I guess this is the most common problem in most classes during the tough pandemic.", + "pos": 0.147, + "neu": 0.753, + "neg": 0.1, + "_id": { + "$oid": "6711d6becd60fca157e5f7b7" + } + }, + { + "text": "Best, best, best Prof in CCNY. he is very helpful and friendly. He follows textbook so follow him whatever he is teaching. don't miss the class. Test is little tricky but if you practice CW, HW you should be good. you may not get in every exam 90+ but if you improve he may curve the grade. Be prepared to study alot. minimum 8h/week outside of class", + "pos": 0.286, + "neu": 0.699, + "neg": 0.014, + "_id": { + "$oid": "6711d6becd60fca157e5f7b8" + } + }, + { + "text": "This is the best guy you can take for 312, the exams are not that difficult as long as you understand the lectures and read a little for from the book. The material that he covers is very useful when you take the lab EE422.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7b9" + } + }, + { + "text": "Madamopoulos was my mentor for Senior Design and I am very glad I chose him. Arguably the best professor/human in EE dept as he is very approachable and helpful.", + "pos": 0.281, + "neu": 0.666, + "neg": 0.053, + "_id": { + "$oid": "6711d6becd60fca157e5f7ba" + } + }, + { + "text": "Good prof., helpful in class and better in office hours, lineant grader, give you the chance to pass the class, really knows his stuff, you HAVE to study to pass this class!!!", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7bb" + } + }, + { + "text": "really good professor. lineant grader. very sharp spoken.. he'll ask u fundamental questions,so come prepared.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7bc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6becd60fca157e5f7be" + }, + "professor_name": "Chad Jenkins", + "rating": 4.9, + "department": "Music department", + "comments": [ + { + "text": "Assignments from him can be difficult, the classes are interesting and he really cares about critical thinking and analysis", + "pos": 0.23, + "neu": 0.576, + "neg": 0.194, + "_id": { + "$oid": "6711d6becd60fca157e5f7bf" + } + }, + { + "text": "He's one of those teachers that just cares. He teaches with passion, is extremely open to conversation with students about any topic. Easy to talk to. There IS a fair amount of work.. Not a \"walk in the park\" per-say. Whether it being worth it or not is up to you. If you want a quick A without any effort, this is NOT your best bet. But u'll learn", + "pos": 0.137, + "neu": 0.834, + "neg": 0.029, + "_id": { + "$oid": "6711d6becd60fca157e5f7c0" + } + }, + { + "text": "One of the most brilliant people I've ever met. Super knowledgeable about basically every era in music history. Pay attention in class, hand in your assignments in time, and you'll be good.", + "pos": 0.332, + "neu": 0.635, + "neg": 0.033, + "_id": { + "$oid": "6711d6becd60fca157e5f7c1" + } + }, + { + "text": "Excellent professor. Passionate about teaching and the subject. Really cares about students learning.", + "pos": 0.51, + "neu": 0.49, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7c2" + } + }, + { + "text": "Jenkins is just awesome. He has a real passion for what he teaches and it's just infectious; it's hard to not be interested in the class when he's clearly so into it. He makes every lecture engaging and is a funny, friendly guy too. You've got to study and put the work in to do well, but it's worth it.", + "pos": 0.233, + "neu": 0.726, + "neg": 0.041, + "_id": { + "$oid": "6711d6becd60fca157e5f7c3" + } + }, + { + "text": "Had him for music history. This man is a gem. Intelligent and passionate about the material. He gets excited about his own lectures and keeps you interested as well. The papers and exams can be tough but he is a lenient grader as long as you make an effort and take the class seriously. He's the best of the best!", + "pos": 0.309, + "neu": 0.648, + "neg": 0.043, + "_id": { + "$oid": "6711d6becd60fca157e5f7c4" + } + }, + { + "text": "Hes very very nice guy. He accepts any potential answers and really want to help you to improve your grades!!", + "pos": 0.478, + "neu": 0.522, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7c5" + } + }, + { + "text": "Perhaps the best Professor in the department (which is full with amazing teachers), a real life changing professor. I second the comment below me that suggested to take every possible course with him - this guy is really something else. Knowledgable, funny, attentive, fascinating, modest and the nicest guy. He'll change your life, guaranteed.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7c6" + } + }, + { + "text": "Comes to class incredibly prepared. Very approachable as well. Teaches rigorous subjects, but that shouldn't dissuade you. His mastery of the topics and love of the subjects he's lecturing on makes tough material easy to understand. His energy and enthusiasm is refreshing and inspiring. I highly recommend taking ANY class he's teaching.", + "pos": 0.372, + "neu": 0.582, + "neg": 0.046, + "_id": { + "$oid": "6711d6becd60fca157e5f7c7" + } + }, + { + "text": "Had him for Schenkerian analysis. It was manifestly his passion, and that brought a lot to the class. He encouraged in-class debates, and while holding his opinions strongly (and pointing out inconsistencies and weak arguments) he encouraged students to think differently. Homework was hard, but paid off, particularly with his thoughtful feedback.", + "pos": 0.181, + "neu": 0.735, + "neg": 0.084, + "_id": { + "$oid": "6711d6becd60fca157e5f7c8" + } + }, + { + "text": "Had him during his first semester at city college. Very enthusiastic and eager to help. However, I didn't like when we read paragraphs at a time around the room. A lot of students in the class couldn't speak english very well, and read SOOO slow.", + "pos": 0.212, + "neu": 0.748, + "neg": 0.039, + "_id": { + "$oid": "6711d6becd60fca157e5f7c9" + } + }, + { + "text": "He is a very good Prof. He is very clear, flexible and organized. I definitely recommend him as a Professor.", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d6becd60fca157e5f7ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bfcd60fca157e5f7cc" + }, + "professor_name": "Manny Vi\u00f1as", + "rating": 4.5, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Don't take him. Awful person. Talks nonsense. Book of no use. As for grades... nasty surprise.", + "pos": 0.19, + "neu": 0.457, + "neg": 0.353, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7cd" + } + }, + { + "text": "I love this professor! Very clear, funny and knows his stuff. Stress free, three papers. five pages each. that's all, no tests. Best class I attend at city.", + "pos": 0.321, + "neu": 0.486, + "neg": 0.194, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7ce" + } + }, + { + "text": "He is an excellent professor! He is very engaging and he loves what he does and you can tell he really wants to share it. I recommend him! Pros: He Loves what he does. He's interesting. Is extremely knowledgeable. Fair grader. Cons: A lot of information. If you don't have much of a religious BG you might feel left out. Doesn't hand out grades fast.", + "pos": 0.296, + "neu": 0.673, + "neg": 0.032, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7cf" + } + }, + { + "text": "Rabbi Vinas managed to cover a lot of material in a short amount of time. A lot of it was dry and not all of the information stuck, but when does it ever? He manages to take a survey course and make it interesting. He has a great personality and a lot of character. I would take other classes with him.", + "pos": 0.134, + "neu": 0.844, + "neg": 0.022, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d0" + } + }, + { + "text": "Great professor! He knows a lot and is really funny! he always makes the class laugh and is very engaging. does not require too much work and he is very easy to please", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d1" + } + }, + { + "text": "Very nice professor and easy class. He is very busy and may be absent often, but he is also a procrastinator. Midterm exam was given after thanksgiving break and grades were not given until a day before final grades were due to registrar. Please make sure you know how well you're doing because he won't know until final grades are due.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d2" + } + }, + { + "text": "Amazing professor. he makes you laugh and teaches you so much at the same time. he makes the class so interesting, fun and exciting. take him for sure. Definitely expecting an A+", + "pos": 0.476, + "neu": 0.524, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d3" + } + }, + { + "text": "Perfect. He's very, very smart and is extremely cultured. He grades fairly, and the class is always interesting. Professor Vinas is friendly, and always tries to answer a student's question as much as possible. Take him, seriously.", + "pos": 0.276, + "neu": 0.687, + "neg": 0.037, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d4" + } + }, + { + "text": "Great professor! Spark interest on whatever he is talking about ! Fair grader! Wants to help gou get a gooD grade. If class does bad on a test, he will give extra credit or other easier tests to ballance it out. GREAT PROF!!!!", + "pos": 0.437, + "neu": 0.509, + "neg": 0.054, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d5" + } + }, + { + "text": "One of the best professors I have ever taken in CCNY. Not only is he an orthodox Rabbi, but also a jack of all trades, which make his lectures even more interesting as he can relate to almost anything. A fair grader and intelligent person. He gave me an extension right during finals week and reunited my interest in Jewish studies. Take him!", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d6" + } + }, + { + "text": "HE IS HILARIOUS AND VERY FUN CLASS! TAKE HIM! HE'S REALLY NICE AND HELPFUL AND EASY :)", + "pos": 0.692, + "neu": 0.308, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bfcd60fca157e5f7d9" + }, + "professor_name": "Kristina Huang", + "rating": 3.5, + "department": "English department", + "comments": [ + { + "text": "She is a good teacher, but you also have to work hard.", + "pos": 0.144, + "neu": 0.738, + "neg": 0.118, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7da" + } + }, + { + "text": "A basic English class, English 110- College Writing I, was turned into a level 300 English class. Course was full of assignments, essays, and research. Professor grades assignments super hard. At times it is absolutely impossible to understand what she wants you to do on assignments. Definitely regret taking this professor, trust me and avoid her.", + "pos": 0.149, + "neu": 0.754, + "neg": 0.097, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7db" + } + }, + { + "text": "Unclear, never really specifies what she wants from you until after you have been graded. I have had 300 level classes that was harder than this class and she is trying to make it rocket science! The assignments and texts were not difficult at all - in fact it was high school caliber, but she was trying too hard to make it hard", + "pos": 0.024, + "neu": 0.9, + "neg": 0.076, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7dc" + } + }, + { + "text": "This Prof was hard, she does challenge you to be better in your reading but she treated the English class more like a history lesson. Constantly wrote vast amounts on information on the board while talking making it difficult to pay attention to both. She was not very clear it what she wanted in her papers at times & students were praying to leave.", + "pos": 0.133, + "neu": 0.731, + "neg": 0.136, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7dd" + } + }, + { + "text": "I took Eng 331 and now 353 with her. She's brilliant, and will kick your ass. NOT EASY, dont take her if you are looking for a laid back semester, but if you are looking to improve your writing she's the one to take. Attendance, participation+reading the books are a must, but you dont need the exact editions.She means what she says,very intelligent", + "pos": 0.141, + "neu": 0.8, + "neg": 0.058, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7de" + } + }, + { + "text": "A 100 level class that was treated as a 300 level. The class wasnt mind challenging, I was left bored with just constantly flipping through pages in the book we read the night before to find quotes. She was constantly late, even the first day. A class that should be an easyA since most of the books I read are from high school, but wasn't worth it", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7df" + } + }, + { + "text": "This was an incredible class. Completely well thought out. The preparation put in to this class was excellent and each assignment was on target and related well to the subject matter. The class had a very clear path and I had a few \"a ha\" moments. Good class to take with this professor.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e0" + } + }, + { + "text": "tough prof.", + "pos": 0.0, + "neu": 0.4, + "neg": 0.6, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e1" + } + }, + { + "text": "You'll be re reading some texts you might have read in hs, but in a different light with a much deeper analysis. A lot of reading, but worth it when we have discussions in class. Shes a good professor, extremely helpful and willing to take the time during office hrs and appointments to discuss work and papers.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e2" + } + }, + { + "text": "Took this class last semester. Great selection of texts, interesting discussion topics and even the essays weren't bad. Proessor is nice, obviously knows what she's talking about. Makes class participation easy, even though I'm a shy person, I found myself compelled to add into our discussions!", + "pos": 0.291, + "neu": 0.674, + "neg": 0.035, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e3" + } + }, + { + "text": "Professor Huang is one of the best of City College! I really enjoyed taking her class, it was a ton of fun. She is very helpful, and makes herself very available outside of class. The books that I read with her have now become some of my favorites, so I'm glad that I toke her class. If you get the chance, TAKE HER!!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e6" + }, + "professor_name": "Drew Hopkins", + "rating": 3.8, + "department": "Asian Studies department", + "comments": [ + { + "text": "very knowledgeble professor.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e7" + } + }, + { + "text": "Terrible teacher. Constantly reads off of power-points, typically unorganized without them. No Tests, no homeworks, no papers, just a mid-term, presentation and a final. You wont know how good or bad you're doing until the mid-term comes. His reviews are also just as bad, he only gives you the powerpoints to look over (i.e. 300+ unorganized slides)", + "pos": 0.083, + "neu": 0.733, + "neg": 0.183, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e8" + } + }, + { + "text": "Do not take this professor. He is a very nice guy but he's not even a ok teacher. He speaks low, mumbles a lot and doesn't explain any thing clearly. We have a mid term and final in class and 1 presentation. He gives poor reviews for his test or if you would even call what he does a review. Do not take him.", + "pos": 0.076, + "neu": 0.8, + "neg": 0.124, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7e9" + } + }, + { + "text": "ONE OF THE BEST PROFESSORS!!! EXTREMELY NICE AND EASY. HIS CLASS ARE JUST POWERPOINTS BUT ALL YOU GOTTA DO FOR HIS CLASS ARE MIDTERM AND FINAL PAPERS PLUS A PRESENTATION. NOTHING ELSER THAN THAT. TAKE HIM IF YOU CAN!!! DEF. RECOMMEND", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7ea" + } + }, + { + "text": "Really nice guy. His class can be boring because he reads his powerpoints. There are NO exams, only a midterm and final paper with 1 presentation. pretty easy course but you won't know how you doing in this class until you get your grade at te end of the semester.", + "pos": 0.111, + "neu": 0.822, + "neg": 0.066, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7eb" + } + }, + { + "text": "He mumbles a lot, he is very disorganized, and he does not reply any students e-mails back. He grades his students midterm papers slow so you don't know if you are doing well on his class.", + "pos": 0.054, + "neu": 0.881, + "neg": 0.065, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7ec" + } + }, + { + "text": "Professor Hopkins is easy to pass, as long as you do all the assignments and a presentation. He is not so restricted in grading the papers and there no special requirement on writing a paper. Simply put as much information as possible on the paper, guarantee you'll get an A in his class.", + "pos": 0.13, + "neu": 0.832, + "neg": 0.038, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7ed" + } + }, + { + "text": "What a fabulous professor. His lectures are brilliant, presented with great clarity and supplemented by extensive visual materials and powerpoints. He makes Chinese culture both fascinating and readily understood. Easy-going by nature, Professor Hopkins makes complex concepts easy to understand.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7ee" + } + }, + { + "text": "This Guy knows his stuff!! You will learn from his lectures.He is very passionate about China", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7ef" + } + }, + { + "text": "chinese geomancy class. He knows his stuff and is very eager as a professor. Class can get kind of boring if it's over your head, and readings can be a pain, but the papers are pretty easy, just put as much info as you can and you're set.", + "pos": 0.176, + "neu": 0.754, + "neg": 0.069, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7f0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6bfcd60fca157e5f7f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c0cd60fca157e5f7f3" + }, + "professor_name": "Stacey Cooper", + "rating": 2.6, + "department": "Psychology department", + "comments": [ + { + "text": "I already posted and my comment was deleted. If this one gets deleted I will contact whoever is in charge of this site as I suspect that the proffessor itself is deleting. I never met anyone who likes this class. She should be fired for wasting peoples time. She is often late or does not show. But angry If I miss class for a legitimate reason.", + "pos": 0.075, + "neu": 0.828, + "neg": 0.097, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7f4" + } + }, + { + "text": "She is tough but fair!", + "pos": 0.433, + "neu": 0.4, + "neg": 0.167, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7f5" + } + }, + { + "text": "She is a good professor, you all just need to realize her sarcasm is apart of her personality. If u pay attention in class u will be fine. You also need to pay attention and not ask the same question right after she just answered the question becuase thats when her sarcasm comes out. Just learn to deal w/ her sarcasm and you will not have a problem", + "pos": 0.092, + "neu": 0.795, + "neg": 0.113, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7f6" + } + }, + { + "text": "She is a horrible professor, no wonder it takes forever for her class to fill up. She doesnt understand that sometimes there are more important things than her class, and im not talking about just having a soar throat or something, im talking about serious circumstances", + "pos": 0.041, + "neu": 0.822, + "neg": 0.137, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7f7" + } + }, + { + "text": "SHE HAS AN ATTITUDE PROBLEM. NEED TO BE FIRED ASAP. SHE ONLY TALKED ABOUT WHAT I ALREADY KNOW FROM PSYCH 101. PRETENDS THAT SHE KNOWS EVERYTHING. FAIR EXAMS BUT STUPID QUESTIONS.", + "pos": 0.05, + "neu": 0.647, + "neg": 0.302, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7f8" + } + }, + { + "text": "She was late a lot (11am class) She usually walked into the classroom with an attitude, she argued with a couple of students. She requires a group speech as a final, which is not bad. Her midterm wasn't bad. For some reason she was way to into Piaget and Erickson theories...it was annoying, at some point i felt like i was taking psych 101 again.", + "pos": 0.112, + "neu": 0.817, + "neg": 0.071, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7f9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7fa" + } + }, + { + "text": "She can be summarized in one word - HORRIBLE. She does not care abt the students, she is habitually late for class, she rearranges the syllabus, the exams, and the assignments to suit her needs and only her needs. Her lectures are dry and her exams consists of topics and materials NOT covered in lecture nor text. Again, HORRIBLE!!", + "pos": 0.051, + "neu": 0.838, + "neg": 0.111, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7fb" + } + }, + { + "text": "Shes horrible, she doesn't understand that in some circumstances her stupid class doesn't come first, oh well maybe thats why it takes forever for her class to fill up, everyone knows shes bad", + "pos": 0.051, + "neu": 0.699, + "neg": 0.251, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7fc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7fd" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6c0cd60fca157e5f7fe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c0cd60fca157e5f800" + }, + "professor_name": "Lisa Bauer", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Lisa is great! Class is never a bore and the workload is not bad at all. A must take!", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d6c0cd60fca157e5f801" + } + }, + { + "text": "SHE IS AWESOME! HONESTLY BEST PROFESSOR I'VE HAD IN CITY. SHOW UP, DO THE WORK AND YOU'LL PASS. SHES SUPER DORKY AND FUNNY AND EXTREMELY HELPFUL!! WILL TAKE HER AGAIN !! (DONT BUY THE TEXTBOOK ;) )", + "pos": 0.48, + "neu": 0.474, + "neg": 0.046, + "_id": { + "$oid": "6711d6c0cd60fca157e5f802" + } + }, + { + "text": "SHE IS SOO GREAT!!! SUPER HELPFUL AND UNDERSTANDING! HER REVIEWS ARE GREAT AND ALL HER STUDENTS WHO TAKE ADVANTAGE OF IT DO GREAT!! SHE IS SWEET AND HAS A CUTE SENSE OF HUMOR, SHE KNOWS HER STUFF!!!", + "pos": 0.519, + "neu": 0.481, + "neg": 0.0, + "_id": { + "$oid": "6711d6c0cd60fca157e5f803" + } + }, + { + "text": "Took her online course and it was easy as taking candy from a baby. You will never need to use the textbook and there are only 3 tests 3 papers and experimental studies. All tests q's can be googled online and review assignments as well. Make sure you can write a paper cuz she don't grade dat ez. take this course = ez A", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d6c0cd60fca157e5f804" + } + }, + { + "text": "SHE IS AWESOME!!! I LOVE HER AND HER CARING ATTITUDE! SHE IS VERY HELPFUL, AND WILL GIVE THE CLASS A GREAT REVIEW FOR EXAMS!", + "pos": 0.511, + "neu": 0.489, + "neg": 0.0, + "_id": { + "$oid": "6711d6c0cd60fca157e5f805" + } + }, + { + "text": "She really wants her students to succeed. Very tech savy and extremely helpful. You cannot go wrong with her. If do not do well in her class it is your own fault. She goes beyond all other professors at CCNY", + "pos": 0.183, + "neu": 0.724, + "neg": 0.093, + "_id": { + "$oid": "6711d6c0cd60fca157e5f806" + } + }, + { + "text": "Lisa is the best professor at city college. She gives you every possible way to get an a. She is the most understanding, rational professor ever maybe because she's a student herself. If u get a bad grade u have no one to blame but yourself. Her work is not hard at all unless you never go to class. Love you Lisa!!! :-)", + "pos": 0.182, + "neu": 0.744, + "neg": 0.074, + "_id": { + "$oid": "6711d6c0cd60fca157e5f807" + } + }, + { + "text": "Not a fan. She's real up on herself and hard to follow. Makes tests difficult so she comes off looking like an expert whose level we can't get up to. I'd skip this one if I were u.", + "pos": 0.059, + "neu": 0.803, + "neg": 0.138, + "_id": { + "$oid": "6711d6c0cd60fca157e5f808" + } + }, + { + "text": "This professor devotes extremely huge amount of time to help the students to understand the problems. You need to prepare for every class. She gives you feedback for the paper, it is impossible not to do well. she is hard on tests, tricky, you need to understand, but she gives preparatory quizzes whcih helps a lot. totally recommended.", + "pos": 0.173, + "neu": 0.74, + "neg": 0.087, + "_id": { + "$oid": "6711d6c0cd60fca157e5f809" + } + }, + { + "text": "You need a text book!!! Her powerpoint slides are wonderful however, you need to read the material. Very tech savvy and knowledgeable about what she is teaching. Always willing to help her students and generous with her time. She is going to become a terrific professor, one of the best at CCNY!!! Go Lisa.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d6c0cd60fca157e5f80a" + } + }, + { + "text": "Textbook not required. Greatest teacher I have ever had. Really trains you well for conducting research. Very helpful and understands students needs. Class is tech-based which makes thing pretty easy. She expects you to do your work, but is flexable about due dates. If you are a motivated student it is a cake walk.", + "pos": 0.19, + "neu": 0.775, + "neg": 0.035, + "_id": { + "$oid": "6711d6c0cd60fca157e5f80b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c1cd60fca157e5f80d" + }, + "professor_name": "Felice Neals", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "She is very kind and caring, but not a pushover. Submit your work ON TIME. Do not be excessively late, if you are please talk to her. This class is very manageable. It can be an easy A if you show up and do the work. If you are absent consistently and do not let her know she can and will drop you from the course. I had a great experience with her.", + "pos": 0.196, + "neu": 0.773, + "neg": 0.031, + "_id": { + "$oid": "6711d6c1cd60fca157e5f80e" + } + }, + { + "text": "Really the best, sweetest, most supportive professor I've ever had. You'll never be stressed out and will probably look forward to her classes.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f80f" + } + }, + { + "text": "Professor Neals is an understanding professor. She knows how complicated and hard life can get, especially now with the pandemic, so she works with her students. Need an extension on a paper? Just talk with her and she'll be happy to help. A lot of the work is based on previous work so make sure to keep up with the workload, it should all work out.", + "pos": 0.124, + "neu": 0.857, + "neg": 0.019, + "_id": { + "$oid": "6711d6c1cd60fca157e5f810" + } + }, + { + "text": "Was a fun class. Fun writting assignments for in class. Have to do a poem, essay and short story. Had her this summer. One cool thing she does right now is she emails us a lot about writing contest and also paid internships for students. Something that you dont see from professors when your done with their class. I think that is nice of her to do", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f811" + } + }, + { + "text": "You can tell Prof. Neals is very passionate about creative writing. She is a very understanding professor, so if you are running late or will be absent just let her know. Go to class, participate and actually work on your re-writes. But I will warn you - don't miss workshop days or a lot of days. It will severely affect your grade.", + "pos": 0.089, + "neu": 0.83, + "neg": 0.082, + "_id": { + "$oid": "6711d6c1cd60fca157e5f812" + } + }, + { + "text": "Exceptionally sweet, friendly, and charming woman. She only wishes the best for her students and allows them to explore their own creative voices through their writing. A very relaxed, pleasurable class. Prof. Neals found a way to make it engaging and, oftentimes, fun. She also gives good feedback, which always helped/encouraged me going further.", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f813" + } + }, + { + "text": "Professor Neals was an absolute pleasure to have as my creative writing teacher for my first semester as a freshman. She is very kind to all of her students and she gives all of them multiple chances to make up any work. She makes the content intriguing and does her absolute best to keep her class interested. Highly recommend her!", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f814" + } + }, + { + "text": "She is a nice professor and encourages you to write. One short story, two poems, one personal essay, and one scene play. Nice and interesting class. I would take her another class.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f815" + } + }, + { + "text": "Professor Neals was amazing! She really cares for her students and is understanding of situations that may hinder you from handing in an assignment. If you really need an extension, she will give you one with a valid reason. Her work is light and easy to do, its an easy A. She doesn't ask for much, just that you be on time and participate!", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f816" + } + }, + { + "text": "Wow, if you get the chance, take this professor! She was so amazing and helpful! Extremely kind and caring. She actually wants you to succeed and will help you along in the process. Her assignments are simple and if you do the work, it is not hard to get an A. She is also super accessible outside of class if you need help. Loved this professor!", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f817" + } + }, + { + "text": "I LOVED PROFESSOR NEALS!!! I wish I could have her as a professor every semester. She's very caring and attentive to her students, and shows an interest in them beyond just course work. Her spontaneity and quirks make her enjoyable and funny and just everything great. If you get the chance to take her class, do it!!!", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f818" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c1cd60fca157e5f81a" + }, + "professor_name": "Hojjat Rostami", + "rating": 4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Nice guy, difficult class, kind grader. Weekly lab reports or prelabs, final exam, no midterm.", + "pos": 0.283, + "neu": 0.502, + "neg": 0.215, + "_id": { + "$oid": "6711d6c1cd60fca157e5f81b" + } + }, + { + "text": "Very nice professor just a lot of work writing a pre laboratory report and then an actual post lab report but it does help get a better understanding. Added a final but it wasn't too bad as he gave us plenty of time and even helped if it wasn't going right. Just show up to class as he takes attendance heavily and he might not even give a final.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f81c" + } + }, + { + "text": "The pre labs are worth more than the post lab. However it is very practical than theoretical. He is very chill and nice. He gives extension to labs rarely if you are on his good side. Rostami is excellent when it comes to teaching and breaking things into pieces. He is also understanding where people are coming from. He passes everyone with a B.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f81d" + } + }, + { + "text": "add this prof to the list of the useless profs at ccny. all i can say is that some professors are taking advantage of the COVID situation to take a break from doing what they really should do. don't expect to learn anything from this prof.", + "pos": 0.041, + "neu": 0.902, + "neg": 0.057, + "_id": { + "$oid": "6711d6c1cd60fca157e5f81e" + } + }, + { + "text": "He is a nice professor and good as a friend. Willing to help and whenever you have a question he will answer your question. He is generous on grading too. Be ready for prelab, because it counts a lot points. I will definitely recommend my friends take his class.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f81f" + } + }, + { + "text": "I have the pleasure of taking two lab courses with him. I did well in both of them. Unfortunately, he has been busy pursuing his PHD so he became less resourceful in helping the class and expects you to rely on yourself. This is fine, I think the class is not bad regardless of teacher. Take him and be ready for his quizzes. Attend always!", + "pos": 0.201, + "neu": 0.767, + "neg": 0.032, + "_id": { + "$oid": "6711d6c1cd60fca157e5f820" + } + }, + { + "text": "What I appreciate more than anything is how relaxed his class is. Always gives sufficient time to complete labs and reports, and is never overbearing. He does his best to help, but sometimes isn't as effective due to language barrier. You will still learn cool things, definitely take him.", + "pos": 0.244, + "neu": 0.672, + "neg": 0.083, + "_id": { + "$oid": "6711d6c1cd60fca157e5f821" + } + }, + { + "text": "Granted it was his first time teaching circuits in Fall 2017, he did a good job. He's made the effort countless times to review material with students on Saturdays to prep for exams and he will stop to explain something to a student until it makes complete sense to them. Do the hw assignments and practice, if not then don't expect a good grade.", + "pos": 0.07, + "neu": 0.863, + "neg": 0.066, + "_id": { + "$oid": "6711d6c1cd60fca157e5f822" + } + }, + { + "text": "was good for his first time. he curved because he really wanted everyone to pass. wanted to get students to help each other by giving us extra credit for helping each othrer.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f823" + } + }, + { + "text": "He has a strong accent, extremely harsh grader especially since it's his first time he should be more lenient with grading. Unorganized in lecture and his grading criteria. He's a nice guy but he confused me in the lecture. He would sometimes say one thing then contradict himself. Wouldnt take him again, try avoiding if u want learn the subject.", + "pos": 0.102, + "neu": 0.74, + "neg": 0.158, + "_id": { + "$oid": "6711d6c1cd60fca157e5f824" + } + }, + { + "text": "Uhhhhhhhhh, at least hes better than other professors. Hes a first timer.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d6c1cd60fca157e5f825" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c2cd60fca157e5f827" + }, + "professor_name": "Aristides Falcon Paradi", + "rating": 3.6, + "department": "Spanish department", + "comments": [ + { + "text": "He will call on you randomly so be careful and pay attention. Not a harsh grader but he needs you to learn. Very easy class if you put effort. The other comments are from people who are sensitive. He's fun and very kind. Oral exam/final/midterm/3 quizzes/daily homework.", + "pos": 0.286, + "neu": 0.693, + "neg": 0.02, + "_id": { + "$oid": "6711d6c2cd60fca157e5f828" + } + }, + { + "text": "He is very fun and caring. Funny too sometimes. The class was easy. Oral exam was like 3 or 4 questions. Homeworks were on pearson labs.\n3 regular quizzes. 1 midterm 1 final. Not a tough grader at all. Calls on people randomly so pay attention and be careful. He's always nice to everyone and knows a lot about different cultures.", + "pos": 0.282, + "neu": 0.693, + "neg": 0.025, + "_id": { + "$oid": "6711d6c2cd60fca157e5f829" + } + }, + { + "text": "If you want a bold opinion, this professor wouldn't be your first pick, but he's not last either. There are worse professors, but he's not the best. He doesn't teach very well when it comes to helping students understand certain topics. Overral, he's nice, and isn't a rude jerk, but he's not very good at explaining things well.", + "pos": 0.253, + "neu": 0.566, + "neg": 0.181, + "_id": { + "$oid": "6711d6c2cd60fca157e5f82a" + } + }, + { + "text": "The class is only easy if you already know basic spanish, otherwise it is very hard to learn spanish if you don't. He goes through the class through our one and only textbook through readings and practices. It is hard to understand if you don't know spanish as well. He is a nice teacher but if you don't participate then you will have trouble.", + "pos": 0.078, + "neu": 0.835, + "neg": 0.088, + "_id": { + "$oid": "6711d6c2cd60fca157e5f82b" + } + }, + { + "text": "he is such a nice and sweet prof. but if you dont speak spanish you might have a hard time. he teaches in a different way but if you know basic spanish like I did i was good and im not a native speaker. there is a lot of pearson hw its annoying but its easy and the exams are easy. we had 2 quizzes, midterm and final", + "pos": 0.223, + "neu": 0.716, + "neg": 0.061, + "_id": { + "$oid": "6711d6c2cd60fca157e5f82c" + } + }, + { + "text": "TERRIBLE! Talks a lot off-topic and runs out of time to finish the class. Has NOT had A SINGLE LESSON PLAN. Never actually teaches anything in class. Wants participation, and picks on students while ignoring others. Even if he picks on you often, still complains that you don't participate enough but not on those who don't participate at all.", + "pos": 0.0, + "neu": 0.898, + "neg": 0.102, + "_id": { + "$oid": "6711d6c2cd60fca157e5f82d" + } + }, + { + "text": "He's a really caring professor who wants the best for his students & genuinely wants to get to know them. I won't say the class was a piece of cake. He likes to cold call on students (reason why I wouldn't take again), so you have to be prepared, but if you get it wrong, he works with you to answer the question. Exams were easy and not much HW.", + "pos": 0.15, + "neu": 0.798, + "neg": 0.052, + "_id": { + "$oid": "6711d6c2cd60fca157e5f82e" + } + }, + { + "text": "Not a fan of this professor. He calls students lazy, sometimes says ignorant things that rings question marks in your head, and goes on long rants. He does however explain things in depth and is understanding if you explain your situation to him.", + "pos": 0.0, + "neu": 0.815, + "neg": 0.185, + "_id": { + "$oid": "6711d6c2cd60fca157e5f82f" + } + }, + { + "text": "Professor Paradi is nice and he likes to give life stories in class just to lighten up the mood. He seems to be understanding if you explain your situation to him, just talk to him after class. My only problem with him is that his lectures are a little disorganized, his hand writing is atrocious, and he never responds to emails.", + "pos": 0.123, + "neu": 0.81, + "neg": 0.067, + "_id": { + "$oid": "6711d6c2cd60fca157e5f830" + } + }, + { + "text": "Professor Aristides Falcon Paradi is one of the best professors I have had in CCNY. He is so kind, generous, and helpful. He prioritizes each student's learning and helps them. He is very sweet. Take him, you will not regret it. I had a lot of fun in his class!!", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f831" + } + }, + { + "text": "One of the sweetest professors and deserves a lot more respect than he actually gets in class. People tend to take advantage of his kindness. Will work with you as long as you work with him. Study, because that will help you on quizzes and tests. Learning another language is never easy and it cannot be picked up strictly in a class setting.", + "pos": 0.155, + "neu": 0.811, + "neg": 0.034, + "_id": { + "$oid": "6711d6c2cd60fca157e5f832" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c2cd60fca157e5f834" + }, + "professor_name": "Prathmesh Deshmukh", + "rating": 5, + "department": "Physics department", + "comments": [ + { + "text": "He is a very patient professor", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f835" + } + }, + { + "text": "He was my lab TA and he was very helpful. Clear and easy labs. As long as you completed the lab he gave a reasonable grade. Just show up to all the classes and hand in your papers by the end of the semester.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f836" + } + }, + { + "text": "Readily gives feedback and provides assistance with general course material. Is well versed in the material and makes sure that all students are familiar with the topics before moving onto the lab work.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f837" + } + }, + { + "text": "Amazing TA. He really cares for his students and makes an effort in making sure we understand what is required for each lab. In addition, he is very laid back and fair when it comes to grading! Highly Recommend!", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f838" + } + }, + { + "text": "Amazing TA, I hope that many other TA's can try to be like this amazing person. He is very straightforward and is honest about his work. Deserves nothing but a 5/5.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f839" + } + }, + { + "text": "best TA in the whole world", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f83a" + } + }, + { + "text": "He was TA for phys208. really cool guy, his video recording are very informative so you dont really have to do heavy research for lab reports.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f83b" + } + }, + { + "text": "Had him for the lab section of PHYS 208, amazing TA. Before getting into how to do the labs he gives small lectures about the topic that are insightful and helpful for the graphs and data which are to be taken. He likes when students asks questions and was even open to having a sessions in which he helped us prepare for a physics exam.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f83c" + } + }, + { + "text": "Best TA I've had. Not crazy intense like others. Very laid back and as long as you put in the work and your work is original you'll get a good grade. Also very open to questions and explains concepts nicely.", + "pos": 0.283, + "neu": 0.651, + "neg": 0.066, + "_id": { + "$oid": "6711d6c2cd60fca157e5f83d" + } + }, + { + "text": "one of the chillest tas everrrr he does take a while to grade stuff but i didnt really mind bc he said as long as you dont plagiarize you would get full credit so dont plagiarize and youll be good", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f83e" + } + }, + { + "text": "Very good", + "pos": 0.762, + "neu": 0.238, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f83f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c2cd60fca157e5f841" + }, + "professor_name": "TE Wasserman", + "rating": 4.8, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Professor Wasserman is great! Normally when you talk about the bible and its history it can be a bit boring but she dees her best to make it entertaining. Her weekly assignment was quite engaging. Her jokes are actually funny once you catch on LOL. She's also a very fair grader. Take her!", + "pos": 0.406, + "neu": 0.572, + "neg": 0.021, + "_id": { + "$oid": "6711d6c2cd60fca157e5f842" + } + }, + { + "text": "Professor Wasserman is extremely nice and caring towards her students. A decent amount of groupwork, but not too much work in general. Essay, group presentation, and take home final are most of the grading criteria. Feedback on assignments could be more clear. Homework is just one paragraph per week and is very easy.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f843" + } + }, + { + "text": "A delight-enthusiastic, joyful. Great command of the material. After 2 CCNY semesters, I gather the budget cuts are hurting. As few as 20 extra minutes per class would be profound. The teachers rush to cover the material and get to the next class. It is a disservice to diligent profs, who could get better pay and working conditions elsewhere.", + "pos": 0.155, + "neu": 0.755, + "neg": 0.09, + "_id": { + "$oid": "6711d6c2cd60fca157e5f844" + } + }, + { + "text": "I wasnt expecting to enter a class about the Bible and find it to be so interesting and funny. Wasserman pointed out things about the Bible that you alone would never realize. Yes, she was very funny, she gave us lots of cookies too. Her weekly assignments are not bad at all because you find yourself enjoying the readings just as much as she does.", + "pos": 0.205, + "neu": 0.74, + "neg": 0.054, + "_id": { + "$oid": "6711d6c2cd60fca157e5f845" + } + }, + { + "text": "Washerman gives weekly assignments in her Bible as Literature class. There is one group presentation and final is VERY long (take-home). There are only in-class quizzes, usually with partners (easy). Lot of bible reading, you could get away with not doing it. One scholarly paper. Barely any notes. Very clear and cracks jokes. MUST buy Bible NRSV.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f846" + } + }, + { + "text": "The only class I've had with Professor Wasserman was Jesus the Jew. The course material was presented in a clear way, considering the subject. Prof. Wasserman used examples of events in her life to try to explain Jewish concepts and ideas. It was very engaging. In terms of personality, she is extremely pleasant and funny. Not boring at all.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f847" + } + }, + { + "text": "Sweet, super intelligent and hilarious! Take her class if you want to learn, and not afraid of participating. Weekly assignments (one paragraph, easy) two projects. Very fair grader! Not an easy A, but an A you'll be happy you worked for. Lots of respect for her.", + "pos": 0.379, + "neu": 0.593, + "neg": 0.028, + "_id": { + "$oid": "6711d6c2cd60fca157e5f848" + } + }, + { + "text": "Very nice professor. helpful and understanding when it is needed. she teaches with such love that it would be really difficult not to love the class. there are a few papers due in this class but she is very helpful and allows you to choose your own topics. she also brings in cookies and chocolates :)", + "pos": 0.218, + "neu": 0.722, + "neg": 0.06, + "_id": { + "$oid": "6711d6c2cd60fca157e5f849" + } + }, + { + "text": "Great Professor ! I really feel like I learned a lot from her. She is always so nice and welcoming when you enter her class. She is always willing to help you do well in her class. She truly knows a lot and you could tell that she truly enjoys teaching. I would take more classes with her in the future.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f84a" + } + }, + { + "text": "took her for jesus the jew and biblical arch and shes great. shes funny and teaches her lectures in the most interesting way. her lectures made me want to actually research more. she gives second chances by going to extra credits and you can hand in a paper late if u have a good reason. brings in snacks too! you wont regret her.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6c2cd60fca157e5f84b" + } + }, + { + "text": "Instructor Wasserman is a great professor. She is passionate about the material, and is willing to help with assignments outside of class. She takes attendance and quizzes seriously, but gives plenty of chances for extra credit to make up for absences/failed quizzes. She is a fair grader, so don't BS assignments and you'll receive a fair grade.", + "pos": 0.264, + "neu": 0.716, + "neg": 0.02, + "_id": { + "$oid": "6711d6c2cd60fca157e5f84c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c3cd60fca157e5f84e" + }, + "professor_name": "Ronald Koder", + "rating": 4, + "department": "Physics department", + "comments": [ + { + "text": "He is an amazing professor. He might pop up to the class late but the class was never not interesting. He would know when he was losing us and try his best to make us understand. The final grade was 50% homework and 50% quizzes and two of the lowest from each were dropped. He gave some of us a lab tour at the end and it was amazing. Truly a genius.", + "pos": 0.215, + "neu": 0.711, + "neg": 0.074, + "_id": { + "$oid": "6711d6c3cd60fca157e5f84f" + } + }, + { + "text": "He is very disorganized and unreliable as a professor, but his class is interesting and he is a great lecturer when he shows up to class. The content is way too deep to go more than surface level. Don't expect to learn much more than fun facts from his class. He is very flexible with assignments and deadlines.", + "pos": 0.235, + "neu": 0.74, + "neg": 0.024, + "_id": { + "$oid": "6711d6c3cd60fca157e5f850" + } + }, + { + "text": "Grading was an absolute joke. The material was interesting, sure. But midterm was cancelled and our grade was based on only the homeworks for which we never received any feedback. Final was take-home and just a long hw. Grading was so arbitrary, it truly defies logic to sit in a class for 4 months and not receive any feedback.", + "pos": 0.142, + "neu": 0.82, + "neg": 0.038, + "_id": { + "$oid": "6711d6c3cd60fca157e5f851" + } + }, + { + "text": "Take home exams and maybe two quizzes. Homework every week (one hw per week)", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f852" + } + }, + { + "text": "He's a pretty chill teacher. Just pay attention to the lectures, the topic is kinda difficult. gave like 5 hws so make sure to do them. he doesn't grade things right away so u don't really know ur grade until the end. Tests were take home, gave about 1.5 weeks to do them. very laid-back class, just pay attention if u need to learn the topic.", + "pos": 0.11, + "neu": 0.822, + "neg": 0.069, + "_id": { + "$oid": "6711d6c3cd60fca157e5f853" + } + }, + { + "text": "He is a laid back and relaxed dude, which are good qualities in a friend but not a professor. From him you can expect homework occasionally, like 2 assignments per month. As a bio major, the workload seems less but the info that he asks is tricky. Take good notes and use chegg! Also, he will sometimes show up 10 mins late.", + "pos": 0.185, + "neu": 0.789, + "neg": 0.027, + "_id": { + "$oid": "6711d6c3cd60fca157e5f854" + } + }, + { + "text": "Awesome professor. He does run late a bit sometimes, and doesn't grade the exams quickly. The exams are very difficult and require a lot of work. Does not follow textbook, so need to attend the classes to keep up to date. Despite all these, he still is one of the best professors at City College.", + "pos": 0.132, + "neu": 0.824, + "neg": 0.044, + "_id": { + "$oid": "6711d6c3cd60fca157e5f855" + } + }, + { + "text": "One of the best professors ever! Extremely smart, witty, funny, unconventional, cool and charismatic! He is the real deal. He gives you the practical applications of the concepts he is teaching and makes class so much more fun with his childlike enthusiasm! He makes the class interactive and does give relatively tough homework which needs effort.", + "pos": 0.287, + "neu": 0.692, + "neg": 0.021, + "_id": { + "$oid": "6711d6c3cd60fca157e5f856" + } + }, + { + "text": "A natural teacher, clear, irreverent, very, very, smart, absolutely the real thing intellectually, but not the most organized (runs late, ends early, cancels with little notice) and it does get in the way. Take it by any means necessary, but be prepared. Re: comment below, he's not hard to look at, either.", + "pos": 0.191, + "neu": 0.769, + "neg": 0.04, + "_id": { + "$oid": "6711d6c3cd60fca157e5f857" + } + }, + { + "text": "I LOVE prof. koder, he is laid back, enthusiastic and very very adorable- the only thing is he doesn't grade anything yet suffice to say he's the reason I'm heading back to grad school. I learned A LOT, and did I mention how gosh darn cute he is?", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f858" + } + }, + { + "text": "Generally good lectures, gives fairly challenging homework and exams. Doesn't grade quickly (a nice way of putting it).", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f859" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c3cd60fca157e5f85b" + }, + "professor_name": "Greg Downs", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "Course title: History Methods & Methodology. Professor: Greg Downs. My comments: excellent professor, very amiable and approachable. Reads papers with a keen eye and provides in-depth comments. Encourages you to think & dig deeper into materials read for class or in your own area of expertise. Provides insightful comments for your historiography.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f85c" + } + }, + { + "text": "This was a research class, not a regular class. Nevertheless, Downs is knowledgeable and extremely enthusiastic. Always willing to meet with students and read early drafts. It's faculty like Downs, and the others, that makes the CCNY History Department the best in the CUNY system.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f85d" + } + }, + { + "text": "Greg knows his stuff. However, he is invested in the historic beatitude of certain groups, such as those involved in the Confederate States. This impacts on his perspective and his scholarship. Texts were mostly fine, one by Ransby was a sophomoric piece of drivel. I was suprised that he assigned it. His evaluation of papers seemed be severe.", + "pos": 0.063, + "neu": 0.894, + "neg": 0.042, + "_id": { + "$oid": "6711d6c3cd60fca157e5f85e" + } + }, + { + "text": "It was a joy to be in his class. It's hard not to appreciate the subject matter after leaving his lectures. The discussions were thought provoking. He's easily accessible and approachable. I took the class after reading the reviews here and I'm so glad that I did! The readings he assigns are sometimes overwhelming however. But that's college right.", + "pos": 0.123, + "neu": 0.811, + "neg": 0.066, + "_id": { + "$oid": "6711d6c3cd60fca157e5f85f" + } + }, + { + "text": "Very smart!", + "pos": 0.767, + "neu": 0.233, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f860" + } + }, + { + "text": "Excellent lecturer, is really interested in helping students learn and become better writers", + "pos": 0.573, + "neu": 0.427, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f861" + } + }, + { + "text": "Prof. Downs is AMAZING!!! He's incredibly smart and his lectures are the best! He is very eloquent, explains well, and invites students to participate in class discussions. He is very accessable and likes to help his students. He spent entire classes making sure that the students understood the final assignment. CCNY is fortunate to have him!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f862" + } + }, + { + "text": "Prof. Downs is what going to college is all about. Extremely smart, understanding and thought provoking. Classes are based around reading great books and discussions that really get to the core of history. Very social/cultural view of subjects. If you are looking for a more political/military view of history, just prod him a little for it.", + "pos": 0.115, + "neu": 0.856, + "neg": 0.029, + "_id": { + "$oid": "6711d6c3cd60fca157e5f863" + } + }, + { + "text": "Probably the best History Professor in the Department, enthusiastic challenging and invested in the subject matter.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f864" + } + }, + { + "text": "Wonderful ability to guide discussions and integrate student comments. Excellent comments on written work. A pleasure to listen to - he's clearly a masterful resource for American history who enjoys his topic, as well as teaching.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f865" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c3cd60fca157e5f867" + }, + "professor_name": "Laura Paskell-Brown", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "Definitely one of the best classes that I have ever taken in CIty. She's so passionate about the subject and I feel that her way of teaching is like no other. Instead of standing in the front just lecturing it feels like its more of a group thing in which everyone engages. Super interesting. Very had class to fail. She's always willing to help", + "pos": 0.32, + "neu": 0.614, + "neg": 0.066, + "_id": { + "$oid": "6711d6c3cd60fca157e5f868" + } + }, + { + "text": "Best Prof in the history of CCNY; she restored my love for Psychology! She's amazing and you just gotta love that British accent!!", + "pos": 0.522, + "neu": 0.478, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f869" + } + }, + { + "text": "Laura is one of the best. she is very out going.Sheis not the traditional proffesor who walks to the class and talk and talk. she is funny, she is sincere, she is different. I enjoy her class so much.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f86a" + } + }, + { + "text": "Excellent Professor!!! Laura is awesome, she is so unconventional and really expands your mind!!! Every class is exciting and interesting. She really cares about her students and she doesn't allow the traditional education setup to separate students. Her class is like a family and everyone learns from one another and together! I highly recommend!!!", + "pos": 0.35, + "neu": 0.627, + "neg": 0.023, + "_id": { + "$oid": "6711d6c3cd60fca157e5f86b" + } + }, + { + "text": "She is the most AMAZING professor I've ever had in my 3 years in CCNY. She is very funny, intelligent, understanding, caring, loving, and simple AWESOME. I consider her my mentor and thank her for such a WONDERFUL experience. This is a class I'll always look back to and thank her for the beautiful lessons she gave us. I really recommend taking her.", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f86c" + } + }, + { + "text": "She is the most AMAZING professor I've ever had in my 3 years in CCNY so far. Honestly, I consider her my mentor because she has helped students in every step of the way. She is loving, caring, funny, realistic, and simple AWESOME!I will never forget the GREAT experience in this class. I really loved the way she taught.", + "pos": 0.307, + "neu": 0.645, + "neg": 0.049, + "_id": { + "$oid": "6711d6c3cd60fca157e5f86d" + } + }, + { + "text": "<3 HER", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f86e" + } + }, + { + "text": "love the British accent. very understanding of college students in general since she is one herself. definitely recommend her for social psychology...or ANY CLASS.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f86f" + } + }, + { + "text": "She is an awesome professor and her class is one of the most interesting I have ever taken. I would highly recommend taking social psychology with her!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f870" + } + }, + { + "text": "Laura makes the information she teaches clear and easy to understand, she is always helpful and ready to answer questions, and the class is incredibly interesting. She is definitely one of the best professors I have ever had.", + "pos": 0.4, + "neu": 0.6, + "neg": 0.0, + "_id": { + "$oid": "6711d6c3cd60fca157e5f871" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c4cd60fca157e5f873" + }, + "professor_name": "N Schiller", + "rating": 4.4, + "department": "Not Specified department", + "comments": [ + { + "text": "He is a nice and fair professor. He is picky about attendance so don't be late or absent. He counts class participation ALOT, so if you don't like speaking in class or are shy, don't take him. He is not afraid to give you a zero for participation.", + "pos": 0.096, + "neu": 0.827, + "neg": 0.077, + "_id": { + "$oid": "6711d6c4cd60fca157e5f874" + } + }, + { + "text": "This professor is a very great one. He tries to keep class interesting and really likes participation, but most importantly, he guides students through their problems. His class finally felt like the English class that I have been lacking since elementary school thanks to his teaching of grammar. I highly recommend.", + "pos": 0.309, + "neu": 0.639, + "neg": 0.053, + "_id": { + "$oid": "6711d6c4cd60fca157e5f875" + } + }, + { + "text": "Very nice professor. A pretty fair grader. His class is interesting because he gives you different topics to write essays on, and you do many other writing exercises to help increase your ability to write. His lectures are pretty ok.He lets you re-write your essays. He provides good feedback on your essays. I recommend this professor!!!", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f876" + } + }, + { + "text": "One of the most inspiring professors I had! Highly recomanded!! He doesnt give that many essays but you will have to read for every class since he assigns articles to read. Oo did I mention he's rlly handsome. His class discussions are preety interesting sometimes.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f877" + } + }, + { + "text": "Very nice professor, tries to keep the class engaged with conversations. He makes the class interesting with random topics at times, and he isn't afraid to randomly pick on you to participate. He's a great professor.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f878" + } + }, + { + "text": "1. Do all the weekly assignments well, your attitude towards this class and your grade will be determined by them. 2. pay attention to his class and try to be active 3. read all assignments because he gives you quiz prior to the beginning of each class. 4. leave a good impression for him when you are doing the final presentation.", + "pos": 0.175, + "neu": 0.787, + "neg": 0.038, + "_id": { + "$oid": "6711d6c4cd60fca157e5f879" + } + }, + { + "text": "Very nice guy and had us read a lot of interesting articles. Participation is a must if you want to get at least an A- in the class. Allows students to rewrite papers but doesn't allow them to do it for the final. Make sure you read prior class time because he's not a afraid of giving surprise quizzes.", + "pos": 0.203, + "neu": 0.768, + "neg": 0.03, + "_id": { + "$oid": "6711d6c4cd60fca157e5f87a" + } + }, + { + "text": "He is a flexible guy, although he is not afraid of using his power. I guess that he's well accustomed to regular English classes, which made his writing for engineers not a very useful class. We discussed too much literature instead of writing technical papers.", + "pos": 0.082, + "neu": 0.864, + "neg": 0.054, + "_id": { + "$oid": "6711d6c4cd60fca157e5f87b" + } + }, + { + "text": "Not a hard prof but will always hav work for u 2 do. He always comes to class on time & prepared. Not hard(fair)of a grader if u noe how to write relatively well. Class can get boring at times and doesn't go through task of papers thoroughly. Pretty helpful and he is at his office during his hours. Not best teacher in the world but could do worse", + "pos": 0.171, + "neu": 0.696, + "neg": 0.133, + "_id": { + "$oid": "6711d6c4cd60fca157e5f87c" + } + }, + { + "text": "very nice professor, but harsh grader.", + "pos": 0.207, + "neu": 0.404, + "neg": 0.389, + "_id": { + "$oid": "6711d6c4cd60fca157e5f87d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c4cd60fca157e5f87f" + }, + "professor_name": "Vernon Caldwell", + "rating": 4.4, + "department": "Sociology department", + "comments": [ + { + "text": "Prof Caldwell is amazing! Please pay no mind to the last rater. He's easy going and facilities great, open-minded conversations where no one is discouraged from sharing their thoughts and opinions. This class is reading heavy, but his lectures and videos make the material much easier to digest and even enjoyable. I had a great semester with him!", + "pos": 0.317, + "neu": 0.601, + "neg": 0.082, + "_id": { + "$oid": "6711d6c4cd60fca157e5f880" + } + }, + { + "text": "He is fortunate I provided him w/ good feedback, though I shouldn't have. In fact, I should have mentioned that he had a tendency to perpetuate certain ideas and cultural norms I think are deplorable. I forgave him for that based on other parts of his performance. I do think he should comport himself better; it ruins the already-awful 'school.'", + "pos": 0.188, + "neu": 0.77, + "neg": 0.041, + "_id": { + "$oid": "6711d6c4cd60fca157e5f881" + } + }, + { + "text": "Professor Caldwell is a most brilliant and laudable instructor! I took him for a summer course + tho' it is very much work, he has provided what every course should resemble; it is truly complete in nature w/ excellent instruction, respectful + kindly personality, healthy amount of work, + much, much knowledge to offer. Do take such a one as he!", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f882" + } + }, + { + "text": "population dynamics was alright. caldwell is alright. he is smart, but very quick sometimes. you need to read the textbook every week. he wasn't too good at explaining the math, but he tried and he made things easiter sometimes", + "pos": 0.147, + "neu": 0.781, + "neg": 0.071, + "_id": { + "$oid": "6711d6c4cd60fca157e5f883" + } + }, + { + "text": "He always knows his material, he does move a bit fast but he explains very clearly. And if you are actually interested in Sociology his class should be a piece of cake.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f884" + } + }, + { + "text": "Caldwell is an amazing sociology professor! Goes a little bit too fast. But he is helpful. Test are easy if you attend class, three exams. Need to attend class and read. Look in the textbook for discussion questions, those are usually the ones on the test. He gives you review sheets before exams, they are really great. Take good notes!", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f885" + } + }, + { + "text": "Always willing to help once you reach out, if you take the class seriously you'll do fine. Weekly one page reflections based on readings, which he reviews the following class. Study guides for exams and in class review. Good solid professor.", + "pos": 0.216, + "neu": 0.748, + "neg": 0.036, + "_id": { + "$oid": "6711d6c4cd60fca157e5f886" + } + }, + { + "text": "He's very helpful outside the classroom. Fun class with clarity. Good guy, good professor with good energy. Helped me alot to understand theory and life after graduating.", + "pos": 0.499, + "neu": 0.501, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f887" + } + }, + { + "text": "Professor Caldwell is very friendly, extremely intelligent and hot. He makes his Sociology of Theory class extremely interesting and relates it to your everyday lives. He is very professional, fair and expects you to do your work. Cool guy.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f888" + } + }, + { + "text": "Professor Caldwell is amazing! He's very helpful and let's you know what he expects of you from the beginning. Tells you exactly what to study for his exams and makes theory interesting by relating it to students' every day life! Take him!!", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d6c4cd60fca157e5f889" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c5cd60fca157e5f88b" + }, + "professor_name": "Nalani Samuel", + "rating": 2.8, + "department": "English department", + "comments": [ + { + "text": "I actually liked this professor at the end of the semester. I felt like she was helpful in giving us long papers. At least she provided feedback and gave you extra chances if you would ask for it. At the beginning of the semester, she will be tough, but she will get nicer towards the end.", + "pos": 0.199, + "neu": 0.781, + "neg": 0.02, + "_id": { + "$oid": "6711d6c5cd60fca157e5f88c" + } + }, + { + "text": "Yes, she is a tough professor but she pushes her students out of their comfort zones. Be prepared for papers(pretty long), journals and pop quizzes. But overall, Professor Kopp will help with writing skills.", + "pos": 0.267, + "neu": 0.703, + "neg": 0.03, + "_id": { + "$oid": "6711d6c5cd60fca157e5f88d" + } + }, + { + "text": "Her last name is Kop now. She is a very harsh grader and does not really care if you put effort into it. Acts like a nice person but really isn't when it comes to grades. I don't mind that classes are canceled but she should at least inform us the day before so that we can get an extra hour of sleep and not 10 minutes before. Expect A LOT of work!", + "pos": 0.047, + "neu": 0.897, + "neg": 0.056, + "_id": { + "$oid": "6711d6c5cd60fca157e5f88e" + } + }, + { + "text": "She is one of the worst professors. She does not care about what you say.", + "pos": 0.0, + "neu": 0.659, + "neg": 0.341, + "_id": { + "$oid": "6711d6c5cd60fca157e5f88f" + } + }, + { + "text": "Really hard. Does not care about anything", + "pos": 0.0, + "neu": 0.536, + "neg": 0.464, + "_id": { + "$oid": "6711d6c5cd60fca157e5f890" + } + }, + { + "text": "Three simple words: Do not take. She is the harshest grader and so arrogant about it.", + "pos": 0.0, + "neu": 0.636, + "neg": 0.364, + "_id": { + "$oid": "6711d6c5cd60fca157e5f891" + } + }, + { + "text": "HARSH GRADER. Grades Students as if they were in graduate school, but yet she is an adjunct professor. Assignments are not Clear at all. Cancels class 10 min before it starts. DO NOT TAKE HER AT ALL.", + "pos": 0.0, + "neu": 0.82, + "neg": 0.18, + "_id": { + "$oid": "6711d6c5cd60fca157e5f892" + } + }, + { + "text": "she is the harshest grader! she doesn't care what other work you have! she canceled class when we were all there already which was so annoying! DO NOT TAKE", + "pos": 0.0, + "neu": 0.705, + "neg": 0.295, + "_id": { + "$oid": "6711d6c5cd60fca157e5f893" + } + }, + { + "text": "She is the kind of professor you'd most likely find in the NYC public high school system. Avoid especiallly if English is not your first language!!! Definitely take her if you're good at kissing ass. She falls victim to those kinds real easy. Don't take if you actually want to write about science.", + "pos": 0.214, + "neu": 0.67, + "neg": 0.116, + "_id": { + "$oid": "6711d6c5cd60fca157e5f894" + } + }, + { + "text": "Harsh grader", + "pos": 0.0, + "neu": 0.256, + "neg": 0.744, + "_id": { + "$oid": "6711d6c5cd60fca157e5f895" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c5cd60fca157e5f897" + }, + "professor_name": "David Calhoun", + "rating": 4, + "department": "Chemistry department", + "comments": [ + { + "text": "READ AND TAKE NOTES FROM THE TEXTBOOK BEFORE CLASS! Exams are based on both his lectures and textbook so pay attention. Start memorizing your Amino acids and lectures the day you get them. He is available to chat after class if you need more clarity on the topics.", + "pos": 0.064, + "neu": 0.899, + "neg": 0.036, + "_id": { + "$oid": "6711d6c5cd60fca157e5f898" + } + }, + { + "text": "He is a nice professor, but his lectures feel really long. For the exams make sure to read the textbook and go over the lecture slides. The grade is based on your 3 best grades out of 4 exams, the exams are multiple choice. However, if your courseload is heavy I would not recommend taking this class, because you need to set time to study and read", + "pos": 0.14, + "neu": 0.826, + "neg": 0.035, + "_id": { + "$oid": "6711d6c5cd60fca157e5f899" + } + }, + { + "text": "There is as lack of caring and understanding for students. It seems he just phones in effort in his lectures and his exams. You need to really devote large chunks of time to learn material he will not cover during lecture. His exams are all MC with detailed questions that will have you scratching your head. Be prepared to memorize...", + "pos": 0.118, + "neu": 0.847, + "neg": 0.035, + "_id": { + "$oid": "6711d6c5cd60fca157e5f89a" + } + }, + { + "text": "A lot to memorize and he expects detailed answers on the exams. Too much covered in just one semester.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6c5cd60fca157e5f89b" + } + }, + { + "text": "Very nice guy, lenient with grades even gave us extra time for assignments. Got to go to the AMNH with this class. He keeps you interested and helps you understand difficult topics using easier terms.", + "pos": 0.301, + "neu": 0.644, + "neg": 0.055, + "_id": { + "$oid": "6711d6c5cd60fca157e5f89c" + } + }, + { + "text": "Take this prof, you wont regret it and you'll do well. he teaches well, the test comes from his slides and its 4 of 5 quest to ans. its an easy A if you hav good memory.he's great with partial credit big time!!he'll make biochem easy and understanding. this prof is out to pass his student, not fail them like some profs.fight to be in his class!", + "pos": 0.303, + "neu": 0.672, + "neg": 0.025, + "_id": { + "$oid": "6711d6c5cd60fca157e5f89d" + } + }, + { + "text": "Great guy. Wishes students do well and thus often alludes to what questions will be on the exam. You have to answer 4 out of 5 and he is extremely great at partial credit. No final either. Always prepared with PPT presentations and answers all questions you have for him. He researches any offbeat questions posed as well. In short -- Take him!", + "pos": 0.25, + "neu": 0.721, + "neg": 0.029, + "_id": { + "$oid": "6711d6c5cd60fca157e5f89e" + } + }, + { + "text": "The man is a cakewalk. Not only does he give you the answers for the tests before actual test!!!! But he makes sure you have the right answers! Please take him and get that easy A!!!!", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d6c5cd60fca157e5f89f" + } + }, + { + "text": "He is one of the best. Fight, kill to be in his class. This is the class you will learn the most in your academic life.", + "pos": 0.122, + "neu": 0.667, + "neg": 0.212, + "_id": { + "$oid": "6711d6c5cd60fca157e5f8a0" + } + }, + { + "text": "Best Professor I've ever had.Very helpful. He made science so easy to understand...an overall good professor. No beating around the bush...he teaches and tests you and the tests are always 4 out of 5 q's of several q's he goes over in class and picks the easiest ones from!!! Great...take him...easy A!!! if you dont do good its cuz u don't want to!!", + "pos": 0.255, + "neu": 0.699, + "neg": 0.046, + "_id": { + "$oid": "6711d6c5cd60fca157e5f8a1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c6cd60fca157e5f8a3" + }, + "professor_name": "Jozef Dodziuk", + "rating": 3.2, + "department": "Mathematics department", + "comments": [ + { + "text": "pros: doesn't collect HW, tests are easy-ish. cons:very unclear, makes lots of mistakes on the board. I cannot recommend him.", + "pos": 0.0, + "neu": 0.72, + "neg": 0.28, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8a4" + } + }, + { + "text": "His class exams are extremely straight forward...the final is departmental so don't count on that. But I got REALLY high grades on all his exams. Most times he asks you NOT to go all the way through with a problem. You can bomb the final and still do really well..highly recommended", + "pos": 0.071, + "neu": 0.796, + "neg": 0.133, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8a5" + } + }, + { + "text": "You dudes must be on something for saying he's hard. He's very clear in explaining the material in class. He's WILLING to add a reasonable amount of POINTS to your exam if you just see him after class. Honestly I haven't seen him get mad at all during the semester. He doesn't care if you don't go to class either..as long as ur learning it somehow.", + "pos": 0.08, + "neu": 0.823, + "neg": 0.098, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8a6" + } + }, + { + "text": "He is a great professor.He selected an extra day before the finals to tutor the class and he took three hours from his own time to do this.He gets frustrated when he sees you don't do the work.But he's a fair grader and one of the best professor that i've had.The people in 392 graded him before they saw their grades..now they are all happy.", + "pos": 0.184, + "neu": 0.772, + "neg": 0.044, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8a7" + } + }, + { + "text": "he is quite unclear when it comes to explaining the materials. he makes too many mistakes in the board. However, his tests are pretty easy. the only downside is that his grading is very strict. But if you go up to him and talk about it, then he gives more points. some students went from a 60 to a 75. justs put more effort and u will do fine.", + "pos": 0.084, + "neu": 0.85, + "neg": 0.066, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8a8" + } + }, + { + "text": "They said he was a good professor and that was why i registed for him.Turns out that,that was a mistake.He was really mean.People that had him when he was a happy man are lucky.The new prof Dodziuk is an angry man and will take off points for any slightest mistake you make in the exam.Avoid him.", + "pos": 0.103, + "neu": 0.809, + "neg": 0.089, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8a9" + } + }, + { + "text": "Crazy professor.Avoid him like a plague.", + "pos": 0.281, + "neu": 0.449, + "neg": 0.27, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8aa" + } + }, + { + "text": "He is the worst maths professor that i've taken.He started off nice and everyone thought he was cool.But he became really hard after the first exam and started taking heavy points from everyone in the class.He is very temperamental,so be sure not to upset him when you ask any questions.He gets irritated and is very difficult to please.DON't take.", + "pos": 0.106, + "neu": 0.731, + "neg": 0.163, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8ab" + } + }, + { + "text": "he is very fair tests and he is more than willing to help you out during his office hours...", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8ac" + } + }, + { + "text": "He is a great professor. Very clear about the material. Goes over the homework in class (doesn't collect). Fair tests. Reasonable grading", + "pos": 0.25, + "neu": 0.68, + "neg": 0.07, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8ad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c6cd60fca157e5f8af" + }, + "professor_name": "Reynolds Dean", + "rating": 3.2, + "department": "Music department", + "comments": [ + { + "text": "He was a good professor. Shame he's not teaching at ccny anymore... His love for music was admirable.", + "pos": 0.385, + "neu": 0.504, + "neg": 0.112, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b0" + } + }, + { + "text": "This class is great. I got more out of it than i would expect. Hated music before this class. This professor knows what he's doing and relates to the students.", + "pos": 0.113, + "neu": 0.771, + "neg": 0.116, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b1" + } + }, + { + "text": "This professor is very fair. He is very consistent and makes the information clear and concise. He says to read the text book but he puts everything you need to know on the board. All the exams come straight from class notes. Come to class and don't be late. Listen to the music he posts online. Not difficult to get a good grade.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b2" + } + }, + { + "text": "Extremely easy, just attend class, exams are easy and he makes the class interesting", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b3" + } + }, + { + "text": "Really helpful and clear professor. Covers all material in class and gives minimal assignments to work on at home. If you attend and pay attention it's not hard to do great.", + "pos": 0.293, + "neu": 0.671, + "neg": 0.036, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b4" + } + }, + { + "text": "This is very Hard class! many assignments! This instructor is very strict! hard grader! DO NOT TAKE THIS CLASS!!!!", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b5" + } + }, + { + "text": "This is HARD CLASS and worst Prof ever!do not take it....", + "pos": 0.0, + "neu": 0.58, + "neg": 0.42, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b6" + } + }, + { + "text": "This professor is a very hard paper grader!! there are 3 papers two of which are concert reports. he is very strict with the concert reports. the midterm and final are easy if you study the review sheets and answer the review sheet questions!! it really helps.. the quizzes are also easy if you study your notes. it is NOT an easy class", + "pos": 0.137, + "neu": 0.806, + "neg": 0.057, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b7" + } + }, + { + "text": "DO NOT TAKE HIS CLASS WITH THIS PROF!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b8" + } + }, + { + "text": "By far the WORST professor ever! the class is very boring! He think the world of music is all our life!! There are many assignments, concert reports. if you submit your paper late, the assignments will be marked down!! The are 2 hard exams and 4 quizs , if you are not taking one from the 4 You will be given a grade of zero.AVOID AT ALL COST!!", + "pos": 0.0, + "neu": 0.867, + "neg": 0.133, + "_id": { + "$oid": "6711d6c6cd60fca157e5f8b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c7cd60fca157e5f8bb" + }, + "professor_name": "Fred Brodzinski", + "rating": 2.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Professor is knowledgeable and experienced. He is big on respect - so make sure you give his lecture your attention. You will learn a lot if you are ready to listen.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8bc" + } + }, + { + "text": "he only explains the material real well,but he is a bad grader.he does not curve the grades.he and his stupid grading system.he does not care about students problems.last summer was the worst ever.hopefully he will change this summer.waste of money and time.", + "pos": 0.0, + "neu": 0.736, + "neg": 0.264, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8bd" + } + }, + { + "text": "plz dont waste your summer taking this class.stupid and crappy HW's & Exams.He will decide your grades based on your external appearance.so enjoy your summer and take some nice challenging subjects which will fetch you good grades.dont imagine that by taking this summer course anybody will graduate.utter crap.he doesnt care about students.", + "pos": 0.22, + "neu": 0.684, + "neg": 0.097, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8be" + } + }, + { + "text": "I heard that this prof.gives good grade but finally messed up everything.Also he speaks rudely when i meet him regarding grades.So never ever take that class and save your precious time.", + "pos": 0.253, + "neu": 0.582, + "neg": 0.166, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8bf" + } + }, + { + "text": "Dont waste your money and time taking this class.He was a good prof.Even if you really work hard he will make sure you land up in a bad grade.Unless he likes you.If not then drop the class.He is a piece of crap.He keeps praising about himself and he tells some **** stories about his family.He makes you buy a book worth $100 which is of no use.", + "pos": 0.214, + "neu": 0.696, + "neg": 0.09, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c0" + } + }, + { + "text": "i am huge fan of his teaching,never in his class i fell sleep.His exams and homework were hard.its too hard to get an \"A\" in his class.Dont be too suprised if you land up in bad score.", + "pos": 0.108, + "neu": 0.776, + "neg": 0.115, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c1" + } + }, + { + "text": "Plz dont regist for this class.he used to be easy,not anymore.He made the class very tough.he wont curve the grades.he cares a**** about students problems.to much of HW.so next time register for this class at your own risk.this year the class average was below B.many dropped the class.even i should have.anyways it was the worst summer of my life.", + "pos": 0.067, + "neu": 0.87, + "neg": 0.064, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c2" + } + }, + { + "text": "This guy is Crazy.gave me a B-after doing all his stupid homework,only he can understand his grading.he gave out B- almost to every one.please dont spoli ur summer taking his class.he has stopped giving \"A\" waste of money n time", + "pos": 0.052, + "neu": 0.774, + "neg": 0.174, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c3" + } + }, + { + "text": "very hard class...i heard from lot of people it was easy class.but this guy started to give lot of homework and made me buy 100$ textbook,there is mid term,assignment,group assignment and final exam.this professor has a software that can detect Plagiarism.his homework are really hard.i dropped the class because of his homework", + "pos": 0.053, + "neu": 0.916, + "neg": 0.031, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c4" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c7" + }, + "professor_name": "Yana Kucheva", + "rating": 4.2, + "department": "Sociology department", + "comments": [ + { + "text": "I had this professor during the first semester of Covid. She was inconsiderate of that and very unorganized. One of the least informative classes I took which was disappointing because I was looking forward to it", + "pos": 0.0, + "neu": 0.848, + "neg": 0.152, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c8" + } + }, + { + "text": "Professor Kucheva had the research paper spilt into smaller parts to allow us to get the most points possible on the final draft using all the feedback she would give us. I would definitely recommend taking her as she is one of the best professors I have seen at CCNY.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8c9" + } + }, + { + "text": "We had weekly readings and they were often very long. We only met once a week on zoom (Wednesdays) and we had to watch an hour-long lecture on Mondays and do a post. She gives really good feedback and grades everything on time. Midterm and final were very short yet very tricky. Overall she was a great professor.", + "pos": 0.114, + "neu": 0.857, + "neg": 0.029, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8ca" + } + }, + { + "text": "She is a great professor! All the assignments in this class are for the final paper, which is helpful. I would recommend coming up with your thesis for the final very early in the semester. That way, your assignments all correlate with your final and you can just implement it in your paper at the end. Do your work and you'll pass.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8cb" + } + }, + { + "text": "Professor Kucheva is very nice and lenient with deadlines and grades. Theres multiple small assignments that builds upon the final research paper (6 pages). I enjoyed taking this course with her, just do the work and you'll do good. She is very structured and organized with the course. Youll learn a lot about sociological research methods", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8cc" + } + }, + { + "text": "Yana is great. Held lecture only once in 2 weeks. The assignments were divided into 8 modules that had due dates & each module had readings, videos, a 200-300 word reflection, & a discussion post. There was also 1200 word paper and an open book midterm & final with 3 short answers (1 pg each). Super easy & interesting class, & shes a nice grader.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8cd" + } + }, + { + "text": "Professor Kucheva is a decent professor. She does well in explaining stuff in lectures and she offers extra help and time to finish assignments. The semester long assignment has many parts which all need to feed into one another, but this is poorly explained in the beginning and meant that early assignments I did werent relevant to my final paper.", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8ce" + } + }, + { + "text": "Professor Kucheva is a caring person. She responds quickly to emails and is a nice person. I think that her assignments were too demanding during the pandemic (she assigned a group assignment!) However, her homework were discussion posts that were fairly simple. She posts her lectures which is a great way to understand the class. Tons of readings!", + "pos": 0.16, + "neu": 0.811, + "neg": 0.029, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8cf" + } + }, + { + "text": "Great professor! very simple and straight forward, take good notes and read, you should be fine. She is accessible at all time. Cares about students passing.", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d0" + } + }, + { + "text": "Very organized! She takes her time explaining material and ensures not student is left behind. If you need to reach her, she's quick to respond to emails as well as the CUNY Blackboard discussion board. Amazing professor!", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d3" + }, + "professor_name": "Henry Love", + "rating": 2.8, + "department": "Psychology department", + "comments": [ + { + "text": "Do not Take. This is more social psychology than developmental psychology. All he did was focus on one boring topic the whole semester. I got a F because I chose not to do his ridiculous 10 paper. His reflections are by completion but he gives ZERO FEEDBACK.", + "pos": 0.0, + "neu": 0.93, + "neg": 0.07, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d4" + } + }, + { + "text": "PSY218 requires patience and understanding. Professor Love should concentrate more on social psychology than developmental psychology. Spring 2021 remote class lectures were informative. Most of the class is based on completing weekly reflections and entire semester spent on research paper (60% of your grade). Little feedback & plenty of changes.", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d5" + } + }, + { + "text": "There are weekly reflection paper's which are an easy grade if you hand them in on time. However, get ready to work on a final paper that is worth 60 percent of your grade and never receive any feedback on it. He does not reply to emails so if you have a question do not expect an answer.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d6" + } + }, + { + "text": "Professor Love should focus on sociology because thats exactly what his class feels like. He rarely focuses on psychology. There is a 10 page paper at the end of the course. He'll also assign reflections due every week. He is an easy grader, knowledgable, likable, flexible with deadlines. It's just more tedious than anything.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d7" + } + }, + { + "text": "Now I got an A because I did my work and participated, but this class was a total pain. Not only is the paper a huge portion of your grade, but he teaches a child psych class too with the exact same criteria. If you want to have good discussions about marginalized people and societies failures on the populations go for it. But the paper was not it.", + "pos": 0.103, + "neu": 0.786, + "neg": 0.111, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d8" + } + }, + { + "text": "Gave us random assignments each week but not enough time to do them and never graded any of the work that we needed to submit to him. class isn't hard its mostly just a pain in the ass. oh and the research paper is 10-12 pages at least but you don't get any feedback on any part of it since he never grades anything the whole semester", + "pos": 0.019, + "neu": 0.857, + "neg": 0.123, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8d9" + } + }, + { + "text": "If you want to be lost the entire semester about a paper that's worth 60% of your grade because you have to sit in class for an hour on zoom and have this man play with his dog, assign random assignments that are due in 3 days, and cancel office hours with majority of students to talk about the paper then this is the class for you!", + "pos": 0.082, + "neu": 0.859, + "neg": 0.06, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8da" + } + }, + { + "text": "Young, down to earth and relatable! While there are textbooks required, as long as you come to class and pay attention you will do great because he really explains concepts thoroughly and with examples. There is a 10 page research paper though... that was the only downside but he lets you choose whatever topic you want.", + "pos": 0.073, + "neu": 0.881, + "neg": 0.046, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8db" + } + }, + { + "text": "He was my TA for PSY246, and he was very helpful. You can ask him anything you dont understand. He likes telling stories about his younger self to explain things and does group discussions.", + "pos": 0.083, + "neu": 0.855, + "neg": 0.062, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8dc" + } + }, + { + "text": "This Proessor is the best at City College! If I could take his class again I would!!! Teaches you about real life and is always there to support his students. Show up to class, participate or not, no textbook, maybe 2 short papers and a group project. Absolutely and easy and fun class to be in.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d6c7cd60fca157e5f8dd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c8cd60fca157e5f8df" + }, + "professor_name": "Evan Knight", + "rating": 5, + "department": "French department", + "comments": [ + { + "text": "Professor Knight made this class really enjoyable for a literature class. There was a lot of reading and some films but it was pretty fun and manageable. In class, it was mainly active discussion but he makes it a very comfortable environment to share your thoughts.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e0" + } + }, + { + "text": "Professor Knight is what every teacher should be, he gives great feedback, makes the class active and is capable of relating the subjects with real life and situations. There was a lot of reading but it was fun.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e1" + } + }, + { + "text": "I took him for French 2 class and I was so amazed by the way he teaches! I learned a lot and he gives many extra credits. He is smart, caring and kind and I would take him again", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e2" + } + }, + { + "text": "Great great great professor! Extremely kind, caring and understanding. He knows how to work with those who know nothing of the language and is an easy A or B based on various exams and corresponding homework assignments, along with two oral exams. One of the best professors City has to offer!", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e3" + } + }, + { + "text": "He is the best!", + "pos": 0.6, + "neu": 0.4, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e4" + } + }, + { + "text": "Great french professor that is extremely helpful with the content he teaches if there is any confusion. Due to his class, I have even taken up trying to reading french books in my pass time . Superb class and amazing lessons!", + "pos": 0.287, + "neu": 0.672, + "neg": 0.041, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e5" + } + }, + { + "text": "Honestly, Evan is one of the best professors Ive ever had. His lessons are interesting, fun, relatable, and humorous. He makes learning french so easy. Also, he lets you hand in work late (within reason) for full credit. He is the best.", + "pos": 0.472, + "neu": 0.528, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e6" + } + }, + { + "text": "Amazing french Professor everyone dreams of.", + "pos": 0.619, + "neu": 0.381, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e7" + } + }, + { + "text": "He's an amazing professor because he can actually teach French. His lessons are a mix of lectures and conversational segments. He makes it fun and easy because he's so relaxed and friendly. Even the people who had a lot of trouble with french sounds volunteered to speak French in class. I learned a lot in his class.", + "pos": 0.247, + "neu": 0.715, + "neg": 0.038, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e8" + } + }, + { + "text": "He is one of the best professors I've ever had. He makes learning french fun so every class becomes an interesting exploration of french language and culture. His passion and enthusiasm for french is infectious to the degree that I now want to travel to France to speak french. As long as you do your workbook and study you won't regret this class.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8e9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c8cd60fca157e5f8eb" + }, + "professor_name": "Shamecca Harris", + "rating": 4.1, + "department": "English department", + "comments": [ + { + "text": "There are a lot of readings with two large writing assignments that have both group workshops and individual ones with the prof. Overall, she was pretty flexible and lenient, just make sure to communicate your needs if any.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8ec" + } + }, + { + "text": "She is a good professor and super nice. She gives good feedback. We did two writing pieces and workshops for every person. Then revision in which she would do individually. The final is a portfolio with a cover letter and 10-20 page writing piece. She was very chill.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8ed" + } + }, + { + "text": "She is a nice person. She gives great feedback. She is a tough grader.", + "pos": 0.356, + "neu": 0.567, + "neg": 0.077, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8ee" + } + }, + { + "text": "A lot of research and writing is expected for the papers, but there are only 4 large papers throughout the semester so not too bad. Prof Harris gives in depth feedback on drafts and clear expectations. She's also very understanding with late work and isn't too harsh of a grader.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8ef" + } + }, + { + "text": "Professor Harris was very nice and she organized her class very well. She communicates with you often with reminders and often extends deadlines. She's super accessible to students and will work with you. Her feedback on your work is clear and her grading is very fair. It is not an Easy A, but if you fail it really is on you.", + "pos": 0.157, + "neu": 0.752, + "neg": 0.092, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f0" + } + }, + { + "text": "I took her in fall 2020. She gives good feedback and gives a chance to fix your mistakes. There are four essays you have to write and a lot of discussions post. She doesn't use BB. She supposes to post videos every 2-3 weeks but she didn't. She just posts links and you have to figure them out by yourself. If you are freshmen I won't recommend it.", + "pos": 0.048, + "neu": 0.891, + "neg": 0.061, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f1" + } + }, + { + "text": "I had her as an asynchronous class. Lots of essays with little breaks in between so be ready to type. She gives really good feedback on your drafts, so make sure you fix your mistakes to get good grades. Make sure you do your assignments on time! She's a pretty solid professor. Just grades slow but it's probably because of the pandemic.", + "pos": 0.19, + "neu": 0.785, + "neg": 0.025, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f2" + } + }, + { + "text": "She's really kind and open minded. The instructions of what needs to be done are pretty clear and you will pass as long as you follow them. She's pretty cool and she makes Freshman composition fun", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f3" + } + }, + { + "text": "Kind and understanding. Lots of writing but this is the case with all Engl110 classes. Distinct grader, so you have to understand how she grades. Do ALL the work with great effort, submit assignments on time, participate, and go to class A.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f4" + } + }, + { + "text": "Professor Harris is a good teacher. She is very nice and understanding. Her lectures were very boring though and many of the homework's she assigned were a waste of time. But, if you do the work and go to class, you will definitely get an A.", + "pos": 0.144, + "neu": 0.785, + "neg": 0.071, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f7" + }, + "professor_name": "Amir Mousa", + "rating": 3.9, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Here, some of the negative posts came from the students that were with Mousa during 2020. The group of students was far away from being perfect or even good. A lot of cheating during exams and blaming professor for not understanding of simple things. Study Hard, as Mousa says, and you get what you want. If the grade is still low, change the major", + "pos": 0.101, + "neu": 0.719, + "neg": 0.18, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f8" + } + }, + { + "text": "Moussa is the one prfessor in CCNY who teaches you how to be an engineer. Yes exams can be challenging especially undergraduate classes but this prepares you for real life and helps you develop a real understanding of the material. Put the work into his classes it will be worth it", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8f9" + } + }, + { + "text": "Took him during my last semester, he was tough and material was heavy; however made me ready to take a design position right out of school. The \"tricks\" mentioned by other reviews, are what we use the most while working. Learning from him and staying in his class was WORTH EVERY SECOND. Take him and learn from him, he gets you ready for work life.", + "pos": 0.108, + "neu": 0.849, + "neg": 0.042, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8fa" + } + }, + { + "text": "Book smart and practical but is a child when it comes to how he handles the class. He takes everything personal and will punish the whole class for it. Design class but tests on conceptual questions that are meant to purposely trick us.", + "pos": 0.039, + "neu": 0.838, + "neg": 0.124, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8fb" + } + }, + { + "text": "Professor with a lot of practical experience which is a plus. Poor teaching style - simply reads off slides. Tests on the most obscure details from lectures - not actual important concepts. Seems like his main goal is to trick students in exams, continually makes fun of students and they're mistakes - if he taught better they wouldn't make them", + "pos": 0.124, + "neu": 0.756, + "neg": 0.12, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8fc" + } + }, + { + "text": "Amazing Professor", + "pos": 0.792, + "neu": 0.208, + "neg": 0.0, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8fd" + } + }, + { + "text": "The person who said he harms your career probably isn't a good engineer if s/he managed to become one. He makes students aware of as many things as possible within the short time you get in college to survive out there. You'll know design and can make your boss happy right out of college with minimal learning curve if you took all his courses.", + "pos": 0.053, + "neu": 0.868, + "neg": 0.08, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8fe" + } + }, + { + "text": "I don't know why this professor has a high rating. He is an absolute nightmare, his grading style is awful and extremely unprofessional in dealing with the students. Really difficult and irrational exams boosted by his idiotic way of grading. Avoid this guy at any cost, he will only harm your Civil Engineering career.", + "pos": 0.036, + "neu": 0.659, + "neg": 0.306, + "_id": { + "$oid": "6711d6c8cd60fca157e5f8ff" + } + }, + { + "text": "I was told Professor Mousa was better than other CUNY CE Professors, he probably is but the best player on a last place team can still be mediocre at best. He posts the material but is very disorganized in his scheduling (3 tests scheduled after drop date, 2 day of cancelled classes) and grades more on his own procedure than what is shown in codes.", + "pos": 0.167, + "neu": 0.729, + "neg": 0.104, + "_id": { + "$oid": "6711d6c8cd60fca157e5f900" + } + }, + { + "text": "A phenomenal professor who really knows how to be a teacher. He tells you everything you need to know for the tests and gives you tons of material to study. If you do what he says and study from day one you'll do well. Lectures can be long and dense but he keeps them interesting. Can be difficult; consistent studying and practice is necessary.", + "pos": 0.074, + "neu": 0.88, + "neg": 0.047, + "_id": { + "$oid": "6711d6c8cd60fca157e5f901" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c9cd60fca157e5f903" + }, + "professor_name": "Griffin Thayer", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Good personality, lectures are fairly interesting. Presents info clearly, posts slides with all necessary content on blackboard. You have weekly discussion boards on an article, you write one paragraph one reply. Two exams both virtual and have multiple choice, short answer, + long answer and you can take a week. Late work: one pt deducted per hour", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f904" + } + }, + { + "text": "Professor Thayer is a good professor. Those who plan to take Professor Thayer's course should know that his exams consist of multiple-choice questions, short answers, essays, and case studies. Professor Thayer gave us a week to complete each test. Professor Thayer also had us do a final paper, which he helped us find articles for if we asked.", + "pos": 0.048, + "neu": 0.952, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f905" + } + }, + { + "text": "One of the most amazing psych professors at ccny. He is very understanding,respectful,funny and helpful. I took his class in-person in spring 2022. Likes when students participate cause it keeps the class more engaged. Sometimes there are class activities and short videos. Papers are manageable and gives great feedback. You NEED to take his class!!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f906" + } + }, + { + "text": "This professor is kind of intimidating the first class but very knowledgable. Overall, not many assignments and exams are given online with unlimited time for 1 week. He tries his best to pass his students. I recommend! 2 papers and 2 exams.", + "pos": 0.185, + "neu": 0.773, + "neg": 0.042, + "_id": { + "$oid": "6711d6c9cd60fca157e5f907" + } + }, + { + "text": "Loved Griffin Thayer's class, he is very magnetic in the sense that you will not be board during the lecture, makes it very easy to participate in class, and is overall a very nice person. He has easily become on of my favorite professors. There are weekly discussion boards(only have to do 8 with responses), 2 take home exams and 2 papers. 10/10", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f908" + } + }, + { + "text": "Very easygoing, lectures are fun if you participate. there're lots of BB posts but easy enough to do. Uses a textbook but provides it for free. Exams are long but easy. Overall a really fun course. Take him!", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f909" + } + }, + { + "text": "I took this class called the history of madness not listed as an option, he was nice at first but his grading is really harsh, told him I was going through some personal issues so was another person in class but he gave us an extension but graded harshly while other students in the class said that they literally made things up and received 100.", + "pos": 0.027, + "neu": 0.884, + "neg": 0.089, + "_id": { + "$oid": "6711d6c9cd60fca157e5f90a" + } + }, + { + "text": "Take this class, its great", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f90b" + } + }, + { + "text": "Really easy going and nice Try to participate during class- he tried his best to be engaging even online (played some class activities) 5 mini papers but only had time for 4 papers; not hard and really easy to write about- will help in understanding certain topics, which will help during tests tests were easy- multiple-choice and short response", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f90c" + } + }, + { + "text": "Professor Thayer is an amazing person overall. He's informative and teaches well with given powerpoints before the class even starts. There is reading every class but it's very simple. He is very understanding as well, if you have any questions don't hesitate to ask. He cares about class well-being! Take him if you're a psychology major/minor", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f90d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6c9cd60fca157e5f90f" + }, + "professor_name": "Hanh Nguyen", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "I haven't taken any other stats professor, but I could tell Professor Hanh is the best! The notes she takes along with the lecture are so helpful. Also, she cares a lot about students. Even if you don't have any question/confusion, she will make sure to ask if the material discussed is clear to you before moving forward. Would recommend her 100%.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d6c9cd60fca157e5f910" + } + }, + { + "text": "Professor Hanh is a clear instructor and cares about your understanding. While there's daily hw, its very good to keep us on our toes that we know what is going on. She has a really generous grading policy-- 1/3 exams dropped, 3/~10 quizzes dropped, 3 daily hws dropped. Prof. Hanh is very accessible and no surprises-- you can succeed with her.", + "pos": 0.232, + "neu": 0.745, + "neg": 0.023, + "_id": { + "$oid": "6711d6c9cd60fca157e5f911" + } + }, + { + "text": "Hanh is a great professor. She provides extra help for the class during her office hours (2 hours per week) and even after class. I was struggling during the first few weeks and Hanh spent extra time going over the materials with me. She is understanding but strict with due dates/time. Attendance was evaluated by in-class practice.", + "pos": 0.073, + "neu": 0.896, + "neg": 0.032, + "_id": { + "$oid": "6711d6c9cd60fca157e5f912" + } + }, + { + "text": "Taking Hanh's class as a requirement class and I really enjoyed it. She's very clear on what she wants and expects you to do. She does require you to attend class and submit in class assignments for attendance credit. There's a lot of homework, but some are optional. We have a drop policy for class assignments with various extra credit for exams.", + "pos": 0.137, + "neu": 0.825, + "neg": 0.038, + "_id": { + "$oid": "6711d6c9cd60fca157e5f913" + } + }, + { + "text": "Hanh is an incredible professor and person. Its very clear that she cares about her students and wants the best for all of us. Stat is a hard course, no going around that. You will still need to put in the work. Her homework's are super reasonable and prepare you well for the three exams. Im very fortunate to have ended up with her as my professor.", + "pos": 0.236, + "neu": 0.721, + "neg": 0.044, + "_id": { + "$oid": "6711d6c9cd60fca157e5f914" + } + }, + { + "text": "She was the best, Tho the class was a bit rigorous but it wasn't the professors fault and also the class comes with coding lab", + "pos": 0.189, + "neu": 0.758, + "neg": 0.053, + "_id": { + "$oid": "6711d6c9cd60fca157e5f915" + } + }, + { + "text": "This is BY FAR the best professor I ever had! Her notes are amazing as she walk you through so many practice problems which makes it easier to do the hw problems on your own as well as the exams. The grading criteria is very clear. She is also very helpful and patient. Statistics is a hard class but taking it with her will calm any nerves !", + "pos": 0.201, + "neu": 0.716, + "neg": 0.083, + "_id": { + "$oid": "6711d6c9cd60fca157e5f916" + } + }, + { + "text": "GREAT PROFESSOR!!! I struggle with math & really thought this class was going to be a drag, (especially\nsince I took it during the summer) but she was AMAZING!! Her lectures are interactive & give no space for you to get bored. She cares about her students & will answer every question. I legit just signed up just to rate her. 10/10 DEF RECOMMEND!", + "pos": 0.225, + "neu": 0.672, + "neg": 0.103, + "_id": { + "$oid": "6711d6c9cd60fca157e5f917" + } + }, + { + "text": "She was a really good professor and gave extra credit but she was totally not understanding. I expected for a psych professor to be understanding about mental health and things going on in ones life but she did not care. As someone who always showed up to class early and participated, that hurt a lot and that's when I started not counting on her to", + "pos": 0.053, + "neu": 0.836, + "neg": 0.11, + "_id": { + "$oid": "6711d6c9cd60fca157e5f918" + } + }, + { + "text": "As a professor, she was good and pretty much-laid everything out, but the homework or just in general, the work in this class is just way too much and inconvenient", + "pos": 0.119, + "neu": 0.791, + "neg": 0.091, + "_id": { + "$oid": "6711d6c9cd60fca157e5f919" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cacd60fca157e5f91b" + }, + "professor_name": "James Booth", + "rating": 3.8, + "department": "Environment department", + "comments": [ + { + "text": "Terrible...", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f91c" + } + }, + { + "text": "The Easiest and nicest professor I've ever taken! I took this for a technical elective and I didn't have to spend too much time on it. It was an asynchronous online class so I didn't have to attend the lectures. Only 2 hw, 2 projects, and 1 exam and they were all very easy. I was once 1 week late for the project and he was very generous about it", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f91d" + } + }, + { + "text": "Professor Booth is super nice, caring, gives pretty great lectures, and is pretty easy. He really went out of his way to accommodate everyone (he basically offered an asynchronous option for his synchronous class) and was so happy just to see people engaged. He always seemed to appreciate when people brought up new things in class. I'd recommend.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f91e" + } + }, + { + "text": "The best professor ever!!! He is so respectful and he cares about the students. He wants to make sure that students do learn the material by giving questions that require some thinking and some researching. The class was online so 75% was on hw he gives grades if your hw is well edited and organized. He wants all students to get either A or B.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f91f" + } + }, + { + "text": "Vague class, exam answers must be word for word with his solutions or you will get the answer wrong. Annoying class for an elective, wait for someone else.", + "pos": 0.052, + "neu": 0.729, + "neg": 0.219, + "_id": { + "$oid": "6711d6cacd60fca157e5f920" + } + }, + { + "text": "I heard lots of praise for Professor Booth and went on a limb to take him. But his class is stressful and dense and he doesn't take much time to explain things. His homework is hard and takes several days to complete. Its difficult to focus on actually learning the material because it feels like we're just doing it for homework.", + "pos": 0.078, + "neu": 0.79, + "neg": 0.131, + "_id": { + "$oid": "6711d6cacd60fca157e5f921" + } + }, + { + "text": "EASILY the best and easiest professor in CCNY. His class is just weekly online homework that is 70% of the grade, a midterm presentation, and a light final. Really helpful and careful. Take him if you can, you won't regret it", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f922" + } + }, + { + "text": "He's a great professor. I took him for fundamentals of atmospheric science. his lectures are pretty clear and easy to understand. he's always available if u have questions. 4 exams and hw and a paper (if you're a grad student).", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f923" + } + }, + { + "text": "Best professor ever! Very funny and helpful. You don't need the book because he gives you notes. Only one midterm and 2 homeworks plus the final.Make sure you get the concepts for the final, other than that an awesome class to learn about climate change", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f924" + } + }, + { + "text": "very good . always there for his students.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f925" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cacd60fca157e5f927" + }, + "professor_name": "Liubov Kreminska", + "rating": 3.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "I took her back in the Summer 2021 Semester for ENGR 204. It was online and asynchronous. Just do the homework, study really hard for quizzes and exams, and you will be fine. She always, replies to emails instantly, and always to help students during her office hours by appointment via Skype. Would have gotten an A if I submitted my projects early.", + "pos": 0.068, + "neu": 0.906, + "neg": 0.026, + "_id": { + "$oid": "6711d6cacd60fca157e5f928" + } + }, + { + "text": "I really like this professor, the professor gave me quizzes based on what was on the book and it was the easier than the rest of the professors. If you arent doing well, you can ask for extra points", + "pos": 0.129, + "neu": 0.829, + "neg": 0.042, + "_id": { + "$oid": "6711d6cacd60fca157e5f929" + } + }, + { + "text": "Quiet lady, teaching out of the book. However, she creates her own quizzes, so try to think out of box. My friends and I got B and are happy to pass the class. If need, attend her office hours for additional chatting.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f92a" + } + }, + { + "text": "She required reading of the book and a lot of practicing", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f92b" + } + }, + { + "text": "Class is not difficult, but requires some reading and practice at home. Lectures and assignments are based on McGraws handbook. Homework should be made online on McGraws Connect. Good grader.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f92c" + } + }, + { + "text": "She asks for a lot of work, but she helps, if you need. I had to work hard. She involves a lot of interaction during the lecture, which helps to understand concepts.", + "pos": 0.182, + "neu": 0.775, + "neg": 0.043, + "_id": { + "$oid": "6711d6cacd60fca157e5f92d" + } + }, + { + "text": "She doesn't seem to have knowledge outside the book. Ask her any complicated question and she will avoid it. Her teaching style has no consistency , and she is very vague about concepts and class announcements.", + "pos": 0.0, + "neu": 0.844, + "neg": 0.156, + "_id": { + "$oid": "6711d6cacd60fca157e5f92e" + } + }, + { + "text": "i dont where her teaching skills and since having her around in class she makes our world upside down, probably not the best idea to take her for 330 and 339 because she has no idea how to clarify and makes these classes more as boring than ever", + "pos": 0.0, + "neu": 0.847, + "neg": 0.153, + "_id": { + "$oid": "6711d6cacd60fca157e5f92f" + } + }, + { + "text": "Will not learn much from her, online quizzes every week (unlimited try) from readings, take her, attendance is a must!, not for learning, for pop quizzes and attendance points, very good grader!!!!!!!", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f930" + } + }, + { + "text": "just horrible as a sub cant teach for life and makes the class or specific topics confusing she doesnt care if you understood the stuff or not", + "pos": 0.0, + "neu": 0.749, + "neg": 0.251, + "_id": { + "$oid": "6711d6cacd60fca157e5f931" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cacd60fca157e5f933" + }, + "professor_name": "Marom Bikson", + "rating": 4.7, + "department": "Biomedical department", + "comments": [ + { + "text": "One of the best professors of the whole BME program. Homeworks were very fair, and he gives us a lot of tools to make sure that students succeed. I also had the privilege to take him for 205 and he taught us very well. One of the best BME professors you will come across. No exams, show you learned by building circuits.", + "pos": 0.276, + "neu": 0.696, + "neg": 0.028, + "_id": { + "$oid": "6711d6cacd60fca157e5f934" + } + }, + { + "text": "Gives good notes, grades are project based and a little stressful, but overall a very fun class!", + "pos": 0.308, + "neu": 0.605, + "neg": 0.087, + "_id": { + "$oid": "6711d6cacd60fca157e5f935" + } + }, + { + "text": "Liked this class, had to do group work, small homeworks that basically meant to search online. Had lab component as well which helped to understand the material.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f936" + } + }, + { + "text": "Nice guy. No tests just HW and projects. Helpful.", + "pos": 0.406, + "neu": 0.435, + "neg": 0.159, + "_id": { + "$oid": "6711d6cacd60fca157e5f937" + } + }, + { + "text": "I enjoyed this class so far. Class focused on basics on instruments. The grading is easy as long as you clarify what is asked. 310 first half is also tought by Bikson and go together.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f938" + } + }, + { + "text": "good proF. check HW before handing in", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f939" + } + }, + { + "text": "no textbook for this class, only attendance is required to pass this class, you can even cut one class day because it could get boring. Overall BME 10100 is great introduction to the course, and to the major. Professor Bikson, is a great professor, and he doesn't need to change his teaching style at all. He should stop saying umm in every sentence.", + "pos": 0.128, + "neu": 0.754, + "neg": 0.118, + "_id": { + "$oid": "6711d6cacd60fca157e5f93a" + } + }, + { + "text": "very helpful.", + "pos": 0.756, + "neu": 0.244, + "neg": 0.0, + "_id": { + "$oid": "6711d6cacd60fca157e5f93b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6cacd60fca157e5f93c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6cacd60fca157e5f93d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cbcd60fca157e5f93f" + }, + "professor_name": "Gail Tauber", + "rating": 3, + "department": "Art department", + "comments": [ + { + "text": "She discouraged students to learn in her class.If we made a mistake, she would shame us rather than help. Her lectures was super dragged out and she expected us to retain so much information without giving us any break in between.A tough grader but if you needed an extension or extra help, she would try to do her best.Regardless, IT WAS NOT FUN!!!!", + "pos": 0.103, + "neu": 0.699, + "neg": 0.198, + "_id": { + "$oid": "6711d6cbcd60fca157e5f940" + } + }, + { + "text": "Lectures are really long and slow because she absolutely needs as many students as possible to participate for a single slide. Heavily scrutinizes your papers for her bi-weekly quizzes. Feels like you did more work for this class than you had to. You'll pass if you know how to write decently well + good vocab + participate a lot.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f941" + } + }, + { + "text": "Gails inability to teach college students like the adults they are is astounding and outright rude. She interrupts and critiques students as if it is a middle school classroom. Makes the lectures so boring that you can even hear her start to check out. She gets upset when no student participates, without realizing its because of how bored they are.", + "pos": 0.071, + "neu": 0.687, + "neg": 0.241, + "_id": { + "$oid": "6711d6cbcd60fca157e5f942" + } + }, + { + "text": "Tauber is an pretty harsh critic when it comes ot using the proper vocaulary during class and in any of her weekly quizzes she gives. she makes it difficult to participate in class discussions because she constantly interrupts people and treats students like children instead of adults. she is also not a very approachable professor.", + "pos": 0.088, + "neu": 0.76, + "neg": 0.152, + "_id": { + "$oid": "6711d6cbcd60fca157e5f943" + } + }, + { + "text": "Okay teacher for basic History of Graphic Design. Lectures were a bit annoying on a Friday afternoon which is when she usually teaches. Easy required class if you do EXACTLY what she asks for.", + "pos": 0.125, + "neu": 0.805, + "neg": 0.07, + "_id": { + "$oid": "6711d6cbcd60fca157e5f944" + } + }, + { + "text": "Wonderful instructor-historian. If you want an A then write good papers and participate a little. If you're someone who enjoys modern art & design then this course is for you. If not, or you're an EDM-based student just looking to fulfill BFA criteria then you will struggle. Enjoy", + "pos": 0.285, + "neu": 0.677, + "neg": 0.038, + "_id": { + "$oid": "6711d6cbcd60fca157e5f945" + } + }, + { + "text": "She's very nice person but most people don't know about it because she seems to be cold. You need to focus on the subjects and be prepare in order to follow her syllabus then you will be fine. She will try to help you all the time and you just do your best. This is just an average course, not that hard. Good Luck!", + "pos": 0.243, + "neu": 0.718, + "neg": 0.039, + "_id": { + "$oid": "6711d6cbcd60fca157e5f946" + } + }, + { + "text": "if you want an A you got to a some interest in graphic/object design. if not drop this course because you have to be reading outside class hours... trust me bcus she gives out open-note tests (that means you can literally write your entire test at home and transfer it onto the test paper at school) participate a little too, she'll like that.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f947" + } + }, + { + "text": "Tauber is a very nice lady who takes her class very serious. If you are a slacker this class is not for you. She takes up all the class time talking about the slides, its very boring. Her papers are usually 5-8 pgs long.She's never absent and takes attendance serious.She is a sweet-heart so if you go to class, do your papers it's all good.No late p", + "pos": 0.043, + "neu": 0.898, + "neg": 0.059, + "_id": { + "$oid": "6711d6cbcd60fca157e5f948" + } + }, + { + "text": "SHE IS VERY VERY VERY TOUGH!! AND VERY VERY BORING!!! I DROP HAD TO THIS CLASS AS SOON AS I COULD!! FOR THOSE WHO HAVE HER..(yikes!)..GOOD LUCK! :(", + "pos": 0.083, + "neu": 0.514, + "neg": 0.403, + "_id": { + "$oid": "6711d6cbcd60fca157e5f949" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cbcd60fca157e5f94b" + }, + "professor_name": "Adam Eisenberg", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "Way too much going on for a writing-for-science class! He is nice, tries to keep it fun, but it is not worth the work - there is homework every class and a lab report, and a grant request, and a bunch more. I should have asked around for a more reasonable prof.", + "pos": 0.132, + "neu": 0.833, + "neg": 0.035, + "_id": { + "$oid": "6711d6cbcd60fca157e5f94c" + } + }, + { + "text": "He is a fair grader. There's journal to hand in every week on the reading you have, and 4 papers in total. There are trips you need to take outside of the class, but overall it was an enjoyable class.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f94d" + } + }, + { + "text": "This professor was really great. We had 4 papers due including the final. There are always readings assigned, which require reflection along with them( but they're real easy). The papers in the class are not so difficult either, the topics are pretty interesting and he really helps you if you as for it. Over a pretty gud teacher", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f94e" + } + }, + { + "text": "He is really good at teaching. Plus he always ready to go in the morning, which is good, if you need someone to wake you up,lol. And he's really into films; I haven't met an english teacher who was such a movie fan prior to Mr. Eisenberg. And his explanations are pretty clear.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f94f" + } + }, + { + "text": "He is very nice and his class is interesting.Just make sure you do the work and come on time to class.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f950" + } + }, + { + "text": "WOW! He is the hottest professor on campus! He is a fair grader and helps you out on your essays. You can go to him to check your essays out before giving them in! Its great. He in the end will give you an A if you get decent grades on the essays and show effort.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f951" + } + }, + { + "text": "Very good professor, willing to help students during his office hours, gives interesting readings, have to write 3 essays, journal entry every week, if you do all the work, you should get a really good grade.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f952" + } + }, + { + "text": "TAKE THIS PROF he is very easy going only 2 papers 6 pages must do all readings he gives you a quiz every class but they are super easy the only bad thing about the whole class is it was a bit dull but overall I enjoyed it.", + "pos": 0.238, + "neu": 0.636, + "neg": 0.126, + "_id": { + "$oid": "6711d6cbcd60fca157e5f953" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6cbcd60fca157e5f954" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cbcd60fca157e5f956" + }, + "professor_name": "Derrick Chung", + "rating": 3.5, + "department": "Mathematics department", + "comments": [ + { + "text": "HE IS OKAY. He is not too hard or too easy. but his exams are tricky. u have to read in between the lines to answer every one of the questions correctly. It might be helpful to study past finals. he always gets his questions from there", + "pos": 0.164, + "neu": 0.8, + "neg": 0.036, + "_id": { + "$oid": "6711d6cbcd60fca157e5f957" + } + }, + { + "text": "Good professor. Be careful with his exam. He sometimes put tricky question in there.", + "pos": 0.263, + "neu": 0.643, + "neg": 0.094, + "_id": { + "$oid": "6711d6cbcd60fca157e5f958" + } + }, + { + "text": "i thought he was very helpful. always had office hrs and its very important to attend classes if you plan not to read the book. he doesnt take attentdence however.homework is important because its good to pratice", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d6cbcd60fca157e5f959" + } + }, + { + "text": "Not recommended. He doesn't know what the hell is he talking about. Only does 1 example from the book and give the rest of exercise as homework and asking students to \"wrap heads around\" the concept. VERY BAD Professor. NOT RECOMMENDED.", + "pos": 0.0, + "neu": 0.731, + "neg": 0.269, + "_id": { + "$oid": "6711d6cbcd60fca157e5f95a" + } + }, + { + "text": "Very cool, laid back professor. Tests are pretty fair. Might throw a curve ball here and there but it's nothing hard. If you're having any kind of trouble, just talk to him and he'll help. Very fair with grading as well. Basically, Calculus is a discipline. You do your hw and stay on top of things and it should be a breeze =]", + "pos": 0.27, + "neu": 0.679, + "neg": 0.051, + "_id": { + "$oid": "6711d6cbcd60fca157e5f95b" + } + }, + { + "text": "I loved him! He is cute in a geeky way. He is great, although he does tend to confuse his students a bit. But I gave him a break, it was his first time teaching. He is so funny, because he tends to be so lazy. If you have a question, you would be lucky if he explained the problem throughly. However, I do wish I had him again! Easy A+ for me...lol", + "pos": 0.247, + "neu": 0.643, + "neg": 0.111, + "_id": { + "$oid": "6711d6cbcd60fca157e5f95c" + } + }, + { + "text": "prof. chung confuses lessons. the work on his tests/quizzes are a lot harder than the notes he gives in class. he has a problem of only finishing 1/2 the problem when you ask for help as if u know how 2 do it (if you knew, you wouldnt ask).makes plenty of mistakes while teaching. he knows his stuff, but has trouble explaining it", + "pos": 0.027, + "neu": 0.82, + "neg": 0.153, + "_id": { + "$oid": "6711d6cbcd60fca157e5f95d" + } + }, + { + "text": "This professor is pretty cool. He basically explains everything there is you need to know. Sometimes his explanations are bit confusing but he goes out of his way to make it all sink in, alot better than the Textbooks explanations. Don't be absent since you miss alot of stuff. Quite easy going. I think this is first year at City college.", + "pos": 0.169, + "neu": 0.783, + "neg": 0.048, + "_id": { + "$oid": "6711d6cbcd60fca157e5f95e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6cbcd60fca157e5f95f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cccd60fca157e5f961" + }, + "professor_name": "Laurel Kallen", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "SOft spoken lady, understanding, helpful and easy. it is easy if you do the reading and participate.Show you understand and care for your grade. It'll do you wonders.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f962" + } + }, + { + "text": "Had her twice. She really cares about her students and their work. Easy to talk to. Doesn't give a lot to do, so as long as you come to class, PARTICIPATE, and do homework, you will get an A.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f963" + } + }, + { + "text": "She's really nice and helpful, seems to really care about her students. She gets behind on the syllabus, but it's not a big deal. She's definitely the first professor at CCNY I've had that I feel cares about me and puts thought into her critiques.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f964" + } + }, + { + "text": "Definitely a professor worth taking. classes can drag sometimes but she is helpful and extremely nice. Do the reading, put effort in essays, and PARTICIPATE in class. with these three things, you are bound to get an A.", + "pos": 0.244, + "neu": 0.724, + "neg": 0.032, + "_id": { + "$oid": "6711d6cccd60fca157e5f965" + } + }, + { + "text": "very softspoken...sweet tries to make sure your understanding ..don't have to be a genius to pass...just pay attention and you'll be fine", + "pos": 0.167, + "neu": 0.776, + "neg": 0.057, + "_id": { + "$oid": "6711d6cccd60fca157e5f966" + } + }, + { + "text": "easy!...do her assignments and come to class...her work isnt hard at allll...shes really nice", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f967" + } + }, + { + "text": "She was teaching the writing part. Very helpful, soft spoken lady. Don't mistake this as a weakness!!! Fair amount of writing assignments. Very helpful. Take her", + "pos": 0.324, + "neu": 0.597, + "neg": 0.08, + "_id": { + "$oid": "6711d6cccd60fca157e5f968" + } + }, + { + "text": "Very nice. Doable assignments. Considerate but not to be taken advantage of.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f969" + } + }, + { + "text": "Very Nice professor. Not too hard. Doable assignments.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f96a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cccd60fca157e5f96c" + }, + "professor_name": "Arya Zahedi", + "rating": 4.6, + "department": "Political Science department", + "comments": [ + { + "text": "Absolutely amazing. Straight to the point. Intelligent.", + "pos": 0.699, + "neu": 0.301, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f96d" + } + }, + { + "text": "Zahedi is great. His political views are radical and often come out in his lectures. This class was not hard at all. However, attendance is a big thing and he HATES for students to show up late as well as disruptions. It shouldn't be difficult to get an A", + "pos": 0.164, + "neu": 0.733, + "neg": 0.103, + "_id": { + "$oid": "6711d6cccd60fca157e5f96e" + } + }, + { + "text": "I loved this professor even though I hate philosophy, he made political philosophy better than what I expected. if you have the option, you should totally take him!", + "pos": 0.198, + "neu": 0.698, + "neg": 0.103, + "_id": { + "$oid": "6711d6cccd60fca157e5f96f" + } + }, + { + "text": "This is the easiest liberal arts class in the City College and professor Zahedi made it easier. You basically just have to do three things in the whole semester: Go to the class because attendance is counted, midterm paper, final paper. That's it and you should not get anything below B+. There is no exam in this class", + "pos": 0.089, + "neu": 0.876, + "neg": 0.035, + "_id": { + "$oid": "6711d6cccd60fca157e5f970" + } + }, + { + "text": "Great easy going professor", + "pos": 0.778, + "neu": 0.222, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f971" + } + }, + { + "text": "Very straight forward, no book readings on blackboard. Class is very boring, nap zone ! Easy class", + "pos": 0.23, + "neu": 0.555, + "neg": 0.216, + "_id": { + "$oid": "6711d6cccd60fca157e5f972" + } + }, + { + "text": "He's a cool young professor. Even though the readings, which he posts on Blackboard, are BORING, he still tries to make everything interesting. I'd recommend him to the people who are especially interested in ancient philosophers like Plato and Aristotle.", + "pos": 0.26, + "neu": 0.68, + "neg": 0.061, + "_id": { + "$oid": "6711d6cccd60fca157e5f973" + } + }, + { + "text": "Great guy, only two papers for the semester. provides all the readings on black board so you dont have to buy the book. hes funny and cool and a pretty easy grader. just the readings are alittle boring but he puts life into it and his class is great", + "pos": 0.266, + "neu": 0.706, + "neg": 0.028, + "_id": { + "$oid": "6711d6cccd60fca157e5f974" + } + }, + { + "text": "This guy is a great professor, clear, straightforward, and he gives us most of the course material free on Blackboard.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f975" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cccd60fca157e5f977" + }, + "professor_name": "Lily Hoffman", + "rating": 2.9, + "department": "Sociology department", + "comments": [ + { + "text": "Commented on my appearance twice in class, once about high boots I was wearing, and another about a bruise I had gotten in a bike accident. Should not be teaching. A horrible example.", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d6cccd60fca157e5f978" + } + }, + { + "text": "She's a great professor, you can tell she really cares about the topics she's teaching. There was reading for every class but depending on the class it might just be a couple news articles so they're not always long. There were 3 tests that were not hard since she will either really hint at the topics on them or gives you the questions beforehand.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f979" + } + }, + { + "text": "Her class is really simple. You just have to do the reading, which is all online, & attend class for lectures. She gives 3 exams, which are all easy because she reiterates the answers all semester long, & one short paper (about your personal experiences in your own neighborhood)! She's kind & considerate, just don't take her for granted.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d6cccd60fca157e5f97a" + } + }, + { + "text": "All i can say is that yes she is passionate, but she is also hard. She doesn't like when people are absent... read the book stay focus and you will be fine. She is not one of those prof.. that say one thing then do the other. She isn't a hard grader. do the work and you will be fine.", + "pos": 0.147, + "neu": 0.789, + "neg": 0.064, + "_id": { + "$oid": "6711d6cccd60fca157e5f97b" + } + }, + { + "text": "She is polite, passionate, trying to get students interested in the field. Simple research paper, few quizzes, and mid term&final with prepared reading questions. She wants to be organized, but goes off track talking about one topic to the other. not so hard not so easy course.", + "pos": 0.141, + "neu": 0.794, + "neg": 0.065, + "_id": { + "$oid": "6711d6cccd60fca157e5f97c" + } + }, + { + "text": "Professor is VERY INTERESTING and open to a discussion if your serious about Sociology and the basics and you have comments to make or your own ideas good class to express it in. OH SHE LOVES TO HEAR WHATTHE STUDENTS HAVE TO SAY SO ITS A OPEN DISCUSSION CLASS", + "pos": 0.203, + "neu": 0.775, + "neg": 0.022, + "_id": { + "$oid": "6711d6cccd60fca157e5f97d" + } + }, + { + "text": "Very smart woman and good teacher. Good intro to Marx-Weber-Durkheim if you do the readings and try to understand them. If you are interested in social science and are a serious student, her Social Theory class is excellent.", + "pos": 0.313, + "neu": 0.66, + "neg": 0.027, + "_id": { + "$oid": "6711d6cccd60fca157e5f97e" + } + }, + { + "text": "TERRIBLE PROFESSOR!! The worst I ever had and I've attended more than one coll. in my life. She has no idea what she wants. completely vague. somewhat loopy. cannot follow any kind of structure. does not believe anything outside of her understanding can be valid. UNREASONABLE.", + "pos": 0.0, + "neu": 0.772, + "neg": 0.228, + "_id": { + "$oid": "6711d6cccd60fca157e5f97f" + } + }, + { + "text": "The class structure was horrible. If professors do not want to teach they should not leave it up to the students. I did not learn a thing. It was a waste. She was very unclear on what she wants for the exam. The best class was when she had a substitute, I learned more in that one day than I did the entire semester. How well published you are d", + "pos": 0.093, + "neu": 0.785, + "neg": 0.122, + "_id": { + "$oid": "6711d6cccd60fca157e5f980" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cdcd60fca157e5f982" + }, + "professor_name": "Miguel Vazquez", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "I had never taken a Spanish course before this class but was able to pick it up relatively easily due to Dr. Vazquez's compassion and helpfulness. I never wanted to miss class as he made it so entertaining, helpful, and worthwhile. Participating in class is the best way to ensure success on the various tests throughout the course.", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f983" + } + }, + { + "text": "Nice guy. Not a good teacher. Didn't teach in a way that made information stick. Studied entirely from homework and practice. Tests were hard, but not impossible. Dense course. Good curves on tests, but people generally didn't do well on them.", + "pos": 0.123, + "neu": 0.768, + "neg": 0.109, + "_id": { + "$oid": "6711d6cdcd60fca157e5f984" + } + }, + { + "text": "He's very nice, lecture is only once a week, hw on cengage and 3 tests, thats all. Definitely would take him again.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f985" + } + }, + { + "text": "Many students I know complained about him, but that's not true. tbh if you actually put in effort and try your best to understand the material, you'll be able to pass. The class is hard, not the prof. He's understanding and is always open to any questions in class/by email. I was lucky to have him give online lectures, other profs gave it async.", + "pos": 0.127, + "neu": 0.787, + "neg": 0.086, + "_id": { + "$oid": "6711d6cdcd60fca157e5f986" + } + }, + { + "text": "He is a really nice Professor! Only a midterm, final, and homework assignments. The homework assignments help with the midterm and final. Exams are multiple choice based.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f987" + } + }, + { + "text": "I took this course after work to supplement my econ degree from another university. I think city college students are lazy on the whole, and this guy did his best with the limited resources. The class time was cut by the department but he really tried to relay the material. Too bad the students didn't care.", + "pos": 0.04, + "neu": 0.763, + "neg": 0.197, + "_id": { + "$oid": "6711d6cdcd60fca157e5f988" + } + }, + { + "text": "He only graded us by midterm and final. Midterm was all multiple choice, easy if you studied what he said to. Final was multiple choice and one problem. It was not the format he said it would be so that made it hard but not impossible. Just study each chapter and understand the 2 assignments (which arent graded, just checked) and you'll be fine.", + "pos": 0.062, + "neu": 0.893, + "neg": 0.045, + "_id": { + "$oid": "6711d6cdcd60fca157e5f989" + } + }, + { + "text": "He is a great person but his lectures are detail heavy. \"You know what I'm saying\". He goes by the material so fast but will still take the time to answer your questions. If this class wasn't so late at night, maybe it would be easier to retain some information, but most of your learning comes from the textbook.", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f98a" + } + }, + { + "text": "Nicest guy on CCNY. You got to work for the A tho! His lectures go so fast you got to ask him a lot to slow it down. Test he curves big so not to worry. You're better off reading the textbook than learning from him.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f98b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cdcd60fca157e5f98d" + }, + "professor_name": "Anthony Delgado", + "rating": 4.8, + "department": "Mathematics department", + "comments": [ + { + "text": "He is a great professor who would take his time to help those in need and help you step-by-step with any questions you may have. Then when it comes to exams, he would give lots of preparation for any midterm and exam coming up. Of course, as a student, you must do your part and study while having such a great teacher by your side that will help.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f98e" + } + }, + { + "text": "he was extremely chill. if you want to actually learn math I don't really suggest his class because its not very challenging or intensive. however if you have any questions act problems he always helps you out.", + "pos": 0.095, + "neu": 0.8, + "neg": 0.106, + "_id": { + "$oid": "6711d6cdcd60fca157e5f98f" + } + }, + { + "text": "Very passionate and caring teacher, he really helped improve my math skills and was always available whenever his students needed him. If you try your best he won't let you down.", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f990" + } + }, + { + "text": "Best professor ever. He really cares about his students and stay after class to explain if you don't understand any materials.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f991" + } + }, + { + "text": "Honestly, this Prof is a gem. He cares about his students and really puts in work. Doesn't give homework, but rather counts it as extra credit, which is great especially if you're overwhelmed with other work. Was often available for office hours and tried his best to make sure you understood the material.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f992" + } + }, + { + "text": "He was a great prof. Go to class take notes and you're good. If you're good at math this class will be a breeze. If you're not good at math just pay attention and show up you'll do fine as well. There was no textbook to buy, he gave us a course packet. Homework was optional and counts as extra credit if you do it. Take him!", + "pos": 0.207, + "neu": 0.719, + "neg": 0.074, + "_id": { + "$oid": "6711d6cdcd60fca157e5f993" + } + }, + { + "text": "Very nice Profhe is so so so nice I will choose his class again.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d6cdcd60fca157e5f994" + } + }, + { + "text": "Nice ProfHe is helpfulyou will like his math class. Almost no homework! As long as you listen carefully in his class, you will understand that this is not difficult lesson. If you have a problem that you do not understand, you can solve it as your hw and give to himhe will help you to check itHe is very nice", + "pos": 0.232, + "neu": 0.704, + "neg": 0.064, + "_id": { + "$oid": "6711d6cdcd60fca157e5f995" + } + }, + { + "text": "He is easy-going, but because of that, you must have the self-discipline to study on your own time. Homework is optional and consists of problems you find on your own. It counts as extra credit and can only boost your grade. Attend classit will boost your grade and he makes an effort to remember you by name. He also drops your lowest exam grade.", + "pos": 0.137, + "neu": 0.772, + "neg": 0.091, + "_id": { + "$oid": "6711d6cdcd60fca157e5f996" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cecd60fca157e5f998" + }, + "professor_name": "Johanna Sherrier", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "One of the best educators and classes I have taken at CCNY. Her class is like a package-real life class without hard time. Flexible, fun, helpful, friendly, one on one help, available to reach, good grader. Most importantly, she is a nice human being. I am so proud of professor Johanna!!", + "pos": 0.461, + "neu": 0.516, + "neg": 0.023, + "_id": { + "$oid": "6711d6cecd60fca157e5f999" + } + }, + { + "text": "Amazing professor! She will prepare you consistently for the assignments. Real life class, no hard time, flexible, unlimited extra credit opportunities, one on one help, friendly environment, reachable. Above all, she is a very nice human being. I am so proud of professor JOHANNA!", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f99a" + } + }, + { + "text": "expect to write but she's amazing! explains everything so well amazing professor", + "pos": 0.621, + "neu": 0.379, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f99b" + } + }, + { + "text": "Great Professor! Her grading criteria are clear and she lets you know what she expects. Very helpful as well, is willing to help students during office hours and takes the time to make sure the student received the help they need. She really cares about her students.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f99c" + } + }, + { + "text": "Awesome Prof", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f99d" + } + }, + { + "text": "Johanna was an amazing teacher. We had 6 assisgnments, 6 essays. That was all. THe research paper at the end was honestly the most difficult task, but I was able to get an A still. She always gives feedback on your essays and the draft reviews are amazing. You apply the edits she gave on blackboard, she will gaurentee you a good grade. Would take a", + "pos": 0.176, + "neu": 0.799, + "neg": 0.025, + "_id": { + "$oid": "6711d6cecd60fca157e5f99e" + } + }, + { + "text": "Shes ehh. Alright looking but nothing else going for her. Doesnt seem to know much about what shes teaching and makes students feel like they're good at writing when they could really use way more help. Wrote one bad paper on purpose to see what she'd say and she gave me stupid remarks and said it was \"great\". Wouldnt take again!", + "pos": 0.226, + "neu": 0.659, + "neg": 0.114, + "_id": { + "$oid": "6711d6cecd60fca157e5f99f" + } + }, + { + "text": "Very good professor! Very clear, very helpful, very fair! Lectures are sometimes boring but sometimes can get interesting too. She's also really attractive. Would recommend!", + "pos": 0.524, + "neu": 0.434, + "neg": 0.042, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a0" + } + }, + { + "text": "She is amazing, clear on what to expect on essays. You should totally take her", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cecd60fca157e5f9a3" + }, + "professor_name": "Jinfeng Wu", + "rating": 2.2, + "department": "Mathematics department", + "comments": [ + { + "text": "This professor is very inconsiderate towards his students.", + "pos": 0.0, + "neu": 0.687, + "neg": 0.313, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a4" + } + }, + { + "text": "She is a very hard teacher to understand at time and occasionally teaches something incorrect and takes a student to correct her for her to realize. She moves very fast and if you miss even a day, GOOD LUCK. She is very kind, but is very complicated in her teaching style.", + "pos": 0.126, + "neu": 0.826, + "neg": 0.048, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a5" + } + }, + { + "text": "Professor Wu is very nice, however her teaching wasn't the greatest. Often times she'll discuss a topic, make a mistake and move on, rather than elaborate on said topic. Often times you'll find yourself studying on your own, one thing to note is that some questions on a test may reappear on the next test. She also includes extra credit on her tests", + "pos": 0.081, + "neu": 0.837, + "neg": 0.082, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a6" + } + }, + { + "text": "nice but hard", + "pos": 0.422, + "neu": 0.222, + "neg": 0.356, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a7" + } + }, + { + "text": "Her exams are very hard and it's hard to understand her teaching.", + "pos": 0.0, + "neu": 0.764, + "neg": 0.236, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a8" + } + }, + { + "text": "Hard to follow during class and exams were very difficult with only a few questions.", + "pos": 0.0, + "neu": 0.756, + "neg": 0.244, + "_id": { + "$oid": "6711d6cecd60fca157e5f9a9" + } + }, + { + "text": "She goes through 10 different topics for class, never stops to answer questions and when you do ask her a question she asks another student to explain for her. Her exams are very short, but beware because her questions are really hard and have that one long question you were desperately hoping wouldn't be on the exam. Good luck if you take her.", + "pos": 0.17, + "neu": 0.758, + "neg": 0.072, + "_id": { + "$oid": "6711d6cecd60fca157e5f9aa" + } + }, + { + "text": "I took her for math190 and she was a very good prof in my opinion. She explained material thoroughly. Her quizzes are straight forward, no trick questions. Exams are easy as well. Do all the homework, don't show up late for quizzes or exams, and write down everything she writes on the board. If you do this, you are guaranteed an A.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f9ab" + } + }, + { + "text": "I took her calc class during the SUMMER after precalc in the spring, you may need to study a bit , her tests are a clear representation of the material no surprises, she spends a day going over the test, gives extra credit, all hw due last day, she tries to be as clear as she possibly can : teachng material, resources, specific dates.", + "pos": 0.112, + "neu": 0.864, + "neg": 0.024, + "_id": { + "$oid": "6711d6cecd60fca157e5f9ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cecd60fca157e5f9ae" + }, + "professor_name": "Tobah Aukland-Peck", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "I never used to be big on art until I came across Professor Peck. While only half the semester was spent in the classroom due to quarantine, her lectures remained engaging and you could sense how passionate she was about every topic. She made me love art, and even though you'll have to work for your grade, it's worth how much you'll learn from her.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f9af" + } + }, + { + "text": "This professor is one of best! Lectures arent boring because she engages with the class and really into European art. The class consisted of 4 short papers, 600 words. 2 quizzes, research paper and a final. It sounds like a lot, but it really isnt. She gives extra credit if you miss some work. Take her if you can.", + "pos": 0.146, + "neu": 0.824, + "neg": 0.03, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b0" + } + }, + { + "text": "This is an intro course, which I don't think she gets. There were way too many papers, quizzes and test in this class. But if you really pay attention, have the time, and study then you should be fine.", + "pos": 0.053, + "neu": 0.897, + "neg": 0.049, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b1" + } + }, + { + "text": "Best prof in this school. Prof Aukland-Peck is passionate about art and you can see it when sitting in her class. She always smiles and helps you out with any problem. I wasn't interested in art until I took her class. All you have to do is listen and you'll get an A. I didn't read the textbook at all but took good notes and got an A. Def recommend", + "pos": 0.194, + "neu": 0.763, + "neg": 0.043, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b2" + } + }, + { + "text": "Great teacher, shes truly passionate about art history. She is extremely eloquent and explains art history so well that you dont even need to read the textbook in order to do well in her class. She is brilliant in her field and as long as you put in solid effort into your work and staying abreast of the material you will get a not so difficult A+", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b3" + } + }, + { + "text": "Nice, sweet, beautiful, always smiling, loves her art history. Goes in depth for an intro class, gives students so much space to discuss, makes lectures interesting. Responsive and gives good feedback on papers, very reasonable with deadlines and spreading the workload throughout semester. Must take!", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b4" + } + }, + { + "text": "Tobah is a great Professor. Two papers, a couple of quizzes and a final. I feel it requires a lot of work for an into class but the class is wonderful.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b5" + } + }, + { + "text": "For Art 100, we had two quizzes, she gives you a powerpoint with 20 images u need to memorize, a final research paper, and an in class final. Maybe she doesnt understand that not all of us are art majors cuz she really wants you to put in a lot of time and effort in learning art history and going to museums.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b6" + } + }, + { + "text": "she expects ALOT for an intro art class and is a super tough grader. shes very nice though but could be a little easier.", + "pos": 0.267, + "neu": 0.689, + "neg": 0.043, + "_id": { + "$oid": "6711d6cecd60fca157e5f9b7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cfcd60fca157e5f9b9" + }, + "professor_name": "Adriana Espinosa", + "rating": 3.3, + "department": "Economics department", + "comments": [ + { + "text": "She does not like students or teaching! Very mean.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9ba" + } + }, + { + "text": "She's nice, may rush through material a bit but wants you too understand. Funny and lets you leave early if there is no more material. She's very cooperative and she wants students to do well. may seem scary at first but dont be afraid to talk to her she is willing to help", + "pos": 0.18, + "neu": 0.693, + "neg": 0.127, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9bb" + } + }, + { + "text": "great interesting classes, knows how to break down information to make it easy for the student to understand. she plays games in the class , student presentations, everyone gets involved, she challenges you with journal articles and exams. fun class, always around during office hours & helpful. take her4 public finance!!PSM program. NO lateness!", + "pos": 0.29, + "neu": 0.668, + "neg": 0.043, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9bc" + } + }, + { + "text": "She is extremely condescending, rude, and unhelpful. It's clear she doesn't enjoy teaching. She rushes through the material and gets annoyed if you don't understand. She has a clear attitude problem.", + "pos": 0.126, + "neu": 0.604, + "neg": 0.271, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9bd" + } + }, + { + "text": "Amazing professor! The material is difficult but her lectures guide you through them. You have to attend the lectures to get a good grade in the class and learn the material.", + "pos": 0.18, + "neu": 0.772, + "neg": 0.048, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9be" + } + }, + { + "text": "Hated stats before I took this class. Now I love it!", + "pos": 0.241, + "neu": 0.517, + "neg": 0.241, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9bf" + } + }, + { + "text": "Professor Espinosa teaches as though she is contemptuous of the fact that she has to do so. Additionally, she was an extremely unhelpful teacher. She speeds through material and answers questions with a grit through her teeth as though she'd rather get a root canal. Probably the worst teacher I've had, and the least approachable.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c0" + } + }, + { + "text": "Professor Espinosa is one of the greatest professors I had at City College. Even though they are tons of material to study, she goes through everything step by step in order for the class to have a good understanding of it. If you want an easy A do not take her, but if you want knowledge and understanding of Statistics, then this is the prof to tak", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c1" + } + }, + { + "text": "No Comments yet.", + "pos": 0.0, + "neu": 0.476, + "neg": 0.524, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c4" + }, + "professor_name": "David Jeruzalmi", + "rating": 2.6, + "department": "Chemistry department", + "comments": [ + { + "text": "The most organized class I've ever taken to date. He puts a lot of effort into producing content for his lectures as well as supplemental info and activities to aid learning. There's a lot of reading, summary writing, and presentation prep in what is almost an unrealistic timeframe, but he's accommodating. You can tell he actually likes to teach.", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c5" + } + }, + { + "text": "Awful, in a word.", + "pos": 0.0, + "neu": 0.5, + "neg": 0.5, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c6" + } + }, + { + "text": "Not a good teacher.", + "pos": 0.0, + "neu": 0.555, + "neg": 0.445, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c7" + } + }, + { + "text": "Dr. Jeruzalmi is a superb choice for \"Journey to the Cell\". Emphasis is placed on understanding experimental design, bioinformatics software, and basic principles learned in lecture. With a relatively small class size, exams are difficult, but fair. The same person is posting hateful reviews for Dr. Jeruzalmi review after review!!!", + "pos": 0.094, + "neu": 0.787, + "neg": 0.119, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c8" + } + }, + { + "text": "He wasnt that bad. I have to admit he does not grasp clearly the material at hand + well short on teaching ability. Be prepared to do a lot of work outside, you must band together with your fellow students if you are going to pass. I had tutors, class study groups and still only squeaked out a C.", + "pos": 0.207, + "neu": 0.76, + "neg": 0.033, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9c9" + } + }, + { + "text": "Dr. Jeruzalmi is one the best professors you will have. He is perfect! Super nice guy, smart, fair exams and problems set, and an excellent lecturer. People complain about his exams and they can be tricky but you have to study.", + "pos": 0.301, + "neu": 0.604, + "neg": 0.095, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9ca" + } + }, + { + "text": "I think he's trying.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9cb" + } + }, + { + "text": "Nope", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9cc" + } + }, + { + "text": "Thinks he knows everything but useless.", + "pos": 0.0, + "neu": 0.575, + "neg": 0.425, + "_id": { + "$oid": "6711d6cfcd60fca157e5f9cd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d0cd60fca157e5f9cf" + }, + "professor_name": "Rebeca Burgos", + "rating": 5, + "department": "Spanish department", + "comments": [ + { + "text": "Professor Burgos did an amazing job to keep all of us paying attention. She always has a positive attitude and cares if her students understand or not. You don't have to be fluent in Spanish to do well. If she see's that you are trying it will go a long way!", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d0" + } + }, + { + "text": "She is AMAZING! The sweetest professor. I am terrible at Spanish but she made it fun and made me want to learn more. She offers a lot of extra credit and is always available. If you have to take a language I highly recommend her. Her tests were pretty easy and she does review sessions. Lots of homework but she lets us do it in class on Fridays!", + "pos": 0.283, + "neu": 0.693, + "neg": 0.024, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d1" + } + }, + { + "text": "I loved her as a teacher. She made sure you understood everything. She's very lenient, she gives extra credit a lot. There are a few tests, but she posts what the test would look like on blackboard. There's an online textbook on Pearson where you complete a lot of homework assignments based on the deadline. I recommend her for Spanish 12300.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d2" + } + }, + { + "text": "I just finished taking her class and honestly it was one of the best class I took at ccny. I didnt intend on taking a language class at first but I'm glad I took this class. Professor Rebeca is the sweetest teacher you could possibly have and she is a wonderful Spanish professor. I would definitely take her class again.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d3" + } + }, + { + "text": "She is awesome! I tend to be very bad at writing essays/compositions but she made it fun. She's clear about what is expected and answers student questions and concerns. She provides time to see what ideas everyone has and then time to show part of the work in advance in order to tell us whether we're going in the right direction or not.", + "pos": 0.148, + "neu": 0.818, + "neg": 0.033, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d4" + } + }, + { + "text": "She's very nice and just wants everyone to try their best. Very lenient grader and takes time to explain material. her reviews for exams are identical to her tests which is helpful. she also encourages alot of partipcation. I would take her again.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d5" + } + }, + { + "text": "Mi profesora favorita! Prof. Rebeca is super nice, and is genuinely dedicated to making sure that students understand the material. There are only 3 exams, and a few homework assignments. She makes the class very interesting. Above all else, I actually learned A LOT from taking her class. Please, if you have the chance, take her. She's amazing!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d6" + } + }, + { + "text": "One of the sweetest professors I have ever met. She is always willing to work with her students and she incorporates games into the class whenever she gets the chance. This professor wants everyone to pass and makes sure everyone understands the material being taught. Just make sure you do the assigned homework and the class will go by smoothly.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d7" + } + }, + { + "text": "One of the best professors that I have taken so far at CCNY. This was probably the only time that I had a Spanish class and learned from it. She herself is Hispanic (thank god) and gives other perspectives in which certain phrases are used which can be helpful. We had 3 tests which were are clear and previously reviewed . Love her!", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9d8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d0cd60fca157e5f9da" + }, + "professor_name": "Carmen Garcia", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Took her queer psych class. I like her and the class. I wouldn't say it's a psych class though, not really science based, more a humanities class to understand queer communities and their histories. Still great to know, but def not psych. Lots of opinions given and opinions and experiences asked to be shared. Too easy and geared to 19yr olds.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9db" + } + }, + { + "text": "Carmen is AMAZING. Her lectures are very interactive and easy to digest. She is also very flexible and open as a professor for how the students would benefit from her class. For a queer psychology class, she also brings in a lot of representation as an LGBTQ person. She is also very passionate and brings energy to the lectures. TAKE HER FOR PSYCH!!", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9dc" + } + }, + { + "text": "A great professor to have. Took her class over the summer and she made it very easy to understand the assignments she would give. Always answered her emails if confused about anything and will give good feedback. She wants the best out of her students.", + "pos": 0.254, + "neu": 0.706, + "neg": 0.041, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9dd" + } + }, + { + "text": "Really understandable, the workload is not bad at all, just short responses, some tests in between, and a final paper basically summarizing a chapter and study. She's extremely funny and nice :)", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9de" + } + }, + { + "text": "Super easy going and understandable. Very good at making class a comfortable space and very agreeable :)", + "pos": 0.641, + "neu": 0.359, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9df" + } + }, + { + "text": "Professor Garcia is so helpful and actually interacts with you and makes sure you understand what you're learning. She is very relatable and easy going and understanding", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e0" + } + }, + { + "text": "Professor Garcia made an 8am class worth it. She balances her lectures by facilitating class discussions and opening the floor to anyone who wants to share their thoughts about the chapter/topic or personal experiences. The assignments and tests were very straightforward and she's very flexible which makes up for the delay in grading. She's great!!", + "pos": 0.173, + "neu": 0.79, + "neg": 0.036, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e1" + } + }, + { + "text": "such an amazing professor! Professor Garcia is extremely kind, caring, and genuinely wants her students to succeed. One of the best courses I have ever taken at CCNY. Highly recommend!", + "pos": 0.475, + "neu": 0.525, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e2" + } + }, + { + "text": "Love her would definitely wanna go to one of her lectures again. Keep in mind I took an early morning course 8am and I was running to class because I love it so much.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e3" + } + }, + { + "text": "I took her online asynch in the Jan term. Great lectures! She allows open notes for exams. Take very thorough lecture notes and you'll be fine. If she emphasizes something not written in the power point it means it will be on the exam. Only complaint: she takes forever to grade papers so assignments are due before you have any notes for improvement", + "pos": 0.131, + "neu": 0.838, + "neg": 0.031, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e6" + }, + "professor_name": "William McNichols", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "It's a shame he's leaving CCNY. Great professor and super knowledgeable! There are no nice hints I can give besides using your common sense. For quizzes, study using the review sheet and go over your notes. For assignments, reach out to the professor or other students (which I think he's fine with).", + "pos": 0.179, + "neu": 0.735, + "neg": 0.087, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e7" + } + }, + { + "text": "He is an amazing professor! The class was enjoyable and inspirational. You can definitely learn a lot from him. :)", + "pos": 0.516, + "neu": 0.484, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e8" + } + }, + { + "text": "Nice professor", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9e9" + } + }, + { + "text": "Professor Hunter truly cares about the success of his students. His lectures are fun. He welcomes questions and takes time to explain them.", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9ea" + } + }, + { + "text": "He is nice, willing to help students. Very well-constructed lectures.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9eb" + } + }, + { + "text": "When I think of excellent standards in teaching, I think of classes like Professor Hunter's. They feel dense, refreshingly modern, and on the cutting edge with plentiful insight into the relevant job fields in question (AI). His quiz design actually accounts for our tech-centric world and his assignment tutorials are an excellent guide. Amazing.", + "pos": 0.213, + "neu": 0.763, + "neg": 0.023, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9ec" + } + }, + { + "text": "He is a great professor! He is very enthusiastic about the subject which makes it so much easier to focus on the class and actually learn something. Would take him again and again!", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9ed" + } + }, + { + "text": "Very understanding of the fact that students take multiple classes. VERY interesting subject and is good at explaining complicated topics.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9ee" + } + }, + { + "text": "The class was fun, and we learned a lot about AI. He is a new instructor but cares about the students. I would totally recommend taking his class.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d6d0cd60fca157e5f9ef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f1" + }, + "professor_name": "Jane Maisel", + "rating": 3.5, + "department": "Education department", + "comments": [ + { + "text": "Prof. Maisel is a kind-hearted professor, but has poor time management (class went over everytime), constantly changes the syllabus, has unclear assignment instructions, adds multiple assignments last minute, and makes you do so many papers that could have been combined into one or two large assignments. We also got no breaks!!", + "pos": 0.0, + "neu": 0.827, + "neg": 0.173, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f2" + } + }, + { + "text": "I had a very good experience with this professor. She was very caring and understanding.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f3" + } + }, + { + "text": "She is disorganized and does not explain well her assignments and expectations. She will give you good feedback on your work. You have to write a journal and do reading notes every week in addition to extra assignments! If you organize yourself and participate you'll do fine! ... Lastly, she tends to interrupt during presentation...", + "pos": 0.076, + "neu": 0.81, + "neg": 0.113, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f4" + } + }, + { + "text": "In listening to her lecture, I thought that she was really a master of ELA!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f5" + } + }, + { + "text": "The professor gave a lot of readings, but these readings are very helpful. Her personalty is great. Come to class, you will be glad", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f6" + } + }, + { + "text": "She is a bit unorganized and sometimes unclear. On the other side, if you ask her for help and submit a paper for check, then you will receive pretty good and constructive feedback. Overall, not a bad prof. easy grader.", + "pos": 0.288, + "neu": 0.673, + "neg": 0.04, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f7" + } + }, + { + "text": "The professor has a great personality. The direction for the assignments were a bit unclear. But, she does give you a lot of feed back on your work. The class was interactive and fun. Do the work and you will do well.", + "pos": 0.196, + "neu": 0.773, + "neg": 0.031, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f8" + } + }, + { + "text": "Materials are not relevant to the course. The readings are too broad and gave too many information on education. She is an easy grader. Come to class and participate in all sessions, and then you'll get an A.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9f9" + } + }, + { + "text": "All over the place! Assignments she gave were very unclear. Ended up doing a lot of extra work because was unsure what was actually expected. She spent almost a whole class period trying to explain what she actually wanted for a paper. The title of the class was \"Teaching ESOL\", but we were never given any instructions on how to do just that.", + "pos": 0.0, + "neu": 0.947, + "neg": 0.053, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d1cd60fca157e5f9fc" + }, + "professor_name": "Nancy Stern", + "rating": 3.2, + "department": "Education department", + "comments": [ + { + "text": "This course was one of the two best courses I have ever taken. The research I did and the conversations it sparked allowed me to gain expertise on the topic at such a deep level that I felt ready to teach it immediately in the classroom. I appreciated the guidance, flexibility, and freedom I was given. Truly empowering!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9fd" + } + }, + { + "text": "A very poorly organized class where the students do most of the teaching and most of it is mostly irrelevant to what is supposed to be taught/discussed. I was penalized for unknown reasons. Has a very unfair grading system that only rewards a few. Best to avoid her b/c you won't be judged on you work but on your likability.", + "pos": 0.072, + "neu": 0.869, + "neg": 0.059, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9fe" + } + }, + { + "text": "Not a teacher who would inspire or educate you. Mediocre, confusing and very disorganized. Many things heard and practiced in class were without purpose. Feedback had no merit, it is either she liked you or not and that is what the grade depended on. All I needed was to pass. I just expected to get more out of the class. A disappointment!", + "pos": 0.089, + "neu": 0.769, + "neg": 0.142, + "_id": { + "$oid": "6711d6d1cd60fca157e5f9ff" + } + }, + { + "text": "Excellent teacher. She will keep you on your toes, so make sure you do all her work and read all required chapters.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d6d1cd60fca157e5fa00" + } + }, + { + "text": "I liked her class. She usually brought up interesting information. She's not very generous on grades.", + "pos": 0.257, + "neu": 0.607, + "neg": 0.136, + "_id": { + "$oid": "6711d6d1cd60fca157e5fa01" + } + }, + { + "text": "A very poorly organized class where the students do most of the teaching and most of it is mostly irrelevant to what is supposed to be taught/discussed. I worked very hard but was penalized for unknown reasons. Has a very unfair grading system that only rewards a few. Best to avoid her b/c you won't be judged on you work but on your likability.", + "pos": 0.128, + "neu": 0.759, + "neg": 0.112, + "_id": { + "$oid": "6711d6d1cd60fca157e5fa02" + } + }, + { + "text": "I did not like this professor's final class grade that she gave me at all, commensurate with the time, effort, work, and grades on exams that I received. On top of all that I was never absent, or late. She even said I didn't hand in a paper to her, that is not true, just her rationalization, for her misdeed. Good luck taking her class my people.", + "pos": 0.102, + "neu": 0.805, + "neg": 0.093, + "_id": { + "$oid": "6711d6d1cd60fca157e5fa03" + } + }, + { + "text": "She is a very very nice person. She is well prepared to the classes and gives very clear information. Excellent teacher!!! She creates a friendly and comfortable athmosphere. I learned a lot and never get bored. It is really fun to take her class. Best course and best teacher in TESOL program!", + "pos": 0.486, + "neu": 0.514, + "neg": 0.0, + "_id": { + "$oid": "6711d6d1cd60fca157e5fa04" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6d1cd60fca157e5fa05" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d2cd60fca157e5fa07" + }, + "professor_name": "Carmen Boullosa", + "rating": 3.5, + "department": "Spanish department", + "comments": [ + { + "text": "She is so nice and always willing to talk about different histories/books/novels. She likes it when many students participate. Took us to different tours. Wish we could take her again!!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa08" + } + }, + { + "text": "This teacher loves literature but is is not caring about her students. Students can not express their ideas or opinion's especially when it comes to religion. She does not take critisism very well. she should respect the students work eventhough she does not agree with it.", + "pos": 0.169, + "neu": 0.723, + "neg": 0.108, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa09" + } + }, + { + "text": "She is a great writer! If you want to express yourself this is the professor you need to take. She will never make you feel stupid and you actually learn something even with her disorganized system.", + "pos": 0.125, + "neu": 0.739, + "neg": 0.136, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa0a" + } + }, + { + "text": "muy buena profesora y me gusta mucho esa clase por que es diferente y nos da derecho a espresarnos", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa0b" + } + }, + { + "text": "She is very disorganized but very smart and understanding.", + "pos": 0.313, + "neu": 0.55, + "neg": 0.137, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa0c" + } + }, + { + "text": "She is one of the excellent instructors. If you really wants to learn make sure you take her class. She is very caring about her students, If you want to play and get an easy grade, please do your self a favor don't register for the class. She is an Excellent instructor.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa0d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa0e" + } + }, + { + "text": "She's a writer! If you take her class just make sure you keep this in mind. The story that she chooses are great, the only problem is that you won't get a \"critical\" view of the work read. If you have a true interest in literature, tell her. She's really passionate about the literature.", + "pos": 0.267, + "neu": 0.693, + "neg": 0.04, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa0f" + } + }, + { + "text": "She's very tempermental. Not interesting at all. Very hard to understand because English is her second language. Not helpful at all. Doesn't accept criticism well. Doesn't encourage class participation. Doesn't review material.", + "pos": 0.059, + "neu": 0.615, + "neg": 0.326, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa10" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d2cd60fca157e5fa12" + }, + "professor_name": "Alan Feigenberg", + "rating": 4.6, + "department": "Architecture department", + "comments": [ + { + "text": "Alan's teaching class has changed my life. The reading materials are a must have. Inspirational and supportive.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa13" + } + }, + { + "text": "His class was very simple most of it we just walked around on tours and didn't grade us by much just attendance 3 or so short assignments and a final paper on your reflection on the tours that is 10 pages long but you could include pictures so make sure to snap lots of things on the tours", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa14" + } + }, + { + "text": "He is Awesome!", + "pos": 0.687, + "neu": 0.313, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa15" + } + }, + { + "text": "Probably the best and realist teacher I have ever met in my life. He is so down to earth and will understand you and who you are. He doesn't really believe in grading which makes the class much more enjoyable and much less stressful.", + "pos": 0.144, + "neu": 0.798, + "neg": 0.059, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa16" + } + }, + { + "text": "will let you write your papers about any topic,as long as youre interested in them. you also (as a class) determine the grading system. pretty good guy to know and good class", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa17" + } + }, + { + "text": "Very enthusiastic, class syllabus and methods very flexible (perhaps a bit too much). Always available through e-mail and very interested in students' opinions and viewpoints.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa18" + } + }, + { + "text": "He's smart and enthusiastic when we're on walking tours (which is often) but in class he's pretty boring. You won't learn much, somehow you get enough info to write papers about it. He cares a lot about his students.", + "pos": 0.249, + "neu": 0.691, + "neg": 0.06, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa19" + } + }, + { + "text": "Great professor with an abundance of knowledge.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa1a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6d2cd60fca157e5fa1b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d3cd60fca157e5fa1d" + }, + "professor_name": "Barbara Gleason", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Professor Gleason's class was always very interactive. I enjoyed the discussions we had during class. Her assignments aren't hard at all because she goes over the drafts and gives really good feedback. She's very considerate and wonderful. Take her class if you can!", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa1e" + } + }, + { + "text": "I dont typically write reviews but for Prof Gleason I will. She is the sweetest professor ever and super genuine. She gives feedback to every student on their essays and allows extensions if you ask. Super friendly and just a gem! Would take her class again 100%", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa1f" + } + }, + { + "text": "She is honestly very loving and mother-like. If you ever need help she will help you out, shes super sweet and genuine and cares about her students, I would take her again if I could.", + "pos": 0.445, + "neu": 0.555, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa20" + } + }, + { + "text": "An easy A if you do all you work. Offers so much extra credit which should guarantee an A+. usually pushes deadlines if you ask, and super friendly. One thing she is serious about is attendance, so be there and on time. You have to buy a couple of books, but u can find it in the library. Don't hesitate about taking her!!!", + "pos": 0.186, + "neu": 0.798, + "neg": 0.016, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa21" + } + }, + { + "text": "Very Straightforward, and helpful. Kept the class interesting with powerpoint and assignments. Four exams with two being open book. Willing to stay after class for extra help if needed. Overall, enjoyable class where one can learn the material and would recommend to others.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa22" + } + }, + { + "text": "She is very fair in her grading. She is a very understanding professor, but if you are lazy, she will let you know in a respectful way. All of our tests were straight from the reading. There were no surprises. Do the reading and speak up in class! It is not hard to be her favorite. She has become one of mine and I hope to stay in contact with her.", + "pos": 0.206, + "neu": 0.733, + "neg": 0.061, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa23" + } + }, + { + "text": "very nice gives you papers just do them lots of work though", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa24" + } + }, + { + "text": "take this prof. grade depends on papers only. no tests. attendence is mandatory class is really easy and u dont do anything but talk about the papers ull hand in. u have to do all ur papers and does not take points of if it is late except final test. at end of class she makes u write what u learned in class and that boosts ur grade. great professor", + "pos": 0.198, + "neu": 0.783, + "neg": 0.02, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa25" + } + }, + { + "text": "She is very passionate about teaching Freshman Composition. She gives a lot of papers and writes a lot of comments on what you need to work on. Her grades are fair, there are no tests and there's no final.", + "pos": 0.132, + "neu": 0.771, + "neg": 0.097, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa26" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d3cd60fca157e5fa28" + }, + "professor_name": "Barbara Hanning", + "rating": 4.1, + "department": "Music department", + "comments": [ + { + "text": "Dr. Hanning is extremely clear. I took 2 courses with her. The first, Research and bibliography could have been terribly boring but instead was a really useful. Her knowledge of early music is very complete. I am a woman and did very well in her classes. I never saw or experienced any sign of prejudice toward women.", + "pos": 0.136, + "neu": 0.742, + "neg": 0.122, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa29" + } + }, + { + "text": "How nauseating. Positive comments most certainly written by male students who she clearly favors. Heaven help female students. I've witnessed her unleash wrath and fury on girls. Go figure. Good students too. Hanning's favoritism towards certain male students and arrogance towards everyone else is totally unprofessional. Time to retire.", + "pos": 0.332, + "neu": 0.518, + "neg": 0.15, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa2a" + } + }, + { + "text": "Very boring. Would lecture from the second class starts until the second it ended. Notes she wrote on the board were a mess. Expected too many details on tests.", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa2b" + } + }, + { + "text": "I have taken many Music History classes with Professor Hanning and she is my mentor. I really can't say enough good things about her. She is an professor who puts her students first and an active scholar who has written and presented many great papers and articles and a great current textbook \"Concise History of Music\". She is the best professor.", + "pos": 0.205, + "neu": 0.762, + "neg": 0.033, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa2c" + } + }, + { + "text": "intelligent professor, beautiful, and alive with energy. she very clear in what she wants, and makes you think outside the box, and she is HOT!", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa2d" + } + }, + { + "text": "This lady is hot and knows her stuff! My musical knowledge improved with 65% what more can you ask for? She made me a professor and made me love academics and the intimacy of it!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa2e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa2f" + } + }, + { + "text": "1 small textbook, no final exam, how easy can it get? Very nice lady, cuts you a lot of slack. Gives easy work, and did I mention she's HOT! This is definitely a great class to take away the stress of actually doing work. Highly recommended for Slacke", + "pos": 0.28, + "neu": 0.604, + "neg": 0.116, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa30" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d3cd60fca157e5fa32" + }, + "professor_name": "Scott Reeves", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "Really enjoyed this class. Very informative! Take his class, you won't be disappointed.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa33" + } + }, + { + "text": "Class is boring but it is actually helpful.", + "pos": 0.326, + "neu": 0.529, + "neg": 0.145, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa34" + } + }, + { + "text": "Jazz History 2. Excellent teacher with thorough understanding of the class content. He really cares about the students doing well, and he cares about the department. Also a great musician.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa35" + } + }, + { + "text": "I have taken a Jazz History seminar with Professor Reeves and found that he really loves and lives jazz. I learned a great deal about Duke Ellington's music and his orchestra and John Coletrane. I found that covering these two artists gave a great overview of two periods in Jazz History. We memorized music, gave presentations, and written exams.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa36" + } + }, + { + "text": "The prof has a fairly monotone lecture style, but shares many interesting facts about jazz musicians. However, most of the \"interesting\" info is related to the musicians' drug and alcohol habits! The dept likes to overtally this class, so don't look forward to a cmftble learning environmnt. What's worse is that there aren't many girls in the dept!", + "pos": 0.203, + "neu": 0.739, + "neg": 0.058, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa37" + } + }, + { + "text": "Great teacher. If all teachers were like him City College would be putting out some great jazz players. Instead, the only ones that leave which are good are the ones that were already good.", + "pos": 0.361, + "neu": 0.613, + "neg": 0.026, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa38" + } + }, + { + "text": "Very boring.", + "pos": 0.0, + "neu": 0.278, + "neg": 0.722, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa39" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6d3cd60fca157e5fa3a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d4cd60fca157e5fa3c" + }, + "professor_name": "John Moses", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "Took this course over the summer. Professor Moses is a very caring and understanding person. He takes time in class to clearly go over the material and makes sure everyone understands it. I would definitely want him as my professor for other psychology courses. Amazing!!!", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa3d" + } + }, + { + "text": "Professor Moses is one of the best at CCNY. I took Psych 254 as a summer class and I really enjoyed it even if it meant studying during the summer. He made the material much easier to understand than the textbook, and actually took the time to make sure the entire class understood the material. His quizzes were very fair and straightforward.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa3e" + } + }, + { + "text": "Great professor! I highly recommend! Take his class you won't regret it!", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa3f" + } + }, + { + "text": "I currently have a summer course with him, the material is not easy at all but the way he explains it makes you feel like you are a genius. He is so helpful I do not feel embarrassed to ask him questions, reading is a big help not only to understand material but to participate in class He is an amazing professor I would love to have him again!", + "pos": 0.287, + "neu": 0.694, + "neg": 0.019, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa40" + } + }, + { + "text": "great professor. he can teach complex material very well. Read the book and pay attention in class and you'll find his exams are fair", + "pos": 0.291, + "neu": 0.662, + "neg": 0.046, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa41" + } + }, + { + "text": "An almost virtuosically clear lecturer, relating complex subject matter in accessible terms. professor moses also moves very efficiently through his powerpoint presentations, moving quickly without sacrificing our comprehension. his quizzes consist of surprisingly basic questions- it's quite easy to do well on them if you stay attentive in class.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa42" + } + }, + { + "text": "He's the psych TA coordinator, but really helpful.", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa43" + } + }, + { + "text": "Easy professor. Took him for summer session. Goes over the material needed on the tests. You learn a decent amount, but at times can go too slow but does that so everyone in the class can understand what is going on.", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa44" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d4cd60fca157e5fa46" + }, + "professor_name": "Raymond Lavertue", + "rating": 4.9, + "department": "History department", + "comments": [ + { + "text": "Great professor understands your taking this class as a requirement. Easy online quizzes, 3 essays, minimal reading and a very approachable and student friendly teacher. Take him for USSO if you get the chance.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa47" + } + }, + { + "text": "Simply amazing!", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa48" + } + }, + { + "text": "He is AWESOME, simple as that. I guarantee you will not be disappointed. He's pretty laid back, smart, and has a great sense of humor. He's willing to work with students if they can't make a deadline for a paper assignment. His quizzes were given online. Shows interest in what students have to say, even was interested in discovering new music lol", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa49" + } + }, + { + "text": "Wonderful, interesting, funny, helpful, and most importantly he will understand if you have an emergency and need extra help or time for an assignment. Very enjoyable, it is a delight to be in his class. He works with the class to assign deadlines for papers and makes sure that everyone is on the same page by assigning as little reading as possibl", + "pos": 0.329, + "neu": 0.639, + "neg": 0.032, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa4a" + } + }, + { + "text": "Beeautiful man. Hilarious, super dry, keeps everyone keen for the next carefully weighed declaration. Speaks clearly, carefully, assigns minimal reading, respectful but opinionated (however subtly he allows us to see it), and. really attractive. have a total professor crush on him. dig this class.", + "pos": 0.309, + "neu": 0.648, + "neg": 0.043, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa4b" + } + }, + { + "text": "Incredibly funny, theres never a day in his class where I did not laugh. Keeps you interested. I never thought I would like U.S. history until I had him as a professor.", + "pos": 0.213, + "neu": 0.712, + "neg": 0.074, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa4c" + } + }, + { + "text": "Trust me you'll love this professor, he's easy, student friendly, funny. No reason why you shouldn't pass this class,also did i mention you can call, email,text and skype him!? He also travels from Rhode Island and always moving from place to place, if u have and empty room i suggest you offer it lol", + "pos": 0.282, + "neu": 0.661, + "neg": 0.057, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa4d" + } + }, + { + "text": "Good professor. Really funny, keeps the class interested. Quizzes are online and easy.", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa4e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d4cd60fca157e5fa50" + }, + "professor_name": "Ellen Anthony-Moore", + "rating": 3.9, + "department": "Speech department", + "comments": [ + { + "text": "She is an easy A! The only way you can't get an A, is if you don't do the theater review which I didn't do and I ended up getting a B in her class which by the conversion says I got an 85 which means I did perfect on all the speeches(which I didn't) but take her", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa51" + } + }, + { + "text": "She's very attractive. She was really helpful when asking her questions about assignments and how to improve her performance on speeches. Would take her class again just for fun", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa52" + } + }, + { + "text": "Great professor! Her grading is good. No final exam, but a final debate. 3 speeches-very interesting! Oh and a theatre review!", + "pos": 0.324, + "neu": 0.618, + "neg": 0.058, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa53" + } + }, + { + "text": "EASIEST CLASS I EVER TOOK. attendance is not mandatory, and she's very lenient. Easy Grader, EASY A. TAKE THIS CLASS!", + "pos": 0.445, + "neu": 0.513, + "neg": 0.042, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa54" + } + }, + { + "text": "TAKE SPEECH WITH HER IF YOU WANT AN A.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa55" + } + }, + { + "text": "GREAT PROFESSOR", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa56" + } + }, + { + "text": "One of the easiest classes you can take. You have about 3 speeches for the whole semester and you pretty much automatically get an A. If you get less than a A you pretty much have to try not to get one. She also gives extra credit so its very very easy to do well!", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa57" + } + }, + { + "text": "Easy grader, if you do the work you get an A.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d6d4cd60fca157e5fa58" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d5cd60fca157e5fa5a" + }, + "professor_name": "Mayilvahanan Shanmugam", + "rating": 4.8, + "department": "Biology department", + "comments": [ + { + "text": "Hes 100% recommended. he is the best science professor i have ever had. his content is clear and his exam criteria is clear as well. i never leave reviews but this man really wants you to get a good grade! Grateful i took him for bio :)", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa5b" + } + }, + { + "text": "I love microbiology because of prof Mayil. He really cares about his students learning , very helpful if you don't understand a topic. He gives 30 question quizzes with 5 extra credit questions to help boost your grade. 10 lab reports are due at the end of the semester but he will give feedback if you give them to him early. Great prof take him.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa5c" + } + }, + { + "text": "Had him for biology 201 at qcc, very very easy course. Explained from day one his grading criteria, all you had to do was read his PowerPoints, did not use the textbook at all. Tests were all off the pp, tests had extra credit questions and gave an extra credit assignment. He is very knowledgeable but boring in his lecture style.", + "pos": 0.088, + "neu": 0.861, + "neg": 0.051, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa5d" + } + }, + { + "text": "Professor exams are based on PowerPoints and some reading you have to do on your part. He is always willing to stay behind to explain the information in depth (especially since it was a Saturday class). The key of getting a solid A or A- is to participate and dedicate time to review all the slides. His test are straight-forward, no surprise.", + "pos": 0.025, + "neu": 0.946, + "neg": 0.029, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa5e" + } + }, + { + "text": "This professor was one of the best bio professors I've had at city tech! He is very clear, and he genuinely wants you to learn. Microbiology is not an easy class but if you pay attention in class and study you will be fine. Don't use your phone in class he hates that and show up on time.", + "pos": 0.102, + "neu": 0.786, + "neg": 0.112, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa5f" + } + }, + { + "text": "Great professor. Explains every single detail, really cares about the students. Very understandable, would love to take him again.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa60" + } + }, + { + "text": "Microbio lab. Written exam is 30 question with 5 bonus questions so getting a good grade isn't difficult. Cares about his students. I would take him again. There's no need to buy the manual. Save your money.", + "pos": 0.251, + "neu": 0.651, + "neg": 0.098, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa61" + } + }, + { + "text": "Test are straight from slides, and no need to buy the lab manuals. but you do have to write lab reports and submit them at the end of the semester, this class was a walk in the park. He gives good advice to students. Do your work and you will get a good grade. The class is fun and There is an interesting experiment everyday. This professor is easy.", + "pos": 0.248, + "neu": 0.733, + "neg": 0.019, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa62" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d5cd60fca157e5fa64" + }, + "professor_name": "Jennifer Tuttle", + "rating": 4.7, + "department": "Theater department", + "comments": [ + { + "text": "Made Acting so comfortable and truly broke me out of my shell. Her teaching style is so engaging and boosts self-esteem. Looking back at the semester, we learned SOOO much and it didn't even feel like it. Very fun. Amazing breathing/relaxation/reflection exercises,really taps into your mind. Showed that psychology and acting are not so different", + "pos": 0.286, + "neu": 0.647, + "neg": 0.068, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa65" + } + }, + { + "text": "Jen is amazing! She is really passionate about bringing teaching and goes about it in a fun way. It doesnt feel like a lecture at all. Think of it as a yoga class with small group exercises. Take notes and youll enjoy the most relaxing class you will ever have.", + "pos": 0.278, + "neu": 0.689, + "neg": 0.033, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa66" + } + }, + { + "text": "best professor ever!!!!!!!! take herrrr class you wont regret it. Definitely taking her next semester for acting 2", + "pos": 0.309, + "neu": 0.601, + "neg": 0.09, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa67" + } + }, + { + "text": "Great prof. If you really want to learn something take her class. Amazing sense of humor. She taught us Classics can be fun too. She can help you only when you work hard and take the course seriously and do all your work. Actually, if there was not her class, I wouldn't survive in my first semester at City College. Just take her class!!!", + "pos": 0.238, + "neu": 0.722, + "neg": 0.04, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa68" + } + }, + { + "text": "Amazing prof. with great sense of humor. One of the best prof.s at CCNY and the only class that I really enjoyed being and learned a lot. She knows her job very well and teaches you all the secrets of being a good actor. In class she creates such a good atmosphere that all students can fell comfortable. Highly recommended!!!", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa69" + } + }, + { + "text": "I took her for voice and speech, shes very practical, real and funny. She teaches with such passion and gives you the tools you need to discover internal glitches that impede you as a performer. Psychology students should take this class as well, you learn a lot about the voice and how its connected to the body and emotions.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa6a" + } + }, + { + "text": "she's a good professor very knowledgeable, although if you have too many absences she will kick you out of the class, no questions asks. doesn't really matter if their excused she doesn't care so DONT SKIP CLASS and you'll pass", + "pos": 0.064, + "neu": 0.8, + "neg": 0.136, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa6b" + } + }, + { + "text": "OMG! This is best class, ever! She is easy going. She hates when students come to class late, she takes points off for lateness. It is an easy class if you memorize your lines and shows effort. You have to keep a journal, which she will collect, she gives four quiz which is base on watching some school plays at CCNY 1midterm, 1final. Easy class!", + "pos": 0.203, + "neu": 0.76, + "neg": 0.037, + "_id": { + "$oid": "6711d6d5cd60fca157e5fa6c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d6cd60fca157e5fa6e" + }, + "professor_name": "Leah Zander", + "rating": 3.4, + "department": "English department", + "comments": [ + { + "text": "When I took Prof. Zander's class a few years ago, I thought that she was a wonderful professor. She did give us quite a few readings to do, but that was expected considering it was an (introductory) English class. None of the work we did seemed excessive. I generally felt comfortable participating in class.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa6f" + } + }, + { + "text": "Didn't complete all the things mentioned in her syllabus because I think she didn't have much time as she was absent almost thrice this semester. Takes participation more seriously than coming to class herself. Gives a lot of papers so much so that twice this semester she gave the same text and didnt have any idea what was going on in her class.", + "pos": 0.0, + "neu": 0.969, + "neg": 0.031, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa70" + } + }, + { + "text": "I enjoyed Professor Zander's class a lot because the material she had us read was super interesting and relevant to today's world. We wrote a lot of essays and there was one big research paper due at the end of the semester. The writing topics are interesting, but they are a lot of work. At the end of her class, you'll be feeling intellectual.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa71" + } + }, + { + "text": "She gives a LOT of readings, but she has to be one of the most fun English professors I've had. She makes class fun with unique assignments and she's very friendly and nice. Although there was some work/essays compared to my other classes, they were very easy to manage and she's an easy grader. Her readings make you woke.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa72" + } + }, + { + "text": "She was absent almost 4 times this semester and if a student is even 5 minutes late to a class she get's upset! Doesn't explain stuff at all, she just sends borrowed stuff from different places and asks us to read it and then just sits throughout almost 3/4 of the class and asks the student to do peer discussion that's all.", + "pos": 0.0, + "neu": 0.955, + "neg": 0.045, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa73" + } + }, + { + "text": "She goes wayyyy to hard for participation. She literally calls on you like your in elementary school. She hates when someone comes in late. She cares about what you say and listens to everyone. Expect to read a lot then have peer discussions about it.", + "pos": 0.108, + "neu": 0.807, + "neg": 0.085, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa74" + } + }, + { + "text": "English for the Social Sciences was a tough class initially, but I managed to get the hang of it later on. The class is not an easy A, but if you get a head start on your assignments and ask for early feedback, Professor Zander will give advice on how to improve. There is also peer reviewing sessions where you get feedback from classmates.", + "pos": 0.056, + "neu": 0.881, + "neg": 0.063, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa75" + } + }, + { + "text": "Professor Zander is a great English teacher but gives a lot of reading. There's a bunch of large papers you will have to write but she is overall caring about her students. She also works as Columbia, so expect all your handouts to have a lion logo on it. Besides that, she can call you out if you don't participate and you have to attend her class.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa76" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d6cd60fca157e5fa78" + }, + "professor_name": "Maude Bouchard", + "rating": 2.9, + "department": "Psychology department", + "comments": [ + { + "text": "I loved Mind, Body, Experience (Biological Psych) and hoped Neuropsych would be up my alley. In my opinion, the material was mostly review so while the prof is great, I wouldn't have taken it in hindsight. She gives 24 hours to complete exams and multiple draft deadlines for papers, so it's easy to get an A or B. Skip buying the textbook.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa79" + } + }, + { + "text": "Yes, she's a very nice and light hearted professor but I personally couldn't learn with her. She would only read off slides and asked students questions they never knew, yet didn't try explaining so that those who didn't know could learn, she would just tell us to look it up. She also prides herself in being a tough grader. Don't recommend.", + "pos": 0.06, + "neu": 0.873, + "neg": 0.068, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa7a" + } + }, + { + "text": "Her grading criteria is unclear and she will not give you any feedback on why you got the grade. Me and other classmates has emailed her several times regarding our grades but we rarely get a reply back. It's not a class you should take if it is just to fulfill your electives.", + "pos": 0.068, + "neu": 0.905, + "neg": 0.027, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa7b" + } + }, + { + "text": "Professor Bouchard is an extremely and unfair grader. Do not take her if you are looking for a more theoretical class. She is way more into a neuro aspect of things since she is a neuropsychologist. You will learn nothing unless you study and review back everyday. Disappointment , was excited to take this class but def wasnt what I thought it be.", + "pos": 0.026, + "neu": 0.909, + "neg": 0.066, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa7c" + } + }, + { + "text": "I took Prof Bouchard over the Winter session for Psychology: Sleep and Dreams. Although I wasn't a Psych Major, she made everything easy to digest and understand, mostly due to her genuine passion and expertise in the subject. She's young, personable, and understanding. Yes, it's an easy A, but take the class because you care, she's really trying.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa7d" + } + }, + { + "text": "she is a tough grader and is not clear with her criteria.", + "pos": 0.0, + "neu": 0.731, + "neg": 0.269, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa7e" + } + }, + { + "text": "Professor Maude is a caring and sweet professor. However, she is a tough grader. We had 2 exams, 2 presentation, and 1 paper. She doesnt have a clear guideline of what she wants, so you need to be careful and should always include extra information in your work. Dont just based on the discussion during her lectures! SHE IS A TOUGH GRADER!", + "pos": 0.119, + "neu": 0.797, + "neg": 0.084, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa7f" + } + }, + { + "text": "Let me just say that Professor Bouchard is one of the most caring professors I've met. During the pandemic she was patient, empathetic and just amazing. You ACTUALLY LEARN from her class because you are not forced to. We have discussions, and she gives great examples which helps you to remember the concepts. Take her class she is amazing", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa80" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d6cd60fca157e5fa82" + }, + "professor_name": "Suna Agkoc", + "rating": 4.9, + "department": "International Studies department", + "comments": [ + { + "text": "Asynchronous. Just do the weekly discussion board and the occasional paragraph assignment. The midterm and final is simple with the relevant material being listed. Super easy and highly recommend.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa83" + } + }, + { + "text": "Professor Agkoc is so sweet! INTL 20100 was extremely easy and straightforward - you're graded on discussion boards, participation/group presentations, midterm & final, attendance. My only gripe was that Professor Agkoc was NOT accessible outside of class, as it's nearly impossible to get in touch w/ her via email. Besides that, she's excellent!", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa84" + } + }, + { + "text": "She is a decent professor. I really enjoyed this course because I love history. It is slow pace class and very easy to keep up with. She will help you with anything!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa85" + } + }, + { + "text": "Definitely take this class, it's an easy A. She is pretty lenient and super nice. Really enjoyed this class.", + "pos": 0.638, + "neu": 0.362, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa86" + } + }, + { + "text": "Professor Suna is extremely understanding. The only assignments are class based exercises (participate to get full credit), discussion boards, a midterm and a final exam (only 4 questions each). She also gives an opportunity for extra credit during the final. Attendance is also taken every class so you must attend class. This class is an easy A+.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa87" + } + }, + { + "text": "Professor Suna Buse, was amazing, she is very understanding, the class consist of couple of group assignments, a midterm and final which are four questions each. Truly appreciate professor buse understanding of students ! attendance and participation will earn you extra points make sure you attend class and participate ! and she is pretty cute !", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa88" + } + }, + { + "text": "This is probably the easiest class I have taken. Very straightforward works - discussion board exercises, class based exercises, and a couple of exams (just answering four questions). She won't give you a lot of works and is very understanding. It's very easy but you can also learn from this class if you pay attention.", + "pos": 0.069, + "neu": 0.903, + "neg": 0.028, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa89" + } + }, + { + "text": "The class is easy just do the work which consist of db posts, 2 quizzes, finals and midterm. She allows late work and there is no essays just write about 3 paragraphs and participate. The finals and midterm are 10 questions she wants you to type 380-560 words.", + "pos": 0.057, + "neu": 0.9, + "neg": 0.043, + "_id": { + "$oid": "6711d6d6cd60fca157e5fa8a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d7cd60fca157e5fa8c" + }, + "professor_name": "Kazi Ahmed", + "rating": 4.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He is a nice professor but he just writes on the board. he needs to explain each topic a bit more especially the earlier chapters. At the beginning of the semester, it seemed like he'll curve a lot but the curve was slightly underwhelming.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa8d" + } + }, + { + "text": "Good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa8e" + } + }, + { + "text": "Very good for electrical/computer engineering majors. Just know how to build the clock and ask questions if confused.", + "pos": 0.149, + "neu": 0.744, + "neg": 0.107, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa8f" + } + }, + { + "text": "We worked on the Digital Clock module. Grades were be derived from the labs (which are quick copy and pastes on parts you are using in the clock, just make sure they are formatted like a lab), your final presentation, and your final which is an individual test with 2 questions about the clock. This class was an easy A.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa90" + } + }, + { + "text": "He's a wonderful professor. Very relaxed and cares for the students. Lectures can be heavy with a lot of slides in each class, but other than that really easy class and test. Take his class and you will pass!", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa91" + } + }, + { + "text": "Really chill dude. He grades the labs easy, just make sure they are formatted as a lab. Very understanding if you come late. In our class, we had the digital clock project. So make sure your group understand the concepts because he will grade you on what you did. Overall, great professor", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa92" + } + }, + { + "text": "He's a really good professor that introduces the basics of every lab before you start. Lenient grader in lab reports and provides good feedback on them. Final has some tricky questions so prepare for it well.", + "pos": 0.24, + "neu": 0.723, + "neg": 0.037, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa93" + } + }, + { + "text": "Overall he's a good professor. Provides a nice introduction to each lab and then its up to you to follow the instructions and complete it. He's very lenient in grading the weekly reports. Make sure to read all of the material for the final since he included some obscure questions. Just show up, do the labs and you'll have nothing to worry about.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa94" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d7cd60fca157e5fa96" + }, + "professor_name": "Nishanthi Anthonipillai", + "rating": 2.7, + "department": "Psychology department", + "comments": [ + { + "text": "She is really full of herself and how much she knows but cannot elaborate when asked. She was not very friendly either and acted like she was doing us a personal favor. Now I know why there were like 8 students in the class. I did not learn much.", + "pos": 0.171, + "neu": 0.765, + "neg": 0.064, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa97" + } + }, + { + "text": "This is not a professor is a grad student. She never reviews the any quiz with the class. She said in class some things are too difficult to understand and didn't make an effort to explain concept to students. She wont give you a study guide and when you ask her to be specific about what we can expect she said everything is game.", + "pos": 0.0, + "neu": 0.962, + "neg": 0.038, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa98" + } + }, + { + "text": "She is nice and knows how to teach... although she gives a quiz every day before class on the subject she is going to teach. So your expected to read the chapter and know it before she teaches it.. Which is unfair but StuDoc has the textbook chapters in simplified format so u don't have to read the whole chapter;but it goes by the chpt. name not#.", + "pos": 0.028, + "neu": 0.943, + "neg": 0.03, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa99" + } + }, + { + "text": "She is fantastic very genuine and passionate about her field and her teaching style is great I just wish that some students would stop bringing up irrelevant off topic comments and questions up in the class because it just becomes a huge waste of time and gets frustrating. I sat through 10 mins of tobacco convo-irrelevant to what we were learning.", + "pos": 0.212, + "neu": 0.686, + "neg": 0.102, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa9a" + } + }, + { + "text": "Very nice teacher but bad at giving exams and reviewing exams.", + "pos": 0.288, + "neu": 0.447, + "neg": 0.265, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa9b" + } + }, + { + "text": "She thinks she can fly boy lectures by going through half the lectures, and talking about her boyfriend and her cat. Our entire class failed the midterm for a reason in other words. She also said we should be using the textbook and thats why we failed, but it is also her job as a professor to help teach the lecture to get it through to her students", + "pos": 0.049, + "neu": 0.892, + "neg": 0.059, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa9c" + } + }, + { + "text": "I don't recommend taking her class.", + "pos": 0.0, + "neu": 0.703, + "neg": 0.297, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa9d" + } + }, + { + "text": "She's a great professor, knows the subject really well. Read the book, do things on time and you'll do great in her class. 3 tests, final exam (cumulative), final project and presentation, the other work you'll have is more to help you understand the material. It is not as hard as you think, there is a lot of work but helps out in the end.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5fa9e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d7cd60fca157e5faa0" + }, + "professor_name": "Kelly O'Donnell", + "rating": 4.5, + "department": "Honors department", + "comments": [ + { + "text": "I have never met a professor so organized and happy to help outside of class. She is constantly providing resources and great feedback on assignments. However, the class is definitely a lot of work. There are several group projects that you really need to devote your time to and assignments during the week as well. Just make sure to put in the work", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa1" + } + }, + { + "text": "Professor O'Donnell is the best. She gives a bunch of assignments throughout the semester, but they really do help you develop useful skills. Really cool and relatable, so easygoing but also pushes you to learn. Highly highly recommend if you want to use your time to learn cool things.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa2" + } + }, + { + "text": "Class is easy but the professor gives too much work every week which is not necessary.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa3" + } + }, + { + "text": "Really great teacher! Gives a lot of reading. She is a bit harsh on grading but gives you a lot of chances to boost your grade.", + "pos": 0.267, + "neu": 0.673, + "neg": 0.06, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa4" + } + }, + { + "text": "Out of all the MHC professors for seminar 3, Kelly will give you the most work. Sometimes too much, in my opinion, and not always on interesting things. She also grades harshly at times, and will take off an unwarranted number of points on writing assignments. If you enjoy ecology, this class is for you. If you're looking for an easy A, stay away.", + "pos": 0.106, + "neu": 0.861, + "neg": 0.032, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa5" + } + }, + { + "text": "Great teacher! Makes class interesting every day and gives good feedback on all papers and writing assignments.", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa6" + } + }, + { + "text": "She makes the class very enjoyable and is always enthusiastic to teach. Loved coming to her class everyday.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa7" + } + }, + { + "text": "She's really nice and makes the class so much fun. I liked all the number crunching she made us do (rough estimates and statistical analysis and things like that).", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d6d7cd60fca157e5faa8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d8cd60fca157e5faaa" + }, + "professor_name": "Carlos Riobo", + "rating": 3.8, + "department": "Spanish department", + "comments": [ + { + "text": "I took the one credit Vargas Llosa course and would recommend it to anyone who needs to do the same. Lectures were long but insightful, even as this course was only three days long. CCNY provided food and at the end of the three days, you receive a certificate after attending the lecture at the Cervantes Institute.", + "pos": 0.061, + "neu": 0.939, + "neg": 0.0, + "_id": { + "$oid": "6711d6d8cd60fca157e5faab" + } + }, + { + "text": "He always made weird comments about other ethnic groups that speak spanish and said that their spanish is wrong and uncultured. He will constantly think you're wrong if you can't pronounce a word like him.", + "pos": 0.06, + "neu": 0.749, + "neg": 0.191, + "_id": { + "$oid": "6711d6d8cd60fca157e5faac" + } + }, + { + "text": "This student is fundamentally mistaken. I said that certain pronunciations of Spanish, which adhere to sound change laws that are uniform among other Romance languages, are considered prestigious in one language while considered non-standard in others. I said that linguists use terms such as non-standard variants, which I used in class.", + "pos": 0.101, + "neu": 0.854, + "neg": 0.044, + "_id": { + "$oid": "6711d6d8cd60fca157e5faad" + } + }, + { + "text": "Prof. Riobo is an excellent professor, his explanations of the literary pieces studied in class are very interesting, analyzing the material, the author, and the historical context. You have to be prepared for classes, but the discussions are so enlightening! He is always willing to share his knowledge and he has a great sense of humor.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d6d8cd60fca157e5faae" + } + }, + { + "text": "Professor Riobo is a great Professor, I love how well he speaks Spanish, it is very clear, he knows well all the class material, if you take this class be ready to participate, I learned a lot from him. Also he is very professional and HANSOME", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d6d8cd60fca157e5faaf" + } + }, + { + "text": "He is a great professor. Take him, you won't regret it!", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab0" + } + }, + { + "text": "One of the best professors available. Very knowledgeable on literature, not only Spanish and Latin American Literature, but also French, English, and U.S. among others.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab1" + } + }, + { + "text": "really snake-like, sarcastic, manipulative, contradicts himself and chuckles a lot during one-on-one conversations. Be very aware of the things he says and don't be fooled by his friendly attitude. He's sneaky when it comes to attendance. Also, he doesn't like to be asked about grades and is never prepared for grade discussions.", + "pos": 0.121, + "neu": 0.712, + "neg": 0.167, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab2" + } + }, + { + "text": "Prof Riobo is a good professor and he is a nice guy. He interacts with the class and is always willing to help. The work load is very fair and I definitely recommend him.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d8cd60fca157e5fab5" + }, + "professor_name": "Chudi Uwazurike", + "rating": 2.4, + "department": "International Studies department", + "comments": [ + { + "text": "I took Prof. Chudi U for 2 courses: 1) International Studies Intro. 201; and 2) Intro. to Sociology 105. He did not show up to the classes when held on a Friday morning. He did not give notice that he was going to cancel those three Fri. classes. He never assigned any work from the textbooks. I loved his non-discussions about gay marriage.", + "pos": 0.058, + "neu": 0.912, + "neg": 0.03, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab6" + } + }, + { + "text": "His style is for those with the intellect and open mind to get it. If you want to learn, he can certainly teach you. For those who want things spoon feed to them, they are sure to complain.", + "pos": 0.23, + "neu": 0.714, + "neg": 0.056, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab7" + } + }, + { + "text": "I had this professor for Sociology 238, 260 263 in 200607. He's an okay professor but teaching style need work. He's attitudinal, stuck up and judgmental. Don't bother buy any textbook for his courses. He doesn't use them at all. He examines you on what he lectures. Just take notes from his lectures and you'll be fine.", + "pos": 0.101, + "neu": 0.859, + "neg": 0.041, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab8" + } + }, + { + "text": "This man clearly does not care about his students. Some of his lectures were interesting, but do not expect that they will help you on the exams, papers, or your knowledge of this subject.", + "pos": 0.186, + "neu": 0.768, + "neg": 0.046, + "_id": { + "$oid": "6711d6d8cd60fca157e5fab9" + } + }, + { + "text": "Even towards the end of the semester, I couldn't figure out how I was doing in his class. I have to agree, he's very disorganized. Don't expect to get any of your papers back (let alone grades). Exams don't exactly correspond to his lectures. Some people did the assignments, others didn't, but our final grades were almost the same. Not worth it.", + "pos": 0.027, + "neu": 0.892, + "neg": 0.081, + "_id": { + "$oid": "6711d6d8cd60fca157e5faba" + } + }, + { + "text": "This guy is awful. I someone give the benefit of the doubt & am very easy going. Let me tell you, this prof is horrible. He's all over the map, he has a very thick accent no one can understand, he doesn't grade fairly, he makes assignments and never passes back graded material. Run for your life. Problem is, he's the only one teaching this course.", + "pos": 0.078, + "neu": 0.743, + "neg": 0.178, + "_id": { + "$oid": "6711d6d8cd60fca157e5fabb" + } + }, + { + "text": "Difficult to follow this class...it's a mess. He doesn't have a syllabus, he is coming unprepared and late.....and give you quizzes. Avoid it if you can!", + "pos": 0.0, + "neu": 0.754, + "neg": 0.246, + "_id": { + "$oid": "6711d6d8cd60fca157e5fabc" + } + }, + { + "text": "Difficult to understand. He is coming to class totally unprepared...his class is a chaos. If you want to have a well organized class with a good teaching ; avoid it", + "pos": 0.163, + "neu": 0.62, + "neg": 0.217, + "_id": { + "$oid": "6711d6d8cd60fca157e5fabd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d9cd60fca157e5fabf" + }, + "professor_name": "Afsheen Khan", + "rating": 4.9, + "department": "Biology department", + "comments": [ + { + "text": "Mr. Khan is amazing! He will give you want you deserve and will help you 100%. He gives homework every week but if you do it in class as he explains it you're good to go. He seems tough at the beginning but he's fun and understanding. You won't regret taking him!!!!", + "pos": 0.276, + "neu": 0.696, + "neg": 0.027, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac0" + } + }, + { + "text": "prof Khan is a dearheart and a doe-eyed cutie pie. But don't get it twisted: you'd better know you unit conversions and how to calculate concentrations across a gradient! She is all helpfulness with no trace of condescension or attitude at all. Two thumbs Up!", + "pos": 0.186, + "neu": 0.762, + "neg": 0.052, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac1" + } + }, + { + "text": "This teacher is a very good teacher. i definately advise anyone to take her she is just fabulous.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac2" + } + }, + { + "text": "Really loves her work and her students. Can totally admit it if she is wrong or doesn't know something. \r Beautiful person inside and out.", + "pos": 0.188, + "neu": 0.619, + "neg": 0.193, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac3" + } + }, + { + "text": "I'll definately recommend you take this class she might but peppy but you have to work for this class.", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac4" + } + }, + { + "text": "She's a great teacher, shows a lot of respect for her students and demonstrate great knowledge of the subject. I'll definitely recommend.", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac5" + } + }, + { + "text": "she's very good at explaining the difficult points in the class and she's not afraid to go the distance in order to get her student to understand the material. she's very peppy too!take her if you can!", + "pos": 0.092, + "neu": 0.848, + "neg": 0.061, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d9cd60fca157e5fac8" + }, + "professor_name": "Dan Calderone", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "If you want to take cognitive psychology, he is the best professor to take it and especially in winter or summer. This class in the winter and summer with him is an easy A. He is really good in giving a lot of extra credit, if you study the material you will be great for the test which is not hard.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5fac9" + } + }, + { + "text": "Nice professor", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5faca" + } + }, + { + "text": "He is just adorable!", + "pos": 0.538, + "neu": 0.462, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5facb" + } + }, + { + "text": "no office hours-no one will guide you with your research-you are on your own. Nice professor. Important course. Not easy!!!!!", + "pos": 0.174, + "neu": 0.607, + "neg": 0.219, + "_id": { + "$oid": "6711d6d9cd60fca157e5facc" + } + }, + { + "text": "Nice prof. not easy course. study the notes and read the text book.presentation. long research paper (lot of work)don't take this class with many other classes. i recommend it.", + "pos": 0.157, + "neu": 0.771, + "neg": 0.071, + "_id": { + "$oid": "6711d6d9cd60fca157e5facd" + } + }, + { + "text": "YOU NEED TO WORK. STUDY FOR MIDTERM AND THE FINAL. NO EXTRA CREDIT. NO PARTICIPATION.JUST MIDTERM AND FIANL AND BIG RESEARCH PAPER WITH A PRESENTATION. LOT OF WORK. HE TAKES ATTENDANCE. NICE PROF. BUT YOU NEED TO STUDY AND STUDY HARD. DEFINITELY NOT AN EASY A", + "pos": 0.101, + "neu": 0.723, + "neg": 0.176, + "_id": { + "$oid": "6711d6d9cd60fca157e5face" + } + }, + { + "text": "I loved this guy. He was awesome. Very clear and helpful. Everyone should take his class!!!!", + "pos": 0.558, + "neu": 0.442, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5facf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6d9cd60fca157e5fad1" + }, + "professor_name": "Shamim Ahmed", + "rating": 4.9, + "department": "Chemistry department", + "comments": [ + { + "text": "Just got my grade for organic and the first thing I want to do is give a shout out to Shamim. Thanks for going out of your way dude. Will never forget, definitely the most in-depth recitation I ever had.", + "pos": 0.133, + "neu": 0.816, + "neg": 0.051, + "_id": { + "$oid": "6711d6d9cd60fca157e5fad2" + } + }, + { + "text": "God bless him and also he's such a wonderful human being. Helped me become interested in a class that I was going to fail. His enthusiasm for chemistry made me consider changing my major many times. Hopefully I can take him for 104 and orgo workshops in the future. Really looked forward to seeing him every week, such a sweet personality :)", + "pos": 0.291, + "neu": 0.665, + "neg": 0.044, + "_id": { + "$oid": "6711d6d9cd60fca157e5fad3" + } + }, + { + "text": "I had him last semester, I don't know how things would have turned without. If every TA was like this, college would be a different experience. It was a delight to see him every week, I wish the semester was longer. He breaks down the lecture and makes sure you understand the material. He's really nice, be sure to ask lots of questions.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5fad4" + } + }, + { + "text": "He's an amazing ta for orgo 261. It's a tough class but he makes everything easy to understand.", + "pos": 0.278, + "neu": 0.667, + "neg": 0.056, + "_id": { + "$oid": "6711d6d9cd60fca157e5fad5" + } + }, + { + "text": "He's an amazing ta for orgo 261. It's a tough class but he makes everything easy to understand. He's a cutie too.", + "pos": 0.33, + "neu": 0.626, + "neg": 0.043, + "_id": { + "$oid": "6711d6d9cd60fca157e5fad6" + } + }, + { + "text": "Best Orgo ta ever! I have him now! hes really clear while explaning things and makes orgo better to understand! Plus he is super cute!", + "pos": 0.475, + "neu": 0.525, + "neg": 0.0, + "_id": { + "$oid": "6711d6d9cd60fca157e5fad7" + } + }, + { + "text": "Amazing orgo TA. I wish he taught the lecture section. Really easy to understand. Makes a difficult subject like orgo easy to understand. I learn so well when he explains things, especially because the lecturer sucks.", + "pos": 0.351, + "neu": 0.551, + "neg": 0.098, + "_id": { + "$oid": "6711d6d9cd60fca157e5fad8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dacd60fca157e5fada" + }, + "professor_name": "Blair Davey", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Very good teacher, she was amazing in calc 1 and she is really passionate about mathematics. Youll love her. Her exams are very fair. You must study a little bit to secure an A", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fadb" + } + }, + { + "text": "She is the best professor for Calculus I. She is very organized and her tests are very fair and easy. Go to every class and you will learn; offers help outside of class!!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fadc" + } + }, + { + "text": "She is a type of professor who knows what she is doing, you can see how dedicated she is and all the examples come from her head rather than prepared notes. Lectures are pretty heavy (due to the material overload) but very comprehensive. P.S. she is also the cutest professor on campus ;)", + "pos": 0.251, + "neu": 0.721, + "neg": 0.027, + "_id": { + "$oid": "6711d6dacd60fca157e5fadd" + } + }, + { + "text": "She is really great. Lectures are clear and thorough (i went thru 2 notebooks worth of notes). Always available outside of class to help you out. Exams are challenging but not unfair. More homework than in other classes but it does help you to learn the material. You have to work for a good grade but she's a great professor and you will learn!", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fade" + } + }, + { + "text": "Her Notes are enough for you for the preparation of Exams. Do the homework and attend the class regularly, You will be good.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fadf" + } + }, + { + "text": "A very clear and organized professor. You need to do practice problems in order to do well on her exams. If you do not understand the concepts, she is more than willing to help you in class and in her office hours. You can email her and expect a detailed answer. She really cares about her students. I would take a class with her again.", + "pos": 0.149, + "neu": 0.814, + "neg": 0.037, + "_id": { + "$oid": "6711d6dacd60fca157e5fae0" + } + }, + { + "text": "Ideal professor. Very clear and organized lectures, very knowledgeable, does several examples, and gives fair exams. She tries very hard to help the students and it shows. She makes study sheets, promptly answers questions through emails, give fair exams, and thoroughly grades homework assignments. Likely the best teacher I've had, ever.", + "pos": 0.283, + "neu": 0.69, + "neg": 0.027, + "_id": { + "$oid": "6711d6dacd60fca157e5fae1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dacd60fca157e5fae3" + }, + "professor_name": "Edward Kennedy", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "He is soooooooooooo lit he is hella chill. He actually cares about you learning and wants you to understand what he teaches. He checks up on you and makes sure you are good.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fae4" + } + }, + { + "text": "Professor Kennedy is awesome in the sense that he makes class entertaining. More importantly he cares that you understand and improve your writing skills. He's helpful in that understands our writing weaknesses and makes exercises so that we can work on those specific problems. Overall, one of the best English professors... Ever.", + "pos": 0.321, + "neu": 0.606, + "neg": 0.073, + "_id": { + "$oid": "6711d6dacd60fca157e5fae5" + } + }, + { + "text": "GREAT professor, entertaining and makes each assignment really easy to complete. Gives back good comments on your papers and is a very lenient grader. Highly recommend taking him.", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fae6" + } + }, + { + "text": "Prof. Kennedy's class was the highlight of my semester! Attend class, participate, do the work, and you'll be fine. Class was always entertaining. Plus, he's really cute:)", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fae7" + } + }, + { + "text": "Great professor! He lets out students out early, helps out people with their papers, and is very generous and kind-hearted. It's rare to find such a helpful and considerate professor such as him. Getting an A is easy in his class, just be sure to do all the papers and you'll be fine.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fae8" + } + }, + { + "text": "He is an awesome professor! Take his class!", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5fae9" + } + }, + { + "text": "Professor Kennedy is fantastic! Best teacher in the English Department!", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5faea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dacd60fca157e5faec" + }, + "professor_name": "Olalekan Afolabi", + "rating": 4.7, + "department": "International Studies department", + "comments": [ + { + "text": "Professor Afolabi cares about his students. He does not believe in tests because tests do not show all the knowledge that you have. Be ready to read and participate in class. He is usually available for students during office hours. You do not feel any pressure taking his class and you learn a lot. One of the best professors at CCNY.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5faed" + } + }, + { + "text": "His classes are so interesting and very inspirational. You have to participate. Take him!", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5faee" + } + }, + { + "text": "Really cool and funny guy. For my class, we have no tests of midterm/finals. Just be prepared to do the the readings and write a few pages analysis on each and every one of them. Also there might be a final group presentation in the end. Only critic I have was that he assigned assignments pretty last minute so I had to reprioritize my time a lot.", + "pos": 0.143, + "neu": 0.801, + "neg": 0.056, + "_id": { + "$oid": "6711d6dacd60fca157e5faef" + } + }, + { + "text": "Professor Afolabi is an amazing professor. He made sure that we understood the material. He is understanding, and clear with what he expects from the students. There weren't really any major exams but a few quizzes and papers. Lecture topics were always interesting, definitely worthwhile.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5faf0" + } + }, + { + "text": "very outspoken professor, serious and knowledgeable. He boost your brainstorming and orient you to the main current issues. He does inspire students and motivates you in the non partisan appreciation of the international community actions and behavior. He truly deserves an A+", + "pos": 0.246, + "neu": 0.723, + "neg": 0.031, + "_id": { + "$oid": "6711d6dacd60fca157e5faf1" + } + }, + { + "text": "This professor is one of the best. He is funny and makes classes worthwhile. He is understanding and if you pay attention and listen to him you will be fine. He does not believe in tests! just a few quizzes.", + "pos": 0.242, + "neu": 0.729, + "neg": 0.029, + "_id": { + "$oid": "6711d6dacd60fca157e5faf2" + } + }, + { + "text": "Very considerate professor, teaches from the heart and lectures are always inspiring.", + "pos": 0.531, + "neu": 0.469, + "neg": 0.0, + "_id": { + "$oid": "6711d6dacd60fca157e5faf3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dbcd60fca157e5faf5" + }, + "professor_name": "V. Parameswaran Nair", + "rating": 4.6, + "department": "Physics department", + "comments": [ + { + "text": "Amazing professor. 7 HW, 2 exams, 1 final. Lectures are VERY HEAVY. Exams are fair and similar to HW but there is a lot to study. Shares his personal notes which are extremely helpful. Clarifies even the most trivial concepts so that you understand it well. ASK QUESTIONS, TAKE NOTES, READ HIS NOTES and DO YOUR HW.", + "pos": 0.241, + "neu": 0.735, + "neg": 0.023, + "_id": { + "$oid": "6711d6dbcd60fca157e5faf6" + } + }, + { + "text": "Prof Nair is one of the BEST professors at CCNY. He is brilliant. There is nothing this man does not know. He even wrote his own textbook for the class! Extremely down to earth, Prof Nair is willing to talk to students before and after class, even about subjects not pertaining to the class. Lectures are amazing. Exams are challenging.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d6dbcd60fca157e5faf7" + } + }, + { + "text": "This professor is a genius. Smarter than any other professor I have ever had. The best and most rigorous mathematical explanation of physics you can find.", + "pos": 0.221, + "neu": 0.706, + "neg": 0.073, + "_id": { + "$oid": "6711d6dbcd60fca157e5faf8" + } + }, + { + "text": "Nair presented very complicated material in a very understandable, elegant manner. The course had its definite downsides, though: too few homeworks, not enough practice problems, and limited number of topics covered. Prof. presents material in a mathematically rigorous way - unless you have a solid math base, things can get ugly. Otherwise, enjoy!", + "pos": 0.216, + "neu": 0.672, + "neg": 0.112, + "_id": { + "$oid": "6711d6dbcd60fca157e5faf9" + } + }, + { + "text": "Prof. Nair is the best professor at city college and definetly the best choice for a physics professor. I took him for physics 204 an he was alwys understanding and fair. his leactures are engaging. The material is difficult but if you go to lecture, do the homework(not collected) then you should do well. no curveballs here", + "pos": 0.17, + "neu": 0.76, + "neg": 0.069, + "_id": { + "$oid": "6711d6dbcd60fca157e5fafa" + } + }, + { + "text": "Hardly ever in his office, but he seems fair.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d6dbcd60fca157e5fafb" + } + }, + { + "text": "k", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6dbcd60fca157e5fafc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dbcd60fca157e5fafe" + }, + "professor_name": "Robin O'Leary", + "rating": 4.4, + "department": "Education department", + "comments": [ + { + "text": "Professor O'Leary is an amazing professor. I have learned so much in her class. I would most definitely take her class again and again. She's funny, helpful, realistic and understanding. I really enjoyed being her student and felt lucky to have her as my professor.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d6dbcd60fca157e5faff" + } + }, + { + "text": "Great professor. I learned a lot from her classes--she has tons of funny stories all relevant to the material--and this is what is engaging. She wants to see her students suceed. She is not strict but she does expect that you work hard--as is expected in grad school. Would definitely take her again.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d6dbcd60fca157e5fb00" + } + }, + { + "text": "Her class was divided in two- 1 class discussion, 2 video. Each week she gives short readings and about 5-10 short answer questions based on the reading. If the class is involved in the discussion, she doesn't collect the HW. A couple of essays and a powerpoint final. Great person, l enjoyed being in her class! She has a passion for education!", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d6dbcd60fca157e5fb01" + } + }, + { + "text": "Professo O' Leary was a very nice woman. She could be a bit more clear from the get go with what she wants in assignmentsprojects. Stories are really funny and mostly relate to the topic at hand. Had us answer questions on homework readings, that was ridiculous, were not in high school just give us the reading assignment.", + "pos": 0.182, + "neu": 0.781, + "neg": 0.037, + "_id": { + "$oid": "6711d6dbcd60fca157e5fb02" + } + }, + { + "text": "This professor is wonderful. Professor O'Leary is very helpful, fair and interesting! Its a great class!", + "pos": 0.604, + "neu": 0.396, + "neg": 0.0, + "_id": { + "$oid": "6711d6dbcd60fca157e5fb03" + } + }, + { + "text": "Always returned my emails and let us rewrite any assignments that didn't get good grades. Had a midterm review and always asked if there were any questions. Alot of people came in late and then asked the same questions she just answered.", + "pos": 0.0, + "neu": 0.945, + "neg": 0.055, + "_id": { + "$oid": "6711d6dbcd60fca157e5fb04" + } + }, + { + "text": "This Professor claims she's an easy grader. She's prejudice against certain students and there's definately a bit of favoritism going on with her. Class mostly consists of her reading off a powerpoint and telling a story about her family. Also when asked for help she accuses you of not paying attention in class. WORST PROFESSOR EVER!", + "pos": 0.136, + "neu": 0.708, + "neg": 0.156, + "_id": { + "$oid": "6711d6dbcd60fca157e5fb05" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dccd60fca157e5fb07" + }, + "professor_name": "Sam Salour", + "rating": 2.7, + "department": "Mathematics department", + "comments": [ + { + "text": "This professor is a god! A real gem folks! He really got me into the material.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb08" + } + }, + { + "text": "He makes the material more complicated than it should be, so self studying is the way to go if you take him. Attendance isn't mandatory, but it's the only way to see what the next HW is. He rarely responds to email. Thankfully he's nice enough to give you a lot of points on tests for getting the method right and not the final answer.", + "pos": 0.105, + "neu": 0.879, + "neg": 0.016, + "_id": { + "$oid": "6711d6dccd60fca157e5fb09" + } + }, + { + "text": "He is very vague when he teaches, usually he does a few problems and then will say that they are all the same, which he is not wrong. It is good to review your notes and try to do all the web assign problems because they will only help you. The more practice problems you do, the better you will get at integrals. Ask questions as well.", + "pos": 0.162, + "neu": 0.714, + "neg": 0.124, + "_id": { + "$oid": "6711d6dccd60fca157e5fb0a" + } + }, + { + "text": "He does not know how to teach at all. He goes through the material reallllllly quickly. I ended up not going to his lectures at the end because there was no point in wasting my time. The only way you will do well in this class is by self-studying in any way possible.", + "pos": 0.037, + "neu": 0.877, + "neg": 0.086, + "_id": { + "$oid": "6711d6dccd60fca157e5fb0b" + } + }, + { + "text": "Honestly, hes not so bad. There are 4 exams and the lowest one gets drop. The only problem I would say is that sometimes, he gets lazy and doesnt finish the problem completely. Also, you wont get back your exam until like the next month or so . Calc 2 is a really tough class and you must put in the hours outside of class to get a solid grade", + "pos": 0.153, + "neu": 0.709, + "neg": 0.138, + "_id": { + "$oid": "6711d6dccd60fca157e5fb0c" + } + }, + { + "text": "this guy doesn't know how to teach, doesn't grade exams early so u have the chance to drop, web assign hw, I did not like how he teaches at all plus his teaching is vague, he basically does one question from the text book & says they r all the same, he doesn't know to use BB or sent emails to be involved with students he is not well prepared 2teach", + "pos": 0.026, + "neu": 0.854, + "neg": 0.119, + "_id": { + "$oid": "6711d6dccd60fca157e5fb0d" + } + }, + { + "text": "This professor goes over the problems from the text book, so if you dont want to show up to his lecture he wont care. He curves a lot but doesnt prepare you for department final. Get ready for lots of homework. Calc 2 is a tough class, selfstudy and youll pass.", + "pos": 0.058, + "neu": 0.825, + "neg": 0.117, + "_id": { + "$oid": "6711d6dccd60fca157e5fb0e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dccd60fca157e5fb10" + }, + "professor_name": "Reid Lynn", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "OMG was it a lot of work! But she let us pick topics that we actually cared about personally so that made it better. She helped me a lot this semester. Awesome class.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb11" + } + }, + { + "text": "dont let her smile fool you.....A LOOOOOT OF WORK. i still dont know how she had the time to grade them all. if u enjot writing i guess you could try her but honestlt dont tke her...tough grader too", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d6dccd60fca157e5fb12" + } + }, + { + "text": "She isnt an easy A, you have to do alot of work compared to other professors teaching the same class. She is helpful and clear but NOT an easy grader. She makes you work harder than the other professors teaching the same class, so I would say stay clear and avoid the headache.", + "pos": 0.115, + "neu": 0.762, + "neg": 0.123, + "_id": { + "$oid": "6711d6dccd60fca157e5fb13" + } + }, + { + "text": "ya she does give alot of work, but if you do them all its worth it for the future! n she helps you as much as she can! shes the best! got an A+ in her class, thast how much she's helpful!", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb14" + } + }, + { + "text": "her 210 class is not that easy. you have to be ready to do alot of work. however, she is great. she allows you to do as many drafts you need. just work hard and you can get that A", + "pos": 0.142, + "neu": 0.776, + "neg": 0.082, + "_id": { + "$oid": "6711d6dccd60fca157e5fb15" + } + }, + { + "text": "Definately willing to help students, but I don't know about an easy A. Seemed like a tough grader- not many kids with As on any paper I saw. If you look for the help, she will give it, but otherwise ayou might not pass.", + "pos": 0.235, + "neu": 0.732, + "neg": 0.033, + "_id": { + "$oid": "6711d6dccd60fca157e5fb16" + } + }, + { + "text": "She is a very nice person, she is very happy to help her students, just do the work and you will get an easy A.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb17" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dccd60fca157e5fb19" + }, + "professor_name": "Lewis Zuchman", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Zuchman has no psychology background. In his Decolonizing Mental Health class, he advocates for anti-science faith-healing perspectives and fetishizes Africa and African spirituality as a white man. He does not have any sense of a rubric and has even stated that it is alright for students to use ChatGPT as a starting point for papers.", + "pos": 0.034, + "neu": 0.928, + "neg": 0.038, + "_id": { + "$oid": "6711d6dccd60fca157e5fb1a" + } + }, + { + "text": "Wonderful professor. He has a lifetime of wisdom and knowledge, genuinely cares about his students, and is skilled and experienced in therapy and New York based social work. I'm very thankful for this class. Jump at the opportunity to have Professor Zuchman!", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb1b" + } + }, + { + "text": "My favvv", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb1c" + } + }, + { + "text": "I love this man", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb1d" + } + }, + { + "text": "Good professor! Fascinating lectures! Very caring and sympathetic! He was a freedom rider!", + "pos": 0.702, + "neu": 0.298, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb1e" + } + }, + { + "text": "Although sometimes Professor zuchman was hard to reach. His lectures were interesting and his class is an easy a if you follow the rules . This was one of most easiest class that you can take in the psychology department at CCNY", + "pos": 0.203, + "neu": 0.768, + "neg": 0.029, + "_id": { + "$oid": "6711d6dccd60fca157e5fb1f" + } + }, + { + "text": "He is really nice professor, he likes to put you on good movies that gives you a better understanding about what he is teaching.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb20" + } + }, + { + "text": "Prof Zuchman is very knowledgeable and passionate about what he does. His lectures are very interesting and he makes sure everyone is engaged. Be sure to participate because he loves to hear from his students. This class is based on 3 papers and he does grade kind of harshly but it is motivation to just do better. Overall he is a great professor", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d6dccd60fca157e5fb21" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ddcd60fca157e5fb23" + }, + "professor_name": "Velina Manolova", + "rating": 4.4, + "department": "World Humanities department", + "comments": [ + { + "text": "Boring awkward teacher. Boring lectures. Books are interesting. Pop quiz at the start of every new book. She calculates attendance in the overall grade. Go to her office hours and show her your essays so that you know what type of writing she wants. A little unfair in grading but Fairly decent. Have fun trying to stay awake.", + "pos": 0.097, + "neu": 0.802, + "neg": 0.1, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb24" + } + }, + { + "text": "Boring books, boring lectures. She's a cool person overall and her grades arent as strict. 2 papers and 5 pop quizzes. no tests. Attendance is mandatory. you have to read the stories to write the papers.", + "pos": 0.087, + "neu": 0.749, + "neg": 0.164, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb25" + } + }, + { + "text": "Extremely boring but very straightforward. She doesnt really seem interested in the class but if u skim the book (which are not interesting) then you should be fine. Confusing way of grading, overall a good class.", + "pos": 0.131, + "neu": 0.648, + "neg": 0.221, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb26" + } + }, + { + "text": "Shes great. she is straight forward when it comes to assignments and gives great feedback so even when you dont do so well on your first paper (like i did) you know what she expects from you the next time to improve yourself. class discussions are interesting i liked the books she picked for us. you wont regret taking her class.", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb27" + } + }, + { + "text": "Very nice and kind of funny. She's helpful and chose interesting texts/handouts to read in class. Do the reading and homework and you'll be fine. Essay assignments were not that difficult either.", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb28" + } + }, + { + "text": "She is very helpful but pretty boring. Overall an easy class, definitely worth the boredom.", + "pos": 0.543, + "neu": 0.263, + "neg": 0.194, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb29" + } + }, + { + "text": "If you have to take whum (which you do) take her class. shes kinda awkward but shes funny and there are only 2 papers in her class and no tests. the only thing is that she gives pop quizzes so you have to be on time because she gives them in the beginning of the class, she a real stickler on grammar and proper english in your papers.", + "pos": 0.053, + "neu": 0.893, + "neg": 0.054, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb2a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ddcd60fca157e5fb2c" + }, + "professor_name": "Allan Caplan", + "rating": 1.2, + "department": "Biology department", + "comments": [ + { + "text": "HORRIBLE PROF ! DO NOT NOT NOT TAKE HIM ! Rumor has it that he is the highest paid prof in CCNY which i DEF DON'T KNOW Y...", + "pos": 0.0, + "neu": 0.849, + "neg": 0.151, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb2d" + } + }, + { + "text": "This professor is soo awful I'm usually very good in bio but after this professor I'm changing my major. This guy ruined my gpa and bored me in the lectures.", + "pos": 0.056, + "neu": 0.697, + "neg": 0.247, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb2e" + } + }, + { + "text": "I love Biology and I (usually) own it as a subject. As my first college level bio class I have become severely disillusioned. His lecture was pointless and his tests were insanely detail oriented and generally ridiculous since the set up is a huge lecture hall where you cant even ask questions. Ruined my GPA.", + "pos": 0.097, + "neu": 0.731, + "neg": 0.172, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb2f" + } + }, + { + "text": "Run...Fast.. Or see ur gpa slipping before your eyes. Nothing good in this guy besides his English accent. In-fact, that's why i think they hired him.", + "pos": 0.0, + "neu": 0.912, + "neg": 0.088, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb30" + } + }, + { + "text": "By far one of the worst professor I've ever had. I'm a postbac student so this is not my first time in college. Prof Caplan could care less about the students and it shows.", + "pos": 0.081, + "neu": 0.814, + "neg": 0.104, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb31" + } + }, + { + "text": "You can't learn anything from this guy. It's better to study on your own. His lectures are sooooooooo useless, but his tests are soooooo hard!!!!", + "pos": 0.068, + "neu": 0.769, + "neg": 0.163, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb32" + } + }, + { + "text": "Caplan is useless. His lecture came straight from the book. He gave no focus as to which details he thought important, maybe this is why the mean score in both his tests was 40. He answered questions with \"it's in the book\". Useless teacher, and smells really bad.", + "pos": 0.065, + "neu": 0.733, + "neg": 0.202, + "_id": { + "$oid": "6711d6ddcd60fca157e5fb33" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6decd60fca157e5fb35" + }, + "professor_name": "Andy Deck", + "rating": 3.9, + "department": "Art department", + "comments": [ + { + "text": "This guy was great. I wish I would have taken him for programming. He is very caring and you can reach him outside of class, he is always with you in every step of the way. if you fall behind, he will help you. Glad I took him. Thank you Andy!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb36" + } + }, + { + "text": "One of the best prof I've ever had. Super helpful every time have a question. He is determined to help you fix your code when there is a tiny error you can't find. Assigns interesting and fun projects that get the creative wheels turning. Highly recommend this class, he really knows his stuff. Lots of in class lab time so his workload is very fair.", + "pos": 0.319, + "neu": 0.624, + "neg": 0.057, + "_id": { + "$oid": "6711d6decd60fca157e5fb37" + } + }, + { + "text": "Not clear or helpful during class exercises, forgets that non tech savvy artists are taking his \"Programming for Artists\" class and gives them a rough time. Rather than teaching how to use Javascript for web development he shows us how to make basic flash like games(connect with youth I guess?). Waste of time and money, P5js is great but not him.", + "pos": 0.066, + "neu": 0.856, + "neg": 0.079, + "_id": { + "$oid": "6711d6decd60fca157e5fb38" + } + }, + { + "text": "Really nice professor. If you have any question, just ask. He always be there help you. I am taking this class now, and l like it. So I want give a good feedback for Pro. Deck. Don't know why his name is Andrew Deck in CCNY system. If you find this page, that means you have pretty good google skill. :)", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb39" + } + }, + { + "text": "Didn't always understand what he was saying, but he always tried to helped. If you put in the effort, he will recognize it. The projects aren't too much if you do the CodeAcademy tutorials and understand the basics.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb3a" + } + }, + { + "text": "Prof Andy is extremely knowledgeable in the field of web designing. His feedback and comments were very constructive and extremely helpful. Come to class with questions and you will be fine. I highly recommend Andy.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb3b" + } + }, + { + "text": "I'm not even sure how I got an A- in his Web Design 1 class when I often found myself confused. He knows a lot about Web (and Star Trek? wow) but he definitely doesn't know how to teach it in a comprehensive manner, making this class quite hectic. At least he's nice!", + "pos": 0.199, + "neu": 0.751, + "neg": 0.05, + "_id": { + "$oid": "6711d6decd60fca157e5fb3c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6decd60fca157e5fb3e" + }, + "professor_name": "Chris Rick", + "rating": 4.4, + "department": "Economics department", + "comments": [ + { + "text": "Just overall a good prof. Funny, cool and willing to compromise to help out students.", + "pos": 0.495, + "neu": 0.505, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb3f" + } + }, + { + "text": "This guy is a delight. He's good at balancing rigor with generosity. He adapts well to what his students need as a whole but within reason. He does give witty commentary but I always thought of them has a mental breaks. He's subtle about how much he cares but he's very thoughtful about his approach to handling the class.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb40" + } + }, + { + "text": "I had him as TA. Very rude person and doesn't teach at all. Just jokes around. That's why I couldn't do well.", + "pos": 0.077, + "neu": 0.728, + "neg": 0.196, + "_id": { + "$oid": "6711d6decd60fca157e5fb41" + } + }, + { + "text": "Explains the concepts very clearly. His tests are not that hard to pass and you need to put time to study them in which it would not be a problem. He is also nice to answer questions if you dont understand the concepts. He is also hilarious and makes the class enjoyable. Overall, I enjoyed his class and learned a lot.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb42" + } + }, + { + "text": "This professor is mad kool and he makes you work for it not like Truggie but he knows a lot which he shares with us. Very funny I enjoyed the semester with him more than Truggie. This is my first ever rate my professor review those who know me I am the oldest remember that. lol", + "pos": 0.226, + "neu": 0.722, + "neg": 0.053, + "_id": { + "$oid": "6711d6decd60fca157e5fb43" + } + }, + { + "text": "Professor Rick is awesome! its unfortunate that didn't teach the entire semester and he was teaching a class full of slackers. Otherwise the professor is great and hilarious too!", + "pos": 0.291, + "neu": 0.633, + "neg": 0.076, + "_id": { + "$oid": "6711d6decd60fca157e5fb44" + } + }, + { + "text": "Took over for Truggie half way through the semester after he had heart surgery. Cool dude. knows his stuff. basically Trugmans grandson.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb45" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6decd60fca157e5fb47" + }, + "professor_name": "Yasm\u00edn Garves", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "Professor Garves is one of the best educators at City College.Since she cares that her students learn the lessons taught in class She teaches us how to prepare ourselves to be better educators in the future she dedicates time to us in class In the same way she assists us outside her office hours if we have questions I recommend her with closed eyes", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb48" + } + }, + { + "text": "I loved the class with Professor Garves. Although there was a lot to do and to study, she made the class engaging with different strategies including the use of technology. I learned strategies to differentiate my teaching, and approaches that never heard before. She is able to rich in case you need to talk to her. In one word she is: AMAZING!", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb49" + } + }, + { + "text": "Definitely, if I could take her for all my classes, I would. The teacher focuses on the learning of her students. She is an inspiring teacher. She helped me a lot, I took two classes with her. The teacher is very flexible. I recommend it 100%", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb4a" + } + }, + { + "text": "This is one of the best professor at City College. Always give feedback and she is very flexible.Professor Garves work with you in every type of way.", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb4b" + } + }, + { + "text": "Profesor Garvez is a great teacher that shares all experiences in and out the classroom. After many years of not being in school, she made my transition a lot easier. Professor Garvez was readily available before and class and willing to give extra help when needed which was greatly appreciated by everyone in the class.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb4c" + } + }, + { + "text": "I don't recommend this professor. She doesn't prepare for the class, finishes early every single session and she doesn't use the book that was required. I don't like to be her student, because she doesn't follow the curriculum. Furthermore she improvises frequently. I am teaching myself, this class is a joke. AVOID HER!!!", + "pos": 0.037, + "neu": 0.827, + "neg": 0.136, + "_id": { + "$oid": "6711d6decd60fca157e5fb4d" + } + }, + { + "text": "Prof Garvez is an amazing educator. She is a true expert as she is also currently a high school teacher (and I had the pleasure of observing her and she is just as fantastic at the high school level). Very clear expectations. She truly cares about her students. I highly recommend taking a class with her.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d6decd60fca157e5fb4e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dfcd60fca157e5fb50" + }, + "professor_name": "Carlos Espinal", + "rating": 3.1, + "department": "Spanish department", + "comments": [ + { + "text": "So annoying, does not translate or explain well. Avoid if you can. Literally just sits and reads the textbook. picks on students.", + "pos": 0.08, + "neu": 0.723, + "neg": 0.198, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb51" + } + }, + { + "text": "He was in a bad mood sometimes, but was overall still great. We had a lot of hw, but exams were easy, so it honestly balanced out. I liked that he followed the textbook to a T and did everything in order, so you always knew what to expect. Super easy to pass, but try to participate in class. He was nice to joke around with during class!", + "pos": 0.354, + "neu": 0.622, + "neg": 0.024, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb52" + } + }, + { + "text": "He assigns a lot of homework, like ALOTTTT. In class he always has a terrible attitude but the class overall isn't hard. Take a different professor if possible", + "pos": 0.106, + "neu": 0.827, + "neg": 0.068, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb53" + } + }, + { + "text": "He takes attendance every class so make sure to show up. I would steer clear from him. You never know what mood he is going to be when he comes to class. He will either be annoyed or semi-happy, but for the majority of classes he was annoyed. It seemed he was annoyed to even be there and when people would ask questions about anything attitude", + "pos": 0.049, + "neu": 0.833, + "neg": 0.118, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb54" + } + }, + { + "text": "Great Professor. Before Covid-19 he would make sure we will all interact and learn the concepts of how to use words with a comedic twist. During Covid-19, he continued that same energy, but what really made him stand out was the compassion he had towards us during this challenging time. He made learning a new language more fun.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb55" + } + }, + { + "text": "Before COVID-19 happened he always interacted with students and makes you want to participate. He is funny and very helpful if you're struggling. Online homeworks. He lectured with ease and during remote learning he was extremely understanding, which is important during a pandemic. I wish I will be at CCNY to take him again! Take him, he is a gem.", + "pos": 0.207, + "neu": 0.753, + "neg": 0.04, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb56" + } + }, + { + "text": "This Professor is great!! He makes sure we all understand the content, is very fair, stays calm towards students, is comfortable with his students and can make us laugh/giggle. He assigns online hw through Pearson (My Spanish lab), the textbook comes with pearson account and you can buy it physically too. He encourages participation.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb57" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6dfcd60fca157e5fb59" + }, + "professor_name": "Servet Iltuzer", + "rating": 3.4, + "department": "Mathematics department", + "comments": [ + { + "text": "He is one of the best Professor in CCNY.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb5a" + } + }, + { + "text": "It was hard to follow his lectures. He doesn't respond to emails quickly. He was nice enough to curve the first exam and give extra credit. The final screwed a lot of us over bc it changed online last minute. It was more conceptual than the review sheets he gave us. I only passed bc I took this class back in high school.", + "pos": 0.078, + "neu": 0.855, + "neg": 0.067, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb5b" + } + }, + { + "text": "This class was difficult as it was calculus but the professor always went over the exams and curved the first exam based on the class average. He also did review before the final and gave study material which really helped. With that being said, you have to put the work in and study a lot because the class is test heavy. The class was pretty fair.", + "pos": 0.101, + "neu": 0.875, + "neg": 0.024, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb5c" + } + }, + { + "text": "This professor is understanding. He curved grades because we all did bad on his first exam. Graded on only 4 things so make sure you do good on those. Make sure you plan your study and hw time. Not the best but better than the other math professors.", + "pos": 0.166, + "neu": 0.754, + "neg": 0.08, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb5d" + } + }, + { + "text": "Very difficult to follow during lectures. Exams are basically your entire grade, no quizzes or curves so you have to do well on exams. Homework is extremely time consuming and only 6% of your grade. Exams were conceptual and extremely difficult. No review sheets given to prepare for exams and the homework wasn't good review either.", + "pos": 0.032, + "neu": 0.772, + "neg": 0.196, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb5e" + } + }, + { + "text": "Homeworks are only worth 6% and are nowhere near similar to the type of questions you get in the online Blackboard exams. This class is extremely test heavy, so you have to do well on the exams and the final in order to pass the class. Other than that, he taught good enough for me to understand the material.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb5f" + } + }, + { + "text": "Good professor, but horrible grading criteria. Hw worth 5% 3 exams 18% each final 40%. If you mess up on an exam there are no make ups, no curved grades, no lowest grade dropped. The reason why this class is so hard is because they arent regular exams. Most of the questions are conceptual which are insanely hard to answer. All students did bad.", + "pos": 0.085, + "neu": 0.648, + "neg": 0.267, + "_id": { + "$oid": "6711d6dfcd60fca157e5fb60" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e0cd60fca157e5fb62" + }, + "professor_name": "Li Haoxu", + "rating": 2.1, + "department": "Mathematics department", + "comments": [ + { + "text": "Not a great professor. He seems he teaches for the paycheck and not for the students if you get what I mean. He would always be 10-30 min late EVERY single class, even on the days we had midterms. His lectures were always fast paced and there were no extra credit opportunity. There were quizzes every class and we had 3 midterms and 1 final.", + "pos": 0.039, + "neu": 0.853, + "neg": 0.107, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb63" + } + }, + { + "text": "Always late. Never makes it up to class for time missed. He gives off \"I could care less\" vibes when you ask him a question about your grade. Takes time grading important tests so you're left wondering for a while. Most importantly, he teaches extremely fast and is very difficult to follow.", + "pos": 0.127, + "neu": 0.789, + "neg": 0.084, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb64" + } + }, + { + "text": "the math is not mathing when he teaches :/", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb65" + } + }, + { + "text": "Usually the professor comes, 5-15 minutes late. He's a good professor, however, he likes to go through lectures pretty quickly, not really seeing if other people are fully understanding what he is saying. There's homework almost everyday, and a quiz every day as well, either at the start of class or end. He can be better, but the class is easy.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb66" + } + }, + { + "text": "One of a few professor who intentionally makes class easy and hilarious many times. He is straight to the point, like he once said \"if you dont feel like you need to be in class and can learn alone, by all means\" He's way of teaching may seem unusual but he does get his point across, just pay attention and it will all go well.", + "pos": 0.135, + "neu": 0.799, + "neg": 0.065, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb67" + } + }, + { + "text": "You only need to spend $80 in this class for a WebAssign code for online HW, the textbook isn't used. You're primarily graded off of quizzes & tests though. (HW is 5%). Should also add that he's pretty lazy when it comes to posting grades so you're left wondering what your current grade is for a few days. Easy A if you do all your work though.", + "pos": 0.084, + "neu": 0.882, + "neg": 0.034, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb68" + } + }, + { + "text": "his class was hard. read from textbook for help. provides review sheets for exams.", + "pos": 0.168, + "neu": 0.745, + "neg": 0.087, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb69" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e0cd60fca157e5fb6b" + }, + "professor_name": "Cody Nager", + "rating": 5, + "department": "American Studies department", + "comments": [ + { + "text": "This Prof. is excellent in every way. His lectures are really interesting. I feel that my writing improved more in this class than in any other that I have taken. The Prof. is willing to look over drafts (if you want) and makes insightful comments to help you improve. This is the only Prof. that you should take this class from.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb6c" + } + }, + { + "text": "WOW EXCELLENT! You must take this course from this prof.", + "pos": 0.536, + "neu": 0.464, + "neg": 0.0, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb6d" + } + }, + { + "text": "3 papers during semester and 1 final take-home exam, was 2 papers, 3 pages each. He gives more than enough time for each, and outside sources can be used. No need to pay attention to lectures at all, but I recommend to bc he is super funny lmao. Overall, super easy class and the prof is funny, definitely a win-win ! better nager than another prof.", + "pos": 0.4, + "neu": 0.571, + "neg": 0.029, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb6e" + } + }, + { + "text": "Made history interesting. Answered all questions. Handled online learning well and also understood if personal issues came up because of the pandemic. Accessible thru email and replied quickly.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb6f" + } + }, + { + "text": "This is the best prof that I have ever had. He was great as an in person lecturer and really made the extra effort when we had to go to online. Kept checking up to make sure that things were going ok. Workload is reasonable (2 papers and a final exam). He made every effort to help you get the most out of his course. I will definitely recommend him.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb70" + } + }, + { + "text": "Awesome professor! 25% essay one 25% essay two 25% attendance 25% final in-class essay. Gives you great feedback, show up and you'll get full 25% for attendance. He helps with the final by giving you what to expect. Really understanding and easy.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb71" + } + }, + { + "text": "Awesome prof. Interesting lecturer who made material relatable. He cared about his students and worked with them to make sure they succeeded. Stayed after class to answer questions for as long as it took and super flexible on office hours. 2 papers and a final that he gave you exactly what to study. Would definitely take a class from him again!!!", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d6e0cd60fca157e5fb72" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e1cd60fca157e5fb74" + }, + "professor_name": "Liu Cen", + "rating": 4.3, + "department": "Theater department", + "comments": [ + { + "text": "She was honestly great! Very caring and understanding! By far my favorite professor at CCNY.", + "pos": 0.563, + "neu": 0.437, + "neg": 0.0, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb75" + } + }, + { + "text": "A sweetheart! Her classes can be boring sometimes. Great professor, easy grader and gives great feedback. Easy class overall. Just keep up with the work.", + "pos": 0.466, + "neu": 0.476, + "neg": 0.058, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb76" + } + }, + { + "text": "Shes super sweet. The class is lecture heavy but as long as you pay attention and do the assignments its an easy pass. Was never into theater/plays before this class but she gave us really good plays to read!!", + "pos": 0.317, + "neu": 0.651, + "neg": 0.032, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb77" + } + }, + { + "text": "Professor Liu is such an amazing woman, so caring and understanding. Like previous comments I could tell she was new to teaching, but this didn't limit whatever she was teaching, as she has a wide breadth of knowledge to share with the class. She's also a student, so her class isn't heavy, the main grade being a final paper broken into 4 parts.", + "pos": 0.129, + "neu": 0.813, + "neg": 0.058, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb78" + } + }, + { + "text": "The professor is a sweetheart but she is still very new at teaching so sometimes she doesn't know what to do. She relies on lectures a lot which can be very boring. The work is easy and most of the readings she gives is not that bad. Gave weekly readings, sometimes they're entire plays which is a bit too much. She assigns a project for the final.", + "pos": 0.163, + "neu": 0.793, + "neg": 0.043, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb79" + } + }, + { + "text": "Lectures a lot, was a nice professor but was constantly confused on what exactly to do in the class.", + "pos": 0.087, + "neu": 0.778, + "neg": 0.135, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb7a" + } + }, + { + "text": "I think we were the first students Professor Liu taught with. From that being said there were a lot of mix ups. She doesnt hand out quizzes but answering short responses are required. Her lectures were heavy and often times I would get lost. Regardless, if you hand things on time and show up to class you will pass.", + "pos": 0.066, + "neu": 0.861, + "neg": 0.073, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb7b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e1cd60fca157e5fb7d" + }, + "professor_name": "Katherine Medina", + "rating": 3.6, + "department": "Psychology department", + "comments": [ + { + "text": "She is great and makes the class interested. She gives extra credit for participating. Quizzes were easy, and the midterm and final were a part accumulation of these quizzes + new questions. Yes, heavy grader with your papers, but if you send the paper for review before the due day, she will give you feedback. Students need to stop being so lazy.", + "pos": 0.14, + "neu": 0.769, + "neg": 0.091, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb7e" + } + }, + { + "text": "Took her class for the winter, it was one of the best classes I had. I agree, she is a tough grader but she does mention this in class. She makes up for it by allowing students to send their papers before hand for feed back, I took advantage and got 100 on the papers. Discussion are a must so get ready to talk. Best class ever!!!", + "pos": 0.26, + "neu": 0.725, + "neg": 0.015, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb7f" + } + }, + { + "text": "I took her class over the winter session. She was very clear in what she expected from us: participate in class discussions, daily quizzes, 3 papers (lowest dropped) and an extra credit opportunity for some points. Not a psych major but she made a tough topic fun to learn about. Just be prepared to work for your grade. Wish she taught more courses!", + "pos": 0.208, + "neu": 0.744, + "neg": 0.048, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb80" + } + }, + { + "text": "Professor Medina is a tough grader but if you are willing to put the work in you will receive a good grade. She made the class very interesting and fun and was willing to extend some of the homework dates in order for everyone to complete the assignments. Be ready to discuss because participation is a huge part of the grade. I recommend her class.", + "pos": 0.293, + "neu": 0.691, + "neg": 0.015, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb81" + } + }, + { + "text": "I enjoyed taking Professor Medinas class, she made the class fun and interesting. While she is a tough grader and particular about how she wants assignments formatted, she is more than willing to work with you and is accessible outside of class. Participation matters!! Be ready for discussions. Would take a class with her again if I could.", + "pos": 0.201, + "neu": 0.776, + "neg": 0.022, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb82" + } + }, + { + "text": "Extremely tough grader; gives you bad grades on your papers and doesn't even specify why. Heavily reliant on discussions and quiz questions that you can find online. Nitpicky about formatting, font, and headings and will penalize you for any little thing. Absolutely would not recommend, take another course.", + "pos": 0.028, + "neu": 0.828, + "neg": 0.144, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb83" + } + }, + { + "text": "SHE IS EXTREMELY HORRIBLE AT GRADING!!!! She gives 3 short papers, midterm, final, and quizzes. However, exam and quiz questions are available on Quizlet. Participation is worth 25% of your grade so if you aren't a talker, expect around an F for this and she grades extremely harshly on papers so good luck!", + "pos": 0.157, + "neu": 0.762, + "neg": 0.082, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb84" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e1cd60fca157e5fb86" + }, + "professor_name": "Ashran Pollard", + "rating": 4.9, + "department": "Speech department", + "comments": [ + { + "text": "He is an outstanding professor who is always available to support his students. He cares about his students and creates a supportive learning environment that informative and also enjoyable. He prepares his students for speeches, providing them with ideas and feedback that help them deliver impressive presentations.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb87" + } + }, + { + "text": "Important to do all Speeches which really are the only assignments. There are three major one's and two small one's. Overall, class is manageable. A book is required but he provided a link to purchase the e-book version.", + "pos": 0.036, + "neu": 0.964, + "neg": 0.0, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb88" + } + }, + { + "text": "Loved Professor Pollard, really nice and easy grader! Four speeches total, attendance was mandatory and he required a textbook but I never bought it and still passed with an A. Would definitely take again!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb89" + } + }, + { + "text": "Easy class, I took mine online so double the easy. The speeches are really easy, you essentially do it on whatever you want. There was a textbook but he streamed it. You can also find the pdf version easily online.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb8a" + } + }, + { + "text": "Literally the best. He is really caring and easygoing with his students. If you are not good at public speaking, he takes the time to help you. If I could take more classes with prof. Pollard, I would with no hesitation.", + "pos": 0.283, + "neu": 0.671, + "neg": 0.046, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb8b" + } + }, + { + "text": "Easy A class! Totally recommend Prof Pollard, he was an easygoing, funny, very down to earth guy. One small speech at the beginning of the semester and three main speeches throughout the rest, all of them super easy (you can literally write them the day before it's due). All you have to do is follow the speech outlines and you should be fine.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb8c" + } + }, + { + "text": "Great Prof :))", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d6e1cd60fca157e5fb8d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e2cd60fca157e5fb8f" + }, + "professor_name": "Vicki Garavuso", + "rating": 2.3, + "department": "Education department", + "comments": [ + { + "text": "She seems really nice. But there was no clear feedback and options to regrade something. Shes such an old head teacher and its her way or no way", + "pos": 0.063, + "neu": 0.766, + "neg": 0.171, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb90" + } + }, + { + "text": "Tough grader.", + "pos": 0.0, + "neu": 0.4, + "neg": 0.6, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb91" + } + }, + { + "text": "Doesnt explain what needs to be done throughly. Everything was online and she wasnt lenient on grading or taking works out. She goes of track when speaking about something. Doesnt give clear feedback. No option to re submit which was the worst being that we online should give more options. Would not take her ever again. No clear feedback.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb92" + } + }, + { + "text": "it was a pleasure being in her class. If you do what is expected, then there is no problem.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb93" + } + }, + { + "text": "Does not clarify specifically.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb94" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb95" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb96" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e2cd60fca157e5fb98" + }, + "professor_name": "Michael Cramer", + "rating": 3.1, + "department": "Media Arts department", + "comments": [ + { + "text": "The work was okay but as a professor I didn't really like him all that much. He'll call on you if you think you're not paying attention. He'll expect you to remember specific movie lines that we wouldn't even discuss in class. There is an exam at the end but there's not that many questions.Homework mainly consisted of disccusion questions.", + "pos": 0.023, + "neu": 0.929, + "neg": 0.048, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb99" + } + }, + { + "text": "Probably one of the easiest and most straight forward professors I've had so far at ccny. If you participate YOU WILL PASS. He likes when people make an argument to prove their point. He seemed like he hated me at first but definitely did not if he graded me with all A's. He is funny and makes class simple and enjoyable.Must do chapter questions!", + "pos": 0.197, + "neu": 0.745, + "neg": 0.058, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb9a" + } + }, + { + "text": "He is a really great and understanding professor. Towards the end a couple of people were missing assignments and he let them know. He allowed them to bring them in late or help bring their grade up. His jokes can be corny but they are funny. He works with you, answer emails and makes the class entertaining. A real great person", + "pos": 0.259, + "neu": 0.72, + "neg": 0.021, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb9b" + } + }, + { + "text": "I honestly found him intimidating at first, dreaded going to his class. But later on he magically got nicer and the impossible happened- I got an A!", + "pos": 0.184, + "neu": 0.688, + "neg": 0.129, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb9c" + } + }, + { + "text": "Great summer class teacher, likes videos, real easy grader. Ridiculous laugh but pretty energetic and interested in the material. Cake.", + "pos": 0.597, + "neu": 0.351, + "neg": 0.051, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb9d" + } + }, + { + "text": "he was horrible ..he talks about nothing and he only likes when you agree what he says! dont take him just a waste of time", + "pos": 0.161, + "neu": 0.638, + "neg": 0.2, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb9e" + } + }, + { + "text": "He is a good professor, he is sorta funny, and he really knows what he is talking about. Easy professor. I recommend him.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d6e2cd60fca157e5fb9f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e2cd60fca157e5fba1" + }, + "professor_name": "Sang-Woo Seo", + "rating": 3.1, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Exams don't make sense", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6e2cd60fca157e5fba2" + } + }, + { + "text": "i fail", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d6e2cd60fca157e5fba3" + } + }, + { + "text": "He is a harsh grader but is very caring. Just because he is a very picky grader does not mean you will not pass the class. Professor curves, and he is fantastic and friendly. He is very understanding and understands where you come from.", + "pos": 0.249, + "neu": 0.716, + "neg": 0.035, + "_id": { + "$oid": "6711d6e2cd60fca157e5fba4" + } + }, + { + "text": "He is a very nice and caring professor unlike many others in EE at the CCNY. Took him for Semi II. Did average on exams and ended up getting a B+. In overall material is not hard to grasp, but it's a lot of it to digest. Exams are doable but require lots of practice and reading to do well. Spent 12h preparing for every exam and received a B+.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d6e2cd60fca157e5fba5" + } + }, + { + "text": "he cool as hell, but study hard. he curves.", + "pos": 0.137, + "neu": 0.498, + "neg": 0.365, + "_id": { + "$oid": "6711d6e2cd60fca157e5fba6" + } + }, + { + "text": "Students Didn't understand most of thethings he teached in class. The tests were very hard. However, make a good formula sheet and study the figures from the book. He curves big time at the end. With 55 and 69 in the midterms I ended up with a A- so he is an easy grader.", + "pos": 0.099, + "neu": 0.872, + "neg": 0.029, + "_id": { + "$oid": "6711d6e2cd60fca157e5fba7" + } + }, + { + "text": "Very nice guy but still new to teaching. Not much examples in class and hard time understanding him. I guess you have to read the book like 3 times or google. Overall he's ok so far.", + "pos": 0.194, + "neu": 0.767, + "neg": 0.038, + "_id": { + "$oid": "6711d6e2cd60fca157e5fba8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e3cd60fca157e5fbaa" + }, + "professor_name": "Eric Taxier", + "rating": 1, + "department": "Music department", + "comments": [ + { + "text": "just dont", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbab" + } + }, + { + "text": "Taxier is a nice guy, but a terrible teacher. He's incredibly dull and uninteresting, and clearly forgets that he's teaching undergrad students - he often whips out information without much context and just expects you to understand it. To be honest, I haven't heard a single person say a single good word about him as a teacher. Avoid at all costs.", + "pos": 0.175, + "neu": 0.686, + "neg": 0.139, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbac" + } + }, + { + "text": "AWFUL. He forgets he is teaching an undergrad level and tries to be extra analytical with things that are already established. He doesn't give you a clear imagine of what he's supposed to teach and instead confuses you with irrelevant facts. Boring and not passionate at all. DO NOT TAKE HIM.", + "pos": 0.044, + "neu": 0.77, + "neg": 0.186, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbad" + } + }, + { + "text": "Awful, not clear, boring, teaches like a grad school professor even though I'm not sure if he actually teaches grad school. Music history classes need a more enthusiastic professor and with more passion. I don't recommend this professor to anyone. He's got so much to learn.", + "pos": 0.192, + "neu": 0.65, + "neg": 0.158, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbae" + } + }, + { + "text": "I'm a scholar and got my first C- in my last year while my all other classes are A's, the same semester!!! Do I have to say much? absolutely horrible teacher!!!! Has no idea what he is doing!", + "pos": 0.0, + "neu": 0.834, + "neg": 0.166, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbaf" + } + }, + { + "text": "do NOT take his class. don't know what he is teaching in the class. even though i do all my readings and listenings.. i thought he was teaching grad level.. he tries to be other professor he admires. but seriously, he is awful!!! i've waited 2yrs to take this class. and he totally messed up!! i don't recommend this inst. please don't take his class", + "pos": 0.061, + "neu": 0.765, + "neg": 0.174, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb0" + } + }, + { + "text": "I had this professor for Music History Classical to Romantic, and I learned nothing history related. He spends the whole time teaching as if he's teaching to grad students with Schenkerian Analysis and EXPECTS you to understand without explaination. I would not take a class taught by this teacher, unless you intentionally want to fail. the class.", + "pos": 0.065, + "neu": 0.878, + "neg": 0.057, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb3" + }, + "professor_name": "Gabriel Foreman", + "rating": 5, + "department": "Business department", + "comments": [ + { + "text": "Professor Foreman is an Amazing professor lectures were very interesting he's very understanding so as long as you do the work. Assignments were based on readings and group assignment.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb4" + } + }, + { + "text": "Prof. Foreman made the class approachable by letting groups choose projects and use class concepts to build their social enterprise. Weekly homework from textbook readings and group assignments were manageable, and the textbook was easy to understand. While some students didn't take it seriously, he worked hard to keep everyone engaged.", + "pos": 0.128, + "neu": 0.847, + "neg": 0.025, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb5" + } + }, + { + "text": "Professor Gabriel Foreman was AMAZING! He is always available to answer any questions you may have pertaining to the work and even business associated to your own personal development. He genuinely cares about his students and it truly shows! If you need to take business courses, look no further! Take his class!!!", + "pos": 0.188, + "neu": 0.777, + "neg": 0.036, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb6" + } + }, + { + "text": "He Is great, I took the class in the summer of 2024. There are a handful of papers however he comments on them and helps you improve. Very understanding and respectful professor!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb7" + } + }, + { + "text": "Professor Gabriel Foreman is one of the best in the Economics department. He is so understanding, strict about AI tool misuse, and allows multiple assignment resubmissions. He helped me achieve perfect grades by letting me resubmit assignments up to four times, something no other professor has permitted. HIGHLY RECOMEND HIS CLASS!!", + "pos": 0.145, + "neu": 0.818, + "neg": 0.037, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb8" + } + }, + { + "text": "I took this professor during my last year here at ccny as social entrepreneurship class and this was my first time back in campus since corona. He made it very understandable and was very understanding as to my situation at home as well as others and allowed us to finish missing assignments! Super professional and does not sugar coat anything!", + "pos": 0.1, + "neu": 0.866, + "neg": 0.033, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbb9" + } + }, + { + "text": "AMAZING AMAZING. Highly Recommended. Professor Foreman's ability to give feedback is outstanding. Very understanding and Easy going. This particular class has been such a valuable one since I myself is very interested in entrepreneurship. You'll learn how to do market research, competitive analysis and craft a business plan along with your pitch !!", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbba" + } + }, + { + "text": "Professor Foreman was an excellent educator. He was very easy going with the deadlines. Gave us several opportunities to make up our assignments. On top of that very understanding. TRUST ME YOU'LL never regret taking his courses. He actually teaches you something you'll need in your professional career. You'll attain tons of real life value !!!!", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbbb" + } + }, + { + "text": "I would describe my professor as excellent at explaining the course material and being easy to understand. He provided homework assignments that encouraged critical thinking and helped in the development of our projects. Despite the workload being substantial due to it being a summer session, it was manageable and not impossible to handle.", + "pos": 0.178, + "neu": 0.784, + "neg": 0.038, + "_id": { + "$oid": "6711d6e3cd60fca157e5fbbc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e4cd60fca157e5fbbe" + }, + "professor_name": "Melissa Huey", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Awesome professor! She is really funny and is creative in trying to find interesting ways to teach the class. Willing to go over the material as many times as needed to understand. Explains everything up front so there is no confusion later on in the semester. Definitely recommend taking her for any classes she teaches!", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbbf" + } + }, + { + "text": "Ok so I took Statistics with her which I was prepared to be bored to tears by. Not the case. She managed to make statistics FUN and INTERESTING. Great sense of humor. Actually got to know all of the students, learned all of our names and made us feel like she cared about us. SO great!", + "pos": 0.376, + "neu": 0.573, + "neg": 0.051, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc0" + } + }, + { + "text": "She is a GREAT professor. Took her over the summer and she shattered my expectations. Her class keeps you engaged and she gives great examples which helps you learn the material. Take her (very short) intro class over the summer instead of going through a whole semester. It was a GREAT and abbreviated class.", + "pos": 0.272, + "neu": 0.684, + "neg": 0.044, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc1" + } + }, + { + "text": "BEST TA for PSY102 (: She is very funny which keeps you engaged during class. I NEVER fell asleep or felt bored! Keeps you up to date on deadlines for assignments and quizzes. She makes learning fun, considering psych as my major. I wish she was staying at CCNY because I would love to take her again during the Fall semester. AMAZING PERSON!", + "pos": 0.346, + "neu": 0.63, + "neg": 0.024, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc2" + } + }, + { + "text": "Simply put, she's amazing. Such a friendly person with an amazing sense of humor. She makes every concept in psychology understandable! Might even make consider a major in psychology. Loved her!", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc3" + } + }, + { + "text": "She's the best TA for psych 102! Makes all the lessons fun and enjoyable. She truly makes learning fun! Take her!", + "pos": 0.522, + "neu": 0.478, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc6" + }, + "professor_name": "Stephanie Fischer", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "If in any doubts, Go to her. She explain with clarity.", + "pos": 0.194, + "neu": 0.647, + "neg": 0.158, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc7" + } + }, + { + "text": "Stephanie is awesome. She's super nice and makes things super clear. One of the best professors at City, hands down. Really takes the time to help you learn the material and is an easy grader. Definitely take her if you get the chance.", + "pos": 0.491, + "neu": 0.509, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc8" + } + }, + { + "text": "Prof Fischer is really good considering how young she is. she knows a lot and is able to answer your questions unlike some professors who just ignore students . I took a summer class with her and actually looked forward to going to class. has funny life stories too and gets the class to participate", + "pos": 0.101, + "neu": 0.858, + "neg": 0.041, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbc9" + } + }, + { + "text": "Steph is so helpful, always available. Offers a ton of extra credit, she is an easy grader too. She provides all the questions for the exam through fun games like jeopardy, which also gives you extra credit. also makes everything available through black board, like powerpoints and videos. Read the text, study, you'll definitely do amazing with her.", + "pos": 0.342, + "neu": 0.618, + "neg": 0.04, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbca" + } + }, + { + "text": "She's super nice and gives really interesting lectures. She can be quite funny and also easy on the eyes. Some students had trouble understanding concepts even though she is really clear at explaining things, but still she was really patient with them and made efforts to help more. You can tell she cares about being a good professor.", + "pos": 0.323, + "neu": 0.652, + "neg": 0.025, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbcb" + } + }, + { + "text": "She really cares about her students and is very helpful. She might seem strict at first but because she really wants the students to learn the material. She isn't a hard grader and actually took the time to help me write better papers. Gives good test reviews. Students from different instructors even came to her class because she is great!", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbcc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e4cd60fca157e5fbce" + }, + "professor_name": "Paul Naish", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "This man is amazing! He is so enthusiastic about history it's contagious. Take his class!", + "pos": 0.371, + "neu": 0.524, + "neg": 0.105, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbcf" + } + }, + { + "text": "Wow. I didn't know how great an instructor could be until taking Prof. Naish. He gives invaluable writing criticism and generously offers time to answering questions. His lectures are dynamic and he empowers students to think critically. He absolutely respects students. You will definitely work hard but passionately - and be very glad in the end.", + "pos": 0.268, + "neu": 0.656, + "neg": 0.076, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbd0" + } + }, + { + "text": "Naish is a wacky wonderful professor. He gives lots of constructive feedback on essays & encourages us to see him during office hours almost everyday if we have any questions or want to discuss a history topic. He gives little pop quizzes, so come to class having read the book. Don't be afraid to challenge history; he encourages it.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbd1" + } + }, + { + "text": "He's a very knowledgable professor. He's funny too. His lectures are very interesting. You don't even need to read the book, that's how good his lectures are. Just ask questions so you get participation credit. he gives too many papers (5) and three exams. But we were his first class, maybe he gives less assignments now.", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbd2" + } + }, + { + "text": "He's awesome! Really enthusiastic about history and he can be funny. The books you read for class are interesting, and he spaces out assignments throughout the semester so that the work doesn't feel overwhelming.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbd3" + } + }, + { + "text": "Awesome teacher! Makes class interesting and he's really insightful. I always enjoy attending his class and wish I could take another class with him.", + "pos": 0.394, + "neu": 0.606, + "neg": 0.0, + "_id": { + "$oid": "6711d6e4cd60fca157e5fbd4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e5cd60fca157e5fbd6" + }, + "professor_name": "Andi Cupallari", + "rating": 4.3, + "department": "Economics department", + "comments": [ + { + "text": "Extremelly smart guy, I learned a lot from him! Only 1 midterm and a final. Gives 100 review questions. 30 questions on a midterm (20 of which are from the review) and 40 questions on a final (30 of which are from the review), multiple choice. So make sure you understand them and practice at least twice! Anything you need to know is on the slides", + "pos": 0.084, + "neu": 0.916, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbd7" + } + }, + { + "text": "He is an absolutely brilliant guy. Take his course. There is a steady supply of homework but nothing that is too difficult or demanding. The most you get out of the class is experienced in class, attendence!!", + "pos": 0.06, + "neu": 0.796, + "neg": 0.145, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbd8" + } + }, + { + "text": "good", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbd9" + } + }, + { + "text": "Fair grader, gives clear instructions and does a pretty good job explaining the material. Classes mainly consist of powerpoint presentations which is great.", + "pos": 0.456, + "neu": 0.544, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbda" + } + }, + { + "text": "If youre actually trying to learn and not only pass a class, not for you. He simply reads off the PowerPoint by yelling and doesnt seem interested in teaching at all. Its mostly just you teaching yourself this course for the entire semester. If youre paying out-of-pocket I wouldnt recommend this class, unless youre trying to teach yourself", + "pos": 0.0, + "neu": 0.928, + "neg": 0.072, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbdb" + } + }, + { + "text": "He's pretty awesome. Practice exams are similar to the actual exams. Make sure to study and actually understand the questions. Learned much for his once a week hybrid class.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbdc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e5cd60fca157e5fbde" + }, + "professor_name": "Hao Su", + "rating": 4.2, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "You will get an excellent project out of this class- so just bear with him. At CCNY, we barely get any course that focuses on control. So, this class is a nice change. He has some really good TAs who will help-- You just need to go to them. Pay attention to the labs, as they will show you how to control various tools with Arduino!", + "pos": 0.169, + "neu": 0.812, + "neg": 0.019, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbdf" + } + }, + { + "text": "Professor Su cares about his students to learn mechatronics. He and his team put a lot of efforts in this course to enable us to learn a lot about robotics. The projects are not only great but also have research value. Students get the opportunities to present it in conferences and even file patents.", + "pos": 0.14, + "neu": 0.824, + "neg": 0.035, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe0" + } + }, + { + "text": "Great guy! Easy A. Group projects.", + "pos": 0.646, + "neu": 0.354, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe1" + } + }, + { + "text": "This course takes a lot time as we need to design and build robots but I learnt a lot in this course. He spent a lot of time to develop course infrastructures like the mechatronics kit, very caring about helping students to learn. We learn loadcell calibration, IMU sensors and motor control. A lot of exciting stuff covered in the lectures.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe2" + } + }, + { + "text": "He is very knowledgeable and a true expert in mechatronics. He is also very caring and responsive. He meets with teams quite often with positive feedback about projects and presentations. This course teaches cutting edge robotics technologies and addresses real-world problems. We simply love it.", + "pos": 0.289, + "neu": 0.641, + "neg": 0.071, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe3" + } + }, + { + "text": "Had 2 exams, final group project, 1 out of 4 labs, and about 5 HWs. He's a good teacher but gets disorganized and is sometimes unprepared. It was his first semester, but he should get much better as time goes. Exams were based on what was discussed in class, nothing unexpected.", + "pos": 0.102, + "neu": 0.848, + "neg": 0.049, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe6" + }, + "professor_name": "Eddie Schnebel", + "rating": 3.9, + "department": "Biology department", + "comments": [ + { + "text": "He is a lovely and articulate professor. He is a wonderful teacher who weaves humor and relatable references to bring material to life. You know what you are responsible for and if you cant cut it in this his classes then you need to seek help with your studying skills. I highly recommend him.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe7" + } + }, + { + "text": "Horrible!!!!!!!!!!! he needs to go back to teaching college or wherever he came from. he's lame and he can't teach. his test were stupid and pointless and every time i asked him what was going to be on the test, he always talk about \"look at your notes\". What Notes? I would study 4 hours and still fail his test. he's horrible. TRUST ME!!!!!!!!!!!!!", + "pos": 0.05, + "neu": 0.726, + "neg": 0.224, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe8" + } + }, + { + "text": "He is a great guy, nice teacher but he should try teaching Bio 101 rather than 206. YOU WILL NOT LEARN ANY GENETICS!!! in his class, he only reviews bio 101 material. He does not do any problems (b/c he doesnt know how to) if you really want to learn genetics take Prof. Li she is much better at teaching and helping you understand.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbe9" + } + }, + { + "text": "Excellent Teacher. Explains topics really well. Tests are not easy, but do come from the notes, and their are a lot of them. If you study you should do really good. Made the subject intresting.", + "pos": 0.203, + "neu": 0.755, + "neg": 0.041, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbea" + } + }, + { + "text": "Excellent professor. All exams are based on the leccture and the lecture is very clear. The exams are not cumulitive of the previous work.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbeb" + } + }, + { + "text": "Dr. schnebel is very easy. All you need is to take good notes in his class and his exams come staight from the notes. no suprises what so ever.its a good summer course to take at city college. (CCNY)", + "pos": 0.199, + "neu": 0.753, + "neg": 0.047, + "_id": { + "$oid": "6711d6e5cd60fca157e5fbec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e6cd60fca157e5fbee" + }, + "professor_name": "Atushi Tomita", + "rating": 3, + "department": "Languages department", + "comments": [ + { + "text": "He's a native Japanese professor who knows modern Japan language that we actually need to learn, unfortunately he attempts to use a new textbook ALONG with the red book, BIG mistake, you will get confused using two textbooks on different materials put together, if you are serious about Japanese I recommend going to a language school to continue", + "pos": 0.039, + "neu": 0.829, + "neg": 0.131, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbef" + } + }, + { + "text": "TAKES time to explain to you what he means, he is a good teacher overall, seriously don't pay attention to the other reviews, the reason this class might be troublesome is because the department makes us use this complicated red textbook that wastes time explaining. Otherwise Sensei would want us to use Genki or Japanese for Busy People. Fun class!", + "pos": 0.133, + "neu": 0.793, + "neg": 0.073, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf0" + } + }, + { + "text": "Really cool and down to earth teacher. The problem is that he isn't very fluent in english so at times you can't understand him and he does jump around a little. But I think if you really want to learn japanese then you have to learn from a native. Japanese isn't easy so you have to study very hard! Otherwise,his class is fun!", + "pos": 0.12, + "neu": 0.784, + "neg": 0.096, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf1" + } + }, + { + "text": "Not helpful at all. Learned nothing, self studying the text book was better.", + "pos": 0.179, + "neu": 0.678, + "neg": 0.144, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf2" + } + }, + { + "text": "He's all right. Not too helpful, jumps around too much", + "pos": 0.0, + "neu": 0.794, + "neg": 0.206, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf3" + } + }, + { + "text": "AWESOME TEACHER!!! He is hard in a good way. He is a native Japanese so he is a good choice. Had fun in his class, never an easy A if you don't want to learn.", + "pos": 0.31, + "neu": 0.585, + "neg": 0.105, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf6" + }, + "professor_name": "Ioannou Ioannis", + "rating": 3.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "This was the assistant professor for my 276 class. A good guy but needs to work on understanding how to answer and respond to the student's questions. Good grader.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf7" + } + }, + { + "text": "Tries hard to explain the material and does examples straight from the book. One weakness is that if you ask a question, he sometimes doesn't understand it, gets abit angry but lets it go pretty quick. If you study you're self, its an easy class. Generous grader.", + "pos": 0.237, + "neu": 0.675, + "neg": 0.089, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf8" + } + }, + { + "text": "He gets upset very easily but will smile right away. You should have courage to cheat. exams are confusing. but gives partial credits.", + "pos": 0.344, + "neu": 0.435, + "neg": 0.221, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbf9" + } + }, + { + "text": "Young guy with an accent, but you get used to it after a while. He got stuck a few times in class, but will answer if you have questions. Exams are fair, but you must study. He grades fairly, once you understand the concept you get 80% of the credit. Even if the semester goes bad, you still have a chance of a good grade with just the final.", + "pos": 0.153, + "neu": 0.759, + "neg": 0.087, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbfa" + } + }, + { + "text": "He's alright. Just study a lot. Goes pretty quick with the material.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbfb" + } + }, + { + "text": "Nice Professor. Strict on cheating", + "pos": 0.298, + "neu": 0.319, + "neg": 0.383, + "_id": { + "$oid": "6711d6e6cd60fca157e5fbfc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e7cd60fca157e5fbfe" + }, + "professor_name": "Theodor Maghrak", + "rating": 3.3, + "department": "Anthropology department", + "comments": [ + { + "text": "This class is a niche class. What I mean by that is that he is good if you are pursuing an anthropology or archaeology major. He is very hard if you are just doing this for liberal arts level 200 credit. I do not recommend because he has lots of readings and that his takehome essays are filled with unclear guidelines. Takehome midterm worth 35%!", + "pos": 0.106, + "neu": 0.814, + "neg": 0.08, + "_id": { + "$oid": "6711d6e7cd60fca157e5fbff" + } + }, + { + "text": "lectures are boring. goes over material that is basic and common sense.", + "pos": 0.0, + "neu": 0.827, + "neg": 0.173, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc00" + } + }, + { + "text": "Amazing lectures and class discussions. Assigns hw which makes up a good chunk of your grade. Exams are straight forward, and always holds review sessions and uploads review sheets.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc01" + } + }, + { + "text": "Gives a lot of reading. Very hard tests. Attending class is essential to passing", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc02" + } + }, + { + "text": "His discussions are always entertaining and eye-opening. He is very clear in his expectations and syllabus. Class is interesting, I'm sad the semester is over. He gives clear review sheets to straightforward exams. He does his best to help the student.", + "pos": 0.327, + "neu": 0.617, + "neg": 0.056, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc03" + } + }, + { + "text": "He is an amazing teacher and he deserves a lot of respect for his time and dedication to teaching. Respect him and do your part (READ ALL ASSIGNMENTS!!!!! DO HOMEWORK!) and you will do well. He respects everyone and helps you inside and outside of class. He is one of my best teachers and I so happy that I was lucky enough to have him! AMAZING!!", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc04" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e7cd60fca157e5fc06" + }, + "professor_name": "Pat Muchmore", + "rating": 4, + "department": "Music department", + "comments": [ + { + "text": "Boring, tough grader and offers absolutely no extra credit. His jokes aren't funny either", + "pos": 0.095, + "neu": 0.378, + "neg": 0.527, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc07" + } + }, + { + "text": "Had him for ear training. It's a shame he's leaving CCNY because he's a patient, approachable, funny, and knowledgable professor. Like everyone else here said, he wants everyone to pass and pays attention to what the class is struggling with. He'll let you know where you stand throughout the semester. Tests are straightforward and not long.", + "pos": 0.085, + "neu": 0.821, + "neg": 0.093, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc08" + } + }, + { + "text": "Amazing professor! Super knowledgeable and it's clear his priority is for all his students to understand the concepts. Had him for Theory 1, 2, and 3.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc09" + } + }, + { + "text": "Took him for Theory 1 & 2. One of the best professors in the department. Really knowledgeable, approachable, and always ready to explain. He gives an assignment per week and if the class wasn't confident in the week's topic he will give us an extra week to work on it. He wants you to pass. Midterm & final are straightforward.", + "pos": 0.101, + "neu": 0.859, + "neg": 0.04, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc0a" + } + }, + { + "text": "Probably one of the best professors at CCNY. Very understanding, very willing to help, the tests can be a little lengthy and he loses me from time to time in lectures but overall a great guy who will always help you if you put in the effort. Extremely knowledgeable every step of the way.", + "pos": 0.214, + "neu": 0.76, + "neg": 0.026, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc0b" + } + }, + { + "text": "Professor Muchmore is hilarious and tries to make music theory as fun as possible. He always gives time during the class for questions and asks if he is making things clear. The text book used is super heavy and he makes you bring it every day. As well as the course in general moves very very fast, so if you miss one day catching up is hard.", + "pos": 0.188, + "neu": 0.771, + "neg": 0.042, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc0c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e7cd60fca157e5fc0e" + }, + "professor_name": "Andrey Rudenko", + "rating": 4.3, + "department": "Biology department", + "comments": [ + { + "text": "Honestly one of my fav professors ever and the most interesting biology course I have ever taken. I love how passionate he is about the topics he lectures on. Makes fair exams strictly on the slide content and sometimes requires thinking. It is not him who makes the exams hard it is just sm info but best class ever. Take if you have the chance", + "pos": 0.257, + "neu": 0.728, + "neg": 0.016, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc0f" + } + }, + { + "text": "he's a nice guy & understandable but his lectures can be cut in half the time. too much in between talk & repeats the same thing more than 3x per slide. slides are also too jammed, it's distracting & hard to follow. i hate that i have to endure this for many more lectures to go. tests are fair tho & he def knows what he's teaching", + "pos": 0.062, + "neu": 0.783, + "neg": 0.155, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc10" + } + }, + { + "text": "not easy", + "pos": 0.0, + "neu": 0.294, + "neg": 0.706, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc11" + } + }, + { + "text": "Prof. Rudenko has been an excellent advisor who always available to help and give good advice. He is also one of the most intelligent professors that I have the pleasure to have for Neurogenetic & Behavior. It is a class consist of 1 presentation and 3 tests. He gives 8 points curve for every exam. You always see his passion for neuroscience.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc12" + } + }, + { + "text": "Great professor; he teaches concepts very well, especially considering it's a brief cell/molec bio course. Very helpful during office hours and even outside of that. He focuses more on the understanding of content for his exams rather than on details; be prepared to know why things happen and how. Take him if you can.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc13" + } + }, + { + "text": "This guy is amazing. Just take him. He's very nice and his exams are not a surprise. If every professor at this school was this nice, it'd be much better. He is not easy so don't expect that but he's really helpful, clear and amicable.", + "pos": 0.291, + "neu": 0.654, + "neg": 0.055, + "_id": { + "$oid": "6711d6e7cd60fca157e5fc14" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e8cd60fca157e5fc16" + }, + "professor_name": "Laura Glasser", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "I love Laura!! She was a new professor but she was always prepared and put together. She cares so much about what she's teaching and her lectures are always super interesting with cool anecdotes. Theres a lot of material to cover but I always loved going to class. She also gave us bagels and candy on test days:)) a true queen, take her!!", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc17" + } + }, + { + "text": "She is a blessing from the heavens above. I've been having a tough semester and she always came in clutch. She's fun, extremely caring, and an overall amazing professor. One of the few professors that I'm comfortable talking to and to joke around with. Her syllabus may scare you but she's very lenient about everything. TAKE HER IF YOU CAN!!", + "pos": 0.254, + "neu": 0.699, + "neg": 0.047, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc18" + } + }, + { + "text": "Super straight forward & clear grading criteria on 1 midterm, 1 final, 1 visual analysis essay and 1 research paper . Participation is mandatory. The class is very easy the only difficult part of this class is the midterm and final. If you memorize the art pieces and know the art historical context and significance you will pass.", + "pos": 0.219, + "neu": 0.745, + "neg": 0.037, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc19" + } + }, + { + "text": "Lectures are structured to be very easy to follow, understand, and study from. Ask questions if you don't understand the material, pay attention, study the materials provided, come to class (on time), and you will do fine. She makes sure to deliver why art is important and give you the chance to be smart in front of friends in any museum.", + "pos": 0.237, + "neu": 0.743, + "neg": 0.02, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc1a" + } + }, + { + "text": "Really great professor. Really passionate about art so the lectures are really interesting. She is always willing to help through email or in person. Only stressful thing was memorizing 50 + pieces of work for the exams only to have about 10 chosen.", + "pos": 0.25, + "neu": 0.69, + "neg": 0.06, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc1b" + } + }, + { + "text": "Great professor, would take her again for sure. Makes sure you get the information and is glad to answer any questions for give advice if you need any. The textbook isn't necessary but I would recommend getting the Barnet book. Both textbooks will most definitely help you ace the course but you could also get by without them.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc1c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e8cd60fca157e5fc1e" + }, + "professor_name": "Patterson Beckwith", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "Barely answers emails and during the pandemic was very insensitive", + "pos": 0.0, + "neu": 0.804, + "neg": 0.196, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc1f" + } + }, + { + "text": "He is a really good professor. He cares about student and gives really good feedback on your work. Show up in class, shot the rolls on time and do his extra credit.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc20" + } + }, + { + "text": "He requires 25 prints at the end of the semester. Do not show up to class late or unprepared because he will mark it down as tardiness. He gives very good feedback on your prints. No exams, textbook or quizzes. You may shoot whatever you like and he is very encouraging. He also gives extra credit to make up for the tardiness.", + "pos": 0.165, + "neu": 0.771, + "neg": 0.063, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc21" + } + }, + { + "text": "No Exams or quizzes. Need atleast 20 prints by the end of the semester along with 12 contacts sheets. He gives you freedom to shoot whatever you want with the exception of the first two assignments designed to get you familiar with the camera functions. You have to buy all your own stuff: camera, rolls,paper etc. He's chill but hates tardiness.", + "pos": 0.056, + "neu": 0.837, + "neg": 0.107, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc22" + } + }, + { + "text": "Amazing professor. He gives good feedback. Every week a roll of film. Group critique only during Midterm and Final. Easy class if you love photography. Keep in mind you need a film camera and A LOT of photo paper. I suggest you buy K&M one bc its way more cheaper but still similar quality. And sometimes you need to work on prints during open hours.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc23" + } + }, + { + "text": "Beckwith is a great professor. He is very helpful and it always there to answer your questions. You basically have to shoot a roll per week and you have to go on your own time to the darkroom. He gives you the opportunity to shoot whatever you like as long as its not homeless people or shots taken on campus. Def. recommend him.", + "pos": 0.198, + "neu": 0.739, + "neg": 0.063, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc24" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e8cd60fca157e5fc26" + }, + "professor_name": "Denis Hoffman-Brandtt", + "rating": 3.3, + "department": "Architecture department", + "comments": [ + { + "text": "People like her should not teach. 0 people skills. Big Ego with 0 implimentation of it in a practice. Putting students down infront of the class. If you can - dont take her.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc27" + } + }, + { + "text": "Denise was one of the best professors I have ever had (and I have degrees from several Ivies). I found the course very challenging, and yes, she is tough. But she is incredibly smart and inspiring, I wish I could take the course again. Final projects in this seminar were group video projects. Very vague instructions but great output in the end.", + "pos": 0.293, + "neu": 0.666, + "neg": 0.041, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc28" + } + }, + { + "text": "Incapable of communicating with anyone she considers beneath her. Unfortunately, that would include the entire student body. This woman seems to have no interest in teaching other than to demonstrate her own intelligence.", + "pos": 0.078, + "neu": 0.733, + "neg": 0.189, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc29" + } + }, + { + "text": "Tough class tough concepts, but great professor. True intellectual- made you feel proud to be going into the field", + "pos": 0.537, + "neu": 0.389, + "neg": 0.075, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc2a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc2b" + } + }, + { + "text": "not in 1st year anymore but awsome professor", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6e8cd60fca157e5fc2c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e9cd60fca157e5fc2e" + }, + "professor_name": "Chaelon Costello", + "rating": 3, + "department": "Speech department", + "comments": [ + { + "text": "Not only will she give you great feedback shes makes the class more lively. She loves everyone of her students even though she has a lot. If you have the chance to take her class, please do . She is very considerate and understands that students have more than one class to worry about. Easy A if you put the time and effort in.", + "pos": 0.269, + "neu": 0.695, + "neg": 0.036, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc2f" + } + }, + { + "text": "There is no extra credit for the class. If you don't do well in the speeches, you will fail this class. Participating is very important and 20 percent of your grade. If you don't read the textbook, she will give out pop quizzes. If you want an A+, I would recommend a different professor.", + "pos": 0.094, + "neu": 0.751, + "neg": 0.155, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc30" + } + }, + { + "text": "If you skip class, you are screwed! She knows how to teach and says that she cares but she doesn't. She is so rubric-based. She gets mad when you don't read the textbook. I would not recommend it since your GPA will deteriorate. She makes the class awkward. She isn't lenient on grading although she says she cares but doesn't.", + "pos": 0.083, + "neu": 0.731, + "neg": 0.186, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc31" + } + }, + { + "text": "She has high expectations. She will not tell you when to read or what assignments you should. She said, \"No one will be getting an A in this class unless you are some great actress or actor\" so be ready to get below an A. She claims to have told you the assignment details but in reality, she never did. Don't take her because she is terrible.", + "pos": 0.061, + "neu": 0.882, + "neg": 0.057, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc32" + } + }, + { + "text": "one of the best professors! she makes the class so fun and informative at the same time. although it 's a speech class, she makes us feel comfortable enough to give our speeches. participation matters the most. i had her online and in person, she is amazing either way. if u hate giving public speeches, she will literally help u like it", + "pos": 0.302, + "neu": 0.652, + "neg": 0.046, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc33" + } + }, + { + "text": "That is the best professor I had so far in city college. She is amazing. She gives positive energy and she is fair in grading, you will never regret taking her. She makes her class fun. Easy to pass I had her in campus and online. She does great in both. In class and online makes it fun and you will enjoy. She will be always there whenever you need", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc34" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e9cd60fca157e5fc36" + }, + "professor_name": "Bernardo Campoy", + "rating": 3.8, + "department": "Art department", + "comments": [ + { + "text": "His lectures were really boring. He also assigns a lot of homework and gives less time for tests and too many questions. I would not recommend it.", + "pos": 0.0, + "neu": 0.842, + "neg": 0.158, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc37" + } + }, + { + "text": "Can't stand this professor. His lectures were boring and he is unhelpful and rude when you ask any clarifying questions. Grades way too difficult for an intro level class and makes you hand write study guides that are worth more than the test. Takes points off if you don't use class lecture material but his lectures are impossible to follow.", + "pos": 0.056, + "neu": 0.86, + "neg": 0.084, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc38" + } + }, + { + "text": "I like his class, he has great energy which makes you ay attention and participate in the class :) easy midterm and final if you listen and also take notes and remember the images name because it's important in this class.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc39" + } + }, + { + "text": "Professor Campoy is an absolute gem! He's hilarious which made the class fun and his lectures are clear. He gives easy homework and review sheets at the beginning of the semester for each test. I should of gotten a higher grade but thats my fault, I took on too much of a work load but if you balance everything you're sure to get an A :)", + "pos": 0.193, + "neu": 0.761, + "neg": 0.046, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc3a" + } + }, + { + "text": "1: total 3/4 Tests + study sheet (Please take those tests very serious, study sheetpoints, students can use those study sheet during test. I have a lot of notes at my study sheets, so the tests is not difficult for me 2: take some notes during lecture, read the PPT he provided, easy and fun homework every week(get your points easily).", + "pos": 0.187, + "neu": 0.79, + "neg": 0.023, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc3b" + } + }, + { + "text": "The best Professor I ever take. Easy A One presentation 3 quizzes : one of them is take home quiz, for another two u can use cheat sheet,", + "pos": 0.202, + "neu": 0.712, + "neg": 0.085, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc3c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6e9cd60fca157e5fc3e" + }, + "professor_name": "Charles Dolph", + "rating": 2.5, + "department": "Anthropology department", + "comments": [ + { + "text": "Worst professor I ever had in my life", + "pos": 0.0, + "neu": 0.631, + "neg": 0.369, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc3f" + } + }, + { + "text": "Such a worst professor, DON\"T TAKE HIM, even if you see some good reviews, don't trust that. Don't take him and don't ruin your grade. He has attitude, he pretends like he is nice but trust me no. So bad at grading stuff and tough grader.", + "pos": 0.196, + "neu": 0.584, + "neg": 0.22, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc40" + } + }, + { + "text": "I really tried my best in his class but he is such a tough grader for exam short responses, wants a specific amount of words, and gives certain amounts of points, Isn't the point of short responses for them to be SHORT. The exams are graded so unfairly the two short responses are half of your grade and multiple choice is only a point each.", + "pos": 0.078, + "neu": 0.897, + "neg": 0.025, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc41" + } + }, + { + "text": "So we had quizzes which were easy. But his exams the short response were graded harshly. And the weekly post were annoying and harshly graded too.", + "pos": 0.066, + "neu": 0.814, + "neg": 0.12, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc42" + } + }, + { + "text": "We had a weekly quiz and short answer based on the chapter we had that week. Lectures are a little boring.", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc43" + } + }, + { + "text": "He's a good professor. Many discussion boards and a couple of weekly quizzes but that was the only homework. There were three exams in total. He's very understanding and really tries to make the class interesting. Participate (he lets you type or speak) when you get the chance, but he won't force you. The class was asynchronous which was a plus.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d6e9cd60fca157e5fc44" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eacd60fca157e5fc46" + }, + "professor_name": "Joshua Moritz", + "rating": 3.3, + "department": "Economics department", + "comments": [ + { + "text": "Very fair grader and made the class interesting", + "pos": 0.469, + "neu": 0.531, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc47" + } + }, + { + "text": "MKT4561-Solid professor, he is a bit disorganized with the hws and does not have the neatest blackboard layout but he isn't strict at all with grading and lets you submit assignments late with a very high grade. He had us do weekly hws, 3 group projects, 3 quizzes, but no final. Some hws you will definitely need to do outside learning for.", + "pos": 0.053, + "neu": 0.858, + "neg": 0.089, + "_id": { + "$oid": "6711d6eacd60fca157e5fc48" + } + }, + { + "text": "MKT 4561-Marketing Analytics Spring 2023 at Baruch college\n\nI was very mixed about this guy in the beginning since his assignments are all disorganized but overall, pretty solid professor. He encourages engangement and gave me good hw grades for assignments that were very late and was very generous when grading group projects and presentations.", + "pos": 0.275, + "neu": 0.702, + "neg": 0.023, + "_id": { + "$oid": "6711d6eacd60fca157e5fc49" + } + }, + { + "text": "Just don't. I am taking him right now and it is taking everything in me to not drop it. The instruction is very unclear and dates are mixed up. He assigns so many group projects and assignments every week. The class is basically all group work. The work itself is not difficult but it is a lot. He nitpicks a lot on the writing assignments.", + "pos": 0.044, + "neu": 0.931, + "neg": 0.025, + "_id": { + "$oid": "6711d6eacd60fca157e5fc4a" + } + }, + { + "text": "Unclear assignments, exams have errors, project not clear. Overall a very easy class that becomes difficult simply because hes not the best professor in being clear of assignments.", + "pos": 0.148, + "neu": 0.535, + "neg": 0.317, + "_id": { + "$oid": "6711d6eacd60fca157e5fc4b" + } + }, + { + "text": "Very unclear Professor when it comes to assignments. His agenda is not concrete, and assignments change. Even some of the exams had questions that were not making sense. Although he makes up for his mistakes by giving you credit if he messed up, just a headache to point it out to him. Overall, not the best but not the worst professor.", + "pos": 0.115, + "neu": 0.78, + "neg": 0.105, + "_id": { + "$oid": "6711d6eacd60fca157e5fc4c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eacd60fca157e5fc4e" + }, + "professor_name": "Kevin Perez", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Really enjoyed the class, will definitely take again, Professor was really understanding and kept the class engaged every time!", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc4f" + } + }, + { + "text": "Kevin is an awesome professor very professional.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc50" + } + }, + { + "text": "he is was great and super understanding !", + "pos": 0.58, + "neu": 0.42, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc51" + } + }, + { + "text": "Professor Perez is very knowledgable in his field, and is extremely passionate about bilingual education and social justice. He has high expectations and will push students to produce quality work. He really cares about the success of his students and will accommodate office hours outside of his set schedule.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc52" + } + }, + { + "text": "I really enjoyed this class and the Professor Kevin he made me feel like there was no wrong answer, anything you answer he always found a way to connect it to the topic we were speaking about.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc53" + } + }, + { + "text": "Professor Perez is AMAZING! He is so smart and puts a lot of effort into his class. He really makes you feel like you belong and values everyone's contributions. I highly recommend him-- I can't wait to take another class with him!", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc54" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eacd60fca157e5fc56" + }, + "professor_name": "Konstantinos Panagiotakis", + "rating": 3.1, + "department": "Sociology department", + "comments": [ + { + "text": "Okay so your grade is based off 3 exams. Those will be the 3 days you meet in person. For the exam, he gives you the test paper and a mini notebook to write answers. He demands that you write the ENTIRE question down in the mini notebook for every question. So even when the question is fill in the blank, you have the copy down like 3-4 sentences.", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc57" + } + }, + { + "text": "Overall good professor. Overall class grade is based on 3 in-class exams. Attendance is essential so show up. He really doesn't teach, reads off the lecture notes which are like 5 to 6 pages long. To pass this class make sure to read ALL lecture notes he provides and to understand the material.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d6eacd60fca157e5fc58" + } + }, + { + "text": "Drags the lesson. This professor is so boring, I have to take an energy drink most days just to not doze off. For some reason he loves to give pop quizzes (biweekly). When explaining yourself you MUST explain in detail everything you say including the simple words. Definitely the most annoying professor for me this semester.", + "pos": 0.128, + "neu": 0.755, + "neg": 0.116, + "_id": { + "$oid": "6711d6eacd60fca157e5fc59" + } + }, + { + "text": "Hes not a bad professor, your final grade is based on pop quizes, maybe about 4 or 5, a midterm and final. No classwork, homework etc. Just make sure you study the packet he gives you. He also gives you an idea when there will be a pop quiz. So its not that much of a surprise.", + "pos": 0.116, + "neu": 0.849, + "neg": 0.035, + "_id": { + "$oid": "6711d6eacd60fca157e5fc5a" + } + }, + { + "text": "He takes to much time explaining the lesson he loves talking about his country Greece which was mad annoying... He gives quizzes without telling you. He's grading is terrible.", + "pos": 0.098, + "neu": 0.663, + "neg": 0.239, + "_id": { + "$oid": "6711d6eacd60fca157e5fc5b" + } + }, + { + "text": "Spends a lot of time explaining and making sure you understand the material. Pay attention and maybe answer a few questions in class and you'll never need to crack open a textbook.", + "pos": 0.068, + "neu": 0.89, + "neg": 0.042, + "_id": { + "$oid": "6711d6eacd60fca157e5fc5c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ebcd60fca157e5fc5e" + }, + "professor_name": "Alexander Raspopin", + "rating": 2.7, + "department": "Physics department", + "comments": [ + { + "text": "Professor Raspopin is clearly very knowledgeable and likes to introduce interesting/real-world topics alongside course material, which makes class fun. His tests can be difficult, but the curves help a lot, and he will help if you ask. For exam prep, drilling practice problems from the textbook helped a lot. Homework also applies to the test.", + "pos": 0.198, + "neu": 0.723, + "neg": 0.08, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc5f" + } + }, + { + "text": "Professor Raspopin gives an in-depth learning approach to Physics. His understanding is unparalleled and he can provide excellent practice problems.", + "pos": 0.152, + "neu": 0.738, + "neg": 0.111, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc60" + } + }, + { + "text": "DO NOT TAKE HIS CLASS. The lectures were very hard to follow, they had no structure and were messy. He expects you to understand the topics with little to no explanations and is rude when you ask him questions. The exams were nothing like the homework. Unless you have a lot of experience in physics, avoid this professor.", + "pos": 0.0, + "neu": 0.765, + "neg": 0.235, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc61" + } + }, + { + "text": "This professor was a tough grader but towards the end he did curve the grades so it turned out fine. The exams are supposed to be from the worksheets but it wasn't similar at all. So I would recommend practice as many questions as possible from the textbook.", + "pos": 0.112, + "neu": 0.864, + "neg": 0.024, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc62" + } + }, + { + "text": "This lab course was unnecessarily complicated. When explaining and demonstrating the lab, Professor Raspopin was not very clear. When following up and asking him to clarify or assist, his explanations were half-hearted and he didn't care. Sad to say but unless you understand the subject matter you will have to teach yourself.", + "pos": 0.054, + "neu": 0.882, + "neg": 0.065, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc63" + } + }, + { + "text": "Please just avoid this man. He claimed exams were going to be similar to homework and review sheets BUT WERE THE OPPOSITE. The first exam was fair but the 2nd midterm and final were completely unfair. Majority of the class dropped. He curved but because of extreme cheating, curves were unfair. Did calculus even though it's algebra-based physics.", + "pos": 0.064, + "neu": 0.719, + "neg": 0.217, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc64" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ebcd60fca157e5fc66" + }, + "professor_name": "Brittany Vicars", + "rating": 3.4, + "department": "English department", + "comments": [ + { + "text": "Cool teacher, felt heard and seen. I changed my major to English because of this class.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc67" + } + }, + { + "text": "A very passionate and enthusiastic educator. She is a \"fun\" professor, but expects you to do the work - which is A LOT. I fell behind and she was very helpful in getting me caught up.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc68" + } + }, + { + "text": "Lots of writing, fair grader, cool vibe", + "pos": 0.479, + "neu": 0.521, + "neg": 0.0, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc69" + } + }, + { + "text": "Good and fair teacher. Not a strict grader and she gives extensions if you need it. Only problem is there's a lot of writing, a lot.", + "pos": 0.168, + "neu": 0.744, + "neg": 0.087, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc6a" + } + }, + { + "text": "Assigns prompts that make you think about yourself and how you relate to the world, clear and concise instructions, she also makes time for offie hours if you ever need anything clarified. I found her class enjoyable and I learned a lot luminaries of the Harlem Renaissance. She helped me understand my voice and my place in the college campus.", + "pos": 0.087, + "neu": 0.913, + "neg": 0.0, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc6b" + } + }, + { + "text": "She doesn't provide a syllabus so you cannot work ahead. She also assigns papers to be due by the next class without any instructions. Her favorite thing seems to be creating writing prompts and assignments out of thin air. Also, all these writing assignments... she doesn't read them!!! So you do all this work for nothing.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc6c" + } + }, + { + "text": "Hands out syllabus first day of class but DOES NOT FOLLOW IT. You will be lost in this class. Randomly assigns homework on a Sunday morning through email and expects next day. Assignes homework off the top of her head. Nothing is thought through. Inaccessible through email, will tell you in person \"I got your email\" but not address your concerns.", + "pos": 0.034, + "neu": 0.92, + "neg": 0.046, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc6d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ebcd60fca157e5fc6f" + }, + "professor_name": "Alessandra Benedicty", + "rating": 3.8, + "department": "French department", + "comments": [ + { + "text": "doesn't have the bandwidth for \"teaching\" - asynch course, constantly behind, wrong stuff uploaded. A post prompt is 3 sentences long, then 5 paragraphs on how to disagree etc. Needs to re-record old lectures where she's distracted and flustered and crams loads of concepts in that don't go. Invites reaching out then never responds or weeks late.", + "pos": 0.019, + "neu": 0.798, + "neg": 0.183, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc70" + } + }, + { + "text": "Amazing Human Being and Fantastic professor. The work load and content is heavy, but if your goal is to improve as a scholar, then work is a necessary difficulty.", + "pos": 0.233, + "neu": 0.682, + "neg": 0.085, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc71" + } + }, + { + "text": "Great teacher. A lot of reading, writing and every week homework.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc72" + } + }, + { + "text": "I just had this professor at the downtown campus of City College (CWE). I thought this professor was really hard. However, I learned so much, and really improved my writing skills. I found her to be a little eccentric at times, but nice.", + "pos": 0.125, + "neu": 0.847, + "neg": 0.029, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc73" + } + }, + { + "text": "AMAZING TEACHER!! If you're looking to take french semester, take her class. She is very accomodating to her students. She takes out time to help any one who needs help. She also maintained a very stress free environment. She would play good french music, and show french films, and at the end of the semester we went out for dinner. Amazing class!", + "pos": 0.291, + "neu": 0.67, + "neg": 0.038, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc74" + } + }, + { + "text": "She's an amazing teacher. She keeps class interesting and stress free. If you are struggling in the class she will take the time out to approach you privately and address the problem. She shows a french film, and plays french music everyday. She is also funny, caring, and sweet. The class was most enjoyable!", + "pos": 0.322, + "neu": 0.568, + "neg": 0.11, + "_id": { + "$oid": "6711d6ebcd60fca157e5fc75" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eccd60fca157e5fc77" + }, + "professor_name": "Jennifer Lane", + "rating": 4.3, + "department": "Biology department", + "comments": [ + { + "text": "Great Professor. She actually cares about her students and wants them to succeed in her class. She teaches well. I'm sure most of us were business students, but she made sure to teach in a way that we would grasp the information and always answered all questions. Take her!!!!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc78" + } + }, + { + "text": "I had Comparative Anatomy Lab with her at Baruch College. She is pretty clear and her class refers to the infos in the book, basically. She explains well and helps you with your dissections. If you study in a normal average youll have good grades in the practical exams. I wish that she was the Lecture professor too.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc79" + } + }, + { + "text": "I took her class at Baruch for the Summer. She is very nice. Very straightforward answers on the tests and quiz questions. Just make sure study your notes, but that's to be expected of you anyway. Lovely person", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc7a" + } + }, + { + "text": "I took Professor Lane for anatomy lab at Baruch. She is incredibly nice, smart, helpful, clear, and will explain anything to you as many times as you need to fully understand it. Quizzes and practically are very straight forward, and she will prepare you very well. I wish more lab professors were as great as her.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc7b" + } + }, + { + "text": "She's a nice lab teacher. Very helpful and doesn't mind explaining things, very knowledgable. Tries to help students to do well.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc7c" + } + }, + { + "text": "She's a good lab instructor I guess. She can get a little carried away when it comes to dealing with her paleontological stuff. But overall, she's good and knows what she's doing.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc7d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eccd60fca157e5fc7f" + }, + "professor_name": "Corinne Shearer", + "rating": 3.8, + "department": "English department", + "comments": [ + { + "text": "I honestly dislike this class, she uses these calendars to help us through the semester, but I dislike them, I didn't find her feedback helpful at all. Don't get me wrong she is a sweet person, but the way she teaches I don't like it. Bring a notebook because u will be doing free writes in the beginning of class btw she does check them", + "pos": 0.232, + "neu": 0.673, + "neg": 0.095, + "_id": { + "$oid": "6711d6eccd60fca157e5fc80" + } + }, + { + "text": "Communicates well about her expectations for her students. I like how she uses calendars and google drive and labels everything so it's easy to find things. Isn't a hard ass and brings doughnuts to class. Obvious that she's the type who wants us to learn and succeed. Fair grader.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc81" + } + }, + { + "text": "Overall her class is very easy, However, when explaining what she expects for the assignment she lacks clarity and overcomplicates the tasks. She comes up with the most basic questions for free writing and wants it on paper only which she's very strict about. The Class was interesting and fun in the beginning but towards the end, it became boring.", + "pos": 0.151, + "neu": 0.805, + "neg": 0.044, + "_id": { + "$oid": "6711d6eccd60fca157e5fc82" + } + }, + { + "text": "While she is kind and lenient with work, she is a new teacher and gives unclear instructions. She tends to backtrack and relies on mainly peer review for our essays. She does not listen to new input or ideas and barely puts anything on blackboard. Nonetheless, She is brilliant and the class isn't hard, but her teaching lacks clarity.", + "pos": 0.166, + "neu": 0.811, + "neg": 0.023, + "_id": { + "$oid": "6711d6eccd60fca157e5fc83" + } + }, + { + "text": "I took her FIQWS Fairy Tales and Rewritings class (composition section). She's a very good professor and when she gives us assignments, we have time to peer review multiple days for all 4 major essays. She's super nice and helpful if you have any questions, she isn't boring or anything like that. Would 100% take her again :))", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc84" + } + }, + { + "text": "This professor was my favorite professor so far. Was very kind and lenient with work. Gives amazing feedback and makes everything very clear in class.", + "pos": 0.441, + "neu": 0.559, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc85" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eccd60fca157e5fc87" + }, + "professor_name": "Bingmei Fu", + "rating": 3.7, + "department": "Biomedical department", + "comments": [ + { + "text": "This class is passfail, as others have said show up and pass. You can miss class 3 times except for BME day. It's mostly guest lectures and understanding the BME department. Also, there is one very open-ended essay that's due at the end, it's about a page to two pages. Overall, this class was pretty easy and gave you a taste of the BME department.", + "pos": 0.088, + "neu": 0.89, + "neg": 0.023, + "_id": { + "$oid": "6711d6eccd60fca157e5fc88" + } + }, + { + "text": "Show up and you'll pass. Class was mostly just guest lectures, no projects or homework. The final was a one page paper. Pretty easy, plus you can meet professors and ask if they have lab placements available.", + "pos": 0.144, + "neu": 0.804, + "neg": 0.052, + "_id": { + "$oid": "6711d6eccd60fca157e5fc89" + } + }, + { + "text": "This is a pass/fail class despite it being one credit. Powerpoints every class. It can get boring at times. I don't think anyone can fail this class. There is a project and presentation at the end. But, you don't need any real presentation skills. Just talk and you'll be fine. Don't go over 10 minutes or your classmates will hate you.", + "pos": 0.047, + "neu": 0.822, + "neg": 0.131, + "_id": { + "$oid": "6711d6eccd60fca157e5fc8a" + } + }, + { + "text": "Great professor, all you gotta do is sit and listen, or you could doze off, it doesn't matter she just gives power-points. Laugh at her jokes just to make her feel good, otherwise its pretty boring.", + "pos": 0.328, + "neu": 0.602, + "neg": 0.07, + "_id": { + "$oid": "6711d6eccd60fca157e5fc8b" + } + }, + { + "text": "Great class, learned a lot, quiz everyday, few homeworks, no mid-term, no final, and one project split into two. Thick accent is horrible plus she and the TA are low talkers.", + "pos": 0.15, + "neu": 0.653, + "neg": 0.196, + "_id": { + "$oid": "6711d6eccd60fca157e5fc8c" + } + }, + { + "text": "Very Helpful professor, I recommend her so much.", + "pos": 0.482, + "neu": 0.518, + "neg": 0.0, + "_id": { + "$oid": "6711d6eccd60fca157e5fc8d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6edcd60fca157e5fc8f" + }, + "professor_name": "Laura Villa", + "rating": 3.5, + "department": "Spanish department", + "comments": [ + { + "text": "She's extremely helpful, and the class was fun, entertaining, organize, i really like her teaching.", + "pos": 0.524, + "neu": 0.476, + "neg": 0.0, + "_id": { + "$oid": "6711d6edcd60fca157e5fc90" + } + }, + { + "text": "Look. Her English is bad but she is a great teacher. Entertaining, creative and challenging in a way that will help you learn the language.", + "pos": 0.469, + "neu": 0.474, + "neg": 0.056, + "_id": { + "$oid": "6711d6edcd60fca157e5fc91" + } + }, + { + "text": "She needs to be trained better. Her Quizes are ridiculous. There are about 5-6 pages and she always assume that we have time to study the night before for her Quiz. We have other classes. She is not helpful and she is not organized. She is very sloppy. She cant even speak english, half of the time it was difficult to understand her..Good Luck, to", + "pos": 0.081, + "neu": 0.819, + "neg": 0.1, + "_id": { + "$oid": "6711d6edcd60fca157e5fc92" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6edcd60fca157e5fc93" + } + }, + { + "text": "Muy Bueno Profesora! She replaced Mu\u00f1oz for Spanish 225. That was the best thing that happened to me. I almost dropped the class b/c of Mu\u00f1oz. Profesora Villa was very helpful and a lot of fun. Very orgranized and orderly. If you study, you will have no problems. You will definitely learn alot from her class! Take Her!", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d6edcd60fca157e5fc94" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6edcd60fca157e5fc96" + }, + "professor_name": "Emily Balic", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "Amazing. She makes you think on your own, analyze facts, and come to your own conclusions. Read the books (they're pretty interesting too) and participate. Think outside the box. No final or tests (this this class), just two short papers and a final project (no paper invloved just a presentation). HIGHLY reccomended! :)", + "pos": 0.218, + "neu": 0.748, + "neg": 0.034, + "_id": { + "$oid": "6711d6edcd60fca157e5fc97" + } + }, + { + "text": "Great Scholar, Great Class. Highly recommended!", + "pos": 0.779, + "neu": 0.221, + "neg": 0.0, + "_id": { + "$oid": "6711d6edcd60fca157e5fc98" + } + }, + { + "text": "Definitely one of the best of a good group at City College. Very helpful and always interesting", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d6edcd60fca157e5fc99" + } + }, + { + "text": "Great Lectures, couple of films. She expects a lot of participation and your grade depends on it - so be ready to speak. There is a fair amount of reading and it is necessary to read nearly all of it. The papers are straightforward and if you find anything confusing she is extremely generous with her time. Highly recommend you take her class.", + "pos": 0.209, + "neu": 0.765, + "neg": 0.026, + "_id": { + "$oid": "6711d6edcd60fca157e5fc9a" + } + }, + { + "text": "Very smart and really knows her stuff. Expects everyone to do the reading (she assigns alot) but is a good grader.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d6edcd60fca157e5fc9b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6edcd60fca157e5fc9d" + }, + "professor_name": "Karin Agha Fisher", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Cute in a nerdy kinda way. Good Professor. Classes were long and kinda dull but when you take a 3 hour Psychology class that starts at 9am on a Saturday there probably isn't much she could do to help that. She always responds to email and is an easy grader. Multiple choice tests.", + "pos": 0.184, + "neu": 0.77, + "neg": 0.046, + "_id": { + "$oid": "6711d6edcd60fca157e5fc9e" + } + }, + { + "text": "She is one of the easiest professor i have ever had in ccny. attendance is mandatory as it worth 1 point for each class and if you are late then its half points. i took this class in saturday,we had only one term paper which is super easy. i got a A- because i didn't do that good on class exams. if you read the books you will get an A for sure", + "pos": 0.181, + "neu": 0.79, + "neg": 0.029, + "_id": { + "$oid": "6711d6edcd60fca157e5fc9f" + } + }, + { + "text": "pleasent to look at, smart, very helpful if you put in the work. Stats seem to be her life. Getting her respect is through studying. She is foriegn, but her pronounciation is clear as are her expectations. A lot of work in this class! Half HW is graded, half is not. Keep up with homework and you shall do fine. Actively participate in class.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d6edcd60fca157e5fca0" + } + }, + { + "text": "Great Prof. she is very helpful, as long as you do all the hw's and read the chapters you'll do great. All the work including the exams are in Aplia.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d6edcd60fca157e5fca1" + } + }, + { + "text": "At first I thought it would be a difficult class however as time went on she breakdown the curriculum. Explains everything, always replies to e-mails and gives opportunity to help your grade.", + "pos": 0.149, + "neu": 0.784, + "neg": 0.068, + "_id": { + "$oid": "6711d6edcd60fca157e5fca2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eecd60fca157e5fca4" + }, + "professor_name": "Shantanu Roy", + "rating": 4.8, + "department": "International Studies department", + "comments": [ + { + "text": "professor Roy is AMAZING, now that I finish his class I c how good he was, I learned to respect international thoery of hair styles, I am on a study abraod program in Yemen, and i witnessing his ideas on live broadcast, my name has 2 y's", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d6eecd60fca157e5fca5" + } + }, + { + "text": "I LOVE THIS Professor. He is the best one for Theory hair. He is like the role model for hair stylist. As far as i know he makes the policy of city college hair style. Thanks professor for stealing my hair for yours.", + "pos": 0.258, + "neu": 0.676, + "neg": 0.066, + "_id": { + "$oid": "6711d6eecd60fca157e5fca6" + } + }, + { + "text": "Professor Shantanu has changed my life, before his class I was a engineer major. He has convinced me to aspire my dream and become a hair stylist, at the end of this course I cried because his class has ended! He is very well versed and gives a good amount of helpful homework. May god bless his beautiful soul!", + "pos": 0.299, + "neu": 0.666, + "neg": 0.035, + "_id": { + "$oid": "6711d6eecd60fca157e5fca7" + } + }, + { + "text": "in my Free Syria activism, I've learned about the vital role fashion plays in mobilization of movements. Professor Roy taught us about how great revolutionaries like G Washington and Gandhi's hairdos had impact. If you want to engage in alternative theories and nontraditional discourse, take this class. I wanna take his intl hair analysis class.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d6eecd60fca157e5fca8" + } + }, + { + "text": "Professor Shantanu's International Hair Analysis class was really eye-opening. I never knew how different hairstyles affected cultural paradigms. I hope to take his Arab Fashion class in the fall.. highly recommended!", + "pos": 0.151, + "neu": 0.803, + "neg": 0.046, + "_id": { + "$oid": "6711d6eecd60fca157e5fca9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6eecd60fca157e5fcab" + }, + "professor_name": "Jehyun Ro", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "I took his MAT209. It was amazing class. He is funny and care students. He wants all of his students to be successful in his course. If you study hard, you will get A.", + "pos": 0.311, + "neu": 0.658, + "neg": 0.032, + "_id": { + "$oid": "6711d6eecd60fca157e5fcac" + } + }, + { + "text": "This professor is one of the most AMAZING teachers I have ever had. He really shows that he cares about you passing and he makes something that seems so complicated, to something EXTREMELY understandable and simple. He also understands that school can get tough so he tries to throw in some jokes to get you to remember what you've learned in class", + "pos": 0.142, + "neu": 0.837, + "neg": 0.022, + "_id": { + "$oid": "6711d6eecd60fca157e5fcad" + } + }, + { + "text": "I took this professor at Bergen Community College during the summer. BEST PROFESSOR EVER. He made Calculus clear and exciting. His positive attitude towards the subject makes the students want to do better for themselves. Gives out extra credit opportunities. I earned a B.. never thought i'd do that well in math.. ever.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d6eecd60fca157e5fcae" + } + }, + { + "text": "professor Ro had been very friendly and helpful during the whole semester. I took his Cal 2 Saturday class(yes, it is intensive), and at every beginning of the class we had quiz, which was helpful for preparing the mid-termfinal. Even he doesn't collect any hw, but he really cares about if we study hard and pass with a great grade.", + "pos": 0.226, + "neu": 0.751, + "neg": 0.022, + "_id": { + "$oid": "6711d6eecd60fca157e5fcaf" + } + }, + { + "text": "I had Professor Ro for Calc 205 and Calc 209. He is the only reason why I love math. His exams are exactly what the hw and quiz questions are. Nothing tricky, just give time to studying and you'll do wonderfully. Also an amazing person. Absolutely loved this class.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d6eecd60fca157e5fcb0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6efcd60fca157e5fcb2" + }, + "professor_name": "Silmilly Toribio", + "rating": 4.9, + "department": "Chemistry department", + "comments": [ + { + "text": "At the beginning I thought I was going to do bad in the lab because shw took 1 point of because I miss a 0! But it was just a warning lol Prof. Toribio is amazing! She really cares about students and if they understand the material. Fair grader, offers you help, very positive! She is a very good TA and I hope I can get her again. I love this lab 3", + "pos": 0.372, + "neu": 0.567, + "neg": 0.062, + "_id": { + "$oid": "6711d6efcd60fca157e5fcb3" + } + }, + { + "text": "Keep up the great work Professor Toribio. I got a lab grade of 96 because of her. She saved my grade for Chem. Be happy u got her.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d6efcd60fca157e5fcb4" + } + }, + { + "text": "She awesome. I thought I would fail but she told me not to worry. When She told everyone their final grade everyone was satisfied. She cares about students and doesn't want them to fail.", + "pos": 0.274, + "neu": 0.555, + "neg": 0.171, + "_id": { + "$oid": "6711d6efcd60fca157e5fcb5" + } + }, + { + "text": "Toribio is amazing. I just finish my class with her. Most of the class came out with a grade of 90+. Worse case I think was an 86. Be glad u have her. I wish she would do Chem 104. Don't feel upset if she takes off points because at the end she'll give participation points if you showed up to all the labs on time and not make up any off them.", + "pos": 0.141, + "neu": 0.821, + "neg": 0.037, + "_id": { + "$oid": "6711d6efcd60fca157e5fcb6" + } + }, + { + "text": "Very helpful in explaining the lab procedures, but a bit harsh when grading the lab reports. She doesn't let students see the grading rubric until everyone is finished with lab. She should give it before students start the lab. Overall good lab TA, but a bit harsh when grading the reports.", + "pos": 0.097, + "neu": 0.776, + "neg": 0.127, + "_id": { + "$oid": "6711d6efcd60fca157e5fcb7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6efcd60fca157e5fcb9" + }, + "professor_name": "Linda Lui", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "AMAZING Professor, she gives excellent feedback and there is no finals. It is just a final paper. She is dow to earth and participation matters. She is just nice and understands others regardless by different opinions and knowledge. There is a lot of reading and be sure to come to class early. I was only one minute late and was marked absent.", + "pos": 0.199, + "neu": 0.771, + "neg": 0.03, + "_id": { + "$oid": "6711d6efcd60fca157e5fcba" + } + }, + { + "text": "The Professor has 4 major writing assignments . There is a digital portfolio due at the end of the semester, which is dependent on those assignments plus any classwork and minor homework you will have to do. She also takes attendance on the dot and 4 absences is an automatic fail. Good Prof., but if you don't understand something, email her ASAP.", + "pos": 0.03, + "neu": 0.935, + "neg": 0.035, + "_id": { + "$oid": "6711d6efcd60fca157e5fcbb" + } + }, + { + "text": "Great professor. Just do the homework and participate and you will be fine.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d6efcd60fca157e5fcbc" + } + }, + { + "text": "She is ...Interesting to say the least. First impression might be a hit or miss but she warms up to you eventually. I had her for a creative workshop and i actually enjoy the class and the structure of it. The syllabus was pretty organized. Sheis a good professor however she has tendency to kind of take herp oint of view as \"standard\"", + "pos": 0.283, + "neu": 0.7, + "neg": 0.017, + "_id": { + "$oid": "6711d6efcd60fca157e5fcbd" + } + }, + { + "text": "She is the best ever!!!!!! She is extremely helpful and a very interesting person too. I'd recommend her to anyone.", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d6efcd60fca157e5fcbe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6efcd60fca157e5fcc0" + }, + "professor_name": "Thomas Collins", + "rating": 3.6, + "department": "English department", + "comments": [ + { + "text": "He is chill and is an easy grader. Professor Collins is down to Earth and understands where people are coming from. His quizzes are so easy and is mostly about common sense. He gives out extra credit if you really want to learn. It is an easy A. You need to write proposals, technical description, letter, lab report analysis and a writing portfolio.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d6efcd60fca157e5fcc1" + } + }, + { + "text": "Hard grader", + "pos": 0.0, + "neu": 0.417, + "neg": 0.583, + "_id": { + "$oid": "6711d6efcd60fca157e5fcc2" + } + }, + { + "text": "Best Instructor I had so far!!! extremely cool and caring. You can ask him any question in class and he replies to emails right away. Gives a lot of feedback on your work and a very kind person. Take him!!!", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d6efcd60fca157e5fcc3" + } + }, + { + "text": "If you are taking other classes (engineering/science) that are difficult, good luck making time for them. Professor is really cool guy but his class consumes so much time. Little papers scattered everywhere. Again, cool guy, but don't do this to yourself if you want to dedicate time for your major classes. NOT AN EASY A. Please don't for GPA sake.", + "pos": 0.185, + "neu": 0.735, + "neg": 0.08, + "_id": { + "$oid": "6711d6efcd60fca157e5fcc4" + } + }, + { + "text": "Great teacher.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d6efcd60fca157e5fcc5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f0cd60fca157e5fcc7" + }, + "professor_name": "Anne Becker", + "rating": 1.6, + "department": "World Humanities department", + "comments": [ + { + "text": "She gave us no syllabus, making different excuses for it at each class. We didn't have a book list. Then she stopped showing up for class a month in and once the WHUM department heard about it they replaced her with a new professor. We wasted a month and basically had to start over in more of a rush.", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcc8" + } + }, + { + "text": "She seems to be a very intelligent and nice professor. She knows her material and always refer to other sources connecting the subject that she talks about.However,her explanations and questions are very unclear due to her nervousness. her nerves makes her unable to talk naturally and speaks with high vocab words. Overall great grader & personality", + "pos": 0.158, + "neu": 0.754, + "neg": 0.089, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcc9" + } + }, + { + "text": "I honestly feel bad for her. Her nerves get the best of her and cause her to fail as a teacher. She doesn't finish her sentences and when she does want to say it uses high vocabulary causing many students to question what she is speaking about. Her test were composed of material we didn't even go over in class. I learned nothing from this class.", + "pos": 0.11, + "neu": 0.766, + "neg": 0.124, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcca" + } + }, + { + "text": "She's super nice and very young. She's quite unorganized though. Her discussions depend on your classmates. She's very articulate but doesn't show it well which isn't good as a professor. She missed some classes when I took her. But the class was easy. Just readings, class discussions, 2 papers and 2 exams (both fairly easy).", + "pos": 0.177, + "neu": 0.704, + "neg": 0.119, + "_id": { + "$oid": "6711d6f0cd60fca157e5fccb" + } + }, + { + "text": "Young teacher. Easy A. Good points - lenient, promotes open discussion, 2 essays and 2 exams(Mid and Final), generally pleasant. Bad points - disorganized, seemed unsure of herself, felt like reading the books wasn't necessary - which is bad in a WHUM class. If you read or have read the books you'll be fine.", + "pos": 0.248, + "neu": 0.596, + "neg": 0.155, + "_id": { + "$oid": "6711d6f0cd60fca157e5fccc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f0cd60fca157e5fcce" + }, + "professor_name": "Alex Tripp", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "Cool guy- Cared more than most", + "pos": 0.56, + "neu": 0.44, + "neg": 0.0, + "_id": { + "$oid": "6711d6f0cd60fca157e5fccf" + } + }, + { + "text": "He is OK", + "pos": 0.595, + "neu": 0.405, + "neg": 0.0, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd0" + } + }, + { + "text": "Mr. Tripp is a smart, nice, very fair, no nonsense teacher. The bottom line is, if you do the work your writing will greatly improve.", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd1" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd2" + } + }, + { + "text": "He is a very cool teacher....lil funny and he has a twitching problem....he gives quizzes everyday but very easy...less papers...", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd5" + }, + "professor_name": "Jae W. Lee", + "rating": 3.3, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Professor seems nice, but is the worst!! He checks the classes GPAs and treats the students accordingly to that. He will grade you and judge you based on your GPAs. Horrible professor. Jokes around too much in class, exams are decent but again he'll grade you on what he thinks of you. CCNY should fire professors who limit student's potential.", + "pos": 0.06, + "neu": 0.748, + "neg": 0.192, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd6" + } + }, + { + "text": "He is obviously intelligent but good god he cannot teach. He does not use the textbook for ChE 479 or 495 and you will have to rely heavily on his class notes, which are lacking at best. He follows the same format for the exams so you know what type of question you will get. However, engineering is about problem solving not memorizing solutions.", + "pos": 0.218, + "neu": 0.715, + "neg": 0.067, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd7" + } + }, + { + "text": "he is very good overall", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd8" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcd9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6f0cd60fca157e5fcda" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f1cd60fca157e5fcdc" + }, + "professor_name": "Cory Dean", + "rating": 3.6, + "department": "Physics department", + "comments": [ + { + "text": "One of the best in CCNY. It was sometimes tough to get a hold of him because of his personal issues, but overall he was helpful. Hw will challenge you, without being ridiculously hard. Exams will challenge you, but they are do-able. Doesn't take off points for small math errors but will punish you if you ignore important concepts. Also he curves.", + "pos": 0.196, + "neu": 0.649, + "neg": 0.155, + "_id": { + "$oid": "6711d6f1cd60fca157e5fcdd" + } + }, + { + "text": "Very good and clear professor, He doesn't do any examples in class. Hw is hard, & exams are even tougher. Exam grades were so bad that he counted final 95% and lab 5% of grade. A lot of material, so you will need to study consistently. By taking him, you are going to have to sacrifice your gpa, but you will learn a lot from him.", + "pos": 0.076, + "neu": 0.867, + "neg": 0.056, + "_id": { + "$oid": "6711d6f1cd60fca157e5fcde" + } + }, + { + "text": "one of the worst professors in the planet. Exams are REALLY HARD. Class average is around 42. Majority of the class is failing. Not that helpful, not even in his office hours. Always ignores students by saying he is busy or he gotta go now. I regret for taking his class. Stay away from this guy at all cost. You will regret for sure just like I do", + "pos": 0.057, + "neu": 0.699, + "neg": 0.244, + "_id": { + "$oid": "6711d6f1cd60fca157e5fcdf" + } + }, + { + "text": "He makes 208 much easier than it should be. Students complain cause students should complain. He makes questions unexpectedly fundamental that many mess up, because they are used to practicing hard problems. People say his assignments are hard, but they are easy and short, and mostly not from the book (so no readily available solution manual).", + "pos": 0.13, + "neu": 0.687, + "neg": 0.184, + "_id": { + "$oid": "6711d6f1cd60fca157e5fce0" + } + }, + { + "text": "Great guy, he knows what he is teaching and cares about his students not failing. He gets a little nervous while teaching but he will get comfortable.", + "pos": 0.317, + "neu": 0.642, + "neg": 0.041, + "_id": { + "$oid": "6711d6f1cd60fca157e5fce1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f1cd60fca157e5fce3" + }, + "professor_name": "Jeff Gardere", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "best professor, tells u what he wants,commited to his work, cares about his students,explains material clearly, hes the best in the psy department, take him! i got 200/200 points a+ you just gotta do ur part, he will give u what u deserve.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d6f1cd60fca157e5fce4" + } + }, + { + "text": "best professor in the psy department, he cares about his students, he is willing to help you with graduate school. his exams are straight forward just like his lectures. read the book participate and youl get A+", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d6f1cd60fca157e5fce5" + } + }, + { + "text": "best professor in the psychology department! i learned so much,he cares about his students and inspires each student to go to grad school and he will help you and advice you about graduate school. read the book and participate, everything is straight forward.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d6f1cd60fca157e5fce6" + } + }, + { + "text": "Greatest professor, hands down.", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d6f1cd60fca157e5fce7" + } + }, + { + "text": "This class was great. throughout my academic career psychology i never enjoyed or learned more than i did in this class. he is very helpful and makes the material very easy. Read the book and participate in class. he will help with grad school. I would definitely take him again if i could.", + "pos": 0.241, + "neu": 0.718, + "neg": 0.041, + "_id": { + "$oid": "6711d6f1cd60fca157e5fce8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f1cd60fca157e5fcea" + }, + "professor_name": "Michael Yigzaw", + "rating": 2.1, + "department": "Economics department", + "comments": [ + { + "text": "Knows everyone is lost but continues anyways", + "pos": 0.0, + "neu": 0.784, + "neg": 0.216, + "_id": { + "$oid": "6711d6f1cd60fca157e5fceb" + } + }, + { + "text": "If u like reading books, then u should take his class, because that's going to be ur only way to pass his class with a good grade. attendance is mandatory, so is the homework which is submitted on myeconlab..lectures extremely boring", + "pos": 0.145, + "neu": 0.799, + "neg": 0.056, + "_id": { + "$oid": "6711d6f1cd60fca157e5fcec" + } + }, + { + "text": "This guy is horrible. He does nothing but stutter the entire class. His english is mediocre, and his teaching methods are the same. He can barely teach, but would expect a whole lot out of you. Stay away from his class.", + "pos": 0.049, + "neu": 0.899, + "neg": 0.052, + "_id": { + "$oid": "6711d6f1cd60fca157e5fced" + } + }, + { + "text": "Took ECO 225 in SP10 with Prof. Yigzaw. Students in the class would argue and give him a hard time. I liked the class, he helped me out whenever necessary and I thought his explanations were great, I understood everything. I had an A going into the final; which was extremely difficult. I'm satisfied with my B+; I would take this professor again", + "pos": 0.135, + "neu": 0.775, + "neg": 0.09, + "_id": { + "$oid": "6711d6f1cd60fca157e5fcee" + } + }, + { + "text": "This guy is a mess, cant explain himself, gives difficult exams when he is aware students are not retaining the information. Highest grades on exams were high 80 low 90s and he gives a ridiculous hard final. Read the book its ur only hope, he doesnt explain or give examples on how to solve problems. Expects too much from students. Aplia is garbage", + "pos": 0.064, + "neu": 0.749, + "neg": 0.187, + "_id": { + "$oid": "6711d6f1cd60fca157e5fcef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf1" + }, + "professor_name": "Jian Ting Zhang", + "rating": 4.1, + "department": "Computer Science department", + "comments": [ + { + "text": "It was his first time teaching GIS. However, it's easy to pass his class. Labs are easy to get 100. The project however is the hardest part of the class so start early. The final exam was based on the lectures. He will give you some materials and quizzes. Make sure that you study them because, they are the key to do really well on the exam.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf2" + } + }, + { + "text": "Really nice professor. He's really passionate about GIS topics and it shows in his lectures. He also brings up relevant computer science details whenever appropriate (its not a cs class but its really interesting). I would definitely take this guy if he's teaching.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf3" + } + }, + { + "text": "Although he has some accent but it is not too hard to understand him. Most of the time he just read the power point but he did explain it well. Everything will be posted on blackboard. Overall he is willing to help. There is projects but you will be fine as long as you understand the lectures.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf4" + } + }, + { + "text": "You will learn a lot in this class. It is hard and long final project, but it gives a great point on your cv. Take this class!", + "pos": 0.185, + "neu": 0.778, + "neg": 0.037, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf5" + } + }, + { + "text": "not a good teacher. his English is really bad. extremely hard and long exam. most people can not finish it. also the assignment from him is like a big project.. and there are 6 of them.. trust me avoid him if possible.", + "pos": 0.111, + "neu": 0.69, + "neg": 0.199, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf8" + }, + "professor_name": "Alexander Magnet", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Alec changed my life. One of the kindest and most thoughtful human beings I've ever known. Reading Melville with him got me to think about literature philosophically, politically, aesthetically. He's everything a professor should be. He also can teach to everyone's level which is great.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcf9" + } + }, + { + "text": "He truly cares for his students and wants to hear what you have to say. Easy A, just make sure to show up to class, complete the 3 essays, and read the assigned readings BEFORE class. The readings were a bit long.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcfa" + } + }, + { + "text": "There isn't much to say. He's just one of those teachers you should experience once or twice in your college years", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcfb" + } + }, + { + "text": "Prof. Magnet is amazing! Really intelligent, cool, funny, and caring prof. who gives each student credit for their ideas even if they differ from his. He goes in depth with the readings and helps us break it down so we can gain as much from them as possible. His class was amazing, cool assignments and overall a really chill class and chill prof!", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcfc" + } + }, + { + "text": "HE would help you if you go to him. his very understand guy and down to earth. he totally not like the other professor, his more lay back and cool. he give good assigned books to read and comic book too crazy right but true. i would so take him again if i get the chance to.", + "pos": 0.179, + "neu": 0.769, + "neg": 0.052, + "_id": { + "$oid": "6711d6f2cd60fca157e5fcfd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f2cd60fca157e5fcff" + }, + "professor_name": "Benjamin Gillespie", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Really caring person. Didn't talk much during class because I'm shy, but he's a wonderful person. Tries his best to explain the arts and culture during lectures. Through his emails you can also tell how nice he is and he cares about his students so much. Final project wasn't hard at all and it was fun!", + "pos": 0.353, + "neu": 0.628, + "neg": 0.02, + "_id": { + "$oid": "6711d6f2cd60fca157e5fd00" + } + }, + { + "text": "I took this class online. I didn't turn my camera on, but I made comments every class to show I participated since it is very discussion-based. Most of the homework consists of discussion posts on the website about specific pieces. There's a large project that's worth 40% of your grade, but its broken up into manageable pieces. A relatively easy A.", + "pos": 0.091, + "neu": 0.849, + "neg": 0.061, + "_id": { + "$oid": "6711d6f2cd60fca157e5fd01" + } + }, + { + "text": "Good class.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fd02" + } + }, + { + "text": "TAKE HIM TAKE HIM TAKE HIM! He was one of the easiest professors I've ever had and the class was an easy A. He makes the class so much more fun than the other MHC10101 professors with fun field trips to plays and museums. There are very few assignments, and they're all extremely easy. Definitely take him for your MHC class!", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d6f2cd60fca157e5fd03" + } + }, + { + "text": "Has to be the best professor I ever took. He took our class to MANY art exhibits and performances and made class fun. Sent us a lot of readings, but it's manageable to skip them and still do well. Two major projects at the end but they're light work. He's super funny and tries hard to make class fun. Definitely take him if you're taking MHC10101!", + "pos": 0.295, + "neu": 0.686, + "neg": 0.019, + "_id": { + "$oid": "6711d6f2cd60fca157e5fd04" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f3cd60fca157e5fd06" + }, + "professor_name": "Rochelle Ring", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "Do yourself a favor and don't take her class. I've always kinda liked math, up until I took her class. If you do end up having to take her class, you are better off learning from the textbook, the textbook teaches better than her. Her lectures is just doing problems and she doesnt explain well and skips steps too. Didnt learn from her class.", + "pos": 0.15, + "neu": 0.789, + "neg": 0.061, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd07" + } + }, + { + "text": "She doesnt know what she is teaching. Sometimes I can teach better than her even if I dont know what I am teaching. She gives too much homework which will definitely lead you to depression and anxiety. You may start drinking, smoking Possibly drugs so I advise you to find a rehabilitation center in advance so that you have time to do her Work .", + "pos": 0.078, + "neu": 0.847, + "neg": 0.075, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd08" + } + }, + { + "text": "The 3 major tests before final were all completly written, no review sheet or review session before tests. She uses only chalkboard and does her lessons off the top of her head. I feel like I wouldve learned more if she came prepared with a powerpoint, sheets, ipad to projecter exc. Advice: Go to her office hours, do all hw, Marshack 403. Good luk", + "pos": 0.129, + "neu": 0.839, + "neg": 0.031, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd09" + } + }, + { + "text": "Professor Ring is a great professor and knows what she is doing. However, as I have never been in advanced math, this class was very fast paced after we moved out of Pre-Calc material. Therefore, beware when taking this class, you will have to work very hard if fast paced math is not your thing .Other than that, good luck :)", + "pos": 0.182, + "neu": 0.77, + "neg": 0.048, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd0a" + } + }, + { + "text": "She's very fast-paced, so if you lose focus, you'll miss something. I had a twice-per-week class, so it was very dense; take a three-per-week class if you have her. She seems cool as a person.", + "pos": 0.059, + "neu": 0.823, + "neg": 0.117, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd0b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f3cd60fca157e5fd0d" + }, + "professor_name": "Thea Newton", + "rating": 3.8, + "department": "Psychology department", + "comments": [ + { + "text": "Homework every week. She wants everyone to learn. Read before you come to class. If you have any questions ask and she will help you. Great Professor.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd0e" + } + }, + { + "text": "Professor Newton is amazing! She has everyone join a Slack group chat so she's easily accessible for homework help. She really wants you to learn, so always come to class prepared because we learned new material every class. Plus, the tests are online take home which made a huge difference if you take her at 8 am! I highly recommend taking her!", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd0f" + } + }, + { + "text": "she expects us to grasp a concept in one sitting, her homeworks are way to much and the tutors will help with anything else but homework and assignments which kinda defeats the purpose so whats the point? Her last final is cumulative and its overall making this class more difficult I wouldnt recommend her", + "pos": 0.03, + "neu": 0.824, + "neg": 0.146, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd10" + } + }, + { + "text": "If youre a complete beginner in stats I dont recommend her class. Shes super nice and reachable and answers all questions. She moves pretty fast be prepared to take a lot of notes. She doesnt do makeups She gives a lot of homework She doesnt post slides or notes after class", + "pos": 0.197, + "neu": 0.768, + "neg": 0.035, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd11" + } + }, + { + "text": "I was really scared going into this class because of the math involved, however the Professor made sure our questions were answered before moving on. Wont take it again but glad I did.", + "pos": 0.15, + "neu": 0.795, + "neg": 0.056, + "_id": { + "$oid": "6711d6f3cd60fca157e5fd12" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f4cd60fca157e5fd14" + }, + "professor_name": "Mark Wanis", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Mark is the best!!!! \nIf anyone is planning on doing well in Chem 103 please select Mark as your TA. You will definitely learn a lot more from him than the professor himself. He really goes out of his way to make sure we knew every single topic. Hand down the best TA at CCNY. I wish Mark was teaching all classes.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd15" + } + }, + { + "text": "He is an amazing TA, even better than the professors at CCNY. He is so caring and will rake the tie to help any student even outside of class hours. He is very understanding and interesting and will make sure you are dry prepared for every exam you are going to be taking. Very easy to pass his section, Rey respectful and respectable person. Best TA", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd16" + } + }, + { + "text": "Mark is the best Chem TA I ever seen in CCNY. He always cares about his students and will always find the time to help even outside of class hours. If you can take him do so without thinking about it twice.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd17" + } + }, + { + "text": "Hands down one of the best T.A.'s. Mark is thorough and understands his subject, on par, or better than my professor. He will go out of his way to help you, especially with covid and online classes!", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd18" + } + }, + { + "text": "Best Chem TA I ever seen in City college. He is the best. Take him if you can he will make sure you to help you in every way possible.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd19" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f4cd60fca157e5fd1b" + }, + "professor_name": "Adrian Cabreja", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "I highly recommend you guys to take calculus with this professor. Super nice professor that teaches very well. Topics was made easy using examples. Gives out quizzes every week or two. Gives out 3 midterms a semester and drops the lowest. Gives you partial credit. Take this professor as your calculus 1 class if possible. Highly recommend", + "pos": 0.281, + "neu": 0.683, + "neg": 0.036, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd1c" + } + }, + { + "text": "He's a pretty good prof. Very passionate about math. Quizzes weekly on material covered. The exams + final were main grade. We were supposed to have 3 exams but he gave 2 and dropped the lowest of the two. He grades leniently and gives partial credit. Homework was just Pearson. Would take him again.", + "pos": 0.158, + "neu": 0.788, + "neg": 0.055, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd1d" + } + }, + { + "text": "He is a good professor but you need to study by yourself a lot. We got a lot of home works in pearson. The exams are okay and he also gave a lot of review sessions.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd1e" + } + }, + { + "text": "Office hours were very helpful. Prof. made several extra classes via zoom before the midterms and the finals (helped a ton). Periodically he makes some minor mistakes on the chalkboard and gives extra points for correcting him. He does not expect his student to be math geniuses and shares his own student experience. Be ready to study a lot though.", + "pos": 0.118, + "neu": 0.845, + "neg": 0.038, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd1f" + } + }, + { + "text": "Professor Cabreja is very thoughtful. He shares his experiences of taking Math 201 so that other students don't give up. He is hard to follow sometimes and can be sloppy. Gives extra points.", + "pos": 0.146, + "neu": 0.816, + "neg": 0.038, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd20" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f4cd60fca157e5fd22" + }, + "professor_name": "Peter Barnett", + "rating": 3.7, + "department": "Computer Science department", + "comments": [ + { + "text": "Gives feedback for everything but does so in a sarcastic and condescending manner. It's crazy how this guy has to be for the cornerstone class for this college.", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd23" + } + }, + { + "text": "Exams are very similar to review. Home work and project will help you to understand materials", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd24" + } + }, + { + "text": "Very intelligent and experienced person. Lecture is good if you review his slides before, but I think it can get boring when you are behind. Homework assignments are important because he will reference the database schema as examples in class or exam.", + "pos": 0.133, + "neu": 0.804, + "neg": 0.062, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd25" + } + }, + { + "text": "A very good professor. The best one for the Databases course, for sure. Sometimes a little dry and abstract during lecture, but the exams are relatively straightforward. You wouldn't go wrong with Barnett! Just remember that attendance is mandatory!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd26" + } + }, + { + "text": "A very nice and kind professor", + "pos": 0.628, + "neu": 0.372, + "neg": 0.0, + "_id": { + "$oid": "6711d6f4cd60fca157e5fd27" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f5cd60fca157e5fd29" + }, + "professor_name": "Lance Ozier", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "Good sauce, I liked his class. You won't regret it too.", + "pos": 0.501, + "neu": 0.499, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd2a" + } + }, + { + "text": "This guy is gonna give you an A+. He wants you to do well. I am unsure if he actually read the essays I turned in, and that makes me feel defeated. Gave me an A+ with no feedback. Not my kind of professor. I want someone who listens and reads my work. But this may be the kind of professor for someone with kids or who has a full-time job.", + "pos": 0.037, + "neu": 0.894, + "neg": 0.07, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd2b" + } + }, + { + "text": "He is the best professor ever at CCNY. His teaching methods are out-worldly or simply genius. If you are majoring in education you should beg your adviser to take his class if its full.", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd2c" + } + }, + { + "text": "Lance is great. There was an assignment, a midterm, and a final project. Most of the grade is derived from there. He lets you resubmit assignments.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd2d" + } + }, + { + "text": "This guy really is awesome. He's hilarious and you get free candy in his class. The lectures are really interesting and you learn a lot. You gotta work for the grade though but the assignments are worth the time and effort. Definitely worth taking him, even as just an elective.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd2e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f5cd60fca157e5fd30" + }, + "professor_name": "Dylan O'Connor", + "rating": 3.8, + "department": "Mathematics department", + "comments": [ + { + "text": "He is one of the best professor. I really wish I could take him for my every math class.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd31" + } + }, + { + "text": "He's a very good professor for this class. His quizzes and midterms are based on homework that is completed via WebAssign. The only unfortunate thing is that the final is made by the department, so be prepared to study for that. Other than that, he is really great and I would recommend you take him.", + "pos": 0.188, + "neu": 0.766, + "neg": 0.046, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd32" + } + }, + { + "text": "He is one of the better professors for math195 on this campus. He is very passionate about teaching math to his students and tries to make everyone understand the topic. The course is mainly graded by tests and quizzes also he makes the first two midterms and all the quizzes but not the final so be prepared for that.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd33" + } + }, + { + "text": "He does his best as the grading criteria isn't decided by him but the Math Department, his test are based on web assign assignment and are really straightforward. If you do the homework, you will be fine (this is coming from someone who is absolutely horrible at math. The best you can do is just study.", + "pos": 0.156, + "neu": 0.767, + "neg": 0.077, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd34" + } + }, + { + "text": "I would choose another professor. Get ready to teach yourself in this course as lectures can get boring and doing the WebAssign will only help.", + "pos": 0.176, + "neu": 0.746, + "neg": 0.078, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd35" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f5cd60fca157e5fd37" + }, + "professor_name": "Mia Pixley", + "rating": 4.9, + "department": "Psychology department", + "comments": [ + { + "text": "SHE WAS A WONDERFUL PROFESSOR, EXTREMELY CARING AND UNDERSTANDING.SHE MADE THE CLASS FUN AND INTERESTING. I WOULD RECOMMEND HER TO ANYONE. I LEARNED MORE FROM HER THAN MOST OF THE OTHER PROFFESORS AT CITY...SHE IS THE BEST!!!!", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd38" + } + }, + { + "text": "psych of personality: SHE IS AMAZING! seriously best professor at CCNY. She is really laidback and chill and makes the class super interesting. And her exams are so easy, straight from the review sheets (which she goes over in class). Honestly, I don't see how you can do bad in this class.", + "pos": 0.358, + "neu": 0.571, + "neg": 0.071, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd39" + } + }, + { + "text": "Shes an amazing proffesor very outgoing, funny and upbeat. She makes the class very interesting. Take her!", + "pos": 0.495, + "neu": 0.505, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd3a" + } + }, + { + "text": "i think she is one of the best psychology professors in city college. all i can say is shes full of life, shes hilarious, and always keeps the class interested in fun topics! she will give a review sheet letting you know EXACTLY what to study! take her u wont regret it!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d6f5cd60fca157e5fd3b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f6cd60fca157e5fd3d" + }, + "professor_name": "Kellyann Royce", + "rating": 3.6, + "department": "Education department", + "comments": [ + { + "text": "She is amazing, understanding and a great educator!!", + "pos": 0.586, + "neu": 0.414, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd3e" + } + }, + { + "text": "Easy class. Discussions frequently veered off course. She is a sweet person and passionate about subject but I didn't learn as much as I hoped to learn in this course. Prefer to have less personal information about her family and health.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd3f" + } + }, + { + "text": "Professor Royce is an amazing educator whose experiences made the class very interesting. She is very helpful and understanding. I would highly recommend taking a class with her.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd40" + } + }, + { + "text": "Professor is very nice and appears to be knowledgeable in the field but class does not prepare 4 mandated taskstream assignment. Instead of doing project in parts we were forced to do in large sum with little guidance on requirement 4 final project. Great stories and strategies but screwed on taskstream 40% of gradeDon't take unless no choice.", + "pos": 0.141, + "neu": 0.743, + "neg": 0.116, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd41" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f6cd60fca157e5fd43" + }, + "professor_name": "Saiful Saleem", + "rating": 4.6, + "department": "French department", + "comments": [ + { + "text": "Amazing young professor, He's clearly educated in my other subjects, He's very inspirational. If you have the opportunity to be in his class TAKE HIM !!!!!!!!", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd44" + } + }, + { + "text": "He is an amazing professor who actually cares about his students learning not just French language but the culture as well. He is attentive, patient and very easy going. I highly recommend taking this professor's class because he acutally cares about you learning the language.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd45" + } + }, + { + "text": "Just took this class to get a good grade, but I ended up really liking the lectures & the language. definitely going to continue taking french classes! i recommend this prof.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd46" + } + }, + { + "text": "Really learnt a lot of French this semester! He's a great professor who listens to his students and goes the extra mile to help them succeed. He also managed to teach us a lot about French culture and politics, especially in recent times. Highly recommend.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd47" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f6cd60fca157e5fd49" + }, + "professor_name": "Hamad Sindhi", + "rating": 4.4, + "department": "Sociology department", + "comments": [ + { + "text": "super amazing professor, i loved how patient and dedicated he is to his class, he really cares about making you feel comfortable to participate and learn. his assignments are not hard but make sure you always be in contact with him if you have any question. he is flexible and will make you have a great semester!!! TAKE HIM! took him at Lehman.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd4a" + } + }, + { + "text": "Professor Sindhi is a pretty good professor, he makes class interesting. there is a LOT of group work, and although he teaches the class, the majority of the learning will be from your fellow students. so be prepared to teach as well as learn.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd4b" + } + }, + { + "text": "Very interesting materials. His delivery isn't the best ( I think he is new or something), so you might loose interest halfway. The class involves a lot of group work and he isn't a very strict grader.( Blog Posts) If you have good team mates the workload won't be much.", + "pos": 0.149, + "neu": 0.752, + "neg": 0.099, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd4c" + } + }, + { + "text": "Great prof, good course. Attendance is important, but it's worth coming to class.", + "pos": 0.478, + "neu": 0.522, + "neg": 0.0, + "_id": { + "$oid": "6711d6f6cd60fca157e5fd4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f7cd60fca157e5fd4f" + }, + "professor_name": "Branka Djuknic", + "rating": 3, + "department": "Anthropology department", + "comments": [ + { + "text": "took this class in 2012 and found it very dry and dull. half the time, she didn't even show up. a complete waste of my time. she doesn't deserve to be any classroom. totally unqualified.", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd50" + } + }, + { + "text": "Class is pretty interesting.. not gonna lie. She has powerpoints for each chapter which are very clear and all her exams are based on them. Nothing crazy. Midterm and final both extremely easy with multiple choice only. Highly recommended if you are trying to help your GPA. Easy A!", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd51" + } + }, + { + "text": "Awesome, easy - yes reads from PowerPoint, but she does post them up. All exams are based on PowerPoint, so easy study guide and interesting class.", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd52" + } + }, + { + "text": "she is extremely boring reads off from the pp slides and also takes attendance towards the end of the class which makes it more boring. 2 midterms and a final and few boring hws you have to study for her midterms because trust me if you think you will ace it you wont. overall shes OK but boring as hell", + "pos": 0.03, + "neu": 0.742, + "neg": 0.228, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd53" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f7cd60fca157e5fd55" + }, + "professor_name": "Zach Geller", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "He takes his time teaching and makes sure everyone understands. If you email him about anything hell get back to you right away. Only 2 papers. His readings are really interesting. He doesnt like when people talk while hes teaching but thats understandable (he doesnt get too mad over It tho). Overall great professor. Recommend 100%!!!!!", + "pos": 0.243, + "neu": 0.695, + "neg": 0.062, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd56" + } + }, + { + "text": "Zach is the man. He goes beyond what most professors do. The lectures are mostly slides, but they're very straightforward. even if you're not a psychology student, I'd recomend this class. He makes the material interesting and engaging. He's funny at random times, which really makes it even funnier. Awesome personality.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd57" + } + }, + { + "text": "I wish all my professors were like Zach. He is very much dedicated and you can see he loves his work. He likes to slip little jokes here and there and is totally understanding. What you need to know is; Just be there, ask questions(don't hesitate, he is extremely nice) and study, the exams are multiple choice, which is good. Overall; AWESOME PROF!!", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd58" + } + }, + { + "text": "You really don't need to buy the textbook because his slideshows are pretty clear (it contains most of the test material). You should show up for class because you need to know which sections to skip. Only had a midterm, paper (describe two disorders), and a final (non-cumulative). Makes jokes and is good at providing examples.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d6f7cd60fca157e5fd59" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f8cd60fca157e5fd5b" + }, + "professor_name": "Nicolas Garcia", + "rating": 3.8, + "department": "Mathematics department", + "comments": [ + { + "text": "He is my favorite professor at the school. He is full of character and very knowledgable. Would take him again", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd5c" + } + }, + { + "text": "This class was extremely difficult. The professor lectured at a fast pace. I could not keep up.", + "pos": 0.0, + "neu": 0.851, + "neg": 0.149, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd5d" + } + }, + { + "text": "Great Professor, very approachable and is always willing to help. I would defininately take any class with him. A very wise guy with tons of experience that helps the class. He is a bit Odd and very open minded. Overall great guy.", + "pos": 0.306, + "neu": 0.652, + "neg": 0.042, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd5e" + } + }, + { + "text": "Best Professor, he cares so much about his lectures. A little dorky but really sweet", + "pos": 0.422, + "neu": 0.513, + "neg": 0.065, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd5f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f8cd60fca157e5fd61" + }, + "professor_name": "Sarah O'Neill", + "rating": 3.3, + "department": "Psychology department", + "comments": [ + { + "text": "Barely went to her lectures, found it pointless. Her exams are all based on textbook. Read+memorize the chapters. If you're good at memorizing, this class is for you. Exams are not hard at all as long you remember the info. Didn't do as well on paper, but I did very good on exams and did extra credit. She's a very nice professor, so ask/email.", + "pos": 0.201, + "neu": 0.78, + "neg": 0.019, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd62" + } + }, + { + "text": "While you are only required to attend recitation you should go to the lectures as well. Sarah is an OK lecturer but seems to gloss over some information and goes incredibly fast. Don't be afraid to ask questions though, she will stop class for you. Her tests are multiple choice but are challenging and the paper is very hard. Read and you'll be fine", + "pos": 0.108, + "neu": 0.823, + "neg": 0.069, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd63" + } + }, + { + "text": "I took this class in Spring 2017 and the lectures were thorough but boring recommend reviewing the slides and taking notes on important points.", + "pos": 0.185, + "neu": 0.714, + "neg": 0.1, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd64" + } + }, + { + "text": "HMWK is due on BlackBoard weekly, buy the hard copy of the book because the answers are in the back. Lectures are super boring since she reads out of the book. I never took notes, ate breakfast, drank coffee and just listened. She takes attendance every day so show up. Do the paper on time, not hard.", + "pos": 0.084, + "neu": 0.856, + "neg": 0.06, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd65" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f8cd60fca157e5fd67" + }, + "professor_name": "Margarita Mihailidi", + "rating": 3.1, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "ENGR 301 covers a lot of material. The final did not test us on all chapters due to time. Lectures can beinteresting at times. Practice problemsare from the textbook", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd68" + } + }, + { + "text": "Not an easy A,(got A-), helpful teacher, be redy for exams and take notes", + "pos": 0.163, + "neu": 0.697, + "neg": 0.14, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd69" + } + }, + { + "text": "not as easy as it seems not automatic A, be redy for exams, ppl screw up the curve and screw u over", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd6a" + } + }, + { + "text": "crack fiend.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6f8cd60fca157e5fd6b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f9cd60fca157e5fd6d" + }, + "professor_name": "Martha Perez Calderon", + "rating": 3.3, + "department": "Psychology department", + "comments": [ + { + "text": "Horrible! Can't pronounce a single word! She has a huge attitude problem, and tends to pick favorites.", + "pos": 0.205, + "neu": 0.522, + "neg": 0.273, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd6e" + } + }, + { + "text": "She gives 4 quizes, a final, and an extra credit paper. All in all, this is one of the best and easies professor to take. All you need to do is study for the quizes and you could fail the final and still get a B.", + "pos": 0.128, + "neu": 0.807, + "neg": 0.066, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd6f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd70" + } + }, + { + "text": "Straight from the textbook.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd71" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f9cd60fca157e5fd73" + }, + "professor_name": "Ilya Elson", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "I think he is a good math teacher, he explains things well, you can go to his office hours for more help. Also he is a fair grader. He actually cares about students. Homework is very important do them all. I think he may spend a bit too much time with derivation but our class had 13hwks, 2 quizzes (suppose to hav 3) , 2 exams.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd74" + } + }, + { + "text": "He's really helpful and explains everything in great detail. You have to do the homework, though. His lectures cover the theory and the main idea, but without the supplement of the homeworks, you won't get enough practice and you won't consummate what you have learned in class. I got a 95 on the final ;)", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd75" + } + }, + { + "text": "He is pretty good professor. He explains concepts well although sometimes spends a bit too much time on derivation (in 39100, derivations really don't help much). The only complaint is that we rushed towards very much the end.", + "pos": 0.179, + "neu": 0.718, + "neg": 0.103, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd76" + } + }, + { + "text": "Mad chill.", + "pos": 0.0, + "neu": 0.238, + "neg": 0.762, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd77" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6f9cd60fca157e5fd79" + }, + "professor_name": "Arthur Beckman", + "rating": 4.6, + "department": "Political Science department", + "comments": [ + { + "text": "Very interesting class, he is a great teacher. Be prepared because even though he preps you for what exams he is very specific in what he considers to be a correct and precise answer. He is also a tough grader when it comes to papers. He goes off on tangents but sometimes those are the most interesting and eye opening classes!", + "pos": 0.152, + "neu": 0.829, + "neg": 0.019, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd7a" + } + }, + { + "text": "best of best ...should run for president !", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd7b" + } + }, + { + "text": "Great teacher, knows his stuff, goes off on tangents and was raised by hippies. Very very personable and easy to learn with.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd7c" + } + }, + { + "text": "pretty easy class, you have 3 response papers, 1 paper, midterm and final. But he'll tell you what you should study and on the midterm, he actually gave everyone 12 more points since people did so bad on them, so that is really awesome.", + "pos": 0.18, + "neu": 0.71, + "neg": 0.111, + "_id": { + "$oid": "6711d6f9cd60fca157e5fd7d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6facd60fca157e5fd7f" + }, + "professor_name": "Wendy Johnson", + "rating": 1.6, + "department": "Psychology department", + "comments": [ + { + "text": "Wendy Johnson is hands own the worst instructor I?ve ever had. She has no ability to direct a class. During my course with her I felt like I was in a rowdy high school class. She is able to weakly present textbook, theories, but unable to defend those theories when mere undergrads challenge them. All the while touting her credentials.", + "pos": 0.049, + "neu": 0.828, + "neg": 0.122, + "_id": { + "$oid": "6711d6facd60fca157e5fd80" + } + }, + { + "text": "Unprofessional. Flighty Not able to take the opinion of others without getting rude and implying that students are wrong. She is a like a toddler with no real direction and takes students being busy with other courses personal as if she is the center of the world. She lives a fantasy world and is rude", + "pos": 0.076, + "neu": 0.747, + "neg": 0.177, + "_id": { + "$oid": "6711d6facd60fca157e5fd81" + } + }, + { + "text": "I took he for the Winter Session the subject is very interesting but she was very moody. She is arrogant loves to declare her degrees and that shes a scholar and has two masters. She is somewhat biased, on final presentation mostly she was bz on her laptop emailing rather than looking at the presentation had attitude, if she likes u, u get an A.", + "pos": 0.153, + "neu": 0.72, + "neg": 0.127, + "_id": { + "$oid": "6711d6facd60fca157e5fd82" + } + }, + { + "text": "Although the subject was very interesting, she was not a suitable teacher (a grad student). She let the student dominate the class, made everything about race, flirted and insulted students. Sweet person, but a very inappropriate teacher. An easy A!", + "pos": 0.175, + "neu": 0.729, + "neg": 0.096, + "_id": { + "$oid": "6711d6facd60fca157e5fd83" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6facd60fca157e5fd85" + }, + "professor_name": "Dipanjana Das", + "rating": 3.6, + "department": "Psychology department", + "comments": [ + { + "text": "Statistics is not an easy class. Although she is young shes still grabbing a hold of a teaching technique. Shes really helpful. Shes willing to help. You must take a tutor if you dont understand the material. Your grade depends on you but she is willing to help you succeed. I didnt pass her class not bc of her, but bc I should have had a tutor help", + "pos": 0.194, + "neu": 0.785, + "neg": 0.022, + "_id": { + "$oid": "6711d6facd60fca157e5fd86" + } + }, + { + "text": "she was too young and unable to properly teach she doesnt take her time and she doesn't care for you", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d6facd60fca157e5fd87" + } + }, + { + "text": "Professor Das is an inspiration! She is clearly younger than most of the tenure lecturers but the depth of her knowledge and understanding of the material is simply mind-blowing. Inexperienced yes but intelligent and one of the best instructors I had at CCNY. You are going to have to work for a grade its not an easy A but she is pretty lenient", + "pos": 0.298, + "neu": 0.665, + "neg": 0.038, + "_id": { + "$oid": "6711d6facd60fca157e5fd88" + } + }, + { + "text": "She's a good teacher, but obviously very new at what she does. She doesn't have a technique yet. She is very sarcastic and can allow her attitude to get in the way of her teaching. (This also may have to do with her being young). Sometimes when you ask a question, she can make you feel really stupid. That's not fun. But take her.", + "pos": 0.057, + "neu": 0.788, + "neg": 0.154, + "_id": { + "$oid": "6711d6facd60fca157e5fd89" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6facd60fca157e5fd8b" + }, + "professor_name": "Vinh Ly", + "rating": 1.6, + "department": "Mathematics department", + "comments": [ + { + "text": "The professor is decent if you need a refresher on high school calculus material. Otherwise, it may be difficult to do very well in the class. He made the class pay for an online service for our hw. He makes a lot of mistakes during lectures because he skips steps. Thankfully, his exams are modeled after his review questions. Lots of partial credit", + "pos": 0.109, + "neu": 0.801, + "neg": 0.09, + "_id": { + "$oid": "6711d6facd60fca157e5fd8c" + } + }, + { + "text": "He is a smart individual, but he cannot teach! He copies whatever is on a paper into the board and just repeats it; he doesn't even use his own words. He doesn't care if you come or not. If you want to pass study at home. If you find it hard to study at home DONT take him.", + "pos": 0.03, + "neu": 0.864, + "neg": 0.107, + "_id": { + "$oid": "6711d6facd60fca157e5fd8d" + } + }, + { + "text": "Not the best teacher but as long as you study on your own and go to the tutoring center you'll be fine. Exams are not too hard, he gives review questions before each exam that really help. Overall i would recommend him.", + "pos": 0.217, + "neu": 0.739, + "neg": 0.044, + "_id": { + "$oid": "6711d6facd60fca157e5fd8e" + } + }, + { + "text": "To pass, a little bit of effort plus a combination of the many chances he gives you to \"make up\" for bad quizzes or test, you will pass with a decent grade!!!", + "pos": 0.05, + "neu": 0.829, + "neg": 0.121, + "_id": { + "$oid": "6711d6facd60fca157e5fd8f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fbcd60fca157e5fd91" + }, + "professor_name": "Nathan Hosannah", + "rating": 4, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "He puts up the power point and reads from it. He is a nice person but I really didn't like the way he teaches. I don't think he prepares himself much to teach the class, maybe he goes over some problems and writes down the answer. I wouldn't like to tak him again but it seems like other professors can be worse. Basically, his clas is MEH", + "pos": 0.063, + "neu": 0.739, + "neg": 0.197, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd92" + } + }, + { + "text": "Overall, this guy knows how to teach this course! Have an issue understanding a concept? He'll help you understand it! Takes off lots of pts on exams, but that's just how he grades. WILL curve if the avg is low. Redo ALL (yes ALL) hw AND in-class problems for his exams! Def. see him in office hrs to save you time studying. He's patient and cares!", + "pos": 0.183, + "neu": 0.74, + "neg": 0.076, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd93" + } + }, + { + "text": "Amazing professor. Homework is manageable and directly related to what you will see on the tests. Come to class and do all your hw ON TIME and you will be fine. Also, a very lenient grader and really cares about the students.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd94" + } + }, + { + "text": "Fall 2016 is his first semester teaching, and he killed it. Great professor with a great work ethic. He will really try his best to help you learn the material and he wasn't too harsh with grades, but he gives you what you deserve. He'll prob be one of the top profs in CCNY within a few years.", + "pos": 0.202, + "neu": 0.757, + "neg": 0.041, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd95" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fbcd60fca157e5fd97" + }, + "professor_name": "Fred Gutzeit", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": ", his awesome, do all the assigments he let you redo assigments if you don't like the grade make sure to get all the assignments graded as an A and you will fuel your A in the class", + "pos": 0.147, + "neu": 0.804, + "neg": 0.048, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd98" + } + }, + { + "text": "He's an amazing professor, he tells you how you can fix it and allows you to submit your work again for a better grade. There will be criques with the class, but it's more of the good techniques you did and could work on, rather than everything you did wrong.", + "pos": 0.146, + "neu": 0.783, + "neg": 0.071, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd99" + } + }, + { + "text": "Hes a great Prof.-very nice, caring, and attentive to every student. i enjoy the museum projects, its tiring, but really fun! he grades fairly to how much (\"effort\") u do overall. i truly respect him and so i highly recommend anyone to take his class.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd9a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6fbcd60fca157e5fd9b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fccd60fca157e5fd9d" + }, + "professor_name": "Anna Steegmann", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "I really enjoyed having Professor Steegman, this was one of my favorite classes so far. She offers plenty of in-class group assignments that honestly led to me making some good friends. By the end of the semester, I really didn't want this class to end. She's a fair grader too. Also, having perfect attendance adds a plus to your final grade!!", + "pos": 0.289, + "neu": 0.691, + "neg": 0.02, + "_id": { + "$oid": "6711d6fccd60fca157e5fd9e" + } + }, + { + "text": "You have to be patient with her. There were times when it got boring, but there were other times when she chose fun activities for us to do. There was a lot of group work, which was basically us expressing our opinion. Overall, it was an easy class, she was really nice, and I had a fun time in her class. Fair grader & gives good detailed feedback!", + "pos": 0.277, + "neu": 0.704, + "neg": 0.019, + "_id": { + "$oid": "6711d6fccd60fca157e5fd9f" + } + }, + { + "text": "Very nice professor, class can be boring sometimes. If you give hard copies of all assignments she gives great feedback, fair grader. The final paper is a lot of work but you do it in parts so it really isn't that bad. At the end you just have to put everything together. overall, good experience.", + "pos": 0.219, + "neu": 0.737, + "neg": 0.044, + "_id": { + "$oid": "6711d6fccd60fca157e5fda0" + } + }, + { + "text": "Prof Steegmann is a good english teacher. She explains things well but her class can be pretty boring. There are a few papers to write because well, it's english. But she gives you good feedback. Plus, you get extra points on your grade if you show up to class.", + "pos": 0.237, + "neu": 0.714, + "neg": 0.049, + "_id": { + "$oid": "6711d6fccd60fca157e5fda1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fccd60fca157e5fda3" + }, + "professor_name": "Vidyasagar Sriramoju", + "rating": 1, + "department": "Biology department", + "comments": [ + { + "text": "He slept during lab, yells at student YES OR NO, no one understand him, he doesn't know what he doing either, cant speak correctly, doesn't grade anything so u will never know what your grade is", + "pos": 0.087, + "neu": 0.858, + "neg": 0.056, + "_id": { + "$oid": "6711d6fccd60fca157e5fda4" + } + }, + { + "text": "Could not understand him at all when spoke. Would test us on things we reviewed once, not at all, or things that weren't pertaining to the chapter exam. Gave all students a hard time if we tried to stand up for ourselves.", + "pos": 0.0, + "neu": 0.967, + "neg": 0.033, + "_id": { + "$oid": "6711d6fccd60fca157e5fda5" + } + }, + { + "text": "Sagar literally has a thick accent and he is so hard to understand. He goes through his lectures so quickly and doesnt explain the material thoroughly. He doesnt grade right away and his tests are difficult if you dont study.", + "pos": 0.0, + "neu": 0.897, + "neg": 0.103, + "_id": { + "$oid": "6711d6fccd60fca157e5fda6" + } + }, + { + "text": "So hard to understand him and lectures are too long.", + "pos": 0.0, + "neu": 0.842, + "neg": 0.158, + "_id": { + "$oid": "6711d6fccd60fca157e5fda7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fccd60fca157e5fda9" + }, + "professor_name": "Ramon Guerra", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "Hes very easy going as long as you do your case briefs, know your stuff and participate in class. Your grade is based off participation by group case briefs and a cumulative final of 50 multiple choice questions that are easy to answer if you show up to class and do the readings and ask questions.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d6fccd60fca157e5fdaa" + } + }, + { + "text": "Show up, participate and pass your final. Do that and you get an A. The best and most easygoing professor out there!!", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d6fccd60fca157e5fdab" + } + }, + { + "text": "This instructor is a practicing immigration attorney, and he teaches the lessons in such a way that creates preparation for law school. Super charismatic personality makes one excited to attend class. He introduced a series of guest speakers, which was fun and interactive- it provided an insight into the legal fields diversity. One of the best!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d6fccd60fca157e5fdac" + } + }, + { + "text": "This course was relatively easy provided you do the assigned reading. There was only one exam which was our final which was cumulative of the entire content of the class. He is responsive to emails from students and is very helpful.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d6fccd60fca157e5fdad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fdcd60fca157e5fdaf" + }, + "professor_name": "Tankut Can", + "rating": 5, + "department": "Physics department", + "comments": [ + { + "text": "He is a high caliber professor and human being, I ended up really liking him as both despite my best efforts. He wants you to succeed and is very passionate about physics and learning, he is very engaging and poses interesting questions. If you read the textbook and review class notes you will perform well. Wish more instructors had his outlook.", + "pos": 0.263, + "neu": 0.693, + "neg": 0.044, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb0" + } + }, + { + "text": "Beeeeeeeessssssssssstttttttttttt. Take Prof Tankut. He explains the material to you, go to his office hours to get more help in interpreting questions, and in his class you will be really great in understanding a physics tricky questions.", + "pos": 0.172, + "neu": 0.791, + "neg": 0.037, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb1" + } + }, + { + "text": "The Best Best best Prof. He teaches conceptually, He makes the whole class contribute to interpret physics question. Best Take him. He gives extra credit. He is Jovial and very opened to physics questions, accessible after class, ready to offer any amount of help.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb2" + } + }, + { + "text": "Wow, why isn't all of Cuny, City College like this ? Incredible and brilliant, I actually understand physics now.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb5" + }, + "professor_name": "Micheal Grove", + "rating": 2, + "department": "English department", + "comments": [ + { + "text": "This class is easy if you do your work and keep up to date with all the papers you have to write. 4 Papers including drafts, intro letter and Portfolio website. He teaches you what you need to know so pay attention. He's a great professor so do your work early if you want to get an A. You're allowed to rewrite papers and submit for a better grade.", + "pos": 0.145, + "neu": 0.83, + "neg": 0.024, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb6" + } + }, + { + "text": "DO NOT! I REAPEAT DO NOT! TAKE HIS CLASS. Had to write a paper on interviewing a scientist as freshman/sophomore year of college. Gave me a C on my self-intro letter, like how can you get a bad grade on a self-intro letter, that being said you already know he is a harsh grader. He curses in every other sentence and thinks he's funny.", + "pos": 0.1, + "neu": 0.812, + "neg": 0.088, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb7" + } + }, + { + "text": "DONT TAKE HIM! Really tough grader. He needs to change his grading style and be a little more concise with what he wants in a paper. He needs to understand that we are college students not professionals writing a paper. Had the hardest time in his class.", + "pos": 0.0, + "neu": 0.957, + "neg": 0.043, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb8" + } + }, + { + "text": "Assignments are not been explain clear enough If you are bad at writing, or English is not your native language, don't choose this class For one of our paper, only 3 out of 20+ students actually get a grade, others all have to revise their paper More commons can be seen under the same name at Bronx community college", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdb9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fdcd60fca157e5fdbb" + }, + "professor_name": "Barbara Fairweather", + "rating": 3.9, + "department": "Economics department", + "comments": [ + { + "text": "This course (Econometrics) requires R programming and statistics prerequisites. It could be a challenge. But Professor Erin's lecture style is relaxed. I like her passionate and humorous way of speaking. It made me easier to focus on and absorb the information during the class. Her stlye made me study efficiently. No extra efforts needed.", + "pos": 0.329, + "neu": 0.632, + "neg": 0.038, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdbc" + } + }, + { + "text": "She goes off topic a lot, cries about anyone calling her by her first name and not Erin, and she doesn't prepare you for exams at all. Avoid taking micro with her.", + "pos": 0.0, + "neu": 0.86, + "neg": 0.14, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdbd" + } + }, + { + "text": "Very good teacher, test can be difficult if you don't pay attention in class and go over the slides. Overall she's one of the best.", + "pos": 0.27, + "neu": 0.652, + "neg": 0.078, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdbe" + } + }, + { + "text": "Just study for the exams and you will be great...she curves at the end...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6fdcd60fca157e5fdbf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fecd60fca157e5fdc1" + }, + "professor_name": "Andrew Ratner", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "I miss this professor. If I had a chance, I would take him every semester. I never thought The City College had such down-to-earth professors like him who are open-minded and tolerant of all cultures and races. He is always a pleasure to talk to and he never boasts about his PhD and other accomplishments like many professors on campus.", + "pos": 0.187, + "neu": 0.789, + "neg": 0.023, + "_id": { + "$oid": "6711d6fecd60fca157e5fdc2" + } + }, + { + "text": "HE IS THE BEST !!!!!!", + "pos": 0.604, + "neu": 0.396, + "neg": 0.0, + "_id": { + "$oid": "6711d6fecd60fca157e5fdc3" + } + }, + { + "text": "He's a great professor, he helps a lot. He doesn't try to make his class hard", + "pos": 0.318, + "neu": 0.616, + "neg": 0.066, + "_id": { + "$oid": "6711d6fecd60fca157e5fdc4" + } + }, + { + "text": "Very easy-going and interesting professor.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d6fecd60fca157e5fdc5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fecd60fca157e5fdc7" + }, + "professor_name": "Alexander Khanikaev", + "rating": 3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He is a smart guy, however, he has virtually no talent as a lecturer. He shows no effort in educating students and doesn't seem to care about the class at all. I feel as if I learned nothing bec you just bring in Hw and copy it on the exam (he changes it a little). This will not be a good set up for future engineering classes.", + "pos": 0.036, + "neu": 0.835, + "neg": 0.129, + "_id": { + "$oid": "6711d6fecd60fca157e5fdc8" + } + }, + { + "text": "Lenient grader however lectures are a bit hard to follow. He makes up for this by allowing you to use your homework and other formula sheets during the exam. Reviews before the exam helps a lot. He is probably the best EE330 choice you will have.", + "pos": 0.17, + "neu": 0.803, + "neg": 0.027, + "_id": { + "$oid": "6711d6fecd60fca157e5fdc9" + } + }, + { + "text": "He's a good guy, his lectures are all based on the textbook but unfortunately no one pays attention in class. Exams are based on the homework. He allows you to use the homework and bring formula sheets to the exam as well. He does take attendance mostly every class.", + "pos": 0.083, + "neu": 0.811, + "neg": 0.106, + "_id": { + "$oid": "6711d6fecd60fca157e5fdca" + } + }, + { + "text": "Very chilled out class. You will not learn from just his lectures, and you don't need to as he shows you how to solve the exam, allows cheat-sheets, and grades VERY leniently. Go to his office hours and read the book if you really want to learn, it does not take a lot to understand the concepts. What you take away this class is up to you.", + "pos": 0.05, + "neu": 0.95, + "neg": 0.0, + "_id": { + "$oid": "6711d6fecd60fca157e5fdcb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6fecd60fca157e5fdcd" + }, + "professor_name": "Angela Harden", + "rating": 4.8, + "department": "Communication department", + "comments": [ + { + "text": "NO exams or papers. Hands on experience. You have to at least do one podcast (her assistant director, Tina, is the best and is great help if you're not podcast savvy) and one radio show. However, you'll end up doing more than one show because she makes it fun! You will learn how to talk and write for radio. One of the best professors ever!", + "pos": 0.236, + "neu": 0.728, + "neg": 0.036, + "_id": { + "$oid": "6711d6fecd60fca157e5fdce" + } + }, + { + "text": "very understanding", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d6fecd60fca157e5fdcf" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d6fecd60fca157e5fdd0" + } + }, + { + "text": "She is the best. Take her you will learn more and new things. She's very helpful and listens very well. She is the bomb!!", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d6fecd60fca157e5fdd1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ffcd60fca157e5fdd3" + }, + "professor_name": "Anuradha Herath", + "rating": 2.6, + "department": "Speech department", + "comments": [ + { + "text": "Honestly she does respond to emails so just make sure you're ready to asl questions after class. I liked her since she has a clear grading structure, has a rubric and tells you what needs to be done. I say take this class just be ready to present. His do not hand in late she doesn't accept so be on your tippy toes and be ready, professor is good", + "pos": 0.251, + "neu": 0.693, + "neg": 0.056, + "_id": { + "$oid": "6711d6ffcd60fca157e5fdd4" + } + }, + { + "text": "Her class wasn't that bad but if you wanna email her ab something she will take a while to respond back or not respond at all. She'll change things last minute which is rlly annoying and speeches were SO nerve wracking. She records the speeches to look back at but wtv. If shes the only prof remaining ig go for it but def take another professor.", + "pos": 0.028, + "neu": 0.921, + "neg": 0.051, + "_id": { + "$oid": "6711d6ffcd60fca157e5fdd5" + } + }, + { + "text": "Prof always in \"IDC\" mode. This prof isn't accessible outside class u can email her and she will never respond. and she won't accept any late hws what so ever bro. Like it's not that deep. Her exams are mid, for speeches u do need to research! She records ur speeches. P.S. don't take her cls.", + "pos": 0.052, + "neu": 0.912, + "neg": 0.037, + "_id": { + "$oid": "6711d6ffcd60fca157e5fdd6" + } + }, + { + "text": "this professor was so complicated when it came to grading and also speeches be aware that you don't take this class willingly its 4 major speeches so if you do not like public speaking don't take this class its so complicated when it could be so simple.", + "pos": 0.0, + "neu": 0.956, + "neg": 0.044, + "_id": { + "$oid": "6711d6ffcd60fca157e5fdd7" + } + }, + { + "text": "Prof Herath is really nice! I don't know why her reviews at different schools are bad. She gave a clear idea of what to expect in the speeches. She gave great feedback and was fair with grading. Overall, take her if you can!", + "pos": 0.234, + "neu": 0.701, + "neg": 0.065, + "_id": { + "$oid": "6711d6ffcd60fca157e5fdd8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ffcd60fca157e5fdda" + }, + "professor_name": "Jose Acosta-Seda", + "rating": 4, + "department": "Languages department", + "comments": [ + { + "text": "Good professor. Very intelligent.", + "pos": 0.756, + "neu": 0.244, + "neg": 0.0, + "_id": { + "$oid": "6711d6ffcd60fca157e5fddb" + } + }, + { + "text": "he teaches very good. I had to buy a my Spanish lab thing but I think you need for all Spanish class but im not sure. honestly the workload that was given on msl was sooo hard. like I couldn't keep up. he is a nice professor the work was too much for me.", + "pos": 0.141, + "neu": 0.746, + "neg": 0.113, + "_id": { + "$oid": "6711d6ffcd60fca157e5fddc" + } + }, + { + "text": "The class was not easy, but the professor was always open to answer my questions and go over difficult grammar topics.", + "pos": 0.0, + "neu": 0.793, + "neg": 0.207, + "_id": { + "$oid": "6711d6ffcd60fca157e5fddd" + } + }, + { + "text": "I know how to speak and write in Spanish, but not great. His lectures were PowerPoint base as he went over them. He was very attentive when we needed help or if we didnt understand something. Its not difficult to teach Spanish online, but it is difficult to engage interest or participation and he tried his best. I enjoy his class & his efforts.", + "pos": 0.269, + "neu": 0.643, + "neg": 0.088, + "_id": { + "$oid": "6711d6ffcd60fca157e5fdde" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d6ffcd60fca157e5fde0" + }, + "professor_name": "Orit Mardkha-Tenzer", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "If you know basic adobe programs you should be fine in this class. Sometimes over critical and rude as well but if you can ignore that and get the work done in time you should be fine", + "pos": 0.12, + "neu": 0.72, + "neg": 0.16, + "_id": { + "$oid": "6711d6ffcd60fca157e5fde1" + } + }, + { + "text": "Great professor, helpful demos, and always happy to answer questions. Classes prepare you for the homework, and she teaches you a lot about InDesign, illustrator, & photoshop.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d6ffcd60fca157e5fde2" + } + }, + { + "text": "1: Follow her course schedule. 2: she gives good feedback, fix your \"mistakes\" 3: pass and get good grade", + "pos": 0.239, + "neu": 0.658, + "neg": 0.103, + "_id": { + "$oid": "6711d6ffcd60fca157e5fde3" + } + }, + { + "text": "She really knows her stuff and she is really friendly. She's really patient and would give really good feedback to help improve your work. Her demonstrations are really easy to follow. If you're looking to learn more about InDesign to make magazines, booklets and posters, this professor and this class is for you. You won't regret it.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d6ffcd60fca157e5fde4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d700cd60fca157e5fde6" + }, + "professor_name": "Andres Besserer Rayas", + "rating": 4.5, + "department": "Political Science department", + "comments": [ + { + "text": "Professor Rayas is a great professor and a sweet person. Hi short papers are not hard and he is not a tough grader on the short papers. He is a tough grader on the final paper for some reason so don't be surprised if you expect an A and get a B. He gives LOTS of readings which can be hard to keep up with.", + "pos": 0.135, + "neu": 0.799, + "neg": 0.067, + "_id": { + "$oid": "6711d700cd60fca157e5fde7" + } + }, + { + "text": "Very caring professors. Although lectures sometimes are boring, the topics that he picks are really good. He tends to make his lecture based on students' interests which not quite a lot of professors do. If you have paper ideas, talk to him, he will give you advice on how to do a paper. BEST PROFESSOR AT CCNY!", + "pos": 0.204, + "neu": 0.762, + "neg": 0.034, + "_id": { + "$oid": "6711d700cd60fca157e5fde8" + } + }, + { + "text": "He is such a nice professor. He explains everything thoroughly and cares about his students. He does give a lot of reading but most of the time skimming through it helps if don't want to read it. I would 100% take his class again. His exams are not hard at all though.", + "pos": 0.155, + "neu": 0.821, + "neg": 0.023, + "_id": { + "$oid": "6711d700cd60fca157e5fde9" + } + }, + { + "text": "Professor Besserer- Rayas is aswesome! He cares about his students. He does give A LOT of reading but his personality makes up for it. We have 3-4 major assignments but they are spread out in the semester so it's not too heavy. If you can take him, please do.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d700cd60fca157e5fdea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d700cd60fca157e5fdec" + }, + "professor_name": "William Drewes", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "Fun to attend class, very flexible schedule. We had group assignments and group final project.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d700cd60fca157e5fded" + } + }, + { + "text": "The professor's course was perfect for my semester and it was easy to take in the information. Even if you rarely join the classes you still know what need to be done and what can be learn off reading the books that professor provided.", + "pos": 0.133, + "neu": 0.828, + "neg": 0.038, + "_id": { + "$oid": "6711d700cd60fca157e5fdee" + } + }, + { + "text": "It was really interesting, the content and assignments helped a lot understanding all the nonprofit sector, and how to build our own nonprofit.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d700cd60fca157e5fdef" + } + }, + { + "text": "Professor Drewes is amazing, this course was split into groups. He assigns a team captain to each group whom is the only person allowed to submit assignments. All assignments were submitted through email, meaning you did not know your grade until the end of the term. 3 6pg. Book Review Papers. 12 1pg. Video Reviews. 2 \"projects\". Love love love him", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d700cd60fca157e5fdf0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d700cd60fca157e5fdf2" + }, + "professor_name": "Shira Epstein", + "rating": 3.8, + "department": "Education department", + "comments": [ + { + "text": "Professor Epstein is a very knowledgeable woman with loads of expertise to offer and is a breath of fresh air in the school. With that being said, she holds every student to a high standard and expects thorough work every time. HATES lateness. You cannot avoid her if you're in history ed so get used to it. Not a bad prof or person, just difficult.", + "pos": 0.096, + "neu": 0.82, + "neg": 0.084, + "_id": { + "$oid": "6711d700cd60fca157e5fdf3" + } + }, + { + "text": "She is the most knowledgeable professor I have had. She is also very understanding and caring. This is the most useful graduate course that has hands-on experience. I feel I have turned into even a better teacher after taking this rigorous course.", + "pos": 0.191, + "neu": 0.761, + "neg": 0.048, + "_id": { + "$oid": "6711d700cd60fca157e5fdf4" + } + }, + { + "text": "There is no way of avoiding her so try to grin and bear it. She means well.", + "pos": 0.237, + "neu": 0.564, + "neg": 0.199, + "_id": { + "$oid": "6711d700cd60fca157e5fdf5" + } + }, + { + "text": "This was the hardest I have ever worked, as well as the most I've ever learned. She builds on the work you do, gives great and timely feedback. Since she teaches grad courses, she understands life happens, just keep open communication, participate and do you work and fieldwork and you'll be fine. Those feedback changes will get the A you earned", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d700cd60fca157e5fdf6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d701cd60fca157e5fdf8" + }, + "professor_name": "Tristan Husby", + "rating": 2, + "department": "Classics department", + "comments": [ + { + "text": "I participated in every class, had a 99 average. I was pre-med and trying to get all A's. Participation was 10 or 15% of the grade. He decided to give me a B+ because I was", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d701cd60fca157e5fdf9" + } + }, + { + "text": "Ive been waiting to take this class for so long (need to learn greek and latin roots for grad school preparation) but Ive heard too many bad things about this professor and he taught the class for the last 3 semester. Hello humanities department! wish they would get a better Professor because the material looks very interesting", + "pos": 0.168, + "neu": 0.763, + "neg": 0.068, + "_id": { + "$oid": "6711d701cd60fca157e5fdfa" + } + }, + { + "text": "I think he left that first comment for himself because I can not imagine anyone enjoying this class. Very boring lectures. He starts off with class exercises, assigns homework every week, and gives long exams. The material is easy to understand but overall he doesnt care about students or their learning experience or their grades. Avoid this class!", + "pos": 0.03, + "neu": 0.813, + "neg": 0.157, + "_id": { + "$oid": "6711d701cd60fca157e5fdfb" + } + }, + { + "text": "He is such a great professor. I really enjoyed his class. He is a very clear lecturer and makes sure that students understand what he is saying. He provides you with study guides for the final and midterm. Take this class if you want to learn more vocabulary and see how Latin and Greek words come into English. You will not be disappointed!", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d701cd60fca157e5fdfc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d701cd60fca157e5fdfe" + }, + "professor_name": "Lucia Mangone", + "rating": 4.3, + "department": "Italian department", + "comments": [ + { + "text": "An amazing professor who cares about her students. She is such a caring person and it shows when she is teaching. Mangonemakes her classroom a safe place for mistakes to be made which makes learning a new language less intimidating. I recommend this class to anyone who wants to learn Italian. Magnifico professor!!!!!!!!", + "pos": 0.276, + "neu": 0.65, + "neg": 0.074, + "_id": { + "$oid": "6711d701cd60fca157e5fdff" + } + }, + { + "text": "Professor Mangone is sometimes very difficult to understand during her lectures. I really did not learn much italian because she does not do a great job at teaching it thoroughly. Her class layout is all over the place aswell, you will be doing things through blackboard, google classroom, zoom and blink learning.", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d701cd60fca157e5fe00" + } + }, + { + "text": "Professor Mangone was an amazing professor. We switched to online halfway through the semester because of the pandemic but she was still very interactive and helpful towards the class. I didn't struggle in the class at all and if I had any questions about the language she was always there to help.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d701cd60fca157e5fe01" + } + }, + { + "text": "Amazing professor!! I definitely recommend her . You learn the subject really well, cares for you to pass and tries to teach at the best of her ability. She's super cute and adorable and her exams are very fair and they include extra credit points. Just take her you won't regret it!!!!", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d701cd60fca157e5fe02" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d701cd60fca157e5fe04" + }, + "professor_name": "Timothy Allen", + "rating": 2.3, + "department": "Theater department", + "comments": [ + { + "text": "There is no reason why a syllabus has to change that frequently for one class. The class was very disorganized, most of the time we never followed what the syllabus says. He was +15 min late most of the time, and we would wait for him. I stopped waiting when he sat us down to say he was disappointed in us because some of us were coming in late", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d701cd60fca157e5fe05" + } + }, + { + "text": "For a class that came so highly recommended, I was very disappointed. Unorganized and because of that it just ruined the fun of it. Sometimes he came in in a bad mood and would kill the vibe of the whole class. The first few weeks of the semester were okay but it was a steady decline from there. Quizzes are also unnecessarily hard.", + "pos": 0.074, + "neu": 0.772, + "neg": 0.154, + "_id": { + "$oid": "6711d701cd60fca157e5fe06" + } + }, + { + "text": "Quizzes were impossible to understand & get a good grade on, was 30-40 mins late for nearly every class and we'd be sitting there for 20 mins doing nothing when he arrived, had no lesson plan half the time, and changed the syllabus 3-4 times in the span of 3 weeks. Granted, he was having a rough time but even before he was just too disorganized.", + "pos": 0.049, + "neu": 0.888, + "neg": 0.063, + "_id": { + "$oid": "6711d701cd60fca157e5fe07" + } + }, + { + "text": "Tim is a great professor. This course requires a lot of movement and creativity. The final grade is based on three performances (2-5 mins each), three quizzes (one which counts as extra credit), three extra-credit worksheets, a group assignment, a minor assignment about the persona and shadow, a short response to a dance video, and participation.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d701cd60fca157e5fe08" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d702cd60fca157e5fe0a" + }, + "professor_name": "Leah Mollin-Kling", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "awesome lecturer! theres about 5 quizzes and 5 homeworks but as long as you skim your notes before a quiz and answer the questions fully for the homework youll get full marks. The midterm and final are super easy as well as long as you actually study, but no need to know crazy specific things.", + "pos": 0.211, + "neu": 0.704, + "neg": 0.085, + "_id": { + "$oid": "6711d702cd60fca157e5fe0b" + } + }, + { + "text": "Easy A course. Her quizzes are 5 mcqs and it's pretty easy if you pay attention to the slides. She also gives you a chance to mke it up if you miss it. The discussion assignments are pretty simple too. The midterm and final consists of 30 mcqs similar to the format of the quizzes. Would take her again.", + "pos": 0.205, + "neu": 0.751, + "neg": 0.043, + "_id": { + "$oid": "6711d702cd60fca157e5fe0c" + } + }, + { + "text": "I thought of this class as more fun, but the lectures were very heavy and the quizzes were hard. I think it is not the professor's fault, it is the context and the amount of material that needs to be covered.", + "pos": 0.116, + "neu": 0.849, + "neg": 0.036, + "_id": { + "$oid": "6711d702cd60fca157e5fe0d" + } + }, + { + "text": "If you need this class or thinking about taking this class, take this class with her. Her lectures are interesting. Not much hw, just long of reading to do and discussion posts. Mainly graded on 4 discussion posts, 4 quizzes, and the midterm /final exam. Also, helps outside of class. You won't regret it. Just do the work and you'll do great.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d702cd60fca157e5fe0e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d702cd60fca157e5fe10" + }, + "professor_name": "Thomas Davies", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "Very easy class to get by. All you really need to worry about is the online blackboard on the separate website which will be posted weekly and the easy midterm as well as the end-of-year paper. But if you show up you'll easily pass his class which is only given once a week for around 4 hours so bring a snack. Half movie, half lecture class.", + "pos": 0.121, + "neu": 0.85, + "neg": 0.029, + "_id": { + "$oid": "6711d702cd60fca157e5fe11" + } + }, + { + "text": "He's an amazing professor, very down to earth and laid back! If you need a gps booster, take this class! Watch movies, discuss it, and write about it. The midterm open book, final is a paper. TAKE HIM!", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d702cd60fca157e5fe12" + } + }, + { + "text": "Definitely a great one, allows you to grow as a filmmaker and always encourage you to answer his questions.", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d702cd60fca157e5fe13" + } + }, + { + "text": "Professor Thomas Davies is a cool down to earth teacher. This mostly class consist of watching movies, talking about it, learning keywords on how to talk in the film world, and a short summary on the movie you saw and your thoughts online on his blog. only once a week, funny proof, and just watch a movie for 3 hours. only 1 test, the midterm.", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d702cd60fca157e5fe14" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d702cd60fca157e5fe16" + }, + "professor_name": "Christina Weimbaum", + "rating": 4.5, + "department": "Philosophy department", + "comments": [ + { + "text": "Christina is such an amazing and understanding person. In class we're able to express our opinions on all the topics involved within Biomedical Ethics and it was really interesting to be involved in that aspect. \n\nThere's 1 weekly hw due, 1 group project, and 1 essay \n\nExtra credit opportunities available\n\nI would take it again if I had to", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d702cd60fca157e5fe17" + } + }, + { + "text": "Her style of teaching is mostly just reading slides and answering questions. You are graded on weekly assignments, group projects, and a final paper. This is a class that you will either love or dislike. However I will say she really loves what she teaches.", + "pos": 0.155, + "neu": 0.796, + "neg": 0.049, + "_id": { + "$oid": "6711d702cd60fca157e5fe18" + } + }, + { + "text": "I'm glad I took philosophy with her. She's caring, helpful, and really gets you interested in philosophy. If you need to take intro to philosophy, take it with her.", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d702cd60fca157e5fe19" + } + }, + { + "text": "Literally the GOAT. She also taught at Brooklyn College. Such a nice, kind, and caring professor. She truly tries to make sure her students understand the content that she teaches.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d702cd60fca157e5fe1a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d703cd60fca157e5fe1c" + }, + "professor_name": "Jack Wernick", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "At times the class was boring, but the occasional laughs made up for it. Professor Wernick is caring and lenient when it comes to assignments. Typically, you have the freedom to write about what you want for essays, as long as it falls under the category he's asking. He's always open to give feedback if you ask!\n\nI definitely recommend taking him!", + "pos": 0.314, + "neu": 0.666, + "neg": 0.02, + "_id": { + "$oid": "6711d703cd60fca157e5fe1d" + } + }, + { + "text": "Overall, I enjoyed Professor Wernick's course. He is considerate about everyone (inside & outside of class), therefore, don't hesitate to ask for any help! He is very generous with deadlines, and is very flexible. I enjoyed his lectures. His assignments are relatively average (not too hard & easy, college-level), do your best!", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d703cd60fca157e5fe1e" + } + }, + { + "text": "he's a new professor, but was very supportive and understanding of other student's circumstances. a decent amount of papers were assigned, but he was very lenient and helpful throughout the process. very easy to reach if you need help with anything.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d703cd60fca157e5fe1f" + } + }, + { + "text": "He is a new Professor he has background in theater and uses that to his advantage. He tries things out of the box that he thinks will be fun and interesting but also follows the required Curriculum. He is open to feedback and gives great discussions, he really wants participation, and will put us in breakout rooms to figure things out. Overall fun", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d703cd60fca157e5fe20" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d703cd60fca157e5fe22" + }, + "professor_name": "Mazen Diab", + "rating": 3.8, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Very Good and helpfull professor. Good grader, respectfull. Will try to make sure that you understand and will repeat a couple of times if you don't get it from the first time. Take him!", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d703cd60fca157e5fe23" + } + }, + { + "text": "Angry young Prof. but simple class. Very boring even when he yells.", + "pos": 0.0, + "neu": 0.644, + "neg": 0.356, + "_id": { + "$oid": "6711d703cd60fca157e5fe24" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d703cd60fca157e5fe25" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d704cd60fca157e5fe27" + }, + "professor_name": "Antonio Furgiuelle", + "rating": 4.5, + "department": "Architecture department", + "comments": [ + { + "text": "great professor who knows a lot and will do his best to share what he knows. he is very passionate and full of energy. you will learn to push the limits, and to think outside the box. he's tough, but all for good reasons.", + "pos": 0.275, + "neu": 0.701, + "neg": 0.024, + "_id": { + "$oid": "6711d704cd60fca157e5fe28" + } + }, + { + "text": "He is a great person. Is very helpful, and very conceptual. However, you can get lost in your concept very easy if you are not firm with what you are saying. Can sometimes implement his ideas into you, which can suck if you dont like his idea. Overall, its a lot of work, you may learn a lot, but you can get lost if you dont know what you are doing", + "pos": 0.085, + "neu": 0.812, + "neg": 0.103, + "_id": { + "$oid": "6711d704cd60fca157e5fe29" + } + }, + { + "text": "really great professor with great personality. so much of the course is about modern history and trust me, you'll learn a lot. loves diagram, and cares a lot about presentation- you have to finish all your work.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d704cd60fca157e5fe2a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d704cd60fca157e5fe2c" + }, + "professor_name": "Maria Pogoulatos", + "rating": 4.7, + "department": "World Humanities department", + "comments": [ + { + "text": "BEST PROFESSOR AT CCNY! Easy going, funny and very nice to people. Her work is pretty easy also. I did all my papers last minute and got A's on all of them.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d704cd60fca157e5fe2d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d704cd60fca157e5fe2e" + } + }, + { + "text": "World's Greatest Professor I swear to Everything I Love She's Beautiful She catches your Attention and She knows What She Is doing Guarantee You'll Leave the Class WIth Nothing But an A and the knowledge of World Humanities all in an easy package", + "pos": 0.254, + "neu": 0.703, + "neg": 0.043, + "_id": { + "$oid": "6711d704cd60fca157e5fe2f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d704cd60fca157e5fe31" + }, + "professor_name": "Paula Austin", + "rating": 4.3, + "department": "African-American Studies department", + "comments": [ + { + "text": "It's true - she is very charming, fun, and helpful. All you need to do is be punctual, pay attention, and participate in class discussions. She covers a lot of material and expects you to keep up, so take good notes, and communicate with her if you miss something!", + "pos": 0.271, + "neu": 0.68, + "neg": 0.049, + "_id": { + "$oid": "6711d704cd60fca157e5fe32" + } + }, + { + "text": "Took this class for African American studies 2, and it was an excellent class! Class participation is required as well as great note taking since its your notes you will use for you midterm and final. Highly Recommended class.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d704cd60fca157e5fe33" + } + }, + { + "text": "I found her to be charming and fun and i loved coming to class.", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d704cd60fca157e5fe34" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d705cd60fca157e5fe36" + }, + "professor_name": "Zachary Bush", + "rating": 5, + "department": "World Humanities department", + "comments": [ + { + "text": "Such a nice guy. Always kept class interesting & kept us all entertained. Couldn't have had a better semester with him. Definitely recommend him!!! Take his class guys", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d705cd60fca157e5fe37" + } + }, + { + "text": "Best teacher hands down ! very chill, cool, and funny. I work, run track and am extremely tired wen i came to class but he always was interesting and kept me up ! deff would recommend him to anyone in any course !!", + "pos": 0.268, + "neu": 0.693, + "neg": 0.039, + "_id": { + "$oid": "6711d705cd60fca157e5fe38" + } + }, + { + "text": "Professor Bush is the best. I hate English class very much, but he made the class interesting. In the class we have many reading assignments, so do not fall behind on the readings.He give 2 essay that are 3-5 pages long, and a research paper. In addition there's a midterm and of course a final. The final is given on the last day of class, not on fi", + "pos": 0.084, + "neu": 0.884, + "neg": 0.032, + "_id": { + "$oid": "6711d705cd60fca157e5fe39" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d705cd60fca157e5fe3b" + }, + "professor_name": "Luz Salas", + "rating": 4.2, + "department": "Economics department", + "comments": [ + { + "text": "Great Professor! Explains well & always willing to answer questions after class or by email. Try to participate. Exam format changed to free response, most likely after reading the comment below. Questions cover the same concepts as the review & hw. They are not the same questions! Know your concepts, how to solve the problems & you'll be fine.", + "pos": 0.197, + "neu": 0.764, + "neg": 0.039, + "_id": { + "$oid": "6711d705cd60fca157e5fe3c" + } + }, + { + "text": "She tries very hard to explain and she is really a good professor.Very easy to pass the course without reading book, only solved her practice problems that she gave before exam. You can also find the online solutions easily, just google the whole question. It will show you the answers. Take her, She is so helpful.", + "pos": 0.233, + "neu": 0.703, + "neg": 0.064, + "_id": { + "$oid": "6711d705cd60fca157e5fe3d" + } + }, + { + "text": "Prof. Salas definitely knows the material but she has a difficult time presenting it to the class. I was very interested in the topics but she rushed through the chapters and did not spend time enough time connecting the material to real world situations. The best thing about the professor is that she's friendly and approachable.", + "pos": 0.227, + "neu": 0.727, + "neg": 0.046, + "_id": { + "$oid": "6711d705cd60fca157e5fe3e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d705cd60fca157e5fe40" + }, + "professor_name": "Jennifer Onyedum", + "rating": 3.7, + "department": "African-American Studies department", + "comments": [ + { + "text": "Professor Onyedum is well spoken, diligent and open minded. She has high expectation. Her class is serious but rewarding. I'm very lucky to have her as my professor. Class structure: 2 papers, 2 exams, one map quiz, extra credit opportunities,and class participation. Just do the work and enjoy her class.", + "pos": 0.285, + "neu": 0.697, + "neg": 0.018, + "_id": { + "$oid": "6711d705cd60fca157e5fe41" + } + }, + { + "text": "Worse professor ever!! Don't take her. She's hard grader. Class is boring. She reads from her power point as a lecture.", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d705cd60fca157e5fe42" + } + }, + { + "text": "One of the best at CCNY. Sets very clear expectations. She doesn't ask for a lot, but you do need to do the readings in order to understand, and ultimately, take away from the class. Definitely generated an interest in the subject and even though she has high expectations from all her students,I definitely enjoyed learning about Africa in her class", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d705cd60fca157e5fe43" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d706cd60fca157e5fe45" + }, + "professor_name": "Carol Taylor", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "She is funny, intelligent, organized and answers emails promptly. Her assignments are interesting. She is very aware of all her students whether you participate a lot or not and reaches out to encourage you to participate. She is very understanding and will work with you if necessary. She is an amazing person and really does want you to succeed :)", + "pos": 0.31, + "neu": 0.674, + "neg": 0.015, + "_id": { + "$oid": "6711d706cd60fca157e5fe46" + } + }, + { + "text": "Great professor, she will give you many writing assignments but they are reasonable, everything is typed. Be on time her classes are interesting you will learn a lot if you pay attention and just simply hand in all your assignments. She loves to give students an easy A if u simply complete the assignment with a general understanding of it", + "pos": 0.258, + "neu": 0.721, + "neg": 0.021, + "_id": { + "$oid": "6711d706cd60fca157e5fe47" + } + }, + { + "text": "She's demanding, but always wants to know what's going with students. If you take notes in class, you won't really need the textbook. She's very clear in her instructions and precise with her words. Be polite and use your inside voice when talking to her. All her assignments are short, but they're not super easy if you're not a writer.", + "pos": 0.056, + "neu": 0.816, + "neg": 0.128, + "_id": { + "$oid": "6711d706cd60fca157e5fe48" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d706cd60fca157e5fe4a" + }, + "professor_name": "Natalie Haziza", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Excellent teacher who is clearly passionate about what she does. She was able to make an information-heavy class bearable, and even enjoyable. Highly recommended!", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d706cd60fca157e5fe4b" + } + }, + { + "text": "I took her for an accelerated summer course so we had to take a lot in quickly but I found her lectures very helpful and clear. She will answer any questions you have clearly and gives great examples of the different terms. Her tests were short, mainly off her power points. Also she is very nice and caring and funny. I would love to have her again", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d706cd60fca157e5fe4c" + } + }, + { + "text": "Reads from the powerpoints, I think college students can read. Doesn't show clear understanding of the actual material. Illogical Attendance Policy. Would not take again.", + "pos": 0.0, + "neu": 0.917, + "neg": 0.083, + "_id": { + "$oid": "6711d706cd60fca157e5fe4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d706cd60fca157e5fe4f" + }, + "professor_name": "Miguel Agostini", + "rating": 4.3, + "department": "Spanish department", + "comments": [ + { + "text": "Excellent Teacher", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d706cd60fca157e5fe50" + } + }, + { + "text": "We need more time to study and practic Spanish, but in my level we need more conversation, and less assessment.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d706cd60fca157e5fe51" + } + }, + { + "text": "He likes to get sidetracked and tell storiesjokes. Still a good teacher for basic spanish", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d706cd60fca157e5fe52" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d707cd60fca157e5fe54" + }, + "professor_name": "Mariely Hernandez", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "Great professor! Her exams are tough but you need to read the text book and read the slides to do well. Her lectures are fun at times and shes very sweet. Would recommend her.", + "pos": 0.381, + "neu": 0.592, + "neg": 0.026, + "_id": { + "$oid": "6711d707cd60fca157e5fe55" + } + }, + { + "text": "This professor is the queens of curving your final grade. She curves everything. If you visit her during office hours and she will absolutely help you. She is very sweet.", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d707cd60fca157e5fe56" + } + }, + { + "text": "She is nice, friendly. Daily quizzes on readings. Three exams. If you miss two classes, you fail. Lateness is a no go, the quizzes are given the first ten minutes of class. Her book costs 100$. Class is boring most of the time, some material is interesting. A LOT OF READING. Don't expect an easy A.", + "pos": 0.127, + "neu": 0.699, + "neg": 0.175, + "_id": { + "$oid": "6711d707cd60fca157e5fe57" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d707cd60fca157e5fe59" + }, + "professor_name": "Lydia Fort", + "rating": 4.7, + "department": "Theater department", + "comments": [ + { + "text": "Professor Fort is currently at Emory and speaking from taking her freshman seminar, I feel pretty thankful for having taken her class. She is hilarious and has a lot of personality, making each day more exciting than if it were with many others. She expects you to put in the effort, but is also well aware of how much a college kid goes through.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d707cd60fca157e5fe5a" + } + }, + { + "text": "If you have a chance to take her for any theatre course, go for it. She isn't too easy, but she is very helpful, nice, and interesting.", + "pos": 0.36, + "neu": 0.594, + "neg": 0.046, + "_id": { + "$oid": "6711d707cd60fca157e5fe5b" + } + }, + { + "text": "Lydia helps guide you to your own conclusions, rather than spoon-feeding you what she feels you need to learn (which is more than I can say for other members of her department.) Awesome teacher, definitely take her classes.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d707cd60fca157e5fe5c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d707cd60fca157e5fe5e" + }, + "professor_name": "Mei Rui", + "rating": 3.7, + "department": "Chemistry department", + "comments": [ + { + "text": "She really does not know any chemistry. All she does is recite slides word for word.. and her slides aren't even her own! its from textbok! her worksheets are copied and pasted from other sites.. its a waste to go to class when she is teaching", + "pos": 0.0, + "neu": 0.93, + "neg": 0.07, + "_id": { + "$oid": "6711d707cd60fca157e5fe5f" + } + }, + { + "text": "Professor Rui made ochem fun for us! Her slides are great, and she always gives us opportunities to ask questions. Also, she makes the best review sheets!", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d707cd60fca157e5fe60" + } + }, + { + "text": "Prof. Rui is young professor who really knows organic chemistry like a devoted Christian knows the bible. The only trouble I've had understanding so far is her explanation of Hydrogen bonding. She is definately the best chemistry teacher I have ever had.", + "pos": 0.188, + "neu": 0.758, + "neg": 0.054, + "_id": { + "$oid": "6711d707cd60fca157e5fe61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d708cd60fca157e5fe63" + }, + "professor_name": "Theresa Crupi", + "rating": 4.3, + "department": "Computer Science department", + "comments": [ + { + "text": "Her lectures, exams, and projects are based on the textbook. If you read and understand the textbook, you will be fine. She is very caring and tries to make you understand the concepts!", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d708cd60fca157e5fe64" + } + }, + { + "text": "Her exams were filled with very specific, conceptual questions and barely any write-the-code questions which turned out fine with how she taught her lectures. The projects would make sure we knew how to code whatever we were learning, however, she never provided us with test cases and was a harsh grader. She taught at a very fast pace so keep up!", + "pos": 0.067, + "neu": 0.888, + "neg": 0.044, + "_id": { + "$oid": "6711d708cd60fca157e5fe65" + } + }, + { + "text": "Professor Crupi is a sweetheart and she will always try and help you whenever you can. She was my lab TA for computer science and she was great. Whenever the class felt lost she would always try her best to explain what we don't understand and she does a good job explaining as well. If you're taking any computer science class take her!", + "pos": 0.261, + "neu": 0.71, + "neg": 0.029, + "_id": { + "$oid": "6711d708cd60fca157e5fe66" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d708cd60fca157e5fe68" + }, + "professor_name": "John Fox", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "I took his class a couple of years ago and then again this past semester and you can tell he's learned a lot since, he's a much better professor now, more smooth at conducting workshops. Very smart and knowledgeable, he's read authors from practically every genre. His comments on assignments are also super helpful and insightful. Keep it up Brad!", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d708cd60fca157e5fe69" + } + }, + { + "text": "Great prof. Smart guy and the readings are awesome. I think he's a shy professor but hey, he's still good and laid back. We had a lot to read and 2 major papers we had to read out loud. Thats it. Take him!!", + "pos": 0.224, + "neu": 0.747, + "neg": 0.029, + "_id": { + "$oid": "6711d708cd60fca157e5fe6a" + } + }, + { + "text": "Not really an expert at creative writing, but he assigned us really interesting readings that actually teach you a lot. He's not very tough on the students and the class was a bit chaotic, but I'm still glad I took it. He's a good dude.", + "pos": 0.266, + "neu": 0.661, + "neg": 0.073, + "_id": { + "$oid": "6711d708cd60fca157e5fe6b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d709cd60fca157e5fe6d" + }, + "professor_name": "Tamara Kirson", + "rating": 4.7, + "department": "English As A Second Language department", + "comments": [ + { + "text": "she is a fine teacher, but a little bit too strict. She grades students depends on how much she likes a student.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d709cd60fca157e5fe6e" + } + }, + { + "text": "She is wonderful teacher. She is always worried about your success. She is a so comprehensive person. She loves teaching and you can notice it at her classes and you learn not merealy English as second language but also lessons for life.I strongly recommend her, she is great.thanks tamara", + "pos": 0.253, + "neu": 0.72, + "neg": 0.027, + "_id": { + "$oid": "6711d709cd60fca157e5fe6f" + } + }, + { + "text": "She is one of the best English Teacher in NYC. She is clear, friendly and very helpful. Keeping in touch with her students is a plus, she is always looking for a better performance of her students. Thank you Tamara, you are the best in your field. :)", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d709cd60fca157e5fe70" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d709cd60fca157e5fe72" + }, + "professor_name": "Stephen Cody", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Cool & Interesting dude. 2 exams, not cumulative. Easy 1 page papers throughout the semester (you get an average of 7). He explains things clearly and thoroughly. He does not require a textbook, but posts the reading on Blackboard, so you just have to print them out for free. I enjoyed his class. Take him & you will not regret it.", + "pos": 0.236, + "neu": 0.74, + "neg": 0.023, + "_id": { + "$oid": "6711d709cd60fca157e5fe73" + } + }, + { + "text": "This guy was the TA for my philosophy class, and even though the professor tried as hard as he could to make our lives miserable, Mr. Cody always had a way to come to the rescue. The pretentious professor usually wanted to show off his knowledge rather than teach, and it was Mr. Cody that had to explain everything to detail. Excellent TA!", + "pos": 0.103, + "neu": 0.832, + "neg": 0.065, + "_id": { + "$oid": "6711d709cd60fca157e5fe74" + } + }, + { + "text": "RATIONAL ANIMAL GOOD PROF EXPLAINS EVERYTHING DOESN'T PRESSURE STUDENTS TO PARTICIPATE IN CLASS GIVES A QUIZ EVERY WEEK ITS ONLY 5 + A BONUS QUESTION, QUESTIONS ARE MULTIPLE CHOICE SO DON'T SWEAT GIVES NOTES DON'T NEED THE BOOK JUST COME IN THE CLASS SIT IN THE BACK TAKE NOTES LISTEN DO THE QUIZES AND THE TO MID-TERM AND U GOOD", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d709cd60fca157e5fe75" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d709cd60fca157e5fe77" + }, + "professor_name": "Anna Carnaval", + "rating": 4.8, + "department": "Biology department", + "comments": [ + { + "text": "Took BIO 48300 during the winter 2015! Great Professor. Fun, fair grader and to the point.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d709cd60fca157e5fe78" + } + }, + { + "text": "Prof. Carnaval is awesome. She made the class interesting and she is very approachable. Exam one, exam two and the final were 15% each and attendance and participation was 5%. Exams were based off her lecture notes, so reading the textbook is useless.", + "pos": 0.137, + "neu": 0.806, + "neg": 0.056, + "_id": { + "$oid": "6711d709cd60fca157e5fe79" + } + }, + { + "text": "was my lab instructor for 228. amazing teacher, makes sure you understand everything and was always available outside of class. she actually cares that you get the info and wants you to enjoy the class. highly recommended.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d709cd60fca157e5fe7a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70acd60fca157e5fe7c" + }, + "professor_name": "Andrew Zago", + "rating": 1, + "department": "Architecture department", + "comments": [ + { + "text": "Zago's disinterest in his students dances with the unethical. He is a poor writer, insulting, and self-congratualtory. If he finds your work poor, he will neglect you rather than set you on the right path. Although he judged me as vapid and simple, I went to an Ivy League school, labored hard, and am nothing but smart.", + "pos": 0.0, + "neu": 0.776, + "neg": 0.224, + "_id": { + "$oid": "6711d70acd60fca157e5fe7d" + } + }, + { + "text": "this was the most painful semester i ever had. what a waste", + "pos": 0.0, + "neu": 0.625, + "neg": 0.375, + "_id": { + "$oid": "6711d70acd60fca157e5fe7e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d70acd60fca157e5fe7f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70acd60fca157e5fe81" + }, + "professor_name": "Jaime S. Coan", + "rating": 5, + "department": "World Humanities department", + "comments": [ + { + "text": "Instructor Coan is clear with his requirements and is always helpful. He is an easy grader and very approachable. Do the readings and papers and participate in class and you will do well. Would recommend him to future students as he makes the material understandable. A lot of circle time and analyzing literature.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d70acd60fca157e5fe82" + } + }, + { + "text": "i love this professor", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d70acd60fca157e5fe83" + } + }, + { + "text": "Easy professor, though the class requires several books to be read throughout the semester (avg. 1 book per week). Two analysis papers based on the readings and a weekly quiz (very easy if you do the reading. Does a good job with guiding students through the analysis of each book. Easy professor, easy class, easy A!", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d70acd60fca157e5fe84" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70acd60fca157e5fe86" + }, + "professor_name": "Veronica Dobrovitsky", + "rating": 3, + "department": "Psychology department", + "comments": [ + { + "text": "Good teacher. Would take again. Smoking hot and smart.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d70acd60fca157e5fe87" + } + }, + { + "text": "Every question was answered with I don't know. Homework exams powerpoints are part of the textbook. She could not even define words on PowerPoint she presented. Not equipped to be a good teacher.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d70acd60fca157e5fe88" + } + }, + { + "text": "She is soo helpful and sweet. go to her office hours but she is a T.A and a horrible one at that. She grades too hard and lowers our average! Take another TA for intro to psych or you'll regret it!", + "pos": 0.076, + "neu": 0.682, + "neg": 0.241, + "_id": { + "$oid": "6711d70acd60fca157e5fe89" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70bcd60fca157e5fe8b" + }, + "professor_name": "Michele Ware", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "She is an average professor. Very reasonable, her exams are very straight forward. Make sure to pay attention to the review and do her homework. Sometimes her explanations for some topics are not that good so get the text book", + "pos": 0.101, + "neu": 0.813, + "neg": 0.086, + "_id": { + "$oid": "6711d70bcd60fca157e5fe8c" + } + }, + { + "text": "Great professor very reasonable and willing to work with you. Material is presented in power point slides, 3 multiple choice tests. Straightforward and caring, put in a little effort and you will earn a good grade", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d70bcd60fca157e5fe8d" + } + }, + { + "text": "She is truly an amazing professor. If you keep up with the work there isn't any reason why you shouldn't earn an A", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d70bcd60fca157e5fe8e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70bcd60fca157e5fe90" + }, + "professor_name": "Sam Van Gool", + "rating": 2.7, + "department": "Mathematics department", + "comments": [ + { + "text": "In terms of teaching, he is not that good. He does not curve a lot. And gives a lot of homework on webassign without any extensions. His tests are harder than the examples he does in the class. Otherwise he is a very good man and is sometimes hilarious.", + "pos": 0.109, + "neu": 0.847, + "neg": 0.044, + "_id": { + "$oid": "6711d70bcd60fca157e5fe91" + } + }, + { + "text": "Great teacher but makes it hard to excel. No curve for tests and no points redeemable. Quizzes every week to keep you on track with the material. Homework is graded on correctness.", + "pos": 0.161, + "neu": 0.663, + "neg": 0.177, + "_id": { + "$oid": "6711d70bcd60fca157e5fe92" + } + }, + { + "text": "Super hard professor. He does not curve at all.", + "pos": 0.317, + "neu": 0.569, + "neg": 0.114, + "_id": { + "$oid": "6711d70bcd60fca157e5fe93" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70bcd60fca157e5fe95" + }, + "professor_name": "Carlyle Van Thompson", + "rating": 2, + "department": "English department", + "comments": [ + { + "text": "he's a horrible teacher I do NOT recommend him to anyone he has a problem with everything, a very nasty attitude, and he does not like to help his students. His grades are confusing because he does not give commentary. Just save yourself the trouble, he is only there for a check!", + "pos": 0.047, + "neu": 0.636, + "neg": 0.317, + "_id": { + "$oid": "6711d70bcd60fca157e5fe96" + } + }, + { + "text": "He wants to see his students improve. The only way to do this is to write, write, write. He doesn't hand out As easily. You need to put in the effort. Your final grade is holistic so don't be discouraged if you don't get As on all your essays. I really did learn to write better even so I was surprised at the workload: 8 essays, 2 midterms, + hw", + "pos": 0.162, + "neu": 0.805, + "neg": 0.033, + "_id": { + "$oid": "6711d70bcd60fca157e5fe97" + } + }, + { + "text": "Horrible Professor. Should not be teaching. Nothing but a show off. Spends most of the class bragging about himself. Says he wants to \"put one up\" on the class so he throws out useless names, dates, and titles of books just to \"test\" us. Throwing out random large vocabulary words to show off is not going to help the class learn what they mean. Run.", + "pos": 0.0, + "neu": 0.875, + "neg": 0.125, + "_id": { + "$oid": "6711d70bcd60fca157e5fe98" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70ccd60fca157e5fe9a" + }, + "professor_name": "Marvin Stober", + "rating": 3.3, + "department": "Education department", + "comments": [ + { + "text": "Good man! The grading and tests are a little ambiguous and nothing is due till the end of the semester, but the man is a wealth of knowledge. Knows everything to do with NYC teaching and the course consisted mostly of lectures. Cares about his students and is a good person to know.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d70ccd60fca157e5fe9b" + } + }, + { + "text": "As an instructor training teachers his long winded chalk and talk is anti-common core.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d70ccd60fca157e5fe9c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d70ccd60fca157e5fe9d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70ccd60fca157e5fe9f" + }, + "professor_name": "Elvis Fuentes", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "This professor has very draggy lectures. He is very nice and is pretty understanding. Not much work outside of class.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d70ccd60fca157e5fea0" + } + }, + { + "text": "This professor makes this class easy to pass. As long as you do the assignments on time, you'll be fine. There is a lot of material to read and write discussion boards about it. It's important to stay focus and pay attention to the lectures even though they can feel very long.", + "pos": 0.116, + "neu": 0.859, + "neg": 0.025, + "_id": { + "$oid": "6711d70ccd60fca157e5fea1" + } + }, + { + "text": "This class has to be the easiest class I have ever taken in my life. All we did in class was watch Khan academy videos and go over the presentation he made. There's only one paper, one midterm and one final exam and they are super easy.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d70ccd60fca157e5fea2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70ccd60fca157e5fea4" + }, + "professor_name": "Angelos Lampousis", + "rating": 4.3, + "department": "Earth Science department", + "comments": [ + { + "text": "He's nice and an easy-going professor. Lectures are mainly him talking which get kind of boring. Exams were the easiest thing I've seen since elementary school. Multiple choice and the answer choices are as easy as they get. Very simple to just use common sense to guess the right answer tbh. Make sure to read the chapters to study and youll be good", + "pos": 0.187, + "neu": 0.778, + "neg": 0.035, + "_id": { + "$oid": "6711d70ccd60fca157e5fea5" + } + }, + { + "text": "He's a very fair professor; he is willing to take feedback, adjust assignments and due dates if the students request that. His courses are usually very interesting to me, but this semester he had students make presentations for almost each chapter, and most of them honestly confused me more on each topic than if he had taught them himself.", + "pos": 0.124, + "neu": 0.832, + "neg": 0.045, + "_id": { + "$oid": "6711d70ccd60fca157e5fea6" + } + }, + { + "text": "He is funny and helpful and really cares about folks. Make sure you show interest in his lectures, read, and go over vocabs, and it does the trick. I hope to have more professors like him in the future!", + "pos": 0.386, + "neu": 0.591, + "neg": 0.023, + "_id": { + "$oid": "6711d70ccd60fca157e5fea7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70dcd60fca157e5fea9" + }, + "professor_name": "Hope Davis", + "rating": 3.7, + "department": "Education department", + "comments": [ + { + "text": "I love her. Shes is so kind, sweet, understanding. She helps to The best of her ability even shes hard to keep in contact with! just keep in touch. I just honestly recommend her to everyone! Want an A take her class!", + "pos": 0.461, + "neu": 0.516, + "neg": 0.023, + "_id": { + "$oid": "6711d70dcd60fca157e5feaa" + } + }, + { + "text": "The Worst professor ever she never answer her emails and she is so disorganized she don't use blackboard everything is by email.", + "pos": 0.0, + "neu": 0.742, + "neg": 0.258, + "_id": { + "$oid": "6711d70dcd60fca157e5feab" + } + }, + { + "text": "Professor Davis is a great professor. She is thoughtful, sweet, friendly, and understanding. This class was very interesting as it was fun and enjoyable too, and is in no way complicated. Professor Davis is forgiving in case anyone were to miss an assignment. I definitely recommend this class. Assignments/ projects are a smooth ride.", + "pos": 0.397, + "neu": 0.553, + "neg": 0.05, + "_id": { + "$oid": "6711d70dcd60fca157e5feac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70dcd60fca157e5feae" + }, + "professor_name": "Jillian Chase", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "This is the best TA i had in ccny in a long time. She is the best please take her. You won't be disappointed", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d70dcd60fca157e5feaf" + } + }, + { + "text": "jill is amazing simply put", + "pos": 0.487, + "neu": 0.513, + "neg": 0.0, + "_id": { + "$oid": "6711d70dcd60fca157e5feb0" + } + }, + { + "text": "Jillian explains the lab thoroughly and is willing to lend a hand if you are stuck. She also shows how the calculations are done, so if you listen to her, you will do well on the labs. She's always willing to help and unlike other professors, she is not afraid to admit she doesn't know something, and she'll work with you to get the right answer.", + "pos": 0.11, + "neu": 0.84, + "neg": 0.049, + "_id": { + "$oid": "6711d70dcd60fca157e5feb1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70dcd60fca157e5feb3" + }, + "professor_name": "Joseph Kovach", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "This teacher is amazing, you will need to give a presentation 3 times, which is not bad this was an easy class to take if you just want the credits. Plus he is really nice and understanding.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d70dcd60fca157e5feb4" + } + }, + { + "text": "I enjoyed the class. He is an excellent professor. He is patient and gentle, with a calm voice that makes the students feel calm when they are giving their speeches. He always motivates students. Every student should have a professor like him.", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d70dcd60fca157e5feb5" + } + }, + { + "text": "I would get really nervous during presentations but this teacher gave his students support and care about their feelings and would give them feedback in a nice and effective way. Really good teacher although the textbook we didn't use it at all at the end", + "pos": 0.329, + "neu": 0.643, + "neg": 0.028, + "_id": { + "$oid": "6711d70dcd60fca157e5feb6" + } + }, + { + "text": "He is very respectful and cares about how well your performance is in the class. He shares his personal experiences to lighten the mood and relates to the class to make sure you feel less anxious while giving a speech. As long as you show you care about your speech performance, he will help you", + "pos": 0.308, + "neu": 0.668, + "neg": 0.025, + "_id": { + "$oid": "6711d70dcd60fca157e5feb7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70ecd60fca157e5feb9" + }, + "professor_name": "Tania Adami", + "rating": 1, + "department": "Languages department", + "comments": [ + { + "text": "The previous comments made about this teacher are true, she does yells a lot and she doesn't know how to teach because some of the times she looks lost and disorganized. Overall this class was not fun and I was lucky to get a decent grade. If you can I would recommend looking for somewhere else if you don't want a headache.", + "pos": 0.113, + "neu": 0.769, + "neg": 0.118, + "_id": { + "$oid": "6711d70ecd60fca157e5feba" + } + }, + { + "text": "She doesn't know how to teach. Yells half the time and confused the other half of the time. Avoid her if you can.", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d70ecd60fca157e5febb" + } + }, + { + "text": "Out of every professor I have had at CCNY, she is the most unclear, most irritating, and most unorganized professor I have. She is lost half the time and yells at the class. The worst part is that she does not have the qualifications to teach Italian. If you want to save yourself the headache. AVOID! Also she writes her own reviews, so be careful.", + "pos": 0.081, + "neu": 0.723, + "neg": 0.196, + "_id": { + "$oid": "6711d70ecd60fca157e5febc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70ecd60fca157e5febe" + }, + "professor_name": "Ran Liu", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Ran is definitely one of the best professors I've encountered throughout my undergrad career. She's passionate and cares about her students. Going to lectures and writing down what she says is the key to an A in this class. There's lots of reading but she tells you what to focus on. Exams were easy and the papers were the hardest part of the course", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d70ecd60fca157e5febf" + } + }, + { + "text": "I really enjoyed this course. This class was heavily focus on slides, homework, and review sheets. If you can master those categories, then it is very easy to receive an A.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d70ecd60fca157e5fec0" + } + }, + { + "text": "I enjoyed every second of the class. She is great Professor, very passionate about the subject, answers emails quickly, and really cares about her students. As long as you pay attention in class, review her slides, and participate, you can get an A.", + "pos": 0.267, + "neu": 0.707, + "neg": 0.026, + "_id": { + "$oid": "6711d70ecd60fca157e5fec1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70ecd60fca157e5fec3" + }, + "professor_name": "Pauline Decarmo", + "rating": 3.3, + "department": "Art department", + "comments": [ + { + "text": "she Seemed very flustered in class. Very strict about attendance. Picks favorites in the class. Coincidently all black men in the class seemed to have a low grade which was very interesting.", + "pos": 0.152, + "neu": 0.733, + "neg": 0.115, + "_id": { + "$oid": "6711d70ecd60fca157e5fec4" + } + }, + { + "text": "Prof. Decarmo was amazing! She doesn't look for perfection but she does want you to put effort into your work. She can tell if you bullshitted your assignment or actually put effort into it. Expect to spend at least an hour on your assignment, but it also depends on your experience with art. Very beginner friendly if you've NEVER drawn before.", + "pos": 0.131, + "neu": 0.84, + "neg": 0.029, + "_id": { + "$oid": "6711d70ecd60fca157e5fec5" + } + }, + { + "text": "From the beginning to middle of the class, she wasn't great (based on her attitude) towards the class. She sometimes forget what we have to do in class and that's a big red flag. Overall, she's good at her work, talented and the lectures in the class.", + "pos": 0.114, + "neu": 0.791, + "neg": 0.095, + "_id": { + "$oid": "6711d70ecd60fca157e5fec6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70fcd60fca157e5fec8" + }, + "professor_name": "Joshua Sperber", + "rating": 3.8, + "department": "Political Science department", + "comments": [ + { + "text": "he does not allow retakes or to redo assignments because of \"class policy.\" I enjoyed learning but he his a tough grader. I would not take his class again. we were only given one extra credit assignment. the quizzes were only eight minutes times, so I felt like I was not given the opportunity to go back and check my answers properly.", + "pos": 0.129, + "neu": 0.786, + "neg": 0.085, + "_id": { + "$oid": "6711d70fcd60fca157e5fec9" + } + }, + { + "text": "One of my first professors in LAVC. The class is not easy, but it is super interesting. If you attend classes you will pass 100%. All tests and final based on the lectures + textbook. He does his job amazing. I fell in love with Political science because of this professor. \nTake this class. He is amazing.\nThank you professor.", + "pos": 0.341, + "neu": 0.638, + "neg": 0.021, + "_id": { + "$oid": "6711d70fcd60fca157e5feca" + } + }, + { + "text": "Prof. Sperber is a good professor. Just 2 papers and a midterm, No final. The lectures were very informing. Overall, a great professor.", + "pos": 0.24, + "neu": 0.685, + "neg": 0.075, + "_id": { + "$oid": "6711d70fcd60fca157e5fecb" + } + }, + { + "text": "good guy. 2 papers and a midterm", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d70fcd60fca157e5fecc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d70fcd60fca157e5fece" + }, + "professor_name": "Chelsea Largent", + "rating": 5, + "department": "French department", + "comments": [ + { + "text": "Prof. Largent is amazing ! Honestly one of the best prof's I've took at QC. Even though her class requires reading about 3 books, they are pretty easy and interesting! There is a paper due after each book is read, but it was a peace of cake, nothing too hard & the prof is very connected with her students, meaning you could email her any time!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d70fcd60fca157e5fecf" + } + }, + { + "text": "She's an amazing professor. Had her for French 41W I enjoyed her lectures and she allows you to express your feelings about the books in your papers. She's very understanding as long as you do all of her assignments the class is an easy A. I would definitely take her again.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d70fcd60fca157e5fed0" + } + }, + { + "text": "My first time taking a foreign language course in college. It was a great experience. She is very sweet and her classes are interesting. She made the course doable:) there are 4 exams, labs (not many), sometimes homework, and a oral midterm, and a final paper (no final exam)", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d70fcd60fca157e5fed1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d710cd60fca157e5fed3" + }, + "professor_name": "Mahtab Tuba", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Tuba genuinely cares for her students. She gave us multiple chances for extra credit throughout the course and always makes sure we understand the material and lectures as they can be packed with information. She's a very sweet instructor, would definitely take her again if I had the chance.", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d710cd60fca157e5fed4" + } + }, + { + "text": "This professor is an amazing human being. I will truly recommend because she cares for students and is always willing to address any questions and concerns relating to class. Attendance is mandatory and i highly recommend office hours for any clarification of course material. You are in great Hands!", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d710cd60fca157e5fed5" + } + }, + { + "text": "THE PROFESSOR IS FAIR, THIS CLASS WAS OVERWHELMING AT TIMES BECAUSE THERE WERE LOTS OF SURPRISES BOTH GOOD AND BAD. I BARELY SURVIVED. YOU MUST STUDY HARD IF YOU WANT TO PASS THE CLASS!!!", + "pos": 0.278, + "neu": 0.611, + "neg": 0.111, + "_id": { + "$oid": "6711d710cd60fca157e5fed6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d710cd60fca157e5fed8" + }, + "professor_name": "Bertie Ferdman", + "rating": 3.5, + "department": "Theater department", + "comments": [ + { + "text": "Professor Ferdman is the best teacher you can take for your speech class, she is so professional yet very punctual! She gives a lot of her time to students to understand her lecture, quizzes are easy if you understand her lecture. Again very professional teacher, ask her several questions and she will definitely answer them very nicely! I loved her", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d710cd60fca157e5fed9" + } + }, + { + "text": "she does the absolute most. If I could rate her a 0 I would. This professor doesn't give anyone a chance to breathe with all the assignments back to back. 0/10 do not recommend.", + "pos": 0.055, + "neu": 0.886, + "neg": 0.058, + "_id": { + "$oid": "6711d710cd60fca157e5feda" + } + }, + { + "text": "She is such a sweet professor! She made the class extremely interesting and opened my curiosity about theater around the world. Definitely take her class if you can.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d710cd60fca157e5fedb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d710cd60fca157e5fedd" + }, + "professor_name": "Thomas Muzart", + "rating": 4.2, + "department": "French department", + "comments": [ + { + "text": "I took French 44 with him at Pomona. Absolutely great professor, with super entertaining classes. He puts a strong emphasis on learning and improving, and the course is based in that. There is reading and grammar homework for each class, but grading and exams are reasonable.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d710cd60fca157e5fede" + } + }, + { + "text": "The Professor is one of the best I have had. I am no French major, just took the course but he made it fun and easy. I loved going to his class, he is an amazing professor and person who genuinely wants his students to do well. His tests are not hard, they are there to test if you understand the material which is great. AWESOME PROF, TAKE HIM,ENJOY", + "pos": 0.385, + "neu": 0.599, + "neg": 0.016, + "_id": { + "$oid": "6711d710cd60fca157e5fedf" + } + }, + { + "text": "He is very enthusiastic,He will explain a topic again, if you don't understand. He is very cool, at the end of the semester he bought pizza for the class. The tests are not easy, well no foreign language test is easy. Just show up to class, study, ask questions and do your homework.I give him 4/5.", + "pos": 0.118, + "neu": 0.815, + "neg": 0.067, + "_id": { + "$oid": "6711d710cd60fca157e5fee0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d711cd60fca157e5fee2" + }, + "professor_name": "Martin Fagin", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Truly awesome person", + "pos": 0.875, + "neu": 0.125, + "neg": 0.0, + "_id": { + "$oid": "6711d711cd60fca157e5fee3" + } + }, + { + "text": "Good class - fun, engaging, and I leaned a lot. He likes class discussions and he's funny. Group presentations are fun. He can be a stickler with certain things but in general he is flexible and understanding. he loves what he does and it shows. Weekly discussion posts and 1 final paper, 10pgs- typical for masters level. Definitely recommend!!", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d711cd60fca157e5fee4" + } + }, + { + "text": "Professor Fagin knows his isht & is entertaining, too. He encourages class discussion and will answer any question you have. He is open to your view even if you disagree with him - he values other perspectives. Lots of discussion, picky with some things but overall reasonable with grades, gives extra credit, definitely cares about his students.", + "pos": 0.244, + "neu": 0.73, + "neg": 0.026, + "_id": { + "$oid": "6711d711cd60fca157e5fee5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d711cd60fca157e5fee7" + }, + "professor_name": "Joshua Meisel", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Genuinely cares for his students. Always clutches up for his students.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d711cd60fca157e5fee8" + } + }, + { + "text": "Very genuine professor. He's very caring, funny, and wish many professors could be like him. If I would have a math professor for the rest of my life, it would definitely be him. Only had 2 midterms and about like 5 quizzes and drops the lowest quiz.", + "pos": 0.286, + "neu": 0.67, + "neg": 0.044, + "_id": { + "$oid": "6711d711cd60fca157e5fee9" + } + }, + { + "text": "He's the best", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d711cd60fca157e5feea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d711cd60fca157e5feec" + }, + "professor_name": "Tonya Hendrix", + "rating": 1.8, + "department": "Biology department", + "comments": [ + { + "text": "she is very nice and energetic but her quizzes and exams are HARD. sometimes forgets to put up the slides for the students to study from that. Her study guides are not on point at all. her quizzes and exams give u something else. not the most helpful or extra credit giver. with her either u pass or u fail", + "pos": 0.143, + "neu": 0.712, + "neg": 0.145, + "_id": { + "$oid": "6711d711cd60fca157e5feed" + } + }, + { + "text": "She seems very nice and helpful but her class made no sense at all. The only things I did understand I understood because I had already known it. It seemed the only students who excelled in her class were also in another science class that semester (like chem). She has a nice personality but is not the teacher you want because she is extremely hard", + "pos": 0.213, + "neu": 0.725, + "neg": 0.062, + "_id": { + "$oid": "6711d711cd60fca157e5feee" + } + }, + { + "text": "A rookie at teaching, but has great potential. Material can be complex, and exams look for details. You really must work to do well in this course.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d711cd60fca157e5feef" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d712cd60fca157e5fef1" + }, + "professor_name": "Nikita Kelkar", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "One of the best TA's out there. After taking many courses after hers, I now realize how caring and sweet she was.", + "pos": 0.354, + "neu": 0.646, + "neg": 0.0, + "_id": { + "$oid": "6711d712cd60fca157e5fef2" + } + }, + { + "text": "She's a nice person and seems to really care about the students. She also explains well!", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d712cd60fca157e5fef3" + } + }, + { + "text": "Nikita is the kindest and most caring TA I have ever had. I wish I could have her as all my TA's! She patiently explains everything and will repeat the same thing over and over without getting annoyed at us. If you take Biology 229-- try and take Nikita as your TA! You won't regret it, trust me.", + "pos": 0.169, + "neu": 0.791, + "neg": 0.04, + "_id": { + "$oid": "6711d712cd60fca157e5fef4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d712cd60fca157e5fef6" + }, + "professor_name": "Luis Loayza", + "rating": 4, + "department": "Spanish department", + "comments": [ + { + "text": "I think that he is one of the best spanish professors! His class is never boring and he makes it fun for us to learn. His explanations are very thorough and he gives us a lot of help to pass our tests! All of the practices he gives are really similar to what we see on the tests. He truly cares about his students! Take him you won't\n regret it!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d712cd60fca157e5fef7" + } + }, + { + "text": "During my time taking this class, Luis was a funny guy when I was in his class, everyone laughed at his jokes. he taught the class very well and gave examples of how to use Spanish words every time. His teaching methods were great. I had a fun time with this class and if I had to choose I would have him as a teacher again 10,000% guaranteed.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d712cd60fca157e5fef8" + } + }, + { + "text": "Easy class. Too easy actually. Grading is unclear & juvenile. Favoritism was a problem. It was easier than a high school Spanish class which was disappointing. Doesn't really like questions being asked that he thinks will confuse other students which is boring at best. If you're knowledgeable in Spanish & want an easy A, go for it. Otherwise, skip.", + "pos": 0.236, + "neu": 0.581, + "neg": 0.182, + "_id": { + "$oid": "6711d712cd60fca157e5fef9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d712cd60fca157e5fefb" + }, + "professor_name": "Rocio Gil Martinez De Escobar", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "great professor, nice understanding professional but id say shes a bit of an inconsistent grader.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d712cd60fca157e5fefc" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d712cd60fca157e5fefd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d713cd60fca157e5feff" + }, + "professor_name": "Lucinda Bratini", + "rating": 5, + "department": "Latin American Studies department", + "comments": [ + { + "text": "Awesome professor! Very helpful, fun and easy! easy A, just go and participate.", + "pos": 0.682, + "neu": 0.318, + "neg": 0.0, + "_id": { + "$oid": "6711d713cd60fca157e5ff00" + } + }, + { + "text": "she is very nice teacher she uses blackboard a lot with alot of readings but text book are not used. she gives 3 responds paper (3-5)pages you pick the ones you want to write about the final is (5-8)pages where you pick one of three books. attendance is very important", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d713cd60fca157e5ff01" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d713cd60fca157e5ff03" + }, + "professor_name": "Alicia Sponholz", + "rating": 4.8, + "department": "Biology department", + "comments": [ + { + "text": "Can't wait to take the next course Alicia teaches. Biology is so cool", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d713cd60fca157e5ff04" + } + }, + { + "text": "She is an amazing instructor, which will always be there for you. She wants her students to excel therefore she gives extra credit and make up opportunities. Her test are not easy, but if you study and you understand the material you'll do great on this class. TAKE HER, she is great!!", + "pos": 0.299, + "neu": 0.676, + "neg": 0.026, + "_id": { + "$oid": "6711d713cd60fca157e5ff05" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d713cd60fca157e5ff07" + }, + "professor_name": "Rebecca Frankel", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "The prevailing notion is that because she received her Bachelors from Princeton, her Masters from NYU and her PhD from Yale, she is an excellent professor. Nothing could be further form the truth. She doesnt teach, Just goes around the room HASTILY drilling through curriculum questions. Oblivious when it comes to imparting knowledge. Bad w/ tech", + "pos": 0.096, + "neu": 0.848, + "neg": 0.056, + "_id": { + "$oid": "6711d713cd60fca157e5ff08" + } + }, + { + "text": "gives extra credit marks and lets you take makeup exams.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d713cd60fca157e5ff09" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d714cd60fca157e5ff0b" + }, + "professor_name": "Andrea Recarte", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Very knowledgeable and easy going. I have learned a lot from her.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d714cd60fca157e5ff0c" + } + }, + { + "text": "She was really helpful for this hard topic. There is a lot of workload but she is willing to help and explain, also she gives detailed and personalized feedback on every paper. I learned a lot, she's very knowledgeable. Very easy going", + "pos": 0.208, + "neu": 0.768, + "neg": 0.024, + "_id": { + "$oid": "6711d714cd60fca157e5ff0d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d714cd60fca157e5ff0f" + }, + "professor_name": "Elizabeth Blair Davey", + "rating": 4.5, + "department": "Mathematics department", + "comments": [ + { + "text": "she was a very good professor for me in calculus 1.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d714cd60fca157e5ff10" + } + }, + { + "text": "Clear and organized professor. Very willing to help. Course itself requires time. Understand the Homework problems and do them. Exams are pretty standard. She is very willing to help. Respond in email and available during office hours. Just take her notes and do the homework properly, you will be good.", + "pos": 0.239, + "neu": 0.717, + "neg": 0.044, + "_id": { + "$oid": "6711d714cd60fca157e5ff11" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d714cd60fca157e5ff13" + }, + "professor_name": "Weihua Jin", + "rating": 2.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He knows concrete very well and he is able to answer most of the questions in class. He sometimes makes minor mistakes in the examples. I have to admit that he gets a lot better than before.", + "pos": 0.167, + "neu": 0.775, + "neg": 0.059, + "_id": { + "$oid": "6711d714cd60fca157e5ff14" + } + }, + { + "text": "Decent professor but he is not very well in teaching.", + "pos": 0.0, + "neu": 0.779, + "neg": 0.221, + "_id": { + "$oid": "6711d714cd60fca157e5ff15" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d715cd60fca157e5ff17" + }, + "professor_name": "Todd Stansfield", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "Had him for writing for engineers pretty cool stingy on lateness and attendance over all pretty easy even gave me a chance to make up things i missed at the beginning of semester just follow syllabus he has everything laid out. H.W was just reading assignment to cover in class. Dont be late come to class do assignments and you should do well", + "pos": 0.208, + "neu": 0.728, + "neg": 0.064, + "_id": { + "$oid": "6711d715cd60fca157e5ff18" + } + }, + { + "text": "Had him for writing for engineers. you can find a better professor than him, hes not worth it if you want an ez A", + "pos": 0.236, + "neu": 0.705, + "neg": 0.059, + "_id": { + "$oid": "6711d715cd60fca157e5ff19" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d715cd60fca157e5ff1b" + }, + "professor_name": "Brian Johnston", + "rating": 4.3, + "department": "Psychology department", + "comments": [ + { + "text": "The teacher reads straight from the book, he is extremely dry, so bring lots of coffee to stay awake. He's helpful, but the class is not easy. If you take it, start your paper right away. He's a very critical grader. APA format to the period and comma. No slack here!", + "pos": 0.057, + "neu": 0.78, + "neg": 0.163, + "_id": { + "$oid": "6711d715cd60fca157e5ff1c" + } + }, + { + "text": "Took him for lifespan and dev during summer 2013 session I, & he's amazing. He's big on class discussions. 3 exams: first 2 were essay form, the final was all fill ins up to certain pts. 1 paper: on anything relating to lifespan and dev (cited w 4 sources). easy grader. Would def take him again!", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d715cd60fca157e5ff1d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d715cd60fca157e5ff1f" + }, + "professor_name": "Jessica Genter", + "rating": 2.5, + "department": "Science department", + "comments": [ + { + "text": "Please go back to teaching children. Worst professor Ive ever had.", + "pos": 0.149, + "neu": 0.584, + "neg": 0.266, + "_id": { + "$oid": "6711d715cd60fca157e5ff20" + } + }, + { + "text": "Professor Genter is really sweet and welcoming. She made the our life science class as enjoyable as possible, however there are a lot of things due. None of the assignment are difficult be every week there was either a short paper, test, lab or presentation. She's a fair grader and really cares for students.", + "pos": 0.228, + "neu": 0.733, + "neg": 0.038, + "_id": { + "$oid": "6711d715cd60fca157e5ff21" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d716cd60fca157e5ff23" + }, + "professor_name": "Gelonia Dent", + "rating": 1.3, + "department": "Mathematics department", + "comments": [ + { + "text": "She is simply pathetic. Has no idea what so ever about this course(numerical methods). Changed grades for Home works/exams arround a lot arround final to pass some and fail others, without any logical explanation. Avoid her at all costs, especially for this course!", + "pos": 0.0, + "neu": 0.766, + "neg": 0.234, + "_id": { + "$oid": "6711d716cd60fca157e5ff24" + } + }, + { + "text": "Most unhelpful confusing Dr./Prof. in the math department.Often late(1 hr) with no concern for her class. Stresses proofs with no practical applications. You will not learn anything take this course in Engineering dept. to learn. MATLAB used was simple.", + "pos": 0.0, + "neu": 0.785, + "neg": 0.215, + "_id": { + "$oid": "6711d716cd60fca157e5ff25" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d716cd60fca157e5ff27" + }, + "professor_name": "Anthony Mayer", + "rating": 4.8, + "department": "Mathematics department", + "comments": [ + { + "text": "He will make you love math even at eight in the morning. Very helpful and clear in his lecture.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d716cd60fca157e5ff28" + } + }, + { + "text": "Professor is very helpful.Explains material very very careful. took him for math 195 was scared about the course but he made it easy.I love the way he teaches first he tries to explain the base and once you get it he moves to hard problems.", + "pos": 0.136, + "neu": 0.734, + "neg": 0.13, + "_id": { + "$oid": "6711d716cd60fca157e5ff29" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d716cd60fca157e5ff2b" + }, + "professor_name": "Liege Motta", + "rating": 2.5, + "department": "Education department", + "comments": [ + { + "text": "The course that I took with Professor Liege was Emergent to Literacy. I thought her class was very challenging. Sometimes I was very confused on what to do for her assignments. She was not clear on what she wants done with her assignments. Everything is \"Open-ended\" Aside from all of this, I learned so much!", + "pos": 0.032, + "neu": 0.882, + "neg": 0.086, + "_id": { + "$oid": "6711d716cd60fca157e5ff2c" + } + }, + { + "text": "This professor is the worst ever. She can teach but relies on the textbooks. If you require help from her, she is not helpful at all. If you expect to get updates on your grades do not count on it. She grades papers at the end of semester not giving you a chance to rewrite the paper. She has a tendency to lose papers that you turn in.", + "pos": 0.076, + "neu": 0.778, + "neg": 0.146, + "_id": { + "$oid": "6711d716cd60fca157e5ff2d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d717cd60fca157e5ff2f" + }, + "professor_name": "Junmin Shi", + "rating": 3.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He is fair grader. The class is informative and simple.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d717cd60fca157e5ff30" + } + }, + { + "text": "Took him in the summer; easy class but his accent is a bit rough. He will give a final review before final, which is extremely helpful. If you know how to solve all the problems on the final review, you'll get an A.", + "pos": 0.163, + "neu": 0.767, + "neg": 0.07, + "_id": { + "$oid": "6711d717cd60fca157e5ff31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d717cd60fca157e5ff33" + }, + "professor_name": "Gustavo Gonzales", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Gustavos is a great teaher. When you first start the class it might seem hard and that he is a hard grader but hes not. Every assignment I turned in he gave me a 100 on. Dont miss any homwork or projects, you can turn them in late as long as you get it to him. Also make sure you show up to class and on time.Takehim if your interested in photography", + "pos": 0.135, + "neu": 0.834, + "neg": 0.03, + "_id": { + "$oid": "6711d717cd60fca157e5ff34" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d717cd60fca157e5ff35" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d717cd60fca157e5ff37" + }, + "professor_name": "Liang Zhao", + "rating": 2.3, + "department": "Mathematics department", + "comments": [ + { + "text": "the worst professor ever, and he never taught anything we had during the departmental final!!", + "pos": 0.0, + "neu": 0.749, + "neg": 0.251, + "_id": { + "$oid": "6711d717cd60fca157e5ff38" + } + }, + { + "text": "He was very helpful in understanding the topic but its hard to understand to his accent. Look through the textbook and you will definitely pass his class with an A.", + "pos": 0.164, + "neu": 0.79, + "neg": 0.047, + "_id": { + "$oid": "6711d717cd60fca157e5ff39" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d718cd60fca157e5ff3b" + }, + "professor_name": "Susan Zakaluk", + "rating": 3, + "department": "Education department", + "comments": [ + { + "text": "Great professor. Gives extensions if needed. Lots of writing but easy if you have half of a brain. Take her class if you can", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d718cd60fca157e5ff3c" + } + }, + { + "text": "Very, very hard. She makes you write, write and write. I had to drop the class.", + "pos": 0.0, + "neu": 0.775, + "neg": 0.225, + "_id": { + "$oid": "6711d718cd60fca157e5ff3d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d718cd60fca157e5ff3f" + }, + "professor_name": "Tristin Klein", + "rating": 2.8, + "department": "Education department", + "comments": [ + { + "text": "The whole class was uncomfortable through the semester. She runs her class like a dictatorship, she sits in the back and takes notes. No input whatsoever. She gives lots of importance to attendance, lateness, and breaks which I found distracting in her class. Assignments are hard and confusing as she is not helpful and her directions are ambiguous.", + "pos": 0.074, + "neu": 0.739, + "neg": 0.187, + "_id": { + "$oid": "6711d718cd60fca157e5ff40" + } + }, + { + "text": "The class is more focused and motivated when we bring our experiences into discussion. She sits back and watch the class participate. Overall, easy grader. Do the reading as she will give pop quizzes (not mentioned in syllabus).", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d718cd60fca157e5ff41" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d718cd60fca157e5ff43" + }, + "professor_name": "Kaitlin Bateman Moore", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "She is a great teacher even though she has just started. She clearly answers all questions that you have and she is cool enough to get along with the students. Awesome class and I would take her class again.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d718cd60fca157e5ff44" + } + }, + { + "text": "This professor is great! She's young so she can really relate to her students and give real world examples that the students will understand. Really goes out of her way to make sure that you are learning the material, creates games, and even bakes cookies. Make sure you attend each class because she's really big on that. If you study you will pass.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d718cd60fca157e5ff45" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d719cd60fca157e5ff47" + }, + "professor_name": "Tracy O'Neill", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Syllabus was very clear, readings are assigned after every class. You will discuss them in class. Assigns 3 papers, and are not very difficult. She is willing to help you and is very understanding. Her class can be dry at times, but I would recommend her.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d719cd60fca157e5ff48" + } + }, + { + "text": "O'Neill was pretty chill. She's very knowledgeable and can conduct a respectful but worthwhile workshopprovided ample feedback on your work such as what she liked and what she would love to see more of. Also, she does warn that there is going to be just as much reading as writing. She's very chill and as long as you do the work you should pass", + "pos": 0.219, + "neu": 0.76, + "neg": 0.021, + "_id": { + "$oid": "6711d719cd60fca157e5ff49" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d719cd60fca157e5ff4b" + }, + "professor_name": "Heidi Bach", + "rating": 4.5, + "department": "Education department", + "comments": [ + { + "text": "A wonderful, student-centered professor, who doesn't hesitate to challenge students, develop their strengths, introduce them to critical, real world teaching problems.", + "pos": 0.279, + "neu": 0.51, + "neg": 0.211, + "_id": { + "$oid": "6711d719cd60fca157e5ff4c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d719cd60fca157e5ff4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d719cd60fca157e5ff4f" + }, + "professor_name": "Benjamin Sadrian", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "He's great professor! He is helpful and provides feedback regarding your papers. You definitely need to study for the weekly quizzes. If you do well on the quizzes, then it is highly likely you will ace the two midterms he gives.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d719cd60fca157e5ff50" + } + }, + { + "text": "He is very helpful, considering the difficulty of the class. The class is a lot of work, but he will help you every step of the way. He gives three extra credits opportunity. He is one of the best professor, ever. He gives 10 quiz, 2 midterms, 1 final, none is open book. He, however drops two low quiz grade. He will help you ever step of the way.", + "pos": 0.251, + "neu": 0.699, + "neg": 0.05, + "_id": { + "$oid": "6711d719cd60fca157e5ff51" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71acd60fca157e5ff53" + }, + "professor_name": "Ritesh Chaudhuri", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Hands down, one of the best, or let's just say THE BEST lab instructor ever! He teaches you the electronics and circuiting behind the experiment and he is very helpful if you are having trouble! Definitely the best and most recommendable and you will love his class! MUST TAKE!!!", + "pos": 0.354, + "neu": 0.607, + "neg": 0.039, + "_id": { + "$oid": "6711d71acd60fca157e5ff54" + } + }, + { + "text": "He knows the materials very well and willing to teach the class. Don't wait until someone give you the answer because he knows who is doing the work. The best recommendation is review electronic 2 a little bit if you have problems. Follow the instructions + finish everything on time + understand the concept A.", + "pos": 0.108, + "neu": 0.848, + "neg": 0.044, + "_id": { + "$oid": "6711d71acd60fca157e5ff55" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71acd60fca157e5ff57" + }, + "professor_name": "Vikram Basava", + "rating": 3, + "department": "Chemistry department", + "comments": [ + { + "text": "IF you really want to learn Organic Chemistry 2, do not take him. He is very sarcastic and only cares about finishing his lectures. Doesn't care about his students. The only way to pass his class is by doing lots and lots of questions.", + "pos": 0.093, + "neu": 0.808, + "neg": 0.099, + "_id": { + "$oid": "6711d71acd60fca157e5ff58" + } + }, + { + "text": "He is funny and a nice guy. I liked his personality a lot. Take him if u can", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d71acd60fca157e5ff59" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71acd60fca157e5ff5b" + }, + "professor_name": "Bing Li", + "rating": 3.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Make sure you do every experiment in the lab cause he grades both the practical part and the report. You also need to read the manual before class and try to do simulation and the practical part at the same time", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d71acd60fca157e5ff5c" + } + }, + { + "text": "He was very helpful in dealing with any issues that may have arisen during the lab. However, despite having taught this class for several semesters, it at times felt that he only had a very basic understanding of what was going on. Very lenient when grading reports.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d71acd60fca157e5ff5d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71bcd60fca157e5ff5f" + }, + "professor_name": "James Juszczyk", + "rating": 3, + "department": "Art department", + "comments": [ + { + "text": "Professor. Juszczyk can be sarcastic at times beside that he's a great prof. He's vey understanding, if you're ever having any issues with attendance just email him. Also, the supplies are $200 or more and there will be 2 projects every week 1 in class and 1 out of class (hw). Try to always attend class and get the projects done on time", + "pos": 0.061, + "neu": 0.909, + "neg": 0.03, + "_id": { + "$oid": "6711d71bcd60fca157e5ff60" + } + }, + { + "text": "He will judge you with everything make sure you are perfect in art", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d71bcd60fca157e5ff61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71bcd60fca157e5ff63" + }, + "professor_name": "Reginald Halaby", + "rating": 2.5, + "department": "Biology department", + "comments": [ + { + "text": "This is a self-studied class, there is no lecture, so try to watch youtube videos. 5 chapters reading + 5 quizzes +5 discussion per week, and a 1-3 pages paper. He is a lenient grader, as long as you put in the efforts you can get perfect scores for discussions and the paper. Just focus on the quizzes by working with friends. Easiest A for Biology.", + "pos": 0.156, + "neu": 0.814, + "neg": 0.029, + "_id": { + "$oid": "6711d71bcd60fca157e5ff64" + } + }, + { + "text": "This class is an easy A but this professor does not reply to your messages. Several quizzes had errors and I messaged him about it and never responded. Couldve gotten more points but because of his errors I didnt.", + "pos": 0.044, + "neu": 0.815, + "neg": 0.14, + "_id": { + "$oid": "6711d71bcd60fca157e5ff65" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71bcd60fca157e5ff67" + }, + "professor_name": "Heechan Kim", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Sweetest, most thoughtful, knowledgeable person at The New School. A teacher that really makes school worth going to.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d71bcd60fca157e5ff68" + } + }, + { + "text": "Basically just do your projects then you will get an easy A. Making some wood stuffs (especially the wood chair), and they are very interesting (+easy). Heechan is very nice, easy-going prof.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d71bcd60fca157e5ff69" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71ccd60fca157e5ff6b" + }, + "professor_name": "Lily Cerat", + "rating": 3.8, + "department": "Education department", + "comments": [ + { + "text": "Amazing professor! Her lectures are usually very interesting and her homework assignments are easy. She gave just two term papers which counted for our midterm and final and allowed us to choose the prompt. She isn't a tough grader at all but she is huge on CLASS PARTICIPATION ! Highly recommend!!!", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d71ccd60fca157e5ff6c" + } + }, + { + "text": "i FELT AS THOUGH SHE MOSTLY PREACHED IN THIS CLASS. SHE DIDN'T SEEM PREPARED AND HARDLY HAD US IN ENGAGING DISCUSSION. SHE MOSTLY TALKED ABOUT WHITE PRIVILEGE AND THINGS ABOUT EDUCATION LAWS IMPLEMENTED. SHE WAS TAKING A PHD CLASS THE SAME SEMESTER THAT I HAD HER (SPRING 2012), SO IT MUST BE WHY SHE HARDLY EVER HAND N E THING SET FOR CLASS.", + "pos": 0.149, + "neu": 0.82, + "neg": 0.031, + "_id": { + "$oid": "6711d71ccd60fca157e5ff6d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71ccd60fca157e5ff6f" + }, + "professor_name": "Andreas Keller", + "rating": 4, + "department": "Philosophy department", + "comments": [ + { + "text": "I took Philosophy of Perception with Prof. Keller. Definitely one of my favorite classes of all time. He encouraged open discussions in class and his lectures are very engaging. If you like science especially neuroscience, I would strongly recommend you take this class. The assignments for this class are 1 outline, 1 paper, 1 presentation.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d71ccd60fca157e5ff70" + } + }, + { + "text": "i liked professor keller, but i will admit that he can be a bit monotonous at times. that being said, he is very flexible and his assignments are clear. follow the directions and you will pass with an A. if you need help with anything, he's there to clarify. pretty much what you can expect from an intro course.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d71ccd60fca157e5ff71" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71ccd60fca157e5ff73" + }, + "professor_name": "Eduardo Alfonso", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "Eduardo is honestly so cool and chill. He always tries to help his students out and gives them advice and extra information and books to help you. He also cares about how you are doing. His studio is so much fun since he gives extra lectures and he gets along with all of his students. He is so well organized and pushes you to be better.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d71ccd60fca157e5ff74" + } + }, + { + "text": "Eduardo for studio is truly the way to go. It is obvious that he loves his area of work due to his artistic interest and bonus informational and technical lectures. He is a quirky man who will make his mark in your brain forever. He pays attention to his students and knows who to give his extra time and assistance to. Also gives reference books! :)", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d71ccd60fca157e5ff75" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71dcd60fca157e5ff77" + }, + "professor_name": "Shaakira Haywood", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Haywood was an amazing professor. She was truly understanding and always kind to everyone. She was lenient because of the pandemic. We had a midterm, a movie powerpoint presentation, and a final paper. Quizlet is a great tool to use to pass the midterm. (this was a graduate course)", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d71dcd60fca157e5ff78" + } + }, + { + "text": "For sure one of the most memorable professors I've ever had and I'm still only a freshman. She's super clear and helpful and wants her students to succeed. She does weekly jounral entries and theres only 2 big papers. No tests or quizzes. Definitely learned a lot from this intelligent woman! note: the textbook was 80$ and I barely touched it :(", + "pos": 0.269, + "neu": 0.67, + "neg": 0.061, + "_id": { + "$oid": "6711d71dcd60fca157e5ff79" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71dcd60fca157e5ff7b" + }, + "professor_name": "Chirag Raval", + "rating": 5, + "department": "Biomedical Engineering department", + "comments": [ + { + "text": "Professor Raval is a great teacher, he wants you to excel, and is devoted to his student's success, and the understanding of the material. If you want to have his help, he's going to give it to you. He understands the material quite well and wishes you to know as much of it as possible. This material excites him, and his enjoyment is infectious.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d71dcd60fca157e5ff7c" + } + }, + { + "text": "If you've been a CCNY student for some time, then you know most of these engineering don't care about you or your grade. But this guy? You'll never meet a professor like him. He is kind, caring, and most of all he UNDERSTANDS. He is always willing to listen and accommodate all his students. Chirag is an A+ prof. We need more profs like him.", + "pos": 0.204, + "neu": 0.773, + "neg": 0.023, + "_id": { + "$oid": "6711d71dcd60fca157e5ff7d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71ecd60fca157e5ff7f" + }, + "professor_name": "Brittany Zayas", + "rating": 2.5, + "department": "English department", + "comments": [ + { + "text": "She's sweet and not a bad professor, I just didn't feel like I was in a college level class. She teaches us like we're kids. Too many group activities and her assignments aren't that challenging.", + "pos": 0.199, + "neu": 0.716, + "neg": 0.085, + "_id": { + "$oid": "6711d71ecd60fca157e5ff80" + } + }, + { + "text": "Ms. Brittany's class is okay, but I felt like I was back in high school. She teaches us like we are kids. I don't think she's a real professor, maybe an assistant teacher or something like that. Overall she's okay if you're looking for a high school type of class.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d71ecd60fca157e5ff81" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71ecd60fca157e5ff83" + }, + "professor_name": "Celia Cachat", + "rating": 5, + "department": "French department", + "comments": [ + { + "text": "Class was relatively small, so dialogue was frequent. The professor was very engaging and went above and beyond to help the class succeed. I'd take the class again, it was interesting, fun, and I always came out learning something new. Just wish I could've taken the class at a later time, mornings were rough sometimes.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d71ecd60fca157e5ff84" + } + }, + { + "text": "Amazing professor. She is really caring about her students and works with them. She allows extra credit and gives extra assignments if your grade needs help. She makes you work for your grade but you end up learning way more than expected. If you're willing to put in the work, she will work with you. Wish she was teaching fren124. One of the best!", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d71ecd60fca157e5ff85" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71ecd60fca157e5ff87" + }, + "professor_name": "Broderick Shoemaker", + "rating": 3.5, + "department": "Art department", + "comments": [ + { + "text": "First things first, he's not a good professor. Every time you ask him for help, he'll say \"I don't know figure it out\" or \"read the syllabus\". He doesn't fully clarify on it. He doesn't reply back to emails and he's very lazy when it comes to teaching the course. How are you a professor and you don't help your students? Worst professor.", + "pos": 0.037, + "neu": 0.803, + "neg": 0.16, + "_id": { + "$oid": "6711d71ecd60fca157e5ff88" + } + }, + { + "text": "Website Design is fun course!! He is a very nice professor, patient, friendly, funny. I m taking his class again - web2. I suggest student : do not miss any lecture. Its all about coding professor will teach everyone step by step. I know nothing about coding in the beginning. Now, I can code my own website. Not difficult at all.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d71ecd60fca157e5ff89" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71fcd60fca157e5ff8b" + }, + "professor_name": "Ejup Hoxha", + "rating": 4.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Great professor! Doesn't give away the answers but helps you get there", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d71fcd60fca157e5ff8c" + } + }, + { + "text": "Gives a solid background by reviewing the material before the start of each lab. Answers questions as well. Lecture slides are helpful, make sure to read the textbook afterwards because it has helpful examples. He tries his best to explain the lab without giving away the answers. He will take away points if you ask for the answer for the code.", + "pos": 0.22, + "neu": 0.752, + "neg": 0.028, + "_id": { + "$oid": "6711d71fcd60fca157e5ff8d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71fcd60fca157e5ff8f" + }, + "professor_name": "Mohammad Maneshi-pour", + "rating": 3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "The project in this class is fun. Lecture professor though is average. Rambles about god and philosophy for half the class, lecture material the other half. Lectures arent horrible but just read the book to learn. the book is well written so ur chillin. not a lot of assignments either", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d71fcd60fca157e5ff90" + } + }, + { + "text": "Makes his own lecture slides and is clear about what will be on exam. Okay professor, has no filter. Goes off on tangents but says funny things sometimes. Closed minded and thinks he as an engineer is above others. Exam format was unnecessarily confusing and was unwilling to listen to our suggestions on improving it. Only choice for 462 so...", + "pos": 0.157, + "neu": 0.785, + "neg": 0.057, + "_id": { + "$oid": "6711d71fcd60fca157e5ff91" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d71fcd60fca157e5ff93" + }, + "professor_name": "Sara Jacobson", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "She is a great teacher. Very blunt and straightforward. She gives great feedback and only had three big essays throughout the semester. She's strict but not in the way that would make you hate her but in the way that you can tell she knows what she is saying. Gave NY times articles to read in class and easy free writing discussion post. GREAT!!", + "pos": 0.247, + "neu": 0.692, + "neg": 0.06, + "_id": { + "$oid": "6711d71fcd60fca157e5ff94" + } + }, + { + "text": "Straightforward with teaching, lets us know what her expectations of us are. Assignments are fairly simple and she's available through email should you need clarification.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d71fcd60fca157e5ff95" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d720cd60fca157e5ff97" + }, + "professor_name": "Hajoe Moderegger", + "rating": 1.5, + "department": "American Studies department", + "comments": [ + { + "text": "He didn't email us about any changes to the syllabus, the final, or updates to the website. I wish I didn't take this class but it was required. I'm afraid he's going to grade harshly and he said no As. Seriously, we aren't kidding about the no notification on updates! Stay away from this class if possible! God help you if you join here...", + "pos": 0.173, + "neu": 0.734, + "neg": 0.092, + "_id": { + "$oid": "6711d720cd60fca157e5ff98" + } + }, + { + "text": "Why is this prof not listed? The main issue I had with this class is the required in-class exercises. Throughout the year he said we should follow along to 6 in class assignments and on the syllabus from the time class began he said we could submit 3 we CHOOSE. ONE WEEK before finals, he changes it only submitting the three HE wants! WHAT?? Insane.", + "pos": 0.0, + "neu": 0.948, + "neg": 0.052, + "_id": { + "$oid": "6711d720cd60fca157e5ff99" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d720cd60fca157e5ff9b" + }, + "professor_name": "Hillary Brown", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "Excellent and engaging professor who makes sure that her class engages with the real world. Can be ambiguous in terms of assignments/deliverables at times and is demanding, but wholly worthwhile.", + "pos": 0.288, + "neu": 0.671, + "neg": 0.041, + "_id": { + "$oid": "6711d720cd60fca157e5ff9c" + } + }, + { + "text": "Hillary Brown is an excellent, engaged, thoughtful professor who really takes an active interest in her students and their relationship to sustainable practices. All assessed work is written and presented (no tests/quizzes) and lectures can be long especially when remote. Highly reccomended.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d720cd60fca157e5ff9d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d721cd60fca157e5ff9f" + }, + "professor_name": "Ken Candelas", + "rating": 2, + "department": "Music department", + "comments": [ + { + "text": "Took this asynchronously and it was not that good. It was like watching youtube videos but everything is just lectures and not really teaching of what we really need to know for production. There is way to many infomation cramped into this course. He is a fun professor but it can be boring at times. Wish this was in person.", + "pos": 0.14, + "neu": 0.792, + "neg": 0.067, + "_id": { + "$oid": "6711d721cd60fca157e5ffa0" + } + }, + { + "text": "Doesn't really teach. Gives 2-hour lectures, and asks for questions at the end. Is 200 class but will expect you to know what he knows with his 15 years of experience.Harsh grader. 5 min late? 50/100 points taken off. Refuse to grade work that's late. Should update his syllabus. Is no mention of how he grades each assignment. Just don't take him.", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d721cd60fca157e5ffa1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d721cd60fca157e5ffa3" + }, + "professor_name": "Helene Erlichsonkloehn", + "rating": 1, + "department": "French department", + "comments": [ + { + "text": "Don't get me wrong, she is a very amazing person. The issue that I had with her was how unorganized she was. During the midterm period, she totally ghosted us. I learned absolutely nothing from her class because of how difficult it was to understand the way she assigned work. I passed her class because me and my classmates helped each other.", + "pos": 0.098, + "neu": 0.866, + "neg": 0.037, + "_id": { + "$oid": "6711d721cd60fca157e5ffa4" + } + }, + { + "text": "She taught at York College for the spring smester and let me tell you this lady is completely unorganized. She talks for way too much, she expects you to teach yourself the material before class and come preapred for these pop quizzes she randomly has. Honestly make some friends and try to pass together because she has outrageous teaching standards", + "pos": 0.092, + "neu": 0.862, + "neg": 0.045, + "_id": { + "$oid": "6711d721cd60fca157e5ffa5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d721cd60fca157e5ffa7" + }, + "professor_name": "Wroud Saleh", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "I'm honestly glad she was my lab TA. The course isn't easy but she does her best at explaining difficult topics, she always answers her emails quickly and overall she's pretty nice. Don't slack! The class moves very very fast but take her if you can.", + "pos": 0.292, + "neu": 0.629, + "neg": 0.08, + "_id": { + "$oid": "6711d721cd60fca157e5ffa8" + } + }, + { + "text": "She's amazing. Best TA ever!! Always open to questions!", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d721cd60fca157e5ffa9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d722cd60fca157e5ffab" + }, + "professor_name": "Richard Hoehler", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "I would suggest taking Professor Hoehler for Speech. His class is not difficult at all. He genuinely wants all his students to pass and appreciates when you show up for class. Before every speech, he gives a demonstration of what he expects. His quizzes were self-explanatory. If you put effort into this class, you will ACE this class!", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d722cd60fca157e5ffac" + } + }, + { + "text": "Fun class, The Professor is very lenient but attendance is important. Doesn't ask for too much, a few quizzes based on the textbook, and 4 speeches.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d722cd60fca157e5ffad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d722cd60fca157e5ffaf" + }, + "professor_name": "Oluwaseyi Ajayi", + "rating": 4.5, + "department": "Engineering department", + "comments": [ + { + "text": "He is a fair man; willing to understand a student's situation and make accommodations. ALWAYS practice his classwork, examples, and homework and you will probably do well. Pay attention in class because he won't always repeat himself. He is a bit strict, but he will try his best to address your concerns regarding the topics discussed in class.", + "pos": 0.14, + "neu": 0.841, + "neg": 0.019, + "_id": { + "$oid": "6711d722cd60fca157e5ffb0" + } + }, + { + "text": "Good", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d722cd60fca157e5ffb1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d722cd60fca157e5ffb3" + }, + "professor_name": "Vijay Muni", + "rating": 1, + "department": "Health Science department", + "comments": [ + { + "text": "Literally the worst professor I've ever had. He doesn't speak good English and he doesn't teach, he just yells asking you questions that only Ganesh knows. If you don't please him, then you're basically screwed for all of his classes. Worst professor I've ever had (including k-12). He is a mess performing Pams and Orthotics. Embarrassing.", + "pos": 0.0, + "neu": 0.701, + "neg": 0.299, + "_id": { + "$oid": "6711d722cd60fca157e5ffb4" + } + }, + { + "text": "Vijay learned in his own education how to inflate grades to be liked by students. He is unable to discriminate between students' use of knowledge. Those skills needed as an educator take time, training, and mentorship. He does not think students' evaluations matter in the long term, He only learned the bad part of ivy league schools' epidemic.", + "pos": 0.062, + "neu": 0.881, + "neg": 0.056, + "_id": { + "$oid": "6711d722cd60fca157e5ffb5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d723cd60fca157e5ffb7" + }, + "professor_name": "Bianca Moran", + "rating": 1.5, + "department": "Art department", + "comments": [ + { + "text": "This class didn't have to be hard, but you have some Prof. that don't know how to teach and will make it hard for you. She is a tough grader. Her lectures are not fun nor engaging. Some students struggled with her projects. It was fend for yourself and no matter how hard you try your not gonna get a perfect grade. She's not an understanding person.", + "pos": 0.091, + "neu": 0.733, + "neg": 0.176, + "_id": { + "$oid": "6711d723cd60fca157e5ffb8" + } + }, + { + "text": "Honestly she's horrible when it comes to her lectures and how she grades was not fair. I wouldn't recommend if you're planning to take her class", + "pos": 0.092, + "neu": 0.675, + "neg": 0.232, + "_id": { + "$oid": "6711d723cd60fca157e5ffb9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d723cd60fca157e5ffbb" + }, + "professor_name": "Chanchal Wagh", + "rating": 1.5, + "department": "Biology department", + "comments": [ + { + "text": "Literally beware she switches up with every assignment and never sticks to her word when she does u right its amazing but when she does u wrong (often) it hurts ur grade so much more n", + "pos": 0.055, + "neu": 0.755, + "neg": 0.19, + "_id": { + "$oid": "6711d723cd60fca157e5ffbc" + } + }, + { + "text": "She's the WORST TA, she does not care about students at all!!! She's never willing to help and when we ask questions she changes her tone and become so rude. I hope she doesn't become a teacher cz she will traumatize her students and make them change their whole career because she makes her student feel so dumb.", + "pos": 0.041, + "neu": 0.669, + "neg": 0.29, + "_id": { + "$oid": "6711d723cd60fca157e5ffbd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d723cd60fca157e5ffbf" + }, + "professor_name": "Mark Dunetz", + "rating": 5, + "department": "English As A Second Language department", + "comments": [ + { + "text": "He is best professor that I ever had.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d723cd60fca157e5ffc0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d724cd60fca157e5ffc2" + }, + "professor_name": "Jessica Newman", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Good Professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d724cd60fca157e5ffc3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d724cd60fca157e5ffc5" + }, + "professor_name": "Christopher Morin", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Very funny professor, makes the class fun and is pretty hot!!! Definitely recommend taking this course or any course with this professor", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d724cd60fca157e5ffc6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d724cd60fca157e5ffc8" + }, + "professor_name": "Warren Orange", + "rating": 4, + "department": "Administration department", + "comments": [ + { + "text": "Cool Professor. Very respectful, presentable, professional, dresses very nice, very knowledgeable. Pretty tough. He expects alot from his students and pushes you to do your best. ALOT of readings (If you like to read) Other than that you will learn alot from him.", + "pos": 0.333, + "neu": 0.636, + "neg": 0.031, + "_id": { + "$oid": "6711d724cd60fca157e5ffc9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d725cd60fca157e5ffcb" + }, + "professor_name": "Shanili Singh", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Go to her office hour for every class she breaks everything down, she gives hints if you pay attention, you can email her anytime she will also tutor outside of class , once you show that you are trying she helps but be committed.", + "pos": 0.095, + "neu": 0.879, + "neg": 0.026, + "_id": { + "$oid": "6711d725cd60fca157e5ffcc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d725cd60fca157e5ffce" + }, + "professor_name": "Edward Barnet", + "rating": 2, + "department": "History department", + "comments": [ + { + "text": "I would not take this class again. He is a tough grader, he nitpicks papers. The course packet was extremely heavy, and he expected us to carry it back and forth everytime we had class. The only positive thing I can say is that he doesn't give midterms or finals, grades are based on two term papers, two critical reviews, and unit quizzes.", + "pos": 0.053, + "neu": 0.89, + "neg": 0.056, + "_id": { + "$oid": "6711d725cd60fca157e5ffcf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d725cd60fca157e5ffd1" + }, + "professor_name": "Chris Villanueva", + "rating": 3, + "department": "Marketing department", + "comments": [ + { + "text": "Pros: he really knows the business and can help you along the way with forcing you to be creative and to work hard. / Cons: he is extremely critical and hard to please and will be vocal about his disappointment. / I can see why many students want to quit his class if all they are getting is negative feedback. He is extremely strict.", + "pos": 0.12, + "neu": 0.716, + "neg": 0.165, + "_id": { + "$oid": "6711d725cd60fca157e5ffd2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d726cd60fca157e5ffd4" + }, + "professor_name": "Jonathan Wolf", + "rating": 1, + "department": "English department", + "comments": [ + { + "text": "Trying to figure out who hired him at CCNY . Literally he isnt clear with what he wants on essays . Everyone was always confused . Essay questions were confusing . Wants you to write essays through his perspective and not yours . quizzes every week . Makes you think way to hard for something that shouldnt be thinked so deep .", + "pos": 0.0, + "neu": 0.882, + "neg": 0.118, + "_id": { + "$oid": "6711d726cd60fca157e5ffd5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d726cd60fca157e5ffd7" + }, + "professor_name": "Phillip Jordan", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Took him last semester - good teacher.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d726cd60fca157e5ffd8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d727cd60fca157e5ffda" + }, + "professor_name": "Nadya Tsytsyna", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "She's really helpful and fun as a lab instructor. She is also very serious when it comes to the lab. Lab reports must be handed in on time, and responds really quickly!!!", + "pos": 0.198, + "neu": 0.761, + "neg": 0.042, + "_id": { + "$oid": "6711d727cd60fca157e5ffdb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d727cd60fca157e5ffdd" + }, + "professor_name": "Kyle Waugh", + "rating": 4, + "department": "Humanities department", + "comments": [ + { + "text": "Kyle is a great teacher. He really wants students to get something out of the books. Class is a discussion so be sure to speak up. He assigned a few papers, but he always lets you rewrite. No tests, just read the books and have something to say about them.", + "pos": 0.08, + "neu": 0.868, + "neg": 0.052, + "_id": { + "$oid": "6711d727cd60fca157e5ffde" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d727cd60fca157e5ffe0" + }, + "professor_name": "Thomas Whitney", + "rating": 4, + "department": "Philosophy department", + "comments": [ + { + "text": "Great professor. He goes over everything and his paper topics come with a page of explanation", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d727cd60fca157e5ffe1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d728cd60fca157e5ffe3" + }, + "professor_name": "Tarek Sadaawi", + "rating": 3, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Super nice guy, VERY lenient grader despite poor exam scores. Didn't really learn anything though.", + "pos": 0.53, + "neu": 0.47, + "neg": 0.0, + "_id": { + "$oid": "6711d728cd60fca157e5ffe4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d728cd60fca157e5ffe6" + }, + "professor_name": "Melissa Singer", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Excellent Professor! Take her!", + "pos": 0.588, + "neu": 0.412, + "neg": 0.0, + "_id": { + "$oid": "6711d728cd60fca157e5ffe7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d728cd60fca157e5ffe9" + }, + "professor_name": "Ada Price", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Fantastic professor for a graphic novel class. VERY good feedback. Uses logical steps to teach how to create graphic novel work. Would take her class again if I could. Fun class.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d728cd60fca157e5ffea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d729cd60fca157e5ffec" + }, + "professor_name": "Mikhail Miroshnikov", + "rating": 1, + "department": "Chemistry department", + "comments": [ + { + "text": "I had this guy for Chem lab and he was useless. He could have walk around and ask if people needed help, but NOPE. He rather be on his phone during the entire lab. He would also take off points for tiny mistakes such as bad graph title or messing up sig figs. Also during covid-19, he would just send us slides and expect us to figure it out. SMDH", + "pos": 0.024, + "neu": 0.849, + "neg": 0.127, + "_id": { + "$oid": "6711d729cd60fca157e5ffed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d729cd60fca157e5ffef" + }, + "professor_name": "Andrew Del Calvo", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Prof. Del Calvo is probably one of the best, if not the best, Professors I've had in my college career. I was initially skeptical because he was younger, but he has loads of knowledge that he just pours out during classes. He also really cares about the work he does. His class ended up online due to COVID, but it didn't phase him. He's a rockstar!", + "pos": 0.1, + "neu": 0.847, + "neg": 0.052, + "_id": { + "$oid": "6711d729cd60fca157e5fff0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d729cd60fca157e5fff2" + }, + "professor_name": "Lydia Gerson", + "rating": 5, + "department": "Humanities department", + "comments": [ + { + "text": "Wonderful Counselor!", + "pos": 0.8, + "neu": 0.2, + "neg": 0.0, + "_id": { + "$oid": "6711d729cd60fca157e5fff3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72acd60fca157e5fff5" + }, + "professor_name": "Thi Hanh Nga Than", + "rating": 5, + "department": "Sociology department", + "comments": [ + { + "text": "Best professor ever! Easy A honestly gives a review for both final and midterm. You have to do one 7-10 page research paper towards the end. Also a couple of small writing assignments throughout the semester and you have to post 5 responses on blackboard. She does give weekly readings just make sure you have a general idea about it and you'll be :)", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d72acd60fca157e5fff6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72acd60fca157e5fff8" + }, + "professor_name": "Dmitrii Dugaev", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "He is the Lab TA for CS211. He is Chill. Does not expect much. Lab assignments are difficult but the lab reports don't require a lot of work and they don't need to be good. JUst need to submit something and will get full credit. Allowed late submissions. Start on labs early and use the internet to boost productivity. I got 80/80 for my labs.", + "pos": 0.147, + "neu": 0.829, + "neg": 0.024, + "_id": { + "$oid": "6711d72acd60fca157e5fff9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72acd60fca157e5fffb" + }, + "professor_name": "Ganondorf Doriyah", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Killed me at 30%", + "pos": 0.0, + "neu": 0.4, + "neg": 0.6, + "_id": { + "$oid": "6711d72acd60fca157e5fffc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72bcd60fca157e5fffe" + }, + "professor_name": "Luke Lawrence", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d72bcd60fca157e5ffff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72bcd60fca157e60001" + }, + "professor_name": "Q Yang", + "rating": 4, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72bcd60fca157e60003" + }, + "professor_name": "Gina Miller", + "rating": 3, + "department": "English department", + "comments": [ + { + "text": "Also goes by the name Gina Marten. Check for more reviews there.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d72bcd60fca157e60004" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72ccd60fca157e60006" + }, + "professor_name": "Ekena Manfan", + "rating": 4.5, + "department": "Biology department", + "comments": [ + { + "text": "good person", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d72ccd60fca157e60007" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72ccd60fca157e60009" + }, + "professor_name": "Jairo Arroyave", + "rating": 2.5, + "department": "Biology department", + "comments": [ + { + "text": "He is clear, but he is boring...reads from the PDF slides. Very rude. However, if you know your material, you will do good.", + "pos": 0.188, + "neu": 0.665, + "neg": 0.148, + "_id": { + "$oid": "6711d72ccd60fca157e6000a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72ccd60fca157e6000c" + }, + "professor_name": "Wai Khoo", + "rating": 2.5, + "department": "Computer Science department", + "comments": [ + { + "text": "Terrible accent. Vomits the exact words and examples of the textbook back to us in his lectures.", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d72ccd60fca157e6000d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72dcd60fca157e6000f" + }, + "professor_name": "Gregory Williams", + "rating": 1, + "department": "Administration department", + "comments": [ + { + "text": "Good riddance, the guy was completely full of himself and his own career objectives. His claim to fame was doubling the size of enrollment--like an idiot he did not increase the capacity of facilities one bit, now the school is overcrowded by at least 5000 students. Disaster.", + "pos": 0.101, + "neu": 0.735, + "neg": 0.164, + "_id": { + "$oid": "6711d72dcd60fca157e60010" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72dcd60fca157e60012" + }, + "professor_name": "Elaine Stocki", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "pretty good", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d72dcd60fca157e60013" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72dcd60fca157e60015" + }, + "professor_name": "Selen Bayar", + "rating": 2, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "She's brand new. She can't teach at all. Reads from powerpoint WORD BY WORD! Gives a lot of hw. Has a bad attitude! You must be taking this class for the third time or need to be a SUPER genius in order to pass! Bottom line She's hopeless", + "pos": 0.081, + "neu": 0.789, + "neg": 0.129, + "_id": { + "$oid": "6711d72dcd60fca157e60016" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72ecd60fca157e60018" + }, + "professor_name": "Carlos Aguasaco", + "rating": 5, + "department": "Humanities department", + "comments": [ + { + "text": "One of the best professors ever. There was a quiz everyday, but the quiz actually helped to prepare me for grad school. Knowledgeable professor and now I understand the gap between Latin America and the US.", + "pos": 0.069, + "neu": 0.931, + "neg": 0.0, + "_id": { + "$oid": "6711d72ecd60fca157e60019" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72ecd60fca157e6001b" + }, + "professor_name": "Micheal Boyer", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "Love ceramics! Easier than alot of other ceramic professors", + "pos": 0.51, + "neu": 0.49, + "neg": 0.0, + "_id": { + "$oid": "6711d72ecd60fca157e6001c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72ecd60fca157e6001e" + }, + "professor_name": "Tudor Potopopescu", + "rating": 3.5, + "department": "Philosophy department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72ecd60fca157e60020" + }, + "professor_name": "Abigail Welhouse", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Very cheerful, helpful professor. She very nice to talk to when you need help. She engage her students to participate in class. However, when you write her papers, you must follow the guidelines. For example, if she said 6 pages FULL, she really meant 6 PAGES FULL. Recommended! =)", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d72ecd60fca157e60021" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72fcd60fca157e60023" + }, + "professor_name": "Elena Stojanova", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "One of the best professor I have ever taken. She is great. She explain every single detail and help you when you need it. I had no experience with the class subject and I came out loving it. The class atmosphere is great. I would love to take a class with her again. If you do all the assignment and participate you will pass with a A.", + "pos": 0.272, + "neu": 0.703, + "neg": 0.026, + "_id": { + "$oid": "6711d72fcd60fca157e60024" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72fcd60fca157e60026" + }, + "professor_name": "Gregg Dworkin", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "All of the work given was well correlated to what was learned in class. Got a good grasp on substance abuse and treatment. Very fair with grading and available to the students outside of class time. Overall great class. The role playing was one of the best parts!", + "pos": 0.285, + "neu": 0.649, + "neg": 0.066, + "_id": { + "$oid": "6711d72fcd60fca157e60027" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d72fcd60fca157e60029" + }, + "professor_name": "Maryam Saadat", + "rating": 1.5, + "department": "Computer Science department", + "comments": [ + { + "text": "She is a recitation professor for the Introductory to Computing. She doesn't teach the lecture. She expects so much for a beginner course. I can practically feel my average going down the drain. She isn't helpful and only grades the assignments and doesn't teach at all.", + "pos": 0.0, + "neu": 0.951, + "neg": 0.049, + "_id": { + "$oid": "6711d72fcd60fca157e6002a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d730cd60fca157e6002c" + }, + "professor_name": "Angela Fisher", + "rating": 2, + "department": "Education department", + "comments": [ + { + "text": "At first she appear sweet and helpful, but thing will change quickly. She is very rude and often disrespectful to students. She expects this class to be your first priority. She will talk to you as if you are infants and toddlers. Avoid her if you can. Materials and information are great but her attitude and disrespect is not. GOOD LUCK!", + "pos": 0.117, + "neu": 0.648, + "neg": 0.235, + "_id": { + "$oid": "6711d730cd60fca157e6002d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d730cd60fca157e6002f" + }, + "professor_name": "Stephen O'brien", + "rating": 1, + "department": "Chemistry department", + "comments": [ + { + "text": "OMG Please dont take him. Have mercy on your transcript!!!!!", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d730cd60fca157e60030" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d730cd60fca157e60032" + }, + "professor_name": "Janus Adams", + "rating": 2.5, + "department": "Media Arts department", + "comments": [ + { + "text": "There are no exams nor quizzes. Weekly assignments are lengthy. Not clear with what she expects (also most students did not learn what the 333 class should have learned) because students were very confused. However, she knows her stuff", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d730cd60fca157e60033" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d731cd60fca157e60035" + }, + "professor_name": "Orinne Takagi", + "rating": 4, + "department": "Media Arts department", + "comments": [ + { + "text": "We did script writing (all aspects) and learn to film. This was a very challenging class but when you needed help she was there. I don't regret this class but if you do not need to take it and are nto comfortable of learning to film and do script writing then don't take it. one midterm and one quiz, and 3 film projects", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d731cd60fca157e60036" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d731cd60fca157e60038" + }, + "professor_name": "Meng Jiang", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "I really fell in love with film as a discipline after taking this course. You watch different movie every week and study different elements that make up a movie.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d731cd60fca157e60039" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d731cd60fca157e6003b" + }, + "professor_name": "Tonya White", + "rating": 4.5, + "department": "Education department", + "comments": [ + { + "text": "You can not ask for a better professor. Professor Tonya is great, she, is approachable, keeps class interesting, takes student comments about substitute syllabus assignments into account, and she KNOWS her stuff! The only disappoint is she only teaches Language & Literacy 1900C. Would take her again in a heartbeat. You will love this class!", + "pos": 0.216, + "neu": 0.744, + "neg": 0.04, + "_id": { + "$oid": "6711d731cd60fca157e6003c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d732cd60fca157e6003e" + }, + "professor_name": "Joey Cavalieri", + "rating": 2, + "department": "Art department", + "comments": [ + { + "text": "You only watch slideshows about comic book artists. Attendance is a sign in sheet. Weekly assignments: 2-3 page comics that you show him and the class. You will not draw in his class, he won't teach you how, but he gives handouts for you to look at later. He's a nice guy and he used to work for Marvel & DC, but don't expect to learn new skills.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d732cd60fca157e6003f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d732cd60fca157e60041" + }, + "professor_name": "Gary Biester", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "I took 'The Teaching of Calculus' with Mr. Biester as part of my grad. degree and it was honestly one of my favorite courses. The class was interesting and fair, Mr. Biester worked hard to reach all students in the class despite many not having the prerequisite math background. The course is about teaching calculus not about learning calculus.", + "pos": 0.182, + "neu": 0.797, + "neg": 0.021, + "_id": { + "$oid": "6711d732cd60fca157e60042" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d732cd60fca157e60044" + }, + "professor_name": "Talisa Feliciano", + "rating": 4, + "department": "Latin American Studies department", + "comments": [ + { + "text": "Amazing Prof! All you have to do is read the articles, cite your sources, and take notes. Sounds like a lot but its honestly so easy, there are essays due every week and she gives extra credit. Final is a 5-7 page paper, you get to choose the topic and no textbook needed. Shes super chill and easy going but you'll learn a lot too.", + "pos": 0.304, + "neu": 0.663, + "neg": 0.033, + "_id": { + "$oid": "6711d732cd60fca157e60045" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d733cd60fca157e60047" + }, + "professor_name": "David Haack", + "rating": 4, + "department": "Philosophy department", + "comments": [ + { + "text": "Took him at St. John's University. Honestly, his class is doable. Consists of two papers and one final exam. You are graded on few things but if you show up and take good notes, you should be fine. A couple students in the class don't like him and make fun of him, but personally I liked him. Good class, A if you try. He is weird though", + "pos": 0.239, + "neu": 0.704, + "neg": 0.056, + "_id": { + "$oid": "6711d733cd60fca157e60048" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d733cd60fca157e6004a" + }, + "professor_name": "Emmanuel Lachaud", + "rating": 4, + "department": "History department", + "comments": [ + { + "text": "Professor Lachaud is excellent. His class lectures are interesting. You will learn so much. Just beware, there are so MANY readings. Don't give in late work, and at least participate once each class time (even if it's something small). Participation helps your grade tremendously. He's one of the best history professors at CCNY.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d733cd60fca157e6004b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d733cd60fca157e6004d" + }, + "professor_name": "Ashiwel Undieh", + "rating": 2, + "department": "Administration department", + "comments": [ + { + "text": "This professor is awful and you don't understand the class.", + "pos": 0.0, + "neu": 0.75, + "neg": 0.25, + "_id": { + "$oid": "6711d733cd60fca157e6004e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d733cd60fca157e60050" + }, + "professor_name": "Yumi Kakutani", + "rating": 3, + "department": "Japanese department", + "comments": [ + { + "text": "A lot, A lot of homework. I've never taken a class that gives you homework literally after every class! So you will have at least three homework every week. A lot of participation in class. So many, so many quiz and test. Almost every week. Overall, this is a super heavy class. If you want something easy, don't take it.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d733cd60fca157e60051" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d734cd60fca157e60053" + }, + "professor_name": "Nancy Clark", + "rating": 1, + "department": "English department", + "comments": [ + { + "text": "Would not recommend it at all. Loves to nit-pick with grading but never gives any valuable feedback or suggestions. Forces participation and lowers your grade for attendance.", + "pos": 0.073, + "neu": 0.719, + "neg": 0.207, + "_id": { + "$oid": "6711d734cd60fca157e60054" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d734cd60fca157e60056" + }, + "professor_name": "Mohamed Khelif", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Great TA was always accessible outside of class and did his best to help out with assignments.", + "pos": 0.44, + "neu": 0.56, + "neg": 0.0, + "_id": { + "$oid": "6711d734cd60fca157e60057" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d735cd60fca157e60059" + }, + "professor_name": "Aaron Davitt", + "rating": 5, + "department": "Earth Science department", + "comments": [ + { + "text": "Had him for the sustainability lab portion of the class. learned a lot of GIS and remote sensing analysis from him. Gives good but sarcastic feedback. Helps you learn.", + "pos": 0.158, + "neu": 0.768, + "neg": 0.074, + "_id": { + "$oid": "6711d735cd60fca157e6005a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d735cd60fca157e6005c" + }, + "professor_name": "Amarilys Estrella", + "rating": 5, + "department": "Latin American Studies department", + "comments": [ + { + "text": "Estrella's class was one of my favorites last semester. She is easy going, smart and knows how to connect with the class. She is passionate about the material and helps students understand the coursework. Just keep up with the readings and participate. There is a long final paper but you spend the semester working up to it.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d735cd60fca157e6005d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d735cd60fca157e6005f" + }, + "professor_name": "Robert Gibbons", + "rating": 5, + "department": "African-American Studies department", + "comments": [ + { + "text": "This professor only started teaching this first semester and I have to say he has really amazed me. His aura generates onto his students, he has a lot of passion for what he does and it makes you appreciate it as well. Definitely enjoyed this class.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d735cd60fca157e60060" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d736cd60fca157e60062" + }, + "professor_name": "Yijing Shan", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "Yijing is the best TA I have ever had for any course taken at CCNY or elsewhere, she is extremely willing to help and explains all the material very clearly. There is a lot of written HW but, plenty of time to complete it as long as you give yourself time. Definitely try to get into her lab section. Saved my grade for the class.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d736cd60fca157e60063" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d736cd60fca157e60065" + }, + "professor_name": "Srikar Vinjamuri", + "rating": 4, + "department": "Economics department", + "comments": [ + { + "text": "He's a good professor for statistics and he'll explain anything you don't understand. Statistics becomes a pretty hard class but he tries his best to explain everything. Make sure to do your Statslab homework because it will help you on the midterm and final. Sometimes he gives review sheets for the midterm and final but do well and he'll help yo", + "pos": 0.284, + "neu": 0.701, + "neg": 0.016, + "_id": { + "$oid": "6711d736cd60fca157e60066" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d736cd60fca157e60068" + }, + "professor_name": "Kendra Wright", + "rating": 5, + "department": "Business department", + "comments": [ + { + "text": "Professor Wright is a great accounting professor. She will explain any accounting problem you have trouble with as clear as possible. The PSETs can be a little time consuming so manage your time well. Her exams are fair, make sure to study before doing her exams. If you want to learn accounting, you should take her you'll learn a lot about it.", + "pos": 0.198, + "neu": 0.729, + "neg": 0.073, + "_id": { + "$oid": "6711d736cd60fca157e60069" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d736cd60fca157e6006b" + }, + "professor_name": "Marie Nazon", + "rating": 1, + "department": "Advisor department", + "comments": [ + { + "text": "Boring. Awful! She does talk a lot about herself, if that matters", + "pos": 0.07, + "neu": 0.574, + "neg": 0.356, + "_id": { + "$oid": "6711d736cd60fca157e6006c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d737cd60fca157e6006e" + }, + "professor_name": "Monique Saunders", + "rating": 5, + "department": "Design department", + "comments": [ + { + "text": "Monique definitely cares about each student. She wants you to put out the best work possible and land that job right out of college. We typically present our hw everyweek which at first can be nerving, but you'll get used to it. If your someone so slacks off a lot you will do poorly. Do the work and you'll learn a lot.", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d737cd60fca157e6006f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d737cd60fca157e60071" + }, + "professor_name": "Esraa Elzin", + "rating": 3.7, + "department": "Marketing department", + "comments": [ + { + "text": "Professor Elzin was the best marketing professor I had at CCNY. Her class was fun and interactive and I learned so much! Professor Elzin has great experience and taught us so much about the marketing world and what to expect in a corporate marketing role. TAKE THIS CLASS!!!", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d737cd60fca157e60072" + } + }, + { + "text": "I loved her class. It really helped me with marketing and she talked about marketing ads that happened in real time versus just using a textbook. Her class is creative and the final project was really fun!", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d737cd60fca157e60073" + } + }, + { + "text": "WARNING PLEASE DO NOT TAKE HER COURSE There are many other electives courses to choose from and this one is not it. I must say she has been the worst professor I ever taken at CCNY. She barely respond to any emails, she expect you to passed her midterm with limit time of studying, and lastly she will give you extra credits but still fail you", + "pos": 0.051, + "neu": 0.823, + "neg": 0.126, + "_id": { + "$oid": "6711d737cd60fca157e60074" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d737cd60fca157e60076" + }, + "professor_name": "Conrad Tillard", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "This class was very inspiring and motivational. I learned a lot from Professor Tillard. His lectures allowed us to make connections to present day events. Professor Tillard allowed students to ask many questions which allowed us to learn from one another. The assignments for this class were very easy and quick straightforward.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d737cd60fca157e60077" + } + }, + { + "text": "The class is a joke. We didnt do much & dont know the grades for any of the work done. He said he would return the work and never did. He was always late to class & doesnt reply to emails. He took us on a few trips around Harlem. Be prepared to walk duirng the useless trips.", + "pos": 0.066, + "neu": 0.889, + "neg": 0.045, + "_id": { + "$oid": "6711d737cd60fca157e60078" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d738cd60fca157e6007a" + }, + "professor_name": "Colby Sain", + "rating": 1.2, + "department": "Biology department", + "comments": [ + { + "text": "AVOID AVOID AVOID", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d738cd60fca157e6007b" + } + }, + { + "text": "Colby is a horrible TA. She'll tell you things quickly over lecture but when trying to clarify with her one-on-one she goes, \"You should know that by now.\" Very biased. Rants about her bf + scorpion research. Has nothing to do with what we're learning. We don't care. Scolded me for taking out my phone on the first day yet everyone else had theirs.", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d738cd60fca157e6007c" + } + }, + { + "text": "Colby is one of the most racist TA's I have EVER had. Constantly was picking on me with NO remorse. Gave horrible grades on lab reports. So strict and is constantly yelling at everyone. Passive aggressive. Plz do not take her if you want to get good scores on the Lab section.", + "pos": 0.144, + "neu": 0.68, + "neg": 0.176, + "_id": { + "$oid": "6711d738cd60fca157e6007d" + } + }, + { + "text": "If you have Colby as your TA, I would advise you to RECONSIDER. She is EXTREMELY BIASED & DEFINITELY has favorites. Very unprofessional. Horrible grader. Randomly rants abt her boyfriend during class. If you're planning on passing I BEG you to choose another TA.", + "pos": 0.122, + "neu": 0.648, + "neg": 0.231, + "_id": { + "$oid": "6711d738cd60fca157e6007e" + } + }, + { + "text": "Colby doesn't care about her students. She's too self-consumed about her boyfriend becuz half of the time u will hear her random rants about her bf; totally unrelated to cls what so ever. She speaks very fast; I had hard time focusing on what she was saying. But she's an easy grader. U do the work she gives u credit periodt.", + "pos": 0.107, + "neu": 0.825, + "neg": 0.069, + "_id": { + "$oid": "6711d738cd60fca157e6007f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d738cd60fca157e60081" + }, + "professor_name": "Anika Sarkar", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Very caring, very nice and caring. Would take again", + "pos": 0.632, + "neu": 0.368, + "neg": 0.0, + "_id": { + "$oid": "6711d738cd60fca157e60082" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d738cd60fca157e60084" + }, + "professor_name": "Despina Stylianou", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "Although she is knowledgeable of her subject and takes her time to teach her lessons, this professor creates a hostile learning environment by constantly undermining students and people around her. Her behavior is detrimental to how students engage in her class, as it is difficult to get through to her due to her belittling attitude.", + "pos": 0.072, + "neu": 0.805, + "neg": 0.122, + "_id": { + "$oid": "6711d738cd60fca157e60085" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d739cd60fca157e60087" + }, + "professor_name": "Sheryl Paul", + "rating": 1, + "department": "Speech department", + "comments": [ + { + "text": "This professor had very high expectations for hef students that she does not set for herself. She is very harsh grader and offers little to no help on major assignments. Lectures are also extremely boring and repetitive", + "pos": 0.0, + "neu": 0.739, + "neg": 0.261, + "_id": { + "$oid": "6711d739cd60fca157e60088" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d739cd60fca157e6008a" + }, + "professor_name": "richard khan khan", + "rating": 2, + "department": "Computer Science department", + "comments": [ + { + "text": "Richard doesnt teach anything - he has a website that teaches for him and requires students to pay for it. 2 group projects - pretty straight forward. The final exam was supposed to be 2 hours but he made it into a 7 hour exam. He posted the exam late and is completely unreachable during the semester. The department needs to do something about this", + "pos": 0.053, + "neu": 0.929, + "neg": 0.018, + "_id": { + "$oid": "6711d739cd60fca157e6008b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d739cd60fca157e6008d" + }, + "professor_name": "Joseph Liberatore", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "you get homework on wiley which you have to pay for but it is a very good program, there a midterm and final and he gives extra credit.", + "pos": 0.227, + "neu": 0.738, + "neg": 0.035, + "_id": { + "$oid": "6711d739cd60fca157e6008e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73acd60fca157e60090" + }, + "professor_name": "Jon Delucia", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "Probably one of the easiest classes I took. It was interesting and not too heavy on the workload. Definitely take this class.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d73acd60fca157e60091" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73acd60fca157e60093" + }, + "professor_name": "Destry Sibley", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She was such a good professor ! Really knows her stuff. Took her for a English course and she was amazing. If you ever needed help she was willing to make time and was flexible with due dates.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d73acd60fca157e60094" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73acd60fca157e60096" + }, + "professor_name": "Aaorn Portman", + "rating": 5, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Rabbi Portman was a great prof. I didn't know much about the Jews and this class helped me understand the Jewish religion. The classes are interesting and easy to understand. You should take this class if you want to learn interesting things and get college credit for it.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d73acd60fca157e60097" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73bcd60fca157e60099" + }, + "professor_name": "Fadila Habchi", + "rating": 4, + "department": "French department", + "comments": [ + { + "text": "I have mixed feelings about this professor. She was nice. She gave extra credit when it was needed. She also accepted late work. However, she is not responsive to emails. You have an issue? Ask her in class or forget about it. She also would get upset when students didnt understand something which I didnt like. Her class was all over the place.", + "pos": 0.104, + "neu": 0.775, + "neg": 0.121, + "_id": { + "$oid": "6711d73bcd60fca157e6009a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73bcd60fca157e6009c" + }, + "professor_name": "John Murray", + "rating": 2, + "department": "Architecture department", + "comments": [ + { + "text": "Genuinely decent and intelligent person who has little business instructing this course, or the course itself is just structured very badly. Very vague about what he wants students to produce but there always has to be more of it. The most I got out of this class were his anecdotes and reading the textbook on my own time.", + "pos": 0.033, + "neu": 0.906, + "neg": 0.061, + "_id": { + "$oid": "6711d73bcd60fca157e6009d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73bcd60fca157e6009f" + }, + "professor_name": "Miriam Fried", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "We didn't have a lot of hw to do. Attendance is a plus but it won't hurt you, it can only help your grade. She appreciates communication. Her projects were interesting and fun. The midterm was a bit hard but if you study her slides and pay attention, you'll do fine. Overall, she was great! She's really nice and caring.", + "pos": 0.412, + "neu": 0.552, + "neg": 0.036, + "_id": { + "$oid": "6711d73bcd60fca157e600a0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73ccd60fca157e600a2" + }, + "professor_name": "Asha Reghuvaran Santha", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "she is amazing and very helpful. She is always available for questions and explains things very well.", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d73ccd60fca157e600a3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73ccd60fca157e600a5" + }, + "professor_name": "Mills Sarah", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Great Professor, knows her material. This class was like taking a trip to ancient times. I took this class 5 years ago and I still remember most of the material and how fun and interesting the material was. I wish I would have kept materials, they were amazing. Lectures were long though and exams were not easy.", + "pos": 0.267, + "neu": 0.699, + "neg": 0.034, + "_id": { + "$oid": "6711d73ccd60fca157e600a6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73ccd60fca157e600a8" + }, + "professor_name": "Mariyea Jackson", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "You'll only fail if you really really want to fail", + "pos": 0.116, + "neu": 0.434, + "neg": 0.45, + "_id": { + "$oid": "6711d73ccd60fca157e600a9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73dcd60fca157e600ab" + }, + "professor_name": "Erik Forman", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "Absolutely lovely and intelligent professor who hopefully continues to teach this sort of course in Architecture. Generally well-loved. The only complaint would be occasional shakiness of communication/planning.", + "pos": 0.282, + "neu": 0.617, + "neg": 0.101, + "_id": { + "$oid": "6711d73dcd60fca157e600ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73dcd60fca157e600ae" + }, + "professor_name": "Weicong Feng", + "rating": 1, + "department": "Computer Science department", + "comments": [ + { + "text": "Quizzes given almost every class, and they are poorly formatted and hard to understand. Unclear grading and lectures. The main positive is that he gives some extra credit, however his exams are very difficult.\nPresentation that wasn't on the syllabus makes up 10% of our grade.\nIn general the class was disorganized, do not recommend.", + "pos": 0.096, + "neu": 0.742, + "neg": 0.162, + "_id": { + "$oid": "6711d73dcd60fca157e600af" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73dcd60fca157e600b1" + }, + "professor_name": "Frederic Colier", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I really enjoyed Coliers lectures, his lectures were interesting and fun to participate in. He did assign a couple of chapters for reading and his papers weren't too bad. Definitely a great first class as a freshman.", + "pos": 0.332, + "neu": 0.622, + "neg": 0.045, + "_id": { + "$oid": "6711d73dcd60fca157e600b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73ecd60fca157e600b4" + }, + "professor_name": "VIREN BRAHMBHATT", + "rating": 3, + "department": "Architecture department", + "comments": [ + { + "text": "Professor Brahmbhatt is generally relaxed, kind, and calm. He advocates for students and is very supportive. It can be hard to hear him due to volume and accent. He talks a lot and goes on about topics, acting more as a mentor than a traditional professor, and expects prompt responses. Do not take advantage and have a fun time :) Would recommend.", + "pos": 0.265, + "neu": 0.694, + "neg": 0.041, + "_id": { + "$oid": "6711d73ecd60fca157e600b5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73ecd60fca157e600b7" + }, + "professor_name": "naseem naveed", + "rating": 1, + "department": "Design department", + "comments": [ + { + "text": "In all her classes she has not shown one time her personal port folio, the link is her art port folio. She has worked mainly in california, texas and arizona; doesn't understand how to teach to ccny students and often use the internet as their teacher instead bc it explains code better. You dont get to feel inspired , you just feel an obligation.", + "pos": 0.09, + "neu": 0.91, + "neg": 0.0, + "_id": { + "$oid": "6711d73ecd60fca157e600b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73ecd60fca157e600ba" + }, + "professor_name": "Adrian E Chavez", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Easy class. Just show up. Take pictures and participate. You good!", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d73ecd60fca157e600bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73fcd60fca157e600bd" + }, + "professor_name": "Dirk Moses", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "Although he once called my intro to an essay \"throat clearing,\" I still really enjoyed this class. Prof. Moses IS a tough grader, but you will be a better writer/academic because of it. Your grade is based on 3 papers and participation. To do well, make sure your papers are WELL researched, use many sources, and include class discussions.", + "pos": 0.222, + "neu": 0.76, + "neg": 0.018, + "_id": { + "$oid": "6711d73fcd60fca157e600be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73fcd60fca157e600c0" + }, + "professor_name": "Nikolai Avteniev", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Great professor with lots of industry experience. If you're trying to be a software engineer, this is the class for you. You get to work on a project and tackle all aspects of software engineering. Be mindful of putting great effort into the project as it takes up most of your grade (3-4 hrs/week). Make changes based on his feedback to do well!", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d73fcd60fca157e600c1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d73fcd60fca157e600c3" + }, + "professor_name": "Marco Castaldi", + "rating": 1, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "He is very unorganized and doesn't know how to teach. His exams incorporate everything from the past classes and he expects us to know how to use Aspen.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d73fcd60fca157e600c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d740cd60fca157e600c6" + }, + "professor_name": "Francisco Salgado-Robles", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Dr. Salgado is amazing, organized, fair, flexible, caring and easy to talk to. Weekly assignments but I honestly didnt mind because I loved the class so much. At times some concepts were difficult to understand but he stayed on it until he was sure the whole class understood. Hes very knowledgeable and passionate about spanish linguistics.", + "pos": 0.353, + "neu": 0.605, + "neg": 0.043, + "_id": { + "$oid": "6711d740cd60fca157e600c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d740cd60fca157e600c9" + }, + "professor_name": "Maxim Semynov", + "rating": null, + "department": "Geography department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d740cd60fca157e600cb" + }, + "professor_name": "Beth Carliner", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d741cd60fca157e600cd" + }, + "professor_name": "Nadine Carey", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d741cd60fca157e600cf" + }, + "professor_name": "Yu Fang", + "rating": null, + "department": "Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d741cd60fca157e600d1" + }, + "professor_name": "Uthama Edupuganti", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d741cd60fca157e600d3" + }, + "professor_name": "David Coulombe", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d742cd60fca157e600d5" + }, + "professor_name": "Edy Garfinkiel", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d742cd60fca157e600d7" + }, + "professor_name": "Rene Garcia", + "rating": null, + "department": "Astronomy department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d742cd60fca157e600d9" + }, + "professor_name": "Elijah Nuntildeez", + "rating": null, + "department": "Women's Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d742cd60fca157e600db" + }, + "professor_name": "Susan Donovan", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d743cd60fca157e600dd" + }, + "professor_name": "Javier Sanchez Rodriguez", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d743cd60fca157e600df" + }, + "professor_name": "Erah Ali", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d743cd60fca157e600e1" + }, + "professor_name": "Josh F. Moser", + "rating": null, + "department": "Speech department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d744cd60fca157e600e3" + }, + "professor_name": "Tara Nachtigall", + "rating": null, + "department": "Administration department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d744cd60fca157e600e5" + }, + "professor_name": "Mohammad Bolhassani", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d744cd60fca157e600e7" + }, + "professor_name": "Paul Rumenik", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d744cd60fca157e600e9" + }, + "professor_name": "Robert Barron", + "rating": null, + "department": "Biomedical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d744cd60fca157e600eb" + }, + "professor_name": "Isvett Verde", + "rating": null, + "department": "Sociology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d745cd60fca157e600ed" + }, + "professor_name": "Pablo Garcia", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d745cd60fca157e600ef" + }, + "professor_name": "Francesca Lucini", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d745cd60fca157e600f1" + }, + "professor_name": "Cheryl Sanborn", + "rating": null, + "department": "Business department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d746cd60fca157e600f3" + }, + "professor_name": "Hamideh Sedghi", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d746cd60fca157e600f5" + }, + "professor_name": "Allen Hillary", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d746cd60fca157e600f7" + }, + "professor_name": "Danielle Drori", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d747cd60fca157e600f9" + }, + "professor_name": "Panagiotis Moutis", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d747cd60fca157e600fb" + }, + "professor_name": "Steven Weissman", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d747cd60fca157e600fd" + }, + "professor_name": "Valentina Felsen", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d747cd60fca157e600ff" + }, + "professor_name": "Kenny Wessel", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d748cd60fca157e60101" + }, + "professor_name": "Jenny Dawley-Carr", + "rating": null, + "department": "English As A Second Language department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d748cd60fca157e60103" + }, + "professor_name": "Julia Andino-Montes", + "rating": null, + "department": "Sociology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d748cd60fca157e60105" + }, + "professor_name": "Michelle Matthews", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d748cd60fca157e60107" + }, + "professor_name": "June Scarlett", + "rating": null, + "department": "Nursing department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d749cd60fca157e60109" + }, + "professor_name": "Stephanie Pena", + "rating": null, + "department": "Earth Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d749cd60fca157e6010b" + }, + "professor_name": "STEPHEN BROWN", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d749cd60fca157e6010d" + }, + "professor_name": "Tracy Zimmerman", + "rating": null, + "department": "Hospitality department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74acd60fca157e6010f" + }, + "professor_name": "Anthony Aiu", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74acd60fca157e60111" + }, + "professor_name": "Kajan Ratnakumar", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74acd60fca157e60113" + }, + "professor_name": "Mitchell Schaffler", + "rating": null, + "department": "Biomedical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74acd60fca157e60115" + }, + "professor_name": "Mohamad Junaid", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74bcd60fca157e60117" + }, + "professor_name": "Axel Acevedo", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74bcd60fca157e60119" + }, + "professor_name": "Terri Carter", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74bcd60fca157e6011b" + }, + "professor_name": "Michael Lannelli", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74ccd60fca157e6011d" + }, + "professor_name": "Christopher Kreiter", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74ccd60fca157e6011f" + }, + "professor_name": "Elizabeth Newton", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74ccd60fca157e60121" + }, + "professor_name": "Lila Shams", + "rating": null, + "department": "Nursing department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74ccd60fca157e60123" + }, + "professor_name": "Alan Cation", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74dcd60fca157e60125" + }, + "professor_name": "Kirill Korvinson", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74dcd60fca157e60127" + }, + "professor_name": "Sheng Chen", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74dcd60fca157e60129" + }, + "professor_name": "AH Ahmed", + "rating": null, + "department": "Biomedical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74dcd60fca157e6012b" + }, + "professor_name": "Maria Dos Santos", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74ecd60fca157e6012d" + }, + "professor_name": "Beverly Falk", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74ecd60fca157e6012f" + }, + "professor_name": "Romi Lyallpuri", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74ecd60fca157e60131" + }, + "professor_name": "Kendra Wright", + "rating": null, + "department": "Economics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74fcd60fca157e60133" + }, + "professor_name": "David Gibson", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74fcd60fca157e60135" + }, + "professor_name": "Alisajat Asany", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74fcd60fca157e60137" + }, + "professor_name": "Miriam Woodruff", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d74fcd60fca157e60139" + }, + "professor_name": "Carlo Sevilla", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d750cd60fca157e6013b" + }, + "professor_name": "Ioannis Ioannou", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d750cd60fca157e6013d" + }, + "professor_name": "Yesim Kokner", + "rating": null, + "department": "Mechanical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d750cd60fca157e6013f" + }, + "professor_name": "Kayle Nochomovitz", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d751cd60fca157e60141" + }, + "professor_name": "Jessica Rambao", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d751cd60fca157e60143" + }, + "professor_name": "Fatima Ashraf", + "rating": null, + "department": "Public Policy department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d751cd60fca157e60145" + }, + "professor_name": "Sebastian Csar", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d752cd60fca157e60147" + }, + "professor_name": "William Drewes", + "rating": null, + "department": "Business department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d752cd60fca157e60149" + }, + "professor_name": "Christos Angelopoulos", + "rating": null, + "department": "Economics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d752cd60fca157e6014b" + }, + "professor_name": "Farnia Noel", + "rating": null, + "department": "African-American Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d752cd60fca157e6014d" + }, + "professor_name": "Paul Cooney", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d753cd60fca157e6014f" + }, + "professor_name": "Abdul Islam", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d753cd60fca157e60151" + }, + "professor_name": "Hedi Levine", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d753cd60fca157e60153" + }, + "professor_name": "Karla Batres", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d754cd60fca157e60155" + }, + "professor_name": "James Tolleson", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d754cd60fca157e60157" + }, + "professor_name": "Victory Chappotin", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d754cd60fca157e60159" + }, + "professor_name": "Marta Calvo", + "rating": null, + "department": "Economics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d754cd60fca157e6015b" + }, + "professor_name": "Andrew Aprile", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d755cd60fca157e6015d" + }, + "professor_name": "Anne Hall", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d755cd60fca157e6015f" + }, + "professor_name": "Panayiotis Moutis", + "rating": null, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d755cd60fca157e60161" + }, + "professor_name": "Kate Black", + "rating": null, + "department": "Speech department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d756cd60fca157e60163" + }, + "professor_name": "Pushpen Goala", + "rating": 1, + "department": "Computer Science department", + "comments": [ + { + "text": "Professor is incomprehensible. I can't understand what he is saying half of the time. His class is poorly structured, and he seems uninvested in his job or the success of his students.", + "pos": 0.107, + "neu": 0.893, + "neg": 0.0, + "_id": { + "$oid": "6711d756cd60fca157e60164" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d756cd60fca157e60166" + }, + "professor_name": "Janee Moses", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d756cd60fca157e60168" + }, + "professor_name": "Luan Nguyen", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d757cd60fca157e6016a" + }, + "professor_name": "Chadwick Jenkins", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d757cd60fca157e6016c" + }, + "professor_name": "Armando Escobar Gomez", + "rating": null, + "department": "Portuguese department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d757cd60fca157e6016e" + }, + "professor_name": "Nancy Tag", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d758cd60fca157e60170" + }, + "professor_name": "Ruo Jia", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d758cd60fca157e60172" + }, + "professor_name": "Mohd Hassan", + "rating": null, + "department": "Economics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d758cd60fca157e60174" + }, + "professor_name": "Sophia YIP", + "rating": null, + "department": "Humanities department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d758cd60fca157e60176" + }, + "professor_name": "Naidya Rupan", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d759cd60fca157e60178" + }, + "professor_name": "Michael Montlack", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d759cd60fca157e6017a" + }, + "professor_name": "Aybike Ahmedi", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75acd60fca157e6017c" + }, + "professor_name": "Chun Sae Park", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Chun is tough but fair. Attend class, use the free textbook, and practice the problems - you'll do well. Unstuckstudy was a game-changer for me in this course.", + "pos": 0.259, + "neu": 0.618, + "neg": 0.124, + "_id": { + "$oid": "6711d75acd60fca157e6017d" + } + }, + { + "text": "It is a math course so be prepared to study and work hard. He takes attendance every class and if you miss a lecture you will be behind. Overall a really good professor and gave us the material we need to pass", + "pos": 0.116, + "neu": 0.819, + "neg": 0.065, + "_id": { + "$oid": "6711d75acd60fca157e6017e" + } + }, + { + "text": "Prepared the class well for the final, and provided many tutoring sessions. Gave us plenty of material throughout the course. His midterms are always variations of questions from the book. His grading criteria are just the 3 midterms and a final. Overall great professor, he provided all the material for the class and prepared us well for the final", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e6017f" + } + }, + { + "text": "The only reason I withdrew is because i changed my major and 209 wasn't required but LOVE THIS MAN. he's the best. best math teacher, i dont care what anyone else says. Hes tough and he moves fast, but if u sit there and pay attention, its literally fun, and I hate math. Hes funny as hell too. Tests are not curveballs, its what you do in class!", + "pos": 0.195, + "neu": 0.57, + "neg": 0.235, + "_id": { + "$oid": "6711d75acd60fca157e60180" + } + }, + { + "text": "He is one of the worst human beings I have ever seen. Don't take his class. I am telling you.", + "pos": 0.0, + "neu": 0.823, + "neg": 0.177, + "_id": { + "$oid": "6711d75acd60fca157e60181" + } + }, + { + "text": "He teaches well and explains things clearly. There are no pop quizzes but there will be a webassign quiz at the beginning of every class, which is normal. The questions are really easy and there are only 2-3 questions. Just pay attention and you'll do good in this class.", + "pos": 0.2, + "neu": 0.745, + "neg": 0.055, + "_id": { + "$oid": "6711d75acd60fca157e60182" + } + }, + { + "text": "He was actually funny, just be nice to him and he will 100% be nice back.", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e60183" + } + }, + { + "text": "Best math professor I've ever had. He really knows how to explain the concepts. Uses a great deal of profanity. He will literally put questions from the textbook on the exams (won't even change the numbers, often) so make sure you practice those to do well on the exams! \nIf you skip lecture you're doomed. Go to tutoring if you're confused.", + "pos": 0.177, + "neu": 0.736, + "neg": 0.087, + "_id": { + "$oid": "6711d75acd60fca157e60184" + } + }, + { + "text": "Worst teacher I've ever had in my life; this class gave me the worst anxiety and depression, and he caused my first and only panic attack. Please take this class with another professor, it is not worth the stress and anxiety it will cause. I retook this class at another school and received an A+.", + "pos": 0.063, + "neu": 0.616, + "neg": 0.32, + "_id": { + "$oid": "6711d75acd60fca157e60185" + } + }, + { + "text": "If you have the chance, PLEASE PICK ANOTHER PROFESSOR. Professor Park is extremely rude. Anytime someone would ask a question (something that most of us didn't understand), he would insult them as if we are supposed to know this stuff already. We tried YouTube videos, studying together, etc. but none of that helped when taking the exams.", + "pos": 0.058, + "neu": 0.872, + "neg": 0.071, + "_id": { + "$oid": "6711d75acd60fca157e60186" + } + }, + { + "text": "I BEG YOU! DO NOT TAKE HIM! THE WORST PROF IVE EVER HAD! THERE ARE SO MANY TESTS AND HE DOESN'T EVEN GIVE YOU ENOUGH TIME TO PRACTICE THE TOPICS PROPERLY BECAUSE THERE WILL BE TESTS ONE AFTER ANOTHER!", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d75acd60fca157e60187" + } + }, + { + "text": "Worst professor I've ever had.\nListen to me, he does not teach the content, only does practice problems during lecture.\nIf you wanna learn CALC1, DO NOT TAKE HIM. Only take him if you already know the content.\n\nHe is arrogant, rude. He expects you to know everything from PRE-CALC.\nClass started with 40 students, now there is only 15.", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d75acd60fca157e60188" + } + }, + { + "text": "If you arent good at math, be prepared or try to ePermit, he's extremely hard. Good luck if your lost during lecture since he doesn't have the time to go over basics. If your good at math, you may pass. He's not bad at teaching but you have to be good at math to understand. Pretty nice, uses humor to hide the difficulty of the class. SLIGHT curve.", + "pos": 0.274, + "neu": 0.614, + "neg": 0.112, + "_id": { + "$oid": "6711d75acd60fca157e60189" + } + }, + { + "text": "He does not care about us. Tell me how everyone failed. Quite rude and always late to his OWN lectures. Sometimes misses class and emails us some hours after. No regard for his students. AVOID!!!", + "pos": 0.0, + "neu": 0.629, + "neg": 0.371, + "_id": { + "$oid": "6711d75acd60fca157e6018a" + } + }, + { + "text": "Took him for summer. Late everyday. Didn't show up on the last day. Final was out of 150 but since everyone fails, he changed it out of 120 so that he doesn't face any problems. Extremely rude, thinks he is funny. Doesn't reply to emails. If you are a pre-med student, see if they offer it with different prof or just do E-permit. DON'T TAKE HIM", + "pos": 0.088, + "neu": 0.806, + "neg": 0.106, + "_id": { + "$oid": "6711d75acd60fca157e6018b" + } + }, + { + "text": "Took his class this summer Math 20900. He was late to class every single time we had to meet, missed 2 days entirely, and the last day of class before finals and we literally were on bb collab for the entire time wondering \"is he or isn't he\". And at the end of the course so many failed or barely passed. DO NOT TAKE HIM! DO NOT TAKE HIS COURSE!", + "pos": 0.0, + "neu": 0.914, + "neg": 0.086, + "_id": { + "$oid": "6711d75acd60fca157e6018c" + } + }, + { + "text": "He only does practice questions in class. You have to teach yourself because the exams are quite heavily graded considering there are only 10 questions and they are 10 points each.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e6018d" + } + }, + { + "text": "SAVE YOURSELF! DO NOT TAKE HIM! Just don't. It's so hard to understand what he's teaching, and when you ask him to go over something he responds with \"no\". Both exams and final are worth 90% of your entire grade. His handwriting is unclear. He tries to be funny in class but sometimes says hurtful things.", + "pos": 0.092, + "neu": 0.781, + "neg": 0.127, + "_id": { + "$oid": "6711d75acd60fca157e6018e" + } + }, + { + "text": "Professor Park's class is extremely test heavy. There are two in-class exams, a midterm, and a final which is worth about 90% of your grade and the remaining 10% comes from excel homework. If you want to pass his class, then you have to do self learning because this all this guy does is do examples from the textbook for the entire class time.", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e6018f" + } + }, + { + "text": "He doesn't really teach, he just jumps straight into practice problems. The grading criteria makes it so that 90% of your grade is solely based on tests, and the tests themselves are only 10 questions so getting a high grade is impossible. Try taking someone else for 209", + "pos": 0.038, + "neu": 0.909, + "neg": 0.053, + "_id": { + "$oid": "6711d75acd60fca157e60190" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75acd60fca157e60192" + }, + "professor_name": "Jamal Manassah", + "rating": 1.7, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "he passed away. end of horror story", + "pos": 0.0, + "neu": 0.619, + "neg": 0.381, + "_id": { + "$oid": "6711d75acd60fca157e60193" + } + }, + { + "text": "I'm glad he perished.", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e60194" + } + }, + { + "text": "Dear manassah , please go back to Middle East. This is America", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e60195" + } + }, + { + "text": "Manassa doesn't know anything what American employers are looking for. He doesn't know anything about teaching. Worst professor in the United States. Do not take him. He is a psychopath.", + "pos": 0.08, + "neu": 0.802, + "neg": 0.117, + "_id": { + "$oid": "6711d75acd60fca157e60196" + } + }, + { + "text": "He doesn't teach. He doesn't know about about the subject. He has no clue about what employers are looking for. It is not middle east. This is America.", + "pos": 0.0, + "neu": 0.925, + "neg": 0.075, + "_id": { + "$oid": "6711d75acd60fca157e60197" + } + }, + { + "text": "WOW, I took this Professor over 10 years ago for an introductory coding course in EE undergrad. I've gotten several more degrees since then. This guy was the WORST WORST WORST Professor I have ever encountered in my entire life. Probably the single best reason to avoid CCNY Engineering. WATCH OUT for this one!!!", + "pos": 0.118, + "neu": 0.646, + "neg": 0.237, + "_id": { + "$oid": "6711d75acd60fca157e60198" + } + }, + { + "text": "well never teach you anythinghis lectures feel like you are degrading in real time and losing any purpose in life, has failed me for the third time now and not sure if I am allowed to take the class again one reason I chose cuny is because of cheap price, but thanks to this class i will leave school with debt, if i ever graduate", + "pos": 0.095, + "neu": 0.741, + "neg": 0.164, + "_id": { + "$oid": "6711d75acd60fca157e60199" + } + }, + { + "text": "Worst professor in EE department, probably in whole CCNY. Doesn't explain the material well, yet expects you to know everything and ask questions. Good luck on taking him!", + "pos": 0.228, + "neu": 0.659, + "neg": 0.113, + "_id": { + "$oid": "6711d75acd60fca157e6019a" + } + }, + { + "text": "he does not teach semiconductors but covers that in a tough lecturing style. try to avoid him.", + "pos": 0.0, + "neu": 0.767, + "neg": 0.233, + "_id": { + "$oid": "6711d75acd60fca157e6019b" + } + }, + { + "text": "Lol. Experiencing this class was a clown fiesta. Tests are a pass or fail, meaning that there is no partial credit, either u get it right or get a big fat zero for the question. Material is based on a class that almost everyone didnt learn from (quantum mechanics). Lecture notes doesnt really help and no solutions for hw. Good luck!", + "pos": 0.175, + "neu": 0.669, + "neg": 0.156, + "_id": { + "$oid": "6711d75acd60fca157e6019c" + } + }, + { + "text": "no teach you. no desire to listen to your questions about the class. pretends like to follow the rules and be by the books but in realness rewarding cheaters and failing good students. bad terrible impact on student educational records. class very difficult to follow, he expects you to memorize codes, promoting cheating a lot", + "pos": 0.157, + "neu": 0.49, + "neg": 0.353, + "_id": { + "$oid": "6711d75acd60fca157e6019d" + } + }, + { + "text": "Here's his teaching style. He'll hand out lecture notes (pdf) via emails about 1hour before class, and expects you to master these lecture notes when you're in a class 1hr after He says that he will take question with lectures, but he ends up not answering and mocking students for their incompetence Super tough grader; no partial credit. don't take", + "pos": 0.138, + "neu": 0.706, + "neg": 0.157, + "_id": { + "$oid": "6711d75acd60fca157e6019e" + } + }, + { + "text": "Unlike most comments in here, I think that professor Manassah, is a very good professor. Does he expect you to work hard? Yes. Is he a though grader? Yes. However, he means well and believes that CCNY students should be able to compete with Ivy League schools students. My semester with him was very difficult, but I learned a ton.", + "pos": 0.119, + "neu": 0.833, + "neg": 0.048, + "_id": { + "$oid": "6711d75acd60fca157e6019f" + } + }, + { + "text": "ccny has so many professors like him, but the public school will only punish students but never punish professors like him.", + "pos": 0.186, + "neu": 0.57, + "neg": 0.244, + "_id": { + "$oid": "6711d75acd60fca157e601a0" + } + }, + { + "text": "worst prof ever period", + "pos": 0.0, + "neu": 0.423, + "neg": 0.577, + "_id": { + "$oid": "6711d75acd60fca157e601a1" + } + }, + { + "text": "Just don't take him if you wanna be an engineer in future!!!period!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e601a2" + } + }, + { + "text": "He is an okay guy; still, his teaching method is ineffective. His 50 min lecture consists of a ppt. that presents theory & then lists problems. He expects students to instantly pick up new ideas & come up with solutions. Topics are not hard; but he doesn't give enough examples so preparing for exams is difficult, which is the frustrating part.", + "pos": 0.058, + "neu": 0.792, + "neg": 0.15, + "_id": { + "$oid": "6711d75acd60fca157e601a3" + } + }, + { + "text": "The worst prof in my life! WHY? first, he assigns your seat! yes, in a college course. Second, he yells at you for like no reason.He doesn't teach you anything but he assumes you know everything. His book is useless and he wrote it, he doesnt post his lecture note online he wont give it to you even tho u ask for it!", + "pos": 0.051, + "neu": 0.825, + "neg": 0.124, + "_id": { + "$oid": "6711d75acd60fca157e601a4" + } + }, + { + "text": "Good proffesor. True you have to study but at the end you get what you earn in 17 weeks. You need to work a lot. Not everybody is able to pass but I earned my A.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d75acd60fca157e601a5" + } + }, + { + "text": "This guy is the worst professor at CCNY. If you pass this class is because you really deserve to be an Engineer. He's not helpful at all and he yells at you for no reason... smh !!", + "pos": 0.044, + "neu": 0.747, + "neg": 0.209, + "_id": { + "$oid": "6711d75acd60fca157e601a6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75bcd60fca157e601a8" + }, + "professor_name": "Hank-Huy Nguyen", + "rating": 4.6, + "department": "Economics department", + "comments": [ + { + "text": "I took this professor for his money then his corp fin. He taught me more about life and investing than course materials. I followed his investment advice. I paid off my tuition and still had profit. The materials were densely hard. He made every lecture very relatable because of his worldly knowledge. Follow his advice and you will be better off.", + "pos": 0.089, + "neu": 0.89, + "neg": 0.021, + "_id": { + "$oid": "6711d75bcd60fca157e601a9" + } + }, + { + "text": "I'm an alum and took most of Hank's classes. His classes had lots of ambiguity because you have to think on your own. He will give you all his time if you want to learn. He challenged you beyond your limits. Many hate him because they were not ready to face him. I went from a jobless vet to having a career because he helped me confront my fears.", + "pos": 0.017, + "neu": 0.829, + "neg": 0.154, + "_id": { + "$oid": "6711d75bcd60fca157e601aa" + } + }, + { + "text": "Very strange binary reviews on him. Clearly being established, well-respected, and with a long positive track record both in his professional life and as a professor, he teaches career preparatory material. If the issue is wanting an easy A please consider taking a course to fulfill that objective. You earn what you put in+ that's life preparatory.", + "pos": 0.213, + "neu": 0.756, + "neg": 0.031, + "_id": { + "$oid": "6711d75bcd60fca157e601ab" + } + }, + { + "text": "Took this class in the summer. had to withdraw it. He does teach well. However, he is quite inconsiderate. Hegives lots of case analysis, quiz (not MCQ), and project even in a summer class. would have taken it if it was fall or spring class. But he sees this class same whether its summer course, or not. There is DUE every day even in saturday.", + "pos": 0.023, + "neu": 0.945, + "neg": 0.031, + "_id": { + "$oid": "6711d75bcd60fca157e601ac" + } + }, + { + "text": "I survived! That's all I could say. Corporate finance with Hank was really like \"survival of the fittest\". Your ability to adapt to Hank's workload immediately once class starts and to the end. Hank is deceivingly kind and lay back. Don't let that fool you. He is very demanding and his expectations are extreme. Hank is a 1-of-a-kind Professor!", + "pos": 0.211, + "neu": 0.757, + "neg": 0.031, + "_id": { + "$oid": "6711d75bcd60fca157e601ad" + } + }, + { + "text": "This was a summer online class in accounting. It was like: Get Ready, get set, go!! Don't walk but run. Don't slow down or stare up into the sky. The professor taught well but the PSETs! After you were done with one PSET, he already posted 3 more. They were due each other day. His lectures were good. What was great was when he ranted his wisdom.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601ae" + } + }, + { + "text": "I recommend you take finance with Prof Hank. He is the far the best. He answered every questions and even asked to make sure what he said made sense. His lectures were inspirational and had taught me to think very differently about investments and finance. He is straight and demanding but if you follow what he demands you would do well.", + "pos": 0.181, + "neu": 0.798, + "neg": 0.021, + "_id": { + "$oid": "6711d75bcd60fca157e601af" + } + }, + { + "text": "Taking Corporate Finance with Hank is \"fire and flame\". Fire because PSETs took 4-6 hours a day to do. Flame was his exam was so hard. I average 98 on the those tough PSETs and I got a 70 on the exam. He explained stuff really well and the PSETs really helped but the exam wa just in another world. I needed to study even more for the next 2 quizzes.", + "pos": 0.023, + "neu": 0.895, + "neg": 0.082, + "_id": { + "$oid": "6711d75bcd60fca157e601b0" + } + }, + { + "text": "1st, I wish I took Hank's class earlier. I would have been more prepared for him. Students that hate him are the ones that never do the work. He gives you PSETs that he will never teach. You need to self-teach yourself. His class was all about drilling you about your regional market. You need to come to lecture prepared or not he will crucify you.", + "pos": 0.094, + "neu": 0.855, + "neg": 0.051, + "_id": { + "$oid": "6711d75bcd60fca157e601b1" + } + }, + { + "text": "His money & banking class was an eye-opener. I like that he took 15 to 30 minutes of lecture to explain the situations that affect current monetary policy how they connected to the text. He always fielded questions about the complexity and break it down into pieces to make it simpler to understand. His T/F final was anything but easy. Study!!!", + "pos": 0.099, + "neu": 0.901, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601b2" + } + }, + { + "text": "He was always there when I needed to talk with him. He talked with me for 4 hours in his office. I think he's the only prof at CCNY that would do that. The leadership class was intellectually painful. Each thing he said it was like him throwing darts at me. He threw reality in your face. His weekly emails to the class often made me cried.", + "pos": 0.067, + "neu": 0.858, + "neg": 0.075, + "_id": { + "$oid": "6711d75bcd60fca157e601b3" + } + }, + { + "text": "Hank is the most controversial and popular profs in CCNY. You either love or hate Hank. You have to be consistent, and work hard for a good grade. His class can change your life for the better. If you have any financial problems, go to him. ALOT OF PAPERS. The class fits \"survival of the fittest\" because many people couldn't handle his workload.5/5", + "pos": 0.168, + "neu": 0.706, + "neg": 0.127, + "_id": { + "$oid": "6711d75bcd60fca157e601b4" + } + }, + { + "text": "By far one of the best classes Ive taken at CCNY. For the ones worried about which class to choose for their next semester, Ive been in your shoes, take this class. Honest feedback, interesting readings, class discussions are great, and professor is available for office hours. Reasonable and fair. A+.", + "pos": 0.26, + "neu": 0.705, + "neg": 0.034, + "_id": { + "$oid": "6711d75bcd60fca157e601b5" + } + }, + { + "text": "I took Prof Nguyen's Technology Strategy when he first taught at City. Even though I didn't get high grade, he has changed my life for good. Over the years, I kept taps on me. I ran into financial troubles. I don't know anyone who would spend 4 hours on multiple Sundays helping me sort out my financial problems. He is a blessing for my family.", + "pos": 0.112, + "neu": 0.811, + "neg": 0.077, + "_id": { + "$oid": "6711d75bcd60fca157e601b6" + } + }, + { + "text": "Learned a lot from Hank's leadership class. This was a class i really enjoyed going to at the end of the day and it didn't even bother me that i was getting home late. He really makes you realize who you are as a person. Grades fairly, didn't do the work so i deserved what i got. I take full responsibility on that. But other than that great class.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601b7" + } + }, + { + "text": "Leadership was about me. It was up to me to read and analyze all of the books he mentioned. If you don't want to learn through reading and thinking, Hank would be the worst. He will let you see the worst in you. If you come to talk with him about your problems he will guide you. I got an A- because I neglected to do certain assignments.", + "pos": 0.026, + "neu": 0.779, + "neg": 0.195, + "_id": { + "$oid": "6711d75bcd60fca157e601b8" + } + }, + { + "text": "Got an A, but didn't learn anything. Didn't read the books either and barely went to class. As long as you go to his office hours and asked him 1000 questions about his life you got a good grade", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601b9" + } + }, + { + "text": "Prof. Hank unlike many CCNY professors is tough in a good way. If you want a good grade in his class he has to know your name and the easiest way to do that is not to be lazy and go to his office even if it is just for 15 minutes. Be prepared to redo a lot of your work if you give it to him to proofread though.", + "pos": 0.177, + "neu": 0.803, + "neg": 0.019, + "_id": { + "$oid": "6711d75bcd60fca157e601ba" + } + }, + { + "text": "Hank's leadership course is scary. He made you see the worst in you. His lectures are thought provoking if you want to listen to his message and useless if you choose not to listen. He held your grade hostage unless you see him in his office. For me, he showed me the worst of me and my potentials if I want to get there. It's up to you to decide.", + "pos": 0.032, + "neu": 0.772, + "neg": 0.196, + "_id": { + "$oid": "6711d75bcd60fca157e601bb" + } + }, + { + "text": "Avoid him. Won't learn anything in his class. Doesn't follow syllabus and you won't know updated syllabus changes unless you go to his office hours. Do not take him. Ask your peers", + "pos": 0.0, + "neu": 0.934, + "neg": 0.066, + "_id": { + "$oid": "6711d75bcd60fca157e601bc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75bcd60fca157e601be" + }, + "professor_name": "Barbara Syrrakos", + "rating": 3.7, + "department": "History department", + "comments": [ + { + "text": "I took her class a couple years ago for one of my core requirements. I'm a STEM major so history is not my strong suit but this class was very accessible and I was able to get a decent grade. Doing the readings help a lot. Lectures will make a lot more sense. If you do well on the essays you shouldn't have much difficulty passing.", + "pos": 0.121, + "neu": 0.854, + "neg": 0.025, + "_id": { + "$oid": "6711d75bcd60fca157e601bf" + } + }, + { + "text": "She's a really good professor, just really picky with what she expects from us. I would still recommend her even though her instructions could be vague or we end up with something that she may not be looking for even though instructions are follow. Overall just make a class chat and you should be fine. You'll survive with her.", + "pos": 0.117, + "neu": 0.861, + "neg": 0.022, + "_id": { + "$oid": "6711d75bcd60fca157e601c0" + } + }, + { + "text": "Honestly, Dr. Syrrakos is the best. Although her lectures do feel more like a TED talk rather than an actual lecture, she has a lot of passion about European History. She is also very accommodating towards students based on their circumstances. I would definitely recommend her. Your grade is calculated through three exams and that's it.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601c1" + } + }, + { + "text": "Dr. S is great! She is very passionate about european history, just make sure you do the readings as they are necessary for discussions.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601c2" + } + }, + { + "text": "Her WCIV class requires a textbook but you can find online, definitely should read the txt book! Her exams are written essays. She gave my class the prompts before but doesn't tell you which ones will be on the exam. Dedicated professor and cares about her students! Changed our final to a research essay instead of the written exam, went very well.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601c3" + } + }, + { + "text": "Her lectures felt like 3 hours sometimes, she was interesting and it was clear she knew a lot about the topic but went off-topic a lot. There are three main exams so you def have to work hard for ur grade. No homework, no BB. I'm not sure i would take her again.", + "pos": 0.128, + "neu": 0.759, + "neg": 0.113, + "_id": { + "$oid": "6711d75bcd60fca157e601c4" + } + }, + { + "text": "She's a good teacher, no doubt, but for those who don't like reading heavily every week, or don't do well in a lecture hall, this isn't the one for you. She is very nice, though, and is willing to help during office hours.", + "pos": 0.211, + "neu": 0.697, + "neg": 0.092, + "_id": { + "$oid": "6711d75bcd60fca157e601c5" + } + }, + { + "text": "Doesn't teach. Just spreads ideas about the given timeline and turns it from educating us into her own interpretations. Come on! If you want an asynchronous class and you want to come in each time we have a paper, this is your go-to professor. She is a cool person at least. When she talked about the French Revolution, I wanted to have one of my own", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601c6" + } + }, + { + "text": "Professor Syrrakos is amazing, although a little overwhelming with her lectures. I still recommend her if you are a history major. She makes modern European history so engaging with her rich understanding of Europe. The only thing I would say is that you have to work for your grade; just put in the effort and you will succeed.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601c7" + } + }, + { + "text": "She is a delight! If you have a chance take her. She does lecture a lot, but her knowledge is so immense that you will learn so much from her. Graded by presentation, 1-2 short responses, two exams (open notes), and a final paper. Just communicate with her and participate and you will be fine.", + "pos": 0.11, + "neu": 0.89, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601c8" + } + }, + { + "text": "Her lectures were okay. She might seem nice but a terrible professor. I had her back in the Fall 2018 Semester. The midterm was hard as hell. She is a very strict professor about students who interrupt her as well their attendance. She always had an attitude with me. She didn't even grade my final exam even though I believed it was awesome.", + "pos": 0.142, + "neu": 0.672, + "neg": 0.186, + "_id": { + "$oid": "6711d75bcd60fca157e601c9" + } + }, + { + "text": "Good professor, u just need to do your work plain and simple, lecture heavy, paper heavy, cant pass class by missing it", + "pos": 0.116, + "neu": 0.797, + "neg": 0.088, + "_id": { + "$oid": "6711d75bcd60fca157e601ca" + } + }, + { + "text": "A lot of required reading, nearly one or two chapters a week. All the exams were in-class exams, two essays within 75 minutes. She had maybe three in-class quizzes which weren't difficult if you do the readings. Overall a good professor although she gets a power trip calling out students for nothing.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601cb" + } + }, + { + "text": "Professor syrrakos has an amazing passion for history and i love the way she teaches the lectures, however im a person who likes interacting and taking factual notes and she takes up 99.9% of the lecture to just speak. Her homework requires a lot of reading if its not ur cup of tea do not take this class. good teacher with a strict syllabus, 7/10", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601cc" + } + }, + { + "text": "She is a true gem. Made modern European history so fun and engaging. I recommend her the most!", + "pos": 0.472, + "neu": 0.528, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601cd" + } + }, + { + "text": "Although we had a lot to read this semester, it was worthwhile as my knowledge has definitely expanded on WW1. We had two in-person written essays (fair grader and allows a sheet of notes), a 8-10 pg research paper, and mini assignments (like one page responses). Overall wonderful Professor and truly a delight to be taught by her.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601ce" + } + }, + { + "text": "She won't give a grade higher than a B if her life depended on it, for an entry-level class she thinks we are Allan Poe or something. if you are looking for a 4.0 GPA avoid this class.", + "pos": 0.0, + "neu": 0.944, + "neg": 0.056, + "_id": { + "$oid": "6711d75bcd60fca157e601cf" + } + }, + { + "text": "Great class! 10/10 would recommend for modern europe requirement", + "pos": 0.496, + "neu": 0.504, + "neg": 0.0, + "_id": { + "$oid": "6711d75bcd60fca157e601d0" + } + }, + { + "text": "She is a good professor no doubt but she is a hard grader and is specific on what she wants in papers. You cant pass without doing those and if you pass your grade will be lower.", + "pos": 0.086, + "neu": 0.807, + "neg": 0.108, + "_id": { + "$oid": "6711d75bcd60fca157e601d1" + } + }, + { + "text": "Professor Syrrakos is a very nice lady, I have learned tremendously from her this semester. I recommend her especially to those who are majoring in history. The only downside is that she is a heavy lecturer, with no real discussion-based classes. Overall she is a gem and is understanding.", + "pos": 0.102, + "neu": 0.821, + "neg": 0.077, + "_id": { + "$oid": "6711d75bcd60fca157e601d2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75ccd60fca157e601d4" + }, + "professor_name": "Carlos Meriles", + "rating": 3.8, + "department": "Physics department", + "comments": [ + { + "text": "Materials are very tough. You have to keep doing his hw problems. the hardest ones will be on the quiz/exams. He is nice with the grading. If you don't do his hw problems on your own, you would fail for sure", + "pos": 0.1, + "neu": 0.689, + "neg": 0.211, + "_id": { + "$oid": "6711d75ccd60fca157e601d5" + } + }, + { + "text": "Very boring. Rewrites his notes exactly from the textbook in such a terrible way. Huge amount of material but no formula sheet. No one liked the class. Do the hardest problems in the textbook because that's what he gives.", + "pos": 0.033, + "neu": 0.645, + "neg": 0.322, + "_id": { + "$oid": "6711d75ccd60fca157e601d6" + } + }, + { + "text": "He is a great professor. You have to study the concepts so that you do well. I did well so far in the year but the final really messed my grade up. I was personally affected by COVID 19 and completely cut my relationship off with Quantum. My average was an A- in the class but dropped drastically in the final. He is a very good teacher and person!", + "pos": 0.127, + "neu": 0.768, + "neg": 0.106, + "_id": { + "$oid": "6711d75ccd60fca157e601d7" + } + }, + { + "text": "This professor cares so much for his students and very passion in teaching. He tries his best, but the class is very tough one so you might be very confused of how to understand this class. You should read the textbook, memories formulas, and understand them as well. Do the homework if you want to pass this class!", + "pos": 0.164, + "neu": 0.753, + "neg": 0.082, + "_id": { + "$oid": "6711d75ccd60fca157e601d8" + } + }, + { + "text": "the materials are very hard by themselves... professer did his best to make it clear... he is good and goes slowly, takes care to check if students understand the material or not. However he is particularly baised towards one of his monday wednesday sectiosn, he gives them easier midterms compared to the tuesday thursday section!!! BEWARE!!!", + "pos": 0.246, + "neu": 0.729, + "neg": 0.025, + "_id": { + "$oid": "6711d75ccd60fca157e601d9" + } + }, + { + "text": "Awesome professor, a bit hard to follow due to the course difficulty. It is heavily advised to read the correspondent chapter before every lecture. The only thing I wish could be implemented is to have review sheets before the midterms and finals. Besides that, highly suggested.", + "pos": 0.129, + "neu": 0.798, + "neg": 0.072, + "_id": { + "$oid": "6711d75ccd60fca157e601da" + } + }, + { + "text": "The course is difficult by itself, cant blame the professor, he is good and did his best to make it better for us.", + "pos": 0.37, + "neu": 0.553, + "neg": 0.077, + "_id": { + "$oid": "6711d75ccd60fca157e601db" + } + }, + { + "text": "Overall very intellectual and fair professor. The course is very INTENSE. If you really wanna learn you need to study a LOT. Things to improve class. Typing instead of hand writing slides. More resources to study from not just textbook. He should provide that to make easier for students. Review exam sheets, etc would be helpful too.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601dc" + } + }, + { + "text": "He is a very smart professor. He is so dedicated to his field and he knows every bit of quantum. Study hard and make sure to understand the concepts.", + "pos": 0.258, + "neu": 0.703, + "neg": 0.039, + "_id": { + "$oid": "6711d75ccd60fca157e601dd" + } + }, + { + "text": "the professor is very good he does his best to make sure that everybody understand and send his presentation and the exams are from hw but get ready to a lot of quizzes", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601de" + } + }, + { + "text": "He s a good professor, makes his lecture easy to follow.", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601df" + } + }, + { + "text": "As of Spr'19, the class is no longer presentation based, you will be required to know and do significantly more math (diff eq and linear alg). The material in the book simplified and the solution exist, but remain difficult and Meriles is aware of it. He teaches his way close to the book, but slightly different.", + "pos": 0.028, + "neu": 0.891, + "neg": 0.082, + "_id": { + "$oid": "6711d75ccd60fca157e601e0" + } + }, + { + "text": "He is really advanced in his field so its hard for him to dumb down the material. And he doesnt give much time to do the homework given that the textbook questions are pretty difficult. The quiz is every week and based on the hw, so if you can do the hw the quizzes the easy but you gotta understand the hw and read the book", + "pos": 0.08, + "neu": 0.846, + "neg": 0.074, + "_id": { + "$oid": "6711d75ccd60fca157e601e1" + } + }, + { + "text": "Come to Class, Read the Textbook, Do The HW and you will pass. The only bad thing is his handwriting sometimes it hard to figure out what he wrote, the r,m,n,s look the same.", + "pos": 0.0, + "neu": 0.867, + "neg": 0.133, + "_id": { + "$oid": "6711d75ccd60fca157e601e2" + } + }, + { + "text": "The best professor for quantum. He knows what he is teaching and he can answer any question.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601e3" + } + }, + { + "text": "The quantum mechanics is hard. The course is hard, should pay a lot of time on it.", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d75ccd60fca157e601e4" + } + }, + { + "text": "The professor is good at explaining the concepts in class and tries to tie to practical or experimental facts. However the weekly quizzes force us to not focus on the topics but just memorizing the solutions. Having to do 9 questions in 2 days is impractical. I would have much preferred graded homework or more tests instead.", + "pos": 0.068, + "neu": 0.932, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601e5" + } + }, + { + "text": "The professor is good but the curriculum material is some of the hardest at CCNY.", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601e6" + } + }, + { + "text": "Make sure you read the textbook before attending lectures to be able to better understand everything.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601e7" + } + }, + { + "text": "Fair instructor. Very grounded in quantum concepts and interpolation of such onto graphs. Written notes are a bit difficult to read but repeat every line he speaks mentally to fully grasp concepts. Grades are presentation based. Criteria is unclear but he grades group members relative each other. Outshine your group to do well. Answer the most Q's.", + "pos": 0.07, + "neu": 0.861, + "neg": 0.069, + "_id": { + "$oid": "6711d75ccd60fca157e601e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75ccd60fca157e601ea" + }, + "professor_name": "Andrii Golovin", + "rating": 2.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "I recommend you try to get an E-permit for EE 31100 & EE 33000 so you can actually learn properly. If you value your GPA, E-permit is a good chance to pass and earn good grades. CCNY is a mess.", + "pos": 0.258, + "neu": 0.691, + "neg": 0.051, + "_id": { + "$oid": "6711d75ccd60fca157e601eb" + } + }, + { + "text": "I had the displeasure of having to take this professor more than once. All I can say is that if you can, avoid avoid avoid. Unenthusiastic, rude, and does not cover the suitable material for the courses he teaches. Glad I don't have to take him again.", + "pos": 0.055, + "neu": 0.769, + "neg": 0.176, + "_id": { + "$oid": "6711d75ccd60fca157e601ec" + } + }, + { + "text": "If you need to take ee 311, get an epermit for ee 311", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601ed" + } + }, + { + "text": "Bad Attitude", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d75ccd60fca157e601ee" + } + }, + { + "text": "Some ppl say he's rude, but imo it's his attempt at being funny. Don't get me wrong, he is super extra sometimes with the lateness. He makes you ask for permission to come into the room if you're late, but his exams are super fair. If you redo the lecture problems you will atleast get a C+ in the class. This goes for every claas the he teaches.", + "pos": 0.238, + "neu": 0.698, + "neg": 0.064, + "_id": { + "$oid": "6711d75ccd60fca157e601ef" + } + }, + { + "text": "He inspired me to be miserable every day", + "pos": 0.258, + "neu": 0.484, + "neg": 0.258, + "_id": { + "$oid": "6711d75ccd60fca157e601f0" + } + }, + { + "text": "This class is good with him", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601f1" + } + }, + { + "text": "The class isn't easy by itself because of a lot of material, you should understand everything, otherwise it is impossible to prepare. If you made the same mistake in several questions, he would cut not once but, in all questions, where this mistake appears.6 quizzes 10% for each, midterm and one final 20% each. No curve, microscopic partial credit.", + "pos": 0.05, + "neu": 0.782, + "neg": 0.168, + "_id": { + "$oid": "6711d75ccd60fca157e601f2" + } + }, + { + "text": "Amazing professor. One of the best I have had. Super passionate, really understanding of students, easy open book exams, and cool. No attendance required at all, and he curves a ton. You'll be super satisfied with your grade! Register for his class now, you won't regret taking this great professor!", + "pos": 0.454, + "neu": 0.517, + "neg": 0.029, + "_id": { + "$oid": "6711d75ccd60fca157e601f3" + } + }, + { + "text": "One of the biggest CCNY memes. You either love him or hate him.", + "pos": 0.222, + "neu": 0.582, + "neg": 0.196, + "_id": { + "$oid": "6711d75ccd60fca157e601f4" + } + }, + { + "text": "beep boop bop", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601f5" + } + }, + { + "text": "He is a good professor for this course, covered material thoroughly in class. Available for office hours and gave good feedback. Attendance is definitely crucial.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d75ccd60fca157e601f6" + } + }, + { + "text": "Grades are purely on quizzes and tests. He realized our bad scores half way through the course and started doing open book, but by then it was too late. Gave us 1 class heads up about our midterm. His hw problems barely appear on exams, so you have to look through many problems in short amounts of time to be prepared for what he may throw at you.", + "pos": 0.031, + "neu": 0.845, + "neg": 0.124, + "_id": { + "$oid": "6711d75ccd60fca157e601f7" + } + }, + { + "text": "HORRIBLE. I am so glad I never have to take him again. Refuses to help students.", + "pos": 0.276, + "neu": 0.546, + "neg": 0.178, + "_id": { + "$oid": "6711d75ccd60fca157e601f8" + } + }, + { + "text": "Just no", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d75ccd60fca157e601f9" + } + }, + { + "text": "Any class with Golovin is tough. He's not the greatest when teaching the material and gives very little partial credit. There is a quiz at the end of every chapter. It was open notes for all quizzes and exams. If you want to pass with Golovin, get past exams.", + "pos": 0.072, + "neu": 0.837, + "neg": 0.091, + "_id": { + "$oid": "6711d75ccd60fca157e601fa" + } + }, + { + "text": "Very tough grader", + "pos": 0.0, + "neu": 0.527, + "neg": 0.473, + "_id": { + "$oid": "6711d75ccd60fca157e601fb" + } + }, + { + "text": "Worst grader", + "pos": 0.0, + "neu": 0.196, + "neg": 0.804, + "_id": { + "$oid": "6711d75ccd60fca157e601fc" + } + }, + { + "text": "Starts screaming at students for \"distracting\" him during online classes with the chat when the chat is relevant to the topic and he has to interrupt his \"lesson\" to read the chat anyway. The \"lesson\" is a slideshow copied from the textbook but with more errors and is read slowly and with less care and effort than it takes to clear one's throat.", + "pos": 0.1, + "neu": 0.782, + "neg": 0.119, + "_id": { + "$oid": "6711d75ccd60fca157e601fd" + } + }, + { + "text": "You have to show up to this class or you will get kicked out. No more than 3 absences and you're withdrawn from the class. 6 quizzes, a midterm and a final but I highly suggest you to study the material and learn Mathematica as that will save you. Lectures are boring but he will call on you if he think you're not paying attention and will roast you", + "pos": 0.057, + "neu": 0.882, + "neg": 0.061, + "_id": { + "$oid": "6711d75ccd60fca157e601fe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75dcd60fca157e60200" + }, + "professor_name": "Yevgeniy Grigoryev", + "rating": 3.4, + "department": "Biology department", + "comments": [ + { + "text": "He is extremely strict on deadlines so when something is e, it must be done perfectly on time. Tests are HARD, more conceptual and application based than solely memorization. He is tough, will not curve so do your best in lab and lecture.", + "pos": 0.169, + "neu": 0.76, + "neg": 0.071, + "_id": { + "$oid": "6711d75dcd60fca157e60201" + } + }, + { + "text": "His test questions have confusing premises/wordings and tricky answers. Good test takers will have no problem but if you second guess yourself, you will struggle on the exams. Lab grading is obtuse with scattered criteria. Lab grading often felt arbitrary. If you have to take this prof, do not miss a single homework and pray for a good TA. No curve", + "pos": 0.166, + "neu": 0.717, + "neg": 0.117, + "_id": { + "$oid": "6711d75dcd60fca157e60202" + } + }, + { + "text": "when I was reading his reviews I was like maybe some of the students didnt put in the work thats why they gave him bad gradings. I was very very wrong. u need to commit to this bio class, ignore your social and mental life if u wanna do good in this class. hes has no sympathy for his students. the worst", + "pos": 0.098, + "neu": 0.697, + "neg": 0.205, + "_id": { + "$oid": "6711d75dcd60fca157e60203" + } + }, + { + "text": "im generally an A+ student but man did this class nearly make me go bald from stress. Exams are so tricky and hard he asks the questions in a way where you really need to sit down and think about. be ready to read ALOT and A LOT. you literally canot fall back and if u do ur screwed. No curve at the end no test dropped no pleading for a higher grade", + "pos": 0.036, + "neu": 0.728, + "neg": 0.236, + "_id": { + "$oid": "6711d75dcd60fca157e60204" + } + }, + { + "text": "Prof. Grigoryev is a nice person with good lectures but his exams are tough. You need to go in and out with TopHat to get a great grade. Your lab is 50% and you need a great TA to get a passing grade. He doesn't curve at the end like people said, you get what you get. This class requires alot of your attention to do good!", + "pos": 0.267, + "neu": 0.712, + "neg": 0.021, + "_id": { + "$oid": "6711d75dcd60fca157e60205" + } + }, + { + "text": "HIS TESTS ARE VERYY DIFFICULT IF YOU DO THE HOMEWORK QUESTIONS YOU WILL HAVE AT LEAST A 70% BUT THE REST ARE VERY TRICKY YOU WILL BE READING AT LEAST TWO CHAPTERS EVERY WEEK AND THERE ARE PRE CLASS QUESTIONS AND HOMEWORK SO YOU WILL BE ANSWERING LIKE 30 QUESTIONS PER CHAPTER PLUS IN CLASS Qs THE LAB IS 50% AND MORE WORK THAN LECTURE GOOD LUCK :\\", + "pos": 0.167, + "neu": 0.721, + "neg": 0.112, + "_id": { + "$oid": "6711d75dcd60fca157e60206" + } + }, + { + "text": "He curves ALOTTT at the end so don't drop! Make sure your ta is good, I had Jennifer Chou", + "pos": 0.227, + "neu": 0.688, + "neg": 0.084, + "_id": { + "$oid": "6711d75dcd60fca157e60207" + } + }, + { + "text": "Attend the lectures and don't fall back on the material. The material is not difficult but there is a lot of it. Focus on studying the tophat review questions. His lectures kind of sucked but his lecture notes and powerpoints are good to study. Some of the pre-lecture reading is unnecessary and long for no reason.", + "pos": 0.084, + "neu": 0.804, + "neg": 0.112, + "_id": { + "$oid": "6711d75dcd60fca157e60208" + } + }, + { + "text": "You have one presentation and there are weekly readings with homework, as well as a weekly quiz. He grades the quizzes quite harshly but he allows a 'cheat sheet' for the final exam which is very helpful.", + "pos": 0.13, + "neu": 0.778, + "neg": 0.092, + "_id": { + "$oid": "6711d75dcd60fca157e60209" + } + }, + { + "text": "Lectures are boring and there were some bs questions on all 3 exams that made them hard. The first and last exam weren't so bad but the second exam was really really hard that he had to curve. There were lots of readings and quizzes before and after class. Attendance is mandatory because he asks questions which is graded.", + "pos": 0.059, + "neu": 0.856, + "neg": 0.084, + "_id": { + "$oid": "6711d75dcd60fca157e6020a" + } + }, + { + "text": "He's good at explaining, makes it easy to understand, and he curved one exam. But the homework was way too much: two quizzes every week and questions before and during each lecture. Exams are a lot, 40 MPC Q's in 1 hour, and some Q's didn't make sense. Prepare to study if you want a good grade. This was not an easy A.", + "pos": 0.131, + "neu": 0.825, + "neg": 0.044, + "_id": { + "$oid": "6711d75dcd60fca157e6020b" + } + }, + { + "text": "not saying this class should've been easy, but he overdoes it w/ the amount of work. lots of reading and hw due bf lecture, and two quizzes per week. his exams are really hard (not cumulative), the class average was very low. only good thing about him is his very clear, but super strict, grading criteria.", + "pos": 0.223, + "neu": 0.705, + "neg": 0.072, + "_id": { + "$oid": "6711d75dcd60fca157e6020c" + } + }, + { + "text": "Professors is fine. The test may look easy and but wait till u see the grade. Pure sadness. Anyway its the lab. It awful. Definitely dont take Jennifer, if u want to pass", + "pos": 0.193, + "neu": 0.625, + "neg": 0.182, + "_id": { + "$oid": "6711d75dcd60fca157e6020d" + } + }, + { + "text": "You have to read before each class and do pre & post class quiz before each lecture. His exams are heavy on reading and lectures. The fact that he is the only bio102 professor makes it hard. The lectures are 50% and the lab makes the other 50% of the grade. Honestly, his TA, Denice teaches better than him.", + "pos": 0.093, + "neu": 0.885, + "neg": 0.022, + "_id": { + "$oid": "6711d75dcd60fca157e6020e" + } + }, + { + "text": "Not sure where all these good ratings are coming from but he's one of the strictest professors I have ever had. He grades everything so harshly. This is an elective biology course and should not be this damn difficult.", + "pos": 0.043, + "neu": 0.763, + "neg": 0.194, + "_id": { + "$oid": "6711d75dcd60fca157e6020f" + } + }, + { + "text": "He is what you expect out of the science department lol. His memes are dad humor, but his lectures sometimes confused me because it was a bit disorganized in terms of the topics. He ignores your question if it's \"stupid\" which is annoying. Lots of reading (duh it's bio). 3 exams, all 50 mc. Do good in lab and do the reading homework questions.", + "pos": 0.091, + "neu": 0.701, + "neg": 0.207, + "_id": { + "$oid": "6711d75dcd60fca157e60210" + } + }, + { + "text": "Labs are 50 % and there are going to be online homework (quiz) after EACH lecture. However, there are two attempts and you can even review after the first attempt. His tests are 50 MC and each questions usually have two similar answers. His tests tests your understanding of concept so DON'T expect easy definition or pinpoints. Be ware second exam!", + "pos": 0.0, + "neu": 0.953, + "neg": 0.047, + "_id": { + "$oid": "6711d75dcd60fca157e60211" + } + }, + { + "text": "This class isnt hard, but theres just so many chapters to read. His exams arent hard, but he tests you on small details that you overlook in the textbook. Make sure to read the textbook and basically know everything in the textbook, as everything in the textbook is a fair game. He goes over major concepts, but doesnt test you on those.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d75dcd60fca157e60212" + } + }, + { + "text": "There is a homework assignment for each lecture. Three exams (including the final). Exams are not cumulative. Please read the textbook, do not just rely on notes alone. You need MindTap and TopHat for this course. MindTap has the homework (you have a week to complete each) and TopHat holds in class quizzes. He expects you read the textbook early.", + "pos": 0.0, + "neu": 0.936, + "neg": 0.064, + "_id": { + "$oid": "6711d75dcd60fca157e60213" + } + }, + { + "text": "I'll try to not be bias because he gave me a C+ even though I got a 79. This isn't a easy course but he is very passionate and wants kids to succeed the right way. He has 3 exams and gives HW for each chapter also participation matters. He delivers the material pretty well and makes it easy to take notes. doing it will help alot. READ THE TEXTBOOK.", + "pos": 0.293, + "neu": 0.688, + "neg": 0.019, + "_id": { + "$oid": "6711d75dcd60fca157e60214" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75dcd60fca157e60216" + }, + "professor_name": "David Gosser", + "rating": 2.1, + "department": "Chemistry department", + "comments": [ + { + "text": "IF YOU SEE THIS PROFESSOR RUN THE OTHER WAY! old man has no idea how to use zoom, class was a circus, no grades until the end of the semester & even after doing everything he asked us to do, and getting an A in 3/4 assignments gave me a bad grade FOR NO REASON", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d75dcd60fca157e60217" + } + }, + { + "text": "Gosser is very nice and does not tend to give his students too much work to do. For a 4 credit class, is it probably one of the easiest 4 credit class you'll ever take. However, the class has very little structure to the curriculum and none of us knew our grades at all in the class until he finally posted them at the end of the semester.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d75dcd60fca157e60218" + } + }, + { + "text": "Please don't take this class it a waste of time\nHe doesn't grade any work.I had to email the head of the science department about my grade because I haven't have a grade for his class. I have only quiz and few assignments he gave us. It was an online class I took.U will waste your time and waiting months to know what u got in his class.", + "pos": 0.032, + "neu": 0.892, + "neg": 0.077, + "_id": { + "$oid": "6711d75dcd60fca157e60219" + } + }, + { + "text": "Idk why there's so much hate, but Professor Gosser is amazing and tries his best to make sure each student can take something out of the course. He tries to engage with everyone and gives very few assignments.", + "pos": 0.323, + "neu": 0.607, + "neg": 0.07, + "_id": { + "$oid": "6711d75dcd60fca157e6021a" + } + }, + { + "text": "Was a complete waste of time! He spent the whole semester teaching R coding. The class is supposed to be about QUANTITATIVE ANALYSIS. Finally when he did talk about chem it was about long boring articles that he didnt bother going into further detail in. Labs were ontopic but because he never discussed anything in class it was confusing. Stay away", + "pos": 0.024, + "neu": 0.893, + "neg": 0.083, + "_id": { + "$oid": "6711d75dcd60fca157e6021b" + } + }, + { + "text": "Take him and just try to make some efforts and you are good to go. He is a very lenient grader and very considerate about deadlines. JUST TAKE HIM.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d75dcd60fca157e6021c" + } + }, + { + "text": "I just saw some rough comment here. I couldn't but come here to let you all know that he is so kind. I missed some deadlines for some of my assignments due to studying for the MCAT. I also missed his classes for like a month. He let me catch up through his recordings and is very understanding.", + "pos": 0.134, + "neu": 0.779, + "neg": 0.087, + "_id": { + "$oid": "6711d75dcd60fca157e6021d" + } + }, + { + "text": "I still dont have any idea what majority of my grades were... BORING BOOOOOORING", + "pos": 0.0, + "neu": 0.811, + "neg": 0.189, + "_id": { + "$oid": "6711d75dcd60fca157e6021e" + } + }, + { + "text": "Dont take him if you dont have to! I advise you to save yourself a headache and look for a better teacher whos more organized and has actual lesson plans. His classes never seem to follow any order. He just rambles on and off about different things and jumps from topic to topic. Easy class but very frustrating having to hear him talk for an 1hr.", + "pos": 0.087, + "neu": 0.854, + "neg": 0.059, + "_id": { + "$oid": "6711d75dcd60fca157e6021f" + } + }, + { + "text": "no homework, review sheet is exam, no attendance but he mentions things in class you need to know. all information needed is on his website. Need to pass the tests. He gives extra credit for each exam. He is passionate but does not teach well. Had him in an 80 person lecture and was very bored. Taught myself, barely showed up.", + "pos": 0.112, + "neu": 0.769, + "neg": 0.119, + "_id": { + "$oid": "6711d75dcd60fca157e60220" + } + }, + { + "text": "Easy A class. He gives you EVERYTHING you need to pass. Review sheets are the same as exams. Nothing more to it. Not much homework given, but light reading at times. I suggest sitting in the first 5 rows so you can focus better and actually see and hear him (depends on the room). You can pass if you know basic math and give decent effort.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d75dcd60fca157e60221" + } + }, + { + "text": "STAY AWAY FROM HIM!!! worst professor in CCNY and ruined my GPA my freshman year of college. He gave us a final that had nothing to do with what we learned all semester and everybody failed. Nice guy but extremely boring", + "pos": 0.039, + "neu": 0.736, + "neg": 0.225, + "_id": { + "$oid": "6711d75dcd60fca157e60222" + } + }, + { + "text": "nah.", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d75dcd60fca157e60223" + } + }, + { + "text": "This is one of the worst professor I've ever taken. He doesn't know how to teach at all. He doesn't explain anything even if you ask for help. Pretends to care but doesn't. Gives quiz online which doesn't makes any sense. Don't take if you want to save your GPA.", + "pos": 0.169, + "neu": 0.766, + "neg": 0.065, + "_id": { + "$oid": "6711d75dcd60fca157e60224" + } + }, + { + "text": "He's so boring. He supposedly has a life-long passion of chemistry but is hopelessly unable to express it with his class. I never want to show up to class, I rather stay home and sleep through it. You will learn close to nothing from him. Just like most other professors at CCNY. It's an abomination. I actually expect to go to class and learn.", + "pos": 0.073, + "neu": 0.823, + "neg": 0.104, + "_id": { + "$oid": "6711d75dcd60fca157e60225" + } + }, + { + "text": "He can't lecture. Taught myself the whole semester. Just use his practice exams, and old finals, you'll pass. But if you want to actually learn don't take him", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d75dcd60fca157e60226" + } + }, + { + "text": "Only take him if you have taken AP Chem in high school or had prior experience with college Chem. He does not teach. He gave three exams which were very easy and exactly like the reviews. However he did not prepare us at all for the department final (which is doable if you self study). If your major requires chem 104, dont take him!", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d75dcd60fca157e60227" + } + }, + { + "text": "He's literally the worst professor ever. Only gave one test that counted as the midterm, didn't even warn us about a final group project until 2 weeks before the semester ended and that counted as the final. Can't teach for his life. Also waited 2 months after the semester ended for him to put in my grade. And the sub was better for those 2 times.", + "pos": 0.059, + "neu": 0.884, + "neg": 0.058, + "_id": { + "$oid": "6711d75dcd60fca157e60228" + } + }, + { + "text": "I needed a easy science class since its a requirement but not part of my major. Honestly, this class was easy and manageable thank goodness. The professor was really nice and made sure his students were not heavily work loaded. He gives online quizzes,1 midterm,notes collection,and a final group project. I enjoyed his class and would take again:)", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d75dcd60fca157e60229" + } + }, + { + "text": "Do not take him. Gave 1 midterm and 1 final project and that's your grade. No review for the midterm, strange \"fill in the blanks\" format for the midterm, and little to no direction for the final project. Not to mention, he didn't even tell us we weren't having a final exam until the day before the end of finals week. Thought this would be easy. No", + "pos": 0.04, + "neu": 0.849, + "neg": 0.111, + "_id": { + "$oid": "6711d75dcd60fca157e6022a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75ecd60fca157e6022c" + }, + "professor_name": "Amy Adams", + "rating": 2.3, + "department": "Art department", + "comments": [ + { + "text": "She just randomly assigns grades. She is terrible.", + "pos": 0.0, + "neu": 0.693, + "neg": 0.307, + "_id": { + "$oid": "6711d75ecd60fca157e6022d" + } + }, + { + "text": "Boring lectures. She expects you to put in your all for an elective class. Stay away unless you want an F.", + "pos": 0.058, + "neu": 0.841, + "neg": 0.102, + "_id": { + "$oid": "6711d75ecd60fca157e6022e" + } + }, + { + "text": "her grading policy is ridiculous and she doesn't even know what she is saying most of the time. cusses and students and gives everyone a failing grade in the class, doesnt even have any grading criteria she just grades papers on what she feels. gave everyone a zero in the midterm because our answers were too \"specific\"", + "pos": 0.0, + "neu": 0.905, + "neg": 0.095, + "_id": { + "$oid": "6711d75ecd60fca157e6022f" + } + }, + { + "text": "I'll be fair, this class is easy if you listen bc she doesn't give out a lot; only two papers but the issue stems when she behaves unpleasant. She only gave an extra assignment since she was fed up and didn't commit to extra credit after only two students declined since the credit was actually a made-up assignment. Conclusion: the nicer, the better", + "pos": 0.227, + "neu": 0.691, + "neg": 0.081, + "_id": { + "$oid": "6711d75ecd60fca157e60230" + } + }, + { + "text": "Monotone voice and very disorganized lecture. Additionally, I think that she is racist based on her nitpicking", + "pos": 0.0, + "neu": 0.698, + "neg": 0.302, + "_id": { + "$oid": "6711d75ecd60fca157e60231" + } + }, + { + "text": "HORRIBLE! STAY AWAY!", + "pos": 0.0, + "neu": 0.329, + "neg": 0.671, + "_id": { + "$oid": "6711d75ecd60fca157e60232" + } + }, + { + "text": "Terrible professor. Only 4 papers and 2 exams but very harsh grader. Assignments sound easy but she looks for specific criteria. Do not take her if you are looking for an easy A, you'll regret it.", + "pos": 0.158, + "neu": 0.636, + "neg": 0.206, + "_id": { + "$oid": "6711d75ecd60fca157e60233" + } + }, + { + "text": "she is very mean and will fail you if you copy and paste from google", + "pos": 0.0, + "neu": 0.8, + "neg": 0.2, + "_id": { + "$oid": "6711d75ecd60fca157e60234" + } + }, + { + "text": "makes a lot of mistakes and grades harshly", + "pos": 0.0, + "neu": 0.737, + "neg": 0.263, + "_id": { + "$oid": "6711d75ecd60fca157e60235" + } + }, + { + "text": "no", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d75ecd60fca157e60236" + } + }, + { + "text": "She is the worst at teaching and expects you to read over 10 websites full of information for each class", + "pos": 0.0, + "neu": 0.823, + "neg": 0.177, + "_id": { + "$oid": "6711d75ecd60fca157e60237" + } + }, + { + "text": "There is no mention on what the exams will be on and she hates repeating herself", + "pos": 0.0, + "neu": 0.733, + "neg": 0.267, + "_id": { + "$oid": "6711d75ecd60fca157e60238" + } + }, + { + "text": "she was going to fail me because i didn't take the midterm and because i had covid. she is not considerate at all. she hates students", + "pos": 0.0, + "neu": 0.723, + "neg": 0.277, + "_id": { + "$oid": "6711d75ecd60fca157e60239" + } + }, + { + "text": "she always had an attitude and didn't care about the questions we would ask", + "pos": 0.0, + "neu": 0.832, + "neg": 0.168, + "_id": { + "$oid": "6711d75ecd60fca157e6023a" + } + }, + { + "text": "she never answers our questions and is never considerate about due dates", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d75ecd60fca157e6023b" + } + }, + { + "text": "She literally played videos for her lectures, and didnt care about the students. Sometimes would ignore questions that were being sent to the chat", + "pos": 0.084, + "neu": 0.736, + "neg": 0.18, + "_id": { + "$oid": "6711d75ecd60fca157e6023c" + } + }, + { + "text": "she is just terrible there is always silence in the lectures I would not take her again...", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d75ecd60fca157e6023d" + } + }, + { + "text": "DONT TAKE HER SHE IS THE WORSE AT TECHNOLOGY AND CANT EVEN TEACH EVEN THO IT IS ONLINE!!!!!! SHE DOESN'T RESPECT STUDENTS EITHER", + "pos": 0.0, + "neu": 0.755, + "neg": 0.245, + "_id": { + "$oid": "6711d75ecd60fca157e6023e" + } + }, + { + "text": "Horrible professor", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d75ecd60fca157e6023f" + } + }, + { + "text": "Basically she doesn't care about students", + "pos": 0.0, + "neu": 0.655, + "neg": 0.345, + "_id": { + "$oid": "6711d75ecd60fca157e60240" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75ecd60fca157e60242" + }, + "professor_name": "Chet Kozlowski", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "GET READY TO READ AND TAKE QUIZZES EVERY WEEK!!!! . Absent more than 3 times = automatically fail the course", + "pos": 0.125, + "neu": 0.695, + "neg": 0.18, + "_id": { + "$oid": "6711d75ecd60fca157e60243" + } + }, + { + "text": "Look he isnt bad at teaching but the PASSIVE AGRESSIVNESS is what yall gotta beware of. He will call you out and embarrass you, make weird jokes sometimes, and there's always a quiz after reading a chapter of a book or movie. You have like very short time in the beginning of class to do them and gives u 5 seconds to submit your answers.", + "pos": 0.147, + "neu": 0.789, + "neg": 0.065, + "_id": { + "$oid": "6711d75ecd60fca157e60244" + } + }, + { + "text": "Professor K started off nice but then took a drastic turn. He favorited multiple students from the start in my opinion- Multiple readings were given and pop quizzes as well", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e60245" + } + }, + { + "text": "Okay professor, gives multiple papers each week and pop quizzes. Makes jokes within the class that kept the class compelling. But some of the jokes were unnecessary and made some individuals including me feel uncomfortable in the class. Professor can be nice and lighthearted or quite stern and rude.", + "pos": 0.227, + "neu": 0.65, + "neg": 0.124, + "_id": { + "$oid": "6711d75ecd60fca157e60246" + } + }, + { + "text": "Kozlowski is a fun and knowledgeable guy. With this online class, you see him once a week and the other days you would need to read what was assigned and do a quiz on it. About 13 quizzes, and 2 papers. If you don't read, you can fall behind and be embarresed in front of class when he calls on you.", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e60247" + } + }, + { + "text": "My friend had him for her favorite class but he failed her just bc she handed in her work late he did state that he didn't accept late work, she still did the work but it was v late, it was bc she tried comm1tting the day it was due, he seems like a nice guy but I don't recommend if you ever procrastinate, or if you have depression.", + "pos": 0.127, + "neu": 0.701, + "neg": 0.172, + "_id": { + "$oid": "6711d75ecd60fca157e60248" + } + }, + { + "text": "Great professor. Participating is easy, just give your opinion. You will have text to read every week and quizzes. But he is very passionate and a nice professor. Also attendance and participation is important. If you can handle weekly work, youre fine.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e60249" + } + }, + { + "text": "Disrespectful when you have an opinion that contradicts his own. Complains about participation but doesn't give us opportunities to engage without being dismissed. Grades rudely, even with an A comments papers are boring, or not in his interesting yet he limits your quotes, topics, and comments. Very difficult to please overall. Good luck.", + "pos": 0.187, + "neu": 0.55, + "neg": 0.263, + "_id": { + "$oid": "6711d75ecd60fca157e6024a" + } + }, + { + "text": "Prof K is amazing, with zoom and being online its hard for me to feel engaged and involved in classes but he makes sure everyone feels included and were able to engage with the class work. Hes very funny and the class is honestly great!", + "pos": 0.377, + "neu": 0.603, + "neg": 0.02, + "_id": { + "$oid": "6711d75ecd60fca157e6024b" + } + }, + { + "text": "Pretty easy class. But he is extremely full of himself and its hard to look past and ignore his enormous ego. Other than that he was a pretty chill guy and I'd take the class if you want an easy A", + "pos": 0.26, + "neu": 0.648, + "neg": 0.092, + "_id": { + "$oid": "6711d75ecd60fca157e6024c" + } + }, + { + "text": "Professor Kozlowski is by far one of the best professors CCNY has. He tried his best to make everyone feel comfortable with icebreakers and his feedback was constructive but very insightful. My class was half in-person & half online; he genuinely made an effort to be flexible with all his students, which I appreciated immensely. 10/10 for me!", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e6024d" + } + }, + { + "text": "Alright at his job, but acts very holier than thou as if hes been teaching forever. Is nice enough in person but grades not only harshly but extremely condescendingly. He wont hesitate to question your intelligence and give you a terrible grade on hard work. Honestly one of the main reasons I switched my English major. Dont recommend at all.", + "pos": 0.204, + "neu": 0.681, + "neg": 0.116, + "_id": { + "$oid": "6711d75ecd60fca157e6024e" + } + }, + { + "text": "Overall, he isn't bad at his job but due to the way he treats students, i wouldnt take him again.", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e6024f" + } + }, + { + "text": "Prof. K is super chill and knowledgable about so much, making the class really enjoyable. You take a lot away from his class and readings even if they aren't something you usually read. He makes every class unique and intriguing, and overall he's just a really nice guy! I loved this class and gained a lot from it, I always felt ready to engage.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e60250" + } + }, + { + "text": "Honestly best professor in CCNY extremely funny and is very clear of his expectation.", + "pos": 0.571, + "neu": 0.429, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e60251" + } + }, + { + "text": "He's one of the best prof in this school. Very funny. Definitely take him.", + "pos": 0.485, + "neu": 0.515, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e60252" + } + }, + { + "text": "A very nice professor. If you prepared and practiced your speech at home, you can get a easy A.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d75ecd60fca157e60253" + } + }, + { + "text": "The grade is based on 4 speeches, a 1-page paper, and participation/attendance. This class is easy unless you get anxious when presenting/talking in front of a group of people. Easy A.", + "pos": 0.162, + "neu": 0.782, + "neg": 0.056, + "_id": { + "$oid": "6711d75ecd60fca157e60254" + } + }, + { + "text": "Professor Kozlowski is an understanding professor but a tough grader. He will make you work for your grade. Just go to class, participate, and be well-prepared when giving speeches. Don't be absent either because he does keep track.", + "pos": 0.076, + "neu": 0.881, + "neg": 0.043, + "_id": { + "$oid": "6711d75ecd60fca157e60255" + } + }, + { + "text": "Took this professor for an English class - Horror Literature. Lots of reading. Fair grader. Attendance a must. He expects you to participate. A quiz on the readings every class.", + "pos": 0.068, + "neu": 0.824, + "neg": 0.109, + "_id": { + "$oid": "6711d75ecd60fca157e60256" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75fcd60fca157e60258" + }, + "professor_name": "Naresh Devineni", + "rating": 3.9, + "department": "Civil Engineering department", + "comments": [ + { + "text": "super hard exams", + "pos": 0.619, + "neu": 0.159, + "neg": 0.222, + "_id": { + "$oid": "6711d75fcd60fca157e60259" + } + }, + { + "text": "Very very good professor. Genuinely cares about your success, and wants you to continuously perform at your best! A", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6025a" + } + }, + { + "text": "Prof. Devineni teaches all material deeply and understandable while providing relevant applications in problems, tests, the project, etc. He is always available during office hours or outside of office hours using slack. Take advantage of office hours, tutoring, etc. and focus more on understanding the problems he creates. You will learn a lot.", + "pos": 0.07, + "neu": 0.838, + "neg": 0.092, + "_id": { + "$oid": "6711d75fcd60fca157e6025b" + } + }, + { + "text": "The exam is harder than homework question. Compared other school Civil Engineering data exam, it is way more easier than his.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6025c" + } + }, + { + "text": "Very knowledgeable of the course, hence makes concepts look doable and quite simple during the lecture. But when it comes to exams its a whole different ball game. Count on Recorded Lectures, lecture notes and his assistance if stuck. But like I said don't quite understand why he has no mercy when it comes to exams.", + "pos": 0.053, + "neu": 0.863, + "neg": 0.084, + "_id": { + "$oid": "6711d75fcd60fca157e6025d" + } + }, + { + "text": "The smarter professor I ever met in my life. Prof Devineni is such a amazing person and professor. He is very caring and helps student a lot. Always ready to answer any questions. However his class is not easy. Get ready to study a lot and do a lot homeworks. His test are not regular, He is test your understanding and intellect not memories.", + "pos": 0.236, + "neu": 0.707, + "neg": 0.057, + "_id": { + "$oid": "6711d75fcd60fca157e6025e" + } + }, + { + "text": "my goodness gracious youll need prayers for this class", + "pos": 0.485, + "neu": 0.515, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6025f" + } + }, + { + "text": "Prof Devineni is an all star professor. He conveys material clearly, gives out notes, his exams are consistent with what he teaches, he allows a formula sheet, and has clear grading criteria. He gives intense boot camps but with a good team, you can do well. The material isn't difficult, but it is a lot. Do and understand all the practice questions", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60260" + } + }, + { + "text": "One of the amazing professors in CCNY. He truly cares about his students and put effort into his teaching materials. He is always in the office if you have any questions. Though his test could be tricky, you learned a lot in his class.", + "pos": 0.189, + "neu": 0.78, + "neg": 0.031, + "_id": { + "$oid": "6711d75fcd60fca157e60261" + } + }, + { + "text": "Prof. Devine I is an awesome professor. Tests are a bit hard, the boot camps are really long and strenuous, but he is always available to help. I've never met a more dedicated and passionate Professor. You will come out knowing incredible tools in optimal analysis.", + "pos": 0.318, + "neu": 0.662, + "neg": 0.02, + "_id": { + "$oid": "6711d75fcd60fca157e60262" + } + }, + { + "text": "Rumors are true. He is tough, take a light load when dealing with him. Work hard and you get what you deserve at the end. Ask for help, he is there to help.", + "pos": 0.21, + "neu": 0.716, + "neg": 0.074, + "_id": { + "$oid": "6711d75fcd60fca157e60263" + } + }, + { + "text": "He is a great professor and really wants his students to pass. He replies to all your questions through slack or emails and even offers makeup exams. There is no homework but do all the practice questions he assigns. He may be a tough grader but if you do all the practice questions, his material is not too hard to understand.", + "pos": 0.062, + "neu": 0.886, + "neg": 0.052, + "_id": { + "$oid": "6711d75fcd60fca157e60264" + } + }, + { + "text": "Very well organized professor. Really tough grader. Material can be difficult to grasp but practice will help. I don't appreciate the bootcamp time limit because we have to take off from work and it's assigned after the exams when it could be helpful for studying. However, Dev is always willing to help out anyone with questions.", + "pos": 0.185, + "neu": 0.726, + "neg": 0.089, + "_id": { + "$oid": "6711d75fcd60fca157e60265" + } + }, + { + "text": "Amazing professor and really helpful. If you have any interest in the subject, Naresh will help guide those interests and you will learn a great deal.", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60266" + } + }, + { + "text": "He will not curve your grade but you will learn a lot. Make sure you understand and practice all the problems. He will also help you during office hours and email. Please pay attention to his exam review right before the exam. He literally told you what he will ask. You just don't care enough to pay attention in detail. A great professor overall.", + "pos": 0.186, + "neu": 0.689, + "neg": 0.125, + "_id": { + "$oid": "6711d75fcd60fca157e60267" + } + }, + { + "text": "Every semester is different so take that with caution. CE264 in itself is an extremely hard class so basing it off of just the professors wont do you any help. Its extremely important to do all the textbook problems and some of them he may put on the exam. He grades harshly with no partial and curves, but is a nice person.", + "pos": 0.105, + "neu": 0.825, + "neg": 0.071, + "_id": { + "$oid": "6711d75fcd60fca157e60268" + } + }, + { + "text": "I took Advanced Data Analysis (G 1101) with Naresh a few years ago and it was by far the most useful class I've ever taken, really set me up for good jobs at home. I was an exchange student from Australia in 2017, I finally got around to writing this up! Plus, naresh was helpful and flexible when I experienced a family tragedy.", + "pos": 0.176, + "neu": 0.765, + "neg": 0.059, + "_id": { + "$oid": "6711d75fcd60fca157e60269" + } + }, + { + "text": "You will learn a lot in this class. And these knowledge should be helpful for you when you take CE316. There are three exams, and the professor will provide you with review sheet with problems, so do the problems in the review sheet. Exam problems will be similar to the question in the review sheet .", + "pos": 0.044, + "neu": 0.823, + "neg": 0.132, + "_id": { + "$oid": "6711d75fcd60fca157e6026a" + } + }, + { + "text": "If you work hard you'll do great.", + "pos": 0.39, + "neu": 0.476, + "neg": 0.133, + "_id": { + "$oid": "6711d75fcd60fca157e6026b" + } + }, + { + "text": "He is a great professor. His notes are well organized and detailed. Just review before class for pop quizzes. He's always there after class hours just reach out to him. He really cares about his students. Do all his study guides and you'll be set. Don't memorize it and actually learn the material, that will help you. Bootcamps also helps on exam.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6026c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d75fcd60fca157e6026e" + }, + "professor_name": "Mullah Abdullah", + "rating": 4.3, + "department": "Fine Arts department", + "comments": [ + { + "text": "On exam u should answer exactly word to word of what he said during class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6026f" + } + }, + { + "text": "Nice guy personality wise. However the class itself is not an easy one. 5 exams 3 papers. Have to memorize a lot and expects kids to memorize word to word. If you mess up, points off. Not an easy class requires a lot of studying and effort even though its an 10000 level class. Take good notes, memorize everything, and never be late he'll kickyouout", + "pos": 0.117, + "neu": 0.785, + "neg": 0.097, + "_id": { + "$oid": "6711d75fcd60fca157e60270" + } + }, + { + "text": "Gives lecture notes that you have to memorize word for word. Takes off 20 point for bad grammar in your paper. Very strict with discipline! However, the class was enjoyable and not hard, but I really disagree with his teaching method. He inculcates dogma into students' minds by making them memorize his words verbatim.", + "pos": 0.052, + "neu": 0.841, + "neg": 0.107, + "_id": { + "$oid": "6711d75fcd60fca157e60271" + } + }, + { + "text": "Wonderful professor. Always helpful, and he provides all the text.Tests are easy if you study; he tells you exactly what will be on the test. Class is also quite interesting.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60272" + } + }, + { + "text": "GrrrEAT !!! love the course. Recommended.", + "pos": 0.632, + "neu": 0.368, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60273" + } + }, + { + "text": "dont have to buy the texbook, he gives a handout in the beginning of class with all the information for the semester. he is a literal professor, everything he says, take him literally but overall he is easy and emails you what to study for the test and nothing will go wrong. Just dont talk in class and dont come late", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60274" + } + }, + { + "text": "GREAT PROF GREAT COURSE. FOLLOW HIS RULES MEMORIZE THE NOTES AND YOU WILL GET AN EASY A. NO FOOD IN CLASS AND DO NOT SLEEP. NO CHAT.YOU WANT TO LEARN TAKE HIM.", + "pos": 0.306, + "neu": 0.613, + "neg": 0.081, + "_id": { + "$oid": "6711d75fcd60fca157e60275" + } + }, + { + "text": "This Prof.makes the course interesting and for the first time you will find yourself learning not only Art but Humanities, History, and World Civilization. Follow and respect his class rules and you will be fine. Just sit back and enjoy History. It is so interesting and fun. Take good notes, study for the tests. Highly recommended. Great Prof.", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60276" + } + }, + { + "text": "took his class not being a art major just as an elective.. at first his personality takes time to get used to because he is a character but he knows a lot and gives a lot of info about many things. about being exempt from the final its true. i did... i got an A+.. definitely take him! take notes and you'll do good", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60277" + } + }, + { + "text": "A seasoned pro, charismatic storyteller and extremely hilarious. He does have some anal rules, and you do NOT want to get on his bad side--don't take the class if you are extremely ADD or dress like you're from Long Island, he will not like you. All others will enjoy him making fun of these students and reap an easy A w/out reading the text.", + "pos": 0.192, + "neu": 0.72, + "neg": 0.088, + "_id": { + "$oid": "6711d75fcd60fca157e60278" + } + }, + { + "text": "Great Course, highly recommended professor, and an easy A+. Follow his rules: take good notes, memorize them, read the text book, don't eat in class, don't sleep in class, don't talk in class, just sit and enjoy the Art and the History, it is very very interesting. For the first time in your life you will find yourself learning something in CCNY.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60279" + } + }, + { + "text": "Just take the course. GRRRRREAT PRROFESSOR and easy course. In addition you learn a lot. He is a foutain of knowledge. You wont find better than Abdullah.", + "pos": 0.096, + "neu": 0.825, + "neg": 0.079, + "_id": { + "$oid": "6711d75fcd60fca157e6027a" + } + }, + { + "text": "Not only did I learn about art in his course. but also history, politics, culture and many other things. He is a great professor. He really knows his material and is always well prepared for class. Just read the book prior to lecture, participate, and take VERY good notes and you will do well in his class. One of the best at CCNY", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6027b" + } + }, + { + "text": "he is a good teacher. he definitely knows his art and by far one of the best teachers at the college. take his class. ive heard he could exempt you from the final if your grade is an A", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6027c" + } + }, + { + "text": "I was somewhat fearful of the professor as he had his class rules that he like students to follow to the letter and was constantly worried about not getting him pissed off by breaking any of his rules.He teaches the history of the area where the art originated: politics, society, etc. so it correlates to WCIV 101.", + "pos": 0.092, + "neu": 0.828, + "neg": 0.08, + "_id": { + "$oid": "6711d75fcd60fca157e6027d" + } + }, + { + "text": "His class was tremendously interesting. The professor's passion about art is demonstrated in his lectures. I received a B+ due to bad attendance and the professor kept telling me that I could've gotten an A. His lectures on the history surrounding art also helped me to do well in my WCiv 101 class. Very strict but very \"for-the-student.\"", + "pos": 0.09, + "neu": 0.874, + "neg": 0.036, + "_id": { + "$oid": "6711d75fcd60fca157e6027e" + } + }, + { + "text": "GREAT PROF, IRREPLACEABLE, AWESOME ,AND HIGHLY RECOMMENDED.", + "pos": 0.72, + "neu": 0.28, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e6027f" + } + }, + { + "text": "Professor Abdullah has excelent knowledge, encourages students to work, maintains discipline and cares how his students are doing. That's why you learn a lot in this course. As a result of your effort is(of course) a good grade. Abdullah is irreplaceable!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d75fcd60fca157e60280" + } + }, + { + "text": "Excellent professor, great course. Easy A! just take this course. One thing I did not like is that I saw some students cheating during the tests, they put papers under their sheet and started copying ,since Abdullah sits on the back it made it easier for them. It was not fair to me because I studied so hard and I spent hours memorizing.", + "pos": 0.176, + "neu": 0.702, + "neg": 0.122, + "_id": { + "$oid": "6711d75fcd60fca157e60281" + } + }, + { + "text": "Now that I'm a senior and look back at his course, I regret not going to his office hours and talking to him more outside of class. He was an extremely charismatic lecturer who had a passion that was electrifying. One of CUNY's super star professors.", + "pos": 0.131, + "neu": 0.816, + "neg": 0.053, + "_id": { + "$oid": "6711d75fcd60fca157e60282" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d760cd60fca157e60284" + }, + "professor_name": "Matthew Vaz", + "rating": 4.7, + "department": "History department", + "comments": [ + { + "text": "One of the best history professors. The class lecture was very interesting and he encouraged students to participate. Attendance and participation were a big portion of the class. Three papers in total, 5 pages each, but they are easy and if you put in effort, he will give you a good grade. I highly recommend this class with Professor Vaz.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60285" + } + }, + { + "text": "He was great. If you went to class regularly, you'd do fine. He wasn't picky about essays, just as long as you got what he was teaching. I'm not the best writer, but he still gave me a 90 for my essay. He made everything easy to understand by giving lots of examples", + "pos": 0.178, + "neu": 0.786, + "neg": 0.036, + "_id": { + "$oid": "6711d760cd60fca157e60286" + } + }, + { + "text": "Such a great professor! Always talk to him after class so he knows your face and can give you participation points because his grading criteria is just attendance/participation, 2 papers and a take home final. The second paper is around midterm season so take your time with it and submit it on time! Very easy grader too!", + "pos": 0.129, + "neu": 0.871, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60287" + } + }, + { + "text": "Great lectures and he keeps things very interesting but do not bother emailing him, he will not answer. Only 3 assignments - One essay on The Jungle by Upton Sinclair, one midterm essay, and two essays for the final - all take home. Pay attention in class, participate, write a good essay and you'll get an A.", + "pos": 0.17, + "neu": 0.806, + "neg": 0.025, + "_id": { + "$oid": "6711d760cd60fca157e60288" + } + }, + { + "text": "Great professor. If you want to pass, show up to class for attendance and take GOOD notes cuz the exam is strictly from his lectures. The definitions/explanations he wants are the ones that come straight from his mouth. Papers aren't too bad. Grades fair if you put the effort. Very understanding to students as well. No reason to hate this guy", + "pos": 0.239, + "neu": 0.683, + "neg": 0.078, + "_id": { + "$oid": "6711d760cd60fca157e60289" + } + }, + { + "text": "Professor Vaz is amazing. He assigns a few assignments and gives amazing feedback for you to improve. I highly recommend him. I would definitely take him again.", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e6028a" + } + }, + { + "text": "Great professor, very understanding and lenient. Would recommend him!", + "pos": 0.607, + "neu": 0.393, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e6028b" + } + }, + { + "text": "Gave us the final test as take home. Hands down the greatest teacher I have ever had. He is incredibly knowledgeable and is able to explain complex concepts in a way that is easy to understand. I would highly recommend taking a class with him if you have the opportunity. He truly is the best! Overall rating: 5/5.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e6028c" + } + }, + { + "text": "2nd time taking him. Great Professor, although not accessible outside class, you have to voice your problem in class with him. His lecture is straightforward and on point, all papers are easy, just read and take some points out of the reading. TAKE HIM!!!", + "pos": 0.153, + "neu": 0.795, + "neg": 0.052, + "_id": { + "$oid": "6711d760cd60fca157e6028d" + } + }, + { + "text": "This class is pretty straightforward. You don't have to attend the lectures every single time however, just remember the professor does assign group discussions every other week so be sure to participate in that. He's very easy going and accessible outside of class too.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e6028e" + } + }, + { + "text": "Professor Vaz was one of the best professors I had this semester. Grade is determined by 2 5 page papers and a final. He lets you know the topic of the papers weeks in advance.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e6028f" + } + }, + { + "text": "Vaz is one of the best professors. He only graded by 2 papers and one final, which only the final is based on the topics covered in class. His papers gives a huge area of creativity that helps you to know more about this topic. His teaching in policing is helpful, but be prepare that he is does not provide much info on many things.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60290" + } + }, + { + "text": "The whole class depends on 2 exams and 2 papers so as long as you do decently well on those assignments you can get at least a B+ or A. At least skim all of the readings and engage in class. It's easier to curry favors such as an extension or help with a paper with him if you participate. Honestly, it's one of the easiest history courses.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60291" + } + }, + { + "text": "Professor Vaz is a great professor. In regards to his Crime and Policing class, there are 2 papers and a Final. Very lenient grader. If you are a History major this is definitely one of the easiest A's for a 300 level history class. For non history, still an easy class. Great lectures, and he leads discussions better than many professors.", + "pos": 0.282, + "neu": 0.674, + "neg": 0.044, + "_id": { + "$oid": "6711d760cd60fca157e60292" + } + }, + { + "text": "This is not an easy A but it's not hard either. I'd consider myself an average student and I liked the class. The professor is a great speaker and very knowledgeable. 2 essays and a final and attendance!", + "pos": 0.237, + "neu": 0.727, + "neg": 0.036, + "_id": { + "$oid": "6711d760cd60fca157e60293" + } + }, + { + "text": "You can easily ace the class without paying att all semester long. However, if you can take notes throughout the semester, do yourself the favor and do that so you're not cramming in over 50 terms in a few days (it's intense). Easy A if ur one to cram (like me). 1 final & 2 term papers make up ur grade.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60294" + } + }, + { + "text": "I didn't do anything in his class the entire semester & got an A. Just do the 2 term papers, come in for attendance, & study for the final. The final is a killer. You will be studying over 50 terms & 3 essays (only 8/50 terms appear on the exam & u do only 2 essays). Con: too strict abt how he wants terms answered (stating what it is as a noun)", + "pos": 0.0, + "neu": 0.944, + "neg": 0.056, + "_id": { + "$oid": "6711d760cd60fca157e60295" + } + }, + { + "text": "Dude's an amazing speaker during lecture. 2 papers (graded by TA), final exam (graded by him), and attendance. Each are worth 25%", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60296" + } + }, + { + "text": "One of the best professors at CCNY. He is extremely knowledgable and is basically a human textbook. Like most lecturers, he appears strict but when you ask him questions after class he is more than kind to help. He DOES take attendance every single class even if it takes 10 mins. Basically, write the two essays, go to class and study for the final.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60297" + } + }, + { + "text": "One of the best profs I have ever had. You have 2 paper and he's really good with grading. Just make sure to do well on the papers and show up to every class and you will get an A.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e60298" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d760cd60fca157e6029a" + }, + "professor_name": "Emmanuel Adepo", + "rating": 3.6, + "department": "Mathematics department", + "comments": [ + { + "text": "He is strict and that is because you can see he genuinely loves math. The homework reflects the tests. Even if you think they don't, the review packets he gives show the EXACT KIND of problems you'll see on the tests/final. Tests are hard if you don't practice the material.", + "pos": 0.067, + "neu": 0.853, + "neg": 0.08, + "_id": { + "$oid": "6711d760cd60fca157e6029b" + } + }, + { + "text": "One of the best professor I ever had. Very Intelligent. You need to study hard to pass. If you love math, you will love him.", + "pos": 0.426, + "neu": 0.536, + "neg": 0.038, + "_id": { + "$oid": "6711d760cd60fca157e6029c" + } + }, + { + "text": "professor adepo is a fair, realistic, and intelligent individual who actually teaches his students about the course in which they are taking. My only complaint about him is that he dont give extra credit. the best take him he is good professor.", + "pos": 0.235, + "neu": 0.682, + "neg": 0.083, + "_id": { + "$oid": "6711d760cd60fca157e6029d" + } + }, + { + "text": "meh", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d760cd60fca157e6029e" + } + }, + { + "text": "I took a summer class with him. It was easy to go up to him and clarify any problems. What I found challenging was finishing the tests especially the final because there were a lot of problems to do. If you didn't know most of the concepts you'd have a hard time passing. So do practice problems from the text book and old tests.", + "pos": 0.062, + "neu": 0.803, + "neg": 0.135, + "_id": { + "$oid": "6711d760cd60fca157e6029f" + } + }, + { + "text": "As a first year student I was terrified at taking Calculus seeing as I am a Computer Science major. He is the best professor hands down. He made me want to become a math major. If you want to learn. You will learn. If you are a slacker, you will not learn. Adepo is the man.", + "pos": 0.112, + "neu": 0.825, + "neg": 0.063, + "_id": { + "$oid": "6711d760cd60fca157e602a0" + } + }, + { + "text": "Please avoid this professor if you want to save your gpa!!!! He knows how to teach, but he speeds through everything. If you know you cant keep up, then dont even bother taking his class. He makes a simple problem seem so difficult when it really isnt. He is also rude and doesnt care about students grades. Take someone else, I am warning you!!", + "pos": 0.091, + "neu": 0.659, + "neg": 0.251, + "_id": { + "$oid": "6711d760cd60fca157e602a1" + } + }, + { + "text": "I would say this guy teaches good but not a good grader. U will definitely learn but if u dont keep up ur grades u fail!!!Took him in summer had a horrible semester!!! Take him if u know math and u can manage!!! His exams are mad hard!! Good Luck!", + "pos": 0.19, + "neu": 0.598, + "neg": 0.212, + "_id": { + "$oid": "6711d760cd60fca157e602a2" + } + }, + { + "text": "He teaches very well and clear. he also gives examples during class which is very helpful. his exams are similar to the review sheets he gives. just study the examples in class, review sheet and hwss and you'll definitely do well on the exams. however, his finals are very difficult...", + "pos": 0.219, + "neu": 0.734, + "neg": 0.047, + "_id": { + "$oid": "6711d760cd60fca157e602a3" + } + }, + { + "text": "Best math professor in CCNY.", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e602a4" + } + }, + { + "text": "He is very unclear.he thinks you must have to remember everything u learned abt math since high school level", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e602a5" + } + }, + { + "text": "I found the professor very clear. He covered everything we need to know for his exams in class. There were 4 tests, 1 lowest score dropped. Technically, there was homework every day, but he did not collect it -- it was instrumental for doing well on his exams and Math department final exam. Overall, good experience!", + "pos": 0.14, + "neu": 0.831, + "neg": 0.029, + "_id": { + "$oid": "6711d760cd60fca157e602a6" + } + }, + { + "text": "HE IS THE BEST PROF THAT I MET IN CCNY!!IF U REALLY WORK HARD, HIS EXAM IS NOT THAT HARD. HE EXPLAIN EVERYTHING VERY CLEARLY AND HE KNOWS EVERYTHING. U CAN ASK ANY QUESTIONS AND HE WILL BE VERY HAPPY TO HELP U OUT!!! JUST DO ALL THE HW THAT HE GIVES TO U AND U WILL BE FINE. I TOOK 392 AND 203 WITH HIM AND GET A+ FOR BOTH.", + "pos": 0.269, + "neu": 0.697, + "neg": 0.034, + "_id": { + "$oid": "6711d760cd60fca157e602a7" + } + }, + { + "text": "he moves very fast and doesn't give practice question. TOUGH grader", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d760cd60fca157e602a8" + } + }, + { + "text": "Please Dont take him...He rushes to everything and expects you to know stuff about calc 3 before taking the class, how can one know about a class materials before taking it? I did almost all HWs and his exam was very diff. than HWs. I got 8/30. and I had to drop that class. I took the same class next semester with other prof. and got A-.", + "pos": 0.033, + "neu": 0.937, + "neg": 0.03, + "_id": { + "$oid": "6711d760cd60fca157e602a9" + } + }, + { + "text": "The WORST Professor ever!!! rushes thru everything, and his test are nothing like the homework (which I did all of)", + "pos": 0.0, + "neu": 0.697, + "neg": 0.303, + "_id": { + "$oid": "6711d760cd60fca157e602aa" + } + }, + { + "text": "HE IS A GOOD GUY..MAYBE NOT THE BEST PROF. BUT HE IS FAIR.", + "pos": 0.287, + "neu": 0.585, + "neg": 0.128, + "_id": { + "$oid": "6711d760cd60fca157e602ab" + } + }, + { + "text": "He is the best. I had him over the summer. Got A+. Exams and Final are tough but he is a generous grader if you show him that you know your stuff . Writes a lot on the board and gives you lots of chances to ask questions. You don't even need to go back to the book for explanation. Just understand the concept and do some problems, you should be fine", + "pos": 0.139, + "neu": 0.802, + "neg": 0.058, + "_id": { + "$oid": "6711d760cd60fca157e602ac" + } + }, + { + "text": "He showed up 2 class late 2 many times. Gives 3 to 4 hours of homework. He erases the board before seeing if everyone copied whats on it. He's a cool dude that needs to learn how to teach students. Less than half of my class passed his class", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e602ad" + } + }, + { + "text": "I took in the summer. He doesn't teach from book like Mboup did. He writes copious notes(a lot) on the board. He explains everything clearly. Read the note, do the homeowork!. We always stay after class to ask him questions. Hes funny too. Since it was summer he would stay 1-2 hours for review sections. Tests are fair. Follow the right approach!", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d760cd60fca157e602ae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d761cd60fca157e602b0" + }, + "professor_name": "Sergey Vitkalov", + "rating": 3.8, + "department": "Physics department", + "comments": [ + { + "text": "exams are so free, best physics professor youll find at ccny", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602b1" + } + }, + { + "text": "This is the best physics professor to take for any physics class here, he gives relevant notes and examples in the lectures and on top of that his tests are open notebook and multiple choice. I would love to take him again for any other physics class and highly recommend him for physics due to his grading and tests.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602b2" + } + }, + { + "text": "propagation man was honestly the best, if you take physics 2 he is THE prof to take it with", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602b3" + } + }, + { + "text": "Absolute best professor, there's no contest. This man is beautiful.", + "pos": 0.468, + "neu": 0.405, + "neg": 0.127, + "_id": { + "$oid": "6711d761cd60fca157e602b4" + } + }, + { + "text": "Generous exams, and Mu and Sefu helped out so much!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602b5" + } + }, + { + "text": "The absolute GOAT bro deserves 6/5. My only complaint is his voice can put you to sleep sometimes.", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d761cd60fca157e602b6" + } + }, + { + "text": "We love propagation man!!!! Sefu Carried", + "pos": 0.518, + "neu": 0.482, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602b7" + } + }, + { + "text": "Best Physics Professor from this institution. Sefu carried.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602b8" + } + }, + { + "text": "The best physics professor in CCNY. Sefu carried.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602b9" + } + }, + { + "text": "Easily flexible when various circumstances occur, makes sure concepts and formulas are easy to read and understand. Provides lecture recordings and study material outside of class, flexible grading standard for students that can't afford access to online material. Focuses heavily on exams but provides a decent curve.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602ba" + } + }, + { + "text": "a pretty solid prof", + "pos": 0.706, + "neu": 0.294, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602bb" + } + }, + { + "text": "He is of the best physics professors at ccny. I took him before Corona virus, it was in person, I learned alot, his lectures very good. He is also caring. Take him, you'll not regret, his reviews similar to the exams.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602bc" + } + }, + { + "text": "He is one of the nice and best professor i have ever seen. He always works for his students and his review sessions are almost like the exams. I highly recommand him", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602bd" + } + }, + { + "text": "You have to pay for WILEYPLUS homework, and the problems feel extra hard for no reason sometimes, since his Blackboard tests were much easier. He teaches the content well, but would recommend reading the chapter alongside his lectures to grasp the topics since the class goes very fast, with 1 chapter or more per lecture.", + "pos": 0.111, + "neu": 0.793, + "neg": 0.097, + "_id": { + "$oid": "6711d761cd60fca157e602be" + } + }, + { + "text": "He's good at teaching, but his thick accent can be heavy at times. But all in all, his exams are very fair. He covers most of the questions that's going to be on the test during review sessions. Would take again.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602bf" + } + }, + { + "text": "This professor clearly wants his students to learn but has a thick accent so if you sit in the back you will not understand him. If you want to learn you should sit in the front otherwise just bring in review for his exams since its open book. You wont learn and if you just want a good grade, he is the best one.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602c0" + } + }, + { + "text": "He is the best option for physics 207 at this school. His exams are open book and most of the questions are similar to past exams. However lately he has been making more and more changes so dont completely rely on past exams. He curves a little and gives hw which is a grade booster.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602c1" + } + }, + { + "text": "Just collect his past tests and also get the basic idea about physics. Also, he curves the total grade. So, don't panic. If you are above the average, you will get A easily.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602c2" + } + }, + { + "text": "not like his ta", + "pos": 0.0, + "neu": 0.587, + "neg": 0.413, + "_id": { + "$oid": "6711d761cd60fca157e602c3" + } + }, + { + "text": "Just wanna say. Don't take him. Curve a little. Multiple choices which worth 10 points each.. :-(", + "pos": 0.098, + "neu": 0.773, + "neg": 0.129, + "_id": { + "$oid": "6711d761cd60fca157e602c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d761cd60fca157e602c6" + }, + "professor_name": "Louis Marinoff", + "rating": 3.7, + "department": "Philosophy department", + "comments": [ + { + "text": "Had fun, highly suggest taking it, many student joined the meeting from their car, online, which the processor did not mind, nice to have camera, but he did not pick on us if you did not, nice professor fun and educational and mind opening course for those who have not taken any philosophy yet for this era where AI is upcoming and the next trend.", + "pos": 0.03, + "neu": 0.855, + "neg": 0.115, + "_id": { + "$oid": "6711d761cd60fca157e602c7" + } + }, + { + "text": "Professor Marinoff is a knowledgeable and well-achieved professor. The only work for the course is 3 essays which can be good or bad depending on whether you like the course or not. For me, it was extremely tedious but doable. While he was nice and easy to work with, his style of teaching was not for me.", + "pos": 0.172, + "neu": 0.794, + "neg": 0.034, + "_id": { + "$oid": "6711d761cd60fca157e602c8" + } + }, + { + "text": "I took his AI course, very adamant about making sure everyone understands whats being discussed. Genuinely interested in philosophy which is helpful, participation is not mandatory, provides multiple essay topics with pretty clear guide on writing a Phil essay, he also gives feedback for each essay, so pay attention to that and you should be fine!", + "pos": 0.235, + "neu": 0.719, + "neg": 0.046, + "_id": { + "$oid": "6711d761cd60fca157e602c9" + } + }, + { + "text": "An amazing professor that takes his time with the material. Most of the grade is based on papers and book reports, so make sure yo are down to read a lot and write a lot! If it's your thing it should be smooth sailing, with an amazing professor like Professor Marinoff!", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602ca" + } + }, + { + "text": "This professor rambles on in class in a way that makes it really difficult to understand his lectures and what it is he is trying to teach. Trying to do his essays is tasking since it's so difficult to grasp a single idea from class. While there are worse professors at CCNY I can't say Marinoff is the best. Choose wisely", + "pos": 0.097, + "neu": 0.776, + "neg": 0.127, + "_id": { + "$oid": "6711d761cd60fca157e602cb" + } + }, + { + "text": "Prof Marinoff is not a tough grader and he's not out to grade you badly. As long as you write an essay that shows you know about the topic and include relevant information and personal opinions He will definitely give you a good grade. 3 essays determine your grade.\n\nI think the highest grade of one your essay determines your class GPA.", + "pos": 0.102, + "neu": 0.852, + "neg": 0.046, + "_id": { + "$oid": "6711d761cd60fca157e602cc" + } + }, + { + "text": "Honestly I wouldnt take him again. I dreaded through his class. He's such a difficult grader especially for a intro class and isnt lenient at all. Theres only three essays and if you dont do well on one it can affect your grade badly.", + "pos": 0.056, + "neu": 0.705, + "neg": 0.24, + "_id": { + "$oid": "6711d761cd60fca157e602cd" + } + }, + { + "text": "He was my worst experience! Clearly not one of those professor who are out there to help students. Plain Idiot!", + "pos": 0.184, + "neu": 0.545, + "neg": 0.272, + "_id": { + "$oid": "6711d761cd60fca157e602ce" + } + }, + { + "text": "Lectures and material were very interesting. The grades is based off attendance and the 3 essays. There is no final exam but there is a final paper which is included in the three count. Tough grader but as long as you put in the effort, take notes during lectures, and include your own thoughts, you should do really well. I recommend this professor.", + "pos": 0.125, + "neu": 0.828, + "neg": 0.048, + "_id": { + "$oid": "6711d761cd60fca157e602cf" + } + }, + { + "text": "Honestly, I showed up to maybe 4 lectures total (bad on my part). The grade is only based on 3 papers. Choose one of the provided topics, do thorough research, and theres no reason for you to do bad. He will call you out in your feedback if you are too generic. Be specific, really know your topic, and you will do well.", + "pos": 0.07, + "neu": 0.799, + "neg": 0.131, + "_id": { + "$oid": "6711d761cd60fca157e602d0" + } + }, + { + "text": "He uses Turnitin to grade your essays which says you plagiarized for the smallest thing and even if you try to explain yourself he does not care at all. Mind you it's only 3 essays throughout the semester. No assignments, hw, or tests. So if you don't do too well on one of the essays its hard to pass with a good grade.", + "pos": 0.042, + "neu": 0.841, + "neg": 0.117, + "_id": { + "$oid": "6711d761cd60fca157e602d1" + } + }, + { + "text": "He's very strict on plagiarism especially if you copied a source without citing it. Be careful with that. The class is very straightforward though its only three papers for the whole semester and thats all he grades. Just make sure to read the textbook as well as the supplementary materials he provides for you snd you'll be all set.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602d2" + } + }, + { + "text": "Entertaining, educational, possessed of a wide range of knowledge and an approachable demeanor. Dedicated to the subject matter and a little easy to take on tangents, but his passion shows. Very light work load, mostly covered in class. Read two books, write four papers, engage with the dialogue, and you'll do fine. Just don't tell him he's wrong.", + "pos": 0.229, + "neu": 0.712, + "neg": 0.059, + "_id": { + "$oid": "6711d761cd60fca157e602d3" + } + }, + { + "text": "He has the biggest ego and uses Turn-It-In to check your essay for plagiarism, which is not even reliable. He is rude and disrespectful in his emails. If you try to reason with him, he will not hear you out because he has already made his own decision. He is the worst professor I have ever had, and I have had pretty bad ones. He is hell. BEWARE!", + "pos": 0.039, + "neu": 0.771, + "neg": 0.19, + "_id": { + "$oid": "6711d761cd60fca157e602d4" + } + }, + { + "text": "Honed my academic and writing style/skills over the duration of his classes and became aware of where I need work. His classes prepared me for grad school. Encourages exploration of a topic and makes philosophy digestible. I recommend Indian, Buddhist, Chinese, Ethics, and AI. AI was incredibly fun and fascinating.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602d5" + } + }, + { + "text": "Prof. Marinoff is a great lecturer. However, his class is TOUGH. It is graded by three essays (1500+ words) for 33% each. I feel like he treats this class like it is a 400's level class. For an intro class it was extremely difficult. When you're new to the subject like me, having 1500 word essays is tough when you barely understand the material.", + "pos": 0.154, + "neu": 0.759, + "neg": 0.087, + "_id": { + "$oid": "6711d761cd60fca157e602d6" + } + }, + { + "text": "He is pretty much a tough grader, has very high expectations of writing. And u need to spend a lot of time with his essays but good thing is no exams for his class. Office hours are not at all useful. Mess up the essay? Thats it, no going back", + "pos": 0.096, + "neu": 0.692, + "neg": 0.213, + "_id": { + "$oid": "6711d761cd60fca157e602d7" + } + }, + { + "text": "This class wasn't bad it's just that it's based on 3 essays which are 30% each. So basically you have to do exceptionally well on all 3 to get a A in the class. The material is very interesting though.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d761cd60fca157e602d8" + } + }, + { + "text": "Getting an A is not extremely difficult. No matter how hard you try on the essays, he will grade the harshly and will not even give you a chance to revise. He does not even read drafts!!!", + "pos": 0.126, + "neu": 0.778, + "neg": 0.096, + "_id": { + "$oid": "6711d761cd60fca157e602d9" + } + }, + { + "text": "No final! Just three essays and you have to participate. Each essay is 30% and participation is 10%. He clearly explains what he wants, and there are multiple topics to choose from. You can even request your own! He is really nice, accessible outside of class.", + "pos": 0.124, + "neu": 0.834, + "neg": 0.043, + "_id": { + "$oid": "6711d761cd60fca157e602da" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d762cd60fca157e602dc" + }, + "professor_name": "Mark Pezzano", + "rating": 3.3, + "department": "Biology department", + "comments": [ + { + "text": "I LOVE THIS MAN! Very nice and generous. Class is 3 exams + final that are on blackboard but in person and he drops the lowest one. Choose lab section carefully", + "pos": 0.241, + "neu": 0.671, + "neg": 0.088, + "_id": { + "$oid": "6711d762cd60fca157e602dd" + } + }, + { + "text": "229 is very lecture heavy so pay attention to that and the slides. Do the practice exams. He drops the lowest one. Very straightforward professor", + "pos": 0.0, + "neu": 0.837, + "neg": 0.163, + "_id": { + "$oid": "6711d762cd60fca157e602de" + } + }, + { + "text": "Immunology was most def an extremely difficult course. Midterm was 51 questions primarily short response like one word answers. The final was the same but 72 questions. People were not lying when they said this course was really difficult but I am happy I took this course.", + "pos": 0.18, + "neu": 0.724, + "neg": 0.096, + "_id": { + "$oid": "6711d762cd60fca157e602df" + } + }, + { + "text": "Take him! He is a great professor.", + "pos": 0.423, + "neu": 0.577, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602e0" + } + }, + { + "text": "Pezzano is a sweet professor. He drops one exam out of 3 and there's a final. His exams can be long, often 70-80 questions within 2 hours. His lectures can also be slightly boring. However, you can do great in the class by reading the PowerPoints and doing his study guides. Lab is also tedious but manageable.", + "pos": 0.076, + "neu": 0.899, + "neg": 0.025, + "_id": { + "$oid": "6711d762cd60fca157e602e1" + } + }, + { + "text": "Amazing professor, but this class had me hyperventilating. Hardest class I took in my 4 years at ccny. I don't blame pezzano tho, I blame immunology. Weekly quizzes, one paper, midterm, final, and non-cumulative. Pezzano actually teaches, he's smart, and his lectures are detailed. Exams are tough, but fair. Don't take with other hard classes.", + "pos": 0.174, + "neu": 0.728, + "neg": 0.098, + "_id": { + "$oid": "6711d762cd60fca157e602e2" + } + }, + { + "text": "Good clear lectures. Lots of reading. Quiz and test questions are fair and straightforward from the reading and lectures.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602e3" + } + }, + { + "text": "He's really nice and will always work with you if you do not understand something. His exams are super long, and sometimes his reviews don't really coincide to what he asks on his exams. He uses various sources for his lecture (his own lab data sometimes) so it's important to PAY ATTENTION and TAKE NOTES. Definitely hard but interesting too!", + "pos": 0.174, + "neu": 0.785, + "neg": 0.041, + "_id": { + "$oid": "6711d762cd60fca157e602e4" + } + }, + { + "text": "Gives study guide questions for 1st exam, just memorize the entire thing. second exam, memorize study guide questions and look through testbanks from different edition. Third and final exam were from testbanks using different 8+9 editions. some questions are made by him, so look at the slides when studying. it's pretty easy, just memorize well", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602e5" + } + }, + { + "text": "About 70% ish of questions were from textbook test bank (3rd ed), which were overly specific so you are better off not reading the book and just memorize answers. Other 30% ish were his own questions based on lecture slides, you can tell because they all have consistent typos on the same set of words, on every question. Cool guy but bad exams", + "pos": 0.054, + "neu": 0.876, + "neg": 0.069, + "_id": { + "$oid": "6711d762cd60fca157e602e6" + } + }, + { + "text": "He did give practice problems, but stopped after exam 2. Later exams had more questions, 100-130 questions in 70 min, so either use test banks or be punished for actually reading the dense book. His questions (1 in e1, 35 on final, huge variance) had insane typos like \"relesing\". Be prepared to memorize test banks, then learn 229 properly later", + "pos": 0.117, + "neu": 0.723, + "neg": 0.16, + "_id": { + "$oid": "6711d762cd60fca157e602e7" + } + }, + { + "text": "Great professor. Presents the material clearly and gives lots of examples from his own research. He gives study guides that are VERY helpful before exams.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602e8" + } + }, + { + "text": "Amazing professor. He knows a lot about immunology and takes great effort to teach the subject. Reading the textbook gives great background information, but you have to study his slides and pay attention in class. It was 3hrs once a week, so self study was important. Very open and friendly during office hours. Exams were long and detail heavy.", + "pos": 0.209, + "neu": 0.768, + "neg": 0.023, + "_id": { + "$oid": "6711d762cd60fca157e602e9" + } + }, + { + "text": "This is one of the most difficult class I have ever taken. Grade only based on midterm, final, and paper. He is clearly very knowledgeable and passionate about immunology. He tends to talk really fast. Make sure to take notes on the PPT, and record his lectures. Unlike BIO 229 you cannot ace the class with study guide alone, you have to STUDY.", + "pos": 0.124, + "neu": 0.809, + "neg": 0.067, + "_id": { + "$oid": "6711d762cd60fca157e602ea" + } + }, + { + "text": "He is a knowledgeable professor and has a lot to add to the textbook. Focus on the questions on his study guides. Go over his lectures slides, because there are some problems on the exams that are not on the study guides. His exams are fair but long, so you have to write fast. He drops your worst exam. You can do well by putting in efforts.", + "pos": 0.057, + "neu": 0.842, + "neg": 0.1, + "_id": { + "$oid": "6711d762cd60fca157e602eb" + } + }, + { + "text": "Pezzano is a smart guy (although he legit reads off the slides most lectures). The lectures are mostly figures so you have to actually listen and write down what he say. The exams are long(short answer) and the answers are very picky! !(you need the right key words) My advice is to write whatever you know about the question and hope for the best.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602ec" + } + }, + { + "text": "one of the best at CCNY-will spend lots of time if you go to his office", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602ed" + } + }, + { + "text": "Required class for all biology majors at CCNY, the material is TOUGH and there was a lot of reading , we finished the whole book plus two more chapters from another book. Despite the tough material and loads of reading Pezzano is the absolute best professor to take for this class. He's clear and lets you know what he expects. P.S. He talks fast!", + "pos": 0.12, + "neu": 0.849, + "neg": 0.032, + "_id": { + "$oid": "6711d762cd60fca157e602ee" + } + }, + { + "text": "He doesn't actually teach. He merely talks a mile a minute, like a recorder on fast-forward. Do you expect to learn from that? Can anyone truly expect you to learn from that? No, unless they're fooling themselves. It's up to you to teach yourself, so you don't end up being a seat filler and at worst struggling with the material. Hang in there.", + "pos": 0.074, + "neu": 0.791, + "neg": 0.136, + "_id": { + "$oid": "6711d762cd60fca157e602ef" + } + }, + { + "text": "If you are interested in Bio take his class. He is passionate about biology so if you need help in truely understanding concepts he will take the time help you understand and learn. If you are just looking for an easy \"A\" go somewhere else.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602f0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d762cd60fca157e602f2" + }, + "professor_name": "Johnnie Wilder", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "Johnnie Wilder is a great professor and very helpful. I took his class in the spring semester, and it was easy. As long as you attend lectures regularly and do your best on the midterm and final, you should do well. He offers optional extra credit opportunities. Overall, I had a good experience and would recommend taking his course!", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602f3" + } + }, + { + "text": "He is one of the most chill profs on campus. All the hw and Exams are online and he does a review before each main exam which shows up in the midterm and final. I Would suggest taking him for USSO 100%. If you are absent just shoot him an email and you will be excused.", + "pos": 0.0, + "neu": 0.958, + "neg": 0.042, + "_id": { + "$oid": "6711d762cd60fca157e602f4" + } + }, + { + "text": "The best professor anyone could ever have. Very respectful and funny. Easiest A you will ever get!", + "pos": 0.514, + "neu": 0.486, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602f5" + } + }, + { + "text": "My first semester and I was so surprised that there was such a chill teacher. Honestly nothing bad to say about him. Amazing with everything from homework to exams. 10/10. Would recommend for an easy A", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602f6" + } + }, + { + "text": "Having Prof. Wilder felt like a FEVER DREAM. He's very enthusiastic about topics and loves to go off topic so be prepared to learn when to zone out and when to pay attention. He gives one exam per month, a midterm, and a final. He also gave one paper during the year. His exams are all online and just tries to teach you. Very fun, would recommend it", + "pos": 0.255, + "neu": 0.728, + "neg": 0.017, + "_id": { + "$oid": "6711d762cd60fca157e602f7" + } + }, + { + "text": "Take it for an easy A+. His lecture is funny and interesting. All quiz and midterm final is online tests, very easy overall. Only one essay that you can write any topic, it's the end of semester and having his class is so stress relief. No matter if you like history or not, this is pretty much guaranteed an A.", + "pos": 0.247, + "neu": 0.657, + "neg": 0.096, + "_id": { + "$oid": "6711d762cd60fca157e602f8" + } + }, + { + "text": "Professor Wilder is a professor who deserves respect. His knowledge of the material is unparalleled, you are sure to learn a lot from Professor Wilder. If you have the opportunity to take Prehistory with Professor Wilder, please do so! I only found out about amazing texts such as the 'Book of Ecclesiastes' through this course, it's definitely a joy", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602f9" + } + }, + { + "text": "You may not like his teaching style, but this class is definitely an Easy A. Little homework, no pressure. Just a few super easy tests, and you get an A.", + "pos": 0.416, + "neu": 0.517, + "neg": 0.067, + "_id": { + "$oid": "6711d762cd60fca157e602fa" + } + }, + { + "text": "This class was super easy. You can tell the professor is passionate about what he teaches. The class is very lenient and you don't have to do much so definitely an easy A. Only downside was that I found this class pretty boring and everything we learned is from google. But I would still recommend this class. It doesn't put too much stress on you.", + "pos": 0.228, + "neu": 0.685, + "neg": 0.087, + "_id": { + "$oid": "6711d762cd60fca157e602fb" + } + }, + { + "text": "Professor Wilder is such a sweet soul. He honestly wants his students to well in this class and he gave us tons of opportunities to do well in his class. He tons of extra credit assignments. He has no slides so make sure you pay attention while he speaks. He's a very knowledgeable man but yes def do take him.", + "pos": 0.233, + "neu": 0.726, + "neg": 0.041, + "_id": { + "$oid": "6711d762cd60fca157e602fc" + } + }, + { + "text": "He is such a nice professor and understanding. Take himmm", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e602fd" + } + }, + { + "text": "I took his summer course, but I have no participation credit, Midterm failed, and final got a C-. but my grade is still A. 4 weekly reports for the whole semester, one midterm, and one final exam. He is really trying to make every student taking the course get a better grade, so choose him if you want an easy A!", + "pos": 0.123, + "neu": 0.739, + "neg": 0.139, + "_id": { + "$oid": "6711d762cd60fca157e602fe" + } + }, + { + "text": "Would absolutely never take again he would spend most of the class going off topic and not even talking about what the class is and if you don't take notes you're screwed. During our midterm review he kept mocking students who got certain answers wrong like\"How in the world could you pick C, its dumb\". like this is only easy for you sir not us.", + "pos": 0.096, + "neu": 0.746, + "neg": 0.158, + "_id": { + "$oid": "6711d762cd60fca157e602ff" + } + }, + { + "text": "About 3 hw assignments which were to just watch videos and answer couple questions. 2 Quizzes. really easy, he does give a lot of questions tho. 1 essay which was about Star Trek, so truly outside the course. Besides that, he does talk a lot and sometimes off topic but if you don't attend for notes and definitions, you will be lost for the final.", + "pos": 0.064, + "neu": 0.893, + "neg": 0.042, + "_id": { + "$oid": "6711d762cd60fca157e60300" + } + }, + { + "text": "Prof Wilder is a true gem; I took his class years ago, and I still think back on his kindness even now. CCNY needs more professors like him, who are not just highly knowledgeable in their fields, but also know how to treat students with respect and dignity. A true honor to have been taught by him.", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e60301" + } + }, + { + "text": "This class was interesting to take and was pretty chill for the most part. Theres only a quiz, a midterm, an essay and an extra credit assignment. Just dont plagiarize and cheat because he is very adamant about that.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e60302" + } + }, + { + "text": "His class is very interesting and he is very knowledgeable. Don't plagiarize! and don't cheat!! His assignments are easy just submit them! He doesn't post grades on BB, but he emails you your grade. I recommend his class.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e60303" + } + }, + { + "text": "He's a very sweet man, the reason why some ppl rated him low is bc he's not so good at using electronics so some people wouldn't receive grades etc. but I never had any of this happen to me. He's a light grader and he gives little work. DO NOT PLAGIARIZE. He will lecture the class but this is because he cares about you. Very wise and understanding.", + "pos": 0.139, + "neu": 0.815, + "neg": 0.046, + "_id": { + "$oid": "6711d762cd60fca157e60304" + } + }, + { + "text": "Don't plagiarize in his class you would get a lecture. Use quotes and cite.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e60305" + } + }, + { + "text": "He is not a bad professor just do his work and attend class. He's not very organized but just email him and find out what you need to do.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d762cd60fca157e60306" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d763cd60fca157e60308" + }, + "professor_name": "Strashimir Popvassilev", + "rating": 3.2, + "department": "Mathematics department", + "comments": [ + { + "text": "He is lazy, but he's a good guy. He gave exams late and gave back grades at last minute, but he curved at the end. You won't fail his class unless you do really bad.", + "pos": 0.167, + "neu": 0.68, + "neg": 0.152, + "_id": { + "$oid": "6711d763cd60fca157e60309" + } + }, + { + "text": "First exam was given when semester was halfway done. Didn't gave back the grade for first exam until few days before semester ends. Didn't upload any HW grades. His writing on board is messy and all over. He came late to class a few times. Grades are based on hw, exams, and practice exams. Practice exams are mandatory.", + "pos": 0.022, + "neu": 0.936, + "neg": 0.042, + "_id": { + "$oid": "6711d763cd60fca157e6030a" + } + }, + { + "text": "Good professor in terms of teaching content however he is slow. Didn't assign any homework's and had online exams cause we were very behind in terms of content. Exams weren't bad in terms of difficulty. Go to office hours and ask questions during class or he won't care.", + "pos": 0.105, + "neu": 0.803, + "neg": 0.092, + "_id": { + "$oid": "6711d763cd60fca157e6030b" + } + }, + { + "text": "15% Quizzes | 45% Exams (top 2 from 4) 40% Department Final Exam | I found his lectures informational and I understood the content better. Slow lecturer though since he gave us online midterms (3) as we didn't have enough time. Tough grader, but go to office hours if needed. Dept final always is messy but he tries his best to teach the content.", + "pos": 0.126, + "neu": 0.812, + "neg": 0.062, + "_id": { + "$oid": "6711d763cd60fca157e6030c" + } + }, + { + "text": "He was not a bad professor but was a bit slow when it came to teaching. We did not finish the entire course in time and he gave two exams online just so he had time to teach the material.. Grades are based on 2 (of 3) exams and the final. Attendance is not mandatory and the professor basically follows along the textbook. He is funny sometimes...", + "pos": 0.081, + "neu": 0.9, + "neg": 0.019, + "_id": { + "$oid": "6711d763cd60fca157e6030d" + } + }, + { + "text": "didnt learn a single thing in class. not great at presenting the content. thankfully he doesnt take attendance so i stopped going. thankfully ccny offers math tutoring so i went there all the time and that was how i learned everything. popvassilev was not rude just neutral. content same as 10th grade. 3 midterms 1 final. hw optional/ good practice", + "pos": 0.156, + "neu": 0.766, + "neg": 0.078, + "_id": { + "$oid": "6711d763cd60fca157e6030e" + } + }, + { + "text": "He is an legend, don't know why his rating is so low. He puts pictures of the board on blackboard. Records our class session and posts it on blackboard. He shows all steps so that you never get confused. He gives us a sample test before we take any tests. He really teaches you the basics of Calculus and the tests are very easy if you study.", + "pos": 0.072, + "neu": 0.89, + "neg": 0.038, + "_id": { + "$oid": "6711d763cd60fca157e6030f" + } + }, + { + "text": "For this class be prepared to self study. The final is nothing like the exams given throughout the semester. The sample final given by the math department is a perfect example of the final.", + "pos": 0.145, + "neu": 0.801, + "neg": 0.055, + "_id": { + "$oid": "6711d763cd60fca157e60310" + } + }, + { + "text": "He wasn't a bad teacher, just a bit difficult to understand due to his mask and accent. He spoke very low and sometimes would be confused by what he taught. He is a very nice person and funny too, but I didn't like taking his class. I was juggling a lot at the time of taking his class so he was very sympathetic but that didn't change his grading", + "pos": 0.136, + "neu": 0.767, + "neg": 0.098, + "_id": { + "$oid": "6711d763cd60fca157e60311" + } + }, + { + "text": "Take if you have a strong background in math. He knows what he's talking about, but he's soft-spoken. Nice handwriting on chalkboard and uploads lecture pics to Blackboard. He reads the textbook from his phone while teaching. Tests do not prepare you for the final exam. If you don't have a strong background in math, get ready to self-study a ton.", + "pos": 0.131, + "neu": 0.818, + "neg": 0.051, + "_id": { + "$oid": "6711d763cd60fca157e60312" + } + }, + { + "text": "BEST PROFESSOR I EVER TOOK BACK IN THE SPRING 2021 SEMESTER! I LOVED HIM! HE ALWAYS EXAMS WITH MULTIPLE ATTEMPTS! SO WHATEVER ATTEMPTS HE GIVES YOU ON EXAMS, WHATEVER ATTEMPT HAS THE HIGHEST GRADE GETS COUNTED. THE FINAL WAS ALSO AMAZING. I WISH ALL MY OTHER CLASSES WERE LIKE THAT. TOO BAD IN REALITY, IT DOESN'T WORK LIKE THAT.", + "pos": 0.269, + "neu": 0.646, + "neg": 0.086, + "_id": { + "$oid": "6711d763cd60fca157e60313" + } + }, + { + "text": "Honestly, the subject is hard so you have to put in your own effort too. He taught off writing on a paper so it got a little messy but he knew what he was talking about. He extended the hw a lot and would let you make up what you missed. Hes alright", + "pos": 0.061, + "neu": 0.841, + "neg": 0.098, + "_id": { + "$oid": "6711d763cd60fca157e60314" + } + }, + { + "text": "Garbage professor. I'm a bio major and I don't hate math, but I also don't love it. I'm now taking calc II and it is a nightmare. He doesn't take the time to explain the concepts behind the why we're doing this math. He just goes through the book which I can do myself. 100s on all his exams and quizzes, 58 on dep. final. Left me with a B-. Avoid.", + "pos": 0.026, + "neu": 0.879, + "neg": 0.095, + "_id": { + "$oid": "6711d763cd60fca157e60315" + } + }, + { + "text": "Don't really see what the big deal is, he's very accommodating and if you do the homework and ask him questions you will pass. There is nothing wrong with him teaching directly from the textbook because webassign will fill in the gaps. If you're not a good test taker the quizzes will save you. Only complaint is he's hard to reach outside of class.", + "pos": 0.097, + "neu": 0.819, + "neg": 0.085, + "_id": { + "$oid": "6711d763cd60fca157e60316" + } + }, + { + "text": "Basically you have to teach yourself, he takes notes he wrote from a previous class and expects you follow along. He's funny and nice but it was difficult to follow so you have to teach yourself pretty much and expect a quiz once a week and on some weeks both classes will be followed by a quiz.", + "pos": 0.127, + "neu": 0.823, + "neg": 0.05, + "_id": { + "$oid": "6711d763cd60fca157e60317" + } + }, + { + "text": "Popvassilev is an okay Professor. If you did not take MATH 190 then I dont recommend you taking him for MATH 195. I took 190 and the content for 195 is the same so I self taught myself. He teaches but its not the best and he goes very slow. However, he gives extra credit. I still dont recommend you take him unless you're good in math", + "pos": 0.111, + "neu": 0.777, + "neg": 0.112, + "_id": { + "$oid": "6711d763cd60fca157e60318" + } + }, + { + "text": "Some perspective, i got the highest grade in the class. I am the only one that got an A- and I did everything nearly perfect. His quizzes are 40% of the grade, so one bad quiz will lower your grade one tier, only 3 quizzes. Stands up at blackboard with textbook in hand reading word for word. This is a self taught class You will know more than him", + "pos": 0.089, + "neu": 0.835, + "neg": 0.077, + "_id": { + "$oid": "6711d763cd60fca157e60319" + } + }, + { + "text": "He doesn't know what he's teaching, and to be more specific, he did not even know how to do long division. The class was lost most of the time. He was late for every class. If you take this class, you'll be teaching yourself. Study a lot from the textbook, that's what helped me.", + "pos": 0.0, + "neu": 0.958, + "neg": 0.042, + "_id": { + "$oid": "6711d763cd60fca157e6031a" + } + }, + { + "text": "If you need math to be explained well to understand it, don't take him. I did well in this class in HS but here he just confused everyone in the class and fumbled his way through the book to find some problems to do. Self-study! HW assignments are too easy compared to the final. He just tells you to look at previous finals. Brought down 4.0 GPA.", + "pos": 0.096, + "neu": 0.819, + "neg": 0.086, + "_id": { + "$oid": "6711d763cd60fca157e6031b" + } + }, + { + "text": "He is consistently late to give lectures anywhere from 15-45 mins almost every time. If you don't teach yourself you will get nothing from the class only a bunch of practice problems or proofs that won't help with taking the midterm or finals.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d763cd60fca157e6031c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d763cd60fca157e6031e" + }, + "professor_name": "Jane Gallagher", + "rating": 2.4, + "department": "Biology department", + "comments": [ + { + "text": "If you can avoid this course, avoid. I don't know what it is about the science department but they don't want you to pass. The quizzes \"prepare\" you for the exam, just by being repeated on the exams. Exam questions require you to break your head, and solve a murder mystery. You'll study and the answers will be in Latin. Don't bother trying for an A", + "pos": 0.063, + "neu": 0.791, + "neg": 0.146, + "_id": { + "$oid": "6711d763cd60fca157e6031f" + } + }, + { + "text": "Everyone may say that she is rude, but in reality she is very funny. She is actually very interesting and her class is not as hard.", + "pos": 0.288, + "neu": 0.652, + "neg": 0.059, + "_id": { + "$oid": "6711d763cd60fca157e60320" + } + }, + { + "text": "Excellent lecturer, stays on topic, and relates class content to science/health. She goes over all the material on exams in class. Her communication style is very direct, as long as you pay attention in class and dont talk or text youll do well. Not an easy A but you will learn a lot.", + "pos": 0.07, + "neu": 0.878, + "neg": 0.052, + "_id": { + "$oid": "6711d763cd60fca157e60321" + } + }, + { + "text": "This course sucks and her lectures are so boring. You're going to have 3 (20 q)quizzes and(50q) 3 test. The quizzes don't help at all but will be on the main test. Also, a final. The lab is so boring 2 hours straight talking about anything. I would recommend to take another professor for bio and save your GPA.", + "pos": 0.139, + "neu": 0.73, + "neg": 0.131, + "_id": { + "$oid": "6711d763cd60fca157e60322" + } + }, + { + "text": "She is very rude do not take her.", + "pos": 0.0, + "neu": 0.68, + "neg": 0.32, + "_id": { + "$oid": "6711d763cd60fca157e60323" + } + }, + { + "text": "Didn't enjoy her class at all, she's extremely rude.", + "pos": 0.0, + "neu": 0.542, + "neg": 0.458, + "_id": { + "$oid": "6711d763cd60fca157e60324" + } + }, + { + "text": "Class is ok, not so hard. She is rude.", + "pos": 0.141, + "neu": 0.601, + "neg": 0.258, + "_id": { + "$oid": "6711d763cd60fca157e60325" + } + }, + { + "text": "Avoid at all cost. Please help petition to have her dismissed from the college.", + "pos": 0.275, + "neu": 0.604, + "neg": 0.121, + "_id": { + "$oid": "6711d763cd60fca157e60326" + } + }, + { + "text": "She honestly isn't that bad at all. All you have to do is read the textbook and do the online hw n u'll pass her exams. She covers the material really fast in class so it's hard to take notes in class, but some kids take pics of her slides to study from. If u do good in lab n read the textbook ur sure to pass.", + "pos": 0.145, + "neu": 0.837, + "neg": 0.018, + "_id": { + "$oid": "6711d763cd60fca157e60327" + } + }, + { + "text": "Honestly, Gallagher class is really easy if you just STUDY the textbook!!! Her tests are are based on it & take pic of her slides it helps u study! Do good on the first exam & do the online stuff its 10% helps in end. She drops the lowest test grade doesnt tell u but shows she cares. Go to lecture & do good in lab you should get an A.", + "pos": 0.224, + "neu": 0.755, + "neg": 0.022, + "_id": { + "$oid": "6711d763cd60fca157e60328" + } + }, + { + "text": "Avoid at all cost .. Very pleasant and funny during class but its all a front because the minute class is over she is super rude! Had to ace the final for a B+ .. She switches up her exam format every semester and by far the ones with multi choice are super tricky and difficult Most exams come from lecture and a little bit of vocab from the book ..", + "pos": 0.174, + "neu": 0.712, + "neg": 0.115, + "_id": { + "$oid": "6711d763cd60fca157e60329" + } + }, + { + "text": "Atten is not mandatory but if u go she will take in2 account and if ur on boarder w/ A & B+ or b c+ she will give u higher She is ok must read TB to do well have 3 tests, 1st T is the easiest only on 4 chaps so make sure you do well b/c test 2&3 have 11 chapters on each. Lab is unorganized theres a lot of work at the end of semes with lab reports.", + "pos": 0.166, + "neu": 0.822, + "neg": 0.012, + "_id": { + "$oid": "6711d763cd60fca157e6032a" + } + }, + { + "text": "Well spoken, funny and awesome professor.", + "pos": 0.752, + "neu": 0.248, + "neg": 0.0, + "_id": { + "$oid": "6711d763cd60fca157e6032b" + } + }, + { + "text": "Lectures are boring, she will be rude but very leniant on exams, she drops the lowest grade and her exams are 80% the quiz questions so memorize and really understand the quiz questions and you'll do well. Tests are MC", + "pos": 0.058, + "neu": 0.788, + "neg": 0.154, + "_id": { + "$oid": "6711d763cd60fca157e6032c" + } + }, + { + "text": "Pretty good professor, just have to work for your A! Makes lecture fun with interesting videos and real life stories. Always there if you need help outside of class. Just make sure to read the textbook and do the quizzes, quiz questions appear on the test! If you have Guti\u00e9rrez for lab you will enjoy this course! He's an amazing lab professor!", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d763cd60fca157e6032d" + } + }, + { + "text": "Just work hard and read the textbook, you will get an A. And she drops one test grade she doesnt tell you.", + "pos": 0.0, + "neu": 0.938, + "neg": 0.062, + "_id": { + "$oid": "6711d763cd60fca157e6032e" + } + }, + { + "text": "Not a bad professor. Her exams are fair, you just have to study. She doesn't rely on textbooks but I would recommend attending class and paying attention to everything she writes on the board.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d763cd60fca157e6032f" + } + }, + { + "text": "I took her in 2009.she wasn't the best prof but not the worst either. She was helpful gives online quizzes that helps you at the end. Ppl complain because they don't read bio is all about reading on your own. i went to class 3 times and still did well in all my tests 92 on the final and ended up getting an A in the class! STUDY AND YOU'LL BE FINE!", + "pos": 0.204, + "neu": 0.734, + "neg": 0.061, + "_id": { + "$oid": "6711d763cd60fca157e60330" + } + }, + { + "text": "Her lectures seem all over the place. she writes random words on board. Big on knowing definitions of words. Exams are very vague, so grading is very subjective. Readings were rarely incorporated into exams. She's a fair grader, slightly on the difficult side. Gives partial credit. 2 exams 1 final. does NOT drop any grade.", + "pos": 0.111, + "neu": 0.824, + "neg": 0.065, + "_id": { + "$oid": "6711d763cd60fca157e60331" + } + }, + { + "text": "She knows her stuff, but she rushes through everything. She doesn't care for her students. She would give quizzes and Exams all at once.", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d763cd60fca157e60332" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d764cd60fca157e60334" + }, + "professor_name": "Martin Saldarriaga", + "rating": 4.8, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Prof. Saldarriaga truly cares for his students by preparing us for future courses. Beyond doing the assigned homework, he encourages students to test their understanding with new, challenging, and unfamiliar problems. Although his exams can seem tricky, he wants you to deepen your understanding and grow as a student. Overall, I recommend him.", + "pos": 0.204, + "neu": 0.728, + "neg": 0.068, + "_id": { + "$oid": "6711d764cd60fca157e60335" + } + }, + { + "text": "Prof. Martin is good at teaching, very clear about what to expect in the exams. So make sure to do the HW, and practice concepts. You cannot succeed in this class without studying. His exams can be tricky so be aware. But you can tell he really wants you to understand and succeed. Overall, I respect him as a professor and even more so as a person", + "pos": 0.183, + "neu": 0.777, + "neg": 0.04, + "_id": { + "$oid": "6711d764cd60fca157e60336" + } + }, + { + "text": "I greatly valued the professor's talent for teaching and motivating students to learn. In addition to covering the course material, he provides numerous real-life examples of how the concepts will be applied. His guidance also extends to preparing students for the demands they will face as future engineers.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60337" + } + }, + { + "text": "Professor clearly conveys the topics needed to succeed in Statics and lays a solid foundation for people taking Deforms. Homework's are long and there are quizzes every week, but it's only for your benefit since it helps you learn the material every single week instead of just cramming the night before a test. I wish he taught more CE classes", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60338" + } + }, + { + "text": "Professor Martin was very good teaching, and very clear explaining the subjects. Do all your assignments, that's going to help you with the quizzes and exams. If you are not clear with something, use your office hours, do not be shine with it. Most important, read the notes that he post on blackboard, it is important to prepare you for the exams", + "pos": 0.179, + "neu": 0.79, + "neg": 0.031, + "_id": { + "$oid": "6711d764cd60fca157e60339" + } + }, + { + "text": "What an amazing professor, a rarity in the 21st century not only a teacher but a guide who puts all his knowledge easily and understandably (considering the fact, that the Statics is not an easy subject). He is always ready and happy to help. Do you need a static class? i recommend Professor Saldarriaga 100%.", + "pos": 0.273, + "neu": 0.683, + "neg": 0.044, + "_id": { + "$oid": "6711d764cd60fca157e6033a" + } + }, + { + "text": "If you can, definitely take Martin. He is one of the few who worries about you learning and understanding the material. The course is hard and his test makes you think a lot. But at the end of the day, if you show him you understand you can pass. Do the homework as these are great practice for the tests and don't be afraid of asking him questions.", + "pos": 0.101, + "neu": 0.858, + "neg": 0.042, + "_id": { + "$oid": "6711d764cd60fca157e6033b" + } + }, + { + "text": "Great professor. Wants you to learn the content so you do better in deforms.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6033c" + } + }, + { + "text": "Arguably the most caring and passionate professor I've had in my college experience thus far. He truly does care whether or not you are performing well, and what you can do to become better. Don't be afraid to ask for advice/help, and ASK questions! If you truly want to LEARN the material of statics... Martin is your go to answer.", + "pos": 0.3, + "neu": 0.673, + "neg": 0.026, + "_id": { + "$oid": "6711d764cd60fca157e6033d" + } + }, + { + "text": "This class changed the way I go about studying. The professor lectures are amazing but you must do a lot of studying on your own. Do the homework on your own and never leave anything without understanding it. Would definitely take him again", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6033e" + } + }, + { + "text": "Great professor but the class itself is difficult", + "pos": 0.216, + "neu": 0.508, + "neg": 0.275, + "_id": { + "$oid": "6711d764cd60fca157e6033f" + } + }, + { + "text": "Professor Saldarriaga is one of the best professor I had so far. He has a knack for explaining complex material with such clarity and he gives great advice. Make sure you do the homework and ask him any questions you have. Don't listen to anybody body telling you statics is hard because,it's not. Do your homework, focus in class and an work hard!!", + "pos": 0.188, + "neu": 0.774, + "neg": 0.038, + "_id": { + "$oid": "6711d764cd60fca157e60340" + } + }, + { + "text": "Prof. Saldarriaga gives an amazing lectures, and explains everything very clear. There is a lot of Homework, but it is only for your benefit. Class have quizzes. Tests are challenging, but there is nothing new on it, so make sure you understand the material. He is very open and helping you as much as he can. Best professor so far.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60341" + } + }, + { + "text": "100% the best Engineering professor I have taken thus far. He really knows how to explain the concepts and always connects the material to real life applications. If you do well on homework and quizzes, you should have a good chance at the tests. Awesome professor!", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60342" + } + }, + { + "text": "One of the best professors if not the best professors in the civil department. Statics is hard so be ready to study. Tests are very similar to homework. A great professor who is always accessible outside of class.", + "pos": 0.227, + "neu": 0.676, + "neg": 0.098, + "_id": { + "$oid": "6711d764cd60fca157e60343" + } + }, + { + "text": "Try to do well on the hw and join every recitation. Pay attention to the lecture.", + "pos": 0.23, + "neu": 0.695, + "neg": 0.075, + "_id": { + "$oid": "6711d764cd60fca157e60344" + } + }, + { + "text": "It was an absolute pleasure studying from Professor Saldarriaga. Statics was a hard class but the Prof. made it possible for me to gain a lot of knowledge while passing the course. Strongly recommend taking him as a professor.", + "pos": 0.267, + "neu": 0.708, + "neg": 0.025, + "_id": { + "$oid": "6711d764cd60fca157e60345" + } + }, + { + "text": "Professor Martin is always willing to go above and beyond to help his students understand the material. He is patient and thorough in his explanations, and is always available to answer questions. The coursework can be difficult at times, so be prepared to spend a good amount of time on practice problems.", + "pos": 0.13, + "neu": 0.784, + "neg": 0.087, + "_id": { + "$oid": "6711d764cd60fca157e60346" + } + }, + { + "text": "The professor is intelligent, he understands the material very well so it is easier for him to explain. Also has many strategies to make someone understanding the course.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60347" + } + }, + { + "text": "Professor Martin is one of the few engineering professors that care about his students. He teaches the material extremely well, focusing on concepts and understanding where these idea comes from instead of relying on memory. His homework is lengthy, but doing it will help you be prepared for his exams and future classes and extremely doable.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60348" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d764cd60fca157e6034a" + }, + "professor_name": "Robert Melara", + "rating": 4.6, + "department": "Psychology department", + "comments": [ + { + "text": "easy class. u have to pay $80 for the class for attendance and quiz software. His middle name is Bob, I think. So on RMP, Robert Melara and Bob Melara are the same person. Attendance is mandatory and is graded. He often has a class of over 100 students and sometimes reaching 800, most of whom are online.", + "pos": 0.098, + "neu": 0.879, + "neg": 0.023, + "_id": { + "$oid": "6711d764cd60fca157e6034b" + } + }, + { + "text": "He's so babygirl", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6034c" + } + }, + { + "text": "good professor relating to lectures, but your grade is mostly up to your TA, (if you have one). the 3 very important papers, short quizzes every class, and 3 tests make up most of your grade.", + "pos": 0.119, + "neu": 0.881, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6034d" + } + }, + { + "text": "Took him fall semester of 2023 for Psych 10200 and I loved his lectures. He manages to captivate the entire lecture hall of more than 60 kids. The workload is light, you'll only have several fun papers and tests which account for most of the grade but as long as you keep up with the work on time, you'll get a good grade. Definitely recommend him!", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6034e" + } + }, + { + "text": "His lectures are entertaining I would love to take his class again.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6034f" + } + }, + { + "text": "Bobert manages to teach a giant lecture hall + plus a zoom meeting with over 150 students simultaneously while keeping the lessons interesting & entertaining. Bobert presents everything in a easy to under to stand matter with no jargon.", + "pos": 0.21, + "neu": 0.742, + "neg": 0.048, + "_id": { + "$oid": "6711d764cd60fca157e60350" + } + }, + { + "text": "Awesome guy. Speaks a little fast but will slow down if requested. Very kind and sweet, funny old guy. Would take him again no doubt.", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60351" + } + }, + { + "text": "He's pretty chill\n\n- Lecture heavy: WRITE everything he does in your notes, because it'll be on the test + you need them for daily pop quizzes on iClicker. \n\n- There's 3 papers, the first 2 guide you, start them early! If you go to the writing center on time you get feedback + extra credit \n\n- Best way to reach out is by going to office hrs", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60352" + } + }, + { + "text": "Would take again", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60353" + } + }, + { + "text": "It was an easy class but the papers were pretty tough, definitely a good professor for psychology.", + "pos": 0.498, + "neu": 0.438, + "neg": 0.064, + "_id": { + "$oid": "6711d764cd60fca157e60354" + } + }, + { + "text": "Professor Melara is probably one my favorite Professors. His lectures are clear and youre able to participate. Beware of pop quizzes during lectures. It isnt hard. Make a Discord or WhatsApp group chat with some classmates because those papers are sometimes hard. Go to your recitation class. I would take this class again!!", + "pos": 0.126, + "neu": 0.806, + "neg": 0.069, + "_id": { + "$oid": "6711d764cd60fca157e60355" + } + }, + { + "text": "A few homework here and there. Papers weren't super hard it was clear grading criteria. He is so sweet and funny.", + "pos": 0.363, + "neu": 0.532, + "neg": 0.105, + "_id": { + "$oid": "6711d764cd60fca157e60356" + } + }, + { + "text": "Professor Melara is super funny and great at presenting the material needed for this class. Your grade for this class is mostly dependent on the \"Fun\" papers and tests. If you have a good TA, you'll end up with a high grade. Make sure to do the textbook readings if you want to understand what is happening.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60357" + } + }, + { + "text": "This class is an easy A+. So much extra credit (do them all if you want a very high average). 3 papers, 3 tests. I would retake this class if I could. He knows what he is doing, His lectures are clear and easy to understand. Highly recommend taking his class!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60358" + } + }, + { + "text": "I would definitely take this professor again. You'll learn a lot of things and although it is a lot of workload, you'll be able to manage it.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e60359" + } + }, + { + "text": "Definitely my favorite professor so far. He is very understanding and his lectures are very informative. He also offers extra credits to help boost your grade. The Papers he assigns are very easy as long as do what he asks for. The homework is also easy as long as you use the textbook. If you need to take Psychology 102, I would recommend him.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6035a" + } + }, + { + "text": "This man is the beat professor in the building", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6035b" + } + }, + { + "text": "Although you can tell he's a great person and tries to keep his students entertained, the work load for this class is slightly heavy. There's one homework assignment a week, but there are multiple papers - long and difficult. In my class, there were students in-person as well as online, we had TA's but the professor themself was very hard to reach.", + "pos": 0.123, + "neu": 0.801, + "neg": 0.076, + "_id": { + "$oid": "6711d764cd60fca157e6035c" + } + }, + { + "text": "This man is a straight up G. His lectures are superb, he gives you many opportunities to improve your grade (mastery model over the competitive model). If this is one of your first college courses, Bob's class is exactly what a good college experience should be. Really allows you every opportunity to learn and master the material. TAKE HIM. Trust", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6035d" + } + }, + { + "text": "He's the best psych professor ever. Don't hesitate. Just take him lol. There are 4 question quizzes based on the lecture everyday. There are 3 papers, 5 labs, 3 tests and homework weekly. Even though it may seem as a lot, they are reasonable and he drops a grade for a few of them. And extra credit is offered too. Really enjoyed taking him.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d764cd60fca157e6035e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d765cd60fca157e60360" + }, + "professor_name": "Ezekiel Finkelstein", + "rating": 2.6, + "department": "English department", + "comments": [ + { + "text": "This class was an easy A. This professor's workload is simple as long as you do what you need to do. At the end of the semester, you'll appreciate what he has taught you.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d765cd60fca157e60361" + } + }, + { + "text": "Goes off into tangents at the start of class and will barely have time left to actually teach. He assigns a reading each class and an essay (short) each week. He can be rude, though he thinks he's funny. Its not enough to work hard on your own, he expects you to frequently visit his office for help as if its an actual requirement for grade.", + "pos": 0.078, + "neu": 0.861, + "neg": 0.061, + "_id": { + "$oid": "6711d765cd60fca157e60362" + } + }, + { + "text": "One of the absolute WORST professors ever. I can't believe I sat through a whole semester without dropping. He can take up an hour talking about 1 page of a boook. He is so disorganized, gives so much readings, and doesn't help at all. He's judgemental, rude, and extremely unhelpful. I put so much effort into my papers & all went unnoticed.", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d765cd60fca157e60363" + } + }, + { + "text": "Let's get one thing out of the way.. he's not an easy A. I worked for my grade. But. he is indeed very knowledgeable and open to helping students become better writers. Not recommended for those that don't have the ability to write organized papers.", + "pos": 0.126, + "neu": 0.759, + "neg": 0.115, + "_id": { + "$oid": "6711d765cd60fca157e60364" + } + }, + { + "text": "It's true that some lectures and readings are interesting. But since he assigns A LOT of readings and very unclear writing assignments, the work isnt as productive as it should be. If u wanna hav time to study for more important classes, find a different prof!! but since they don't post the names until one week before, it all comes down to luck. GL", + "pos": 0.198, + "neu": 0.764, + "neg": 0.039, + "_id": { + "$oid": "6711d765cd60fca157e60365" + } + }, + { + "text": "This class is not an easy A. Professor F's workload will push you to points where you just want to quit and give up. However, at the end of the semester when you look back on everything you've done and all the knowledge you've gained, that is when you truly start to appreciate what he does. This man changed my life and my approach to schooling.", + "pos": 0.13, + "neu": 0.837, + "neg": 0.033, + "_id": { + "$oid": "6711d765cd60fca157e60366" + } + }, + { + "text": "He's a nice guy that cares about teaching his students. If you always do the readings he assigns, come to class on time and participate in class you should be fine. If you don't want to work hard don't take his class or go to College for that matter.", + "pos": 0.16, + "neu": 0.792, + "neg": 0.048, + "_id": { + "$oid": "6711d765cd60fca157e60367" + } + }, + { + "text": "If you are a student who is looking a for a easy A then this isnt the class for you. He will force you write and read ALOT and. I'm not the best writer so if I managed to earn a A- you can too. You might complain about him the first couple of weeks like I did but he will soon grow on you and you will learn a lot from him. Overall good teacher.", + "pos": 0.092, + "neu": 0.861, + "neg": 0.048, + "_id": { + "$oid": "6711d765cd60fca157e60368" + } + }, + { + "text": "You guys have no idea what you are talking about. This is the most amazing professor at City College, and he is truly smart and ambitious, and forced you to THINK. So if you don't want to use your brain and be a smart human being, stay away. The writing for engineers class changed my life and I am so grateful for that.", + "pos": 0.243, + "neu": 0.677, + "neg": 0.08, + "_id": { + "$oid": "6711d765cd60fca157e60369" + } + }, + { + "text": "Don't even try to take his class unless u want to destroy your GPA. :(", + "pos": 0.066, + "neu": 0.609, + "neg": 0.325, + "_id": { + "$oid": "6711d765cd60fca157e6036a" + } + }, + { + "text": "If accidentally u r in fenkielstein class , JUST drop it. Don't ever think one step further to remain in his class. If u drop it you will be safe with your GPA .", + "pos": 0.073, + "neu": 0.759, + "neg": 0.167, + "_id": { + "$oid": "6711d765cd60fca157e6036b" + } + }, + { + "text": "He gives a lot of work,but his lectures are interesting.He ask questions you may not have thought up of before.He helps students.He gives critic, he's not closed minded as people say, however he will also give reasons as to why he has a certain idea or reason to a certain topic. He points at my grammar, but he is more interested on what you write.", + "pos": 0.126, + "neu": 0.852, + "neg": 0.022, + "_id": { + "$oid": "6711d765cd60fca157e6036c" + } + }, + { + "text": "Drop at all costs. Will demean and ridicule you for disagreeing with him, without even hearing your reasons. While interesting, his readings have little, if anything, to do with technical writing, and would be better suited in an ethics class. Shockingly inarticulate, \"Yeah, like, you know what I mean\" will often be given in lieu of explanation.", + "pos": 0.15, + "neu": 0.715, + "neg": 0.134, + "_id": { + "$oid": "6711d765cd60fca157e6036d" + } + }, + { + "text": "If you are stuck with him, and have no option to drop this class, here are some helpful tips. Do whatever reading he assigns. Write down notes after every paragraph. You can't get away without doing his work. He always get back to the assigned reading over and over again. If you have him, you cant have a fun time. GoodLuck.", + "pos": 0.041, + "neu": 0.826, + "neg": 0.133, + "_id": { + "$oid": "6711d765cd60fca157e6036e" + } + }, + { + "text": "DROP HIM, as soon you know its Finkelstein. Assigns homework like crazy. Floods the blackboard with his nonsense after every class. I have over 80 credits and cGPA of 3.92. Trust me, he is one of the hardest. Does not teach technical writing required for engineering. Spits when he talks. Criticizes your homework badly.", + "pos": 0.123, + "neu": 0.679, + "neg": 0.198, + "_id": { + "$oid": "6711d765cd60fca157e6036f" + } + }, + { + "text": "If you're an Engineer looking to improve your technical writing skills, you're going to have a hard time. He would probably make a good philosophy or literature professor, but not for this class. He's unorganized, and stubbornly opposing to any opinions from his students in discussions on the material. The list could go on. Avoid this pprofessor.", + "pos": 0.062, + "neu": 0.825, + "neg": 0.113, + "_id": { + "$oid": "6711d765cd60fca157e60370" + } + }, + { + "text": "he is a horrible teacher. he does teach technical writing. i do not know why he is teaching this class. he just makes you do all of this useless work that has no relevance to engineering whatsoever. i wish i could drop the class.", + "pos": 0.051, + "neu": 0.739, + "neg": 0.209, + "_id": { + "$oid": "6711d765cd60fca157e60371" + } + }, + { + "text": "Man, dont take any classes with him at al. If you want to learn the basics of technical writing, take some one else. If you want to read useful reading to be able to do technical writing, do not take him. If you want to be taught whatever he wants to teach you, take him. his class is completely useless.", + "pos": 0.105, + "neu": 0.848, + "neg": 0.048, + "_id": { + "$oid": "6711d765cd60fca157e60372" + } + }, + { + "text": "At first I thought this was a horrible class, but the longer you stay the more you realize it is worth it every bit. It is a writing class, be prepared to write a lot. I like this professor because he puts a lot of emotion into teaching, he is funny and helpful too. One thing though: The ethics he goes through will hit you, a real eye opener. :)", + "pos": 0.23, + "neu": 0.743, + "neg": 0.027, + "_id": { + "$oid": "6711d765cd60fca157e60373" + } + }, + { + "text": "He teaches whatever he wants, which is not technical writing. lectures are rants with little class interaction. If you actually want to learn technical writing, do not take him. His idea of teaching a technical writing course is to teach it as a philosophy of science and technology. lots of busy work with little lasting value.", + "pos": 0.058, + "neu": 0.903, + "neg": 0.039, + "_id": { + "$oid": "6711d765cd60fca157e60374" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d766cd60fca157e60376" + }, + "professor_name": "Patricia Broderick", + "rating": 3, + "department": "Medicine department", + "comments": [ + { + "text": "Take this class online, it's the easiest way to pass, you are only required to do the \"long easy\" if u don't normal do the quizzes and never show up. She will talk about her personal life, but that will make time move faster lol if anything that a bonus. It isn't that bad; she has passion for it tbh but just let her cookkkkkk :D", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60377" + } + }, + { + "text": "Easy to pass tests, but if you miss one, you have to do a 20 page essay that is apparently for bonus points? There was a lot of info about her personal life that didn't pertain to the actual class. If this was an IRL class, I would've dropped it. Attendance wasn't really a thing, so I skipped most classes. It was a messy and wild class", + "pos": 0.09, + "neu": 0.842, + "neg": 0.069, + "_id": { + "$oid": "6711d766cd60fca157e60378" + } + }, + { + "text": "This class is an easy A, my advice is to take this class online all the questions on the midterm and final are found on google. Take it!", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60379" + } + }, + { + "text": "Dr. Broderick is super easy to follow. Her lectures are fairly simple and she is open to answering any questions about the lecture. If you're having trouble passing the class, she encourages you to speak to her about it to see what you can do to pass. Her tests are super easy as long as you have the notes and she even encourages you to look online.", + "pos": 0.236, + "neu": 0.731, + "neg": 0.033, + "_id": { + "$oid": "6711d766cd60fca157e6037a" + } + }, + { + "text": "Overall, not bad. There were 3 tests for the entire semester that consisted of 50 questions each. She was always willing to stay after class and answer any questions and cared tremendously about her students. For extra credit/attendance you would also have to attend her talk show.", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e6037b" + } + }, + { + "text": "Professor Broderick was a great professor who taught intently and made her students her main priority.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e6037c" + } + }, + { + "text": "She is passionate about her lectures and what she teaches. She's straightforward about what is expected throughout the semester. She only gave three exams throughout the semester based on the slides and lectures, and it was online, so it was manageable.", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e6037d" + } + }, + { + "text": "Took her Fall 2021 class. Lectures were easy to follow and discusses coursework during class meetings. Had one exam and one longgg paper. Encourages you to look online. She is kind in her own way, just try to not get on her bad side.", + "pos": 0.175, + "neu": 0.759, + "neg": 0.066, + "_id": { + "$oid": "6711d766cd60fca157e6037e" + } + }, + { + "text": "Dr.Broderick is really nice professor. It was great taking her class & I wish there are more classes with her. 3 easy exams and no papers. She is very flexible if you need help. I never had to worry about anything in her class. I wish all my professors are like her. Take her!", + "pos": 0.356, + "neu": 0.613, + "neg": 0.031, + "_id": { + "$oid": "6711d766cd60fca157e6037f" + } + }, + { + "text": "She's had her ups and downs, but it's clear she has a passion to teach this class. She's kind, and very patient. There were 3 exams, no paper, and online lectures. As long as you come to class, you'll get a good grade.", + "pos": 0.28, + "neu": 0.671, + "neg": 0.049, + "_id": { + "$oid": "6711d766cd60fca157e60380" + } + }, + { + "text": "Want's to take everybody to her tv show T-T , okay lectures, no homework, easy tests. Take her for an easy A", + "pos": 0.175, + "neu": 0.657, + "neg": 0.168, + "_id": { + "$oid": "6711d766cd60fca157e60381" + } + }, + { + "text": "good", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60382" + } + }, + { + "text": "She's insane. She treats her TA's terribly, verbally switches assignment instructions from the syllabus mid-semester, calls students outside of class, and screams at them when they ask a question and she feels threatened. Avoid her.", + "pos": 0.0, + "neu": 0.686, + "neg": 0.314, + "_id": { + "$oid": "6711d766cd60fca157e60383" + } + }, + { + "text": "She is a very nice person first of all. And she doesnt even give too many homework. I would definitely recommend you that Professor.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60384" + } + }, + { + "text": "Prof. Broderick is a very good instructor, all you need to do is show up to class and you will pass. A total of 3 assignments, 2 quizzes and 1 essay. SUPER easy class to pass. If you can take her, take her ! Easy A guranteed.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60385" + } + }, + { + "text": "She is well known in her field but she's not that good of a professor. Her syllabus was changed from an 8 page paper to 20 pages. Most classes are spent hearing her tell stories that don't relate to the class or promoting herself on other platforms. She isn't the worst person ever but the class wasn't very good. It's not worth the stress.", + "pos": 0.157, + "neu": 0.733, + "neg": 0.11, + "_id": { + "$oid": "6711d766cd60fca157e60386" + } + }, + { + "text": "It is the first time I felt creative, especially, because Dr. Broderick has given us the chance to feel free on what we want to write about. She always try to get to know and support each one of us. She makes everything look very easy and interesting. Her class is a very productive and relaxing environment. A very lenient and humble professor.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60387" + } + }, + { + "text": "Professor Broderick is incredibly rude to both her TAs and students. I have never met a teacher so unprofessional. She is never able to take responsibility for her mistakes or faults and continuously blames the students. She also does not stick to her word. She gave us an 8 page paper on the syllabus but changed it months later to 20 pages.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d766cd60fca157e60388" + } + }, + { + "text": "Tends to get off topic at times and speaks a lot about herself. You have to show up detailed lecture for a each class. You also have to watch her radio shows on Wednesday nights because they would also be covered on the test. The lectures are very helpful since they are somewhat repetitive so they would stick with you.", + "pos": 0.049, + "neu": 0.924, + "neg": 0.027, + "_id": { + "$oid": "6711d766cd60fca157e60389" + } + }, + { + "text": "Easy class. Three Exams determine your whole grade and you get three days per exam. The professor is alright.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e6038a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d766cd60fca157e6038c" + }, + "professor_name": "Joel Gersten", + "rating": 4.3, + "department": "Physics department", + "comments": [ + { + "text": "No use going to lectures, you can just sign your name and dip. The class is purely teaching yourself. Just do a bunch of practice problems from textbook, homework, or his previous exams.", + "pos": 0.0, + "neu": 0.864, + "neg": 0.136, + "_id": { + "$oid": "6711d766cd60fca157e6038d" + } + }, + { + "text": "Overall a great professor as he truly is the nicest person you may ever meet. His lectures could use some work as he frequently over-explains ideas. Make sure you do the homework! My tests were as follows: 77, 81, 50 and Final was 58. Grade is calculated as followed (curve dictates final grade): 0.16*(Ex1 + Ex2 + Ex3) + 0.32*Fin + HW + Lab", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e6038e" + } + }, + { + "text": "I had Professor Gersten this past semester for Physics 454 - he is super nice and very lenient. The lectures can be confusing at times, but Professor Gersten follows the textbook to a T so it's easy to catch up. The exams and hw assignments are the fairest I've received in my upper level physics classes - I was actually shocked. 10/10 recommend!", + "pos": 0.187, + "neu": 0.754, + "neg": 0.059, + "_id": { + "$oid": "6711d766cd60fca157e6038f" + } + }, + { + "text": "Gersten is a great man but not a great professor. He talks to himself on the projector and ul just sit there wondering whats going on. He doesnt engage with the class at all&the hws are rocket sci hard!If u want to learn physics, dont take him but if u want to pass with an C take him bc his curve will elevate ur grades (i got 10,30,30) to the sky.", + "pos": 0.069, + "neu": 0.838, + "neg": 0.093, + "_id": { + "$oid": "6711d766cd60fca157e60390" + } + }, + { + "text": "Hes one of the best physics professors in ccny . Take him ! You wont regret it at all ! & Like everyone said, his curve is insane !!", + "pos": 0.269, + "neu": 0.66, + "neg": 0.071, + "_id": { + "$oid": "6711d766cd60fca157e60391" + } + }, + { + "text": "This class was an absolute joke i took physics in highschool so i couldnt care less . Didnt go to class , didnt study , didnt do one homework got a A- the class is super easy do not take the other professors they will complicate something easy take him hes great i didnt even know failing is impossible you can get a C without trying its hilarious !!", + "pos": 0.226, + "neu": 0.714, + "neg": 0.06, + "_id": { + "$oid": "6711d766cd60fca157e60392" + } + }, + { + "text": "After I started ditching class my test grades improved significantly. In order to pass with a C or better, you need to work twice as hard outside of class. The man is a nice guy but simply cannot teach. The lectures will put you to sleep, and youll wonder why did I waste an hour in class.", + "pos": 0.094, + "neu": 0.828, + "neg": 0.078, + "_id": { + "$oid": "6711d766cd60fca157e60393" + } + }, + { + "text": "Test grades were 15,55,30 and final was a 55. I got a C. His curve makes him legendary. Take him before he retires if you can, you won't regret it. If you care for a B, get higher than class average, which for my class was 40. He's very sweet and accessible during office hours. Do homework and pass the lab!", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60394" + } + }, + { + "text": "Given his legendary curve it's very hard not to pass since the \"C\" is the dependent on the class average which ranges from 40-60. His exams + final was M.C but still difficult. Despite this however, unless you've taken physics in the past, you will not learn from his lectures and if you really care about learning physics I suggest not to take him.", + "pos": 0.067, + "neu": 0.867, + "neg": 0.065, + "_id": { + "$oid": "6711d766cd60fca157e60395" + } + }, + { + "text": "I got a 10, 35, and 55 on his exams. I think I got around a 50-60 on the final and passed with a C+. Seriously his curve is legendary!", + "pos": 0.0, + "neu": 0.936, + "neg": 0.064, + "_id": { + "$oid": "6711d766cd60fca157e60396" + } + }, + { + "text": "Gersten has a heart of gold. This man will pass you with just a 30% exam average. He is such an amazing professor. A true gentleman.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d766cd60fca157e60397" + } + }, + { + "text": "boring lectures, you either have to be really motivated during class and energetic to focus, or be a good self learner via textbook and online resources. Overall, if you study and do better than class average, you will get a good grade. And those who dont do as well as others, the minimum grade you'll get is a C. No one fails as far as i know.", + "pos": 0.211, + "neu": 0.711, + "neg": 0.077, + "_id": { + "$oid": "6711d766cd60fca157e60398" + } + }, + { + "text": "This was one of the hardest courses I've taken so far. You have to keep up with the readings or else his lectures won't make any sense. Overall a great, organized, and generous professor. His exams cover ALL the concepts. My only complaint would have to be w/ the exams being multiple choice, which is understandable since he grades them himself.", + "pos": 0.109, + "neu": 0.858, + "neg": 0.033, + "_id": { + "$oid": "6711d766cd60fca157e60399" + } + }, + { + "text": "If you're thinking about taking physics 207 or 208, do yourself a favor and take him! He is the sweetest professor I've ever met. The lectures get boring sometimes but it's your job to study practice problems. Also, make sure you understand the concepts on his previous exams. Some of the questions are repeated. He also gives legendary curves ;)", + "pos": 0.11, + "neu": 0.813, + "neg": 0.077, + "_id": { + "$oid": "6711d766cd60fca157e6039a" + } + }, + { + "text": "Ehh he was difficult for the most part, definitely don't recommend to people new to physics.", + "pos": 0.145, + "neu": 0.631, + "neg": 0.224, + "_id": { + "$oid": "6711d766cd60fca157e6039b" + } + }, + { + "text": "This man gives a legendary curve. Got a 10, 65, 25, then 56 on the final, 8.9% lab grade and 10% hw grade, composite score was a 53 (C+ range). All of his tests are multiple choice now (I'm not a fan) but are fair in difficulty. I didn't study much and the grade shows but seriously it's difficult to fail. Put in work and you'll do better than me!!!", + "pos": 0.08, + "neu": 0.739, + "neg": 0.182, + "_id": { + "$oid": "6711d766cd60fca157e6039c" + } + }, + { + "text": "my Exam scores were 70, 75, 75, and 64 (final). Your lab score was 7.1 and the homework score was 10. This resulted in a composite grade of 73. The score landed in the B+ range. Like Everyone else is saying, the curve is insane but you still have to put in the work. His exams are ALL multiple choice. So that's a good thing.... for some.", + "pos": 0.083, + "neu": 0.891, + "neg": 0.026, + "_id": { + "$oid": "6711d766cd60fca157e6039d" + } + }, + { + "text": "You should at least get a B if you spent times on it. The curves were insane because he used the class average as C. Exams were relatively easy compared to the time-consuming homework problems and do the practice exams beforehand. Read textbook or watch videos, which I did, if you can't follow his lectures. Good Luck!", + "pos": 0.137, + "neu": 0.782, + "neg": 0.081, + "_id": { + "$oid": "6711d766cd60fca157e6039e" + } + }, + { + "text": "he is a really nice professor and hates failing anyone but you need to study alot of on your own before going to his lectures in order to understand anything.", + "pos": 0.062, + "neu": 0.815, + "neg": 0.124, + "_id": { + "$oid": "6711d766cd60fca157e6039f" + } + }, + { + "text": "He's caring and wants you to pass (he curves a lot), but his method of teaching is not for me. He talks for an hour and just writes on his projector and you can try to follow along but most people just get lost and give up. So you have to do a lot of studying by yourself. If you get above class average on all test (usually around 55), youll be fine", + "pos": 0.056, + "neu": 0.906, + "neg": 0.038, + "_id": { + "$oid": "6711d766cd60fca157e603a0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d767cd60fca157e603a2" + }, + "professor_name": "Michael Marinelli", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "I took him this summer. I don't think he's the worst, but I would try to opt for someone else. Review the material before class to get a better understanding. There's quizzes every week. Again, hes not bad.", + "pos": 0.169, + "neu": 0.775, + "neg": 0.056, + "_id": { + "$oid": "6711d767cd60fca157e603a3" + } + }, + { + "text": "As long as you study for this class, you will do fine. Lectures are easy to follow and would always answer any question you have during class. Lectures follow the guideline so its very straight forward in what to expect from the class. He would also do some webassign question in class as examples which helps! I would highly recommend him!", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603a4" + } + }, + { + "text": "His lectures are confusing if you do not read the textbook or study beforehand. This class is tough, but because of Marinelli's lenient grading (GOATINELLI), you will pass if you put in the work and watch Professor Leonard's video.", + "pos": 0.064, + "neu": 0.871, + "neg": 0.065, + "_id": { + "$oid": "6711d767cd60fca157e603a5" + } + }, + { + "text": "Everything including exam questions are directly from the textbook. His lectures can be confusing most of the time, however he is very accessible outside of class and is willing to clear up any confusion. Cares a lot about student. Gives lots of extra credit. Overall you have to put in your own effort and use your resources.", + "pos": 0.128, + "neu": 0.809, + "neg": 0.064, + "_id": { + "$oid": "6711d767cd60fca157e603a6" + } + }, + { + "text": "His lectures are decent. He's really reasonable when it comes to giving a curve on midterms if some of the questions were difficult. He also does jeopardy the class before the exam (the most fun I had in a calc class). It's semi helpful if ur struggling but he gives you extra credit regardless if you win or not.", + "pos": 0.204, + "neu": 0.716, + "neg": 0.08, + "_id": { + "$oid": "6711d767cd60fca157e603a7" + } + }, + { + "text": "Lot of self studying required since his lectures aren't the best. However, he does give tons of extra credit and is very lenient with grading tests. There's a reason he's the GOATINELLI", + "pos": 0.134, + "neu": 0.776, + "neg": 0.09, + "_id": { + "$oid": "6711d767cd60fca157e603a8" + } + }, + { + "text": "GOATinelli.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603a9" + } + }, + { + "text": "Professor Marinelli is an amazing professor. Definitely put your own work in, and come to class prepared to ask questions. There are review sessions before every midterm which tend to be harder than the actual test. Sometimes there are mistakes on the board so do pay attention (DE gets REALLY tedious). Overall, Prof. Marinelli is a gem!", + "pos": 0.134, + "neu": 0.802, + "neg": 0.064, + "_id": { + "$oid": "6711d767cd60fca157e603aa" + } + }, + { + "text": "I naively underestimated this course, however I must give this professor his flowers. For as bad as I hear people talking about the math department here he makes me wonder if it is just jokes. Very caring, passionate + offers extra credit which often gets taken for-granted in undergrad. Sadly, this is my last math course here. Take him, no regrets!", + "pos": 0.188, + "neu": 0.701, + "neg": 0.111, + "_id": { + "$oid": "6711d767cd60fca157e603ab" + } + }, + { + "text": "Marinelli is the best math teacher in CCNY. I had Marinelli for 3 math classes and I will continue to recommend him to everyone. The curriculum is difficult in general, but he really looks out for his students and wants them to all pass. He is a rare gem in the math department! Don't be afraid to ask questions and study before you come to class.", + "pos": 0.067, + "neu": 0.908, + "neg": 0.025, + "_id": { + "$oid": "6711d767cd60fca157e603ac" + } + }, + { + "text": "Overall he's a great professor. Attendance is not mandatory but i recommend showing up for class so that you're not so far behind. does reviews for every exam and you can get extra credit from that.", + "pos": 0.217, + "neu": 0.756, + "neg": 0.026, + "_id": { + "$oid": "6711d767cd60fca157e603ad" + } + }, + { + "text": "AVOID. His lectures are so brutal because all he goes over in the class is conceptual things and never goes over practice problems. I felt unmotivated every time I would go to his class because I knew that I wasn't going to understand the material since I already knew he was only going to go over theorems, proofs, and no problems the whole class.", + "pos": 0.03, + "neu": 0.792, + "neg": 0.178, + "_id": { + "$oid": "6711d767cd60fca157e603ae" + } + }, + { + "text": "This professor is always willing to help. The class is stressful and hard so naturally you need to study ahead of time. If you do all the homework by yourself you will be fine. He's willing to stay after school during office hours to help you and devotes time to generate an understanding if you ever fall behind in lecture. Have exam reviews.", + "pos": 0.137, + "neu": 0.797, + "neg": 0.066, + "_id": { + "$oid": "6711d767cd60fca157e603af" + } + }, + { + "text": "Prof. Marinelli is very caring and truly cares about his students and wants everyone to succeed as evident by his extra credit policy (5 extra points of total letter grade from webwork) and willingness to help students who are struggling after class. Make sure to study and do the HW and you will do fine. I would take his class again in a heartbeat", + "pos": 0.3, + "neu": 0.665, + "neg": 0.035, + "_id": { + "$oid": "6711d767cd60fca157e603b0" + } + }, + { + "text": "Overall very solid choice for any math at CCNY. Completing homework is critical in this class, but once you finish it and understand them you should fair well for any tests and exams. He is a fair grader, however this shouldn't be that important if you're learning the material. Other than that, he's a pretty understanding soft-spoken guy.", + "pos": 0.208, + "neu": 0.741, + "neg": 0.051, + "_id": { + "$oid": "6711d767cd60fca157e603b1" + } + }, + { + "text": "Professor Marinelli's classes are very good, but I learn more from the homeworks he assigns. They can be very long at times and definitely difficult, but he's one of the few math professors who actually count homework in the overall grade. The tests are reflective of the hws. Overall, very nice teacher that tries to give extra and partial credit.", + "pos": 0.185, + "neu": 0.77, + "neg": 0.045, + "_id": { + "$oid": "6711d767cd60fca157e603b2" + } + }, + { + "text": "Professor Marinelli will be there for you. He is the best thing to wash up on the shores of this planet since Moses. He'll be the water when your thirsty, and when you're drunk, he'll be the wine.", + "pos": 0.099, + "neu": 0.845, + "neg": 0.056, + "_id": { + "$oid": "6711d767cd60fca157e603b3" + } + }, + { + "text": "Michael Marinelli to put it simply is a late first-rounder draft pick. He has everything you need but lacks in fundamentals that can be improved over time and practice. His lectures are his fault they start off high and crash and burn very quickly, but that is saved by a generous grading system, and review sessions that provide extra credit.", + "pos": 0.204, + "neu": 0.703, + "neg": 0.092, + "_id": { + "$oid": "6711d767cd60fca157e603b4" + } + }, + { + "text": "Marinelli's a new prof, not the best lecturer at all. He obviously is really knowledgeable about his material, but isn't the best at explaining it with meaning and structure, and SHOULD definitely do that to help students and himself in the long run. He's honestly really nice, and if you just work with him, you'll succeed in the course.", + "pos": 0.25, + "neu": 0.664, + "neg": 0.086, + "_id": { + "$oid": "6711d767cd60fca157e603b5" + } + }, + { + "text": "He is a little disorganized during lectures(he's a new prof) but, he is available often. I found his lectures sometimes boring and meaningless. BUT he also cares a lot. He does extra credit review sessions before each test and even the final. pretty generous with the partial credit too. grades test super fast lmao", + "pos": 0.367, + "neu": 0.533, + "neg": 0.1, + "_id": { + "$oid": "6711d767cd60fca157e603b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d767cd60fca157e603b8" + }, + "professor_name": "Mabel Gomez", + "rating": 4.1, + "department": "Psychology department", + "comments": [ + { + "text": "Good lecturer, but does not provide feedback for written assignments. Heavy textbook use. Beware, the work piles up at the end, we had a paper and quiz due 2 days before the final. Lots of tech difficulties and constantly late which took away from class. Strict with deadlines and attendance, but does care about the subject matter.", + "pos": 0.117, + "neu": 0.839, + "neg": 0.044, + "_id": { + "$oid": "6711d767cd60fca157e603b9" + } + }, + { + "text": "She's such a great character, probably my favorite professor here at city college. The course load was pretty light, each Quiz was less than 15 minutes, the homework took about 15 minutes, 2 papers which she gives you a clear grading rubric for and 2 exams. Overall a great experience, highly recommend", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603ba" + } + }, + { + "text": "Professor Gomez is one of the best professors in the psychology department I had so far. Not only did she teach psychology of success, she also taught me and the rest of my classmates how mental health is so important. The assignments were pretty easy. Totally recommend this professor!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603bb" + } + }, + { + "text": "Professor Gomez is okay. I wish she would have posted slides and recorded lectures considering classes were online. The virtual child assignment was a fun. The quizzes and final's questions could be improved. Her slides are very long and I wish she would lecture on a more personal level instead of sounding like she's reading off a script.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603bc" + } + }, + { + "text": "Prof Gomez is amazing. Two papers and about 6 hw's and a few quizzes. Coming from someone that hates writing it was very manageable and quizzes were very straightforward! no tricks. Very lecture-heavy but interesting and I get easily distracted since being online lol. I can't wait to take her winter course for psych of love!", + "pos": 0.283, + "neu": 0.647, + "neg": 0.07, + "_id": { + "$oid": "6711d767cd60fca157e603bd" + } + }, + { + "text": "Her Parent-Infant relationship class was unbearable. She doesn't care for the success of her students and is only concerned with making snarky comments instead of confronting what her students are saying.", + "pos": 0.103, + "neu": 0.779, + "neg": 0.118, + "_id": { + "$oid": "6711d767cd60fca157e603be" + } + }, + { + "text": "She gives way too much work like normally professor would have exams and papers no she had to have the whole workload menu included. You will get homework, quizzes, papers, midterm and final like damm leave some for the rest. Lastly, she says lateness won't be tolerated when she is always late. Won't give extensions even with all the work.", + "pos": 0.078, + "neu": 0.87, + "neg": 0.053, + "_id": { + "$oid": "6711d767cd60fca157e603bf" + } + }, + { + "text": "Very rigid with due dates. Assigns significantly more work than other professors I've had. Would not recommend.", + "pos": 0.0, + "neu": 0.794, + "neg": 0.206, + "_id": { + "$oid": "6711d767cd60fca157e603c0" + } + }, + { + "text": "Shes really an amazing professor, class was 3-4 weeks long and work was easily manageable. Participation and Attendance is super important. She is understanding when you come to her ahead of time. If you have the chance to take her as your professor, please do so. My favorite class Ive taken so far as a psych/bio major.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603c1" + } + }, + { + "text": "My friend who had previously taken this class recommended it to me this summer and I honestly enjoyed it. Mabel makes the lectures very interesting, engaging, and relatable. Since the class was only 4 weeks, it is extremely important that you turn in your assignments in a timely manner and that you stay on top of them; so keep that in mind.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603c2" + } + }, + { + "text": "Mabel's class was fun and easy. There are no trick questions on the test. If you take your notes and read the textbook, you'll get an A. She's super understanding and fun to listen to. Her lectures are informative and go by quick since the topics are pretty fun. She also isn't a harsh grader and tells you exactly what she expects.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603c3" + } + }, + { + "text": "Professor Gomez was a fair teacher who was very passionate about her line of work. We had about 6 quizzes (15%) throughout the semester a midterm (15), final (15%) and two papers (15% each). Attendance and participation was (5%). She doesn't share slides after she's done teaching unless it's an emergency so please read the textbook and take notes.", + "pos": 0.133, + "neu": 0.8, + "neg": 0.067, + "_id": { + "$oid": "6711d767cd60fca157e603c4" + } + }, + { + "text": "Great professor, really cares for her students. This class was very interesting. 2 term papers, midterm and final with a couple quizzes. If you pay attention, do all your assignments and participate youll pass.", + "pos": 0.249, + "neu": 0.718, + "neg": 0.034, + "_id": { + "$oid": "6711d767cd60fca157e603c5" + } + }, + { + "text": "Professor Gomez is one of best professors at CCNY. This class was super easy and fun(winter semester) We had 1 big paper, 1 final exam and 250 word journals(free writing) due at the end of each week. Her energy is unmatched and you can tell she really loves what she does I would definitely take her class again!", + "pos": 0.277, + "neu": 0.705, + "neg": 0.018, + "_id": { + "$oid": "6711d767cd60fca157e603c6" + } + }, + { + "text": "Prof. Gomez was amazing. She helped us understand the content in the textbook by using real-life examples. Her lectures were inspirational. Her class made me learn so much about myself. The journal assignments were easy and manageable. If anyone is interested in learning about love, take Prof. Gomez.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603c7" + } + }, + { + "text": "Prof. Mabel was amazing. I loved her energy, which is really needed for an online course. She taught everything clearly, and the workload was manageable. We had 1 big essay, 1 exam, and homework for each week. Reading the textbook would help a lot. It was a great 3-week course learning about love & self-reflection. She gives extra credits, so yay!", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603c8" + } + }, + { + "text": "Professor Gomez is absolutely amazing. She really cares about her students and wants them to succeed. I highly recommend taking her and this class, you will learn a lot about yourself, love style, choice of partner, attachment style and so much more! She also provides tons of extra credit. She's the best!", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603c9" + } + }, + { + "text": "She is one of the best professors. She gives you a lot of real life examples and tries to make students reflect on how the lectures relate to our individual lives as well. This class helped me learn a lot about myself. Definitely should take her especially for this class!! One final exam, final paper and journal reflections (winter session).", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603ca" + } + }, + { + "text": "Professor Gomez is hands down one of the best professors at City college! She is incredibly caring and always makes class interesting and fun! She is more than willing to work with her students, during a pandemic this is greatly appreciated. Psych of love was an already interesting topic but could not imagine taking this class with another prof.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d767cd60fca157e603cb" + } + }, + { + "text": "Professor Gomez is an amazing professor, her class was so interesting and helpful. She is generous, understanding and reliable. In this class, make sure to complete your assignments on time and participate as much as you can. It is easy to attain a A in this class. There are no tests or quizzes but there is a final paper. I highly recommend her.", + "pos": 0.222, + "neu": 0.756, + "neg": 0.022, + "_id": { + "$oid": "6711d767cd60fca157e603cc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d768cd60fca157e603ce" + }, + "professor_name": "Leonard Jeffries", + "rating": 3.6, + "department": "Ethnic Studies department", + "comments": [ + { + "text": "Dr. Jeffries is the most brilliant mind of our century. He has been able to bring African History to modern day and teach Africans about real history, even white people love it.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603cf" + } + }, + { + "text": "An essential class taught by the most brilliant mind of the 21st Century", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603d0" + } + }, + { + "text": "Awesome!!!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603d1" + } + }, + { + "text": "Dr L. Jeffries is great he knows his stuff and is very hard on students", + "pos": 0.218, + "neu": 0.692, + "neg": 0.09, + "_id": { + "$oid": "6711d768cd60fca157e603d2" + } + }, + { + "text": "I love Dr. J.He is very disorganized & is often misunderstood, but he knows his stuff. I wish he were more structured, but I did 75% of the work and participated often in class and recv'd an A+.", + "pos": 0.141, + "neu": 0.78, + "neg": 0.079, + "_id": { + "$oid": "6711d768cd60fca157e603d3" + } + }, + { + "text": "If you are planning to take this class be prepared to take the class as an independent studies. He will lecture and he is fun but when it comes to hand in your profolio and take mid term and finals, you have to be prepared and ready to write what you have learned in the books he recommends.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603d4" + } + }, + { + "text": "the man is simply a genius. though he may mock and joke, he does it to keep the students attention. if people actually took the time to see what he is about and how much he has contributed to society, especially to african americans across the united states and in africa, they would appreciate and value you more.", + "pos": 0.153, + "neu": 0.804, + "neg": 0.042, + "_id": { + "$oid": "6711d768cd60fca157e603d5" + } + }, + { + "text": "CHANGES to the class I suggest: That the professor is never late, the syllabus is provided the first day of class, UPDATED, the TA and the professor communicate the same things to the class, the entire course load is not collected the last day, lecture topics be scheduled in advance, the professor not tease the students based on stereotypes(etc.)", + "pos": 0.033, + "neu": 0.967, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603d6" + } + }, + { + "text": "one of the best professors city college has to offer. easy class. no attendance required. received and A+ in two classes i took with him. requires you to do 10 analytical essays and 2 research projects. i did 6 essays and the two projects for both class and still got an A+ for both classes. never attended. midterm and final is based on syllabus.", + "pos": 0.101, + "neu": 0.868, + "neg": 0.031, + "_id": { + "$oid": "6711d768cd60fca157e603d7" + } + }, + { + "text": "Dr. Jeffries is one of the most intellegent people I have ever met. He is deeply passionate about his feild and cares for his students. As the Chair of the department, he made it is business to visit and guest speak at each of the classes being taught. He was a great inspiration to all of his students.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603d8" + } + }, + { + "text": "what he says CAN sound a little bit unjust and have an issue with race,but u gotta admit the man is stating nothing but facts.hes one of thefew proffesors who doesnt limit himself with whats written in the books,he actually goes out investigates even in difffernt countries to get the knowledge.everything he teaches is fact.HES FUNNY AS HELL TOO LOL", + "pos": 0.147, + "neu": 0.727, + "neg": 0.126, + "_id": { + "$oid": "6711d768cd60fca157e603d9" + } + }, + { + "text": "i think it depends on the person. yea its an easy A but any class can be as long as u do your work. the only thing is that this class is easy. I got an A. it requires work, but like the person below says. he basically gives the answers n the same essays over. just do the essays n u will pass. a lot of papers but they're easy. confusing but ok class", + "pos": 0.18, + "neu": 0.793, + "neg": 0.027, + "_id": { + "$oid": "6711d768cd60fca157e603da" + } + }, + { + "text": "A very entertaining and funny class,and very easy grader. Yes he does require 10 analytical essays, but I only gave him 4 and still received an A-. He gave the midterm 1 week before the final, and they were the same exact test, plus he told us what was going to be on the exams, and went over the answers while we were taking the exam. A VERY EASY A.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603db" + } + }, + { + "text": "Comments of YOUNG FRESH man that have had little life experience?There are some of us that actually benefit hearing from a man who was there while history was made and didnt get it out of a book, tv or youtube like most of us!ironic that so many adults (25+ would pay money to hear him yet he fought so most could get schooled for free.ungrateful", + "pos": 0.122, + "neu": 0.827, + "neg": 0.051, + "_id": { + "$oid": "6711d768cd60fca157e603dc" + } + }, + { + "text": "Don't Do it to yourself. This class is WACK!He tells you to buy books you never use. I learned the hard way This is the story of a political Activist who is way past his prime and now uses an assistant to confuse you further. As far as him being responsible for minorities being able to attendCCNY that's BS!accordin to law discrimination is illegal.", + "pos": 0.033, + "neu": 0.86, + "neg": 0.107, + "_id": { + "$oid": "6711d768cd60fca157e603dd" + } + }, + { + "text": "He's intelligent and funny...not to mention he's the reason minorities can attend CUNY schools and a heavy political activist", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603de" + } + }, + { + "text": "No longer an easy A. 8-3pg essays,a final,midterm,2 10pg papers with annotated bibliography.don't but books you'll never get or use.What he's doing is having student all types of essays and extra work so that when the higher ups come to check up on him because he was giving out A's you work hard tomakeitlook likeheis.Hesaysfightthe systembutfolds.", + "pos": 0.084, + "neu": 0.863, + "neg": 0.053, + "_id": { + "$oid": "6711d768cd60fca157e603df" + } + }, + { + "text": "DONT TAKE THIS CLASS ITS GARBAGE.IF YOU DO GOOD LUCK!NO LONGER AN EASY A. 8 essays,each 3 pages , 2 10 page paper, and a mid term and a final. NONSENSICAL AND USELESS INFORMATION THAT IS REPATATIVE. HE\"S ALWAY 30min late and expects you to stay and extra 30.NO LONGER AN EASY A YOU WILL BE LEFT SAYING WHY DID I DO THIS!!!!SCAM CLASS.NO LONGER EASY A", + "pos": 0.193, + "neu": 0.763, + "neg": 0.043, + "_id": { + "$oid": "6711d768cd60fca157e603e0" + } + }, + { + "text": "This man possesses so much knowledge, its a shame he doesn't think we are worth or even capable of receiving one eighth of it. For those who are truly interested in Black Studies, do not take this class. He will leave you empty, feeling like you waisted your time. Need an A? Take it. Great man, great mind, that's it.", + "pos": 0.288, + "neu": 0.633, + "neg": 0.079, + "_id": { + "$oid": "6711d768cd60fca157e603e1" + } + }, + { + "text": "Easy A, no attendance, he's always late. Makes his TAs put on a movie all the time. When hes in class he just draws pyramids. One semester he told us to pay him for books, yet he never gave them to us, feels like I paid for my A.", + "pos": 0.1, + "neu": 0.833, + "neg": 0.067, + "_id": { + "$oid": "6711d768cd60fca157e603e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d768cd60fca157e603e4" + }, + "professor_name": "Abdullah Khan", + "rating": 4.9, + "department": "Chemistry department", + "comments": [ + { + "text": "Not organized and barely showed up to class. Lecturers were too fast. He was not knowledgable of what was covered in class and often asked us. He would bring a camera to class and it was distracting. After class we had to stand in long line to sign attendance sheet.", + "pos": 0.0, + "neu": 0.957, + "neg": 0.043, + "_id": { + "$oid": "6711d768cd60fca157e603e5" + } + }, + { + "text": "Unorganized and barely came to class. I was already on campus and he would cancel lecture right before. At times he did not cancel lecture just did not show up. Went too fast and never completely solved the problems. Hard to follow and pay attention in class because his camera was in the way. He wants to be a youtuber more than teach class.", + "pos": 0.025, + "neu": 0.834, + "neg": 0.141, + "_id": { + "$oid": "6711d768cd60fca157e603e6" + } + }, + { + "text": "Abdullah's lectures were so so helpful and the fact that he reviewed stuff over weekends and before tests/finals made it so much more helpful.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603e7" + } + }, + { + "text": "He explains really well.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603e8" + } + }, + { + "text": "He's very knowledgeable and explains the lecture material very clearly. He works through the problems with us and makes them more simple for us to understand and remember", + "pos": 0.094, + "neu": 0.82, + "neg": 0.085, + "_id": { + "$oid": "6711d768cd60fca157e603e9" + } + }, + { + "text": "Abdullah gives very clear and concise lectures that tell you all the important points you need to know for each chapter. He has very good understanding of all the topics and even takes time outside of class to make sure we understand everything. Overall very caring and friendly, and without him I would not have survived chem 104.", + "pos": 0.242, + "neu": 0.72, + "neg": 0.038, + "_id": { + "$oid": "6711d768cd60fca157e603ea" + } + }, + { + "text": "Abdullah really helps his students understand the material and makes learning it simple. He is available outside of class and really chill with students too. His YouTube videos helped me pass all my chem exams.", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603eb" + } + }, + { + "text": "He is the best and really helps to clarify the material learned in lecture", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603ec" + } + }, + { + "text": "Amazing all around. He is the type of teacher future generations needed. He knows the material and teaches in a way that anyone will understand. 100/100 recommended", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603ed" + } + }, + { + "text": "Abdullah Khan was my recitation leader and he was very helpful. He goes over everything and makes sure you understand. He's very approachable and easy to reach when it comes to asking him questions, etc. One of the best rec leaders I've had at CCNY.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603ee" + } + }, + { + "text": "Very good teacher, and extremely thorough when reviewing material. It was a pleasure to have him as a teacher!", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603ef" + } + }, + { + "text": "He was my recitation leader and he was very helpful. He knows chemistry very well so ask him ALEKS based questions. He grades the labs very leniently.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603f0" + } + }, + { + "text": "Abdullah is well-versed in chemistry, which is the subject we worked together on. In addition, he is warm, friendly, professional, and very patient with teaching the material. I highly recommend Abdullah!", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603f1" + } + }, + { + "text": "Prof. Khan is not only super knowledgeable on all the topics he teaches but is also very patient and thorough in explanation, making it easy for students to learn. I always feel inspired after a session with this professor. In addition to his well-rounded knowledge in chemistry (as well as physics and much more), he is super nice and caring! 10/10.", + "pos": 0.307, + "neu": 0.667, + "neg": 0.026, + "_id": { + "$oid": "6711d768cd60fca157e603f2" + } + }, + { + "text": "He has amazing teaching skills. He makes the concept so easier to understand. I wish if he was teaching biology as well. It would have been so much easier with him.", + "pos": 0.37, + "neu": 0.63, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603f3" + } + }, + { + "text": "TEACHING WISE: \n- excellent, so talented, you can tell that he actually knows what he's talking about\n- honestly better teaching than the professor \n\nPERSONALITY WISE: \n- perfect \n- answers questions if you have them\n- always calm but respectable", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603f4" + } + }, + { + "text": "From what I remember he seems pretty clear, he goes to the point, and he does stay after the class is over to clarify any doughts on the topic presented.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603f5" + } + }, + { + "text": "He was a good recitation leader. His explanations helped me to understand materials more clearly. His notes were actually helpful during exams.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603f6" + } + }, + { + "text": "Explained material very well! Great teacher", + "pos": 0.638, + "neu": 0.362, + "neg": 0.0, + "_id": { + "$oid": "6711d768cd60fca157e603f7" + } + }, + { + "text": "Calm dude, very helpful and always ready to guide you through difficulty", + "pos": 0.431, + "neu": 0.437, + "neg": 0.131, + "_id": { + "$oid": "6711d768cd60fca157e603f8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d769cd60fca157e603fa" + }, + "professor_name": "Ala Al-Shargabi", + "rating": 3.4, + "department": "Computer Science department", + "comments": [ + { + "text": "By far the worst professor I've ever encountered. He's condescending, arrogant, never prepared, and highly disorganized. I'm currently taking his MAT101 class and every student in the class seems to have a similar or worse experience with him. Avoid his class by all means!!! He's not a real professor.", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d769cd60fca157e603fb" + } + }, + { + "text": "This is probably the arrogant teacher I've had in my entire life, if you've never taken python and are actually starting fresh dont take this class he's a mess of a teacher who uses dated methods and sites just reading off a PowerPoint with no review which is odd considering we are in this class for 4 HOURS. Avoid this professor.", + "pos": 0.033, + "neu": 0.789, + "neg": 0.178, + "_id": { + "$oid": "6711d769cd60fca157e603fc" + } + }, + { + "text": "Lectures can be heavy and homework but he is a good professor.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d769cd60fca157e603fd" + } + }, + { + "text": "Very easy course to pass.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d769cd60fca157e603fe" + } + }, + { + "text": "The whole semester was pretty good but it was totally confusing during final weeks that what are we going to do for the final exam. Most of us study for the python coding tasks but we got MCQ for our final exam. Basically all those questions sounds like a copy paste from a basic Python book.", + "pos": 0.118, + "neu": 0.838, + "neg": 0.045, + "_id": { + "$oid": "6711d769cd60fca157e603ff" + } + }, + { + "text": "He is a nice guy but he is extremely arrogant. He likes to be in control and when he isn't he gets angry. He doesn't go over the work he assigns and assumes we know what we are doing. He is extremely condescending. He reds from a power point for over an hour. DO NOT TAKE HIS CLASS!", + "pos": 0.143, + "neu": 0.787, + "neg": 0.069, + "_id": { + "$oid": "6711d769cd60fca157e60400" + } + }, + { + "text": "One of the best professors in our department, engaging and motivated.", + "pos": 0.545, + "neu": 0.455, + "neg": 0.0, + "_id": { + "$oid": "6711d769cd60fca157e60401" + } + }, + { + "text": "This is my first professor in computer technology I like his style of teaching and checking out our work, he can get tense sometimes if work is not done but he goes around in class to see your screens\nTake him if you want to learn and get a good grade for curve specially at the end of the semester act to help be polite he likes that", + "pos": 0.183, + "neu": 0.795, + "neg": 0.022, + "_id": { + "$oid": "6711d769cd60fca157e60402" + } + }, + { + "text": "He was giving very good guidance and instructions on how to make codes. We made 3-4 codes every session sometimes problems can be difficult, but overall manageable.", + "pos": 0.125, + "neu": 0.757, + "neg": 0.118, + "_id": { + "$oid": "6711d769cd60fca157e60403" + } + }, + { + "text": "He never coded anything for us or taught us anything. Relied on the main professor to teach us the topics and then would assign us labs to complete during recitation. Very easy if you have prior coding experience, but I feel sorry for those who struggled bc when it turned to online it was harder to ask questions and he couldn't answer them.", + "pos": 0.031, + "neu": 0.9, + "neg": 0.068, + "_id": { + "$oid": "6711d769cd60fca157e60404" + } + }, + { + "text": "AVOID THIS CLASS ASAP! Terrible professor. Class went from in person, to hybrid, even though most of the students told him not to do it online because its a PROGRAMMING class where many of us will have questions. Final exam has questions that were not taught in class, and gave us an entire chapter and labs (unlocked the night prior to final exam).", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d769cd60fca157e60405" + } + }, + { + "text": "If you haven't learned Python at all AVOID THIS CLASS!!!!!! He teaches using Zybooks(HW on there too), literally just reads off of it and that's it. He pushed class from 8am to 8:15am because he can't get here on time, and still comes in about 15 minutes late everyday and somehow switched to a remote/hybrid class and literally is all self-learning.", + "pos": 0.0, + "neu": 0.936, + "neg": 0.064, + "_id": { + "$oid": "6711d769cd60fca157e60406" + } + }, + { + "text": "Ignore him at all cost. I'm sure that he writes his own review on this page because there's absolutely no way he has above a 4 rating here. I sometimes wonder how he got himself a job as a CS professor here at CCNY.", + "pos": 0.048, + "neu": 0.849, + "neg": 0.103, + "_id": { + "$oid": "6711d769cd60fca157e60407" + } + }, + { + "text": "He gives quizzes from what we go through in the session it can be overwhelming as any math classes make sure to submit the full work to receive his famous 99/100.", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d769cd60fca157e60408" + } + }, + { + "text": "He is encouraging us to read and code a lot during the recitation sessions which is good, I like his smile, very easy going.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d769cd60fca157e60409" + } + }, + { + "text": "Poor guy wanted his money so he forced himself to pretend to be a professor in computer science while doesn't even know how to code because I have never seen him look at a single line of code that we wrote. Life is tough for this poor guy, from a lifeguard to a university TA/professor, he needs that money to support his life by scamming students.", + "pos": 0.036, + "neu": 0.799, + "neg": 0.165, + "_id": { + "$oid": "6711d769cd60fca157e6040a" + } + }, + { + "text": "This was for data structures. He did not come to class with prepared notes and just read off Zybooks word-for-word. Hiding the fact that he didn't understand the material. Lots of HW, and most labs irrelevant to class, leaving little time for students to study material. Avoids questions saying to refer to zybook. Not qualified to teach the course.", + "pos": 0.031, + "neu": 0.906, + "neg": 0.063, + "_id": { + "$oid": "6711d769cd60fca157e6040b" + } + }, + { + "text": "This man has a good rating just because he was a ta. There's a huge difference between a professor and a teacher assistant. As a professor, he didn't help us learn data structures at all since he doesn't know to program himself. This man is talking about random topics out of nowhere and reads off zybooks. He expects us to know everything:(", + "pos": 0.078, + "neu": 0.888, + "neg": 0.034, + "_id": { + "$oid": "6711d769cd60fca157e6040c" + } + }, + { + "text": "Avoid at all costs. He read straight off zybooks during lecture, making it a waste of time to commute to campus. His exams were zybooks based, and he assigned A LOT of irrelevant work on there that had nothing to do with data structures. He knew nothing about the subject so dont bother asking him for help. dont know where the good reviews are from.", + "pos": 0.133, + "neu": 0.799, + "neg": 0.068, + "_id": { + "$oid": "6711d769cd60fca157e6040d" + } + }, + { + "text": "HORRIBLE PROF.\n\n1. Assigns way too much work w/ FAST due dates\n2. DOESN'T CURVE and he grades on 5 criterias\n3. Gave [3] 50 - 60 [Q] exams on obscure topics of Zybook\n4. He does not know the material\n5. Only reads from Zybooks and he calls that \"teaching\"\n6. Brushes off ur questions and concerns\n7. Be ready to teach urself\n8. Avoid at all cost", + "pos": 0.033, + "neu": 0.881, + "neg": 0.086, + "_id": { + "$oid": "6711d769cd60fca157e6040e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d769cd60fca157e60410" + }, + "professor_name": "Gordon Thompson", + "rating": 2.1, + "department": "English department", + "comments": [ + { + "text": "Professor Thompson is not going to give you an easy A for not doing the reading. But he is one of the best professors at City College. His readings of classic afam texts are shrewd and make you rethink the material. He is also a meticulous grader, if you are not rhetorically a strong writer you may have a lot of work to do.", + "pos": 0.107, + "neu": 0.844, + "neg": 0.049, + "_id": { + "$oid": "6711d769cd60fca157e60411" + } + }, + { + "text": "Unclear when it comes to instruction. Feels like he makes things up on the fly. Rarely explains what I did wrong and can improve on and when you make a mistake, he gets mad and reminds us that we shouldn't be making this mistake and tries to make you feel dumb.", + "pos": 0.083, + "neu": 0.66, + "neg": 0.257, + "_id": { + "$oid": "6711d769cd60fca157e60412" + } + }, + { + "text": "very strange professor, I couldn't understand his curriculum for the whole semester, grading is very strange, he still hasn't graded all my assignments, he never answers my emails. The works for reading were strange and not interesting for me personally.", + "pos": 0.0, + "neu": 0.814, + "neg": 0.186, + "_id": { + "$oid": "6711d769cd60fca157e60413" + } + }, + { + "text": "This professor is on a power trip, combative, and close-minded. He talks about absolutely nothing, shuts students down, horrible w/ tech, takes forever to grade then grades inaccurately, no feedback, IGNORES emails, and talks like he was there giving ideas when the authors wrote their books. Pls give this man a good deal so he can retire ASAP.", + "pos": 0.17, + "neu": 0.746, + "neg": 0.083, + "_id": { + "$oid": "6711d769cd60fca157e60414" + } + }, + { + "text": "This professor isn't clear on the syllabus so we're on confused on what to do for the semester. He rambles in class with no clear lesson, doesn't explain things very well. He gave us an extra credit assignment, and on the day it was due he canceled it. I wouldn't suggest you to take his class at all.", + "pos": 0.077, + "neu": 0.816, + "neg": 0.107, + "_id": { + "$oid": "6711d769cd60fca157e60415" + } + }, + { + "text": "Avoid this man at all costs. He is completely disrespectful to his students and never accepts anybody's answer as correct. For the entire hour of class he just rambles and never has an actual lecture planned. He doesn't respond to emails or update grades throughout the semester. He also puts the incorrect information for the class on the syllabus.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d769cd60fca157e60416" + } + }, + { + "text": "On the last day of class, the professor compared r*pe to passionate s*x and asked all of his students about their personal s*x lives. He is arrogant, talks down on students, and totally disorganized. I don't know how he made it this far, but he shouldn't be a professor.", + "pos": 0.042, + "neu": 0.884, + "neg": 0.074, + "_id": { + "$oid": "6711d769cd60fca157e60417" + } + }, + { + "text": "if you have any sense of preservation DO NOT take his class. He doesn't grade on time or update grades during the semester answer emails and what he lacks in actual professorial skills he makes up for in being disrespectful & demeaning. I'm not lgbtq myself but he always mentions \"that nonbinary thing\"\nBEWARE. rambler.spitter.should retire asap.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d769cd60fca157e60418" + } + }, + { + "text": "Do not take. His teaching style is condescending others. He gave me a 75/100 on a group breakout, done as extra credit. He never answered emails. The college ignored our complaints.", + "pos": 0.073, + "neu": 0.787, + "neg": 0.14, + "_id": { + "$oid": "6711d769cd60fca157e60419" + } + }, + { + "text": "In all of my college time, Professor Thompson is by far the worst professor I have taken. He is condescending, unorganized and close minded. I am surprised that in spite of his teachings that I managed to get the grade that I got. The students were the best part of the class and hope that the college takes seriously the complaints about him. Avoid!", + "pos": 0.113, + "neu": 0.705, + "neg": 0.181, + "_id": { + "$oid": "6711d769cd60fca157e6041a" + } + }, + { + "text": "\"He can't be THAT bad\" I thought...\n\nHe was.\nTake any other professor if you can\nIf you can't, wait till next semester for diff prof \n\n-Late to class\n-Spends 20-30 (out of 45) minutes on ATTENDANCE alone \n-Barely gets to that day's reading \n-Wants essays to be straight to the point, but convoluted when he talks abt the material.\n\nDo not take him.", + "pos": 0.051, + "neu": 0.926, + "neg": 0.023, + "_id": { + "$oid": "6711d769cd60fca157e6041b" + } + }, + { + "text": "Please avoid. Nothing you can do in this class is good enough. Your GPA will suffer, no matter how sincere of an effort you make. I am a transfer student and have taken three years of English literature classes. I have even won awards for academic writing. All I got in this class was insults and inexplicable \"D\" grades on my essays.", + "pos": 0.189, + "neu": 0.687, + "neg": 0.124, + "_id": { + "$oid": "6711d769cd60fca157e6041c" + } + }, + { + "text": "I'm telling you right now DO NOT TAKE THIS PROFESSOR!!! At times he would go harsh on students for not \"understanding\" his questions. And he was very unorganized by not answering emails, eating during class, and making no sense in his lectures. I had to withdraw from his class since I won't risk taking a bad grade from an unprofessional professor.", + "pos": 0.026, + "neu": 0.793, + "neg": 0.181, + "_id": { + "$oid": "6711d769cd60fca157e6041d" + } + }, + { + "text": "Professor is very disorganized and had a hard time with technology. Very disrespectful to students and condescending. Syllabus has changed multiple times throughout the semester.", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d769cd60fca157e6041e" + } + }, + { + "text": "Honestly, it's only been the first week and so far he's already being difficult. He makes a mistake and blames it on the students like it was our fault when we ourselves don't know what is going on.", + "pos": 0.115, + "neu": 0.669, + "neg": 0.215, + "_id": { + "$oid": "6711d769cd60fca157e6041f" + } + }, + { + "text": "I'm going to be giving Prof Thompson what he gave me, an F. Thompson is very forgetful, rude, condescending, and throws baby fits bc he confuses the class. He lashed out at a girl because she questioned his ability to teach. This isn't the first time he has done this, and the department has yet to reprimand him. He always late btw. He's dreadful.", + "pos": 0.064, + "neu": 0.771, + "neg": 0.166, + "_id": { + "$oid": "6711d769cd60fca157e60420" + } + }, + { + "text": "Absolute hell of a semester. Prof Thompson forgot to submit one of my papers because he is horrible with technology. I've sent him multiple emails explaining that my final grade was inaccurate due to one of my papers not being graded(had to do the math myself) and he did not respond to one. Horrible lectures and his grading policy is non-existent.", + "pos": 0.0, + "neu": 0.833, + "neg": 0.167, + "_id": { + "$oid": "6711d769cd60fca157e60421" + } + }, + { + "text": "Do not take Thompson's class. I thought that the reviews were lying, but boy is he awful. Thompson is rude, always starts class late, unorganized, forgetful, and throws childish fits. He assigns difficult papers and expects you to complete them in two days. Thompson also showed us a live stream of the 2020 election wasting class time. Avoid him.", + "pos": 0.0, + "neu": 0.68, + "neg": 0.32, + "_id": { + "$oid": "6711d769cd60fca157e60422" + } + }, + { + "text": "Gordon Thompson is in love with himself. In his class he is never wrong and your opinion doesn't matter. Thompson is disorganized, unclear, and gets frustration when you don't understand. Thompson also goes off topic for thirty minutes and expects you to stay after he wasted class time. As a scholar, he's good. As a a professor, he is horrible.", + "pos": 0.127, + "neu": 0.673, + "neg": 0.199, + "_id": { + "$oid": "6711d769cd60fca157e60423" + } + }, + { + "text": "Awful. Just awful. Professor Thompson's scholarliness does not transition into the classroom. Thompson is rude, unclear, and nasty. There is no consistency with Thompson and he will change the syllabus many times throughout a semester. Thompson rambles and does not teach. If you do not thinks his way he throws a hissy childish fit. Avoid him.", + "pos": 0.035, + "neu": 0.665, + "neg": 0.3, + "_id": { + "$oid": "6711d769cd60fca157e60424" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76acd60fca157e60426" + }, + "professor_name": "Gregg Stevens", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "GOAT of CCNY. I legit showed up blazed every Friday when I had his class and he was chill about it and cracked jokes. Never had a better laugh, he a real one.", + "pos": 0.147, + "neu": 0.789, + "neg": 0.063, + "_id": { + "$oid": "6711d76acd60fca157e60427" + } + }, + { + "text": "The MAN!! I wish he were still in the department, but he is probably sipping a margarita on a mega yacht docked next to an estranged island upon racking millions from high stakes trades on the financial markets. The man, the myth, the legend, Gregg Stevens", + "pos": 0.051, + "neu": 0.949, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60428" + } + }, + { + "text": "Dude is straight up the best you will ever have. One of the few teachers you could chill with and have a crazy time. A real bro.", + "pos": 0.188, + "neu": 0.738, + "neg": 0.074, + "_id": { + "$oid": "6711d76acd60fca157e60429" + } + }, + { + "text": "It was an absolute honor to have been in Greggs section. I cant imagine taking a different elective since Gregg makes the material easy to understand and his notes save you a ton of time. Highly interactive class to make a lot of friends too. I actually enjoyed attending every class, which is something I can't say for any other class I have had.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e6042a" + } + }, + { + "text": "Gregg is the grand master of the economics department. He not only knows how to teach and have students absorb the material, but also knows how to build a community inside the classroom and across all the economics and business majors. He started a legit Trading club City Traders within the university which is super cool news for the department.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e6042b" + } + }, + { + "text": "One of the best in the department. Really has a connection with the students, which is a trait more professors need. He will also write you a great letter of recommendation if you reach out to him for one. I advise anyone who took him to do so as he is very reliable. Two thumbs up!", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e6042c" + } + }, + { + "text": "I sat in for a few of this guys classes last semester and I was in tears laughing every single time. Probably the most fun youll ever have in a principles level course. Though I believe he may have ended his teaching career, the school should give him more intermediate courses to teach. He would find a way to make them engaging and exciting.", + "pos": 0.169, + "neu": 0.805, + "neg": 0.026, + "_id": { + "$oid": "6711d76acd60fca157e6042d" + } + }, + { + "text": "Legendary. Will help you with anything you need inside and outside of the classroom. As an added bonus, he was recently a student taking the exact same classes and does everything he can to make sure you get a nice patent to your GPA so long as you put in the work. I'm glad I was in his class section, I couldn't have asked for a better semester.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e6042e" + } + }, + { + "text": "Real cool guy to talk to outside the classroom. His background and professional experiences are absolutely astonishing for his age (he is 22). I wouldn't be surprised if he becomes a major figure in the banking realm in the near future. One of the best senses of humor I have witnessed too-- it definitely made every early morning class enjoyable!", + "pos": 0.207, + "neu": 0.77, + "neg": 0.024, + "_id": { + "$oid": "6711d76acd60fca157e6042f" + } + }, + { + "text": "Gregg was my professor this semester. He is very nice, approachable, and fun to work with. Very helpful, plus he cares about his students as well. I wish we had more professors like him. I would take any Economics classes he teaches for sure!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60430" + } + }, + { + "text": "The ability to teach doesn't end at just being able to lecture to a given group of students, which Gregg Stevens does excellently well by the way; but his ability to listen to the needs of his students, as well as his unique teaching and testing styles make him one of the best professor i've ever had. Read before attending class and you'll be fine.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60431" + } + }, + { + "text": "AMAZING guy! Cares about your success inside the classroom, and goes above and beyond to help you succeed outside the classroom. He will write you a stellar letter of recommendation if you ask-- he helped me secure an internship. He is \"The Wolf of Wall Street\" of CCNY. Best of luck with your career in International Banking in Shanghai, Gregg!", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60432" + } + }, + { + "text": "Greg was an amazing TA .. Well respected by students, cares about his students and willing to go the extra mile to see his students excell", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60433" + } + }, + { + "text": "Gregg is the best TA you could hope for. He taught via trivia and was always available for questions and concerns. Would take all my ECO courses with him if I could.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60434" + } + }, + { + "text": "Gregg is the best professor you will ever have. He is funny and cares about his students. This profess is a must take.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60435" + } + }, + { + "text": "Great guy, always available if you need anything and always willing to help. In his recitation he does trivia, it is really fun and helps us learn the material as well.. Definitely a must take!", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60436" + } + }, + { + "text": "Easy A if you show up and participate. Do the reading and you will pass no problem.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60437" + } + }, + { + "text": "The best I've ever had. Super chill and and a great teacher. No doubt the best", + "pos": 0.627, + "neu": 0.373, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60438" + } + }, + { + "text": "Professor Stevens, or just Gregg for short, is one of the best teachers I've ever had. He was the lead TA for Principles of Management. He did a FANTASTIC job explaining the material and helping us out. He always understands your circumstances, and actually cares about his students. I wish I had him for every other class. AWESOME!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60439" + } + }, + { + "text": "The best TA on the planet. Really cares about the students and grades the right way. Must take prof!!!", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e6043a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76acd60fca157e6043c" + }, + "professor_name": "Ron Samson", + "rating": 3.3, + "department": "Mathematics department", + "comments": [ + { + "text": "Amazing professor for math. Loved to attend his classes. His jokes made the lectures very interesting. Explains very good and to the point. There is no way you won't pass if you pay attention. Easy to ask questions. Simply amazing. I would love to have him again but my math credits are fulfilled.", + "pos": 0.357, + "neu": 0.602, + "neg": 0.041, + "_id": { + "$oid": "6711d76acd60fca157e6043d" + } + }, + { + "text": "Made me hate math (A student in calc and pre calc), does not care about students' grades, and does not curve. Mistake for taking this professor.", + "pos": 0.065, + "neu": 0.733, + "neg": 0.202, + "_id": { + "$oid": "6711d76acd60fca157e6043e" + } + }, + { + "text": "Excellent Very attentive and patient.", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e6043f" + } + }, + { + "text": "One of the best. Shows you many applications and focuses on concepts. expect to stretch your brain - not a plug-in-formula class.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60440" + } + }, + { + "text": "QUESTIONS ON THE EXAM ARE WAY DIFFERENT FROM THE HOMEWORKS, QUIZZES, AND EVEN EXAMPLES GIVEN DURING LECTURE. I HIGHLY DO NOT RECOMMEND HIM. HE'LL MAKE YOU HATE MATH SINCE HE GIVES YOU A HARD TIME AND WOULD DEFINITELY FAIL YOU ON HIS CLASS.", + "pos": 0.052, + "neu": 0.735, + "neg": 0.212, + "_id": { + "$oid": "6711d76acd60fca157e60441" + } + }, + { + "text": "Shows you how and explains why. Lots of problem solving tips. Exams are fair focuses on understanding. Patient and passionate about math.", + "pos": 0.281, + "neu": 0.625, + "neg": 0.094, + "_id": { + "$oid": "6711d76acd60fca157e60442" + } + }, + { + "text": "Interesting lecturer with many applications. Points out many connections and shows more than one way of doing the same problems. A professor that can communicate math -thank you.", + "pos": 0.158, + "neu": 0.76, + "neg": 0.082, + "_id": { + "$oid": "6711d76acd60fca157e60443" + } + }, + { + "text": "He by far is the toughest professor. He is not prepared for class and he just picks random examples, which is not helpful in preparing you for the exams. Might as well go online and study urself. Also his exams are difficult and way too different from what he teaches. If you have the option, please DO NOT take him. save urself!", + "pos": 0.063, + "neu": 0.784, + "neg": 0.153, + "_id": { + "$oid": "6711d76acd60fca157e60444" + } + }, + { + "text": "Just don't. you barely understand anything he teaches, he doesnt make sense, he skips many steps, gives test randomly. Just don't", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d76acd60fca157e60445" + } + }, + { + "text": "I am good at math, which is the only reason I managed to do well. He is a decent teacher, but his tests are pretty hard. I studied this material already but there's always at least one question that trips me up on the tests.", + "pos": 0.155, + "neu": 0.813, + "neg": 0.032, + "_id": { + "$oid": "6711d76acd60fca157e60446" + } + }, + { + "text": "You need to RUN! His exams are SOO hard. He is rude, demeaning, and conceited. I studied so so hard and got an F! He does not care about his students, he literally wants you to fail. There is no hw or any quizzes, the grade is solely exam based. He gives so many exams and doesn't drop any or even curve. He rushes through problems and skips steps.", + "pos": 0.022, + "neu": 0.753, + "neg": 0.225, + "_id": { + "$oid": "6711d76acd60fca157e60447" + } + }, + { + "text": "He started teaching really well in the beginning, but towards the end flew through everything, and this was the part he should have slowed down. He doesn't curve, doesn't drop any exams, there's no extra credit.", + "pos": 0.041, + "neu": 0.777, + "neg": 0.182, + "_id": { + "$oid": "6711d76acd60fca157e60448" + } + }, + { + "text": "One of the worst professors you will ever encounter at city college. I'm not even sure why he is allowed to teach. His exams are tough, doesn't care for his students, prime example of a professor that only cares for their pay check.", + "pos": 0.058, + "neu": 0.717, + "neg": 0.225, + "_id": { + "$oid": "6711d76acd60fca157e60449" + } + }, + { + "text": "This professor does not want you to pass. Unless you are really good with math do not take him. The majority of the class fails and instead of adjusting his tests he says hard luck or pick another major. He is not helpful at all and practically wants you to fail. If you can avoid him do. More than half the class drops it.", + "pos": 0.082, + "neu": 0.74, + "neg": 0.178, + "_id": { + "$oid": "6711d76acd60fca157e6044a" + } + }, + { + "text": "Decent Professor. He assigns a lot of homework, but he doesn't grade them. His tests are really difficult and there are some questions you never saw in class, but he does say in class to do as many problems as you can. Tough professor; if you only need Calc I you shouldn't take him.", + "pos": 0.0, + "neu": 0.85, + "neg": 0.15, + "_id": { + "$oid": "6711d76acd60fca157e6044b" + } + }, + { + "text": "His exams are by far harder than anything he teaches in class. The hw problems and class problems are simple and easy to follow but his exam problems are completely different. Some of the questions we never went over in class! Unless you have already taken calculus and just need this class for the credits, DO NOT TAKE HIM!", + "pos": 0.078, + "neu": 0.806, + "neg": 0.117, + "_id": { + "$oid": "6711d76acd60fca157e6044c" + } + }, + { + "text": "He came into the class very unsure and agitated because he'd said that he did not like teaching Probability Theory. He seemed to be learning with us, rather than teaching us. When asked to explain a problem or solution, he took all the class time and still failed to provide a comprehensive explanation.", + "pos": 0.067, + "neu": 0.719, + "neg": 0.214, + "_id": { + "$oid": "6711d76acd60fca157e6044d" + } + }, + { + "text": "Overall,an excellent professor w/a pleasant attitude. He clearly explains the material in lecture w/ examples and the HW reinforces it. Very approachable and willing to help out with any questions you may have. Seemed very disinterested in teaching matlab. He did miss some class time,and certain material not fully covered showed up on the final.", + "pos": 0.223, + "neu": 0.753, + "neg": 0.025, + "_id": { + "$oid": "6711d76acd60fca157e6044e" + } + }, + { + "text": "He teaches by doing problems like a machine, making calc boring. Has poor time management. Our class was behind others, and he failed to teach the entire last section of the course, which was on the departmental final. Also He writes his exams the night before in pen, and does not realize how long they are. But he is willing to help students.", + "pos": 0.076, + "neu": 0.814, + "neg": 0.11, + "_id": { + "$oid": "6711d76acd60fca157e6044f" + } + }, + { + "text": "This guy was horrible. He graded so harshly and his exams were on a whole other level in comparison to his homework and what he taught in class. Dont take him, hes the worst there can be.", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d76acd60fca157e60450" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76bcd60fca157e60452" + }, + "professor_name": "Anastasiia Chorna", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "I had prof Chorna over the summer and she was honestly so amazing. She makes mistakes here and there when lecturing but that is anyone. Her tests her based off review sheets she gave and they were very similar but they were still tough tests. She was honestly such an amazing professor and always encouraged students to do their best. Tough but fair.", + "pos": 0.31, + "neu": 0.628, + "neg": 0.062, + "_id": { + "$oid": "6711d76bcd60fca157e60453" + } + }, + { + "text": "She is an intelligent professor who adheres to the class schedule. Her tests were based off the review sheet except for the final. For a class like calculus 2, I would not rely only on class material. You really have to use outside sources (YouTube, calc textbook) to fully grasp the concepts. Overall, she was a caring and qualified teacher.", + "pos": 0.132, + "neu": 0.868, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60454" + } + }, + { + "text": "An amazing teacher. I had her during my Cipass Math 190 Accelerated course and she was amazing. Taught us a few tricks and was always available to provide her assistance during class. She will always insist that you go to Tutoring and do the HW. But she is really nice", + "pos": 0.159, + "neu": 0.819, + "neg": 0.022, + "_id": { + "$oid": "6711d76bcd60fca157e60455" + } + }, + { + "text": "Tough course but an amazing professor. She goes fast but will happily clarify anything confusing and does plenty of practice in class. Her review sheets before exams are probably the best in all of calculus 2 and can singlehandedly get you through the course. Calculus 2 is an extremely difficult course but Professor Chorna is your best option byfar", + "pos": 0.268, + "neu": 0.642, + "neg": 0.09, + "_id": { + "$oid": "6711d76bcd60fca157e60456" + } + }, + { + "text": "Amazing professor; DO NOT believe negative reviews, they come from students who don't put in work. Chorna is extremely nice and caring, flexible, and an excellent teacher. She made calc make sense and teaches clearly. Her exams are more than fair, though her final is tough. You're lucky if u get her. She actually teaches unlike other profs!!!!!!", + "pos": 0.363, + "neu": 0.618, + "neg": 0.019, + "_id": { + "$oid": "6711d76bcd60fca157e60457" + } + }, + { + "text": "SHES THE GOOOOOOOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60458" + } + }, + { + "text": "She is bad at teaching math, goes too fast, doesn't go over what she assigns, and her examples are nothing like what's on the workbook. Her teaching methods are a mess; half of the time, she doesn't even know what she is doing. She doesn't tell you or go over the things you are supposed to do in class.", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d76bcd60fca157e60459" + } + }, + { + "text": "She goes so fast whether you understand topic or not. More than half class dropped out before final. 3 midterms and 1 lowest dropped. Good thing is she gives review sheet before exam but she does not provide answer keys. Her review sheets questions are similar to the departmental hard finals that's why it can be helpful to prepare final.", + "pos": 0.087, + "neu": 0.861, + "neg": 0.052, + "_id": { + "$oid": "6711d76bcd60fca157e6045a" + } + }, + { + "text": "Grade is composed of Pearson,3 exams(lowest dropped),and final. This is a class where you need to practice a lot outside of lecture. Her lectures are fast and she doesn't always answer questions in the most understandable way but she DOES try to help. You just need to be willing to put in the effort. Do the practice questions she posts before exams", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e6045b" + } + }, + { + "text": "40% Final | 50% 2 of 3 Midterms | 10% Online HW (Pearson) | Ace the 1st & 3rd midterms (75+). Do the review she gives a week before each midterm (potential questions). Write as much as you can for partial credit. Do the online HW. Study the sample final (it's online). Lectures are okay, solve the problems similar to how she does it. No curve.", + "pos": 0.087, + "neu": 0.845, + "neg": 0.068, + "_id": { + "$oid": "6711d76bcd60fca157e6045c" + } + }, + { + "text": "Professor Chorna obviously not ready to teach yet. She is missing a lot in the way how math can be taught.", + "pos": 0.0, + "neu": 0.815, + "neg": 0.185, + "_id": { + "$oid": "6711d76bcd60fca157e6045d" + } + }, + { + "text": "This professor teaches for people who understand Calculus 3 beforehand. She will help you outside of class, however, it is not enough for her exams. In class, she was lazy to do the problems and doesn't even provide the answer to integrals. You can't even check your work. Her exams are from a long review, don't expect answers to all questions.", + "pos": 0.041, + "neu": 0.88, + "neg": 0.079, + "_id": { + "$oid": "6711d76bcd60fca157e6045e" + } + }, + { + "text": "She's a good person but not a good teacher. Class is most productive if you already read-up and knew the material beforehand. If you can handle doing that, great for you. But I couldn't. I had to learn primarily online. Tests were fair, she gave review packets which is more than most professors would give. She's a good grader tho. Use the tutors!", + "pos": 0.194, + "neu": 0.765, + "neg": 0.041, + "_id": { + "$oid": "6711d76bcd60fca157e6045f" + } + }, + { + "text": "Anastasiia is underappreciated. she is accessible outside of class, accommodating when needed, and extremely clear regarding her expectations. Like any other math course, get ready to study at home, A LOT. she is very generous with partial credit but you gotta know your stuff. overall she's a great professor and her classes were really enjoyable!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60460" + } + }, + { + "text": "Laziest professor I have seen so far. Asked for lecture notes to be uploaded she never did, barely does any example during lecture, all of her lectures were just about going over proof/theorem. No curve as well so if you got her as your professor in any of the upcoming semester good luck and may God help you pass", + "pos": 0.181, + "neu": 0.736, + "neg": 0.083, + "_id": { + "$oid": "6711d76bcd60fca157e60461" + } + }, + { + "text": "Doesn't teach, just reads off her notes and makes things more complicated than it has to be. Learned everything online or through reading because you will not learn anything from the lectures.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60462" + } + }, + { + "text": "Nice professor but doesn't really know how to teach. Ask questions. Write as much as you can on your tests bc she gives partial points. 40% final, 60% midterms (lowest exam grade dropped). Gives 5% extra credit, which is Pearson hw (it rlly boost your grade. I did majority of it & went from a 74 to 79) Recommend watching youtube videos to study.", + "pos": 0.162, + "neu": 0.792, + "neg": 0.046, + "_id": { + "$oid": "6711d76bcd60fca157e60463" + } + }, + { + "text": "RMP doesn't really do Chorna justice. Just had my final yesterday, & I can say her practice problems and tests helped me prepare for it. A lot of her notes during lecture comes straight from the textbook (easy to follow though) but she walks through it pretty well. Calc 2 in general can be really tough, but shes a pretty prof", + "pos": 0.229, + "neu": 0.716, + "neg": 0.055, + "_id": { + "$oid": "6711d76bcd60fca157e60464" + } + }, + { + "text": "Just stay on top of the material and use lecture period to ask questions and practice. For exams, she always provide a sheet full of old final exams practice questions a week before the exam. All of the questions on her test will be picked from the review sheet, so it's all fair game. If you practice enough, you will be prepared for the final.", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60465" + } + }, + { + "text": "She doesn't care about her students. No matter what happens in your life don't expect an email reply on time. Even passing away of a family member isn't an excuse. You are expected to do everything on its time no makeups. Don't take her if you want to learn. May be if you want to waste time and money sure", + "pos": 0.073, + "neu": 0.778, + "neg": 0.149, + "_id": { + "$oid": "6711d76bcd60fca157e60466" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76bcd60fca157e60468" + }, + "professor_name": "Stav Kemeny", + "rating": 3.5, + "department": "Biology department", + "comments": [ + { + "text": "I actually took her BI202 in another uni. She is very good. Shared course materials that were very helpful and the exams were exactly what we studied in class. The textbook was helpful to understand the material but she was very clear and we covered many questions in class. The classes are very long and she made sure that everybody participated", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60469" + } + }, + { + "text": "Very long lectures. No extra credit. Exam is hard if your Bio background is not strong. She is Tough grader and take out points for every little thing. She has PHD so clearly she knows what she talking about but if ya worried about GPA don't take her.", + "pos": 0.042, + "neu": 0.764, + "neg": 0.194, + "_id": { + "$oid": "6711d76bcd60fca157e6046a" + } + }, + { + "text": "I took 3 courses with Prof. Kemeny. She was very good at teaching. It was clear that she is excited about the topics and made our classes very active. I learned a lot, including her tips about how to study that are going to be useful in med school. She requires reading and homework. We had a few tests and the grade was made from multiple parts.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e6046b" + } + }, + { + "text": "tough grader would never take her class ever again and no late assignment what is this high school?", + "pos": 0.0, + "neu": 0.812, + "neg": 0.188, + "_id": { + "$oid": "6711d76bcd60fca157e6046c" + } + }, + { + "text": "I'm not sure why her reviews on here are so negative. Prof. Kemeny was excellent and made me rethink medical school altogether with how engaging she made the genetics class. She always posted very insightful and engaging videos before class. Which made the material all the more interesting. I highly recommend her genetics course.", + "pos": 0.213, + "neu": 0.689, + "neg": 0.098, + "_id": { + "$oid": "6711d76bcd60fca157e6046d" + } + }, + { + "text": "Very clear and listening to the students. Thank u!", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e6046e" + } + }, + { + "text": "Horrible profferer! The whole semester only 3 people talked that tell you something. She refused to open the online quizzes after we submit them so we never knew what we got wrong and what's the right answer. Same with hw assignments. She takes forever to grade DB which she treats like it is a research paper. Save yourself and your gpa and run!!", + "pos": 0.078, + "neu": 0.79, + "neg": 0.132, + "_id": { + "$oid": "6711d76bcd60fca157e6046f" + } + }, + { + "text": "records lectures online, a lot of lecture is a waste because she just wants everyone to participate, shes a caring teacher but you can say she cares too much, teaching wise she's not perfect but allows cheat sheet on exams.", + "pos": 0.189, + "neu": 0.628, + "neg": 0.183, + "_id": { + "$oid": "6711d76bcd60fca157e60470" + } + }, + { + "text": "A real teacher, in contrast to many other science professors. Makes an effort to explain and make it interesting. She uses many different tools on blackboard. She was very considerate when we needed review before exam. She posts helpful videos and practice homework. The exams are only 50% of the grade, you can get a good grade with doing the work", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60471" + } + }, + { + "text": "Took Professor Kemeny during the summer semester. I really enjoyed her lecturing. quizzes were based 100% off of the homework on tophat. Same with exams. She makes what you need to know very clear by repeating questions too. Overall, she's very knowledgeable, and I would really recommend taking her as a professor.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60472" + } + }, + { + "text": "This professor made me decide that i am going to pursue genetics for my career, she showed us how important and interesting it is . yes this is a hard course, i studied a lot and not always had the time. you need to come to lectures and use all the materials she gives, like videos and practice questions to prepare. i wish she had more courses! you", + "pos": 0.167, + "neu": 0.815, + "neg": 0.018, + "_id": { + "$oid": "6711d76bcd60fca157e60473" + } + }, + { + "text": "Dont take hard classes with her, its 3x a week, multiple quizzes weekly, for recitation inperson and online hw+online quizzes, its meant to help you but the works load doesnt leave much time to study and enjoy learning genetics! But shes still passionate about teaching!!!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d76bcd60fca157e60474" + } + }, + { + "text": "She is not the worst but I think there is way better professors than her. She is assign too much so if u taking her class with other hard classes you will not ace the class. The exams are really hard you need to understand. Also, be ready to self study because she do not know how to answer questions. She have an attitude and do not offer ext credi", + "pos": 0.119, + "neu": 0.835, + "neg": 0.047, + "_id": { + "$oid": "6711d76bcd60fca157e60475" + } + }, + { + "text": "She is tough! Lots of reading and preparation in expected in her Genetics class. She can seem very distant and aloof but is very nice. She knows her stuff and always comes prepared for classes. She genuinely wants you to succeed and to relate the material to your daily life. Be sure to complete the weekly assignments on Blackboard!", + "pos": 0.206, + "neu": 0.776, + "neg": 0.018, + "_id": { + "$oid": "6711d76bcd60fca157e60476" + } + }, + { + "text": "Quite easy if you just read the textbook, she assigns sections of chapters. Make sure you study the textbook in conjunction with the slides as she may not be super clear during the lecture. She also answers questions on BB on things that may not seem 100% clear, so ask away, she responds quickly. Stay on top of textbook readings and you'll be fine.", + "pos": 0.124, + "neu": 0.774, + "neg": 0.102, + "_id": { + "$oid": "6711d76bcd60fca157e60477" + } + }, + { + "text": "This professor put a lot of effort to explain everything and make sure that we understand. She gives homework every week to make us study. I like it that she push us.The exams are hard but if you study you succeed. I recommend her", + "pos": 0.214, + "neu": 0.762, + "neg": 0.023, + "_id": { + "$oid": "6711d76bcd60fca157e60478" + } + }, + { + "text": "I took her last summer. She's definitely better to take for Genetics. The material is hard to cover in a short time, but you can tell she enjoys teaching the subject and tries to introduce fun things about it. She has weekly quizzes in the summer. Tip: stay on top of studying for quizzes and you'll be prepared for midterms.", + "pos": 0.241, + "neu": 0.742, + "neg": 0.017, + "_id": { + "$oid": "6711d76bcd60fca157e60479" + } + }, + { + "text": "I dont know why prof kemeny is rated bad, she is a very nice and caring professor if you know her. The class is difficult and you definitely need to do so much on your part. Her class is good if you are a good and dedicated student.", + "pos": 0.282, + "neu": 0.624, + "neg": 0.094, + "_id": { + "$oid": "6711d76bcd60fca157e6047a" + } + }, + { + "text": "Dr. Kemeny is not the worst professor ever. However, her course was hard but I think she did a good job at teaching the course. There is A LOT of homework and quizzes. Her exams are difficult as well. I suggest working hard in lab. Lab was very easy and fun and helps bring your grade up. Overall, do the readings and ask questions.", + "pos": 0.258, + "neu": 0.669, + "neg": 0.074, + "_id": { + "$oid": "6711d76bcd60fca157e6047b" + } + }, + { + "text": "Its very obvious the person who snitched wrote the review right under this one. They must got no life who checks ratemyprofessor on Christmas I didnt cheat but regardless whoever that person is just a miserable person. As for the Professor shes honestly fine but take someone different if you can", + "pos": 0.133, + "neu": 0.769, + "neg": 0.099, + "_id": { + "$oid": "6711d76bcd60fca157e6047c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76ccd60fca157e6047e" + }, + "professor_name": "Ahmed Elkhouly", + "rating": 4.7, + "department": "Economics department", + "comments": [ + { + "text": "Great professor, very easy class. First few classes came off as really common knowledge to me, but the rest of the course will be important to know and important towards the midterm and final (grade is 50% midterm, 50% final). Absolutely nothing wrong with the professor except the timing of the day that might become slightly inconvenient for some.", + "pos": 0.187, + "neu": 0.774, + "neg": 0.039, + "_id": { + "$oid": "6711d76ccd60fca157e6047f" + } + }, + { + "text": "He was a good professor and uploaded some lectures to his youtube, but not all of them so although attendance isnt mandatory id recommend going. The grading is 50% midterm project and 50% final project, so dont screw up. He would repeat some stuff a lot but he was a good lecturer overall.", + "pos": 0.128, + "neu": 0.805, + "neg": 0.067, + "_id": { + "$oid": "6711d76ccd60fca157e60480" + } + }, + { + "text": "Very caring professor, decent lecturer, might be hard to pay attention since he repeats single points many times. However he's great, and the course is very basic, and the grade criteria is pretty easy to fulfill. 50% midterm project and 50% final project.", + "pos": 0.3, + "neu": 0.65, + "neg": 0.051, + "_id": { + "$oid": "6711d76ccd60fca157e60481" + } + }, + { + "text": "Our course was online so it was very easy. He gave us breaks within the 2hr 30 min lectures which is kind of him. The class was essentially graded on 2 things, a midterm project and final project. Both were 50% of your grade. If you have any questions while doing the midterm / final project, he's willing to help you out.", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60482" + } + }, + { + "text": "Great professor who encourages discussion amongst students. Summary notes of lectures are required for attendance. Midterm and final are based on topics he goes over in class, so it's important to attend lectures. Cares for students and is always willing to address questions and concerns. Usually doesn't reply to emails, so ask questions in class.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60483" + } + }, + { + "text": "I dont like how he dont understand some student have full time job and full time student. I email him during the semester explaining why my assignment was late. Never respond back to me. Didnt have to attend the class but have to watch the recording. His recording graphs are very messy and he ask us to draw great graphs based on what he draws.", + "pos": 0.078, + "neu": 0.851, + "neg": 0.072, + "_id": { + "$oid": "6711d76ccd60fca157e60484" + } + }, + { + "text": "Very passionate about teaching economics, really wanna you to learn something and give students extra credit opportunities", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60485" + } + }, + { + "text": "sleeper class with recorded lectures. I rewatched all the lectures but had to repeat a lot of parts as when asked specific questions to dive deeper for better understanding, he'd repeat the same responses with a louder voice... He's a nice person but bad lecturer. Take him if you dont care for the class.", + "pos": 0.115, + "neu": 0.761, + "neg": 0.125, + "_id": { + "$oid": "6711d76ccd60fca157e60486" + } + }, + { + "text": "Throughout the course professor Elkhouly was outstanding. He was very kind and was easily reachable. However at the end, no one was able to contact him. For some reason, he decided that a 94 is an A- and not an A. Grade consists of 2 projects (Midterm & Final). I got both grades 3 hours before the grade deadline and without feedback. Why so long?", + "pos": 0.138, + "neu": 0.832, + "neg": 0.03, + "_id": { + "$oid": "6711d76ccd60fca157e60487" + } + }, + { + "text": "Not a fan of this professor despite my choices. He tells us information that is sometimes highly challenged by students without giving great reason. He is hard to reach by email or his private facebook group. Instead of exams he gave us projects. The first one was good the second one wasn't clear in terms of project details. Honestly confusing prof", + "pos": 0.097, + "neu": 0.704, + "neg": 0.2, + "_id": { + "$oid": "6711d76ccd60fca157e60488" + } + }, + { + "text": "Lecture Heavy. Exams based on lectures. Big project with multiple parts to it. There is extra credit. Overall, this professor makes economics really fun, easy to learn, and stimulates interest on the coursework. He answers your questions during and after lecture. Gives good feedback on project. I highly recommend him. Be sure to study well.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60489" + } + }, + { + "text": "Great professor. Keeps things interesting. Make sure to attend class on time because everything you need to know for tests is mentioned during lectures. Take good notes because a lot of those things are not mentioned in the textbook (which you won't really need if you pay attention in class).", + "pos": 0.205, + "neu": 0.771, + "neg": 0.024, + "_id": { + "$oid": "6711d76ccd60fca157e6048a" + } + }, + { + "text": "Very good professor, really cares about students learning. When I took his class, money and banking, nothing seemed new to me but then he expanded my learning to more details from my previous classes. Final was difficult, so I dont know what grade Ill get,but still,highly recommended teacher. I never write reviews but I had to do so for this one.", + "pos": 0.093, + "neu": 0.807, + "neg": 0.1, + "_id": { + "$oid": "6711d76ccd60fca157e6048b" + } + }, + { + "text": "Biggest thing I recommend is, GET REST the night before. You do not want to be asleep for this class. Everything you will learn comes from the written lectures. Particiaption is key to understanding. Exams for the most part follow the review, but just google econ questions for extra help. Always review notes before class, and rewrite lecture after.", + "pos": 0.085, + "neu": 0.897, + "neg": 0.018, + "_id": { + "$oid": "6711d76ccd60fca157e6048c" + } + }, + { + "text": "He provides lots credits up to 20 points toward to your final grade, that will definitely raise grade to the A. Cool and funny class!", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e6048d" + } + }, + { + "text": "Good professor.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e6048e" + } + }, + { + "text": "my grade was so low but I did extra credit after class every Saturday and I got an A! omg! so easy class!! the extra credit was my faaaaavorite part! very fun to me ;)", + "pos": 0.397, + "neu": 0.567, + "neg": 0.037, + "_id": { + "$oid": "6711d76ccd60fca157e6048f" + } + }, + { + "text": "THE best professor I've taken at CCNY. He genuinely cares about each student and will explain concepts multiple times until everyone understands. He is a very patient professor. Be sure never to miss lecture because his exams are mostly from lecture notes. He's such a great professor. Would take any class with him again!", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60490" + } + }, + { + "text": "Absolutely amazing. Truly one of the best professors at CCNY. He genuinely cares about his students and is willing to go over any of the material as many times as needed until every single person understands it. He makes taking a Saturday class more than bearable and fun too.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60491" + } + }, + { + "text": "He is an amazing professor. This is 100% lecture heavy, you have to attended class or else you will get confused. There is very little hw, thats why attending lecture is so important, all tests come from lecture. Important that you take good notes and do not be afraid to ask questions. Class will be v difficult if you refuse to put in effort.", + "pos": 0.145, + "neu": 0.761, + "neg": 0.094, + "_id": { + "$oid": "6711d76ccd60fca157e60492" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76ccd60fca157e60494" + }, + "professor_name": "Nick Pappas", + "rating": 4.4, + "department": "Philosophy department", + "comments": [ + { + "text": "Guy teaches from course study and is great with students of all ages. Great taste in food and mascots! ::)", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60495" + } + }, + { + "text": "Slightly hard, but that might be topic. Super nice, willing to work with you, wants to help students learn. Amazing professor.", + "pos": 0.511, + "neu": 0.459, + "neg": 0.03, + "_id": { + "$oid": "6711d76ccd60fca157e60496" + } + }, + { + "text": "Amazing lectures, gets you engaged and leaves you to think. Nine papers that were only one page each, and one midterm. Highly recommended.", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e60497" + } + }, + { + "text": "Professor Pappas is a good speaker and does his best to make the class interesting. He is great but in a class of 200 students with TAs who & grade 8 out of your 9 papers, the class is not as great as it could have been with the TAs grading harshly for each weekly 1 pg paper. Avoid grades less than C, with mostly B+/Bs and 2-3 As to get near A/A-", + "pos": 0.108, + "neu": 0.805, + "neg": 0.087, + "_id": { + "$oid": "6711d76ccd60fca157e60498" + } + }, + { + "text": "He is very nice guy but his TA s are hard as anything", + "pos": 0.14, + "neu": 0.751, + "neg": 0.109, + "_id": { + "$oid": "6711d76ccd60fca157e60499" + } + }, + { + "text": "Great professor, clearly loves philosophy and makes you want to love it as well. There is a lot of reading to get through this course but its not necessary.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e6049a" + } + }, + { + "text": "Great professor, passionate about Philosophy, smart, and entertaining lecturer. I recommend him to anyone who wants to take a Philosophy class. He had two exams (1st & final) and four 3-5 page essays. The TA Mallozzi (who grades papers) is terrible, provides no feedback for grades given and everyone in class complained. He prob curved bc of her.", + "pos": 0.212, + "neu": 0.679, + "neg": 0.109, + "_id": { + "$oid": "6711d76ccd60fca157e6049b" + } + }, + { + "text": "Toughest class I've ever experienced. Prof Pappas is almost too smart to teach but if you perceiver, you'll learn a lot. It was a tough course mainly because he talks about ancient philosopher as if you already had a lot of knowledge and thus goes in detail without ever giving you the broad perspective.", + "pos": 0.03, + "neu": 0.875, + "neg": 0.095, + "_id": { + "$oid": "6711d76ccd60fca157e6049c" + } + }, + { + "text": "Where do I even start? This professor is quite the character- very eccentric. He loves Plato and that whole antiquity era. He explains the ancients as if he's conversed with them and he expects you to elaborate on your papers as if you've had a discussion with Plato as well! Just be as clear as possible because you won't get clarity from this man!", + "pos": 0.129, + "neu": 0.839, + "neg": 0.032, + "_id": { + "$oid": "6711d76ccd60fca157e6049d" + } + }, + { + "text": "He is a great lecturer and teacher. But that's only half of it. Unfortunately, the classes are too big and TA's are necessary to take over a day for \"clarification.\" Be warned, some TA's are brutal. I was unable to take the first class and he was available through email. He responded quickly. TAKE HIS CLASS!", + "pos": 0.038, + "neu": 0.785, + "neg": 0.177, + "_id": { + "$oid": "6711d76ccd60fca157e6049e" + } + }, + { + "text": "The only reason CCNY has this instructor is because there no jobs in Philosophy anywhere.He's a Harvard Grad.Very intelligent,but intelligent profs are a dime a dozen.It was his attitude: very warm,non-judgemental,and really loves his job.Very organized.All assignments clearly presented. TONS of reading and a very tough grader.Highly Recommended", + "pos": 0.207, + "neu": 0.724, + "neg": 0.069, + "_id": { + "$oid": "6711d76ccd60fca157e6049f" + } + }, + { + "text": "Greatest lecturer in CCNY. Every student at CCNY should experience Pappas. From his hilarious examples about a cats pride, to his unorthodox poses when explaining. As far as the course was concerned, it was A LOT of reading. So much so that I sparknoted 1 entire book. I think he's a fair grader.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e604a0" + } + }, + { + "text": "Pappas is one of the smartest man i know...he is also very nice...The problem is with the TAs especially Mallozzi....She is very hard grader and will kill your paper....Avoid her!!!", + "pos": 0.099, + "neu": 0.646, + "neg": 0.255, + "_id": { + "$oid": "6711d76ccd60fca157e604a1" + } + }, + { + "text": "He is an amazing professor, very funny and compassionate about what he does. Very understanding.", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e604a2" + } + }, + { + "text": "Pappas is one of the nicest guys i've ever met. approach him and you'll be greeted with a smile and a joke. he's also a radiantly, even stunningly intelligent speaker.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e604a3" + } + }, + { + "text": "Pappas is wonderful! He really pushes his students and his lectures are so great they should be recorded! It was a pleasure to be his student. He is very delightful and returns papers and assignments fast. He responds to emails fast too. He is so helpful and smart. Take his class!!!!!", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e604a4" + } + }, + { + "text": "Pappas is just a great guy. He's a wonderful lecturer and a genuinely funny, kindhearted person. He really, really knows his stuff, too. His class isn't an easy A, though, so if that's what you're after you should probably look elsewhere. (You can def. get one, but it will take a good deal of work- he's one of the more demanding profs at ccny IMO)", + "pos": 0.144, + "neu": 0.795, + "neg": 0.061, + "_id": { + "$oid": "6711d76ccd60fca157e604a5" + } + }, + { + "text": "a gem- truly an entertaining lecturer, always keeping it light with humor but never shirking the content; explains everything in clear, eloquent speech; wonderfully kind outside of class- he welcomed me to his office and (seemed) happy to speak with me; also knows is a master of the material. on the whole a great man, and a gift to this school.", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e604a6" + } + }, + { + "text": "He's a great professor and his passion for the material is evident. The reading load is a lot, however if you attend class and ask questions, most things should be clear. He's very funny and very charismatic, which makes it easy to listen to him. I have had the pleasure to speak to him outside of class and I can say is that he is a very nice man.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d76ccd60fca157e604a7" + } + }, + { + "text": "A brilliant teacher and a natural comedian. He doesn't look down on you, so don't be afraid to ask a question or two. You might complain about the reading load, but this is college--what do you expect? Also, pay attention to what he writes on your papers. You'll come to appreciate it.", + "pos": 0.161, + "neu": 0.782, + "neg": 0.057, + "_id": { + "$oid": "6711d76ccd60fca157e604a8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76dcd60fca157e604aa" + }, + "professor_name": "Carlito Berlus", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "If you fail this class, consider yourself the problem. He gives a lot of chances to students, and his lectures were interesting. His exams were quite long since they're essay-based questions, but it's manageable as long as you know what you're talking about. Give some real life examples too to get that word count. Make sure to do all the papers!", + "pos": 0.097, + "neu": 0.841, + "neg": 0.062, + "_id": { + "$oid": "6711d76dcd60fca157e604ab" + } + }, + { + "text": "The GOAT. He's engaging and knows how to prioritize his teaching to ensure we understand best. I found him hysterical and enjoyable even if he got into politics a bit more than necessary, but I'd take him again in a heartbeat. You will not find a more chill but also interesting professor. I learnt a lot.", + "pos": 0.185, + "neu": 0.798, + "neg": 0.017, + "_id": { + "$oid": "6711d76dcd60fca157e604ac" + } + }, + { + "text": "This professor is HORRIBLE 4 *summer courses*. The lectures are mid; writing heavy, chptr quizzes and a 10 PAGE PAPE& due at the end of the semester. I turned my camera on, received good grades on quizzes, HWs, & a final paper, and still got a B+ smfh. Offers extra credit but doesn't bother uploading them! Doesn't grade or answer emails on time.", + "pos": 0.097, + "neu": 0.865, + "neg": 0.038, + "_id": { + "$oid": "6711d76dcd60fca157e604ad" + } + }, + { + "text": "Professor Berlus is great!! If you are interested in social psychology, he will definitely strengthen your interest. He uses a lot of relevant examples in his lectures that help you understand the topic. The workload is pretty light. There are 5 question quizzes every recitation, and one 7 page essay that was really fun to write!", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604ae" + } + }, + { + "text": "Such a green professor, honestly would recommend everyone take one of his classes if its an option. There is a lot of writing for the class.. but its college so what else do you expect. He's one of the most human professors at city and very receptive and understanding to students needs and situations. 10/10 guy.", + "pos": 0.065, + "neu": 0.935, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604af" + } + }, + { + "text": "Good professor, good style of teaching just a little bit disorganized I think this is due to him also being an advisor. A few exams, one homework assignment, and one big paper. Things don't get graded for a while. \nHowever, I would still recommend him due to his teaching style.", + "pos": 0.148, + "neu": 0.818, + "neg": 0.034, + "_id": { + "$oid": "6711d76dcd60fca157e604b0" + } + }, + { + "text": "He's amazing, TAKE HIM, you won't regret it. he's very easygoing and very understanding. lectures were also very interesting. he made it easy to follow along. just get your assignments in on time and you're good.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604b1" + } + }, + { + "text": "His lectures were outstanding. The content in his class is straightforward. Ultimately, your grade is your responsibility. Weekly quizzes, 3 exams, 2 papers with recitation. Understanding and funny. Just show up and do the work and you'll pass easily. 10/10 take him if you can.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604b2" + } + }, + { + "text": "Great and relatable Professor. He is more down to earth with his lectures. His lectures are easy to understand and he provides you with the material straightforward. Quiz every week, test every four chapters, one essay.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604b3" + } + }, + { + "text": "Carlito speaks to us so smoothly. He makes psych so easy and he relates to the real world. 100/10. If anything, I would take him over and over,", + "pos": 0.122, + "neu": 0.878, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604b4" + } + }, + { + "text": "He is really funny and nice, have outline of book, it make us a lot easier on midterm. But be aware, will have weekly quiz, and around 4 exams and few paper. But almost no homework in whole semester except few paper.", + "pos": 0.13, + "neu": 0.819, + "neg": 0.051, + "_id": { + "$oid": "6711d76dcd60fca157e604b5" + } + }, + { + "text": "He is funny and relatable. TAKE HIM you wont regret", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604b6" + } + }, + { + "text": "I really enjoyed this professor's lectures. Not only does he make psychology more interesting, but he makes sure everyone understands the materials.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604b7" + } + }, + { + "text": "Most amazing professor on Earth! He will seriously make you wanna drop your major and pick up psychology he's so funny and so great! Study and you will pass! Impossible to not absolutely love this class!!!", + "pos": 0.264, + "neu": 0.591, + "neg": 0.145, + "_id": { + "$oid": "6711d76dcd60fca157e604b8" + } + }, + { + "text": "One of the best professors. Really enjoyed coming to his class. Kept everyone engaged, explained the material very well, wasn't annoyed to clarify or explain the content, wish he taught every single psychology course. I highly highly recommend you take him, he's amazing. TAKE HIM, TAKE HIM.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604b9" + } + }, + { + "text": "Professor is not that hard--I almost failed that class, but in retrospective had I put the effort in this class, I would have gotten a letter A grade. I was dealing with my own personal issues at the time, and had little to no time to do the readings and study for his bi-weekly quizzes.", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d76dcd60fca157e604ba" + } + }, + { + "text": "He is great and hilarious, but his tests are really hard. Lots of quizzes and 3 tests and he doesn't even drop one.", + "pos": 0.239, + "neu": 0.687, + "neg": 0.074, + "_id": { + "$oid": "6711d76dcd60fca157e604bb" + } + }, + { + "text": "Hes an amazing professor and teaches Psychology really well. Hes incredibly funny and will keep you engaged. Participate, study for tests and you'll do well.", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604bc" + } + }, + { + "text": "Best professor I have ever had.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604bd" + } + }, + { + "text": "You take him, you learn. Really nice and smart guy. I love going to his class even at 6:30. The class is really fun. I only read his notes (he posts online) and going to class and i got an A+. But be aware of the quiz and exams. Quite a lot of quizzes. Pay attention in class. His notes are not enough to get above 90 for the exams. Take him!!!!!!", + "pos": 0.128, + "neu": 0.851, + "neg": 0.02, + "_id": { + "$oid": "6711d76dcd60fca157e604be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76dcd60fca157e604c0" + }, + "professor_name": "Tsz Chung Lo", + "rating": 4.6, + "department": "Mathematics department", + "comments": [ + { + "text": "He is very straight up with the grading. I wish i focused more during his class. Made very small mistake during final exam. But if u are able to get good grades on quiz u will pass this class.", + "pos": 0.202, + "neu": 0.757, + "neg": 0.041, + "_id": { + "$oid": "6711d76dcd60fca157e604c1" + } + }, + { + "text": "the professor himself is super easy, all you have to do is put in the work and study and I am sure you will pass. He gives sample midterms to help you study and reminds you of important dates and to prepare for them.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604c2" + } + }, + { + "text": "Great professor. Lo gives very straightforward and clear notes to go with the class, and gives full review packets for exams so the class is very clear. This class is very quiz and exam heavy, so there was a lot of studying expected in this class, but he dropped two quiz grades and one exam grade.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604c3" + } + }, + { + "text": "Amazing professor. He is very organized, and he teaches well. Also, you can always reach him by email. I highly recommend him!", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604c4" + } + }, + { + "text": "Took him last sem and he was genuinely the best math prof I've taken so far in City College. Super thorough with lectures. Made the material easy to understand. I wish he taught calc because the calc profs suck here. The people who complain about his class honestly just don't study. I got a C because I was super late to my final and bombed it LOL.", + "pos": 0.276, + "neu": 0.663, + "neg": 0.062, + "_id": { + "$oid": "6711d76dcd60fca157e604c5" + } + }, + { + "text": "Not again.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604c6" + } + }, + { + "text": "Good professor, explains topics clearly and has multiple office hours before exams to make sure people have every question answered. Just be prepared to study.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604c7" + } + }, + { + "text": "Accent can sometimes make it a little hard to understand things but he's a good teacher. Answers any questions students have, is available for office, doesn't assign hw but encourages tutor/practice. There are loads of problems especially on WebAssign and review, utilize them they will help you a ton, do the practice problems, review your notes:)", + "pos": 0.162, + "neu": 0.72, + "neg": 0.117, + "_id": { + "$oid": "6711d76dcd60fca157e604c8" + } + }, + { + "text": "Has an accent that is tough to understand what he says. Goes through material extremely quickly and the tests rely very heavily on the lectures which are extremely boring.", + "pos": 0.0, + "neu": 0.868, + "neg": 0.132, + "_id": { + "$oid": "6711d76dcd60fca157e604c9" + } + }, + { + "text": "He is a great professor, he simplifies the topics and makes them easy to understand. If you don't come to class, take notes, and practice, you won't pass the class. Tests are the overall grade (it is not up to him, it is the Math Department Policy). He is kind and willing to help during his office hours.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d76dcd60fca157e604ca" + } + }, + { + "text": "I had him during COVID so we were mostly online but he gives extension on the textbook website that we have to buy online on cengage(webassign), he does count tests heavily but he takes time to explain the topic and he tries to explain them but the topics are difficult.", + "pos": 0.0, + "neu": 0.938, + "neg": 0.062, + "_id": { + "$oid": "6711d76dcd60fca157e604cb" + } + }, + { + "text": "He is very understanding and fair. Don't worry about his exams just pay attention in his class, go to his office hours, do his homework, and practice questions.", + "pos": 0.158, + "neu": 0.797, + "neg": 0.045, + "_id": { + "$oid": "6711d76dcd60fca157e604cc" + } + }, + { + "text": "He's such an amazing teacher who makes Calculus such an easy class. He breaks down every concept to very simple terms to make it easy for us to understand. You can't miss a single lecture cause he covers a lot. He's very laid back but very funny at times. People can have a difficult time here but that's honestly on the student.", + "pos": 0.213, + "neu": 0.743, + "neg": 0.044, + "_id": { + "$oid": "6711d76dcd60fca157e604cd" + } + }, + { + "text": "He is the best math professor I had and I had a few in CCNY. He gives quizzes but honestly those quizzes help prepare you. He gives you papers with formulas to memorize and even review packets before the exams. He even comes in before the exam to review. He is AWESOME! If you fail, its on you.", + "pos": 0.229, + "neu": 0.707, + "neg": 0.063, + "_id": { + "$oid": "6711d76dcd60fca157e604ce" + } + }, + { + "text": "I loved Professor Lo. He was strict, but very clear in his expectations and extremely organized. As long as study all the class notes, listen to what he says and understand (or memorize) the material, you should do well in his class. If you are naturally good at math, you can half pay attention in class and still get an A+", + "pos": 0.182, + "neu": 0.796, + "neg": 0.023, + "_id": { + "$oid": "6711d76dcd60fca157e604cf" + } + }, + { + "text": "Lo made this class very straightforward. The problems he would do in class would be exactly the same as the ones that would come on the quizzes, homework, and tests and final there were no curveballs except on the excel homework but he did demos on how to do it and always encouraged visits during his office hours for help with anything..", + "pos": 0.127, + "neu": 0.822, + "neg": 0.052, + "_id": { + "$oid": "6711d76dcd60fca157e604d0" + } + }, + { + "text": "Excellent teacher. His lectures are amazing and he gives useful practice exercises (very similar to the exam exercises). By paying attention to the lectures and doing the test reviews everybody can learn and can do well in the exams. Quizzes are an important part of the grade (18%) but he drops the lowest 2. HW is doable.", + "pos": 0.151, + "neu": 0.796, + "neg": 0.053, + "_id": { + "$oid": "6711d76dcd60fca157e604d1" + } + }, + { + "text": "Lo is one of the best professors I've had. His lectures are clear and easy to follow. His quizzes and exams cover material taught in class (No surprises!). He prepares you VERY well for the final. He is available outside of class for questions. He gives demos of the Exel HWs in class. No reason not to get an A if you practice a little at home!", + "pos": 0.195, + "neu": 0.777, + "neg": 0.028, + "_id": { + "$oid": "6711d76dcd60fca157e604d2" + } + }, + { + "text": "One of the best professors i had at city college. He's very caring and takes time to see if students have any questions. He explains different types of problems in a simple way and gives a lot of notes to study from. You can easily pass the exams and weekly quizzes with the problems he puts on the board aka your notes. GREAT PROFESSOR. Take him.", + "pos": 0.186, + "neu": 0.747, + "neg": 0.067, + "_id": { + "$oid": "6711d76dcd60fca157e604d3" + } + }, + { + "text": "One of the best professors at CCNY. He really teaches well and expects a lot from his students but his tests are fair. Not an easy A class but it is also not impossible to do well. As long as some effort is put in, you can expect a decent grade.", + "pos": 0.168, + "neu": 0.78, + "neg": 0.053, + "_id": { + "$oid": "6711d76dcd60fca157e604d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76ecd60fca157e604d6" + }, + "professor_name": "Dev Kumar", + "rating": 3.2, + "department": "Computer Science department", + "comments": [ + { + "text": "relaxed and intelligent professor. if you care about learning sit in the front, do the readings and study the material before attending class. he makes it really easy to pass so that students can focus more on learning that stressing about exams and quizzes.", + "pos": 0.233, + "neu": 0.721, + "neg": 0.046, + "_id": { + "$oid": "6711d76ecd60fca157e604d7" + } + }, + { + "text": "lol ez class", + "pos": 0.841, + "neu": 0.159, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604d8" + } + }, + { + "text": "It was painful coming in-person for this class on Saturdays, but Professor Kumar was always understanding and accommodating. No exams, just six quizzes throughout the semester consisting of one question each that is very similar to questions from his lecture slides. He also curved grades based on the class performance, which tremendously helped.", + "pos": 0.0, + "neu": 0.915, + "neg": 0.085, + "_id": { + "$oid": "6711d76ecd60fca157e604d9" + } + }, + { + "text": "Refuses to teach synchronously even though the class is supposed to be in person. Just posts audio powerpoint online. Discourages students from coming to office hours. Gives snarky answers to email questions. Quizzes are not hard but I can't believe the tuition for this course is the same as other courses. It's basically a correspondence course.", + "pos": 0.02, + "neu": 0.946, + "neg": 0.034, + "_id": { + "$oid": "6711d76ecd60fca157e604da" + } + }, + { + "text": "Even though I got a B and I was aiming for maximum grade of an A in this class, Devendra Kumar is the best professor ever. He is very nice and accommodating professor. He is willing to help people. If you are struggling with anything he will come and help you. I wish all professors are like him. No exams. Just quizzes, homework, and labs.", + "pos": 0.224, + "neu": 0.713, + "neg": 0.063, + "_id": { + "$oid": "6711d76ecd60fca157e604db" + } + }, + { + "text": "Asynchronous class. Easy professor. About what you would expect from recorded lectures.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604dc" + } + }, + { + "text": "Underrated. Yes, he's not the best, but people make him out to be the worst. Look at the grades people get in these ratings and let that do the explaining. To study for quizzes, review your notes/slides and previous HWs (and material from other sems). Yes, he is boring in the slides, but if that's your only problem, clearly the class isn't so bad.", + "pos": 0.164, + "neu": 0.665, + "neg": 0.17, + "_id": { + "$oid": "6711d76ecd60fca157e604dd" + } + }, + { + "text": "The most boring professor ever. The only thing to do is sending out slides and he record his voice to read them. For a slide that normal people just need to spend 1 minute to read, he spend 10 minutes. Read extremely slow with horrible accent. He does not talk about anything beside what is written in the slide. Learned nothing from him", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d76ecd60fca157e604de" + } + }, + { + "text": "Asynchronous . Not much else to say about him. The last topics are very slippery (students find a hard time to grasp them) .", + "pos": 0.0, + "neu": 0.943, + "neg": 0.057, + "_id": { + "$oid": "6711d76ecd60fca157e604df" + } + }, + { + "text": "Took it online, classes were asynchronous which was great. He posts about two lectures a week, which shouldn't take more than 30 min each. Only three \"quizzes\" with about 3 questions and the questions are similar to the homeworks. The questions are usually easy and come from the notes/homeworks. He curves at the end too. Great guy!", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604e0" + } + }, + { + "text": "No final, 3 test( he calls them quizzes) 300 points each 2 questions each but if u know the information you can easily just think through them. Lectures kind of get boring and I think even he realizes it. Better than the average CSC Dept in ccny", + "pos": 0.128, + "neu": 0.789, + "neg": 0.083, + "_id": { + "$oid": "6711d76ecd60fca157e604e1" + } + }, + { + "text": "Professor Kumar is very knowledgeable and is a fair grader. He curves a lot, and even though you might get a 0 on the homework presentation, you can still get an A like me. Just know the material and attend the lectures if you want a good grade.", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604e2" + } + }, + { + "text": "Prof. Kumar is very knowledgeable and emphasizes common sense/intuition. He wants you to engage and think things out. He is tricky,jovial and often chuckles at himself. He also has no chill. If you're wrong he'll shut you down and make you feel like a crumb, in a strangely goodnatured way. Like an old grandpa that scolds kids then gives them candy.", + "pos": 0.134, + "neu": 0.761, + "neg": 0.106, + "_id": { + "$oid": "6711d76ecd60fca157e604e3" + } + }, + { + "text": "3 quizzes, 300 points each, usually 4-5 problems in each quiz. Easy class but TA is an extremely tough grader. If you have a little bit mistake in a problem. You will get 5 out of 60, which directly make you grade three levels down. Because final grade is only based on three quizzes. BTW he does not care whether students understand his class.", + "pos": 0.026, + "neu": 0.787, + "neg": 0.186, + "_id": { + "$oid": "6711d76ecd60fca157e604e4" + } + }, + { + "text": "We never used computers! Code written on paper. When he assigns homework he randomly selects people to put up the answer. He goes through the entire attendance list giving all students who cannot answer the homework a zero. He does not give partial credit. Stay away from this professor if you want a good grade. Do not take this class for \"fun\".", + "pos": 0.147, + "neu": 0.822, + "neg": 0.031, + "_id": { + "$oid": "6711d76ecd60fca157e604e5" + } + }, + { + "text": "3 tests and no final! Tests are just examples from the class notes but a bit harder If you pay attention in class you will pass the tests Total 1200 points and C+ was around 350/1200 so very helpful curve There is a lab which gives homework but only worth 200 out of the 1200 PASSABLE CLASS", + "pos": 0.114, + "neu": 0.836, + "neg": 0.05, + "_id": { + "$oid": "6711d76ecd60fca157e604e6" + } + }, + { + "text": "3 tests and no final! Tests are just examples from the class notes but a bit harder If you pay attention in class you will pass the tests Total 1200 points and C+ was around 350/1200 so very helpful curve There is a lab which gives homework but only worth 200 out of the 1200", + "pos": 0.117, + "neu": 0.831, + "neg": 0.052, + "_id": { + "$oid": "6711d76ecd60fca157e604e7" + } + }, + { + "text": "Tough grader. No partial credit. Few students got class participation points. HW are hard. If the the overall class do bad then he curves.", + "pos": 0.0, + "neu": 0.638, + "neg": 0.362, + "_id": { + "$oid": "6711d76ecd60fca157e604e8" + } + }, + { + "text": "Kumar is a very slow teacher, but he doesn't explain things in detail so that people w/o programming backgrounds can understand him. Lab is the only reason I passed. He curves well, luckily, but you won't learn anything. He was not available during his office hours if you needed help. He grades harshly - no partial credit on tests.", + "pos": 0.152, + "neu": 0.769, + "neg": 0.079, + "_id": { + "$oid": "6711d76ecd60fca157e604e9" + } + }, + { + "text": "Kumar is the man. everyday him and his suspenders, much respect. Subject matter is relatively simple, but he does go at a really EXTREMELY slow pace. Take him if you already know whats going on and want an easy teacher. Take him! Hilarious guy!", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76ecd60fca157e604ec" + }, + "professor_name": "Daniel Nieves", + "rating": 3.5, + "department": "Latin American Studies department", + "comments": [ + { + "text": "Do not take this professor. He does not care about anything other than his weekly readings. He wants you to read a million pages in a week and then do a DB response of 3 effing paragraphs. I dropped his course because. I dont know how he is still a professor at city college. \nTake this class if you want to suffer.", + "pos": 0.02, + "neu": 0.888, + "neg": 0.092, + "_id": { + "$oid": "6711d76ecd60fca157e604ed" + } + }, + { + "text": "One of the best classes I have taken. The professor clearly is passionate and knowledgeable about the topics.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604ee" + } + }, + { + "text": "I am a bit on the fence. Work load was not bad the length of the readings were exhausting. Most readings started out interested but became mind numbing after the first 80 or so pages. Weekly \"wordy\" reflections about readings are expected, as well as responses to 3 peers responses. No final papers and 3 tests.", + "pos": 0.101, + "neu": 0.786, + "neg": 0.113, + "_id": { + "$oid": "6711d76ecd60fca157e604ef" + } + }, + { + "text": "Do not take Professor Nieve's online class unless you are prepared to devote the whole four weeks to this single class. You do not hear from him at all besides the occasional \"good\" under your grades. Very strict with formatting. A LOT of reading. Two daily assignments, three papers, and one final. Very negligent and out-of-touch professor.", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604f0" + } + }, + { + "text": "The class was great. The professor is great. I really liked the way he set up the class. There was so much good information. I noticed that a lot of my classmates felt he gave too much work, and demanded a lot from us. But c'mon, what do you expect? This is college. I would love to take another class with Professor Nieves.", + "pos": 0.205, + "neu": 0.776, + "neg": 0.02, + "_id": { + "$oid": "6711d76ecd60fca157e604f1" + } + }, + { + "text": "One one week into class and it is insane already. We are all only discussing amongst ourselves the 40 pages that we have to read for ONE assignment every. single. day. Wish he would actually teach because we are only learning from our peers. He unrealistically makes one part of the assignment due before 12pm- some people actually HAVE JOBS!", + "pos": 0.043, + "neu": 0.915, + "neg": 0.043, + "_id": { + "$oid": "6711d76ecd60fca157e604f2" + } + }, + { + "text": "Some people will truly hate him because of the different attitude or mandatory dates assigned. But honestly, if your a student that cares about your grade and will do everything without procrastinating, then take the class. Nieves knows what he wants done and will respect you if you do everything the way he wants it to be done. Hard work pays off!", + "pos": 0.209, + "neu": 0.738, + "neg": 0.053, + "_id": { + "$oid": "6711d76ecd60fca157e604f3" + } + }, + { + "text": "Quizzes every week and discussions post every weekend due at a unconventional time. Who makes homework due at noon on a Sunday? Doesn't give good feedback(Good.) He'll give a low grade and not explain why. He always thinks that he is right when discussing about topics related to the class and shoos down any rebuttals with \"so? I went to nyu\"", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d76ecd60fca157e604f4" + } + }, + { + "text": "He seems like he is hard but his expectations are very clear. He has weekly quizzes on the chapter but theyre easy and open notebook. One final research paper at the end but he gives you all semester to work on it. Gives good feedback.", + "pos": 0.244, + "neu": 0.734, + "neg": 0.022, + "_id": { + "$oid": "6711d76ecd60fca157e604f5" + } + }, + { + "text": "He's a tough professor. He has strict guidelines and wants everything done his way or no way! His class is pretty interesting but he does come off as REALLY RUDE! If you plan out what you need to do ahead of time then you should be fine. Easy A! Reading response and quiz every week, 3 film reviwes, extra credit and one big paper. GET THE BOOKS!", + "pos": 0.175, + "neu": 0.71, + "neg": 0.114, + "_id": { + "$oid": "6711d76ecd60fca157e604f6" + } + }, + { + "text": "This is the first class Ive ever taken where Ive retained all the information. Yes hes a tough grader but with good reason. His instructions are very clear and if you choose not to follow them he will knock away points. Best professor Ive ever had hands down !", + "pos": 0.274, + "neu": 0.706, + "neg": 0.021, + "_id": { + "$oid": "6711d76ecd60fca157e604f7" + } + }, + { + "text": "Good professor but comes off as condescending. Feedback on work is usually \"good.\" Not much else comment wise. If you dont do things exactly his way, he will take points off. Does not always answer emails. Very nitpicky. The work and readings were interesting and I learned a lot. Very reading heavy.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604f8" + } + }, + { + "text": "It's an interesting class and I learned a lot. It opened my eyes to a lot of things that I never reflected on before. Professor Nieves was always clear in his grading criteria. It's easy to get a good grade if you keep up with the readings, do all the assignments, and take notes in class. He gives pop quizzes if people don't do the readings.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604f9" + } + }, + { + "text": "This professor is very condescending. When student reach out with questions, he fails to answer but instead just refers you to the department or tell you to read the instructions again. He gives a lot of work and that seems unrealistic. There are assignments due every day by 12pm ( which is never the case for an online class)", + "pos": 0.018, + "neu": 0.951, + "neg": 0.032, + "_id": { + "$oid": "6711d76ecd60fca157e604fa" + } + }, + { + "text": "I took his anthology class for FIQWS. It was the easiest class. No work load or anything. Do all you work in correct format and keep everything, like quizes and all that above 90s, you'll get an A. There are 2 extra credit opportunities. Best Professor ever! Shocked to see 3.8 rating, it should have been 5.", + "pos": 0.216, + "neu": 0.72, + "neg": 0.065, + "_id": { + "$oid": "6711d76ecd60fca157e604fb" + } + }, + { + "text": "Nice guy, but is very opinionated. You have to do 2 chapter summaries due every Sunday 12pm, with quizzes on reading. Do the reading or get notes from someone who did. Easy grader but has big expectations for work. Make sure you participate in class, prepare for 2 easy oral presentations, and watch the film reviews. Get work submitted on time", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604fc" + } + }, + { + "text": "Definitely an easy A class. Took him for the FIQWS anth. Seems like lots of readings gotta do, but actually not (he gave 100 for just copying and pasting the book content) And I didn't read any chapters. Easy grader, but so random. Make sure you get your format and headings done correctly, he would take pointsssss off if you did it wrong.", + "pos": 0.172, + "neu": 0.771, + "neg": 0.056, + "_id": { + "$oid": "6711d76ecd60fca157e604fd" + } + }, + { + "text": "Mr. Nieves is a FANTASTIC Professor. I took his class summer 2017 online. Yes, it is alot of reading, but if you are up for the challange, he will open your mind about Latino History and Culture in America. If you want an Easy A, go elsewhere. This class is for people who want to immerse themselves wholly. Plus, this is college not H.S.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e604fe" + } + }, + { + "text": "I took his online class. It was tough! his class was Monday through Friday, BB participation, two weekly papers, documentaries. Four books in four weeks, it was brutal. If you like Anthropology and are interested in how globalization is changing cultures, people, the world and you have time to study and read take it! I learned so much in his class.", + "pos": 0.076, + "neu": 0.834, + "neg": 0.09, + "_id": { + "$oid": "6711d76ecd60fca157e604ff" + } + }, + { + "text": "Online summer class there is a lot of reading to this class Around 50 pages per day plus 500 words summary every day. That's from Monday to Friday and on top of that 8 essays. 4 about a movie review which each movie is a hour long or more and we have to read 4 books and write 3 pages for each book. Is to much work for just a month of class", + "pos": 0.024, + "neu": 0.976, + "neg": 0.0, + "_id": { + "$oid": "6711d76ecd60fca157e60500" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76fcd60fca157e60502" + }, + "professor_name": "Estha Weiner", + "rating": 3.1, + "department": "Humanities department", + "comments": [ + { + "text": "I thought this class would be easy but it wasn't. You're going to read a lot of class material, such as Shakespeare, Greek legends, and Chinese literature. DON'T BE LATE FOR CLASS; IT'S PART OF YOUR GRADE! She grades based on YOUR VIEW of the text, not online discussions, because she will notice. That said, avoid her unless you got no other choice.", + "pos": 0.029, + "neu": 0.884, + "neg": 0.087, + "_id": { + "$oid": "6711d76fcd60fca157e60503" + } + }, + { + "text": "Definitely is good at bringing Shakespeare to life, be warned that her syllabus doesn't really discuss much writing. We barely touched upon it unfortunately, so I didn't know what she wanted from us aside from her doing things entirely in physical copies. Great in conversation, but I wish she was less vague on our writing assignments.", + "pos": 0.156, + "neu": 0.774, + "neg": 0.07, + "_id": { + "$oid": "6711d76fcd60fca157e60504" + } + }, + { + "text": "Small class. She requires a lot of participation, it's a very interactive class. Attendance is a must but she is reasonable if you have a good excuse. Gives good feedback. Definitely would recommend it. We were asked to do three main projects. A poem, a short story, and a play. Just make sure to participate a lot and you'll be fine.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60505" + } + }, + { + "text": "Grade is determined by 50% manuscript and 50% participation. Manuscript should be a poem, short story, drama piece. If you don't participate your grade will drop so talking with everyone in class is important. Not a fan of socializing so wouldn't take again. Coursework is pretty easy though and fun.", + "pos": 0.224, + "neu": 0.709, + "neg": 0.067, + "_id": { + "$oid": "6711d76fcd60fca157e60506" + } + }, + { + "text": "Professor Weiner is an older professor, so yes, she is more stern on certain things like phones, attendance and respect. There is a packet given out on the first day with required readings that are used to inspire future pieces and writing samples throughout the semester (no specific prompts). You will need to print things, but use the library.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60507" + } + }, + { + "text": "Professor Weiner's teaching was alright. I enjoyed the class and she was extremely knowledgeable about the subject. One thing that I disliked about Professor Weiner is how vague she is with assignments. It was hard to know what she actually wanted her students to write about. If you like unclear essay prompts go ahead, if not don't take her class.", + "pos": 0.114, + "neu": 0.776, + "neg": 0.11, + "_id": { + "$oid": "6711d76fcd60fca157e60508" + } + }, + { + "text": "Prof Weiner is super sweet and caring, she is a bit old school but it can be oddly refreshing to go back to old school techniques. Shes very intelligent and appreciates good literature and writing and also sheds light on voices in literature that are often ignored. Shes wonderful and sweet", + "pos": 0.39, + "neu": 0.57, + "neg": 0.04, + "_id": { + "$oid": "6711d76fcd60fca157e60509" + } + }, + { + "text": "She's definitely old school (and not just with technology). She makes you print out enough copies of your work for everyone and doesn't use technology during class (this was 2019). Easy A if you do all the work, participate, and incorporate her feedback, but classes were boring and I don't feel like I learned much/ became a better writer.", + "pos": 0.114, + "neu": 0.803, + "neg": 0.083, + "_id": { + "$oid": "6711d76fcd60fca157e6050a" + } + }, + { + "text": "Professor Weiner is expects her students to participate often in her class. She always expresses her opinion which can be jarring and annoying sometimes, but she does it so you can grow as a writer. We had about three writing assignments which weren't too hard.", + "pos": 0.031, + "neu": 0.929, + "neg": 0.04, + "_id": { + "$oid": "6711d76fcd60fca157e6050b" + } + }, + { + "text": "She is very old school and doesn't believe in using blackboard. The class would be SO much better if she used powerpoint. Instead she just chats and writes down notes that are hard to read. There is a lot of reading and only about 3 papers. She isn't clear on what she wants, so definitely take advantage of her office hours if you take this class", + "pos": 0.13, + "neu": 0.822, + "neg": 0.048, + "_id": { + "$oid": "6711d76fcd60fca157e6050c" + } + }, + { + "text": "The class was a waste of time, had it not been a required course and the attendance mandatory, I never would've went. She's nice, but she cannot teach certain material to students in a way that is open to any interpretation other than her own. I've never scored below an A- on any essay, but I managed to in this easy class, it was a waste of time.", + "pos": 0.098, + "neu": 0.801, + "neg": 0.101, + "_id": { + "$oid": "6711d76fcd60fca157e6050d" + } + }, + { + "text": "If it weren't for attendance, I wouldn't go to this class. It's a waste of time, she isn't good at explaining, can be rude and impatient, she doesn't understand different interpretations of writing unless it's her own, and her class doesn't teach me much at all, I love poetry and literature so even only a month in, the class is a let down.", + "pos": 0.058, + "neu": 0.799, + "neg": 0.143, + "_id": { + "$oid": "6711d76fcd60fca157e6050e" + } + }, + { + "text": "she is a good caring person, but sorry to say but I didn't learn anything from her class. she does give good feedback on one of my paper. do everything she says to do and you be okay. just know you will have to print out a lot of your work and make a copy for everyone in the class. she makes you buy a book that doesnt cost much.", + "pos": 0.134, + "neu": 0.847, + "neg": 0.019, + "_id": { + "$oid": "6711d76fcd60fca157e6050f" + } + }, + { + "text": "She really is a very kind and funny woman, but I don't think she is meant to teach creative writing workshops. Email does not exist to her so be prepared to print 20+ copies of your piece to be workshopped (3 times). Participate a lot, have your pieces ready to workshop, and hand in your final manuscript and you'll get an A. You don't gain muchelse", + "pos": 0.229, + "neu": 0.726, + "neg": 0.045, + "_id": { + "$oid": "6711d76fcd60fca157e60510" + } + }, + { + "text": "As a person, she really is a very nice and knowledgable woman, however, she has very specific ideas and views that make going to the class very difficult. If you don't see her POV, she will say you don't get it. She has little to no concept of the fact that email exists, so expect to print roughly 20+ copies of all your work to be 'workshopped'.", + "pos": 0.043, + "neu": 0.891, + "neg": 0.066, + "_id": { + "$oid": "6711d76fcd60fca157e60511" + } + }, + { + "text": "Ok, she's an older professor so she's not up to date w/ how electronics work this day and age. If she's your first class of the day, please have your assignments printed the night before, else she will get on your case all day. She wants us to write how she would write (once again, she's old) !!! She gives a lot of feedback, but sometimes too much.", + "pos": 0.036, + "neu": 0.964, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60512" + } + }, + { + "text": "She can not be more careless when she is reading the books. Lots of reading and she does not understand my writings.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60513" + } + }, + { + "text": "Boring! I regretted for not dropping the course in the first day.", + "pos": 0.0, + "neu": 0.658, + "neg": 0.342, + "_id": { + "$oid": "6711d76fcd60fca157e60514" + } + }, + { + "text": "Overall, a knowledgeable professor with an obvious passion for the course-material.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60515" + } + }, + { + "text": "Boring, she lectures to herself mostly. Wish I had taken another professor for this class.", + "pos": 0.15, + "neu": 0.722, + "neg": 0.128, + "_id": { + "$oid": "6711d76fcd60fca157e60516" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d76fcd60fca157e60518" + }, + "professor_name": "John Krinsky", + "rating": 4, + "department": "Political Science department", + "comments": [ + { + "text": "Excellent professor. He was very helpful inside and outside class. He cares a lot for his students, but it is important to come and talk to him, since he is always willing to help. He is a great support for foreign students. HE IS THE BEST.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60519" + } + }, + { + "text": "Above average professor. However, syllabus curriculum and grading was not properly discussed with students.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e6051a" + } + }, + { + "text": "No doubt he is an educated human and cares about the issues he discusses, however Krisky comes off as entitled and shows little care for his students. He can also be rude when students are presenting or trying to participate in class. \n\nIf you do your work you will pass.", + "pos": 0.174, + "neu": 0.774, + "neg": 0.052, + "_id": { + "$oid": "6711d76fcd60fca157e6051b" + } + }, + { + "text": "He is an amazing professor, very understanding and is hilarious with jokes. Sometimes I don't understand the material but he always helps break it down at times and responses to emails very quickly which is helpful. Bought the class breakfast so everyone would be more comfortable. Honestly, one of the most unforgettable teachers in CCNY!!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e6051c" + } + }, + { + "text": "Professor Krinsky is so nice his class literally makes you want to participate I took his class as a freshman during the spring semester. He's lenient understanding funny and caring. He prepares good lessons for you and if you ever struggle with anything just email him he'll do his best to help, but yeah basically just do your work and you're good.", + "pos": 0.296, + "neu": 0.682, + "neg": 0.022, + "_id": { + "$oid": "6711d76fcd60fca157e6051d" + } + }, + { + "text": "Great professor, very helpful, always replies to emails, and happy to assist on papers. Good lad.\n\nI'd never take this course again because it was quite a challenge to get through but hey he was still a legitimately great professor.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e6051e" + } + }, + { + "text": "This guy earns an F from me. Very disappointed.", + "pos": 0.0, + "neu": 0.702, + "neg": 0.298, + "_id": { + "$oid": "6711d76fcd60fca157e6051f" + } + }, + { + "text": "Pluses: super caring, has in-depth knowledge of the topic (urban politics in this case), funny (at least in my opinion). Minuses: touch grader, very particular about grammar, makes you read A LOT (300 lvl course load), his lectures don't go over the readings but rather vaguely tie them together. I personally liked the course but many wouldn't.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60520" + } + }, + { + "text": "This course was a little weird. Professor expects students to solve contemporary political issues. Extremely politically biased. Class is filled with constant gringe-worthy jokes.", + "pos": 0.138, + "neu": 0.725, + "neg": 0.137, + "_id": { + "$oid": "6711d76fcd60fca157e60521" + } + }, + { + "text": "I found him to be pretty bad Prof. Would not take him again. Come on guys don't just read comments. Leave your comments also. We need them.", + "pos": 0.1, + "neu": 0.752, + "neg": 0.147, + "_id": { + "$oid": "6711d76fcd60fca157e60522" + } + }, + { + "text": "Not an easy A class. Regret taking his class. There are so many assignments but limited time. Not easy class at all. Avoid if you can. Grading criteria is vague. You never know your grade until the end of semester. I would NOT recommend his classes.", + "pos": 0.0, + "neu": 0.719, + "neg": 0.281, + "_id": { + "$oid": "6711d76fcd60fca157e60523" + } + }, + { + "text": "My second stalkee at City College. Phenomenal professor, great lectures, LOTS of funny voices. OH, and an AMAZING chef as well!", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60524" + } + }, + { + "text": "Really sweet and good looking guy! He's the reason why I come to school. John is my boy and I want him to be my BFF when I graduate. I love him sweet", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60525" + } + }, + { + "text": "So, professor Krinsky was my FAVORITE professor this past semester. He dubbed me queen ball buster, and we had LOTS of laughs. He is tough on participation for his class. No textbooks for any of his courses because he feels it is too costly to students. He is an AMAZING professor. I am taking him next semester for Urban Politics.", + "pos": 0.162, + "neu": 0.765, + "neg": 0.072, + "_id": { + "$oid": "6711d76fcd60fca157e60526" + } + }, + { + "text": "Krinsky really cares about the topics he teaches, and makes sure we did too. Don't be late, we all learned the hard way! The group project was a bit confusing at first, but he guided us through it. A lot of writing for the assignments we did!", + "pos": 0.088, + "neu": 0.859, + "neg": 0.053, + "_id": { + "$oid": "6711d76fcd60fca157e60527" + } + }, + { + "text": "3 group projects, each w different ppl. Weekly online quizzes, lots of reading required, & 15 page paper due end of semester. Does go off on tangents, esp. when people walk in late. Delays info on group work & paper, can overwhelm students w heavy courseloads. Class only offered as morning class every Fall. Class falls behind schedule sometimes.", + "pos": 0.0, + "neu": 0.972, + "neg": 0.028, + "_id": { + "$oid": "6711d76fcd60fca157e60528" + } + }, + { + "text": "Very good Professor, not only for teaching skill,but also a good educator and man. He worthes the Chief Professor of this department", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e60529" + } + }, + { + "text": "First of all, Krinsky is passionately sexy. In my opinion his class is not that difficult and he's an easy grader. His thoughts can be all over the place sometimes, but he's still and good teacher and the material is very interesting. It was an easy A. I loved him.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e6052a" + } + }, + { + "text": "SOOOOOOOOOOOOOOOO HOT!!!!!!!!!!!! :)", + "pos": 0.676, + "neu": 0.324, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e6052b" + } + }, + { + "text": "There are three types of professors in college.Some who we wonder how they got their job, others who are really smart and can communicate and then there is a third category comprised of professors who know a lot but should not be working with kids. This is the category that Prof. Krinsky falls into. He doesn't really know how to TEACH.", + "pos": 0.032, + "neu": 0.968, + "neg": 0.0, + "_id": { + "$oid": "6711d76fcd60fca157e6052c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d770cd60fca157e6052e" + }, + "professor_name": "Harry Stein", + "rating": 3.8, + "department": "History department", + "comments": [ + { + "text": "Professor Stein was born in 1938, yes you read that correctly, he can still talk clearly. His class is easy, 8 hw's, 1 midterm, and 1 final. Just come to class. He does not use Blackboard. All hw's are printed and given to him. He gives you a lot of papers. He will often tell you to circle things and draw on handouts, but you don't need to.", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6052f" + } + }, + { + "text": "I have never given a professor rating here, but here I am! Genuinely the best professor ever. Just do the work, pay attention for the hour you have class and you'll be fine. He talks a lot about his own life which makes his lectures very engaging and absolutely the best prof ever.", + "pos": 0.267, + "neu": 0.71, + "neg": 0.024, + "_id": { + "$oid": "6711d770cd60fca157e60530" + } + }, + { + "text": "This course was a pleasure to take. I always looked forward to coming to his class because Professor Stein is passionate about teaching. He makes it clear that the purpose of this course is to relate historical events to your family timeline. He is very engaging since he guides you as to where you need to be looking. Go to class for needed papers.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60531" + } + }, + { + "text": "he's a great professor, people who said he's racist, sexist or anything along that line just can't accept facts. You will learn a lot in his class not just about the course itself but everything (literally) just talk to him, he's very very knowledgeable. although attendance is not mandatory, I recommend you attend every class.", + "pos": 0.042, + "neu": 0.825, + "neg": 0.133, + "_id": { + "$oid": "6711d770cd60fca157e60532" + } + }, + { + "text": "If you take this all you need to be to pass is organized. He gives you all the readings and the hw are the same every week. SUPER EASY. Impossible to reach but as long as you pay attention some of the time you'll hear some great stories and learn a lot. I did every single hw on the train going to class and printed it out in the library. SUPER EASY.", + "pos": 0.259, + "neu": 0.724, + "neg": 0.018, + "_id": { + "$oid": "6711d770cd60fca157e60533" + } + }, + { + "text": "I enjoyed his class. The amount of work he gives is fair and he teaches the class well. You don't need any textbooks or notebooks, he'll give you all the supplies you need to succeed in his class. If you don't get the notes get them from a friend and you'll be fine. Don't be afraid to communicate with him. He's reasonable and isn't a tough grader.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60534" + } + }, + { + "text": "I'm a straight-A student and I dropped this class. He makes racist remarks in class and grades based on how much he agrees with you. He's near impossible to reach and makes you carry 10-20 handouts at a time instead of using a notebook or any kind of technology. If you get him as a professor, switch sections and save yourself the trouble.", + "pos": 0.086, + "neu": 0.819, + "neg": 0.095, + "_id": { + "$oid": "6711d770cd60fca157e60535" + } + }, + { + "text": "Good prof. Easy A.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60536" + } + }, + { + "text": "The professor is understanding and helpful! His lecture is pretty heavy sometimes since he goes off topic sometimes lol. Work is pretty easy but you will have a lot of paperwork lol. He does not use blackboard but you can contact him by email, and by calling him. DONT TEXT HIM!", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60537" + } + }, + { + "text": "Great professor, Definitely recommend !", + "pos": 0.827, + "neu": 0.173, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60538" + } + }, + { + "text": "Get ready to do so much writing. He is very old-school so he likes everything handed in person, he lectures the class while you take note. 7 units 14 one page papers (report+essay). 2 final essays. 1 learning journal. 2 research essays. Final exam. It feels like a writing intensive course when it isn't. Great professor though overall though.", + "pos": 0.122, + "neu": 0.829, + "neg": 0.05, + "_id": { + "$oid": "6711d770cd60fca157e60539" + } + }, + { + "text": "Did all his work and submitted everything on time still will get a B-. His final is where most of your grade will come from assuming you do all of his assignments.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6053a" + } + }, + { + "text": "AWESOME professor. He teaches very well and his lectures are amazing. But too much writings", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6053b" + } + }, + { + "text": "he gives tons of handouts for you to read and take notes. has 7 papers but don't freak out they are all like 300 words. you make an opinion or what you learn from 7 different units. he grades fast and is not a harsh grader. his final paper he gives in the beginning of semester it is long but simple task. he don't use online or technology. lecture", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6053c" + } + }, + { + "text": "he has 7 units of history so 7 \"papers\" which are only 250 words. He has two quizzes each 1-2 pages, simple, he just wants ur opinion and intake of what you learned. he gives the final before to review & then you take it. this is the easy a you want. students don't like him bc he doesn't post grades online. so what? he hands back everything....", + "pos": 0.059, + "neu": 0.912, + "neg": 0.03, + "_id": { + "$oid": "6711d770cd60fca157e6053d" + } + }, + { + "text": "no online, old fashion. only thing he does is lecture and tell you what to write down. There are 7 units and each unit is 2-3 classes. After do a 1 page essay about what it was about. Simple. He has 2 quizzes & its just an opinion paper literally. Gives you the final a week in advance to take home and look out. u could be behind u pass really easy", + "pos": 0.042, + "neu": 0.928, + "neg": 0.029, + "_id": { + "$oid": "6711d770cd60fca157e6053e" + } + }, + { + "text": "HE IS AN OLD MAN WHO LIKES TO HAVE THE CLASS DISCUSSION ON HIS OWN, SO PARTICIPATION REALLY DOES NOT MATTER HERE. HE GIVES A LOT OF PAPERS THAT YOU NEED TO HAVE DURING CLASS LIKE AROUND 30 of them. HE DOES NOT USE BLACKBOARD NOR CAN YOU EMAIL HIM. I FOUND HIS CLASS INTERESTING AS HE LIKES TO BE ENGAGING, THE COURSE MATERIAL IS NOT DIFFICULT.", + "pos": 0.238, + "neu": 0.731, + "neg": 0.031, + "_id": { + "$oid": "6711d770cd60fca157e6053f" + } + }, + { + "text": "I dont understand why his rating is so low. He doesn't ask for much.7 units of different times in history each 250 essays (easy), one chart/notes from class. If you miss class, he brings you up to date, he has a take-home midterm (so easy). He gives all the papers for class, all paper nothing online. One final project of watching some movies, easy.", + "pos": 0.121, + "neu": 0.819, + "neg": 0.06, + "_id": { + "$oid": "6711d770cd60fca157e60540" + } + }, + { + "text": "I actually liked this class in the beginning as the work was decent. But for the finals I had to study a lot and memorize all the informations from 7 units that we learned in class which was insane. Also the journal he gave was very long and time consuming. I liked his sense of humour though!", + "pos": 0.151, + "neu": 0.796, + "neg": 0.053, + "_id": { + "$oid": "6711d770cd60fca157e60541" + } + }, + { + "text": "One of the best professors I've ever had. Organized and very specific on what he wants for homework and quizzes.", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60542" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d770cd60fca157e60544" + }, + "professor_name": "Nargiza Matyakubova", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Truly one of the best people out there. Super caring and understanding towards her students. The assignments are not that much at all and her grading is very generous. RUN to take her class.", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60545" + } + }, + { + "text": "Professor Matyakubova is by far one of the best professors I've had since I enrolled in Ccny. She's very kind and considerate. She's extremely engaging and gives great feedback and she notices when students are participant and are eager to do well, she helps students as much as she can. Take Engl 21003 with her. She is the best!!", + "pos": 0.374, + "neu": 0.626, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60546" + } + }, + { + "text": "DUDE I LOVE HER! WHY CAN'T ALL PROFESSORS BE LIKE HER?? 1000000/10 STRAIGHT UP A SWEETHEART", + "pos": 0.579, + "neu": 0.421, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60547" + } + }, + { + "text": "Everyone has a great purpose in life, and Nargiza is one of the professors you will meet for that reason! As long as you communicate, her workload is manageable and fair. She is the first person I have ever been vulnerable and open with during my years in academia. She is truly a hidden gem, and will encourage you to reach your full potential.", + "pos": 0.189, + "neu": 0.785, + "neg": 0.026, + "_id": { + "$oid": "6711d770cd60fca157e60548" + } + }, + { + "text": "I loved this class! Besides the fact that she is a very nice and caring professor where she helped me personally and academically. Explains very well in all her assignments and answers all our questions. She gives great feedback on our writings and she is easy to talk to. Her office hours was EVERYDAY! I would take her class again for sure!", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60549" + } + }, + { + "text": "Professor Nargiza is great! Although she had many requirements, she was both lenient and caring.", + "pos": 0.447, + "neu": 0.553, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6054a" + } + }, + { + "text": "She's a good teacher and excellent at her field. However, she does expect a lot from her students and paper requirement are heavy. I would recommend her still because she does teach well, answers questions, and gives thorough details. 9/10!!", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6054b" + } + }, + { + "text": "The best English prof I ever had. She teaches so well and makes the class engaging. Always willing to help out struggling students. Very lenient with deadlines so if you're behind on work just talk to her and she will understand. And she always explains her assignments and provides examples so you know what is expected of you. 100% recommend her", + "pos": 0.23, + "neu": 0.732, + "neg": 0.038, + "_id": { + "$oid": "6711d770cd60fca157e6054c" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6054d" + } + }, + { + "text": "Professor Matyakubova IS AMAZING!!!! SHE IS SIMPLY THE BEST.", + "pos": 0.603, + "neu": 0.397, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e6054e" + } + }, + { + "text": "yeah she's understanding and super nice in general. the workload isn't hard but kind of annoying. she has readings every class and expects participation, a bunch of papers and must write reflections on everything. she is ready to help everyone and understands that not everyone is a great writer. overall shes okay", + "pos": 0.309, + "neu": 0.632, + "neg": 0.059, + "_id": { + "$oid": "6711d770cd60fca157e6054f" + } + }, + { + "text": "one of the most caring professors out there.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60550" + } + }, + { + "text": "She's an okay professor she's a great person. a lot of papers and drafts and kinda gets annoyed when people don't read the readings, she could give quizzes if enough people dont read or bring the readings. we've had papers which are the usual but barely grades them on time.", + "pos": 0.076, + "neu": 0.893, + "neg": 0.032, + "_id": { + "$oid": "6711d770cd60fca157e60551" + } + }, + { + "text": "Professor Matyakubova is a nice teacher. She explains things well and is understanding. She is a little critical about your writing but I think she is just trying to help students for the better. I recommend her as a teacher.", + "pos": 0.284, + "neu": 0.685, + "neg": 0.03, + "_id": { + "$oid": "6711d770cd60fca157e60552" + } + }, + { + "text": "Professor Matyakubova is one of the best i have taken here at city college. She really does care about her students. Only negative thing about this class is the amount of work you have to put in. LOTS of drafts, reflections, and responses to articles. There is a presentation at the end of the course where you present your final Paper.", + "pos": 0.111, + "neu": 0.836, + "neg": 0.053, + "_id": { + "$oid": "6711d770cd60fca157e60553" + } + }, + { + "text": "If you dont like this professor, u prolly havent taken any other classes in city college because shes the definition of an ideal professor andi could confidently say u wouldnt get that at CITY college.. group work, interaction with class, wants u to do best, fair grader, listens to students opinions more than she teaches.. HONESTLY AMAZING!!!!!", + "pos": 0.301, + "neu": 0.671, + "neg": 0.028, + "_id": { + "$oid": "6711d770cd60fca157e60554" + } + }, + { + "text": "You get no midterm or final. She makes you do a lot of reflections which are annoying and goes ahead of the other English classes. She's very understanding and its easy if you do all her work but yes its a lot of reading with it plus a page paper that comes with it. Make sure you spell her name correctly or she'll take points off!!", + "pos": 0.123, + "neu": 0.83, + "neg": 0.047, + "_id": { + "$oid": "6711d770cd60fca157e60555" + } + }, + { + "text": "A fair grader.", + "pos": 0.535, + "neu": 0.465, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60556" + } + }, + { + "text": "SOOOOOO MUCH HOMEWORK and she post things on BB the night before expecting you to do it. We have 13 page articles to read every day, no time for our papers.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d770cd60fca157e60557" + } + }, + { + "text": "One of the few professors in my life that can actually teach, and teach well.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d770cd60fca157e60558" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d771cd60fca157e6055a" + }, + "professor_name": "Joshua Pedro", + "rating": 3.6, + "department": "Mathematics department", + "comments": [ + { + "text": "Great professor. Prob the most nonchalant prof I've ever had and teaches very well. He also gives partials on exams. Easy to talk to and has given me a great appreciation for math. If he is available, take him!", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e6055b" + } + }, + { + "text": "This guy helped me see my passion for math. I knew everything more clearly because of him, but only got an A- because I did not have a good sleep before the exam. The goat in my opinion.", + "pos": 0.095, + "neu": 0.831, + "neg": 0.074, + "_id": { + "$oid": "6711d771cd60fca157e6055c" + } + }, + { + "text": "Amazing professor who explained concepts very clearly. If you don't understand a topic, look at his notes on blackboard which he updates right after class or go to tutoring. Showed us exactly what questions to practice on the past department sample finals and midterms and the final were very similar to the sample finals.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e6055d" + } + }, + { + "text": "a gem of a math professor! I never understood math better with any other professor at CCNY. He tells you directly what will be on the exam, it is up to the students to prepare. But it is a straightforward class. 1000000x better than the other math professors (yk who I'm talking about :) ). But get ready to study!!", + "pos": 0.172, + "neu": 0.804, + "neg": 0.024, + "_id": { + "$oid": "6711d771cd60fca157e6055e" + } + }, + { + "text": "His lectures are amazing. Knows what he is talking about and he is very good at explaining the topics. He will answer your questions in class, answer to your emails and upload the class notes to One Note. He also gives quizzes which keeps you up to date with the classes. His midterms are a good practice for the finals. Overall a very good prof.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e6055f" + } + }, + { + "text": "All of the lecture notes were posted after class. Weekly quizzes based on a problem set, 2 questions a quiz, 15% of your grade. There are 3 midterm exams. The lowest one gets dropped. He explains clearly during lectures and is willing to answer questions after class. Prof.Pedro is a very understanding professor if you bring up issues or concerns.", + "pos": 0.042, + "neu": 0.877, + "neg": 0.082, + "_id": { + "$oid": "6711d771cd60fca157e60560" + } + }, + { + "text": "Prof was able to teach the lessons in a very understandable and clear way. he gave weekly quizzes and 3 midterms which he properly prepped us for with problem sets and examples covered in class. graded the first midterm very quick but took a while with the last two midterms. As long as u go to lecture, do the hw and problem sets u should be good", + "pos": 0.078, + "neu": 0.849, + "neg": 0.073, + "_id": { + "$oid": "6711d771cd60fca157e60561" + } + }, + { + "text": "Posts all his lectures, gives problem sets for quizzes and exams, quizzes are easy (any 2 questions on problem set, 15% of grade), exams are 10 questions (3 midterms, drops one - 40% of grade) Lectures are okay, sometimes doesn't know how to explain and final is harder than his exams so self study. Hard class but he made it passable", + "pos": 0.053, + "neu": 0.869, + "neg": 0.078, + "_id": { + "$oid": "6711d771cd60fca157e60562" + } + }, + { + "text": "had him for calc 2. He explains things very well and is a very kind person. Only complaint is that his tests were a lot easier than the deparment-created final. This left lots of students underprepared", + "pos": 0.206, + "neu": 0.743, + "neg": 0.051, + "_id": { + "$oid": "6711d771cd60fca157e60563" + } + }, + { + "text": "Lectures and tests are overall easy, and he's generous with giving grades. However, final exam is the most important, and easy lecture and tests won't be so helpful preparing for the final. You don't have to read textbooks, but I recommend you do. If you rely on class notes only, you won't understand the final exam questions.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60564" + } + }, + { + "text": "this professor seems so confused when he teaches. He also replies very late to emails. I don't recommend.", + "pos": 0.0, + "neu": 0.758, + "neg": 0.242, + "_id": { + "$oid": "6711d771cd60fca157e60565" + } + }, + { + "text": "Calculus II is already a hard course but he explains everything well.\n\nThe content overall is just harder when coming from Calculus I so exams do get difficult after the first one, but he prepares you well for the department final, which is known for being notoriously difficult.", + "pos": 0.095, + "neu": 0.768, + "neg": 0.138, + "_id": { + "$oid": "6711d771cd60fca157e60566" + } + }, + { + "text": "Professor Pedro is a gem at ccny they are lucky to have him. 3 exams; lowest gets dropped. Homework is extra credit. His lectures are amazing and easy to follow. He posts everything online. He truly cares about his students. Best professor ever! :)", + "pos": 0.404, + "neu": 0.555, + "neg": 0.041, + "_id": { + "$oid": "6711d771cd60fca157e60567" + } + }, + { + "text": "The lectures are usually easy enough to follow and if someone asks him to clarify something, then he does it most of the time. The two midterms we had were very fair and based on what we learned in class. The only issue I had was that the final exam, which was prepared by the math dept. anyways, had too many questions for the time allotted to us.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60568" + } + }, + { + "text": "Professor Pedro is the best math professor I've had at CCNY - he was clear in his lessons, always worked through the problems slowly and coherently, and gave exams that reflected the questions from class. He was caring, and tried to make the class as interesting as he could. Wonderful teacher! I would take him again if I could :)", + "pos": 0.261, + "neu": 0.703, + "neg": 0.036, + "_id": { + "$oid": "6711d771cd60fca157e60569" + } + }, + { + "text": "I really don't get the bad reviews. He is a good professor. He cares for our understanding of the class material, he answers questions, and I do not think he is rude. Everybody is different, get used to that.", + "pos": 0.187, + "neu": 0.749, + "neg": 0.064, + "_id": { + "$oid": "6711d771cd60fca157e6056a" + } + }, + { + "text": "Professor Pedro is good at teaching; however, he lacks empathy. He barely replies to emails and his grading criteria is not that great. The number of questions of quizzes ranges from 1-3, which means it's either pass or fail. Midterms are not hard since it's almost like the practice exams he gives. Overall, he is good at explaining the problems :)", + "pos": 0.181, + "neu": 0.692, + "neg": 0.126, + "_id": { + "$oid": "6711d771cd60fca157e6056b" + } + }, + { + "text": "This class was durable because of Professor Pedro. He explains so nicely and even explain old calc stuff. He reminds of of organic chemistry tutor in YouTube( Legend). He give clear instructions and u explains every questions u have During class.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e6056c" + } + }, + { + "text": "Professor Pedro is one of the best professors at CCNY. He cares about the students and holds office hours for any questions. Yes, this class is not easy, it is HARD and you have to work for your grade. As long as you attend all the lectures, practice, and do the homework, you will be fine. Homework is not mandatory but counts as extra credit (5%).", + "pos": 0.134, + "neu": 0.805, + "neg": 0.061, + "_id": { + "$oid": "6711d771cd60fca157e6056d" + } + }, + { + "text": "Very easy class and professor Pedro makes it even easier. Pay close attention to the lectures and you will be fine even without the book. Professor Pedro likes to make a lot of examples and they are really worth it. Homework are the extra credit an can boost you grade by half grade. The professor was always available for office hours.", + "pos": 0.25, + "neu": 0.731, + "neg": 0.019, + "_id": { + "$oid": "6711d771cd60fca157e6056e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d771cd60fca157e60570" + }, + "professor_name": "Mohammed Islam", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "One of the best math professors at CCNY, if not THE best. Take him if given the opportunity, even if his classes might be offered later during the day. He makes the math easy, takes it step by step, and makes everything understandable.", + "pos": 0.189, + "neu": 0.746, + "neg": 0.064, + "_id": { + "$oid": "6711d771cd60fca157e60571" + } + }, + { + "text": "Extremely comprehensive in his teaching, very kind and accommodating to his students, available for office hours, tests straight from the review, and curves at the end. Highly recommend.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60572" + } + }, + { + "text": "Calc 2 may be hard, but this professor made the material more understandable. He explained the lectures more clearly and had the time to post notes from the lecture in his dropbox. He also post review packets that have a lot of questions. It's highly recommended to answer the review packets because it's going to help you a lot on the exams.", + "pos": 0.147, + "neu": 0.836, + "neg": 0.017, + "_id": { + "$oid": "6711d771cd60fca157e60573" + } + }, + { + "text": "MVP OF CALC 2, ABSOLUTE GOAT. TAKE HIM IF YOU CAN HE MAKES EVERYTHING SO EASY. I LOVE THIS GUY!!!!!!!!!!!!!!!!!!!!!!!!", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60574" + } + }, + { + "text": "amazing professor, quizzes are online and so are exams in class. gem professor", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60575" + } + }, + { + "text": "By taking this Professor I got it know that Math dept has some good Professors too! Pay attention during lectures, do work regularly, go to office hours you will get A. He knows how to teach and made cal 3 easy by his teaching skills. 2 midterms and one departmental final. Review sheets before all exams and his exams were straight from his reviews.", + "pos": 0.115, + "neu": 0.865, + "neg": 0.02, + "_id": { + "$oid": "6711d771cd60fca157e60576" + } + }, + { + "text": "This professor is outstanding. I've learned more from him in a couple of days of having him than from most professors in an entire semester. He prioritizes ensuring that everyone understands the topics before moving on.", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60577" + } + }, + { + "text": "Professor Islam is one of the best Math Professors at CCNY. His lectures are well taught and make sure everyone understands. Accessible for office hours and cares for students well being. Gives reviews before exams and a very fair grader. Two midterms and a final. \n\nEnded up with a C but that was not any fault of his own but mine. Would recommend", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60578" + } + }, + { + "text": "A professor who actually cares about his student, his lectures were very straightforward and his reviews for exams were great. The lectures notes he uploads are very organized and they are very clear. Take him for calc 3 if you wanna learn and do good, a true gem in the CCNY math department,", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60579" + } + }, + { + "text": "Calc 3 is hard, but this professor makes it looks so easy. He is a very kind hearted person and cares about his students. Just make sure you pay attention to his lectures and don't miss too many of his classes. His test are fair and easy if you studied. Overall, he is a goated professor and I would take his class again.", + "pos": 0.31, + "neu": 0.656, + "neg": 0.034, + "_id": { + "$oid": "6711d771cd60fca157e6057a" + } + }, + { + "text": "Fair grader. He give reivew sheet (full of questions) before each exam. Calculus is a tough course nonetheless. But it's YOUR fault for not studying and not practicing. He also curve your grade at the end if you ask him nicely and he sees improvement in you. Overall, nice professor.", + "pos": 0.213, + "neu": 0.71, + "neg": 0.077, + "_id": { + "$oid": "6711d771cd60fca157e6057b" + } + }, + { + "text": "He gave us reviews for the exams and a lot of opportunities to get better grades, and he helped us when we had questions. Best professor, if you don't pass this class with him is because you don't want to. I repeat, THIS class, since it was statistics it was easy and he was freer to help us.", + "pos": 0.25, + "neu": 0.733, + "neg": 0.018, + "_id": { + "$oid": "6711d771cd60fca157e6057c" + } + }, + { + "text": "The professor was very approachable and would be available after class to answer questions. Though it was a summer course I didn't feel any rush or that he was teaching too fast, the pace was perfect for me. Often took some time at the beginning of class to review previous material which was so helpful. Really nice with grading too!!", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e6057d" + } + }, + { + "text": "Unfortunately your grade for the class is mostly based on 2 midterms and the final, but Professor Islam will try his best to teach you what you need to know for the final and what topics you need to know to pass it, but try not to miss class although attendance isn't mandatory but you will miss out on certain topics if you do skip class", + "pos": 0.135, + "neu": 0.799, + "neg": 0.066, + "_id": { + "$oid": "6711d771cd60fca157e6057e" + } + }, + { + "text": "I find him to be caring compared to most of the math professors during covid-19 . He ended up curving the first exam by a lot because many people didnt do well. Basically he replaced the lowest test score with the final exam score and then curve it by a lot. Oh yeah, his tests are exactly like his review sheet but he only a handful from the review", + "pos": 0.075, + "neu": 0.881, + "neg": 0.044, + "_id": { + "$oid": "6711d771cd60fca157e6057f" + } + }, + { + "text": "Very caring/nice to his students and super generous when grading. Exams are related to the textbook and class notes so study those. Answered all questions and gave extra credit. Warning: you will need to study and practice a lot since this new calc 3 is much more HARDER than the previous one especially when you get to the vector analysis portion.", + "pos": 0.142, + "neu": 0.824, + "neg": 0.035, + "_id": { + "$oid": "6711d771cd60fca157e60580" + } + }, + { + "text": "He is a true gem. Not only a good professor but also a very nice person. I broke my leg while taking his class. Attendance is mandatory in his class but he considered me and let me take only the exams to pass the class. His testes are similar to his reviews. He also curves. Take him you won't regret.", + "pos": 0.15, + "neu": 0.773, + "neg": 0.077, + "_id": { + "$oid": "6711d771cd60fca157e60581" + } + }, + { + "text": "It was a bit difficult to understand him at the beginning, but he really made the effort for you to learn. Gave so many chances for points. He's overall a really laid back person. Just show up to class, do the homeworks and Matlabs and you should be able to pass the class.", + "pos": 0.047, + "neu": 0.921, + "neg": 0.032, + "_id": { + "$oid": "6711d771cd60fca157e60582" + } + }, + { + "text": "This guy is the best. He's really understanding and approachable. Just make sure to stay on ttop of the homeworks. He also gave a good amount of credit.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d771cd60fca157e60583" + } + }, + { + "text": "I never had trouble learning math, but man theres just something with his teaching. Accent isn't that heavy but doesn't do a \"terrible \" job at teaching. Wouldn't recommend him for 203. Way too much homework in this class on top with the Matlab. Didn't really learn anything in class, but you have to go since attendance is mandatory.", + "pos": 0.132, + "neu": 0.827, + "neg": 0.041, + "_id": { + "$oid": "6711d771cd60fca157e60584" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d772cd60fca157e60586" + }, + "professor_name": "Tadmiri Venkatesh", + "rating": 3.1, + "department": "Biology department", + "comments": [ + { + "text": "Choose him if he's your TA! His lab assignments were just summaries of that day's lab, his lab midterm and final are easy. Other section's TA's weren't as easy graders. As long as you show effort in your lab reports, he'll give you full points. He's a serious but fun TA, just pay attention in lab.", + "pos": 0.108, + "neu": 0.821, + "neg": 0.072, + "_id": { + "$oid": "6711d772cd60fca157e60587" + } + }, + { + "text": "Pay attention to his lectures & easy grader", + "pos": 0.282, + "neu": 0.583, + "neg": 0.136, + "_id": { + "$oid": "6711d772cd60fca157e60588" + } + }, + { + "text": "Hes a nice professor however bit monotone. His exams were about 70 MC which is a lot for 90 min. Thats my only con. His slides are really lengthy with information but will help with his exams. Recitations help if you have a good TA", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d772cd60fca157e60589" + } + }, + { + "text": "Professor Venkatesh is one of the best Professors I encountered at CCNY. His slides are very helpful when it's time to take exams. Class depends only on exam grade. 25% each for exam 1 and 2. Final worth 50% of your grade. Attendance is mandatory only for recitation. He is a little boring when he speaks, but he is very nice and available.", + "pos": 0.163, + "neu": 0.816, + "neg": 0.022, + "_id": { + "$oid": "6711d772cd60fca157e6058a" + } + }, + { + "text": "I took this class online and it was pretty easy. The lectures are really informative but a bit boring. Theres only two exams worth 25% each and a final worth 50%. However, the exams are 65 relatively easy multiple choice questions. There's no homework, and he gives question banks that often have a couple exam questions on them.", + "pos": 0.182, + "neu": 0.735, + "neg": 0.083, + "_id": { + "$oid": "6711d772cd60fca157e6058b" + } + }, + { + "text": "Would take him again!! His lectures are easy to fall asleep in but his exams are based on what covers in class. He allowed us to take a makeup exam for one of our exams because some people had internet issues. Your grade is based on the MChoice exams, 2 worth 25% and the final 50%. If you read the book and attend the recitations you will be fine.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d772cd60fca157e6058c" + } + }, + { + "text": "Lectures are EXTREMELY boring, he is nice but once again the lectures are easy to fall asleep to making it extremely hard to follow.", + "pos": 0.192, + "neu": 0.668, + "neg": 0.14, + "_id": { + "$oid": "6711d772cd60fca157e6058d" + } + }, + { + "text": "First exam are quiz questions, the other two are harder but manageable. All his exam questions are based on the lecture. His lectures are super BORINGGG which makes the class hard but you can just read the textbook and get the same info. Hes a nice person but doesnt make the class exciting or anything.", + "pos": 0.202, + "neu": 0.773, + "neg": 0.024, + "_id": { + "$oid": "6711d772cd60fca157e6058e" + } + }, + { + "text": "One of the worst Biology professors in this school. Just e-permit Genetics at another CUNY. Don't take it here with him.", + "pos": 0.0, + "neu": 0.83, + "neg": 0.17, + "_id": { + "$oid": "6711d772cd60fca157e6058f" + } + }, + { + "text": "Not the worst Bio professor but not the best. The lecture is extremely boring. Just sign attendance sheet and dip. There are 3 tests: 1st one is ridiculously easy as he literally copy and pastes questions from quiz, 2nd one is hard for no reason, and 3rd one is in between. Only genetics professor here at CCNY so I can't say not to take him.", + "pos": 0.075, + "neu": 0.73, + "neg": 0.194, + "_id": { + "$oid": "6711d772cd60fca157e60590" + } + }, + { + "text": "If you want to fail genetics by all means take him. His exams are extremely confusing and hard. Im not sure where he got his exam questions from but it is not even related to the textbook or his lecture. Seems mad everyday and yells at students for asking questions.", + "pos": 0.02, + "neu": 0.784, + "neg": 0.195, + "_id": { + "$oid": "6711d772cd60fca157e60591" + } + }, + { + "text": "Professor Venkatesh gives extremely hard exams, class average is failing miserably. He does not care and there is no curve. Your grade is pretty much based off of his exams only, extremely hard written questions that require specific answers. Avoid him, unless you want to retake genetics.", + "pos": 0.076, + "neu": 0.641, + "neg": 0.283, + "_id": { + "$oid": "6711d772cd60fca157e60592" + } + }, + { + "text": "In general he is amazing prof. I regret that I didn't put enough time and afford to study. His exam questions are very fair that mostly come from the lecture slides that he covers in class. Pay attention to his examples because they might show up on the exam. Sometimes his lecture can be boring but try to come to his every lecture.", + "pos": 0.063, + "neu": 0.866, + "neg": 0.071, + "_id": { + "$oid": "6711d772cd60fca157e60593" + } + }, + { + "text": "Best prof ever, loved him, classes were tough but really paid off. Inspired me to love biology", + "pos": 0.54, + "neu": 0.417, + "neg": 0.043, + "_id": { + "$oid": "6711d772cd60fca157e60594" + } + }, + { + "text": "He is awesome what more can you ask for. He is so reasonable anyone who gives him bad rating just did not put in their own effort for his class. Sure lectures are boring, but I would rather have a prof who is boring but easy. Not the other way around.", + "pos": 0.134, + "neu": 0.751, + "neg": 0.114, + "_id": { + "$oid": "6711d772cd60fca157e60595" + } + }, + { + "text": "Prof Venkatesh's exams are often based on his PowerPoint presentations. The exams are fairly decent/easy and have some writing. The exams ask for the definitions of genetic terms with some short answer and multiple choice. Prepare for quizzes, some can be tricky and questions can be reused for exams. Studying the slides will help to do well.", + "pos": 0.079, + "neu": 0.894, + "neg": 0.026, + "_id": { + "$oid": "6711d772cd60fca157e60596" + } + }, + { + "text": "He is very nice and approachable, gives lots of extra credit to make up points lost on exams. Definitely one of the best biology professors in CCNY. Would take another bio class with him for sure! //", + "pos": 0.313, + "neu": 0.639, + "neg": 0.047, + "_id": { + "$oid": "6711d772cd60fca157e60597" + } + }, + { + "text": "Don't bother going to class because he reads off the slides and whispers to himself. However, his exams are the easiest. He does have some tough questions but you can make up for them with easy extra credit points. Make sure you read very small details in the book and study from the weekly quizzes and you'll do fine. He is sometimes rude tho!", + "pos": 0.208, + "neu": 0.724, + "neg": 0.068, + "_id": { + "$oid": "6711d772cd60fca157e60598" + } + }, + { + "text": "Read off the book. Your only guide in this course will be the book, his first test was very easy however he was key word on his short answers. You do not get points for being vague. He doesn't seem interested and at times is rude and dismissive from his office hours. If you read of the book you will be fine. Started a signing sheet after lately.", + "pos": 0.067, + "neu": 0.844, + "neg": 0.089, + "_id": { + "$oid": "6711d772cd60fca157e60599" + } + }, + { + "text": "He just reads off the slides, sort of explains some things, but just read the textbook, and do well in lab of course. After the first week of classes no one showed to up lecture, like maybe 10-15, thats all. Like i said read the textbook, oh and he likes enzymes..(hint) and he curved but dont depend on that alone.", + "pos": 0.178, + "neu": 0.748, + "neg": 0.073, + "_id": { + "$oid": "6711d772cd60fca157e6059a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d772cd60fca157e6059c" + }, + "professor_name": "Michael Archer", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "He mocks students and he think's he is funny. I'm pretty sure there are other ways to give feedback to students. Especially knowing that not everyone is on the same level. Always addresses the negatives and rarely gives props for the positives.", + "pos": 0.228, + "neu": 0.714, + "neg": 0.058, + "_id": { + "$oid": "6711d772cd60fca157e6059d" + } + }, + { + "text": "He's fine. He gives harsh criticism, and so do the students, but that's the same for everyone. Just focus on what you can do to improve and don't overthink it, even if it's easier said than done. Have an outline before each speech. He's not funny but he doesn't have to be for him to be a decent instructor lol.", + "pos": 0.174, + "neu": 0.729, + "neg": 0.096, + "_id": { + "$oid": "6711d772cd60fca157e6059e" + } + }, + { + "text": "I've heard that he's apparently more work than most speech teachers but he's pretty easy. He's an easy grader. As long as you show improvement, you'll probably get an A. If you mess up the first two speeches and get the last one right, he'll make it count the most. Just stay on top of things and follow the grading rubic to the T.", + "pos": 0.229, + "neu": 0.73, + "neg": 0.041, + "_id": { + "$oid": "6711d772cd60fca157e6059f" + } + }, + { + "text": "Can't believe this guy is still around. Inconsistent feedback, unappealing attitude, not really funny at all. Usually sprints out of class before any students get to leave. Likes to make fun of how Asian people are always busy doing math.", + "pos": 0.133, + "neu": 0.784, + "neg": 0.083, + "_id": { + "$oid": "6711d772cd60fca157e605a0" + } + }, + { + "text": "Might appear mean at first but is actually a really nice guy who really wants students to be better public speakers, so he provides a lot of constructive criticism and speeches that incorporate your own interests and personality. Participate in class, listen to feedback suggestions, do the extra credit, and you'll get an A.", + "pos": 0.208, + "neu": 0.734, + "neg": 0.058, + "_id": { + "$oid": "6711d772cd60fca157e605a1" + } + }, + { + "text": "Public speaking is difficult and the professor admits that. He is a easy grader and to get a A, all you need to do is just be clear when speaking in public and when it comes down to the speeches it is really easy.", + "pos": 0.208, + "neu": 0.744, + "neg": 0.048, + "_id": { + "$oid": "6711d772cd60fca157e605a2" + } + }, + { + "text": "Public speaking is very hard & he takes that into account when grading you. Overall, he just wants to see improvement over the semester. He thinks he's funny but he's rude at times but everyone laughs because they want the A. You have three speeches, and then an extra-credit speech.", + "pos": 0.164, + "neu": 0.745, + "neg": 0.091, + "_id": { + "$oid": "6711d772cd60fca157e605a3" + } + }, + { + "text": "I honestly thought his class was a great one! He teaches speech in a different and better way (my friends had speech w. a diff. prof) 3 speeches and he gives you practice rounds and you submits drafts and get feedback! He wants you to do well and he gave us extra credit at the end of the semester. Plus, he's funny!", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d772cd60fca157e605a4" + } + }, + { + "text": "He tries too hard to be funny, and he fails every time. The ironic thing is he talks about how if we use humor in our speeches, we have to be sure the audience will think it's funny. He thinks our Speech class is an episode of Project Runway and he is Michael Kors. Very difficult to do your best when you are terrified of being humiliated.", + "pos": 0.169, + "neu": 0.657, + "neg": 0.175, + "_id": { + "$oid": "6711d772cd60fca157e605a5" + } + }, + { + "text": "I don't know what to say. He thinks he is funny but often he gets pleasure of out insulting students, always talking about his personal life in class (Ya im sure evryone is suprise u have a gf) anyway and not helpful at all. I wouldn't lie He grade papers fairly I got an A- But you have to work on your own he is not helpful at all.", + "pos": 0.12, + "neu": 0.757, + "neg": 0.124, + "_id": { + "$oid": "6711d772cd60fca157e605a6" + } + }, + { + "text": "He was great. He wants you to read the chapters and he will make questions about it.He is funny, laid back and cool. Lots of laughs.If you need his help, just write him an e-mail or make questions. He loves that and he can be very helpful! I loved my Speech class!", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d772cd60fca157e605a7" + } + }, + { + "text": "If you talk too fast while holding your speech in your hand, he might think you're reading too much. He can be a little too straightforward to some people, really sarcastic and humorous at other times. He's kinda hard on the grading...You need the speech handbook with this guy. He'll also make you write 3 drafts and an outline.", + "pos": 0.094, + "neu": 0.853, + "neg": 0.053, + "_id": { + "$oid": "6711d772cd60fca157e605a8" + } + }, + { + "text": "He's lol....hes cool...funny and very sarcastic...good feedback...kinda helpful..but cool", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d772cd60fca157e605a9" + } + }, + { + "text": "this guy was great!!! taught well and was funny, still kept it serious at times but as long as you got the little work done you were his best bud!", + "pos": 0.332, + "neu": 0.638, + "neg": 0.029, + "_id": { + "$oid": "6711d772cd60fca157e605aa" + } + }, + { + "text": "he is so chill, i love this guy! despite the fact that he does mock his students from time to time he is very helpful. you have the liberty to choose the topics to give your speeches on and if he sees a vast improvement from ur first speech to ur last speech, you get a decent grade. if you've no trouble speaking in public, then ur def getting the A", + "pos": 0.196, + "neu": 0.771, + "neg": 0.033, + "_id": { + "$oid": "6711d772cd60fca157e605ab" + } + }, + { + "text": "He is straight forward. He won't lie to you and I respect that. His sarcasm is beyond and out the door. His straight forward additude I think helped a lot. He's not horrible just miss understood. He's stric yet laid back. It's never lose-lose. If you need help he's there and he makes presenting a speech less scarier.", + "pos": 0.208, + "neu": 0.764, + "neg": 0.028, + "_id": { + "$oid": "6711d772cd60fca157e605ac" + } + }, + { + "text": "He's a good professor as long as your on his good sides. Make sure that you're one of his favorites because he can be mean and will embarass you if he doesn't like the way you treat his class. Overall he's a good professor but he can be partial without even realizing it.", + "pos": 0.191, + "neu": 0.782, + "neg": 0.026, + "_id": { + "$oid": "6711d772cd60fca157e605ad" + } + }, + { + "text": "i hated him at first, but he cares alot for his students's work VERY HELPFUL will stay behind for 30 min with students or even more. replies back to to emails office is open for students isnt an easy teacher but not hard you'll actually learn how to be a better writer is very sarcastic, if u ask a stupid ques in his view very helpful not a bad prof", + "pos": 0.243, + "neu": 0.62, + "neg": 0.137, + "_id": { + "$oid": "6711d772cd60fca157e605ae" + } + }, + { + "text": "he isnt bad, seriously he tells u exactly what he wants and he'll only embarres u if u do something stupid (like walk in when some1 is presenting) no HW just 2 reviews for each speech which are so easy n he grades leniently. u have 3 speeches and 1 ec which helps a lot. show him that u care n he'll be cool. The class is very fun, he's a funny man", + "pos": 0.272, + "neu": 0.668, + "neg": 0.06, + "_id": { + "$oid": "6711d772cd60fca157e605af" + } + }, + { + "text": "i was the worst student in his class, n he gave me a lot of chances, u just have to talk to him, i got a C+, imagine if he liked u..lol", + "pos": 0.122, + "neu": 0.769, + "neg": 0.109, + "_id": { + "$oid": "6711d772cd60fca157e605b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d773cd60fca157e605b2" + }, + "professor_name": "Maxime Blanchard", + "rating": 5, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "His class is really easy but also really fun", + "pos": 0.499, + "neu": 0.501, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605b3" + } + }, + { + "text": "Maxime is one of the best professors I've ever had at CCNY, he is engaging, smart, and a good teacher. I learned so much and genuinely enjoyed going to class. Seriously take his course if you get the chance and are interested in learning french.", + "pos": 0.343, + "neu": 0.628, + "neg": 0.029, + "_id": { + "$oid": "6711d773cd60fca157e605b4" + } + }, + { + "text": "Personally struggled with other VERY demanding classes, but Maxime was always lenient and actually helpful. His class alone is fun, engaging & easy-going. Just put in effort and you're usually gold. Loved his teaching style, actually got something out of his class, but overall personally appreciated just how understanding he was. Take him!", + "pos": 0.324, + "neu": 0.593, + "neg": 0.083, + "_id": { + "$oid": "6711d773cd60fca157e605b5" + } + }, + { + "text": "Words can not explain how fun his class was. you will learn the material in a fun & interesting way, and you will move around the class. I would recommend for anyone who's looking to learn french to take his class, but make sure that you have a good back ground in french if you're going into french 2 #TonsOfExtraCredit #bestprofessor #My2ndA", + "pos": 0.178, + "neu": 0.795, + "neg": 0.026, + "_id": { + "$oid": "6711d773cd60fca157e605b6" + } + }, + { + "text": "Maxime is amazing. He is genuine, fun, and he knows how to keep a class engaged. I had him twice, and I wish I could have him again and again. Also, he is so approachable . He wants to give everyone a good grade, and you will get one if you just participate in class activities. TAKE HIM! I have never come across a student who doesn't like him.", + "pos": 0.194, + "neu": 0.78, + "neg": 0.026, + "_id": { + "$oid": "6711d773cd60fca157e605b7" + } + }, + { + "text": "I took Maxime's class from the begining for a reason; he is fun, a little hyper french professor. you will need the textbook or you will flounder. even though he doesn't pressure students to do the h.w it helps dramatically with learning the language. exams are open book and the oral is so laid back you aren't as nervous. Greatest Professor Eva!", + "pos": 0.141, + "neu": 0.811, + "neg": 0.048, + "_id": { + "$oid": "6711d773cd60fca157e605b8" + } + }, + { + "text": "Maxime is AMAZING. He is so helpful and he makes time to help you. He is my favorite prof.He make sure you understand and he shows you cool ways to remenber.Singing and dancing are mandatory in his class. It's a real fun class", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605b9" + } + }, + { + "text": "Incredibly funny and smart. He shows incredible films that will help improve not only your French but your outlook on life.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605ba" + } + }, + { + "text": "Great professor. Very charming guy and quite funny as well. I had him in the fall of 2013 and hemade french my favorite class by far.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605bb" + } + }, + { + "text": "Took him for French 2 before this also. He's simply amazing. He truly wants you to LEARN the language and the culture; not just learn enough to pass. He's always available to help. He just wants to see that you're making effort. He's a very interactive professor. Always moving, creative assignments, etc. Be prepared to move around.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605bc" + } + }, + { + "text": "This class is so much fun. You'll be up out of your seat, moving around, doing activities, singing songs, interacting with your classmates. Tests are open book because it's more about understand than memorization and you will understand because Maxime wants you to understand and have a love for the language. I looked forward to going to this class.", + "pos": 0.12, + "neu": 0.88, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605bd" + } + }, + { + "text": "Maxine is honestly one of the best professors I have had!!!!! This guy is sooooooo nice and understanding! You can use any thing you want on his test, but his method of teaching is amazing! He loves participation! I say take his class!", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605be" + } + }, + { + "text": "Maxine is the best professor in CCNY they need to give him a medal. He is so nice and his class is so dynamic. His test are OPEN BOOK. You will learn a lot by application rather than brute memorization. He even bought us cupcakes <3 Easy A.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605bf" + } + }, + { + "text": "Honestly, Maxime is my favorite professor ever. 1, He's beautiful. 2, He's an amazing person. 3, He is incredibly intelligent and a fantastic teacher with a really creative, effective teaching method. 4, He giggles, and it's adorable. 5, Class is always interesting, and I never wanted to skip. Really, though - you must take his class. He's amazing.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605c0" + } + }, + { + "text": "he's a great teacher he has you walking around the class and interacting with the rest of your classmates he's really down to earth and really cool and you actually learn french if its your first time taking french you will do just find trust me !! he's fun and great take this class had a great time worth every penny", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605c1" + } + }, + { + "text": "I've had him for all my french classes except traduction. From elementary to elective courses and he's my advisor.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605c2" + } + }, + { + "text": "Maxime is one of my absolute favorite professors at CCNY. He is fair, and very understanding. He makes sure the whole class gets what he is teaching, and he never gives up on making you learn. He is very active, you will literally walk around the classroom. Movement is key in this class, and it really does help with learning.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605c3" + } + }, + { + "text": "One of the Best teachers ever. He is fair, engaging & has a passion to teach, he cares for his students and has a passion for his what he teaches. He's has a fresh and innovative approach to literature. He deserves to be at a top notch school.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605c4" + } + }, + { + "text": "Great teacher, very helpful, insightful and he makes the effort to make you love the subject. Il est le meilleur!!!", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605c5" + } + }, + { + "text": "Maxime Blanchard is an awesome professor, this is not one of those classes where you go to just sit & he lets you know it. But you learn a great deal & he will work with you on extra credit and he is an awesome grader. By the way he has to be one of the cutest professors I've seen. Absolutely adorable & I have a huge crush. He's extremely smart.", + "pos": 0.348, + "neu": 0.632, + "neg": 0.019, + "_id": { + "$oid": "6711d773cd60fca157e605c6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d773cd60fca157e605c8" + }, + "professor_name": "Crystal Rodwell", + "rating": 1.6, + "department": "English department", + "comments": [ + { + "text": "Just to start off, this was by far my most stressful class even as an engineering major... This is a writing class. In no world should that ever be the case. Her rubrics are not helpful as she is never clear with what she wants from you. She does allow resubmission for a higher grade but she is so stingy with grading. She gave a little extra credit", + "pos": 0.057, + "neu": 0.791, + "neg": 0.152, + "_id": { + "$oid": "6711d773cd60fca157e605c9" + } + }, + { + "text": "she is an EXTREMELY tough grader and grades based on a rubric that she doesnt provide she relies on participation in class for you to understand what she wants. Additionally with the stingy grading, she assigns five different parts for each main assignment and she overlaps with the next assignment making time management in this class really hard.", + "pos": 0.0, + "neu": 0.89, + "neg": 0.11, + "_id": { + "$oid": "6711d773cd60fca157e605ca" + } + }, + { + "text": "Try avoiding her if you can. A lot of essays, a lot of homework, that much that I lost track of some of them sometimes. If you are taking other classes also, try another english class cause she is that much work as a whole semester of other classes.", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d773cd60fca157e605cb" + } + }, + { + "text": "Her class is boring. She is a tough grader.", + "pos": 0.0, + "neu": 0.648, + "neg": 0.352, + "_id": { + "$oid": "6711d773cd60fca157e605cc" + } + }, + { + "text": "Professor Rodwell clearly states in the syllabus what is required for each assignment and goes over the explanation of the assignments in class, so there are no surprises. She welcomes questions and truly wants her students to understand what she is teaching. As long as you show up to class and put effort into your assignments you will be good.", + "pos": 0.183, + "neu": 0.793, + "neg": 0.024, + "_id": { + "$oid": "6711d773cd60fca157e605cd" + } + }, + { + "text": "I honestly went into this class expecting the worst because most people exclaimed, \"She's the worst\" or \"Beware of this class,\" but my fears were unfounded. Professor Rodwell does her best to ensure everyone understands what is expected of them and even offers to meet out of class time. Try your best, and you will be rewarded for your efforts. GL!", + "pos": 0.259, + "neu": 0.636, + "neg": 0.106, + "_id": { + "$oid": "6711d773cd60fca157e605ce" + } + }, + { + "text": "Although she is a nice professor, she gives a bunch of work. Also, contacting her after class is difficult because she does not respond to emails. If you don't want to write a lot, I wouldn't take her because that's all you'll be doing, but if you do, go ahead and take her.", + "pos": 0.035, + "neu": 0.913, + "neg": 0.052, + "_id": { + "$oid": "6711d773cd60fca157e605cf" + } + }, + { + "text": "The professor is kind and understanding for the most part. However, her assignments are simply too many. She's also hard to reach outside of class and suggests you reach out to peers instead. If you enjoy extensive writing and reviewing, take her course. Seek another professor if you need this course as a requirement, this one will drive you nuts.", + "pos": 0.132, + "neu": 0.812, + "neg": 0.056, + "_id": { + "$oid": "6711d773cd60fca157e605d0" + } + }, + { + "text": "I got an A+ in this clas because I spoke the truth. She is very stringent with grading and project work and a lot of it is highly unrealistic if you try to do the work wholeheartedly. There are multiple papers thet she requires a very specific set of criteria for which makes it difficult to revise work especially bc she wants a ton of peer review.", + "pos": 0.033, + "neu": 0.931, + "neg": 0.036, + "_id": { + "$oid": "6711d773cd60fca157e605d1" + } + }, + { + "text": "Professor Rodwell runs a very difficult class, if you want an easy grade go to someone else. There is a lot to keep in mind and keep up with so, you may get burnt out or buried by work. Though is overall fine as long as you don't mind the high amount of work you'll have to do.", + "pos": 0.096, + "neu": 0.86, + "neg": 0.044, + "_id": { + "$oid": "6711d773cd60fca157e605d2" + } + }, + { + "text": "Honestly, she's not the WORST, but definitely take another prof if you procrastinate a lot and want more sleep. The deadlines can be insane sometimes, especially if you have a packed schedule. Very vague about what she wants, but just follow what her syllabus says to do for papers and you'll be fine.", + "pos": 0.184, + "neu": 0.728, + "neg": 0.088, + "_id": { + "$oid": "6711d773cd60fca157e605d3" + } + }, + { + "text": "Overall rodwell is not a bad professor she is very nice professor. She give a lot of homework so be prepared.she is a very tough grade. You have to participate in her class. Makes sure you get your homework before next class. Her class is difficult in the beginning but when it come to end of class you realize it is very easy.", + "pos": 0.141, + "neu": 0.814, + "neg": 0.045, + "_id": { + "$oid": "6711d773cd60fca157e605d4" + } + }, + { + "text": "PLEASEdo not take this professor. Not only she is gives tonss of HW, but she is never satisfied even if you try super hard. I have re done my HW more than twice and she always finds something to say.She wants us to read her mind and put the words that she wants in that paper. She also forgets that a lot of us don't have english as first language...", + "pos": 0.07, + "neu": 0.871, + "neg": 0.06, + "_id": { + "$oid": "6711d773cd60fca157e605d5" + } + }, + { + "text": "The class is a lot of work, however it is manageable. If you show up to class and participate you will probably be fine. She also will explain your grade if you ask.", + "pos": 0.053, + "neu": 0.947, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605d6" + } + }, + { + "text": "I took her for FIQWS 10108. BOY HER CLASS IS HARD ASF!!! Avoid this professor at all costs if you can. You will not survive. She gives too much homework, papers, and pleasing her is hard. Expect bad grades and horrible feedback with the same thing \"did not meet requirements\" ugh. Like what she means by this? I never want to see her ever again", + "pos": 0.104, + "neu": 0.708, + "neg": 0.188, + "_id": { + "$oid": "6711d773cd60fca157e605d7" + } + }, + { + "text": "I took her for FIQWS 10108. If you love your life and want to stay sane... Please stay away from Prof Rodwell. She is such a harsh grader, gives no feedback whatsoever her favorite thing to say is your paper \"didn't meet the expectations\" yet isn't clear on what those expectations are. RUN AWAY AND DONT LOOK BACK, TRUST ME.", + "pos": 0.147, + "neu": 0.709, + "neg": 0.144, + "_id": { + "$oid": "6711d773cd60fca157e605d8" + } + }, + { + "text": "Literally the amount of work is ridiculous", + "pos": 0.0, + "neu": 0.706, + "neg": 0.294, + "_id": { + "$oid": "6711d773cd60fca157e605d9" + } + }, + { + "text": "Although the professor knows what she is teaching it is extremely difficult to please her with work and pass. Even if you think you are doing a good job you will most likely never see a 100% on any assignment. Class was just way too stressful and the outcome was disappointing so I wouldn't recommend the professor.", + "pos": 0.08, + "neu": 0.749, + "neg": 0.171, + "_id": { + "$oid": "6711d773cd60fca157e605da" + } + }, + { + "text": "*keep away from her course.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d773cd60fca157e605db" + } + }, + { + "text": "Very unclear grading criteria for her papers and very disorganized. She's not at all passionate about her job and makes it extremely difficult to excel in her class. do yourself a favor don't take her class it really isn't worth it. You need to keep", + "pos": 0.106, + "neu": 0.675, + "neg": 0.219, + "_id": { + "$oid": "6711d773cd60fca157e605dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d774cd60fca157e605de" + }, + "professor_name": "Barbara Naddeo", + "rating": 3.6, + "department": "History department", + "comments": [ + { + "text": "Among the best teachers I have ever had. I have taken her courses in Early Modern Europe, in a History of European Law, in Information Methods in Early European Empires. She is just great. As in any other course, the more reading you put into a Naddeo course, the more you will get out of it. And the better your grade will be.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605df" + } + }, + { + "text": "Sorry wrote the previous rating, needed more space. Reading can be hard to understand, but she goes over it in class. Make sure to have some idea before coming in though and be prepared bc she can randomly call on you to answer a question; you're good even if your response isn't right. Remember details from previous classes, she'll ask abt those.", + "pos": 0.134, + "neu": 0.832, + "neg": 0.034, + "_id": { + "$oid": "6711d774cd60fca157e605e0" + } + }, + { + "text": "Took in Fall 2023, honestly miss the class. If you answer wrong, you still get participation. Had to do this fun travelogue & go to the Met Museum on our own time; at 1st might seem like she's asking for too much, but it's very enjoyable and helps build the paper up. Strict, but sweet, caring, and gives 2nd chances. Read pgs & take notes though", + "pos": 0.294, + "neu": 0.666, + "neg": 0.04, + "_id": { + "$oid": "6711d774cd60fca157e605e1" + } + }, + { + "text": "People come on this board and disparage this woman for teaching history at an actual higher level. Sorry, but she won't \"hold your hand\" like in high school, and if that's what you want, why are you here? \nGrow up. Want an easy history class? Take one with an adjunct professor, but stop wasting this poor woman's time.", + "pos": 0.133, + "neu": 0.636, + "neg": 0.231, + "_id": { + "$oid": "6711d774cd60fca157e605e2" + } + }, + { + "text": "If you are serious about history and show it, the class will be a valuable experience for you. You will get good, detailed feedback on papers. If you have trouble with long lectures however, consider not taking.", + "pos": 0.14, + "neu": 0.767, + "neg": 0.093, + "_id": { + "$oid": "6711d774cd60fca157e605e3" + } + }, + { + "text": "Meet with her first before taking a class with her. If she doesn't have a good first impression of you, it's very hard to earn her good opinion (and very hard to get a B or higher) no matter how hard you work.", + "pos": 0.098, + "neu": 0.734, + "neg": 0.168, + "_id": { + "$oid": "6711d774cd60fca157e605e4" + } + }, + { + "text": "Naddeo only gives 4 papers which are in reality about 1-3 pages minimum which is good if youre juggling difficult classes. Naddeos lectures are boring and her handwriting is difficult to read so if you fall behind on notes, youre screwed. Her prompts are difficult to read. Scolds you for the littlest things and is very passive aggressive.", + "pos": 0.071, + "neu": 0.716, + "neg": 0.213, + "_id": { + "$oid": "6711d774cd60fca157e605e5" + } + }, + { + "text": "Often wings her lectures & talks more than anything. She scolds students as if they were in high school and she talks to the class like so. Usually late which is annoying since many of us rush to class. What sucks the most is that she only gives us 5days to write most papers as she leaves the most important lectures pertaining to papers last minute", + "pos": 0.064, + "neu": 0.864, + "neg": 0.072, + "_id": { + "$oid": "6711d774cd60fca157e605e6" + } + }, + { + "text": "Professor Naddeo does not have a clear structure to her lectures and many of her dates and facts are wrong. She doesn't do much to help students understand the material, but instead gives a bunch of difficult essays to write. You will have to read some boring, long novels and readings by historical figures to understand class and to write essays.", + "pos": 0.027, + "neu": 0.827, + "neg": 0.145, + "_id": { + "$oid": "6711d774cd60fca157e605e7" + } + }, + { + "text": "It's clear this teacher has no actual plans for her lectures. She sits down and just talks at students, often stumbling over her words and using awkward, overly pretentious language. She expects students to read huge documents and often calls out students randomly in class. She often forgets dates and details of what she is teaching.", + "pos": 0.081, + "neu": 0.857, + "neg": 0.063, + "_id": { + "$oid": "6711d774cd60fca157e605e8" + } + }, + { + "text": "Professor Naddeo, holds quite boring lectures that will make you sleepy. She gives 3-4 papers and is very picky with her grading. She also takes forever to grade. She expects everyone to do the readings and have answers to her questions", + "pos": 0.0, + "neu": 0.939, + "neg": 0.061, + "_id": { + "$oid": "6711d774cd60fca157e605e9" + } + }, + { + "text": "Professor Naddeo is good. She gave a take-home midterm and a take-home final. Doing the readings will help for participation. Her directions for the final were a little confusing.", + "pos": 0.169, + "neu": 0.783, + "neg": 0.048, + "_id": { + "$oid": "6711d774cd60fca157e605ea" + } + }, + { + "text": "Lectures are really boring; I fell asleep all the time. However, still got an A. Take notes because you may need them for quizzes. Only 3 quizzes (which are done at home) & 4 papers make up your entire grade. Read the readings especially for the paper you're doing. Easily approachable if you need her after class and is helpful.", + "pos": 0.08, + "neu": 0.88, + "neg": 0.04, + "_id": { + "$oid": "6711d774cd60fca157e605eb" + } + }, + { + "text": "Prof. Naddeo is a highly respected member of the amazing CCNY History Department, and after taking her class, I can see why. She gives amazing lectures, and fills your head with details. She also has you read quite a bit, but for good reason: the readings compliment the lectures. The paper I wrote for her final is one of my proudest pieces.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605ec" + } + }, + { + "text": "Very knowledgeable, always positive and willing to work with you.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605ed" + } + }, + { + "text": "She definitely knows her stuff . It would be wise to read up on the subject of the course before you take her. I had her for spring 2016 semester for the Age of Enlightenment and it was an interesting class the text were a little dated and hard to interpret in today's context, so I was constantly going online to figure things out. Not for lazies!!", + "pos": 0.124, + "neu": 0.86, + "neg": 0.016, + "_id": { + "$oid": "6711d774cd60fca157e605ee" + } + }, + { + "text": "Naddeo is one of the best, she assigns two tests all semester and even assigns time off for you to work on said tests, which are identifications and one essay. She is strict on attendance and does cold call if she feels you are intelligent and tries to have you carry the class. Other than that it's an easy class", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605ef" + } + }, + { + "text": "I love European History and Naddeo's class was an overview of it. I came in knowing quite a bit of the information and I flew right through the class. She is very easy giving ample of chances to get better grades on already graded assignments", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605f0" + } + }, + { + "text": "Yes, it's alot of reading, but it is worth it. She is not an \"easy\" A, but an A is very possible if one puts in the amount of effort an average college class should require. It's not hard to realize that the bad comments come from those who want a college degree without having to work for it.", + "pos": 0.104, + "neu": 0.78, + "neg": 0.116, + "_id": { + "$oid": "6711d774cd60fca157e605f1" + } + }, + { + "text": "NADDEO IS AWESOME! dont take her if you are lazy and want to learn absolutely nothing, she is very understanding if you contact her about not being able to miss class due to an emergency and she does not overwhelm her students with work. so far one of the BEST PROFESSORS I HAVE HAD AT CCNY! SHE KNOWS HER STUFF!DEFINITELY TAKING SCIENTIFIC REV. w/he", + "pos": 0.174, + "neu": 0.739, + "neg": 0.087, + "_id": { + "$oid": "6711d774cd60fca157e605f2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d774cd60fca157e605f4" + }, + "professor_name": "Sergiy Merenkov", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "One of the best math professors ive ever taken. Very good at explaining the concepts, especially considering how difficult it is. Homework is very annoying to do though and takes so long. Exams are easy if you know the structure and the type of questions they ask.", + "pos": 0.177, + "neu": 0.724, + "neg": 0.099, + "_id": { + "$oid": "6711d774cd60fca157e605f5" + } + }, + { + "text": "Just had him this semester. He's a good teacher, lets get that out the way. His lectures are amazing and he answers any question. Just really tough on grading and there isn't much room for error. Two Midterms are basically 55%, Final 40%, and HW 5%. Just be on top of your studies and don't slack. But he's a great guy.", + "pos": 0.164, + "neu": 0.79, + "neg": 0.047, + "_id": { + "$oid": "6711d774cd60fca157e605f6" + } + }, + { + "text": "Not the worst but not the best. Grading criterial is as follows: Midterm 1: 27.5%, Midterm 2: 27.5%, Final: 40%, Pearson HW: 5%. Does not curve. Gives partial credit on exams.", + "pos": 0.146, + "neu": 0.735, + "neg": 0.119, + "_id": { + "$oid": "6711d774cd60fca157e605f7" + } + }, + { + "text": "Good professor. 2 midterms, 27.5% ea., 5% hwk, 40% final. Class isn't difficult (esp. for CCNY math). Biggest advice: 1) Take good notes in class 2) Do the hwk and study it for exams 3) Write out all your steps on exams - tonnes of partial credit 4) Final exam similar to past finals. You'll do well with a bit of effort and following the steps.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605f8" + } + }, + { + "text": "This class made me Miserable. The professor was difficult to understand and his accent and handwriting made it much worse. This class was graded on 2 tests and a final so no way to pass unless u pass ur exams. even if this class is difficult the grading process did not make it any easier. I would avoid it.", + "pos": 0.039, + "neu": 0.731, + "neg": 0.23, + "_id": { + "$oid": "6711d774cd60fca157e605f9" + } + }, + { + "text": "Avoid.", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d774cd60fca157e605fa" + } + }, + { + "text": "I was apprehensive because of the reviews, but he is honestly great. He is extremely intelligent and gave clear lectures, always answered any questions, went over HW if we asked, and did exam reviews. He doesnt curve, & 95% of grade is based on 2 exams (55%) + 1 final (40%), but he's pretty generous w/ partial credit, and a really nice guy overall", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605fb" + } + }, + { + "text": "Honestly, he was a great professor; his lectures were confusing at times, but he took his time to ensure everyone understood the material. Sometimes he used entire lectures to go over topics that students were confused with. Calculus 3 is challenging yes, but this professor makes it somewhat easier to understand. I would definitely take him again.", + "pos": 0.278, + "neu": 0.661, + "neg": 0.061, + "_id": { + "$oid": "6711d774cd60fca157e605fc" + } + }, + { + "text": "Don't take him..... won't pass.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d774cd60fca157e605fd" + } + }, + { + "text": "He speaks nice but dont take him. He does not care about effort or your understanding of the material. For online learning he made the final as 65% of grade and midterm as 25% and 10% hw. He did not not even give a curve of 0.01. One of the few professors who will love to fail the entire class not realizing the difficulty of their exams! DON'T TAKE", + "pos": 0.127, + "neu": 0.774, + "neg": 0.099, + "_id": { + "$oid": "6711d774cd60fca157e605fe" + } + }, + { + "text": "he is clear, responsible, and caring but your grade relies on tests(90%). 2 exams: 1 midterm and one final. 10 multiple questions in the final, not allowed to go back and forth, process does not matter. If you mess up, that is it. Take him if class does not take place online.", + "pos": 0.098, + "neu": 0.826, + "neg": 0.077, + "_id": { + "$oid": "6711d774cd60fca157e605ff" + } + }, + { + "text": "Don't get trapped by the fives he has, im not a bad student,and killed myself in studying for this class but his exams r crazy. Hes the supervisor for calc 3 and makes the exams 3x more difficult. Almost impossible to pass his class, his grading is real tough and give 6 questions in a midterm and if you mess up two, u r out,and noooo curve/dropping", + "pos": 0.049, + "neu": 0.766, + "neg": 0.186, + "_id": { + "$oid": "6711d774cd60fca157e60600" + } + }, + { + "text": "I really respect him and he is kind. However, his grading policy is worst. Effort doesnt count. He goes strictly by the book. 6 question exams and even if u mess up two u are out. No curve at all. Not even dropping lowest exam. Big challenge to pass his class unless you are a super mastermind.", + "pos": 0.197, + "neu": 0.681, + "neg": 0.122, + "_id": { + "$oid": "6711d774cd60fca157e60601" + } + }, + { + "text": "Professor Merenkov is a very enthusiastic and learned man no . He knows his stuff and will teach you exactly what you need to know for his two midterms and final. But he is not lenient at all . The class is a tough transition from calculus. Two midterms makes up 50% of the grade and his curvee are barely curves. Make sure to study and do well early", + "pos": 0.098, + "neu": 0.829, + "neg": 0.073, + "_id": { + "$oid": "6711d774cd60fca157e60602" + } + }, + { + "text": "Very kind and let us express our concerns often, and pretty good at explaining tougher concepts. exams can have tough questions sometimes but it's often decent and he does curve.", + "pos": 0.228, + "neu": 0.735, + "neg": 0.037, + "_id": { + "$oid": "6711d774cd60fca157e60603" + } + }, + { + "text": "Avoid as much as possible if u care about ur GPA. He knows his stuff but cant relay that in his teaching, also a tough grader even for computational errors. Class average steadily declined and he barely gave a curve", + "pos": 0.047, + "neu": 0.808, + "neg": 0.145, + "_id": { + "$oid": "6711d774cd60fca157e60604" + } + }, + { + "text": "Prof Merenkov is tough but fair. 50% split on 2 MTs. 40% final. 10% HW. He'll answer questions on the HW every week. It's important to read the textbook and understand the material every week as it is cumulative. He's very respectful and doesn't mind answering any questions on the material.", + "pos": 0.166, + "neu": 0.813, + "neg": 0.022, + "_id": { + "$oid": "6711d774cd60fca157e60605" + } + }, + { + "text": "He's great at teaching and his test are fairly simple with no tricky wording or anything meant to confuse students. He'll answer every question you have, but in my opinions answers too many questions as were usually behind other sections because of him sometimes spending the entire class hour just answering question after question.", + "pos": 0.067, + "neu": 0.907, + "neg": 0.026, + "_id": { + "$oid": "6711d774cd60fca157e60606" + } + }, + { + "text": "Professor Merenkov teaches very well. The material is hard and does hard examples in class so you understand the material. Exams are tricky but if you study and pay attention in class you should be fine. You'll learn more in Merenkov's class than any other math class you've taken.", + "pos": 0.075, + "neu": 0.824, + "neg": 0.102, + "_id": { + "$oid": "6711d774cd60fca157e60607" + } + }, + { + "text": "He cares for his students. I did very poorly on the midterms (silly mistakes) and improved for the final and got a B+. Do problems to practice, and make sure you bang out the stupid mistakes before the exam. If you do this you will do well.", + "pos": 0.191, + "neu": 0.626, + "neg": 0.183, + "_id": { + "$oid": "6711d774cd60fca157e60608" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d775cd60fca157e6060a" + }, + "professor_name": "Justin Williams", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Best english professor hands down. He has an understanding attitude and makes everyone look forward to his class. The final project might be something people hate since it's a group project, but that shouldn't stop you from having an amazing experience with him.", + "pos": 0.197, + "neu": 0.758, + "neg": 0.046, + "_id": { + "$oid": "6711d775cd60fca157e6060b" + } + }, + { + "text": "Professor Williams is fantastic. Lectures were always interesting and a joy to attend. He has a great sense of humor and knows how to run a chilled classroom while also effectively teaching. I only wish I had to take more English courses so I can take him again.", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6060c" + } + }, + { + "text": "Best professor ever. He is very understanding and makes class fun always. His lectures are interesting and makes me want to learn more.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6060d" + } + }, + { + "text": "he was extremely clear about the expectation and made the class engaging and fun to attend.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6060e" + } + }, + { + "text": "The best professor I've had so far. He's so nice and understanding. I highly recommend taking this class.", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6060f" + } + }, + { + "text": "He's hands-down one of the best professors I've ever had. He's hilarious and really understanding. But he keeps us productive and on-track with assignments. Just show up, do the work and participate(even a little), you'll do great. The assignments aren't even tedious or hard at all. He gives great feedback too.", + "pos": 0.244, + "neu": 0.731, + "neg": 0.025, + "_id": { + "$oid": "6711d775cd60fca157e60610" + } + }, + { + "text": "Very funny and caring, he is understanding that life happens sometimes and can impede on certain things. Not a crazy amount of work (though this was online so it might be different in person) but it was mostly group work. Show up to class get the work done, easy A. gotta love the wheeze", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60611" + } + }, + { + "text": "Williams is a fun professor to be around and overall is great. Anything that needs explaining in class he will happily go over. Class discussions are good fun as well! Not the hardest class you'll ever take but you still have to write a few detailed papers and a group project. Easily recommend and would for sure take him as a teacher again", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60612" + } + }, + { + "text": "The funniest class I have ever had. He is just amazing and very helpful. His lectures are always interesting. Not a lot of work. Though the class is in the evening, you should definitely take him if you can.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60613" + } + }, + { + "text": "literally the easiest A+ i have taken so far. he is just like a student and he understands our struggles and asks US for deadlines. u have a few papers to sumbit (theyre not even that long) and he even reviews the final draft for you before u submit. although an evening class, i did not regret a single moment. always ends early too!", + "pos": 0.113, + "neu": 0.852, + "neg": 0.035, + "_id": { + "$oid": "6711d775cd60fca157e60614" + } + }, + { + "text": "Professor Williams is one of the best professors at City College. Very clear and direct in terms of what is required. Attendance is mandatory but the lectures are really fun and the textbook really helps in terms of the writing assignments you will need to complete (You can find the textbook PDF for free!!). Is always available, great guy", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60615" + } + }, + { + "text": "Lots of writing, not TOO much though. He assigns readings almost every week but you don't need to go to deep into it if you don't want to, just understand the overall idea. For every big paper, you submit a draft and he adds specific suggestions to your draft. Based on these comments, you edit your paper and (voila!) get an A on every paper.", + "pos": 0.0, + "neu": 0.975, + "neg": 0.025, + "_id": { + "$oid": "6711d775cd60fca157e60616" + } + }, + { + "text": "Good professor. Always available and accessible before and after class. He is there to help you. Coursework is reasonable but man did I have to really put in time to do my research and READ more than I thought I could ever do in a semester. Lots of readings, 1 Midterm, 1 Final, 1 Research Paper, & 1 Presentation. Be prepared for pop quizes.", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60617" + } + }, + { + "text": "He is one of the best proffesors, I have ever had. He is very funny, and chill in class. He always initiates very interesting discussions that makes his class very interesting. He gives very clear instructions for all of the assignments. If you follow instructions and do all of the assignments, you're guaranteed an A.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60618" + } + }, + { + "text": "BEST TEACHER I HAVE EVER MET, HE IS HELARIOUS AND LIFE OF THE ROOM. Easy A, just do what you are told. There are no exams, just papers and readings. He gives you ample time for papers. Expect reading every other day, but they aren't long and are intresting af, you would love every momment. HIGHLY RECOMMEND TAKING THIS TEACHER, worth evening commit.", + "pos": 0.274, + "neu": 0.706, + "neg": 0.02, + "_id": { + "$oid": "6711d775cd60fca157e60619" + } + }, + { + "text": "Great professor. Gives amazing feedback on his assignments. Also has great relationship with students.", + "pos": 0.522, + "neu": 0.478, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6061a" + } + }, + { + "text": "He is absolutely one of the best professor hands down. He's funny and creates a though provoking class while also making you learn how to be an effective writer. Definitely recommend easy A, and fun with lots of room for professional growth as a writer. There are only 3 papers overall!!!! He gives good feedback, and has an easy template to follow.", + "pos": 0.391, + "neu": 0.588, + "neg": 0.021, + "_id": { + "$oid": "6711d775cd60fca157e6061b" + } + }, + { + "text": "Amazing professor. Must take him for this course and any other courses he teaches. Unbelievable improvement in reading and writing for Engineering students after taking his class.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6061c" + } + }, + { + "text": "He is awesome, very lenient and understandable. Easy A class with minimum effort. The final group project is very confusing and annoying. Would of given him 5 if it wasn't for that.", + "pos": 0.226, + "neu": 0.65, + "neg": 0.124, + "_id": { + "$oid": "6711d775cd60fca157e6061d" + } + }, + { + "text": "He's the man. Best English class I've ever had. Every class was interesting and he really dials into how you need to write to communicate effectively. Be prepared to read and write quite a bit, but due to the topics he chose it wasn't a chore at all. He gives great feedback to improve your writing. If this guy isn't tenured he needs to be.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6061e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d775cd60fca157e60620" + }, + "professor_name": "D. Wall", + "rating": 4, + "department": "Anthropology department", + "comments": [ + { + "text": "I really like her Human origins class. I think she's a wonderful person and a really good professor compared to other in the department. I got a lot out of the lectures and she was easy to understand. The exams were MC and some short answers. Participation and exam grades are grade boosters and will get an A- or A. She grades rather strict.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60621" + } + }, + { + "text": "Very sweet and helpful professor but not an easy grade professor .", + "pos": 0.257, + "neu": 0.553, + "neg": 0.191, + "_id": { + "$oid": "6711d775cd60fca157e60622" + } + }, + { + "text": "very kind and presents the material clearly. she's quite dry, though, and it can be difficult to pay attention to her. you also will need (shudder) to do some real work to get an A in her class, by which i mean: pay attention, read the textbook, study hard, and so on. tolerable but not recommended", + "pos": 0.069, + "neu": 0.811, + "neg": 0.12, + "_id": { + "$oid": "6711d775cd60fca157e60623" + } + }, + { + "text": "Had her for FIWQS human orgins, pretty boring professor but fair exams, all MC and if you have a minor understanding of evolution your set for the first exam.", + "pos": 0.154, + "neu": 0.795, + "neg": 0.05, + "_id": { + "$oid": "6711d775cd60fca157e60624" + } + }, + { + "text": "She knows her stuff.Her class is difficult. Advice: if you are not and Anthropology major avoid her.Do not risk lowering your GPA", + "pos": 0.134, + "neu": 0.678, + "neg": 0.188, + "_id": { + "$oid": "6711d775cd60fca157e60625" + } + }, + { + "text": "Human origins = boring, but Prof. teaches clearly & answers all questions. 1 research paper, 1 presentation, 2 exams and E.C. opportunities. Will learn a lot and she grades fairly.", + "pos": 0.195, + "neu": 0.758, + "neg": 0.046, + "_id": { + "$oid": "6711d775cd60fca157e60626" + } + }, + { + "text": "Nice professor, very reasonable. The class is not hard, she is an easy grader and her tests were multiple choice and short answer.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60627" + } + }, + { + "text": "Pros: Shes an easy grader, dropped first exam grade, easy-going. Cons: Laughs at her own terrible jokes nonstop, has chalk all over her clothing, back, face - has even licked it off once \"for protein.\" exams cover insane amount of textbook material, doesnt always give study sheet, and shes unbelievably boring. Take that last part very seriously....", + "pos": 0.118, + "neu": 0.73, + "neg": 0.152, + "_id": { + "$oid": "6711d775cd60fca157e60628" + } + }, + { + "text": "She is a pleasant professor. She loves the subject and explains the material well. If you read the textbook, then you will do well. She is a fairly easy grader and her exams are not difficult. She means well and wants to make sure the students understand the material. She is also nice and friendly.", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60629" + } + }, + { + "text": "She can't teach. You barely can understand her in her lectures. She always say \"does this work for you?\" well, obviously not if you quite making jokes and say everything striahgt up and be more clear..", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6062a" + } + }, + { + "text": "Dr. Wall is a pleasant teacher. She expects you to turn in all assignments on time, but she's not a very hard grader. She lectures to the book, so if you keep up with the reading (or atleast write down everything she says) you'll be fine.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6062b" + } + }, + { + "text": "What I like about her class is that she loves what she teaches and makes it easy to follow. She tries to make the work as real to the field as possible.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e6062c" + } + }, + { + "text": "She is sooo nice! The class can get boring sometimes but it's not hard. If u pay attention you'll do fine. The essays were easy.", + "pos": 0.303, + "neu": 0.595, + "neg": 0.102, + "_id": { + "$oid": "6711d775cd60fca157e6062d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d775cd60fca157e6062e" + } + }, + { + "text": "Well,she does love her work. She knows her material but she gives horrible notes. Very scatter at times but that really doesn't matter because she usually dictates the lecture. Omg and can you say boring! I've never stayed awake through a full lecture yet! And dont let me get started with her coloring book! Beleive me, biggest waste of time ever!!", + "pos": 0.036, + "neu": 0.77, + "neg": 0.194, + "_id": { + "$oid": "6711d775cd60fca157e6062f" + } + }, + { + "text": "Shes a pretty good teacher....there a /re two paper, a midterm and exam....she does her best to explain but if u dont like the topic....her explainations will seem like a bedtime fairytale....cuz shes real;y BORING!!!", + "pos": 0.232, + "neu": 0.624, + "neg": 0.144, + "_id": { + "$oid": "6711d775cd60fca157e60630" + } + }, + { + "text": "Prof. Wall is a great teacher all around. She is very passionate about her course. I had her for an archeology class and loved every minute of it. We did classroom work, went on historical tours and digs. She and her colleague Wendy were very thorough and helpful. Although, Prof. Wall is very anti-establishment & can be a bit anal at times.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60631" + } + }, + { + "text": "Great teacher. She gives a lot of extra credit, lets you resubmit papers for better grades, gives fairly easy exams and overall made me interested in the subject.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60632" + } + }, + { + "text": "Lots of sleeping ppl in the class, but not a lot of work involved, \"Is That Fair To Say?\"", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d775cd60fca157e60633" + } + }, + { + "text": "I did not use the book once and I got a B in her course. Everything is incorporated in her lesson plans which are easy to understand but boring. Easy class, take it.", + "pos": 0.15, + "neu": 0.774, + "neg": 0.076, + "_id": { + "$oid": "6711d775cd60fca157e60634" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d776cd60fca157e60636" + }, + "professor_name": "Elisabeth Wondimu", + "rating": 4.1, + "department": "Chemistry department", + "comments": [ + { + "text": "Wondimu is one of the great professors ccny has. Too bad she is not teaching there anymore :/ Will miss her and her lectures big time! The Recitation leader was amazing as well.", + "pos": 0.23, + "neu": 0.603, + "neg": 0.167, + "_id": { + "$oid": "6711d776cd60fca157e60637" + } + }, + { + "text": "She is the bet. Just study, and pray that God help you. Well concentrate in class and show her that you are really concerned with your chem studies. Also do not fail to attend the recitation class because some off the quizzes given in recitation were in the exams and final exam.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e60638" + } + }, + { + "text": "Hard class but shes solid. For the exams, study from her review sheets.", + "pos": 0.135, + "neu": 0.78, + "neg": 0.085, + "_id": { + "$oid": "6711d776cd60fca157e60639" + } + }, + { + "text": "She is great! Her exams are not easy but if you attend class and study her lectures, you'll do fine.", + "pos": 0.212, + "neu": 0.716, + "neg": 0.072, + "_id": { + "$oid": "6711d776cd60fca157e6063a" + } + }, + { + "text": "She is great. I don't even need to study that much because her lectures are amazing.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e6063b" + } + }, + { + "text": "I like her class. The best Chem professor. She knows how to teach and her exams are very easy.", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e6063c" + } + }, + { + "text": "Great professor but her exams are so hard.", + "pos": 0.235, + "neu": 0.553, + "neg": 0.212, + "_id": { + "$oid": "6711d776cd60fca157e6063d" + } + }, + { + "text": "I can say without a doubt that this professor is one of the best I have ever had. Wondimu is very knowledgeable of the material. She goes over many problems thoroughly without skipping steps. It was not an easy course but she made the material interesting and easier to learn. This class was a refreshing change from most courses!", + "pos": 0.171, + "neu": 0.777, + "neg": 0.052, + "_id": { + "$oid": "6711d776cd60fca157e6063e" + } + }, + { + "text": "I learned quite a bit in this course. The homework was useful. The exams were similar in content and structure to the review.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e6063f" + } + }, + { + "text": "She's awesome!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e60640" + } + }, + { + "text": "I highly recommend her class!", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e60641" + } + }, + { + "text": "I really learned a lot in her class. I wish we had more professors like her.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e60642" + } + }, + { + "text": "eh.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e60643" + } + }, + { + "text": "She was great. Exams were a little hard but her review session helped a lot.", + "pos": 0.154, + "neu": 0.783, + "neg": 0.063, + "_id": { + "$oid": "6711d776cd60fca157e60644" + } + }, + { + "text": "She taught the course very well. She seemed to care and helped out students in the classroom.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e60645" + } + }, + { + "text": "I liked Wondimu. She was very helpful and open to student questions in class. She was thoughtful about students and material. She goes over problems from the book and, if we wanted extra problems, we could attend recitation. I wish the Recitation was more structured though.", + "pos": 0.198, + "neu": 0.707, + "neg": 0.095, + "_id": { + "$oid": "6711d776cd60fca157e60646" + } + }, + { + "text": "Wondimu was a good professor. I am not sure that I would have successfully completed Chem 1 and 2 if it was another professor. she was very patient with students. I wish she taught organic chem.", + "pos": 0.206, + "neu": 0.748, + "neg": 0.046, + "_id": { + "$oid": "6711d776cd60fca157e60647" + } + }, + { + "text": "I thought professor Wondimu was very effective in her teaching. Not many professors are able to lecture topics in detail and have awesome slides like she does. She made students more participative and interactive. The final was tough but her reviews were helpful.", + "pos": 0.206, + "neu": 0.769, + "neg": 0.025, + "_id": { + "$oid": "6711d776cd60fca157e60648" + } + }, + { + "text": "hated her with a passion. Her test reviews are nothing like her test.", + "pos": 0.155, + "neu": 0.518, + "neg": 0.327, + "_id": { + "$oid": "6711d776cd60fca157e60649" + } + }, + { + "text": "Tough grader but she is one of the best professors, in my opinion.", + "pos": 0.321, + "neu": 0.609, + "neg": 0.069, + "_id": { + "$oid": "6711d776cd60fca157e6064a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d776cd60fca157e6064c" + }, + "professor_name": "Ruth Spencer", + "rating": 3.8, + "department": "Music department", + "comments": [ + { + "text": "I had Professor Spencer back in my spring semester of 2020 and I can honestly say that this professor was so understanding of the circumstances, that she only gave us 3 assignments to finish the semester without failing. In-person she can get a little grouchy if you don't participate, but as long as you study you're good", + "pos": 0.123, + "neu": 0.848, + "neg": 0.029, + "_id": { + "$oid": "6711d776cd60fca157e6064d" + } + }, + { + "text": "Literally, just read the textbook, go to class the next day, parrot a couple things you read and you'll get on her good side. Easy class. Good Prof. Don't drink water (department rule for music rooms) or she'll get mad. And participate (just say 1-2 things a day). If she remembers your name when doing attendance then you're doing something right.", + "pos": 0.126, + "neu": 0.827, + "neg": 0.046, + "_id": { + "$oid": "6711d776cd60fca157e6064e" + } + }, + { + "text": "She can get annoyed easily but is adorable as shes so passionate about music and deep down cares about the students doing well. If you show her you care about the course youll be on her good side. Midterm and final are easy, 2 concert reports and lots of note taking! Be prepared to get called on randomly.", + "pos": 0.401, + "neu": 0.577, + "neg": 0.022, + "_id": { + "$oid": "6711d776cd60fca157e6064f" + } + }, + { + "text": "Professor Spencer has a temper. Don't drink or eat in her class that makes her annoyed. Be sure to show up to every class. Be sure to be on time as she hates when people come in late. Be sure to do the assignments she gives for homework as she will ask questions in class. Be ready for 2 concert reports, and a midterm, and a final.", + "pos": 0.121, + "neu": 0.772, + "neg": 0.107, + "_id": { + "$oid": "6711d776cd60fca157e60650" + } + }, + { + "text": "She's a solid choice. Great prof. She does have a temper. Just don't drink water and make sure to do the readings. Reviews are exactly whats on the test.", + "pos": 0.223, + "neu": 0.698, + "neg": 0.078, + "_id": { + "$oid": "6711d776cd60fca157e60651" + } + }, + { + "text": "Honestly... the class itself is easy. If you show up, read on what she tells you'll pass. BUT she gives everyone anxiety, no one in class wants to participate, Calls on the students and makes them feel in lack of better word dumb. It's my easiest class, and the one I'm doing the best one but somehow I hate it. Too much anxiety for a music class.", + "pos": 0.187, + "neu": 0.604, + "neg": 0.209, + "_id": { + "$oid": "6711d776cd60fca157e60652" + } + }, + { + "text": "This class is relatively easy. Work consists of two concert reports, a midterm, and a final. You only have to read to participate in class discussion but or else, she literally spells out EXACTLY what will be on the midterm/final. She is very sweet, but can get annoying when people don't participate in class.", + "pos": 0.105, + "neu": 0.837, + "neg": 0.058, + "_id": { + "$oid": "6711d776cd60fca157e60653" + } + }, + { + "text": "She definetly has a temper, but she is adorable. Class is very clear. Everyday there were more chances for extra credit such as watching a movie and writing a page about it. 2 concert reports, midterm and final. Her reviews are amazing for these tests though.", + "pos": 0.316, + "neu": 0.653, + "neg": 0.031, + "_id": { + "$oid": "6711d776cd60fca157e60654" + } + }, + { + "text": "She is sometimes rude and hates when the class doesn't participate but she gives a-lot of extra credit to boost up your grade, you just need to attended two concerts and the midterm and final she gives a review for", + "pos": 0.148, + "neu": 0.768, + "neg": 0.084, + "_id": { + "$oid": "6711d776cd60fca157e60655" + } + }, + { + "text": "I mean, what is wrong with her? She thinks the world owes her a living? This class is a constant nerve-racking torment", + "pos": 0.0, + "neu": 0.859, + "neg": 0.141, + "_id": { + "$oid": "6711d776cd60fca157e60656" + } + }, + { + "text": "I wish I had listened to the reviews and not didn't take this course with her. She is always irritated, short tempered, annoyed and annoying at the same time. She tends to call on students and yell at them if they don't give her the perfect answer she wants to hear. This is supposed to be an easy freshman liberal art class, but believe me, it isnt", + "pos": 0.084, + "neu": 0.838, + "neg": 0.078, + "_id": { + "$oid": "6711d776cd60fca157e60657" + } + }, + { + "text": "The key to doing well in this class is to do the reading. As long as you can show that you've been paying attention, and that you read something you'll do wonderfully. She gives a review before the 2 tests that covers everything you will be tested on. If it's not on the review, it's not on the test. Also, eating and drinking in class is a no.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e60658" + } + }, + { + "text": "I absolutely love music & Professor Spencer shares that passion. She LOVES what she teaches & is EXTREMELY kind and caring towards her students. Make sure to come to class prepared having read the textbook- she calls on ppl & asks questions, if the class isn't prepared she gets upset & there's a pop quiz. 2 concert reports, 1 midterm 1 final.", + "pos": 0.323, + "neu": 0.625, + "neg": 0.051, + "_id": { + "$oid": "6711d776cd60fca157e60659" + } + }, + { + "text": "One of the easiest class I have ever taken at CCNY. Just do two concert reports and show up in class. Prof Spencer is an amazing person.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e6065a" + } + }, + { + "text": "Easiest class ever. Just do your reading sometimes and do your concert reports. Tests are super easy because the review you do is everything on the test. Definitely Recommend", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e6065b" + } + }, + { + "text": "Shes such a good professor, so passionate. Theres only a midterm and final plus 2 music reports. She gives you chances for extra credit throughout the class.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e6065c" + } + }, + { + "text": "Professor Spencer is probably one of the best CCNY has to offer. Very knowledgable and really devouted to the subject of classical music, especially when addressing composers such as Bach, Chopin, etc. The exams are reminiscent to what she reviews in class and we had 3 concept reports. She also gives opportunities for extra credit. Take her class!", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d776cd60fca157e6065d" + } + }, + { + "text": "I enjoyed having Prof. Spencer this past semester. She really loves what she teaches and really want us to grasp the material. Beware of being called out in the middle of class- she will basically shame you if you do not know the answer. Be sure you come in prepared. She can be rude even if you ask a simple question, so tread lightly. Good overall.", + "pos": 0.202, + "neu": 0.722, + "neg": 0.076, + "_id": { + "$oid": "6711d776cd60fca157e6065e" + } + }, + { + "text": "Music 101 is a very easy class, but participation and attendance will destroy your grade if you don't stay on top of them.", + "pos": 0.073, + "neu": 0.696, + "neg": 0.231, + "_id": { + "$oid": "6711d776cd60fca157e6065f" + } + }, + { + "text": "Professor Spencer is really nice, and she only gives two tests. The midterm and final are ridiculously easy, she literally tells you what will be on the test, then you write it down. In addition, you have to write two concert reports one on campus and one off campus. She's sweet, but mean if you rub her the wrong way. Show up, listen and get an A.", + "pos": 0.081, + "neu": 0.84, + "neg": 0.079, + "_id": { + "$oid": "6711d776cd60fca157e60660" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d777cd60fca157e60662" + }, + "professor_name": "George Wolberg", + "rating": 4.5, + "department": "Computer Science department", + "comments": [ + { + "text": "Professor Wolverg is one of the best professors I had in CCNY. Just attending his lectures covers everything you need to know and study for the exams. His lectures are also very easy to follow and he makes sure you understand it. Attend the review sessions and study all the topics he mentions during those sessions.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60663" + } + }, + { + "text": "Longer programming assignments in C++, exams are fair in difficulty. Just study and do the homework.", + "pos": 0.123, + "neu": 0.749, + "neg": 0.128, + "_id": { + "$oid": "6711d777cd60fca157e60664" + } + }, + { + "text": "Great guy overall. For homework, find a good group of people to work with (or people from other groups can be helpful in case your group sucks). For exams, pay attention to the review sessions he holds (I cannot stress this enough). He literally goes over the exam in the review sessions. Try to understand the slides; no need to read the textbook.", + "pos": 0.163, + "neu": 0.754, + "neg": 0.082, + "_id": { + "$oid": "6711d777cd60fca157e60665" + } + }, + { + "text": "This professor is very nice, explains the course well, and would stop answer your questions if you have any, 5-6 coding homework and 2 exams make up for the grade. There are also extra credit.", + "pos": 0.19, + "neu": 0.756, + "neg": 0.054, + "_id": { + "$oid": "6711d777cd60fca157e60666" + } + }, + { + "text": "Professor Wolberg cares for his students. Whenever someone has a question, he stops and makes sure that the student understands the material. The course consisted of 5 homework assignments (50%) and a midterm and final which are exactly the same as the review that he provides. Do the review and you should have no problem doing well on the exams.", + "pos": 0.146, + "neu": 0.83, + "neg": 0.024, + "_id": { + "$oid": "6711d777cd60fca157e60667" + } + }, + { + "text": "Fantastic lectures. Seriously. Professor Wolberg is an expert in his field and it shows. I learned a lot from his course during our fall semester. Occasionally I did get lost, but he's very quick to answer any question. Overall, I'd say I definitely learned something from this class which says a lot about how effectively he teaches the material.", + "pos": 0.145, + "neu": 0.81, + "neg": 0.045, + "_id": { + "$oid": "6711d777cd60fca157e60668" + } + }, + { + "text": "He gave only five homework assignments and you can figure out how to do them by reading the textbook. He gave one midterm and a final which are exactly the same questions as the review. So if you read the textbook and do the review questions, you will do very well in this class.", + "pos": 0.043, + "neu": 0.957, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60669" + } + }, + { + "text": "This professor is amazing. He actually cares which is rare for a computer science professor. When someone doesn't understand something he stops and explains it again. He actually teaches. The midterm and final are straight from the review and his 5 assignments are not hard since the instructions on how to complete them are in the textbook.", + "pos": 0.157, + "neu": 0.818, + "neg": 0.025, + "_id": { + "$oid": "6711d777cd60fca157e6066a" + } + }, + { + "text": "One of the few very good prof. in the CS department. He obviously cares about his students and whether or not we understand the material. The homework are doable and willing to review if asked. Grading: 50% homework 25% midterm and final.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6066b" + } + }, + { + "text": "Professor Wolberg is the best! It really seems like he has a real passion for what he teaches, making it evident through is engaging lectures and real-life examples. In addition to all this, he is an extremely caring Professor, willing to go through slides multiple times to help students understand. You will work, and you will learn. Simple.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6066c" + } + }, + { + "text": "If you want to learn from a real programmer, he is for you. He doesn't want to teach a wall. he really wants you all to understand what you are doing and how to program the right way. He is also a great professor to talk to outside of class and you should try to gain as much as you can from him. One of the best CS professors in the dept.", + "pos": 0.16, + "neu": 0.825, + "neg": 0.015, + "_id": { + "$oid": "6711d777cd60fca157e6066d" + } + }, + { + "text": "He's a wonderful lecturer, probably one of the best in the CS department. The only downside to him is that his exams don't really matter in his class. Once you do excellent on the Home works you should get an A/ A-.", + "pos": 0.224, + "neu": 0.713, + "neg": 0.063, + "_id": { + "$oid": "6711d777cd60fca157e6066e" + } + }, + { + "text": "I do highly respect this guy. He is there only for teach and gives knowledge. He wants his students to understand. He and his TA are always available for explaining and making things clear for you. His exams are quite similar to his review. He gives lots and lengthy HW but you would learn a lot. He is away much better than many of CS professors .", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6066f" + } + }, + { + "text": "One of the best professor in CCNY. His lectures are very clear and answers any question you might have during the class. He give 3 or 4 group projects , 1 midterm and a final exam. Make sure you read his slides to understand every concept. Exam questions are tricky and plus point if you're good in linear algebra. Make sure you participate.", + "pos": 0.199, + "neu": 0.779, + "neg": 0.022, + "_id": { + "$oid": "6711d777cd60fca157e60670" + } + }, + { + "text": "This is by far one of the best professors at CCNY. This professor really knows how to draw in his students. Unlike the other boring professors who are too involved with their field, Professor Wolberg gives you history about the subject then slowly gets your attention and keeps it. I would take him again if i had to.", + "pos": 0.067, + "neu": 0.896, + "neg": 0.037, + "_id": { + "$oid": "6711d777cd60fca157e60671" + } + }, + { + "text": "This guy really is passionate, he will always try to include real world applications to what we are learning. His exams are super easy because they review is exactly the same. The homework is not too hard, just may take some time.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60672" + } + }, + { + "text": "Probably my favorite class of the semester. Lectures are clear and insightful, answers question, and most importantly, demonstrates live code in class. My only peeve: his curves could end up putting you at a disadvantage if averages are high. Grades should have one-to-one correspondance with performance, otherwise they're essentially meaningless.", + "pos": 0.139, + "neu": 0.764, + "neg": 0.097, + "_id": { + "$oid": "6711d777cd60fca157e60673" + } + }, + { + "text": "Great class just a lot of hw but he is very helpful about the hws so it is totally fine Prof Wolberg is great", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60674" + } + }, + { + "text": "Really cool guy. One of the things I love about his lectures is that you'll get a bit of a history lesson to give you perspective on why what you're learning about exists. He has a lot of knowledge, and he tries very hard to convey it. Definitely not an easy A, but you get what you put into this. He also totally deserves the chili pepper.", + "pos": 0.088, + "neu": 0.87, + "neg": 0.043, + "_id": { + "$oid": "6711d777cd60fca157e60675" + } + }, + { + "text": "Prof. Wolberg is definitely one of the best Compute Science professors that we have at CCNY. Very helpful, professional and confident. Great attitude and personality in and out of class. If you wanna learn how to become a REAL programmer you have to take his class. With no doubt I recommend him.Make sure you participate in class and get to know him", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60676" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d777cd60fca157e60678" + }, + "professor_name": "Randy Brozen", + "rating": 4.9, + "department": "Education department", + "comments": [ + { + "text": "The most amazing professor", + "pos": 0.577, + "neu": 0.423, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60679" + } + }, + { + "text": "If you ever need to take an EDCE20000 class, Prof. Brozen is definitely the one you should go for. She's the sweetest woman and you'll just love her personaility.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6067a" + } + }, + { + "text": "Prof. Brozen is literally one of the sweetest and most caring professors I have ever met. Her classes are simple and straightforward and overall very relaxing class. Though there are a few projects, they are enjoyable to do. Very much recommend taking her class if you ever get the chance to go so :))", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6067b" + } + }, + { + "text": "I LOVE Professor Brozen's class. She is the sweetest professor you'll ever meet. The class is light work. She is very understanding and flexible. She literally goes above and beyond for her students. If you get the opportunity to take her, I 1000% recommend her.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6067c" + } + }, + { + "text": "She is caring and sweet & makes us explore our creative side; the class environment is so friendly. Although you might get intimidated initially by all those projects and participation requirements, please TAKE HER! Throughout the sem, very few hw, and some fun group projects. Will be a therapy class if you're taking a lot of other hard courses.", + "pos": 0.257, + "neu": 0.685, + "neg": 0.058, + "_id": { + "$oid": "6711d777cd60fca157e6067d" + } + }, + { + "text": "You must take her class. I still keep in contact with her after her class. Shes an amazing professor.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6067e" + } + }, + { + "text": "A true GEM at CCNY. Would definitely recommend!", + "pos": 0.624, + "neu": 0.376, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6067f" + } + }, + { + "text": "Professor Brozen is such a kind woman. Our inquiry class explored what it meant to be a teacher. The conversations were inspirational. The projects were creative. It's hard not to get along with everyone and enjoy the class.", + "pos": 0.271, + "neu": 0.699, + "neg": 0.03, + "_id": { + "$oid": "6711d777cd60fca157e60680" + } + }, + { + "text": "Professor Brozen is an amazing person. It was a very fun and relaxed class which made it stress-free. She's very understanding and sweet! You'll love her class! I would take it again if I could :)", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60681" + } + }, + { + "text": "Professor Brozen was amazing!!!! Take her! Her class was very easy and I enjoyed every bit of it. One of the best professors. She is VERY caring.", + "pos": 0.475, + "neu": 0.525, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60682" + } + }, + { + "text": "Professor Brozen is very caring, every class feels more like a fun discussion rather than a lecture. Shes very caring and respectful towards her students, in fact this class felt like a family. Best Professor Ive had at CCNY and really brought my soul back to kindness after having other stressful classes.", + "pos": 0.362, + "neu": 0.592, + "neg": 0.045, + "_id": { + "$oid": "6711d777cd60fca157e60683" + } + }, + { + "text": "Professor Brozen is an absolute sweetheart. The comments here speak for themselves. She is extremely caring and never wants to stress her students out. She extends due dates if you need it and she does not give that much homework. Her assignments are all projects and you are only required one fieldwork reflection at the end. Take her!", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60684" + } + }, + { + "text": "Absolutely amazing professor! She is understanding, caring, considerate, respectful, friendly, and much more. She is very thoughtful too. She has sent me a birthday card! She is absolutely worth your time, and gives very helpful advice. She is great to work with and can make us laugh too. She is an open book, we love her!!!", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60685" + } + }, + { + "text": "Highly recommend, this is such an easy class since she is super nice and caring. Any class with her will be an easy A while also learning a lot", + "pos": 0.446, + "neu": 0.554, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60686" + } + }, + { + "text": "I had the pleasure of having her two different semesters. She understands that other professors can be tough. Take her and her work seriously, she care so much for her students. Highly recommended.", + "pos": 0.224, + "neu": 0.697, + "neg": 0.08, + "_id": { + "$oid": "6711d777cd60fca157e60687" + } + }, + { + "text": "Professor Brozen is very understanding and she makes sure all her students understand the material presented. I do feel some students take advantage of her kindness and really stop caring about the class, however, if you participate and do the work you'll receive a good grade.", + "pos": 0.244, + "neu": 0.712, + "neg": 0.044, + "_id": { + "$oid": "6711d777cd60fca157e60688" + } + }, + { + "text": "Hands down, the best education professor at City College. She inspired me to become the best teacher I can be, and id you're looking for a little inspiration, she's the way to go.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60689" + } + }, + { + "text": "Professor Brozen is an amazing professor and is loved by everyone. She is very fun and creative and beleives that \"grades are important\". She values her students and their way of understanding things. She wants the students to be creative and fun. She is really great.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6068a" + } + }, + { + "text": "High Recommend.", + "pos": 0.714, + "neu": 0.286, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6068b" + } + }, + { + "text": "I love professor Brozen. She is the nicest prof I've had. Honestly my favorite class of the semester. Class is based on four presentations and a few VERY short papers. It's an easy class and very enjoyable.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6068c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d777cd60fca157e6068e" + }, + "professor_name": "Richard Paino", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "professor paino was very experienced and tech savvy as well, he loves uses videos and ai to teach and enjoys getting to know his students. his class was very engaging with his jokes and stories.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6068f" + } + }, + { + "text": "CCNY only hires him to fulfill their veteran requirements. All tests are based on trick questions and if you disagree he becomes very an-nal about it. He has some type of pt sd, maybe got cheated on during combat. All tests are proctored. Uses YT and Gpt to show us examples but expect us to know exact definitions of the textbook. Wnnabe professor", + "pos": 0.029, + "neu": 0.87, + "neg": 0.101, + "_id": { + "$oid": "6711d777cd60fca157e60690" + } + }, + { + "text": "I am telling not to take this class, he switched up his methods and uses Al for everything. Puts in little to no effort, he's just a retired corporate guy who does not care about your grade. I repeat do no take this course. Lockdown browser tests in person made by chatgpt. Half the class is failing, in a PSY course, don't waste your time.", + "pos": 0.032, + "neu": 0.829, + "neg": 0.139, + "_id": { + "$oid": "6711d777cd60fca157e60691" + } + }, + { + "text": "This professor is amazing. No need to take notes, just listen and learn. He's understanding and flexible with exams. Offers extra credit and inspiring YouTube videos. Teaches job search skills and helps with internship credits. A valuable mentor.", + "pos": 0.375, + "neu": 0.583, + "neg": 0.043, + "_id": { + "$oid": "6711d777cd60fca157e60692" + } + }, + { + "text": "He teaches well with great career experiences that go with school work (lectures).", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60693" + } + }, + { + "text": "He does not use slides and instead uses a word map. This makes it difficult to follow or take notes on what is being talked about in class. Most of the class time is spent watching different types of Advertisements on Youtube which makes attendance feel useless but it is mandatory. There is no essay and instead, you have four tests you take online.", + "pos": 0.021, + "neu": 0.884, + "neg": 0.095, + "_id": { + "$oid": "6711d777cd60fca157e60694" + } + }, + { + "text": "I didn't take a course with Professor Paino, but he did advise me. He's very knowledgeable when it comes to career planning and professional development. He's a good person to go to if you have any specific questions about how to build a foundation for your future.", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60695" + } + }, + { + "text": "Personally, I never took a class with him. I have asked him to help me with internships and job opportunities, and he went out of his way to help me. He is a very helpful guy!", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e60696" + } + }, + { + "text": "RATING HIS ADVISING a 1 out of 5. Responds quickly via email, but is completely careless. He responds to my detailed request to take a graduation-required class that also fits my indispensable work schedule with, \"Hello xxx. That course is for transfer students.\". No policy explanation, no alternative options. Just dismissiveness and rejection.", + "pos": 0.0, + "neu": 0.777, + "neg": 0.223, + "_id": { + "$oid": "6711d777cd60fca157e60697" + } + }, + { + "text": "Be prepared to write 1000+ words every week for HW, The class does meet, and he does take attendance. He is a little sarcastic, and it can come across as him being rude. However, he is available for his students, and responds to emails quickly. He does have a few extra credit assignments, but nothing that will make a dent in grade.", + "pos": 0.05, + "neu": 0.898, + "neg": 0.052, + "_id": { + "$oid": "6711d777cd60fca157e60698" + } + }, + { + "text": "Prof. Paino is one of the most helpful professors I have had. Does not teach you about organizational behavior, but also how to search for career opportunities and provide information for internships. He shows that he cares if you are learning in his class. However, he does give a lot of assignments and is a tough grader.", + "pos": 0.147, + "neu": 0.826, + "neg": 0.027, + "_id": { + "$oid": "6711d777cd60fca157e60699" + } + }, + { + "text": "This professor may be good if you are inexperienced in the job market (freshman), if you have been around the block you will be very very bored in his classes. A lot of things he says in class are very basic. BOREDOM so much BOREDOM. Writing his paper I felt I was bsing a lot of the time. He want to hear personal stories and not many facts.", + "pos": 0.054, + "neu": 0.791, + "neg": 0.156, + "_id": { + "$oid": "6711d777cd60fca157e6069a" + } + }, + { + "text": "BEST PROFESSOR EVER!!!!", + "pos": 0.729, + "neu": 0.271, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6069b" + } + }, + { + "text": "Professor Paino really wants to try his best to help his students but his lectures are not engaging. Some assignments were helpful but the grading criteria was usually unclear, and unnecessarily critical in this aspect. He tries his best but falls short; this class would work a lot better off as a workshop. (This review is for PSY 31153)", + "pos": 0.232, + "neu": 0.664, + "neg": 0.104, + "_id": { + "$oid": "6711d777cd60fca157e6069c" + } + }, + { + "text": "You can tell he cares about his students but his feed back is very critical. The class is not what you expect it to be, should be more of a workshop format not assignment heavy or be a hybrid class. Half of the assignments were pointless. Just go to the career center and take a better elective. It's not really a helpful class and he's very moody.", + "pos": 0.075, + "neu": 0.792, + "neg": 0.133, + "_id": { + "$oid": "6711d777cd60fca157e6069d" + } + }, + { + "text": "Show up for his class, do his assignments on time like he instructed. You will be good. He also gives extra credit. He is a really good professor.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d777cd60fca157e6069e" + } + }, + { + "text": "Kind of a frustrating lecturer honestly. Jumps around a lot--there will be a slide full of text that he'll just fire off a few scattered words about and then quickly click through. I was not a fan of the dull group exercises. Nice guy and a fair grader though so just do your reading and writing and you'll be fine.", + "pos": 0.138, + "neu": 0.724, + "neg": 0.139, + "_id": { + "$oid": "6711d777cd60fca157e6069f" + } + }, + { + "text": "Fair grader, gives study guide which if you read the chapters selections properly youll pass, final project is dense but totally doable. Allows extra credit, show up and participate and he wont give you a hard time.", + "pos": 0.124, + "neu": 0.836, + "neg": 0.039, + "_id": { + "$oid": "6711d777cd60fca157e606a0" + } + }, + { + "text": "There is a difference between an educator and a teacher. Paino is definitely an educator. He is the best professor. His Grading criteria is clear, and very organized. He follows whatever he gives to the student, there is no surprises. Follow the syllabus and textbook and you'll be GOOD!!!", + "pos": 0.235, + "neu": 0.737, + "neg": 0.028, + "_id": { + "$oid": "6711d777cd60fca157e606a1" + } + }, + { + "text": "He's great! His lectures are boring to some degree but its a really easy class. Just read the textbook and study that for the exam. Make sure you do the extra credit seminars and overall he is very organized and hard working. His papers and tests are pretty straightforward", + "pos": 0.28, + "neu": 0.662, + "neg": 0.057, + "_id": { + "$oid": "6711d777cd60fca157e606a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d778cd60fca157e606a4" + }, + "professor_name": "David Puretz", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "this professor gives so many pointless assignments....all of the assignments he assign have no real world application. Lectures are extremly boring and he is incapable of controlling a class. I would not take again as a result of the sheer fact that it is extremly boring and pointless", + "pos": 0.0, + "neu": 0.824, + "neg": 0.176, + "_id": { + "$oid": "6711d778cd60fca157e606a5" + } + }, + { + "text": "The absolute best Writing for engineering teacher. He gives you a decent amount of grade and he grades generously. Gives you the opportunity to write a draft and goes over with you and give you feedback. Just do all the homework well and do the blackboard post, then its guaranteed A.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606a6" + } + }, + { + "text": "Ive taken writing for engineering with professor Puretz and I really enjoyed that course. He is an excellent English professor, very educated, funny and caring. He gives a lot of work (online quizzes and blackboard discussions every week plus several papers and one group project) but he would always give you an extension if you need one. Take him!", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606a7" + } + }, + { + "text": "He is by far the best professor I have taken yet, and will probably take ever. He genuinely cares about his students, while also teaching effectively, and being lenient with a lot of the things you get to do, as long as listens for advice from us in how to better his teaching methods and the class it self, and actually cares, and will implement it", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606a8" + } + }, + { + "text": "He is one of the best professor in CCNY. If you have any problem to understand a topic or don't know how to write, go to him in his office hours. He is always ready to help students. He responses to your email very past too. He is blessing for CCNY. Easy A.", + "pos": 0.238, + "neu": 0.721, + "neg": 0.041, + "_id": { + "$oid": "6711d778cd60fca157e606a9" + } + }, + { + "text": "Professor Puretzs class was one of my favorite English classes in my life, Im not even exaggerating. He is such a great guy who truly cares about his students. Even though I took his class at 8am, it was still worth it. Projects are relevant to your fields and lectures are still interesting. Great choice, take his class!!", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606aa" + } + }, + { + "text": "Prof. Puretz is a great educator. He gives a very constructive feedback on every assignment you submit. He is very caring and genuine and wants you to do good in his class. He is always available for extra help and his hybrid class is very organized and resourceful. He brings munchkins to his 8 AM class, you don't wanna miss out on that. Good Luck!", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606ab" + } + }, + { + "text": "Love this guy... i took his hybrid writing class by accident but it was a great mistake! so understanding and such a great personality. truly cares about his students and work load is easily manageable ! would recommend to everyone", + "pos": 0.442, + "neu": 0.478, + "neg": 0.079, + "_id": { + "$oid": "6711d778cd60fca157e606ac" + } + }, + { + "text": "I would take this prof again", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606ad" + } + }, + { + "text": "I can't say enough amazing things about him. So brilliant, patient, caring and good-looking.", + "pos": 0.372, + "neu": 0.491, + "neg": 0.137, + "_id": { + "$oid": "6711d778cd60fca157e606ae" + } + }, + { + "text": "DP was one of the best professors I've taken at CCNY. He cares about his students, gives great feedback and is clear about his expectations. There is a lot of work given but just do it well and you'll be fine", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606af" + } + }, + { + "text": "The best professor I ever met in CCNY. Gives feedback about the papers. always available to help students in papers. Answer emails/concerns. Is very understandable. Easy to talk to. Need more professors like this. Fair grader", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606b0" + } + }, + { + "text": "He's the most enriching English instructor I ever had. Take this guy's class. Just do it. (The course I took was a hybrid class meaning it was part in-class and part online)", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606b1" + } + }, + { + "text": "He kept the class engaged with up to date material and topics, and really drilled the importance of peer reviewing, which I think is essential for any writer. He's understanding and considerate, and is always open to suggestions and complaints. The material is manageable, mainly papers, no tests, some group work. Overall, a great professor.", + "pos": 0.188, + "neu": 0.738, + "neg": 0.074, + "_id": { + "$oid": "6711d778cd60fca157e606b2" + } + }, + { + "text": "Professor Puretz is simple and straightforward in his lectures. The course is a hybrid of both online and regular meetings, in which many of the work is done through blackboard (Quizzes, discussion board, and writing assignments). Overall, Puretz is a soft-spoken, approachable, accessible instructor who gives good feedback.", + "pos": 0.058, + "neu": 0.942, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606b3" + } + }, + { + "text": "Straightforward, modern and really cares about his students. Helped me develop as a writer and inspired me to take English as a minor", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606b4" + } + }, + { + "text": "This was a very challenging course because the assignments are time consuming. Takes amir", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606b5" + } + }, + { + "text": "Wonderful Professor. Please take him if you have the chance. Very fun conversations, actually cares for your performance, and errors. Always available for help by email or in person. Great person to talk to if you need a start on something. You will want to participate, and you need to do the online homework.", + "pos": 0.324, + "neu": 0.642, + "neg": 0.034, + "_id": { + "$oid": "6711d778cd60fca157e606b6" + } + }, + { + "text": "David is an awesome professor. He actually puts time and effort into the feedback he gives, and is very accommodating . He assigns a lot of homework, even for a hybrid course, so be ready to do lots of reading and online discussing. Again, he's a really respectable guy, and he tries to not step on anyone's toes. He cares.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606b7" + } + }, + { + "text": "By far the greatest English professor I've had so far. He does give a large amount of homework, but it is all worth it.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d778cd60fca157e606ba" + }, + "professor_name": "James Fontanella-Khan", + "rating": 4.9, + "department": "Political Science department", + "comments": [ + { + "text": "Clear lectures with actual helpful information and very relevant to the present day. It feels very realistic, and all discussions are fascinating. I would retake him any time!", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606bb" + } + }, + { + "text": "Overall great professor. If you have the chance take him, great at teaching the material, has interesting lectures, and cares about the students. If you go to class and try you will get a good grade.", + "pos": 0.385, + "neu": 0.615, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606bc" + } + }, + { + "text": "I had an incredible final semester thanks to this Professor! He is incredibly knowledgeable, understanding and gives very interesting lectures. Highly recommend to everyone!", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606bd" + } + }, + { + "text": "I am sad I took him on my very last semester at CCNY. I wish I knew him long time ago. He's really awesome. Trust me. The best part was the debate. The professor rocks!", + "pos": 0.314, + "neu": 0.622, + "neg": 0.064, + "_id": { + "$oid": "6711d778cd60fca157e606be" + } + }, + { + "text": "James is a great professor! I took him for PSC 23100 AND PSC 21700. His lectures are clear and the readings are easy to understand and relevant to our class. He not only is a great lecturer but a great professor outside of the classroom. You will have to do debates, but trust me he makes it fun! He is very understanding as long as you communicate.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606bf" + } + }, + { + "text": "Professor J. Fontanella is an amazing professor and is passionate about the course he teaches. he cares deeply about student participation and commentary about the lesson. he assigns two papers and a two group debates but he does grade fairly and gives feedback on improvement. i definitely recommend taking him especially if you enjoy debating.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606c0" + } + }, + { + "text": "He's an excellent professor but can slow down a bit when speaking and teaching his lessons. However, overall I learned plenty and was satisfied with my output in the class. He does not play with attendance, which I believe is the main reason I received a B+.", + "pos": 0.115, + "neu": 0.836, + "neg": 0.049, + "_id": { + "$oid": "6711d778cd60fca157e606c1" + } + }, + { + "text": "Professor Fontanella is great! He truly is passionate about his classes. You will do about 2 groups debates, a midterm and final. Take him if you can!", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606c2" + } + }, + { + "text": "The class was very engaging. I enjoyed the in class discussions and the debates. The Professor was very friendly and easy going. I would absolutely take this class again, In fact, I am next semester.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606c3" + } + }, + { + "text": "Good class, covers contemporary politics but slightly disorganized at times.", + "pos": 0.158, + "neu": 0.65, + "neg": 0.192, + "_id": { + "$oid": "6711d778cd60fca157e606c4" + } + }, + { + "text": "Incredible course-- my favorite class Ive ever taken. The readings selected, professors moderation of discussions/debate, guest speakers & insight & experience in journalism was all so compelling & thought-provoking. Thrilling takeaway of being engaged and critical of media and its role in society & democracy.", + "pos": 0.215, + "neu": 0.743, + "neg": 0.043, + "_id": { + "$oid": "6711d778cd60fca157e606c5" + } + }, + { + "text": "The class is organized with lectures and discussion time. If you are scared of debates or participating in class, this class will help you improve these skills with a lot of fun and less pressure. Readings are relevant to the date, so there is no room for boredom. If you are considering taking this class with him, believe me, you won't regret this.", + "pos": 0.148, + "neu": 0.726, + "neg": 0.126, + "_id": { + "$oid": "6711d778cd60fca157e606c6" + } + }, + { + "text": "For this class you are only graded for a few assignments. However just make sure you do the reading.", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606c7" + } + }, + { + "text": "I loved this class. As long as you do the reading and speak your mind in class, you'll be fine. Fontanella-Khan gives very insightful lectures, makes both the subject matter and his expectations clear. Participation is important but he is extremely understanding in regards to last-minute interference in your schedule. 100% recommend and would take", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606c8" + } + }, + { + "text": "Professor Fontanella-Khan was one of the best professors Ive ever had at not just City College, but my prior private institution. He is extremely intelligent, a great lecturer and professor. His lectures are insightful, his readings are worthwhile and the overall topics and content of the course are tremendously valuable.", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606c9" + } + }, + { + "text": "Pay attention and take notes in class and you should be fine. Two debates and Two papers that are pretty easy", + "pos": 0.3, + "neu": 0.646, + "neg": 0.053, + "_id": { + "$oid": "6711d778cd60fca157e606ca" + } + }, + { + "text": "Professor Fontanella is an amazing professor and his class debates are engaging and lead to a lasting conversation. I would definitely recommend this class to anyone even if you're not a political science major. the workload isn't too much and the finals arent long either.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606cb" + } + }, + { + "text": "My fav class this semester honestly. He gets to the point and does not give unnecessary work. love his class.", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d778cd60fca157e606cc" + } + }, + { + "text": "Professor Fontanella-Khan is really understanding and gives great lectures and interesting readings! I was a little anxious for the debates but they are super fun and there is a lot of exchange of ideas. I would definitely take him again because of how great he is as a professor and for his lectures!", + "pos": 0.336, + "neu": 0.645, + "neg": 0.019, + "_id": { + "$oid": "6711d778cd60fca157e606cd" + } + }, + { + "text": "The class was very interesting, this was the first class where I had to do a debate, and at first, I was nervous but it was actually really great and extremely interactive made me look forward to arguing my points. The lectures were also interesting. Maintain good attendance. Enjoyed the class overall and would take him again.", + "pos": 0.264, + "neu": 0.662, + "neg": 0.074, + "_id": { + "$oid": "6711d778cd60fca157e606ce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d779cd60fca157e606d0" + }, + "professor_name": "Lyn Di Iorio", + "rating": 4, + "department": "Humanities department", + "comments": [ + { + "text": "Prof Di Iorio does demand respect from her students, and she doesn't put up with lateness on assignments or absence from class. She is also probably the best professor I've had at CCNY for English. Readings are genuinely enjoyable, assignments well designed, an enthusiastic teacher on her subject. Really feels like she cares and is knowledgeable.", + "pos": 0.301, + "neu": 0.678, + "neg": 0.021, + "_id": { + "$oid": "6711d779cd60fca157e606d1" + } + }, + { + "text": "Not the most lively professor. I also fell asleep a few times. She grades fairly and somewhat tough. The in class exams were brutal. She was disorganized - did not follow the schedule. I remember hustling to finish my paper only to come in and find out that she changed the due date weeks ago! No idea how the message eluded me but I was irritated.", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d779cd60fca157e606d2" + } + }, + { + "text": "Her lectures were very boring. She talks monotonously. I feel asleep more than once. She also talks softly and was hard to hear in the back. Some silly policies. she assigns papers and says, \"if you write over [x] pages, I will stop reading.\" My view is that a paper will be as long as necessary. Sometimes one page, sometimes 15. We're not robots.", + "pos": 0.016, + "neu": 0.892, + "neg": 0.092, + "_id": { + "$oid": "6711d779cd60fca157e606d3" + } + }, + { + "text": "Professor Di Iorio's enthusiasm for the subject is contagious. She is knowledgeable and always prepared for class. She has a lot of offer her students, and her course helped shape my lit. interests. Student presentations are a great edition to lecture/discussion in class. This is a class to NOT miss!", + "pos": 0.214, + "neu": 0.745, + "neg": 0.041, + "_id": { + "$oid": "6711d779cd60fca157e606d4" + } + }, + { + "text": "She is well educated and cares a lot about her students. She challenges her students into progressing and makes every effort to connect with her students. As long as you make the effort she will work with you.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606d5" + } + }, + { + "text": "Prof. Di Iorio's knowledge and enthusiasm about Magical Realism were infectious. I learned far more than I had expected during the semester. Classes were well-organized; supplemental readings were engaging and relevant; Prof. Di Iorio was kind and helpful. She is both a scholar and a writer- great for the creative writers in class.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606d6" + } + }, + { + "text": "Not only is she very warm & approachable, but also very knowledgable and passionate about the literature she teaches, & it really shines through her lessons. I particularly loved the background she gives on the authors we read, which not many profs do. Plus, her exams encourage students to really learn the material! I'm taking another class w her!", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606d7" + } + }, + { + "text": "Professor Di Iorio, is a great professor. I loved that she gives creative options on assignments. It's a very nice alternative to analysis and criticism that still really helps you understand the subject. The class does cover a LOT of ground and moves very fast, but overall it's very enjoyable and taught with enthusiasm .", + "pos": 0.28, + "neu": 0.691, + "neg": 0.029, + "_id": { + "$oid": "6711d779cd60fca157e606d8" + } + }, + { + "text": "She is one of the most understanding and helpful professors in the whole school. She is well-educated herself and makes sure you understand the material.She is also very fair with the grading.Do your work as asked and you'll get the grade you deserve. She also actually CARES about your learning and is interested to hear your ideas and opinions.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606d9" + } + }, + { + "text": "A full-professor at City College, meaning she earns the big bucks: I have no idea why. Her Lectures bored me. Kept revising the schedule because she fell behind, and we didn't do 30% of the texts outlined in the original syllabus. She kept pushing back the due date for the 2nd essay; originally due in April, we ended up emailing it to her in June.", + "pos": 0.034, + "neu": 0.904, + "neg": 0.063, + "_id": { + "$oid": "6711d779cd60fca157e606da" + } + }, + { + "text": "She's nice and knows what she's talking about. However, she can be a bit of a tough grader.", + "pos": 0.138, + "neu": 0.788, + "neg": 0.074, + "_id": { + "$oid": "6711d779cd60fca157e606db" + } + }, + { + "text": "Had her for Magical Realism. She's a bit dry and does use a lot of notes in her lectures. Her questions are a bit ambiguous at times, but it makes for good discussion. I honestly was not interested in the genre before I took the class, and was only mildly interested afterwards. Her essay prompts seem easy, but she's a tough grader.", + "pos": 0.201, + "neu": 0.738, + "neg": 0.061, + "_id": { + "$oid": "6711d779cd60fca157e606dc" + } + }, + { + "text": "She is the best professor I have had at City College. She will make you work, and she will listen to you and respect you--as long as you do the reading and other assignments. She knows her stuff, and she is both engaging and kind. Repeat: If you are willing to put in the effort, you can NOT pick a better professor!", + "pos": 0.184, + "neu": 0.783, + "neg": 0.033, + "_id": { + "$oid": "6711d779cd60fca157e606dd" + } + }, + { + "text": "Most of the class was her reading directly from a sheet of notes. Does not engage students.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d779cd60fca157e606de" + } + }, + { + "text": "She's a fantastic prof! Always has interesting comments on the texts, thinks outside the box and listens to students. All she asks is that you do the reading, pay attention and think a little bit. Don't ignore her by reading or texting in class because she will call you out", + "pos": 0.151, + "neu": 0.824, + "neg": 0.025, + "_id": { + "$oid": "6711d779cd60fca157e606df" + } + }, + { + "text": "She is wonderful! I took her at the Worker Education Center which used to be at 99 Hudson st in 1996-7. She makes you learn to LOVE reading.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606e0" + } + }, + { + "text": "Excellent prof, but class is only as good as caliber of students. Brings much to the table & doesn?t hesitate to critique you, which is greatest gift to help you improve. If you want pat on the back for mediocre work, bad grammar dont take her. If you want constructive feedback, she is wonderful. Intelligent insightful honest & fun.", + "pos": 0.457, + "neu": 0.466, + "neg": 0.077, + "_id": { + "$oid": "6711d779cd60fca157e606e1" + } + }, + { + "text": "Excellent reading list, provocative class discussions. Di Iorio is a radical thinker who brings much to the table and encourages diverse opinions and perspectives. Not always the best speaker, but be patient--well worth the minor annoyance.", + "pos": 0.155, + "neu": 0.725, + "neg": 0.12, + "_id": { + "$oid": "6711d779cd60fca157e606e2" + } + }, + { + "text": "Are you serious? This woman can't even make up her mind what she wants you to do next. I was surprised she had ever taught before. There are grad students in her class who could teach it better than she can.", + "pos": 0.109, + "neu": 0.862, + "neg": 0.029, + "_id": { + "$oid": "6711d779cd60fca157e606e3" + } + }, + { + "text": "Good Professor, knows her material. Nice lady and fair grader.", + "pos": 0.533, + "neu": 0.467, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606e4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d779cd60fca157e606e6" + }, + "professor_name": ". Smith", + "rating": 4, + "department": "Physics department", + "comments": [ + { + "text": "a easy going and intesting person, tell you clearly with less HW. Easy exam. Take him, an excellent professor.", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606e7" + } + }, + { + "text": "He is the MAN!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606e8" + } + }, + { + "text": "this class is hard!!! study ur ass off. Do as many probs as possible, try to get old exams from previous students, very similar, dnt relay on review sheet, there a joke compared to his exams. explains very well, take good notes, n review probs he chooses in class! Good luck", + "pos": 0.233, + "neu": 0.69, + "neg": 0.077, + "_id": { + "$oid": "6711d779cd60fca157e606e9" + } + }, + { + "text": "He is a good professor. The problems he gives on the tests are similar to the problems in the book used. Sometimes the problems he goes over during recitation can end up on the test. The problems are never exactly the same but very similar. Easy to understand. However, grading can be harsh sometimes. Study hard and you will get an A.", + "pos": 0.085, + "neu": 0.739, + "neg": 0.176, + "_id": { + "$oid": "6711d779cd60fca157e606ea" + } + }, + { + "text": "know what he is doing and can explain very well", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606eb" + } + }, + { + "text": "Took AP Physics in HS so class was easier than I expected. HW once a week which are not too long. 3 tests and 1 final. Tests were easy/okay if you studied/practiced enough. Gave review sheets that resemble tests. Easy final. MUST practice and study extra on your own which is the case for EVERY science/math class. Got an A+.", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606ec" + } + }, + { + "text": "He is good but tests are hard and the questions are very different from the ones in the textbook or the examples he gives in class. You need to study hard even though they say he is one of the easiest physics professors at least for 20700 and 20800.", + "pos": 0.105, + "neu": 0.836, + "neg": 0.059, + "_id": { + "$oid": "6711d779cd60fca157e606ed" + } + }, + { + "text": "Physics itself is extremely hard in CCNY. Smith is by far the best physics professor out of the bunch here. His tests and finals are all the same format, four to five questions. He gives partial credit and curves. He does many demos which are fun to watch and goes over many problems on workshop days. Overall physics is hard so be prepared.", + "pos": 0.166, + "neu": 0.756, + "neg": 0.078, + "_id": { + "$oid": "6711d779cd60fca157e606ee" + } + }, + { + "text": "He is a cool guy, knows the stuff really well. Do problems right from head. Does loads of demos, which are fun to watch. Many of my classmates got A, and they work hard. He has flexible office hours, and is always there to help. Since he is the chair, he makes the final, another reason to take.", + "pos": 0.185, + "neu": 0.75, + "neg": 0.064, + "_id": { + "$oid": "6711d779cd60fca157e606ef" + } + }, + { + "text": "he is the best professor for physics take him. at first it seems easy but its is not do a lot of problems. hi gives demonstrations of the stuff he talks about. just pay attention and you ll do fine.", + "pos": 0.144, + "neu": 0.746, + "neg": 0.11, + "_id": { + "$oid": "6711d779cd60fca157e606f0" + } + }, + { + "text": "Cool guy. I recommend.", + "pos": 0.706, + "neu": 0.294, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606f1" + } + }, + { + "text": "Gives mandatory homework, and takes attendance even in a huge lecture hall. On each midterm, there is usually one seemingly impossible question that I'd say maybe 10 people get full credit on (in a big lecture)...and the tests only have like 5 questions or so. He explains things well but he can be confusing at times.", + "pos": 0.131, + "neu": 0.83, + "neg": 0.039, + "_id": { + "$oid": "6711d779cd60fca157e606f2" + } + }, + { + "text": "This professor is insanely hard, if you want to fail physics and ruin your gpa take him. He ruined mine. Avoid him at all costs. its your future don't ruin it on him", + "pos": 0.099, + "neu": 0.586, + "neg": 0.316, + "_id": { + "$oid": "6711d779cd60fca157e606f3" + } + }, + { + "text": "Many find physics a hard subject, study hard and do many problems and do them repeatedly. Study guide in bookstore is useless, buy solutions manual online, it has clear stepbystep explanations of many problems. excellent demonstrations makes class interesting.", + "pos": 0.207, + "neu": 0.58, + "neg": 0.213, + "_id": { + "$oid": "6711d779cd60fca157e606f4" + } + }, + { + "text": "He's ok. Lectures are boring b/c he's doing the book example. You can just read the book and not go to lecture. I had him for recitation and lab too. He's helpful and gave a lot of tips on the test. He's also very lenient in the lab too. If you can't decide which prof you want to take this class with, he's not bad.", + "pos": 0.13, + "neu": 0.837, + "neg": 0.032, + "_id": { + "$oid": "6711d779cd60fca157e606f5" + } + }, + { + "text": "A solid professor. The course was an honors course, so he may be easier for other courses. Comes to class well prepared, is good at explaining things, and follows his schedule very closely. Assigned us homework every day, which could take an hour or more; again, though, this was honors, so take that with a grain of salt. Also, good textbook.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606f6" + } + }, + { + "text": "He is a great professor, You will definitely like how he teaches, you just have to to the homework everyday...he has one of the greatest syllabus's and he marks homework as a precentage of your grade..He's a great prof but that doesnt mean he passes those who dont help themselves!", + "pos": 0.198, + "neu": 0.752, + "neg": 0.049, + "_id": { + "$oid": "6711d779cd60fca157e606f7" + } + }, + { + "text": "one of the best science teachers at CCNY. so easy going. extremely smart but very approachable. you do have to work in his class but he is a very good teacher. I would recommend him to anyone who has to take physics", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606f8" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d779cd60fca157e606f9" + } + }, + { + "text": "ARTICULATE, LAID BACK AND VERY HELPFUL...A LOT OF HW ALTHOUGH VERY EASY, PLUS YOU COULD JUST COPY SOLUTIONS FROM THE BOARD.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d779cd60fca157e606fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77acd60fca157e606fc" + }, + "professor_name": "Ahalya Bodasing", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "I got a good grade but still teacher was disrespectful just as some others said. Would never take her again!!!!!", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e606fd" + } + }, + { + "text": "Seriously disrespectful doesn't accept asking questions at all and if you don't know how to do something she gets all over your face about your negligence and how you should know and should have done this and that. Doesn't teach effectively when asked for help in any situation.", + "pos": 0.051, + "neu": 0.83, + "neg": 0.119, + "_id": { + "$oid": "6711d77acd60fca157e606fe" + } + }, + { + "text": "She can seem harsh at times, but she does it to help her students become better writers. She has the students do multiple re-writes. She requires a lot of work from her students, but she sometimes extends the due dates for papers.", + "pos": 0.186, + "neu": 0.774, + "neg": 0.04, + "_id": { + "$oid": "6711d77acd60fca157e606ff" + } + }, + { + "text": "From my the beginning to the end of this course I had a mixture of impressions with this professor. I am not going to lie, at first, she kind of scared me. Yet, ended up being one of my favorite professors; she proved to show a great deal of passion for the course subject and her students. Just give her a chance, she means well.", + "pos": 0.208, + "neu": 0.75, + "neg": 0.041, + "_id": { + "$oid": "6711d77acd60fca157e60700" + } + }, + { + "text": "Give good feedback. Best writing class I have ever taken. I improved a lot in her class. Three papers total + reflections for each and a final profile.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60701" + } + }, + { + "text": "One of the best professors in CCNY. I took her for 2 consecutive semesters. I have never had a teacher like her in my life. She gives you good feedback on papers. Helps you re-write your papers to improve your grades. She is caring for her students. If you have any problem, go talk to her she will understand. I recommend her to you all.", + "pos": 0.258, + "neu": 0.708, + "neg": 0.034, + "_id": { + "$oid": "6711d77acd60fca157e60702" + } + }, + { + "text": "She is an amazing teacher. She really helps you with your writing. She will not tell you what she expects because she wants you to figure it out. She has improved my writing so much. She cares about her students and will guide you to do well. You have to put in the effort because it is a lot of reading and writing.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60703" + } + }, + { + "text": "She awesome, she amazing, I love her.", + "pos": 0.752, + "neu": 0.248, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60704" + } + }, + { + "text": "Professor Bodasing gives a lot of feedback on the paper that you write. That helps a lot in developing your writing skills. I honestly enjoyed this class a lot. There are 4 papers in total. She often gives break so her students can relax and enjoy. Sometimes, she extends the due dates of the papers. Oh, and get ready for group presentations.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60705" + } + }, + { + "text": "If you truly want to improve your writing then take Professor Bodasing. She's an amazing professor that cares immensely for her students. The feedback she gives on your writing is second to none. Take her, she's the best.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60706" + } + }, + { + "text": "I don't know a person more real or understanding than this woman. She made reading literature fun and easier to digest. She is passionate and it is reflected through her teaching. I love this woman.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60707" + } + }, + { + "text": "I had Dr. Bodasing for Composition and it was excellent. She helps motivates you to improve on your writing and will provide you with a ton of feedback. Believe me, though, you will get a lot of feedback on her essays. Still, she was fantastic professor, take her class.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60708" + } + }, + { + "text": "Lot's of reading and papers. She is a tough grader, but worth it if you wanna develop your writing skills.", + "pos": 0.109, + "neu": 0.833, + "neg": 0.058, + "_id": { + "$oid": "6711d77acd60fca157e60709" + } + }, + { + "text": "She's an amazing person! Very helpful and teaches in a particular way, that makes the class and content very interesting. YOU need to put in effort and show your interest, only then you will earn a good grade. The A is right there, you just have to work to get it. Gives quizzes, assigns readings for HW, 3 main papers, and one final exam. Take her!", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e6070a" + } + }, + { + "text": "Confusing and requires a lot of hard work from you! Yet, still helpful and caring.", + "pos": 0.306, + "neu": 0.534, + "neg": 0.16, + "_id": { + "$oid": "6711d77acd60fca157e6070b" + } + }, + { + "text": "THIS PROF IS THE MOST DISCOURAGING. HIS CLASSES ARE HELPLESS, I ENDED UP NOT EVEN GOING AT LAST. ON TOP OF IT ALL SHE'S SO UNPROFESSIONAL AF. I THINK I LEANED MORE ABOUT HER PERSONAL LIFE THAN ACTUAL WRITING SKILLS.", + "pos": 0.037, + "neu": 0.746, + "neg": 0.216, + "_id": { + "$oid": "6711d77acd60fca157e6070c" + } + }, + { + "text": "Somewhat Easy A. Must take. Just need to speak to her on a constant basis and show interest in work. Lot of papers though", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e6070d" + } + }, + { + "text": "A generally enthusiastic professor, though highly demanding in terms of paper quality. She'll ask you to do multiple unnecessary rewrites. Quite difficult in terms of what she wants out of them. Doesnt really read past the first 2 pages of any paper. Rather helpful, but still a difficult professor...", + "pos": 0.073, + "neu": 0.804, + "neg": 0.123, + "_id": { + "$oid": "6711d77acd60fca157e6070e" + } + }, + { + "text": "Great professor, but gives a lot of work. Had a final exam, final paper, final presentation, re-writes, three other papers, a response or two, about two or three other presentations, and countless readings throughout the semester. Didn't make us buy the $100+ textbook because it was expensive.", + "pos": 0.053, + "neu": 0.947, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e6070f" + } + }, + { + "text": "This professor is one of the few who cares about her students. If you think you can write she will show you how to be much more confident. You will find yourself dedicated to re-writes and editing. Because of this you will need good time management, I admit I let one class fall behind because my dedication to this one. Ahalya is just as dedicated.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60710" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77acd60fca157e60712" + }, + "professor_name": "Micheal Lisbin", + "rating": 2.6, + "department": "Biology department", + "comments": [ + { + "text": "I honestly learned so much from Lisbin. His lectures are informative and somehow forced me to learn about Bio. His tests however are super super hard. He curved my class at the end. BUT STILL GOT A C. learned a lot, but grade is not good.", + "pos": 0.13, + "neu": 0.752, + "neg": 0.119, + "_id": { + "$oid": "6711d77acd60fca157e60713" + } + }, + { + "text": "Unorganized, blames students. Much time wasted, he could of been more clear. No direction in teaching, rambles abt things that don't pertain to course, gets mad when he loses you on his train of non-related thought. No direction = no curriculum = what to study? Then as if he is so perfect at teaching he doesn't curve. Did well by self teaching.", + "pos": 0.096, + "neu": 0.652, + "neg": 0.252, + "_id": { + "$oid": "6711d77acd60fca157e60714" + } + }, + { + "text": "Rants and is not helpful in explaining what to study. His exams are extremly hard and were not college level it was more like you were in medical school . Didn't curve exams that were 60-70 questions each . Overall,horrible teacher, DO NOT TAKE HIM !", + "pos": 0.055, + "neu": 0.822, + "neg": 0.124, + "_id": { + "$oid": "6711d77acd60fca157e60715" + } + }, + { + "text": "I would not have passed this class if Lisbin had not been my recitation instructor. I am very grateful for his help in understanding the material! As long as you did the homework, and read the textbook, you knew what was going to be on the quizzes. And he reviewed everything in detail. Hope I have him again in another class!", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60716" + } + }, + { + "text": "na", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60717" + } + }, + { + "text": "I had him for Bio 101 lab and he was horrendous! He went on and on and never answered students' questions. Why is he still in CCNY!?", + "pos": 0.0, + "neu": 0.856, + "neg": 0.144, + "_id": { + "$oid": "6711d77acd60fca157e60718" + } + }, + { + "text": "rambles he lectures in lab for a LONGGG time very hard not to fall asleep and you can if you want to doesnt direct the lab well students better be prepared because he's not great at explaining how to do the lab not good at explaining results as well i think he expects you to know it but very funny and cool =D if you do your work take him", + "pos": 0.245, + "neu": 0.694, + "neg": 0.061, + "_id": { + "$oid": "6711d77acd60fca157e60719" + } + }, + { + "text": "Hmm...Lisbin NOT recommended for 8:00am Sat. classes. His power-point presentations go on for 2/4 of the time in class. To be honest, I fall asleep when he lectures. He is funny at certain points. He is not clear in his directions, especially in the lab report. In the beginning of the class I liked him but now I don't as much. But he's not SO bad.", + "pos": 0.178, + "neu": 0.783, + "neg": 0.038, + "_id": { + "$oid": "6711d77acd60fca157e6071a" + } + }, + { + "text": "Nice guy and funny too, but his teaching style does not work. He rambles and is way too wordy when trying to explain material. Also, some of his test are tricky and long! Be prepared.", + "pos": 0.145, + "neu": 0.805, + "neg": 0.049, + "_id": { + "$oid": "6711d77acd60fca157e6071b" + } + }, + { + "text": "Prof Lisbin, is a very nice and friendly guy. He jokes alot in class and makes fun of himself. His class is no ball in the park but its not rocket science either. Just read and understand the textbook after all isnt that the point of taking a class? if u understand the textbook ull pass.TIP: read the textbk abt 3 times to be fully prepared", + "pos": 0.148, + "neu": 0.83, + "neg": 0.022, + "_id": { + "$oid": "6711d77acd60fca157e6071c" + } + }, + { + "text": "There is a lot to learn in the class so losers need not apply. He was a great, fair teacher.", + "pos": 0.23, + "neu": 0.612, + "neg": 0.157, + "_id": { + "$oid": "6711d77acd60fca157e6071d" + } + }, + { + "text": "WORST professor EVER,,,no matter how long you study, how much you pay attention in class and how much you try you can never pass his exam unless your a bio genius..... NEVER take his class and especially on Saturdays and his lecture are MAD boring..", + "pos": 0.021, + "neu": 0.747, + "neg": 0.233, + "_id": { + "$oid": "6711d77acd60fca157e6071e" + } + }, + { + "text": "Easy A? I think not. His lectures are based on images in powerpoint presentations. And unless you fully understand the material before going to lecture, you will not be able to keep up with his pace. You MUST read and literally memorize the textbook chapters to do well on his exams. Tedious.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e6071f" + } + }, + { + "text": "Cool Professor and knows his material very well. His lecture are not that interesting, but he tries his best to put a interesting tone into it. As long as you understand and read the textbook, you're good to go.", + "pos": 0.323, + "neu": 0.645, + "neg": 0.032, + "_id": { + "$oid": "6711d77acd60fca157e60720" + } + }, + { + "text": "Lisbin is a great professor. There is a big emphasis on reading the material before lectures. He is much better at teaching one on one then in a auditorium. I suggest to try your best to learn from the book and then if need be ask Lisbin. Questions on the exams are very predictable and easy, so long as the material is clearly understood. Easy A.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60721" + } + }, + { + "text": "RUN, while you still can!! Whole class consists of powerpoint slides that he just goes through quickly. Better of learning from the book. Tests are very precise, but he definitely curves grades especially for the final or else most would have failed accept for the few geniuses in the class.", + "pos": 0.157, + "neu": 0.762, + "neg": 0.08, + "_id": { + "$oid": "6711d77acd60fca157e60722" + } + }, + { + "text": "HE IS THE WORST PROFRSSOR I EVER HAD, HIS LECTURE IS FULL OF PICTURE, U CAN'T LEARN FRON HIS POWERPOINT SLICES,READ THE BOOK, HIS TEST R HARD AND VERY DETAILED, BUT HE CARVED ON FINAL,OTHERWISE 95% WILL FAIL", + "pos": 0.0, + "neu": 0.772, + "neg": 0.228, + "_id": { + "$oid": "6711d77acd60fca157e60723" + } + }, + { + "text": "This professor is horrible! The worst professor i've have so far. His lectures consist if slide shows of pictures from the text, which is very useless. He sometimes goes off on tangents, and gets off topic. His texts are based on the work from the text book, and very detailed questions. his lectures don't help at all i had to basically teach myse", + "pos": 0.0, + "neu": 0.817, + "neg": 0.183, + "_id": { + "$oid": "6711d77acd60fca157e60724" + } + }, + { + "text": "He is a horrible teacher, his lectures are pointless considering the exams are from the book. I do not recommend him. His lectures are pictures and nothing else. His exams are nothing like the lectures, they are way too hard, I have no idea where he gets some of the questions. Take anyone but him for Bio, even though I got an A in the class.", + "pos": 0.0, + "neu": 0.882, + "neg": 0.118, + "_id": { + "$oid": "6711d77acd60fca157e60725" + } + }, + { + "text": "Prof Lisbin is caring and understanding, but there is a heavy emphasis on the textbook. Be prepared to spend much time reading to comprehend the material. The class is not really difficult, but make sure that you truly understand the concepts.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d77acd60fca157e60726" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77bcd60fca157e60728" + }, + "professor_name": "Jasmina Sinanovic", + "rating": 3.9, + "department": "Women's Studies department", + "comments": [ + { + "text": "They are a wonderful professor. It was one of the easiest classes I have taken this semester. When they teach, there is a mixture between lectures and class discussions. As long as you put in effort, you will pass this course. There are mini-quizzes, discussion posts, three summary assignments, and a final. I wish you all the best!", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60729" + } + }, + { + "text": ".", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6072a" + } + }, + { + "text": "It was a pretty chill class. Stay on top of the discussions and quizzes, and you should be fine. She is a really easy grader", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6072b" + } + }, + { + "text": "Awesome proffesor, and i will take classes again with.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6072c" + } + }, + { + "text": "If your looking for an easy class this isn't it. SO MUCH ASSIGNMENTS especially for a 10000-level course. Every week there's articles, a quiz, and discussion questions. Lectures are discussion heavy. While the assignments are easy it's time-consuming. Otherwise the professor was nice. They established a friendly conversational environment.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6072d" + } + }, + { + "text": "At the beginning it will be fine, you will learn terms and a bit of history on feminism and lgbtq community but it all goes down hill from there. They will give you a group book report that lasts all semester and presentations that last all semester too while nothing will be taught in class besides communist women and reading articles on your own.", + "pos": 0.022, + "neu": 0.978, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6072e" + } + }, + { + "text": "Jasmina, is a great professor. I took their LGBTQ History course. During class Jasmina lectured to us about queer culture from the pre-historic era 'til the present day. There is a midterm and a final (both of which are 500 word essays/open book), a group project, and 10 discussion board posts to do. Class was really informative. Highly recommend!", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6072f" + } + }, + { + "text": "Professor Sinanovic was a good professor. Be prepared to read a lot. Also, there is a group project. Overall, learned a lot and it was a great class.", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60730" + } + }, + { + "text": "Professor Sinanovic is an amazing professor and she's so sweet. You will learn a lot of information that you probably never knew about in the courses that she teaches. The LGBTQ+ online events were very informative to understand the course more. If you want to learn something new, take this professor you won't regret it!", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60731" + } + }, + { + "text": "Sinanovic is a great professor! The lectures and discussions we had in class were really interesting... there were lots of assignments (based on the readings, slides and/or videos) but they were easy... 2 tests (midterm & final): involved writing but was open book... group work but easy especially if other classmates cooperate.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60732" + } + }, + { + "text": "Professor Sinanovic is a wondeful professor. They were very understanding and patient with the transition to remote teaching/learning during the pandemic. They provided very good slides and lectures and if you participate, the conversation around the subject makes it so much more fun and interactive!", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60733" + } + }, + { + "text": "It's a very interesting class, you learn a lot!! She is a lenient grader. There is a lot of assignments but they are easy, just don't slack off. Tests are pretty easy too but the final matters most.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60734" + } + }, + { + "text": "one of the easiest class i took this semester as a freshman. supposed to have twice a week Monday and Wednesday but she told us that we didn't have to come on Mondays which was super cool of her. she put students in groups for the semester so there were some group works also there's a book that each group has to read and talk about it with her", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60735" + } + }, + { + "text": "Class is mad easy to pass tbh. we did not use textbook, there's a lot articles/videos to read/watch every week but if you skim through them you'll be fine. had to take a quiz after each module but its super easy (5 questions). We took 2 exams which were also mad easy to pass and then the final which was also super easy", + "pos": 0.304, + "neu": 0.622, + "neg": 0.074, + "_id": { + "$oid": "6711d77bcd60fca157e60736" + } + }, + { + "text": "Very genuine professor, very easy class. She comes in late very often. Assigns too much reading per week, but if you skim it you will be fine.", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60737" + } + }, + { + "text": "Just skim/read articles on BlackBoard, answer weekly writings (100 word min) based on discussions/articles. She gives 2 exams- both papers online (500-600 min) based on class questions. Uses sign-in sheets since the class is big. Need at least 4 group discussions on BB. Gives quizzes. Need to do at least 1 oral presentation. Final is research paper", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60738" + } + }, + { + "text": "Loved the class. Took it last fall and enjoyed in class discussions. A lot of homework. No text book but a lot of readings on Blackboard. Professor allows for many different opinions and really cares about students.", + "pos": 0.207, + "neu": 0.756, + "neg": 0.037, + "_id": { + "$oid": "6711d77bcd60fca157e60739" + } + }, + { + "text": "She is a great professor! I really enjoyed her class. she was accessible outside of class and was very understanding. We had weekly writings, 4 group assignments, and weekly quizzes that were very simple. I would recommend!", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6073a" + } + }, + { + "text": "This class is an easy A if you just put 10 minutes of work twice a week. Besides the easy online quizzes and group work discussion, you have to 2 tests, each are 1-2 papers answering a question you have discussed before in your weekly writings (she's an easy grader in those 2 tests), and a final paper which is 7 pages long about a topic you choose.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6073b" + } + }, + { + "text": "At the end when it's finals week she gives you so much to do. Presentation is stupid and during finals week she makes the class come back to \"present\" their topic for less than a minute. Homework is easy and she seems she doesn't care about the lecture.", + "pos": 0.054, + "neu": 0.834, + "neg": 0.112, + "_id": { + "$oid": "6711d77bcd60fca157e6073c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77bcd60fca157e6073e" + }, + "professor_name": "Taposh Gayen", + "rating": 2.7, + "department": "Physics department", + "comments": [ + { + "text": "I had professor Taposh Gayen for PHYSICS 1442 during the summer and honestly I thought his teaching was good. Professor Gayen really cares about his students.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6073f" + } + }, + { + "text": "He gave us opportunities to improve our grades. he also spent his time explaining challenging topics. Unlike other professors I have had, he was willing to answer your questions nicely. I would advise that you read the chapter beforehand and use lecture as review. the exams and quizzes are fair, but be prepared to study really well for the final.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60740" + } + }, + { + "text": "Professor Gayen is a nice person. I took this course over the summer (online). I did bad on the first exam but as I requested him, he allowed me to retake the exam with a condition that I must get 70 + on the second exam. Then I studied harder and earned A in this course. He is a fair grader and kind person but the course itself is taugh.", + "pos": 0.122, + "neu": 0.849, + "neg": 0.029, + "_id": { + "$oid": "6711d77bcd60fca157e60741" + } + }, + { + "text": "He doesn't take the time to explain the material thoroughly during a lesson. He rushes through problems and overall it was a very hard class. He never used the textbook to teach and instead just used it to give out homework's that he doesn't grade.", + "pos": 0.0, + "neu": 0.907, + "neg": 0.093, + "_id": { + "$oid": "6711d77bcd60fca157e60742" + } + }, + { + "text": "I took him for PHYS208 during COVID19, so things were different. That said, I found him to be very caring about his students. Not a great lecturer but I read the textbook and did practice problems and did fine. He is a harsh grader but gave some quizes for extra credit. Just do LOTS of practice and pay attention to the problems he solves in class.", + "pos": 0.128, + "neu": 0.693, + "neg": 0.179, + "_id": { + "$oid": "6711d77bcd60fca157e60743" + } + }, + { + "text": "Prof is terrible! Avoid taking him at all costs, does not explain things well..... Tests are not similar to what is done in class! Expects students to know things we did not go over. Read the textbook to at least pass. Very tough grader. Not willing to hear students out, sucks at emailing. Not technologically advanced. Not helpful physics prof!!!!!", + "pos": 0.0, + "neu": 0.761, + "neg": 0.239, + "_id": { + "$oid": "6711d77bcd60fca157e60744" + } + }, + { + "text": "He is a good professor, he has accent but after few classes you get familiar to it. If you read and pay attention in class you will pass. Make sure to study the problemas solved in class and do the homework and his practice exams. He is an understandable professor and cares about you grade, if you have a question ask and email him, he responds.", + "pos": 0.156, + "neu": 0.823, + "neg": 0.022, + "_id": { + "$oid": "6711d77bcd60fca157e60745" + } + }, + { + "text": "Worst math class Ive had Most of the students were confused He gave a lot of D", + "pos": 0.0, + "neu": 0.701, + "neg": 0.299, + "_id": { + "$oid": "6711d77bcd60fca157e60746" + } + }, + { + "text": "I think he's a very good professor. He tries to make sure everyone is on the same page and will go over topics if you don't understand. If you just do the stuffs he tells you to do then its an easy A. Just go over the problems he specifically tells you in class or does in blackboard. Those problems are 95% going to be on the test.", + "pos": 0.109, + "neu": 0.82, + "neg": 0.07, + "_id": { + "$oid": "6711d77bcd60fca157e60747" + } + }, + { + "text": "Took a summer course and had a great time even though it was rough and a lot of information because of the professor. Thanks TG!!!", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60748" + } + }, + { + "text": "I hate to be that 1 review that disagrees with the rest but he's REALLY fair. I always knew what to expect on the tests and quizzes & he gave a formula sheet with ALL the formulas & constants. Everyone did poorly on an exam so he gave a retake of it. However, I took it over the summer & had a class size of 15 so that could effect his teaching style", + "pos": 0.057, + "neu": 0.892, + "neg": 0.051, + "_id": { + "$oid": "6711d77bcd60fca157e60749" + } + }, + { + "text": "You will be in need of a divine miracle if you take this guy. His exams are difficult! Sometimes even the quizzes. For the final he gave us an outline of what to study. Come the day of the exam lo and behold were things that he NEVER INDICATED ON THAT OUTLINE! Oh and forget reporting him to the department, it gets you nowhere smh", + "pos": 0.134, + "neu": 0.807, + "neg": 0.059, + "_id": { + "$oid": "6711d77bcd60fca157e6074a" + } + }, + { + "text": "Did not know what I was getting into when I signed up for his class. Don't take this professor unless you know this course will be the ONLY class you're taking that semester. I repeat DO NOT take this professor. Yes he curves at the end, but who wants to rely on a curve????!!!His class made my life hell! I have never worked so hard in my life!", + "pos": 0.024, + "neu": 0.837, + "neg": 0.139, + "_id": { + "$oid": "6711d77bcd60fca157e6074b" + } + }, + { + "text": "Do him some justice! He DOES curve at the end of the semester. Otherwise, please tell me how students who got 60's and 70's end up with a B in his class! Yes an A is possible if you do the examples and the HW and actually understand what you're doing, you can at least get an A- like I think I will. He cares about us and helps us as much as he can.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e6074c" + } + }, + { + "text": "It's impossible to capture how terrible this professor is. His testing does not corresponding with the content in the textbook. His lectures are entirely unhelpful. And on top of everything he is a very cheap grader who doesn't curve. I have discovered that no amount of preparation will ensure an A on his exams. Avoid at all costs.", + "pos": 0.068, + "neu": 0.817, + "neg": 0.116, + "_id": { + "$oid": "6711d77bcd60fca157e6074d" + } + }, + { + "text": "None of the reviews capture how utterly unprofessional Gayen really is (I'm nice too, maybe they should hire me!). No explanations during lectures, no clarity, calculus-based handouts posted on Blackboard, ZERO guidance and the midterms do NOT reflect what you will learn on your own from the textbook. This man is not a professor; he's a failure.", + "pos": 0.046, + "neu": 0.78, + "neg": 0.175, + "_id": { + "$oid": "6711d77bcd60fca157e6074e" + } + }, + { + "text": "Horrible professor. Doesn't complete thoughts, very unclear and very hard to understand his english. He seems like a great guy on a personal level but would never take another class of his. Don't take his class unless you want to teach yourself physics.", + "pos": 0.12, + "neu": 0.771, + "neg": 0.109, + "_id": { + "$oid": "6711d77bcd60fca157e6074f" + } + }, + { + "text": "I wish it weren't true, but the stream of consciousness that flows from the professor's mouth is maddening. He jumps around a problems without logically explaining topics or fully working through them. His recitation is a joke. The book will be your best friend. Teach yourself the problems he assigns an pay attention to his emphasis. Godspeed.", + "pos": 0.191, + "neu": 0.62, + "neg": 0.189, + "_id": { + "$oid": "6711d77bcd60fca157e60750" + } + }, + { + "text": "Tries to be helpful. is definitely available to students. Explains well.", + "pos": 0.487, + "neu": 0.513, + "neg": 0.0, + "_id": { + "$oid": "6711d77bcd60fca157e60751" + } + }, + { + "text": "He can be helpful if you ask questions. Overall is a fair teacher but you must do lots of outside work and studying on top of going to class and doing the homework to do well (unless you are naturally good at physics). Quizzes were pretty easy since they were similar to the homework but the exams were tricky and a lot tougher.", + "pos": 0.287, + "neu": 0.689, + "neg": 0.024, + "_id": { + "$oid": "6711d77bcd60fca157e60752" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77ccd60fca157e60754" + }, + "professor_name": "Craig Houser", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "Dry, impatient and undermining if he doesn't like you, warm and humorous if he does. He sent an email claiming he was \"concerned\" about my ability to follow instructions, recommending that I drop the course. He made the same claim following each of my presentations--with the entire class present. Yet any revision offered was insufficient.", + "pos": 0.077, + "neu": 0.756, + "neg": 0.167, + "_id": { + "$oid": "6711d77ccd60fca157e60755" + } + }, + { + "text": "I had him for research methods in the MA. The course was complex. He tore apart the textbook. I was shocked, but he would analyze something every week or so. That was the point. He will make you analyze. In the museum class, he was different. He was more practical. He seemed to be coaching us what to do in museums.. It is about jobs.", + "pos": 0.0, + "neu": 0.975, + "neg": 0.025, + "_id": { + "$oid": "6711d77ccd60fca157e60756" + } + }, + { + "text": "Dr. Houser is great! He's kind, approachable, and helpful. His lectures are good and I especially like when he talks about his own career experiences.", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60757" + } + }, + { + "text": "Being in this class bugged the heck out of me, but I guess that's the senioritis kicking in. He definitely doesn't like reports, bad grammar, the works. He tries to be funny but sometimes it's kinda just annoying. He does give you helpful comments when it comes to your papers. His midterm and final are mostly memorization. Best advice? Don't skip", + "pos": 0.257, + "neu": 0.671, + "neg": 0.072, + "_id": { + "$oid": "6711d77ccd60fca157e60758" + } + }, + { + "text": "I learned better how to analyze. He doesn't like reports. I learned that the first time I took one of his classes. He may seem hard, but follow his directions, hes very cool. We reviewed a paper of mine. Good at advise like jobs and stuff like that also.", + "pos": 0.26, + "neu": 0.695, + "neg": 0.046, + "_id": { + "$oid": "6711d77ccd60fca157e60759" + } + }, + { + "text": "you will get a lot of papers, but most of them are a three-page paper essay. you will have to go to the museum for two of the papers, and the last one is a reach paper and its only 5 pages. you will need one of the books, you will have to use facts from the book to put into your test's. there are not many tests, just the midterm, and the finals.", + "pos": 0.016, + "neu": 0.984, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6075a" + } + }, + { + "text": "Craig Houser is amazing professor. He is smart and charismatic, so each class I would learn a lot and hear his fun stories about Guggenheim or MoMA . He makes you study and read, but you know exactly what you need to do, plus he actually spent time to choose what is best for you. Book a little expensive but so worth it. Take it!!", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6075b" + } + }, + { + "text": "I learned a ton.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6075c" + } + }, + { + "text": "I got a C+ on my first paper, but I gradually worked my way up and got an A as my final grade. He's very clear about what makes good writing. It's good to be concise - think of it as a magazine article that's trying to hold your interest. Makes himself available and is a pleasure to be around.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6075d" + } + }, + { + "text": "I wish the course was two semesters. He's good. Follow his directions. He likes that. If you're having trouble, go see him. He's helpful. You'll have to go to the library. That's sort of the point of the class.", + "pos": 0.234, + "neu": 0.71, + "neg": 0.056, + "_id": { + "$oid": "6711d77ccd60fca157e6075e" + } + }, + { + "text": "No teacher ever taught me how to write a research paper until I took this class. If you do the work and follow his instructions, the class is actually easy. I had this class a year ago and my grades on my papers jumped.", + "pos": 0.062, + "neu": 0.892, + "neg": 0.047, + "_id": { + "$oid": "6711d77ccd60fca157e6075f" + } + }, + { + "text": "He is a stickler about grammar. The course should be titled \"How to write Grammar 101\". He has a nasty attitude at times. What made me really upset about this teacher was telling me to drop the course a month in. Why be a professor if you can't encourage and understand your students.", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d77ccd60fca157e60760" + } + }, + { + "text": "He's really funny. I enjoyed his class a lot because he made it really interesting and at the same time, humorous. With that said, you still learn a lot from him. He's pretty hard at grading and will point out every little wrong thing about your papers which will affect your grade, but he's pretty helpful nonetheless.", + "pos": 0.263, + "neu": 0.692, + "neg": 0.045, + "_id": { + "$oid": "6711d77ccd60fca157e60761" + } + }, + { + "text": "He knows modern art. Very detailed. I had him for writing before. Smart and clear. Do the work. If you ask for help, he'll take care of you.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60762" + } + }, + { + "text": "Houser was one of my favorite teachers at City College. He was always really funny and wasn't one of those teachers that just read straight from the textbook. He KNEW the lesson plan. I also really appreciated how he encouraged me to pursue a career in fashion because he loved my fashion style and believed I could be a designer. Hes nice &awesome!", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60763" + } + }, + { + "text": "HE WILL TEACH YOU HOW TO WRITE, not only for art classes, but overall. He has plenty of experience. He is strict, but means well so you understand. There are two or three vocab quizzes and 4 papers that are about 3 pages except for the last one. There is no final exam, but a final paper, which he individually helps you through. Not a waste of time.", + "pos": 0.119, + "neu": 0.844, + "neg": 0.037, + "_id": { + "$oid": "6711d77ccd60fca157e60764" + } + }, + { + "text": "this professor is very sarcastic and some of it can be cruel sometimes. Normally your professors would be the ones to help guide you through the semester when and if you bring it to thier attention that your struggling. I was told to just drop the class more than once.", + "pos": 0.046, + "neu": 0.767, + "neg": 0.187, + "_id": { + "$oid": "6711d77ccd60fca157e60765" + } + }, + { + "text": "He taught me how to write and made me think twice about what I said. The class helped me a lot later on.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60766" + } + }, + { + "text": "This teacher is kind of nasty at times and a difficult grader. You will have to buy a lot of textbooks and strictly adhere to them in your writing. You can learn more about writing about art (and save your money, time, gpa)by reading art essays on your own. This is more of a grammar course.", + "pos": 0.051, + "neu": 0.847, + "neg": 0.102, + "_id": { + "$oid": "6711d77ccd60fca157e60767" + } + }, + { + "text": "Prof. Houser is genuinely patient with his students, and also is very helpful.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60768" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77ccd60fca157e6076a" + }, + "professor_name": "Heui-Seol Roh", + "rating": 3, + "department": "Engineering department", + "comments": [ + { + "text": "Nice guy. Class relies on intense memorization though, especially towards the end. Formula sheet provided but you have to memorize property diagrams and various cycles. Lectures are barebone and don't prepare for problem solving. Term paper to boost grade. He's the only option,so try your best. Minimum grade he gives is C. Bell curve with avg as B.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6076b" + } + }, + { + "text": "You won't learn from his lectures. If you want to pass his class, you have to study from his old midterms, quizzes, and finals since he reuses the same questions.", + "pos": 0.043, + "neu": 0.957, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6076c" + } + }, + { + "text": "Ruh-Roh. His long stiff... ruler is a staple of his teaching style. What he lacks in doing math in class he makes up for in being short... to take attendance. You can't go wrong with him because he's the only option. Has a special grading method you will appreciate and assigns a term paper to boost grades.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6076d" + } + }, + { + "text": "He is not very good. You will not pass unless you put ungodly amounts of time into it. The unfortunate truth is that you REALLY need to learn this class because fluid mechanics and heat transfer use a lot of similar concepts and equations. As the others said, your best bet is old exams and online lectures.", + "pos": 0.1, + "neu": 0.814, + "neg": 0.086, + "_id": { + "$oid": "6711d77ccd60fca157e6076e" + } + }, + { + "text": "The curve wasn't even a lot.. He's a very very mediocre professor. No idea how he still teaches such a fundamental course. Lecture's barely help you. Nothing he teaches will help you on exams. Go out of your way to teach yourself and find older resources from his classes. Don't think you will pass because of the curve.", + "pos": 0.082, + "neu": 0.879, + "neg": 0.039, + "_id": { + "$oid": "6711d77ccd60fca157e6076f" + } + }, + { + "text": "The guy can't teach. He curves in the end, but I wish he didn't tell us that in the very LAST lecture. Find his old exams and study from them. His exams also have WAY too many problems on them. It's impossible to get everything done in time so maybe try to time yourself while you do his old exams. He's a nice guy with an accent that u get used to.", + "pos": 0.091, + "neu": 0.865, + "neg": 0.044, + "_id": { + "$oid": "6711d77ccd60fca157e60770" + } + }, + { + "text": "He literally just shoves 50 equations down your throat every lecture and reads some basic conceptual stuff off of slides. In terms of solving problems, you're on your own. He's a nice old guy but can't teach at all. Best way to do well on the exams is to find his old ones and memorize how to solve the questions since they rarely change.", + "pos": 0.192, + "neu": 0.783, + "neg": 0.025, + "_id": { + "$oid": "6711d77ccd60fca157e60771" + } + }, + { + "text": "Prof Roh is a nice guy but he gets by with minimal effort put into teaching. Class was supposed to be three times a week, but he lectured twice and sent out videos that were essentially the same as what he had already taught. He practically never worked problems in class, nor did he explain basics like using the tables in the textbook.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60772" + } + }, + { + "text": "He is a nice person, who clearly has a lot of experience. He gives a quiz, midterm, final, a term paper, and a few homework assignments. His tests are, however, too much to do in the time he gives. There is a lot of questions and not enough time to finish everything well. However, if you study and practice, they are manageable. He is a good choice", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60773" + } + }, + { + "text": "Just gives some foundational information in lecture, does not go over any practice problems so students are left to struggle and teach themselves during hw.", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d77ccd60fca157e60774" + } + }, + { + "text": "Doesn't want to work, you'll be teaching yourself. He decided to group every section he was supposed to be teaching into one meeting/week, until the department caught him. Then he only attended every other lecture. Lectures are reading vocabulary off slides, he does not work ANY examples in class. Tests are too long, nothing like lectures.", + "pos": 0.0, + "neu": 0.942, + "neg": 0.058, + "_id": { + "$oid": "6711d77ccd60fca157e60775" + } + }, + { + "text": "Hes ok but dont rely on him to teach. Attend lectures for hints on exams. Textbook and extra problems help a lot. Not exactly an easy A but you need to know what you are doing.", + "pos": 0.118, + "neu": 0.73, + "neg": 0.152, + "_id": { + "$oid": "6711d77ccd60fca157e60776" + } + }, + { + "text": "The only way to do well in Professor Roh's class is to find his old exams and practice from them. Even then it's a bit iffy. He's a good professor but his lectures are only concepts while his exams are only applications. He is the only professor teaching this class at City though, so you don't really have much of a choice.", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e60777" + } + }, + { + "text": "Goes over a lot of conceptual ideas during lectures which are important but he rarely goes over calculation problem in class which can be an issue. Just study off the textbook and past exams from people who have already taken the course.", + "pos": 0.031, + "neu": 0.89, + "neg": 0.079, + "_id": { + "$oid": "6711d77ccd60fca157e60778" + } + }, + { + "text": "ROH is great BUT he DOES NOT KNOW how to teach using examples, WHICH IS ESSENTIAL IN ENGINEERING!!! He just explains general concepts, then his HW is all completely numbers based and hard. Good thing is his tests are very often recycled and easy to do well on. STILL NEED TO STUDY, but hes a decent choice", + "pos": 0.204, + "neu": 0.772, + "neg": 0.024, + "_id": { + "$oid": "6711d77ccd60fca157e60779" + } + }, + { + "text": "He is a good person and teacher for thermo, get his old exams if you want to do good in class", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6077a" + } + }, + { + "text": "Generous curve at the end. Lectures are from book. You won't know what he's saying for the first week (accent). By the end of the semester, you'll know every word he's saying. He's fair enough. Practice problems will help you. He's not the best professor. But he's OK. There's nothing wrong w/ taking him. He's adequate, which is more than most.", + "pos": 0.163, + "neu": 0.778, + "neg": 0.058, + "_id": { + "$oid": "6711d77ccd60fca157e6077b" + } + }, + { + "text": "Definitely a professor you should take for thermo. Very fair, and helps curve your grade at the end. Just do your work, and study before test. Two exams, two quizzes, one final exam. Exams are similar to homework problems. He will not do examples in class, however, which is a bummer. Overall, you should take him without a doubt.", + "pos": 0.15, + "neu": 0.773, + "neg": 0.077, + "_id": { + "$oid": "6711d77ccd60fca157e6077c" + } + }, + { + "text": "Okay at teaching, he states definitions and general information found in textbooks. He does not solve example problems. Only once during a review session did he go over HW problems. But most lectures are just listing equations and definitions. The HW is done in a different way compared to exams. ONLY WAY TO PASS IS TO STUDY PREVIOUS EXAMS", + "pos": 0.05, + "neu": 0.898, + "neg": 0.051, + "_id": { + "$oid": "6711d77ccd60fca157e6077d" + } + }, + { + "text": "You are responsible for learning every calculation in Thermo by yourself. Textbook recommended. Quizzes and tests can be studied for by looking at past quizzes and tests. Lots of variations, so know the calculation intrinsically. The final is graphs, diagrams, concepts and a rehash of first 2 exam calculations. 4/2/2, generally, for 8 questions.", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d77ccd60fca157e6077e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77dcd60fca157e60780" + }, + "professor_name": "Amy Berkov", + "rating": 3.6, + "department": "Biology department", + "comments": [ + { + "text": "1 of the best i had at ccny; lab exams depend on lab ta; engaging visual lectures, mc lecture exams based on lecture, dont skip/30+ min late cuz u cripple urself; tons of extra credit; pick good partners early on, don't be like me, stayed up 3 days straight before deadline to hard carry, cuz ppl chose to be lazy/crappy excuses", + "pos": 0.196, + "neu": 0.755, + "neg": 0.049, + "_id": { + "$oid": "6711d77dcd60fca157e60781" + } + }, + { + "text": "Don't take this class if you won't have time to memorize a million plant names. Her lectures are very boring (unless you're interested in the subject) and it's hard to do well on the lab practicals. I put in way too much effort into the projects in this class and still got a B ugh. Final project is a group project so make sure you pick good people.", + "pos": 0.132, + "neu": 0.781, + "neg": 0.087, + "_id": { + "$oid": "6711d77dcd60fca157e60782" + } + }, + { + "text": "Dr. Berkov is a great professor. Not only does she make botany interesting, she gives many opportunities to do well. I admire her dedication to what she teaches. Class has many projects, but they truly help you learn the material.", + "pos": 0.343, + "neu": 0.657, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e60783" + } + }, + { + "text": "She's great, I took this class for my senior year and I wish I had taken it sooner. There's a LOT of extra credit opportunities. Keep in mind that it would be a time consuming class as you will have to memorize trees and flowers. There are field trips that will help you memorize them. There are presentations so make sure to choose group wisely", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e60784" + } + }, + { + "text": "She is one of the nicest bio profs @ CCNY. She gives a lot of extra credit and the info from lectures would be seen on the exams. There are many trips in the class that would help you identify plants and I recommend taking the lab portion with her, as she loves the topic she is teaching. There are group projects, writing, and memorizing,", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e60785" + } + }, + { + "text": "This class made me hate plants. You legit have to memorize everything from common name to scientific name and know what it is when you look at it. The lectures are boring but it is honestly not hard to get an A, just really pay attention.", + "pos": 0.104, + "neu": 0.781, + "neg": 0.115, + "_id": { + "$oid": "6711d77dcd60fca157e60786" + } + }, + { + "text": "I get the worst biology grade for this class (I ace 206 & 229). The class is not hard, but the professor makes it worse than it should be. I never know how to prepare for her exams, which are all super tricky MCs testing small details on her slides and articles. She reads off the slide, and the textbook is useless. Nature walk & talk is only good.", + "pos": 0.122, + "neu": 0.732, + "neg": 0.145, + "_id": { + "$oid": "6711d77dcd60fca157e60787" + } + }, + { + "text": "This professor is not good at all. Honestly take a semester off if shes teaching and take it with a different professor.", + "pos": 0.118, + "neu": 0.787, + "neg": 0.095, + "_id": { + "$oid": "6711d77dcd60fca157e60788" + } + }, + { + "text": "Her lectures are very boring. Her class is very disorganized. Exams are very tricky. She doesnt ask for the main idea or concepts only the small details that you usually skip. Honestly not worth it. However overall she seems like a very good person but Im her to talk about her class.", + "pos": 0.102, + "neu": 0.787, + "neg": 0.111, + "_id": { + "$oid": "6711d77dcd60fca157e60789" + } + }, + { + "text": "Best science prof!!! She is not an easy but a semester long assignment which is fun and worth of a lot of extra credit points. Exam questions come from the topics that she covers in class; they are bit tricky but fair. She is always available outside class. Great and fun lab exercises. Work hard and get your A. Great explanations of topics.", + "pos": 0.35, + "neu": 0.591, + "neg": 0.059, + "_id": { + "$oid": "6711d77dcd60fca157e6078a" + } + }, + { + "text": "One of the best profs at CCNY. It is not an easy A class, but if you work hard and study you will be OK. You must put some time and effort in order to do well in this class. Amazing lectures, great explanations, wonderful NATURE WALK and TALKs. She gives you a chance to improve your grade with a lot of extra credit. Exams aren't easy but fair!!!", + "pos": 0.314, + "neu": 0.594, + "neg": 0.092, + "_id": { + "$oid": "6711d77dcd60fca157e6078b" + } + }, + { + "text": "Worst class ever its so unorganized and her exams are very specific. You can study so hard and she will ask you a question about that one sentence or picture you skipped in the slides. She doesnt ask about any main concepts just stupid stuff or random things. I Regret taking this class with her", + "pos": 0.02, + "neu": 0.788, + "neg": 0.192, + "_id": { + "$oid": "6711d77dcd60fca157e6078c" + } + }, + { + "text": "She is constantly unclear about what is on the test. I always felt like I was surprised on the test.. There are a bunch of other things that help your grade like Lab and the iNaturalist project but I dont think she is very clear regarding how to do well on the test.", + "pos": 0.219, + "neu": 0.757, + "neg": 0.025, + "_id": { + "$oid": "6711d77dcd60fca157e6078d" + } + }, + { + "text": "One of my favorite professors!!! So glad I was able to take two courses with her. She really works with you to try and improve your writing and your grade. I would highly recommend her!!!!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e6078e" + } + }, + { + "text": "Botany is the best class I've ever taken in CCNY, Professor Berkov is extremely adept at teaching and knowledgeable about plants. Ask questions! If you like ecology or would like to know the origin of medicines, take this class! I went in not really knowing anything about plants, but now I can identify trees and know all sorts of cool facts!", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e6078f" + } + }, + { + "text": "She's pretty cool and hilarious. She cares for her students, she really wants you to understand concepts and remember them. She will go out of her way to help students, always offering them to visit her in her office or lab whenever. She is a big fan of group work so make sure you got good peers on your team otherwise you're screwed. barely gave hw", + "pos": 0.265, + "neu": 0.696, + "neg": 0.039, + "_id": { + "$oid": "6711d77dcd60fca157e60790" + } + }, + { + "text": "This class is not difficult, you do have to put in some work but she is very easy going. She goes over the slides too quickly for you to really understand anything so record her and listen to it on your own time! Online quizzes (easy),semester-long project (moderate), one final exam (SUPER easy, and minor assignments here and there. RECOMMENDED!!", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e60791" + } + }, + { + "text": "Seriously she is my favorite Biology Professor in ccny. If you have any question, no matter the question is from your reading or from her homework, she will try her best to answer, so don't hesitate to ask her, you will learn a lot from her.", + "pos": 0.175, + "neu": 0.773, + "neg": 0.052, + "_id": { + "$oid": "6711d77dcd60fca157e60792" + } + }, + { + "text": "took this class spring '13it was her first time teaching a lecture so we cut her some slack, but she read off her presentation slides and didn't answer questions very well. only passed because most of the grade relies on textbook homework and quizzes. DO NOT RECOMMEND.", + "pos": 0.059, + "neu": 0.842, + "neg": 0.099, + "_id": { + "$oid": "6711d77dcd60fca157e60793" + } + }, + { + "text": "Her expectations are pretty reasonable. Weekly quizzes and online homework. Her tests consist of mostly the quiz questions. Her lectures are pretty boring because she just stands in the front and reads off a powerpoint. 3 tests no final. Bring a pillow to lecture.", + "pos": 0.126, + "neu": 0.786, + "neg": 0.088, + "_id": { + "$oid": "6711d77dcd60fca157e60794" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77dcd60fca157e60796" + }, + "professor_name": "Susan Besse", + "rating": 4.1, + "department": "History department", + "comments": [ + { + "text": "Professor Besse is amazing. She has a great grasp of history and how to approach new topics. She really helped me improve my writing skills and my critical reading of historical texts. I loved learning about Cuba. I had to work really hard in this class but I loved it so much I decided to take on a history minor.", + "pos": 0.209, + "neu": 0.748, + "neg": 0.042, + "_id": { + "$oid": "6711d77dcd60fca157e60797" + } + }, + { + "text": "Probably one of the worst professors I've ever had and overall just really rude. She will yell at you if your cellphone is out and assigns papers every week. She also gave me a D on a paper which she called 'unethical' because she disagreed with the thesis. I still got an A but she is way too high maintenance and treats students like high schoolers", + "pos": 0.045, + "neu": 0.839, + "neg": 0.117, + "_id": { + "$oid": "6711d77dcd60fca157e60798" + } + }, + { + "text": "She is very high maintenence. Her policies are strict.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e60799" + } + }, + { + "text": "A genius professor. It's incredible how much she knows and how much she's willing to share. Her lectures ought to be recorded because they are filled with useful information. Gives constructive feedback. Gives you time to rewrite and reflect. Just be prepared to read a lot. It's a bit of a time commitment but it's totally worth it.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e6079a" + } + }, + { + "text": "Really smart professor. You will learn a lot in this class. Bad ratings here obviously came from extreme slackers who want easy A's. We should expect more from our Professors. She's tough but fair. An excellent professor.", + "pos": 0.283, + "neu": 0.642, + "neg": 0.075, + "_id": { + "$oid": "6711d77dcd60fca157e6079b" + } + }, + { + "text": "Those with poor comments are most likely lazy students. Besse is an AMAZING professor. Truly cares about her students. She expects much because she knows the ability is there. Amazing for learning how to write really well. saved me years of struggling in Law School writing. HIGHLY recommended for students who care about their education/future!", + "pos": 0.354, + "neu": 0.537, + "neg": 0.108, + "_id": { + "$oid": "6711d77dcd60fca157e6079c" + } + }, + { + "text": "Professor Besse was one of the worst professors I've had during my college career. If you do not agree with her, you're basically wrong. She's also admitted to not reading a student's work and changed their grade after she did when grades should be based on assignments,not perception of the individual. I would never reccommend her as a professor.", + "pos": 0.021, + "neu": 0.837, + "neg": 0.142, + "_id": { + "$oid": "6711d77dcd60fca157e6079d" + } + }, + { + "text": "Great professor for students who care about their work and want their professors to, also. Requires class discussion, but can be aggressive if she doesn't like what you say. I still highly recommend her.", + "pos": 0.226, + "neu": 0.666, + "neg": 0.109, + "_id": { + "$oid": "6711d77dcd60fca157e6079e" + } + }, + { + "text": "Just avoid", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d77dcd60fca157e6079f" + } + }, + { + "text": "She is a GREAT professor, extremely dedicated and will help you a lot. Helped me be a better writer as well as a better student. Her class is not easy, there is a lot of reading and lots of writing. She is a really tough grader on papers. In the end you grade depends on how much time you dedicate and how determined you are in the class.", + "pos": 0.251, + "neu": 0.7, + "neg": 0.05, + "_id": { + "$oid": "6711d77dcd60fca157e607a0" + } + }, + { + "text": "very hard class, she knows what she's talking about but she can be confusing and jumps around topics a lot. Lots of writing for a hist class. She needs to slow down a bit and not take grammer so seriously it isnt english", + "pos": 0.0, + "neu": 0.859, + "neg": 0.141, + "_id": { + "$oid": "6711d77dcd60fca157e607a1" + } + }, + { + "text": "Very good professor. She is one of the best teachers at City College by far, if not the best. Very experienced, helpful, and encourages you to think and write a lot. Everybody should take his classes to know Latin America, colonialism or gender. Excellent.", + "pos": 0.292, + "neu": 0.65, + "neg": 0.058, + "_id": { + "$oid": "6711d77dcd60fca157e607a2" + } + }, + { + "text": "She was my best libereal art prof. by far. If you want to write and think better take this course. You'll have to work hard, until you will write at a levle she thinks is acceptable. Don't worry, she lets re-write the assignments as many times as you need.", + "pos": 0.228, + "neu": 0.748, + "neg": 0.024, + "_id": { + "$oid": "6711d77dcd60fca157e607a3" + } + }, + { + "text": "She is a great professor. her classes are very interesting and helpfull in writing skills and analyzing texts. she demands a lot, but gives a lot in return. if you don't mind working hard, and want to really study and not just pass, she is the best choice.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e607a4" + } + }, + { + "text": "she's ok.pretty strict with her work", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e607a5" + } + }, + { + "text": "She is smart, kind, clear, perfect...is not that her class is difficult but she wants the best from their students. you will learn a lot in her class.", + "pos": 0.32, + "neu": 0.632, + "neg": 0.048, + "_id": { + "$oid": "6711d77dcd60fca157e607a6" + } + }, + { + "text": "She does try to help you out by making herself available for one-to-one guidance, but her class is definitely tough. Not recommended for huge slackers.", + "pos": 0.172, + "neu": 0.635, + "neg": 0.193, + "_id": { + "$oid": "6711d77dcd60fca157e607a7" + } + }, + { + "text": "she is a really good teacher. although the class is a lot of work it's worth it. you learn the subject while refining your english and research skills.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e607a8" + } + }, + { + "text": "She assigns alot of work and has rigid structures for her essays...if you don't get it in the beginning of the semester..you never will. Not too much reading and is lenient on due dates if you have a problem. Makes sure she's always available, which is a plus but definintely not for the slackers.", + "pos": 0.057, + "neu": 0.888, + "neg": 0.055, + "_id": { + "$oid": "6711d77dcd60fca157e607a9" + } + }, + { + "text": "is interested that you learn the material and she herself shows great interest in the material as well", + "pos": 0.459, + "neu": 0.541, + "neg": 0.0, + "_id": { + "$oid": "6711d77dcd60fca157e607aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77ecd60fca157e607ac" + }, + "professor_name": "Inna Tokar", + "rating": 3.9, + "department": "Mathematics department", + "comments": [ + { + "text": "Great teacher, easy to understand and work with during class. Just be on top of the tests and quizzes.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607ad" + } + }, + { + "text": "I highly recommend Professor Tokar. She is conscientious and caring. While her course requires attendance, homework, and tests, she is fair and clear with expectations. She gladly reviews the material, explains concepts, and makes herself available. Her tests are clear, fair and her approach is understanding.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607ae" + } + }, + { + "text": "Best Calculus Professor at CCNY!! Got my first A in a math class for the first time in my life, she's a solid choice and teaches very well. The homework software helps tremendously, and she's willing to go over problems that you have trouble with in class! She made a 10 a.m. class worth going to. I'm so grateful for her adore her teaching method.", + "pos": 0.255, + "neu": 0.679, + "neg": 0.066, + "_id": { + "$oid": "6711d77ecd60fca157e607af" + } + }, + { + "text": "She is a great professor that gives good feedback on what to expect on the test/final, loves taking questions from students, and has a charming and funny personality. The class is not that hard, you just have to study a lot of hours and you'll be fine.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607b0" + } + }, + { + "text": "Prof Tokar is a an understanding and caring professor. She used a software called Hawkes Learning that made the course much easier to understand. She is available outside of class and also helpful. It isn't an easy class, has a lot of info thus you have to work a lot too. Do your homework and always do the practice exams before the actual exam.", + "pos": 0.124, + "neu": 0.843, + "neg": 0.034, + "_id": { + "$oid": "6711d77ecd60fca157e607b1" + } + }, + { + "text": "She is very nice as a human being, she is understanding an very sweet. However I need to learn what she is teaching and she is awful at actually teaching. This is math. She needs to start with what the steps are before she goes into an example. If she would spell out the steps and label the parts of an equation, this class would be reasonable.", + "pos": 0.087, + "neu": 0.872, + "neg": 0.041, + "_id": { + "$oid": "6711d77ecd60fca157e607b2" + } + }, + { + "text": "She reads off the textbook and doesn't respond to her emails. Doesn't really teach but expects you to know the material, although her exams are easy. Definitely doesn't not prepare you for the difficult final exam (worth 40%). I do not recommend.", + "pos": 0.185, + "neu": 0.703, + "neg": 0.112, + "_id": { + "$oid": "6711d77ecd60fca157e607b3" + } + }, + { + "text": "Great professor. If you need extra help, she is always willing to help you during office hours. Just make sure you do your homework because it helps a lot with the exams. The exams were seriously grade school questions, so it's hard to fail. Also very nice, which is a plus for a math prof.", + "pos": 0.249, + "neu": 0.654, + "neg": 0.098, + "_id": { + "$oid": "6711d77ecd60fca157e607b4" + } + }, + { + "text": "THE BEST Calc professor! I wish she was teaching 202! I mean let's be honest, it's Calculus (read: not easy), but Dr. Tokar cares about her students and works hard to make them understand the material. Funny too! Attendance is mandatory and no cellphone/computer use. 3 tests, some quizzes and she is open to deadline extensions for HWs. TAKE HER!", + "pos": 0.234, + "neu": 0.684, + "neg": 0.082, + "_id": { + "$oid": "6711d77ecd60fca157e607b5" + } + }, + { + "text": "Dr. Inna Tokar is great professor! She goes step by step to help her students understand the material. She asks if anyone has questions and makes sure they are answered. Her tests are pretty fair, as long as you pay attention and do your homework you will be more than fine.", + "pos": 0.272, + "neu": 0.705, + "neg": 0.022, + "_id": { + "$oid": "6711d77ecd60fca157e607b6" + } + }, + { + "text": "I don't know what you guys are saying ... Tokar isn't a bad professor, but she isn't the best. 3 exams couple of quizzes and a final worth 40%. Does not drop any of the exams and doesn't give no partial credit. Not to mention she's annoying always has a stuck up face and nags about being on your phone as if this were hs", + "pos": 0.109, + "neu": 0.693, + "neg": 0.198, + "_id": { + "$oid": "6711d77ecd60fca157e607b7" + } + }, + { + "text": "One of CCNY's best professors. She is so understanding and kind. However, you need to do your part too, because it's your grade. She gave 3 exams, 1 quiz, homework, attendance, and final worth 40%. I suggest you try your best with the 3 exams because the final was hard. I recommend her course.", + "pos": 0.25, + "neu": 0.729, + "neg": 0.021, + "_id": { + "$oid": "6711d77ecd60fca157e607b8" + } + }, + { + "text": "3 exam non of which are dropped, first and third are easy while second is hard. She is undecided of how many quizzes she going to give so make sure your not absent to any, because that 1 quiz might be the only quiz. Attendance is 5% of your grade and she doesn't care if you come or not. Homework is required.", + "pos": 0.08, + "neu": 0.833, + "neg": 0.087, + "_id": { + "$oid": "6711d77ecd60fca157e607b9" + } + }, + { + "text": "Dr. Tokar is absolutely amazing. She's a wonderful human who cares SO much. So, the point is that it isn't an easy class- its calculus. But, shes insanely FAIR. Super fair grader and will absolutely help you if you need it. Wish she was teaching 209!", + "pos": 0.412, + "neu": 0.562, + "neg": 0.026, + "_id": { + "$oid": "6711d77ecd60fca157e607ba" + } + }, + { + "text": "She's funny and she cares about her students. If you show up to her class everyday you will pass. If you are good at math like me, then you can pass without even showing up. But attendance is mandatory. Her exams aren't hard. Their pretty simple if you study. She uses the textbook a lot. Make sure you do the homework too cause it helps a lot.", + "pos": 0.216, + "neu": 0.74, + "neg": 0.044, + "_id": { + "$oid": "6711d77ecd60fca157e607bb" + } + }, + { + "text": "She isn't a bad teacher, but she treats her students like they're in high school. You can't be absent once without her dropping points on your grade. No eating, drinking, talking, looking at/using your phone or laptops, etc. If you want to leave, she gives you a hard time.", + "pos": 0.12, + "neu": 0.777, + "neg": 0.103, + "_id": { + "$oid": "6711d77ecd60fca157e607bc" + } + }, + { + "text": "Professor Inna is a very outstanding professor! She was able to relate the topics to everyday situations. This class is an easy A only IF you actually do your homework. The professor makes it a point to be available to answer any questions you may have. I would definitely take her again!", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607bd" + } + }, + { + "text": "I took Dr. Tokar for Calculus 20100 in the summer and she did a wonderful job. She gave 3 exams 10% each. Counts homework heavily, participation, and some frequent class quizzes (drops lowest). She makes sure the students understands the information being taught and tries to give the most credit possible when grading exams. She is really polite too", + "pos": 0.134, + "neu": 0.827, + "neg": 0.039, + "_id": { + "$oid": "6711d77ecd60fca157e607be" + } + }, + { + "text": "I took professor Tokar in the summer for calc 1 and she was great. The subject in itself is difficult so u can't really expect miracles from her. She gives the materials needed to ace the exam with feedback! and is a very lenient grader so now its up to you to study and do good. She's also very reasonable and always available to help outside class.", + "pos": 0.161, + "neu": 0.806, + "neg": 0.033, + "_id": { + "$oid": "6711d77ecd60fca157e607bf" + } + }, + { + "text": "She was a chill professor who gave homework and quizzes to make sure you were on track with the material. Would take again.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77ecd60fca157e607c2" + }, + "professor_name": "LaJoyce Brookshire", + "rating": 3.8, + "department": "Speech department", + "comments": [ + { + "text": "Dr. Brookshire is great, she really grew my speaking skills, I felt 100 times better after leaving her class. If you cannot handle being told you need improvement then you should not take her class. But if you really want to improve Dr. Brookshire is the teacher for you and will help you be the best you can be.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607c3" + } + }, + { + "text": "She was very demanding, and had no real grading system, and gave whatever number first came into her head", + "pos": 0.06, + "neu": 0.738, + "neg": 0.203, + "_id": { + "$oid": "6711d77ecd60fca157e607c4" + } + }, + { + "text": "Dr. Brookshire was a fantastic instructor; after receiving a 70 on my first assignment, I assumed I would be a floating student who did not give it my all, but I quickly realized that if I put in the effort, pay attention to what she says, and give it my all, I can definitely get an A, which I did. Be confident, and enjoy your time.", + "pos": 0.188, + "neu": 0.792, + "neg": 0.021, + "_id": { + "$oid": "6711d77ecd60fca157e607c5" + } + }, + { + "text": "At first I thought she was gonna be annoying like one of the health freak's online but shes pretty fine and chill. Most of her classes were on Zoom and if you were in person, you HAVE to wear a plastic face shield mask which she provides. Be prepared to give multiple speeches (personal, informative, persuasive, demonstration) 5 mins each.", + "pos": 0.179, + "neu": 0.794, + "neg": 0.027, + "_id": { + "$oid": "6711d77ecd60fca157e607c6" + } + }, + { + "text": "If you have bad English or speaking English, she will definitely want you to drop off her class. Speech class is also help for your speak properly not just all perfect, She just want everything perfect not everyone is perfect you always need to learn.Don't go her class I pay to go here learn not give you free money to let student to drop off class.", + "pos": 0.14, + "neu": 0.647, + "neg": 0.213, + "_id": { + "$oid": "6711d77ecd60fca157e607c7" + } + }, + { + "text": "Really spend time to practice speeches. There are 3 large speeches and they get weighted heavier as the course goes on. Don't expect an A if you struggle with public speaking.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d77ecd60fca157e607c8" + } + }, + { + "text": "This class teaches valuable skills for public speaking. You get what you earn in this class. If you put in the effort it will reflect in your grade. Dr.Brookshire is a very fair and reasonable professor.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607c9" + } + }, + { + "text": "This was honestly not a difficult course. All that was needed to succeed was preparation and paying attention to the material well. There will be around 3-4 speeches but, practice and preparation made it a lot easier.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607ca" + } + }, + { + "text": "She makes speech so easy to learn. She's a little bit strict but as long as you attend her classes and follow her instructions everything will become easier.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607cb" + } + }, + { + "text": "You would have to practice a lot before speeches but they are not bad once you practice. The professor is really good at judging and gives good feedback. Some may think she is too strict which makes sense because she clearly lays out what you should do and what gets you a 100 and failing to follow those directions lead to a low grade.", + "pos": 0.192, + "neu": 0.72, + "neg": 0.088, + "_id": { + "$oid": "6711d77ecd60fca157e607cc" + } + }, + { + "text": "As long as you prepare for the speeches you will be fine. There is not really any homework and there are about 4 speeches. Do not take class if you are afraid of speaking in front of people.", + "pos": 0.046, + "neu": 0.954, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607cd" + } + }, + { + "text": "She is a good teacher, her classes are easy you just have to be prepared for your speech that she gives you 1 week to do. She does talk a lot though be ready.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607ce" + } + }, + { + "text": "Dr. Brookshire is a good professor. Be psychologically prepared if you have an accent; while you may first feel singled out, your speech will improve by the completion of the class. She is a strong mental health advocate, so reach out because she will understand. Practice, practice, and practice for your speeches and you will be fine", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607cf" + } + }, + { + "text": "Dr. Brookshire was an excellent professor. She gave fair grades and her lectures were interesting. Some of her teaching methods seems tedious at times however they are helpful when preparing for assignments.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607d0" + } + }, + { + "text": "This class is an easy way class, just do what she asked you to do, nothing more. you easily pass your speeches (Main note of the course) by just working and practicing them, this will not take you more than a day. And watch all of her mandatory YouTube videos, she doesn't mention it as mandatory assignment unless you ask enough to discover.", + "pos": 0.082, + "neu": 0.884, + "neg": 0.034, + "_id": { + "$oid": "6711d77ecd60fca157e607d1" + } + }, + { + "text": "I enjoyed the class a lot.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607d2" + } + }, + { + "text": "She is very nice and very patient with the students. Very straightforward with the objectives and as long as you do the work and follow the instructions, you will do well in this class.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607d3" + } + }, + { + "text": "Dr. Brooshire is a great teacher. If you do your work, if you practice, if you follow what she says you will get an A and you will have no issues passing her class. Class is not hard as long as you do what you have to do. Practice makes perfect and you can't swing it on a speech!", + "pos": 0.141, + "neu": 0.826, + "neg": 0.033, + "_id": { + "$oid": "6711d77ecd60fca157e607d4" + } + }, + { + "text": "She dose not give many homework. All you have to do is speech", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77ecd60fca157e607d5" + } + }, + { + "text": "she aint that bad honestly if you show up on time listen participate you'll be good. Vocabulary also begins to improve she kinda funny and she will compliment you if she sees something she liked", + "pos": 0.36, + "neu": 0.588, + "neg": 0.052, + "_id": { + "$oid": "6711d77ecd60fca157e607d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77fcd60fca157e607d8" + }, + "professor_name": "Nicholas Spizzirri", + "rating": 4.9, + "department": "Mathematics department", + "comments": [ + { + "text": "I took professor Spizzirri's class in nyu tandon, ma 1124. Great class, explains thoroughly and his notes are very useful.", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607d9" + } + }, + { + "text": "Take his class. He once took 40 minutes for people who want to stay and broke down snell's theorem and it changed my life. Brilliant dude and hilarious. Not afraid to call you out in funny ways.", + "pos": 0.235, + "neu": 0.703, + "neg": 0.062, + "_id": { + "$oid": "6711d77fcd60fca157e607da" + } + }, + { + "text": "He's in Tandon now. His lecture is clear. His class is useful for the test.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607db" + } + }, + { + "text": "Fun classes. Approachable.", + "pos": 0.623, + "neu": 0.377, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607dc" + } + }, + { + "text": "Professor if you are reading this, I hope you are proud. BEST of the Best. Thank you so much for being a Professor! :)", + "pos": 0.538, + "neu": 0.462, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607dd" + } + }, + { + "text": "The best professor at CCNY!!!", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607de" + } + }, + { + "text": "THE BOSSSSSSSSSSSSSS.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607df" + } + }, + { + "text": "Nick is the awesomest!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607e0" + } + }, + { + "text": "The best professor I've ever taken! His lectures are a lot of fun and very helpful! I loved calc 3!", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607e1" + } + }, + { + "text": "Excellent explainer. Really knows the material, however does not prepare you for the final. There was even material on the final we didn't cover. But hes always open to questions and plus this course doesn't have that many topics so its doable.", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607e2" + } + }, + { + "text": "Good professor! Knows how to teach, however you won't be prepared for the final. Gives quizzes once he done with the topic and its a easy 100. Very cool guy. Easy grader! Take him. Probably the best in the math department!!", + "pos": 0.316, + "neu": 0.653, + "neg": 0.031, + "_id": { + "$oid": "6711d77fcd60fca157e607e3" + } + }, + { + "text": "I love love love Professor Spizzirri. His lectures are the best and his 2 weeks quizzes were easy once he solved them. The only bad thing is passing the finals!! But overall, he's the best professor I have ever had. Plus, he's super good looking.", + "pos": 0.442, + "neu": 0.524, + "neg": 0.034, + "_id": { + "$oid": "6711d77fcd60fca157e607e4" + } + }, + { + "text": "Very easy going and friendly. He understands the math and can explain it in a way which you can too. Probably the most accommodating professor out there.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607e5" + } + }, + { + "text": "GREAT PROFESSOR. He explains the material clearly and is such a lenient grader. He actually wants students to pass, unlike the majority of the professors in this school.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607e6" + } + }, + { + "text": "BEST MATH PROFESSOR EVER! I cannot begin to explain how amazing he is. He is clear, concise, funny and so helpful. I wish he were teaching all the math courses I need to take. Nick takes time from his busy schedule to meet whenever you need or just to stay after class and answer questions. He is very flexible and understanding. Take him if you can.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607e7" + } + }, + { + "text": "this professor is truly the best. i totally forgot his email and i really need it if anyone can comment with any contact info for him that would be amazing!!!!!", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607e8" + } + }, + { + "text": "LOVE LOVE LOVE NICK! At first i was too scared to take calc but he made it really easy. he knows what hes doing and is very clear! you'll definitely going to understand every single lesson he'll teach you. the best calc prof you'd ever have!! only negative thing is that he wears the same pants for like months! lol. but he's still AWESOME!", + "pos": 0.414, + "neu": 0.517, + "neg": 0.07, + "_id": { + "$oid": "6711d77fcd60fca157e607e9" + } + }, + { + "text": "The truly great math professor. Made Calc I a very easy class. This guy is rational and sees the class from the perspective of students. Can't say anything negative about his teaching style or his grading. If you wanna learn and get an A, Nick is the man for the job.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607ea" + } + }, + { + "text": "Amazing professor. Extremely helpful and goes through every single detail if you don't understand. Taking him gave me hope that not Math professors are complete garbage in CCNY. THIS GUY DESERVES TO BE THE CHAIRMAN OF THE MATH DEPARTMENT", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607eb" + } + }, + { + "text": "I been in college for 2 and half years and I have NEVER HAD or heard OF SUCH A GREAT PROFESSOR!.. clear and interesting!! He takes the intimidation out of CALCULUS! I just wished he taught another class, any CLASS!! I Feel like he care if you actually learn. Stays after class and ACTUALLY HELPS YOU!, Best teacher in the college I would say.", + "pos": 0.294, + "neu": 0.672, + "neg": 0.034, + "_id": { + "$oid": "6711d77fcd60fca157e607ec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d77fcd60fca157e607ee" + }, + "professor_name": "Paola Evangelista", + "rating": 2.3, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Very clear about grading. Posts weekly schedule and assignments ahead of time. Will go through every person in class for participation and attendance. She is too quick at times but listens if asked to go slower or for questions. Mostly speaking in Spanish. 5 tests & writings, midterm, final, 2 oral, HWs. In class assignments are fast. Pay attention", + "pos": 0.032, + "neu": 0.941, + "neg": 0.026, + "_id": { + "$oid": "6711d77fcd60fca157e607ef" + } + }, + { + "text": "The class feels like high school. The amount of homework you get is crazy. Too many tests but she does drop one. The amount of work is ridiculous especially on test days where even after the test she wants so to do an assignment. And to make things worse it's 8 am. Honestly don't take it with her. it's not that serious. 5 test oral exam too.", + "pos": 0.09, + "neu": 0.761, + "neg": 0.149, + "_id": { + "$oid": "6711d77fcd60fca157e607f0" + } + }, + { + "text": "One of the rudest professors Ive ever had. Do not take this class. Shes very disrespectful and not understanding. I literally had to miss class for surgery once and she told me next to have surgery on a more convenient date. Shes uptight and always has an attitude for no reason. Not worth the $120 ! If u dont have to take her.. dont!", + "pos": 0.0, + "neu": 0.829, + "neg": 0.171, + "_id": { + "$oid": "6711d77fcd60fca157e607f1" + } + }, + { + "text": "DO NOT TAKE HER! Rude, too much HW, disrespectful, and not understanding. Its an intro to spanish class, and she expects you to be fluent. If you're late for 1 minute, LATE for the class. You have to work for that A and I mean it. Most importantly, acts like she is always right and students are always wrong. Needs to fix her attitude.", + "pos": 0.114, + "neu": 0.842, + "neg": 0.044, + "_id": { + "$oid": "6711d77fcd60fca157e607f2" + } + }, + { + "text": "This professor is absolutely awful! I have never encountered had such a disrespectful, rude, and down right inconsideration person in my life! If you are not in at 8am on the dot, you are late. Your mic must work otherwise you get yelled at in front of the whole class. Gives over 350 online assignments, 2 oral exams, 4 test, midterm and final WORST", + "pos": 0.0, + "neu": 0.839, + "neg": 0.161, + "_id": { + "$oid": "6711d77fcd60fca157e607f3" + } + }, + { + "text": "Professor Evangelista disrespectful, rude, and not understanding. Not an easy a. Lots of busy work, 5 tests including the midterm and final, 2 oral assignments, 5 writing assignments. Will make you do assignments after an exam has been taken in the same day. Doesn't respond to emails or grade assignments in a timely manner. Don't take her.", + "pos": 0.0, + "neu": 0.911, + "neg": 0.089, + "_id": { + "$oid": "6711d77fcd60fca157e607f4" + } + }, + { + "text": "She doesn't let her students ask questions. She doesn't teach well. She is very unprepared. I honestly do not recommend this professor to anyone because of how bad of a professor she is. She expects you to know Spanish right off the bat and it's frustrating that she doesn't teach good. She's very rude and she's also very uptight.", + "pos": 0.045, + "neu": 0.697, + "neg": 0.258, + "_id": { + "$oid": "6711d77fcd60fca157e607f5" + } + }, + { + "text": "Wow. Just wow. Dont take her class. Its as simple as that, she is beyond rude and literally the type of teacher whos clowns you. If you ask her for help or to go slower, shell say sorry you cant keep up. Her class is not worth the damn $120 for the textbook. Her attitude is so nasty, the workload isnt bad but her as a professor, TERRIBLE.", + "pos": 0.126, + "neu": 0.718, + "neg": 0.155, + "_id": { + "$oid": "6711d77fcd60fca157e607f6" + } + }, + { + "text": "This class is awful. The professor's entire lesson plan is based on a $120 e-textbook that every student HAS to purchase. If you don't, you cannot do any homework, readings or exams for the course. The class started at 8 AM, and she is the LAST person you want to be on a Zoom call with. She is one of the most stubborn professors at CCNY for sure.", + "pos": 0.049, + "neu": 0.87, + "neg": 0.081, + "_id": { + "$oid": "6711d77fcd60fca157e607f7" + } + }, + { + "text": "She grades the exams of selective students who did well first and leave everyone else for future days. She can come off a bit condescending which creates an uneasy environment at times and causes students to be hesitant when asking questions. She does show concern but it isn't fluid. Some materials were taught quickly but she was available.", + "pos": 0.051, + "neu": 0.876, + "neg": 0.073, + "_id": { + "$oid": "6711d77fcd60fca157e607f8" + } + }, + { + "text": "Had this prof 2 semesters in a row for both Spanish 2 and 3. You have to put in the work for your grade. Only complaint is she gives too much hw some days you'll have both written and online hw due. It gets annoying but is easy if you pay attention and try. Use the reviews sheets for tests and quizzes they help. Extra credit work is offered.", + "pos": 0.137, + "neu": 0.799, + "neg": 0.064, + "_id": { + "$oid": "6711d77fcd60fca157e607f9" + } + }, + { + "text": "Not the worse professor but I certainly will not recommend her. She can be very difficult and gets annoyed when her students does not understand what is going on. She talks very fast. Which is pretty insane especially being that her students are trying to learn the language... Prepare to study. Her study guide is not helpful. Read the textbook", + "pos": 0.118, + "neu": 0.671, + "neg": 0.21, + "_id": { + "$oid": "6711d77fcd60fca157e607fa" + } + }, + { + "text": "I took this class fully aware that she was a difficult professor but I wanted to give myself the benefit of the doubt and still take it. I regret it. Shes rude. She gets annoyed when people ask questions. She will say come to her office hours. Which i did, and if i asked a question there she will ask if you read the textbook. So rude. No patience.", + "pos": 0.045, + "neu": 0.681, + "neg": 0.275, + "_id": { + "$oid": "6711d77fcd60fca157e607fb" + } + }, + { + "text": "don't take this lady. The worst! don't don't dont.", + "pos": 0.0, + "neu": 0.646, + "neg": 0.354, + "_id": { + "$oid": "6711d77fcd60fca157e607fc" + } + }, + { + "text": "She gives very vague and quick lectures, before you know it she wants you to start using the textbook to basically teach yourself the lesson in the class. The textbook she assigns is not helpful at all, and she really piles on the homework which makes the class harder because she doesn't teach that well during the class.", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d77fcd60fca157e607fd" + } + }, + { + "text": "Not the worst prof in the world; very strict and demands respect. Her lessons are fast; doesn't allow much time for students to understand. Gives a decent amount of homework. If you participate, stay quiet, and ask for help, you'll pass. W/ ea test/quiz you take, you will write a mini paragraph; quizzes are a bit hard so study a lot.", + "pos": 0.133, + "neu": 0.822, + "neg": 0.045, + "_id": { + "$oid": "6711d77fcd60fca157e607fe" + } + }, + { + "text": "She really expects a lot from you as if its your only class. She requires more than what other professors require that teach the same course. If you really want to know the language, TAKE HER. Practicing your Spanish everyday really helps!! You retain it! She cares that you pass. Looking for easy work load, Don't take her! Otherwise she's great.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e607ff" + } + }, + { + "text": "WORST PROFESSOR I HAVE EVER HAD. SHE IS NOT UNDERSTANDING OR APPROACHABLE. STAY WAY!! YOU HAVE BEEN WARNED!", + "pos": 0.0, + "neu": 0.693, + "neg": 0.307, + "_id": { + "$oid": "6711d77fcd60fca157e60800" + } + }, + { + "text": "be ready to do a lot of work for this teachers. She will give you a lot of reading, good reading on latin american literature-but too much. She expect you to still do homework along reading for every class and make you go twice to the writing center for papers.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d77fcd60fca157e60801" + } + }, + { + "text": "This lady is crazy about her course. There's not one session that you don't have something due. She has a ton of RULES as if you were in the 5th grade but want to do work as if you were in Harvard. There's a LOT of reading. plus she grade in depth. Great class if you took one class a semester. SMH!", + "pos": 0.104, + "neu": 0.815, + "neg": 0.081, + "_id": { + "$oid": "6711d77fcd60fca157e60802" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d780cd60fca157e60804" + }, + "professor_name": "Iris Lopez", + "rating": 4, + "department": "Ethnic Studies department", + "comments": [ + { + "text": "I took her course LALS 31160 during the Fall 2023. She provides all her class material which was great. However, she was an unrealistic professor. Her grading system was completely off track and did not correlate with students effort of work. Avoid this professor.", + "pos": 0.085, + "neu": 0.87, + "neg": 0.046, + "_id": { + "$oid": "6711d780cd60fca157e60805" + } + }, + { + "text": "I enjoyed taken her class. I actually signed up take her again this fall online as well. I learned a lot from her... I will carry with me as a Latina Women. If you want to learn more about neoliberalisom, Latino paradox and more she's the one to take. There was weekly reading and response on blackboard, two test on blackboard and two essay.", + "pos": 0.098, + "neu": 0.881, + "neg": 0.021, + "_id": { + "$oid": "6711d780cd60fca157e60806" + } + }, + { + "text": "She is very knowledgeable about the content and passionate. However she is disorganized and there seems to be a random grading system.", + "pos": 0.133, + "neu": 0.781, + "neg": 0.086, + "_id": { + "$oid": "6711d780cd60fca157e60807" + } + }, + { + "text": "She is clearly passionate about the material and spends all class explaining the article readings and topics covered weekly. Straightforward and has high expectations for work. Make sure you ask questions and participate in class because it heavily counts towards grade. She can be a little stubborn or fiesty but is always available for questions.", + "pos": 0.098, + "neu": 0.873, + "neg": 0.029, + "_id": { + "$oid": "6711d780cd60fca157e60808" + } + }, + { + "text": "I thought we were going to take 6 quizzes, but then she changed her mind last minute. She then decided to make it 3 exams, which of course didn't work in anyone's favor.", + "pos": 0.1, + "neu": 0.9, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60809" + } + }, + { + "text": "Decided a new grading method this semester which did not work in anyone's favor. We were supposed to have 6 quizzes accounting for 15% each, instead ended up with two quizzes and one final (final covers material from march-may, 10 readings and one film!)Tests are too technical for the material covered. Not what I expected from LALS class.", + "pos": 0.05, + "neu": 0.95, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e6080a" + } + }, + { + "text": "Worst professor. Not everything in this website is true.", + "pos": 0.201, + "neu": 0.504, + "neg": 0.295, + "_id": { + "$oid": "6711d780cd60fca157e6080b" + } + }, + { + "text": "BORING. Take this class if you want to hear life-Lessons for the entire semester. She wanders around the teachable topic but never actually gets to the core of it.Not what I expected from an elective. Grading wise she was generous; 2 tests, 1 easy paper, and weekly hw assignments. Take this course only for the A, but be willing to suffer", + "pos": 0.18, + "neu": 0.73, + "neg": 0.09, + "_id": { + "$oid": "6711d780cd60fca157e6080c" + } + }, + { + "text": "Professor Lopez is the best at ccny. Not only is she passionate about the subject, she has a vast amount of knowledge when it comes to the Latino/Latina culture. A must take at ccny. If you do your readings and participate in discussions, you will be ready for the midtermand final. LOVE HER!!!!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e6080d" + } + }, + { + "text": "She is a magnificent professor, ive taken her twice, if you want to learn alot and have your ideas mean something take her, she always listens and doesnt make anyone feel dumb, like other professors tend to do!! she's awesome!!", + "pos": 0.253, + "neu": 0.683, + "neg": 0.064, + "_id": { + "$oid": "6711d780cd60fca157e6080e" + } + }, + { + "text": "Dr. Lopez is one of City College's gems! Take her class to be engaged and enlightened. She is thoughtful, progressive, and extremely open to new ideas. More reading than writing. I took Urban Latino Experience and it was phenomenal.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e6080f" + } + }, + { + "text": "Her class was interesting.We had group/open discussions in a circle,watched videos & did individual presentations related to the subject.We did a family health geneaology project,read selections on the health industry & health related topics that affect the Latino community.Read the material,participate & you will pass!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60810" + } + }, + { + "text": "She is the best professor at City. She is really helpful, she loves to teach, and her material are very interesting. She has a sense of teaching,if you want to learn about Latinos you should take her. She is really great.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60811" + } + }, + { + "text": "She good but don't get on her badside. A lot of reading but fun. Do her work and you will get an A.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60812" + } + }, + { + "text": "She a great prof. I learn a lot from her. She is well prepared with all the materials and her class is very interesting! Take her if you are ready to learn great thing! You will not regret taking her!! Is amazing the way she teach, in the future i going to take her again!", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60813" + } + }, + { + "text": "she is a nice prof. and seems to know her area of studies. however, she likes to put some students as her favor and some don't. You can image which students get A and those who don't!", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60814" + } + }, + { + "text": "i took her for urban childhood ! i really enjoyed this course yeah its alot of reading and the tests are easy ! she loves what she teaches very nice professor always willing to help students i recommend her", + "pos": 0.399, + "neu": 0.601, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60815" + } + }, + { + "text": "at first i was going to drop her class but i am glad i didnt because i learned so much in her class. she dedicates time to students and for those that are not doing good in her class she gives extra credit. i highly recommend this professor...her and haslip viera are both good for lals dept", + "pos": 0.212, + "neu": 0.722, + "neg": 0.066, + "_id": { + "$oid": "6711d780cd60fca157e60816" + } + }, + { + "text": "One of the few good professors at City College", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60817" + } + }, + { + "text": "She's very good, knows her topic. Her class is very interesting. Easy A", + "pos": 0.484, + "neu": 0.516, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60818" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d780cd60fca157e6081a" + }, + "professor_name": "Mehdi Bozorgmehr", + "rating": 3.3, + "department": "Sociology department", + "comments": [ + { + "text": "Good professor, funny too. Be ready to read weekly chapters and show up. Participation is optional. There are 3 exams, each 50 multiple choice questions and an essay based on a book. Your entire grade is basically made up of these 4 things. Generally an easy class but nothing gets dropped so be sure to do well on every exam if you want an A.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e6081b" + } + }, + { + "text": "He's a good proffesor. His test consist of all multiple choice 50 questions, all straight forward. Just read the book and you will be fine. I was kind of mad because he said he would curve throughout the semester, but he didn't. I would definetly take him again!", + "pos": 0.099, + "neu": 0.857, + "neg": 0.044, + "_id": { + "$oid": "6711d780cd60fca157e6081c" + } + }, + { + "text": "One of the best professors I've ever had. Takes interest in his students' lives, invests himself, makes himself available. A lot of reading from the textbook and talks about the CUNY Grad Center a lot, but you learn a lot about sociology from one of the best. Plentiful opportunities for extra credit and tests are manageable if you study", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e6081d" + } + }, + { + "text": "He often brushes off students that are worried about their grade. He kept saying that he'll curve the grade and if you did better than the class avg it shouldnt matter. By him saying that I thought I was going to get a A but instead I got a B-. Overall you really need the textbook. His lectures summarizes up the chapters. He's a alright professor.", + "pos": 0.064, + "neu": 0.897, + "neg": 0.038, + "_id": { + "$oid": "6711d780cd60fca157e6081e" + } + }, + { + "text": "Um he's a great professor i guess but for the final exam he didn't review the material because he was busy with graduate center stuff which i was pretty upset about. I like sociology a lot now but i wished he paid more attention to his this undergrad class. His tests are easy if you read the textbook and he gives one essay one a book -easy.", + "pos": 0.217, + "neu": 0.742, + "neg": 0.041, + "_id": { + "$oid": "6711d780cd60fca157e6081f" + } + }, + { + "text": "Expectations are very clear. Makes it fairly easy to do well. Attendance is mandatory. A study guide is given prior to each exam. Lectures can be a drag if you don't do the readings, but he goes over all the material. Very good experience overall.", + "pos": 0.212, + "neu": 0.76, + "neg": 0.028, + "_id": { + "$oid": "6711d780cd60fca157e60820" + } + }, + { + "text": "Prof. Bozorgmehr is an intelligent man, he knows his stuff and his lectures are brilliant. However, you can tell he's highly arrogant; he treats his class like it's a cathedral, and he's the archbishop at the pulpit. If you don't live and breathe Sociology, take the class with another prof. Oh, and don't have your device(s) out in class, or else.", + "pos": 0.133, + "neu": 0.817, + "neg": 0.05, + "_id": { + "$oid": "6711d780cd60fca157e60821" + } + }, + { + "text": "Arrogant and rude. Thinks that his opinion is the only one that matters, and slams you down if you offer a different opinion. Last comments to me on my essay were, \"Get help with writing.\" Wonder if he knows that I made law review.", + "pos": 0.076, + "neu": 0.8, + "neg": 0.124, + "_id": { + "$oid": "6711d780cd60fca157e60822" + } + }, + { + "text": "Daily discussions, each chapter was outlined by classmates, taught like a seminar. Start paper early! He doesn't really discuss it at first, but a large portion of grade depends on it and he gets more demanding about it later. Make friends with someone who took him before, this will seriously help with exams. Good prof, really helpful.", + "pos": 0.244, + "neu": 0.689, + "neg": 0.067, + "_id": { + "$oid": "6711d780cd60fca157e60823" + } + }, + { + "text": "Hard grader!! Don't take him.", + "pos": 0.0, + "neu": 0.668, + "neg": 0.332, + "_id": { + "$oid": "6711d780cd60fca157e60824" + } + }, + { + "text": "This class is NOT easy, but it's good for people interested in Immigration for future endeavors. Prof.B isn't always clear about what he wants in class, but he will answer/clarify every question you have WHEN YOU SPEAK UP!!! He encourages students to talk to him before class, during class, after class, online, and you can visit his office too.", + "pos": 0.172, + "neu": 0.765, + "neg": 0.063, + "_id": { + "$oid": "6711d780cd60fca157e60825" + } + }, + { + "text": "Terrible professor!! Is not clear on what he expects and then gives you a horrible grade!!!", + "pos": 0.0, + "neu": 0.566, + "neg": 0.434, + "_id": { + "$oid": "6711d780cd60fca157e60826" + } + }, + { + "text": "great professor. easy A, just go to the lectures, study, and do the paper. don't understand the bad reviews", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e60827" + } + }, + { + "text": "Awesome teacher. Really cares and loves engaging in conversations. Never makes you feel like you're wrong in your answers. Its the best when he replies \"Bravo!\" after you answer a question correctly. Very polite. Take his class. He is definitely a teacher I will remember.", + "pos": 0.369, + "neu": 0.582, + "neg": 0.049, + "_id": { + "$oid": "6711d780cd60fca157e60828" + } + }, + { + "text": "I do not agree with some of the comments on here. He is a great professor and truely cares about what he is teaching and his students. He might not be the easiest professor, but if you do your work you will pass with great grades. He is one of my favorite professors here at ccny, and im not even a sociology major!!", + "pos": 0.197, + "neu": 0.76, + "neg": 0.043, + "_id": { + "$oid": "6711d780cd60fca157e60829" + } + }, + { + "text": "he is a okay teacher..knda boring..nice.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d780cd60fca157e6082a" + } + }, + { + "text": "Fails to elaborate on any questions that students might have. Little professional integrity in grading students critiques of book he co-edited. Wonder why he's still teaching.", + "pos": 0.08, + "neu": 0.824, + "neg": 0.096, + "_id": { + "$oid": "6711d780cd60fca157e6082b" + } + }, + { + "text": "On point and concise. Humorous and brilliant. Class appreciates and respects him. No homework given, just textbook readings and a few tests. Only one final paper based on one book. He can easily be taken as arrogant but its only because students talk like they know everything and its hard for him as a professor to be tolerant of that. Take him!", + "pos": 0.217, + "neu": 0.71, + "neg": 0.072, + "_id": { + "$oid": "6711d780cd60fca157e6082c" + } + }, + { + "text": "This professor is an indecisive, egotistical, exasperating, uncouth, demeaning, crude, disreputable, ruthless jerk and taking his class was one of the most deplorable decisions I have ever made. The work isn't hard but you will end up failing because his instructions are never comprehensible. Do not take his class!", + "pos": 0.021, + "neu": 0.769, + "neg": 0.21, + "_id": { + "$oid": "6711d780cd60fca157e6082d" + } + }, + { + "text": "Very good proffesor. Explains everything well, adds some disscussion to make it a bit more fun. There's no homework, 3 tests, one paper. All are easy. Just read the book and your good.", + "pos": 0.333, + "neu": 0.612, + "neg": 0.056, + "_id": { + "$oid": "6711d780cd60fca157e6082e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d781cd60fca157e60830" + }, + "professor_name": "R Van Nort", + "rating": 3.6, + "department": "World Civilizations department", + "comments": [ + { + "text": "I had him during the Spring 2018 semester. Looking back, he was alright. He assigns weekly chapter summaries, but after a while he stops caring about them. Biggest issue is his attitude, sometimes when you ask a question he responds rudely. Tests were easy, youll be fine as long as you follow the study guide he gives out. Easy grader on papers too", + "pos": 0.202, + "neu": 0.719, + "neg": 0.08, + "_id": { + "$oid": "6711d781cd60fca157e60831" + } + }, + { + "text": "His lectures are super boring. I took notes but never study them. He gives out a review sheet before the exams so study hard. Two papers which I BS and managed to get a B on them. He's not a tough grader but his grading is weird. Just do the hw summary and essays and do well on the exam, you can get B+", + "pos": 0.095, + "neu": 0.824, + "neg": 0.081, + "_id": { + "$oid": "6711d781cd60fca157e60832" + } + }, + { + "text": "This professor gives alot of homework, every week you will do a chapter summary,he has a very intellect brain and thinks on both sides of an argument. for this semester we will have the midterm,final,quiz, and 2 papers. He is a easy professor but has a weird way of grading exams, BEWARE: SOFTSHELLS SNACKPACKS!DONT TAKE THIS CLASS,YOUWILLGETOFFENDED", + "pos": 0.072, + "neu": 0.866, + "neg": 0.062, + "_id": { + "$oid": "6711d781cd60fca157e60833" + } + }, + { + "text": "if you're looking for an easy A class, take this. he's VERY boring, however. he talks the whole class and there's no specific syllabus he follows. his grading policy is weird but he's a very easy grader. had to do 2 paper and 2 exams and i passed with A-", + "pos": 0.111, + "neu": 0.799, + "neg": 0.091, + "_id": { + "$oid": "6711d781cd60fca157e60834" + } + }, + { + "text": "I love professor Van nort, he isn't a tough grader and he goes straight to the point I also really enjoy his teaching style hes entertaining", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60835" + } + }, + { + "text": "He teaches the whole class by talking, be ready to write a few papers, two major papers, two tests. Easy class if you like history you'll like his teaching, if you're taking it for easy A you'll be bored to death, He holds some of his belief to strongly and is not willing to look otherwise", + "pos": 0.222, + "neu": 0.692, + "neg": 0.086, + "_id": { + "$oid": "6711d781cd60fca157e60836" + } + }, + { + "text": "He talks the entire period. Doesn't follow a syllabus. So boring,he just talks the whole time. You don't even need his lectures to pass the tests, you could google everything. He waited till last minute to tell us about our final exam. Honestly worst professor I have had.", + "pos": 0.056, + "neu": 0.866, + "neg": 0.077, + "_id": { + "$oid": "6711d781cd60fca157e60837" + } + }, + { + "text": "Don't know why his ratings are so high, but he is very smart and his teaching style is more of story telling. Definitely has an attitude and gets offended when asked for clarification. Class is easy, but avoid if you can.", + "pos": 0.216, + "neu": 0.683, + "neg": 0.101, + "_id": { + "$oid": "6711d781cd60fca157e60838" + } + }, + { + "text": "Easily makes the class boring, makes you sleepy (I have many times) and easy to make him talk about other things outside of the class. His papers are weird as it doesn't really go with what he's teaching. Midterm and final are easy if you know the vocabulary and did the hws which aren't bad either. Gives you extra credit if you need it.", + "pos": 0.183, + "neu": 0.764, + "neg": 0.054, + "_id": { + "$oid": "6711d781cd60fca157e60839" + } + }, + { + "text": "BORING! His lectures were long as heck! He would keep you in class after it ends and talk. His papers are boring to comprehend. The midterm isn't hard unless you don't know vocabulary definitions or if you barely listen. He makes the class uninterested. You only do 2 papers, the midterm, and final. He gives extra credit when asked or needed.", + "pos": 0.058, + "neu": 0.853, + "neg": 0.089, + "_id": { + "$oid": "6711d781cd60fca157e6083a" + } + }, + { + "text": "Overall I definitely did not enjoy the class. Literally nothing I wrote in my notebook helped me for exams, all my info came from the book. The saving grace here is his review sheets for the midterm and the final, just look up the content in the textbook if you're completely lost. We had 3 papers but he cut out one because we were short on time.", + "pos": 0.052, + "neu": 0.861, + "neg": 0.087, + "_id": { + "$oid": "6711d781cd60fca157e6083b" + } + }, + { + "text": "Professor Van Nort knows his history. His tests are extremely easy he gives a review sheet and a class review based on it. He gives 3 papers which are fairly easy and his lectures are great. Just take notes based on his lecture, read the book, fill out his review sheet and you will ace his class.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e6083c" + } + }, + { + "text": "his voice puts me to sleep. boring class. 3 papers, 1 final, 1 midterm. read the books to do weekly chapter summaries. they count as extra credit. i never took notes, but i used the book to answer study guide questions. exams are straightforward, do only 3 questions. i got an A. i failed the midterm,aced the final, did my chapter summaries, papers", + "pos": 0.027, + "neu": 0.884, + "neg": 0.09, + "_id": { + "$oid": "6711d781cd60fca157e6083d" + } + }, + { + "text": "He's one of the smartest professors I have ever had. However, I just don't like the way he teaches. I need a professor who teaches me things, not a grandpa who tells me stories about the early civilization.", + "pos": 0.095, + "neu": 0.855, + "neg": 0.05, + "_id": { + "$oid": "6711d781cd60fca157e6083e" + } + }, + { + "text": "His style of teaching is very unique, but he is a very funny and intelligent man and I learned a lot from the class. Your grade consists of three papers and two exams, which consist of only essays, so just make sure to do those well!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e6083f" + } + }, + { + "text": "he just lectures during class, so it canget kind of boring. very easy to zone out & do other work during class. never used my notes on exams (just the textbook). he gives study sheets for the final & midterm. overally easy class if you put effort into the writing (essays, chapter summaries, final, midterm)!!", + "pos": 0.109, + "neu": 0.849, + "neg": 0.042, + "_id": { + "$oid": "6711d781cd60fca157e60840" + } + }, + { + "text": "Best professor I had in my college career. Quite intelligent and helpful. I have no regrets having him as my ancient history professor. I've learned a lot from him, and he made me a more intelligent person.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60841" + } + }, + { + "text": "I have to admit, he's really intelligent. However, it kinda sucks that he has dyslexia. Whenever asked to spell a word, 75% of the time he spells it wrong. And when he handed out his syllabus, there's no due dates on any of the hw. This caused me to fall behind and miss a lot of hw.", + "pos": 0.078, + "neu": 0.782, + "neg": 0.14, + "_id": { + "$oid": "6711d781cd60fca157e60842" + } + }, + { + "text": "I feel like you have to be the right person to enjoy Van Nort's teaching. I personally believe he's hilarious, and he is! However, he's extremely intelligent, and doesn't ever look at a book while teaching; he knows all of the information! He rocks!!!", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60843" + } + }, + { + "text": "van nort is the man, i was in class with ppl who generally complained about his expectations but i did all his work, all his summaries, both papers, heck i even did his extra credit paper and did the final for extra credit, one paper i got a c on kept me from an A- but i still got a B+, def take him its interesting to learn from him.", + "pos": 0.132, + "neu": 0.844, + "neg": 0.024, + "_id": { + "$oid": "6711d781cd60fca157e60844" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d781cd60fca157e60846" + }, + "professor_name": "Debra Williams", + "rating": 4.6, + "department": "Literature department", + "comments": [ + { + "text": "She is one of the best professors I have taken. She is sweet and caring of her students. Her lectures are interesting and she is also helpful in office hours. Whenever I was confused about an assignment, I would go to her office hours and I would get an A on that assignment. Very helpful.", + "pos": 0.274, + "neu": 0.693, + "neg": 0.033, + "_id": { + "$oid": "6711d781cd60fca157e60847" + } + }, + { + "text": "she's really nice and understanding about requesting extensions for work from other classes and exams. overall great professor that enjoys what she teaches and she's a wonderful person.", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60848" + } + }, + { + "text": "Professor Williams is so understanding and overall an amazing professor. The class was always interesting and never boring. I would highly recommend taking her. She is AMAZING.", + "pos": 0.418, + "neu": 0.582, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60849" + } + }, + { + "text": "Professor Williams is a very caring person. She is very passionate about what she teaches. She keeps the class very engaged. I highly recommend her.", + "pos": 0.382, + "neu": 0.618, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e6084a" + } + }, + { + "text": "takes attendance very seriously. five or more absences: your grade will go down a letter. three latenesses equals an absence. was absent more than 5 times, still had an A+ by the end, so proceed with caution when it comes to attendance. a lot of readings in the beginning and BB discussion threads. overall, very sweet and cares about her students.", + "pos": 0.099, + "neu": 0.872, + "neg": 0.03, + "_id": { + "$oid": "6711d781cd60fca157e6084b" + } + }, + { + "text": "She is very accessible and is super lenient with her grading. Just attend her classes and participate and engage in the discussions in class and you will be fine. Also try to complete all homework's and assignments on time so you can get credit for it.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e6084c" + } + }, + { + "text": "shes an amazing professor so sweet and caring. is very easy going however some of the instructions for the papers and assignments were unclear. not for all of them. the projects were fun to do and engaging. def do take her", + "pos": 0.351, + "neu": 0.613, + "neg": 0.036, + "_id": { + "$oid": "6711d781cd60fca157e6084d" + } + }, + { + "text": "I stopped going to class after spring break due to a torn ACL lol but I still did my work from home though it wasn't an online class, and the assignments were pretty easy, she uses BB discussions for HW, no tests, & quizzes lots of reading but a lot of group work so just a warning for my anti-socials out there. But she is overall a great prof =)", + "pos": 0.222, + "neu": 0.676, + "neg": 0.102, + "_id": { + "$oid": "6711d781cd60fca157e6084e" + } + }, + { + "text": "She is a good teacher, she explains things in a simple way that everyone understands, she is understanding, she really tries to help the students and she really cares that they learn. Very good organization and readings, honestly the readings are not very long, and they are usually articles or things of less than 10 pages.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e6084f" + } + }, + { + "text": "I took her in the Fall 2021 semester. She is one of my best profs. She is just awesome. If you don't like writing like me, you should definitely take her because I have changed my perception of writing. If you follow her instructions, you will get a straight 100. She is too good.", + "pos": 0.236, + "neu": 0.701, + "neg": 0.063, + "_id": { + "$oid": "6711d781cd60fca157e60850" + } + }, + { + "text": "She's awesome", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60851" + } + }, + { + "text": "I can't comment on the difficulty of this class as I already write well. The structure of the class was not to my liking. Although I didn't struggle with the material, I did not feel particularly supported by Prof Williams. Although the material was mildly interesting, the excess group work left something to be desired.", + "pos": 0.139, + "neu": 0.754, + "neg": 0.107, + "_id": { + "$oid": "6711d781cd60fca157e60852" + } + }, + { + "text": "She's friendly and her lectures are super easy to process. She does give tons of hw (due every Sunday) that you'll have to stay on top of but the class is pretty much an easy A. The course load is pretty heavy (three papers, peer reviews + drafts for each paper, a video presentation, and hw) so manage your time properly!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60853" + } + }, + { + "text": "The class topics and assignments are easy, but she will make you work for that A. She gives way too many readings and too much homework for her class. She's nice, but if you are taking heavy classes don't take her. The amount of work is just going to stress you out, especially on those busy weeks.", + "pos": 0.089, + "neu": 0.852, + "neg": 0.058, + "_id": { + "$oid": "6711d781cd60fca157e60854" + } + }, + { + "text": "yeah, she gives too much reading but at the same time, she says the questions that will be on the quiz and the exam you just have to record the class and listen to it before the quiz and exam easy A+ class. the only place where you can lose points is on the essays rather than this you will get 100 on everything. amazing professor. she cares but us", + "pos": 0.176, + "neu": 0.781, + "neg": 0.043, + "_id": { + "$oid": "6711d781cd60fca157e60855" + } + }, + { + "text": "She was very kind and always made herself available. Doesn't take lateness too seriously or grade too harshly. Lots of reading and discussion board responses. Utilize the writing center, show up and participate and you'll pass with flying colors!", + "pos": 0.093, + "neu": 0.867, + "neg": 0.04, + "_id": { + "$oid": "6711d781cd60fca157e60856" + } + }, + { + "text": "If you're taking World Humanities 101, you have to take her. She's very nice and is always ready to help whenever you have a question or need feedback. Tons of reading, but she makes it easy with discussions. There are 3 term papers, quizzes, and a few homeworks based on the books. Essays/quizzes are easy because she explains them really well ;))))", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60857" + } + }, + { + "text": "This class had a lot of reading assignments, but Prof. Williams made it easy for us, listing specific sections to read. She also told us what would be on quizzes. Essays were super clear and she gave her feedback on theses and rough drafts. Overall a caring professor and easy A.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e60858" + } + }, + { + "text": "Professor Williams is an amazing professor. She is very clear with her instructions on what to do for your papers. She can be a little disorganized sometimes however, this class is an easy A if you dedicate a little time to it. Theres about 5 papers you need to do but as long as you meet the criteria, its a guaranteed A on that assignment!", + "pos": 0.095, + "neu": 0.884, + "neg": 0.021, + "_id": { + "$oid": "6711d781cd60fca157e60859" + } + }, + { + "text": "She is a great professor which I recommend. Her class consists of a good amount of reading but she will cover everything to the best of her ability. There is a midterm, few quizzes and a couple of short papers. All of which are pretty easy. She even takes the time to go over the exam questions and answers before the test.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d781cd60fca157e6085a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d782cd60fca157e6085c" + }, + "professor_name": "Ilona Kretzschmar", + "rating": 4.4, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Professor Kretzschmar is one of the best professor in ChemE department. She always makes sure her students understood the material before moving onto another topic. She will never put anything unfamiliar on exams. Her HW are very relatable to the tests. Lectures are informative and enjoyable. She is very reachable outside of office hours.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6085d" + } + }, + { + "text": "By far the best professor in the department, and also the one I learned the most from. Sincerely cares about students learning the info. and is very helpful in class and office hours. No tricks or surprises; when she gives you the review sheet for the exam make sure you know everything on it. Homework helps a lot with exam prep.", + "pos": 0.27, + "neu": 0.708, + "neg": 0.022, + "_id": { + "$oid": "6711d782cd60fca157e6085e" + } + }, + { + "text": "To take any of her classes you MUST be very organized. She's very clear and doesn't play by the usual trickery. If she wants you to do trivial x, do trivial x; there's no hidden message. She's a fair grader, but that also means that if you got a C, you got a C.", + "pos": 0.063, + "neu": 0.819, + "neg": 0.118, + "_id": { + "$oid": "6711d782cd60fca157e6085f" + } + }, + { + "text": "Boring but that is probably because it was a late class. Very nice professor overall and hands out lecture notes each class", + "pos": 0.161, + "neu": 0.776, + "neg": 0.064, + "_id": { + "$oid": "6711d782cd60fca157e60860" + } + }, + { + "text": "quite easy to understand what she teaches. nice to people.", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60861" + } + }, + { + "text": "She is the most amazing professor at CCNY..Take her if you really want to know what is chemE...", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60862" + } + }, + { + "text": "I've had a couple of classes with her. She might seem tough and by the book at first, but she is actually very caring towards her students. She gives plenty of work, but her tests and grading are very fair (unlike many of the ChemE professors). There's no surprises and she is extremely organized.You'll actually come away learning the material here.", + "pos": 0.119, + "neu": 0.834, + "neg": 0.048, + "_id": { + "$oid": "6711d782cd60fca157e60863" + } + }, + { + "text": "Great professor! She is going to make you work VERY hard, but u could learn a lot. She is very nice and supportive person.", + "pos": 0.319, + "neu": 0.627, + "neg": 0.054, + "_id": { + "$oid": "6711d782cd60fca157e60864" + } + }, + { + "text": "she is a wonderful Professor.Definitely one of the best.If you work hard,she'll give you the deserved grade that you're aiming for.You'll learn a lot from taking her class.Take her!brillant!", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60865" + } + }, + { + "text": "She's incredibly nice and kind. I did bad because I did not study or attend class. One comment, she assigns group homework, make sure ur involved in it. My group had a guy who loved the hw, and I relied on him too much. Tests are open book, yet hard, i underestimated the exams, especially considering i never really did the hw.", + "pos": 0.173, + "neu": 0.734, + "neg": 0.093, + "_id": { + "$oid": "6711d782cd60fca157e60866" + } + }, + { + "text": "She is really smart and one of the best professor in City College.Very thorough in explaining things and she aims for excellence.If you don't miss classes,follow her lectures and study,you'll do very well.She's brillant", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60867" + } + }, + { + "text": "The best ChE has to offer.If you fail her,you will not pass any other class", + "pos": 0.203, + "neu": 0.628, + "neg": 0.169, + "_id": { + "$oid": "6711d782cd60fca157e60868" + } + }, + { + "text": "Not good. I passed her class but i don't think she's a kind person.", + "pos": 0.251, + "neu": 0.656, + "neg": 0.093, + "_id": { + "$oid": "6711d782cd60fca157e60869" + } + }, + { + "text": "great professor...explains very well.", + "pos": 0.765, + "neu": 0.235, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6086a" + } + }, + { + "text": "The best", + "pos": 0.808, + "neu": 0.192, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6086b" + } + }, + { + "text": "She's Excellent!", + "pos": 0.8, + "neu": 0.2, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6086c" + } + }, + { + "text": "She is a very good professor and one of the Best in the chemy department.She genuinely helps her students and cares about them. I would recommend anyone to take her.You'll learn a lot and get out a lot smarter...she's a fair grader and those of u who chooses to say otherwise didn't put enough effort in their work.She's Excellent!", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6086d" + } + }, + { + "text": "the very best best prof i have ever had. she is very friendly and helpful. i took thermo with her last year, still i can go to her with any question and get help. she is a blessing to ChE students. Why is she not teaching all the ChE class?", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6086e" + } + }, + { + "text": "Yo lazy guys, wake up.If you are a ChE, you gotta work your ass of bcoz nothin is easy.She is the BEST prof. in ChE.If you didnt make her class,u aint makin anything.She is the most organized&helpful prof.!Wish she taught more undergrad classes", + "pos": 0.096, + "neu": 0.781, + "neg": 0.123, + "_id": { + "$oid": "6711d782cd60fca157e6086f" + } + }, + { + "text": "She's kind, helpful, all this is bull****! This lady is so demanding! What's the point of only being nice and friendly, if you can't be fair for the amount of work that a person does, and for the time that one has spent. Unless you do everything perfect, you are bound to get an F. Simple mistakes cost you a lot. You need to be Mr or Ms Perfect.", + "pos": 0.232, + "neu": 0.689, + "neg": 0.08, + "_id": { + "$oid": "6711d782cd60fca157e60870" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d782cd60fca157e60872" + }, + "professor_name": "Bettina Lerner", + "rating": 4.9, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Such a sweet professor! She made learning French so fun for me, I've struggled with remembering and maintaining the material, but she made it very easy. She will call on you a lot, though, so be ready to participate and speak up in class. Overall a great class with an amazing professor, take her!", + "pos": 0.33, + "neu": 0.646, + "neg": 0.023, + "_id": { + "$oid": "6711d782cd60fca157e60873" + } + }, + { + "text": "I had taken Professor Lerner's courses consequently for three semesters. Words can't express how much her lectures have inspired me to fulfill my French major requirements. She's respectful, compassionate and charismatic. She definitely made my years at CCNY very memorable.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60874" + } + }, + { + "text": "I took this Prof in Spring 22'. She is absolutely the best. She's encouraging, her lectures are engaging and she marks fairly.\nTake this prof if you want to experience warmth and kindness. She is a reason to come to school. You will definitely learn and she will encourage you and keep you motivated!!! Awesome Professor", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60875" + } + }, + { + "text": "I love Bettina, she's awesome! The transition to online classes has not really been that smooth, but Bettina's class is the exception to that! Super well organized, everything is self-explanatory, and she is very flexible. I highly recommend any of Bettina's classes, just know you will have to read a lot, but it's totally worth it!", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60876" + } + }, + { + "text": "She's a very sweet professor and she's very helpful in this oral French class. We read plays throughout the whole semester that was pretty interesting. She will definitely improve your oral French if you take her. She also gives many opportunities for extra credit just make sure you do all of your work and do the readings for her two quizzes.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60877" + } + }, + { + "text": "One of the best teachers I've had at CCNY. She's super smart and cares a lot about her students. Very down to earth person and you should definitely take her class!!you'll learn a lot of new topics you never knew existed.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60878" + } + }, + { + "text": "Simply AMAZING. The course is reading intensive so make sure to do them. At least try to read through them enough to participate in class. The materials are all discussed. So if you didn't understand something, class will help you. The papers were a little intensive. But, she's always offering help. So don't be afraid to ask. Take her!", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60879" + } + }, + { + "text": "I really loved her teaching style. Not really happy about writing a 7-10 page final paper, but the first paper was only 5 page and was given some guidance to it. Make sure to do 10 blackboard posts (informal, 100-200 words) about the readings. Gives lots of readings, but the material is interesting, and fun to learn. Enjoyed every lesson!", + "pos": 0.246, + "neu": 0.726, + "neg": 0.028, + "_id": { + "$oid": "6711d782cd60fca157e6087a" + } + }, + { + "text": "Prof. Lerner is the best of the best in her field. She is remarkably kind and she is always willing to help. She cares for her students and their future plans. She knows how to carry you throughout the material. So if the French gets tough, Lerner does her best to make it better.", + "pos": 0.344, + "neu": 0.635, + "neg": 0.021, + "_id": { + "$oid": "6711d782cd60fca157e6087b" + } + }, + { + "text": "Lerner is amazing! She teaches wonderfully and is great to talk to after if you need help having something explained or advice on something of the francophone world!", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6087c" + } + }, + { + "text": "easy A if you are willing to the reading. she's very flexible when it comes to teaching I highly recommend her.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6087d" + } + }, + { + "text": "You learn almost effortlessly. She's that good. Do the 5 pages of reading before class, because she's so nice that she never skips over anyone who's having a hard time, making class really slow when people get lazy. Takes the time to teach carefully without it getting dull. Really makes a difficult language a piece of cake!", + "pos": 0.157, + "neu": 0.744, + "neg": 0.099, + "_id": { + "$oid": "6711d782cd60fca157e6087e" + } + }, + { + "text": "Prof Lerner rocks!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6087f" + } + }, + { + "text": "Knows her material very well, but has a superior capacity to teach--not that common. Always available, even after your class is finished. Warm and genuine. Slackers beware.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60880" + } + }, + { + "text": "She is extremely kind and very nice professor. She has an attitude to teach and is very fair with the grades. Great appearence..simply hot", + "pos": 0.403, + "neu": 0.597, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60881" + } + }, + { + "text": "SHE IS AWSOME.DO THE WORK AND GET THE AWSOME REWARD.....WANT TO LEARN FRENCH GET TO LERNER....SHE ID THE BEST.........", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60882" + } + }, + { + "text": "She is a great prof.: helpful, knowledgeable, and fun. Want to learn french? take prof. Lerner. Do the work she requires and you will be fine. Loved her class and I am looking foreward for french 122. Loved it.", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60883" + } + }, + { + "text": "She is very nice and helpfull, but too much readings and no deep analysis", + "pos": 0.121, + "neu": 0.712, + "neg": 0.166, + "_id": { + "$oid": "6711d782cd60fca157e60884" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d782cd60fca157e60885" + } + }, + { + "text": "Amazing, amazing person.", + "pos": 0.884, + "neu": 0.116, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60886" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d782cd60fca157e60888" + }, + "professor_name": "Jennifer Stock", + "rating": 3.6, + "department": "Communication department", + "comments": [ + { + "text": "Very old fashion. She doesn't take any excuses. If you arrive late while someone is presenting, she will make you wait outside. She asked for a textbook but we never used it. Just do the speeches and you will be fine.", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60889" + } + }, + { + "text": "Professor Stock's class is very doable. Show up to class but DO NOT walk in while others are presenting or she will be furious! She said we required a book but not once did she mention it! She gives a reasonable amount of papers and extra credit. Stock can be a bit judgmental at times, however!", + "pos": 0.054, + "neu": 0.853, + "neg": 0.094, + "_id": { + "$oid": "6711d782cd60fca157e6088a" + } + }, + { + "text": "If you want to got a F, just take her class.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6088b" + } + }, + { + "text": "the only problem i had with this prof was that she waited until the end of the semester to pill up on the work", + "pos": 0.0, + "neu": 0.895, + "neg": 0.105, + "_id": { + "$oid": "6711d782cd60fca157e6088c" + } + }, + { + "text": "Easy A class. Super doable, super easy. Just go to class on time and do the speeches. She makes the class feel like a high school class i.e. counting to silence the class. Told us to buy a book we never used.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6088d" + } + }, + { + "text": "Very strict on discipline, quite conservative, and sometimes rude but overall nice, fun and interesting professor. DO NOT be late for classes and don't skip, she'll take off points. Gives unreasonable amount of homework, but it's not hard. Sometimes she extends the papers, but never the speeches. Has extra credit assignments. Fairly easy to pass.", + "pos": 0.311, + "neu": 0.661, + "neg": 0.028, + "_id": { + "$oid": "6711d782cd60fca157e6088e" + } + }, + { + "text": "She's one of those old timers. Just ignore any weird or rude comments and take her advice. As long as you submit the assignments on time and fill your presentations with lots of pictures, you will do more than fine in her class. Ask her how she's doing often and offer to take back equipment to the other building and you are likely to get an A.", + "pos": 0.029, + "neu": 0.872, + "neg": 0.1, + "_id": { + "$oid": "6711d782cd60fca157e6088f" + } + }, + { + "text": "Overall really fair professor, gives alot of speeches but keeps the topics broad and fairly easy grader.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60890" + } + }, + { + "text": "The amount of work given was pretty easy but she is not an easy grader. You have to have excellent speeches to receive an A and the worst part is that she does not provide any grades til the end of the semester!!!!", + "pos": 0.18, + "neu": 0.666, + "neg": 0.154, + "_id": { + "$oid": "6711d782cd60fca157e60891" + } + }, + { + "text": "This professor was sweet in the beginning but turned out to be very rude and hot-tempered.Throughout the entire semester we had about 4 days of actual learning, the remaining days consisted of students reading aloud to the class (extremely boring). Overall she was the worst professor I have ever had.", + "pos": 0.033, + "neu": 0.748, + "neg": 0.219, + "_id": { + "$oid": "6711d782cd60fca157e60892" + } + }, + { + "text": "She is not much of a Teacher. The purpose of the class was to Give you a change to speak. Take her temper to help improve rather than to Push you down. She loves anything sweet. Do a speech on that and you earn Good Grade. Also a speech on Wrestling. She really likes Speech loaded with Visual (Videos, Large Pictures, etc).", + "pos": 0.24, + "neu": 0.723, + "neg": 0.037, + "_id": { + "$oid": "6711d782cd60fca157e60893" + } + }, + { + "text": "She is not much of a Teacher. The purpose of the class was to Give you a change to speak. Take her temper to help improve rather than to Push you down. She loves anything sweet. Do a speech on that and you earn Good Grade. Also a speech on Wrestling. She really likes Speech loaded with Visual (Videos, Large Pictures, etc).", + "pos": 0.24, + "neu": 0.723, + "neg": 0.037, + "_id": { + "$oid": "6711d782cd60fca157e60894" + } + }, + { + "text": "She's one of the worst. I had to work my ass off to earn an A. We had to do like 12 speeches instead of 4 or 5. Extremely too much work!!!!Please avoid taking her :)", + "pos": 0.116, + "neu": 0.653, + "neg": 0.231, + "_id": { + "$oid": "6711d782cd60fca157e60895" + } + }, + { + "text": "Her class is great shes nice only rude at times but just be on time and do the the speeches. shes and ez grader Just talk when in group speeches and when alone meet the time limit and stay talking and you will be fine I ONLY HATED HER TEMPER SHE IS KIND OF RUDE AT TIMES but just ignore her if she says something stupid", + "pos": 0.106, + "neu": 0.588, + "neg": 0.306, + "_id": { + "$oid": "6711d782cd60fca157e60896" + } + }, + { + "text": "Her favorite things in the world are chocolate and Coca Cola.... write a speech about that and get in her good graces lol", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e60897" + } + }, + { + "text": "WARNING!!WARNING!! If you want a F, take her class. She is the worse professor I have never seen. At the last three class, she did not show up and never told us there was a final or not. She is weird. She wanted to record your speech with your own tape. You know what I am saying. Take any professor, BUT JENNIFER STOCK", + "pos": 0.055, + "neu": 0.914, + "neg": 0.031, + "_id": { + "$oid": "6711d782cd60fca157e60898" + } + }, + { + "text": "Hay,listen up, DO NOT TAKE HER IF YOU HAVE PROBLEM WITH SPEAKING IN FRONT OF AN AUDIENCE. Her class is like you're taking speech 202 not 101.All she does is give you speech assignments.When you make mistake,she'll be the one to abuse you badly,instead of creative criticism with patching words of encouragement.Take her class If you have no problem w", + "pos": 0.106, + "neu": 0.748, + "neg": 0.146, + "_id": { + "$oid": "6711d782cd60fca157e60899" + } + }, + { + "text": "i hate speaking in public! plus i'm shy and timid, but her class was great! She is very helpful and sweet. I enjoy her class alot.", + "pos": 0.439, + "neu": 0.438, + "neg": 0.123, + "_id": { + "$oid": "6711d782cd60fca157e6089a" + } + }, + { + "text": "She is really nice.just do the work, come on time and be prepared to present your speech, trust me you will get an A", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d782cd60fca157e6089b" + } + }, + { + "text": "she's ok, short temper and likes to nibble on snacks while u present your speech.she gave a midterm based on the reading assignments from the txtbook, which many have bought but never opened cause she never review or follow up on the reading assignments.", + "pos": 0.041, + "neu": 0.917, + "neg": 0.041, + "_id": { + "$oid": "6711d782cd60fca157e6089c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d783cd60fca157e6089e" + }, + "professor_name": "David Mall", + "rating": 4.4, + "department": "Chemistry department", + "comments": [ + { + "text": "Good teacher. Where did he go? Would be clutch if he taught orgo instead of this prof!", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e6089f" + } + }, + { + "text": "this guy knew his chem and was good at explaining it.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a0" + } + }, + { + "text": "such a great role model with plenty of advice and helpful sotries", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a1" + } + }, + { + "text": "good guy. explains things well", + "pos": 0.625, + "neu": 0.375, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a2" + } + }, + { + "text": "good teacher. makes chem/physics fun. even made projects fun", + "pos": 0.613, + "neu": 0.387, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a3" + } + }, + { + "text": "He was pretty good at explaining things and was entertaining. He showed us how to work as a team and created friendships among us. He also gave us his opinion on differing issues which for me will be an asset to have as a freshman. Drawbacks include that he was late a few times and helped other groups instead of just focusing on our group.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a4" + } + }, + { + "text": "David was a ton of help. I wasn't in the group he led but he sure was helpful towards myself and fellow group mates. He didn't have to help us but he chose to which I have the utmost respect for.", + "pos": 0.245, + "neu": 0.699, + "neg": 0.056, + "_id": { + "$oid": "6711d783cd60fca157e608a5" + } + }, + { + "text": "had him back in 07 and he was really good and he taught well. hope he's still around to help me with chemistry and bio :) .", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a6" + } + }, + { + "text": "who said he can teach. this guy cant even speak english well. i think all the good rating is done by himself.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a7" + } + }, + { + "text": "David was extremely helpful and understanding of our lack of understanding/ prior experience in the lab and in genomics. He made it interesting to learn about something we had thought very difficult.", + "pos": 0.149, + "neu": 0.72, + "neg": 0.131, + "_id": { + "$oid": "6711d783cd60fca157e608a8" + } + }, + { + "text": "VeRy NiCe GuY. GaVe AlOt Of ChAnCeS. CuTe ToO :p", + "pos": 0.622, + "neu": 0.378, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608a9" + } + }, + { + "text": "David and Jason were awesome! They should've taught the whole course.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608aa" + } + }, + { + "text": "David and Jason should have taught us for the whole summer. They were awesome.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608ab" + } + }, + { + "text": "i thought that David was a very nice teaching aid. he explained everything clearly and went straight to the point.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608ac" + } + }, + { + "text": "humor + teaching well = enjoyable learning experience.", + "pos": 0.587, + "neu": 0.413, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608ad" + } + }, + { + "text": "really enjoy his teaching,a friendly lab tutor with humor.", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608ae" + } + }, + { + "text": "Learned a lot from this guy. Taught some interesting things and he did it very well...much better than the others.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608af" + } + }, + { + "text": "David was a good teacher, taught us well.", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608b0" + } + }, + { + "text": "ehh...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608b1" + } + }, + { + "text": "He is a nice teacher.He makes things very simple for me ant other students.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d783cd60fca157e608b4" + }, + "professor_name": "Balazs Fekete", + "rating": 2.6, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Professor Fekete was the best professor ever. He is so caring and sweet. His exams are not hard and they're mostly based on the slides. He does test preparation to help you do well on each exam. Open book. Team projects and he's very generous. AMAZING professor, please take him.", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608b5" + } + }, + { + "text": "Professor Balazs was brilliant at keeping the class short, sweet and to the point. There was no hw and only 3 projects over the course of the whole semester. There was supposed to be 3 exams, 2 midterms and a final but he waived exam 2 and the final and exam 1 was open book. Best option for CE209", + "pos": 0.153, + "neu": 0.823, + "neg": 0.024, + "_id": { + "$oid": "6711d783cd60fca157e608b6" + } + }, + { + "text": "good guy", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608b7" + } + }, + { + "text": "Dr. Fekete is a very knowledgeable Professor. I've taken him for Intro to GIS and for Energy+ Environment and all his lectures were very informative. Dr. Fekete is very understandable professor and just wants the best from his students; I wish his classes were taught in person because I'd get a greater takeaway from the key points discussed in clss", + "pos": 0.17, + "neu": 0.83, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608b8" + } + }, + { + "text": "I took Data and Fluids with Fekete, both were atrocious. Don't expect anything substantial from this guy, the textbook will help you learn the material. Learn the logic behind correctly answering exam questions and you will be fine. We all still don't know why or how he's allowed to teach.", + "pos": 0.085, + "neu": 0.885, + "neg": 0.03, + "_id": { + "$oid": "6711d783cd60fca157e608b9" + } + }, + { + "text": "He is not the best at explaining things he is very fair and kind however . His exams are fair and straight forward . He is the BEST DATA teacher ever to take . If you are a liberal AVOID he makes jokes about gender and global warming TRIGGER WARNING . Overall he is very smart and a great man . READ THE TEXTBOOK IT HELPS ALOT its also 20$ on amazon!", + "pos": 0.318, + "neu": 0.587, + "neg": 0.095, + "_id": { + "$oid": "6711d783cd60fca157e608ba" + } + }, + { + "text": "By far one of the biggest disappointments from the civil engineering department. The whole semester I had no idea what he was saying in class or in his office. I literally memorized old exams and solutions to pass this class. Thank god he is generous and understanding. Its professors like this that ruin the reputation of City College.", + "pos": 0.17, + "neu": 0.703, + "neg": 0.127, + "_id": { + "$oid": "6711d783cd60fca157e608bb" + } + }, + { + "text": "This guy is one of the best CE professors ever. He will try his best to pass everyone. Study past exams and do HW problems and you should be fine.", + "pos": 0.262, + "neu": 0.668, + "neg": 0.069, + "_id": { + "$oid": "6711d783cd60fca157e608bc" + } + }, + { + "text": "From all the other reviews, you know this guy isn't the best at lecturing. BUT he gives you his exercise book and lectures and teaches what's in the textbook and his test questions are similar to homeworks, sometimes exactly the same. You can't deny that he gives you everything you need to do well in the course.", + "pos": 0.085, + "neu": 0.88, + "neg": 0.036, + "_id": { + "$oid": "6711d783cd60fca157e608bd" + } + }, + { + "text": "He can't teach but he'll go easy on you if he sees you're trying. Got 100 on the project even though he said it wasn't right. His exams are okay if you have his exercise book. Memorize the way he solves the problems. Most questions are straight from there. If you do it your own way he won't give any partial credit even if most of it is right.", + "pos": 0.184, + "neu": 0.773, + "neg": 0.044, + "_id": { + "$oid": "6711d783cd60fca157e608be" + } + }, + { + "text": "tbh he's not so good at teaching but he's trying to help u pass. Going to class doesnt help a lot but you will get some hint about the exam.", + "pos": 0.1, + "neu": 0.762, + "neg": 0.138, + "_id": { + "$oid": "6711d783cd60fca157e608bf" + } + }, + { + "text": "He's a nice guy, he just can't teach and he knows that. He says attendance is not mandatory - show up anyway. If he remembers your face you have a better chance of passing. Study the logic behind homework and exam solutions to pass exams and pay attention during the lab session for the project. The textbook is also helpful.", + "pos": 0.18, + "neu": 0.781, + "neg": 0.039, + "_id": { + "$oid": "6711d783cd60fca157e608c0" + } + }, + { + "text": "You don't learn anything from being in class, but his tests are straightforward if you know how to do the HW and old test questions.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608c1" + } + }, + { + "text": "The professor is learning to teach. I have to admit that the subject is hard, so you cant solely depend on lectures. You also need to prepare to read the textbook Overall, the professor is helpful outside of the class. Hes a really smart and nice man if you get to know him more.", + "pos": 0.175, + "neu": 0.803, + "neg": 0.023, + "_id": { + "$oid": "6711d783cd60fca157e608c2" + } + }, + { + "text": "Honestly the one of the worst professors in the entire engineering department. Cant teach to save his life. Make friends and get old tests from them, and youll be fine.", + "pos": 0.199, + "neu": 0.631, + "neg": 0.17, + "_id": { + "$oid": "6711d783cd60fca157e608c3" + } + }, + { + "text": "Great professor if you want to learn nothing but to build great connection with your classmates and utilize all your resource to the best of your abilities.", + "pos": 0.445, + "neu": 0.555, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608c4" + } + }, + { + "text": "he must have found his engineering degree in a cereal box! he is a joke", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608c5" + } + }, + { + "text": "Worst professor i've ever encountered!! His TA might as well of been the professor, he was dandy. I don't see why he gives people less than an A in his class given his complete lack of capability to teach. Would not recommend him nor would i ever take him again! Do yourself a favor and stay away from him, that is if you want to be an engineer.", + "pos": 0.079, + "neu": 0.8, + "neg": 0.121, + "_id": { + "$oid": "6711d783cd60fca157e608c6" + } + }, + { + "text": "Easiest professor alive! Let's just say I never went to class, never cracked a book open, and didn't do the project but still got an A+. There's a website online that has all his exams/homeworks/exercises. Just use that during the exam because he gets all his questions from there or the stuff he posts on BB. If hes teaching, TAKE HIM!!!!!", + "pos": 0.076, + "neu": 0.924, + "neg": 0.0, + "_id": { + "$oid": "6711d783cd60fca157e608c7" + } + }, + { + "text": "If you wanna find a better place to sleep, his lectures definitely provide you a well sleeping environment. No doubt that he is knowledgable, but the lectures and ppt are not helpful AT ALL. Unfortunately, he couldn't teach. But there is a credit for him is that he at least acknowledges that he is a bad teacher. As long as you study, u'll A's it", + "pos": 0.132, + "neu": 0.729, + "neg": 0.139, + "_id": { + "$oid": "6711d783cd60fca157e608c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d784cd60fca157e608ca" + }, + "professor_name": "Clifford Rosenberg", + "rating": 4.1, + "department": "History department", + "comments": [ + { + "text": "One of the easiest history courses in ccny", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608cb" + } + }, + { + "text": "Professor Rosenbergs class was full of interesting topics about the French Revolution. We had 4 quizzes and the lowest was dropped, 1 short paper, and 1 7-10 pages final paper. He gives feedback on your papers. Prof. Rosenbergs class is lecture heavy, lots of readings every week, and make sure you take notes during class for his quizzes.", + "pos": 0.08, + "neu": 0.879, + "neg": 0.042, + "_id": { + "$oid": "6711d784cd60fca157e608cc" + } + }, + { + "text": "Very understanding professor. It is a hard 40000-level class, and he is very understanding when you talk to him. Although the topic is France and Francophone Africa, he allows a variety of French colonial topics for research which helps in all three papers. Concepts are hard to understand as he gives a book to read every week but he does explain.", + "pos": 0.029, + "neu": 0.932, + "neg": 0.039, + "_id": { + "$oid": "6711d784cd60fca157e608cd" + } + }, + { + "text": "This professor is easy compared to others at CCNY. There are weekly readings and online quiz every week which is an easy 100% because you can keep trying until you get a 100%. This online part is 25% of the grade. He is an easy grader and gives good feedback.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608ce" + } + }, + { + "text": "Take him!!! Only class that made my semester bearable.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608cf" + } + }, + { + "text": "Overall he's a really great professor, very understanding and isn't too tough with grading. But get ready to work for the grade you want! Only 2 tests and weekly online quizzes, but A LOT of reading material. He's extremely intelligent, but you'll gain more from his books than the lectures themselves (you have to purchase an online access code)", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608d0" + } + }, + { + "text": "Interesting class. He showed us some films and had us read a couple of books that relate to the film and had us write a paper comparing the two. along with that, he had us do some online quizzes. It was exactly easy but not too difficult either.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608d1" + } + }, + { + "text": "The course is very interactive and fun. It's basically a film and literature course in which you read a novel, and watch a movie based on that film. The book and film are accompanied by a comprehensive lecture and a quiz. There are also three essays. Easy A for me!!", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608d2" + } + }, + { + "text": "Prof. Rosenberg taught the course well, and I got out of it what I expected. He cares about the topic he was teaching, and made sure, by the end of the semester, we did too. The final paper was a bit long, and I've heard it could have been longer, but it was worth it in the end.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608d3" + } + }, + { + "text": "Great guy, very passionate about what he teaches. He lectures, so just take notes on what he says. The textbook readings I think were a bit much, but I mean you have a week to do it, along with blackboard readings. No final, just 2 papers. Blackboard quizzes which are easy if you took basic notes and read the readings. Also very understanding.", + "pos": 0.124, + "neu": 0.836, + "neg": 0.04, + "_id": { + "$oid": "6711d784cd60fca157e608d4" + } + }, + { + "text": "Professor Rosenberg is phenomenal. He's very understanding and will push back exams and papers if the class requests it. His grading criteria is extremely fair and his online quizzes are impossible to fail (you can keep answering questions until you get 100%). The midterms are very easy as well (just identifying documents out of a book).", + "pos": 0.128, + "neu": 0.817, + "neg": 0.055, + "_id": { + "$oid": "6711d784cd60fca157e608d5" + } + }, + { + "text": "Rosenberg knows his stuff but the class was a bit much I love to read but I was taking four other classes and his reading a week were so many books and course packets. his papers were hard and he gave a 15 page term paper. if you are taking more then two classes I don't recommend taking him, he is a really nice guy but you'll have to work to pass.", + "pos": 0.121, + "neu": 0.827, + "neg": 0.052, + "_id": { + "$oid": "6711d784cd60fca157e608d6" + } + }, + { + "text": "There is a lot of reading to do, however , there is a lot of class discussion as well as valid arguments with classmates. He is a good professor and he will help you.", + "pos": 0.191, + "neu": 0.743, + "neg": 0.067, + "_id": { + "$oid": "6711d784cd60fca157e608d7" + } + }, + { + "text": "great teacher and cares about his students", + "pos": 0.587, + "neu": 0.413, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608d8" + } + }, + { + "text": "Good teacher. He gets really into the subject and so long as you're interested in history and participate in class and do the work you'll be good. He does give a lot of reading but that is what history is about. Take him, but be prepared to do work.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608d9" + } + }, + { + "text": "So much reading, not only from the text book (which is huge) but also other books as well. But he knows a lot, and you will learn (if you work hard). To pass the class you really really need to work...hard.", + "pos": 0.098, + "neu": 0.866, + "neg": 0.036, + "_id": { + "$oid": "6711d784cd60fca157e608da" + } + }, + { + "text": "He over works you, i don't rcommend him for no one it's just tooo much.. at the same time unless you want a challege and you want to be a history major.", + "pos": 0.077, + "neu": 0.858, + "neg": 0.065, + "_id": { + "$oid": "6711d784cd60fca157e608db" + } + }, + { + "text": "hes a good teacher, but he gives way to much ****ing reading.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608dc" + } + }, + { + "text": "Hard class but if you do the work u'll be fine", + "pos": 0.177, + "neu": 0.726, + "neg": 0.097, + "_id": { + "$oid": "6711d784cd60fca157e608dd" + } + }, + { + "text": "Smart guy. Knows and loves his subject. Gets so wrapped up in it he sometimes loses himself. Looks like Jim Carrey.Intergrates film, primary and secondary documents in his teaching. Easy style, but unflappable. Lots of reading, but tough it out and you'll do O.K.", + "pos": 0.16, + "neu": 0.771, + "neg": 0.069, + "_id": { + "$oid": "6711d784cd60fca157e608de" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d784cd60fca157e608e0" + }, + "professor_name": "Anna Steegman", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "Had her before I transferred to Baruch. Extremely easy. Also boring. I wore sunglasses and slept thru the class and never got caught. Time flew by so fast. 1 year of boredism in ccny. wasted about 500 to 1000 hours in this school waiting in the park for my classes.", + "pos": 0.057, + "neu": 0.84, + "neg": 0.103, + "_id": { + "$oid": "6711d784cd60fca157e608e1" + } + }, + { + "text": "She's an amazing teacher. This class was an easy A. The directions for some of her assignments were unclear but a simple email would have solved the issue. She always answers her emails and gives great feedback. All she expects is correct grammar and for you to put effort into your writings. Her assignments aren't even APA or MLA format based.", + "pos": 0.18, + "neu": 0.798, + "neg": 0.021, + "_id": { + "$oid": "6711d784cd60fca157e608e2" + } + }, + { + "text": "After this class I feel my writing has improved. She is an awesome teacher! Literally just do all the assignments and incorporate her feedback. She even gives you a chance to revise some assignments so if writing isn't your best don't fret. The assignments are interesting and in the end you write a research paper about whatever your interested in", + "pos": 0.206, + "neu": 0.747, + "neg": 0.047, + "_id": { + "$oid": "6711d784cd60fca157e608e3" + } + }, + { + "text": "Okay professor, good feedback. Downside. Does not explain throughly about assignments on blackboard. Does not give you a clear outline or mostly none at all. Tells you in class but doesn't gibe u a rubric what to write and what to include for the assignment. She only gives title on blackboard. Sad professor doesnt detail assignment guidelines", + "pos": 0.083, + "neu": 0.827, + "neg": 0.09, + "_id": { + "$oid": "6711d784cd60fca157e608e4" + } + }, + { + "text": "Pros: Steegman is one of those profs at CCNY that really cares about her students. She is very generous, and her main objective is for us to write with an open mind. The papers are not hard at all, and i enjoyed writing them. She wants us to write in active voice, so we feel like ourselves writing Cons:gets annoying moving chairs in circle alot lol", + "pos": 0.245, + "neu": 0.721, + "neg": 0.034, + "_id": { + "$oid": "6711d784cd60fca157e608e5" + } + }, + { + "text": "Professor Steegmann is great. She creates a comfortable classroom environment, which allows for students to feel comfortable opening up. There are only 6 graded assignments, and a few non-graded/optional assignments. She gives good feedback, which has helped improve my writing drastically. A very laid back, and easy class. Take her if you can!!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608e6" + } + }, + { + "text": "She is fair. Take her U won't regret it", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608e7" + } + }, + { + "text": "Prof. Steegman may seem tough or strict after the first class, when in reality she cares a great deal about her students and will work with you to make sure you succeed. You must show that you are invested in your topic and in completing the work; she won't have any patience for a drifter or someone who is constantly late and doesn't come prepared.", + "pos": 0.169, + "neu": 0.789, + "neg": 0.042, + "_id": { + "$oid": "6711d784cd60fca157e608e8" + } + }, + { + "text": "One of the few professors that actually care about their students. Encourages students to be themselves and discourages students from being \"fake.\" Genuinely wants to hear the person's personality through their writing. If you are funny, she wants you to write normally and show that side of you. Very lovable, caring, compassionat, and understanding", + "pos": 0.24, + "neu": 0.674, + "neg": 0.086, + "_id": { + "$oid": "6711d784cd60fca157e608e9" + } + }, + { + "text": "I wouldn't say there is not much work because there is but if you do everything as stated on the syllabus, it's an easy A. There are 6 papers (very doable) 10% each and a final paper 40%. Great professor, makes the class like family.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608ea" + } + }, + { + "text": "Prof Steegman is really helpful and inspiring. Even though she is a tough grader but she gives great feedback that helps you improve as a writer. Her grading policy is clear and all assignments are on blackboard.", + "pos": 0.395, + "neu": 0.581, + "neg": 0.024, + "_id": { + "$oid": "6711d784cd60fca157e608eb" + } + }, + { + "text": "She is a great professor that wants to see you excel in writing. She is a tough grader but does gives an amazing feedbacks. She truly cares about her students and inspires her students to be better writers. Also, heavy loads of work throughout the semester but it prepares you for the final research papers.", + "pos": 0.344, + "neu": 0.639, + "neg": 0.017, + "_id": { + "$oid": "6711d784cd60fca157e608ec" + } + }, + { + "text": "SHE IS AMAZING! Best english professor I've taken. Her class is different and very interesting. Group work and discussions. Series of graded and complete/incomplete assignments. Final is a field study of your choice. Allows 4 absences. Loved this class and definitely recommend her!", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608ed" + } + }, + { + "text": "Great teacher, really makes you interested in real world sociology. I highly recommend anyone that wants an easy english class and can put the work in.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608ee" + } + }, + { + "text": "She is one of the most helpful english professors I have had in CCNY. She treats you like a friend and want you to write from your own voice and forget what anyone else has inscribed in your brain. She gives a lot of work but is very flexible in terms of deadlines, grades and submissions. I would recommend her to anyone. She acts like a mentor.", + "pos": 0.213, + "neu": 0.768, + "neg": 0.019, + "_id": { + "$oid": "6711d784cd60fca157e608ef" + } + }, + { + "text": "She's really nice and chill. I liked how she ran her class. Definitely felt comfortable in the class. Gives fun activities and lets you do group works on the papers", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608f0" + } + }, + { + "text": "She always gives you opportunity to show yourself. A rare professor, because she really concerns with her students and their life.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608f1" + } + }, + { + "text": "She is amazing...I had to commute 2 hours for her 8am class but I was really happy with her...It was worth the efforts...She helps student publish articles and is really friendly...take her...", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608f2" + } + }, + { + "text": "Anna Steegmann is AWESOME!!!!! I went into the class expecting to hate it, especially since it was at 8 in the morning but she turned out to be my favorite professor. She understands and she works with you! She knows what she is doing as a professor and a creative writer. She has been out in the field and pushes for everyone to get published! GREAT", + "pos": 0.228, + "neu": 0.744, + "neg": 0.029, + "_id": { + "$oid": "6711d784cd60fca157e608f3" + } + }, + { + "text": "Amazing Teacher, She is not generic, and she makes your own writing voice come out. She is so helpful and she even makes us prepare our writing to come alive so we can appeal to graduate school programs, study abroad programs etc in our personal statement. I would DEFINITELY recommend. In fact, i BEG you to take her", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d784cd60fca157e608f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d785cd60fca157e608f6" + }, + "professor_name": "Sarah Muir", + "rating": 4.6, + "department": "International Studies department", + "comments": [ + { + "text": "attend classes bc if you miss one lecture, you're lost (doesn't post it on Bb). very understanding if you're absent as long as you communicate. quizzes, midterms, and finals are all online and open book, you have a good 3-4 days to do it before it's due. make sure to read the textbook/readings because the lecture is very reading-based (keep notes)", + "pos": 0.079, + "neu": 0.862, + "neg": 0.059, + "_id": { + "$oid": "6711d785cd60fca157e608f7" + } + }, + { + "text": "She knows little about international studies and should not teach it. She is nice but I wish I'd taken the course with a more knowledgeable person. clearly this is not her field. Don't waist your money.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e608f8" + } + }, + { + "text": "Dr. Muir's electives are amazing! You will learn so much and this is so far one of the best classes I've taken with her.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e608f9" + } + }, + { + "text": "Dr. Muir is amazing!!! She is so passionate about her classes and truly cares about students. You will not regret taking her!", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e608fa" + } + }, + { + "text": "Love her!!! She is the best", + "pos": 0.699, + "neu": 0.301, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e608fb" + } + }, + { + "text": "One of my favorite professors! Exams and Quizzes are on Blackboard and it's open notebook. Read the textbook, some of the answers to questions are literally stated word for word in the textbook. She is so caring and she is really passionate about the topic, which makes class exciting. The only homework is reading the textbook and 6 exercises.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e608fc" + } + }, + { + "text": "She is such a bright light at CCNY. She is more than accommodating for her students, so do yourself a favor and take this course with Professor Muir. Very easy, very informative, very stress-free class. You must buy the textbook and keep up with the readings. Must come to class for the lectures b/c she does not post them. Loved this course!", + "pos": 0.129, + "neu": 0.826, + "neg": 0.045, + "_id": { + "$oid": "6711d785cd60fca157e608fd" + } + }, + { + "text": "too many online quizzes and extremely long exams, group work suck, too picky on what should be on paper and writing a two page paper that can earn you up to one point? too muchmuch", + "pos": 0.0, + "neu": 0.921, + "neg": 0.079, + "_id": { + "$oid": "6711d785cd60fca157e608fe" + } + }, + { + "text": "She is a gem, Period.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e608ff" + } + }, + { + "text": "Hybrid course with 1 assignment due each week. Very manageable & worth coming once a week instead of twice. She is cheerful, passionate, & open to clarifying questions. Expectations for final project were not so clear, but she is a generous grader. Blackboard quizzes were super easy & make sure to read/skim articles before lecture. Participate!!", + "pos": 0.318, + "neu": 0.657, + "neg": 0.026, + "_id": { + "$oid": "6711d785cd60fca157e60900" + } + }, + { + "text": "Everyone should take her class. It's both an easy A class but also a class where you'll learn plenty. She's so understanding and caring, two attributes that some other professors definitely don't have. Her tests are open book and online so you literally can't fail here exams.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60901" + } + }, + { + "text": "Honestly I didnt even take this professor but she sounds like such a sweetheart.", + "pos": 0.505, + "neu": 0.495, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60902" + } + }, + { + "text": "TAKE HER CLASS. YOU WILL PASS. EASY A. UNDERSTANDING TEACHER. I came back to rate her because I know you guys need it. She is understanding, caring, loving, etc. I can go on for days. Quiz,midterm,final is online. Open notebook. She is not a tough grader. She gives us enough time to take the best. Every college student needs her. She's a blessing", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60903" + } + }, + { + "text": "One of the best professors & human beings I have ever met. She is extremely knowledgeable, passionate about what she teaches & care for her students. The way she explained those deep texts with real life example just incredible. Things I learned from her will help me years to come. She becomes my favorite professor. I am so proud of Dr. Muir!", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60904" + } + }, + { + "text": "It's a crying shame that she won't be teaching INTL 30500 next semester. She is an absolute gem and CCNY needs more professors like her. You take 6 quizzes, a midterm, and a final, which are all open book. She uses powerpoints and videos to help engage the class. Plus, for every quiz or exam, you are provided with a brief review. :)", + "pos": 0.147, + "neu": 0.769, + "neg": 0.084, + "_id": { + "$oid": "6711d785cd60fca157e60905" + } + }, + { + "text": "She is very sweet, understanding and most importantly her lectures are interesting and teach you things beyond the classroom but things to apply for life. All her assignments are online and OPEN BOOK TESTS YASSSS! Also, if something is going on she will work with you, read, show up to class, do assignments and you will get an A!", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60906" + } + }, + { + "text": "Professor Muir is one of the best professors I had the chance to know at City College. She is an amazing lecturer and really knows the subject of her classes well. She is very passionate about what she teaches and she really wants her students to succeed. There are a lot of readings, but they are worth it. Youll learn a lot from her and her class.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60907" + } + }, + { + "text": "Professor Muir has got to be one of the best professors CCNY has. She is the director of the international studies department, so if you are an IS major definitely take her class to know her better. She studied at Barnard and is extremely knowledgeable and passionate about what she teaches.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60908" + } + }, + { + "text": "You won't regret taking her class. You will learn so much more. She is so energetic and always positive.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60909" + } + }, + { + "text": "Just take her. She is awesome! Open book quizzes and take-home exams. Very few homework and job needed. She's just amazing as a person and I am planning to take her other classes.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e6090a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d785cd60fca157e6090c" + }, + "professor_name": "Daniel Gustafson", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "Theres a lot of writing, but hes a good grader and gives amazing feedback. If you apply yourself and complete the reading, this class is pretty average in intensity but rewarding. The class does not meet in person or over zoom (some exceptions), he records lectures and puts them on Youtube (theyre about 35/45 mins each on average)", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e6090d" + } + }, + { + "text": "The class does not meet via zoom instead everything is on blackboard(discussion boards and quizzes), and the lectures are on youtube.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e6090e" + } + }, + { + "text": "Very hard to reach him and not the best teacher. Does not have a zoom class and his lectures are on youtube and are 2 hours long. Not a helpful teacher as well.", + "pos": 0.089, + "neu": 0.721, + "neg": 0.19, + "_id": { + "$oid": "6711d785cd60fca157e6090f" + } + }, + { + "text": "Prof. Gustafson is an amazing instructor. He engages with students & doesn't force anyone to participate but encourages them to do so. He is very open to hearing opposing ideas & carries class discussions seamlessly. Makes class interesting. I would take his class again if I could. The homework and classwork is reasonable & fair. Recommend him 100%", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60910" + } + }, + { + "text": "Daniel so wonderful as a professor, so much that I enrolled in another of his classes next semester. He works well with you if you have an issue, but you do have to communicate with him so he knows whats going on for you. The workload can get overwhelming at times, but as long as you put in an effort to get it done you'll do fine in the class.", + "pos": 0.085, + "neu": 0.915, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60911" + } + }, + { + "text": "Really enjoyed his class! Make sure to read all of the assigned literature and get them as soon as possible. Very kind and caring professor who is very knowledgeable as well. You will definitely walk out of his classes knowing so much more than you did.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60912" + } + }, + { + "text": "to much readings it is unrealistic. Need to be a part time student to manage", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60913" + } + }, + { + "text": "This is the second time I had him as my English professor. He is not only a English Professor but also the adviser in the English department. His readings are heavy, but do-able. There are only papers for his class that are not too bad. He is not a harsh grader and is very helpful and understanding. He is super knowledgeable and smart!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60914" + } + }, + { + "text": "Finally a professor that CARES. He is truly the best. He isnt interested in getting you to like the material but rather on your development as a writer, researcher and critical thinker/analyzer. You will leave his class better than the day you walked in. Super kind, willing to help once communication is there. Wish I could take him again and again", + "pos": 0.35, + "neu": 0.58, + "neg": 0.07, + "_id": { + "$oid": "6711d785cd60fca157e60915" + } + }, + { + "text": "this is the best professor in ccny! hes caring but tough at the same time. very smart and willing to help you in you need. i took his class twice and enjoyed both classes. the second time i took his class i had a fmaily emergency mid semster but he worked with me and for that i was very apprciative.", + "pos": 0.226, + "neu": 0.705, + "neg": 0.069, + "_id": { + "$oid": "6711d785cd60fca157e60916" + } + }, + { + "text": "One of the toughest graders I have ever faced in my college career. But he pushes you so much you improve your craft. One of the best Professors at CCNY.", + "pos": 0.263, + "neu": 0.707, + "neg": 0.03, + "_id": { + "$oid": "6711d785cd60fca157e60917" + } + }, + { + "text": "The best English lit professor I've had the pleasure of taking throughout my time in college. His assignments are meant to bring out the best in your analytical and writing skills, and he is a fair grader. You will do quite a bit of reading and writing, but his workload is VERY balanced and spaced out. He's always available for advice and help too.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60918" + } + }, + { + "text": "He is truly one of the best professors I have encountered in my college career. He is an asset to the CCNY Community. He is clear and concise with grading, he gives valuable and helpful feedback, and he holds great class discussions on the readings. I wish I could take him for every English class. Take him if possible, you will not regret it!", + "pos": 0.334, + "neu": 0.666, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60919" + } + }, + { + "text": "He is an amazing professor because he teaches in a universally comprehensible way. He makes every class interesting because he breaks down the readings and engages the students with discussions and historical context. He gives great feedback on his numerous writing assignments to help you become a good writer. An absolute gem. Take his class.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e6091a" + } + }, + { + "text": "I have nothing bad to say about him. Very clear. He is on time for everything and actually sticks to the syllabus. Constant work and reading but its doable. Take him if you're thinking about it. Very nice guy.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e6091b" + } + }, + { + "text": "Some of the readings were eh, but overall this class was great. We were also a small group so we had nice class discussions. He's a kind professor and gives good essay feedback. I would definitely take another class with him.", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e6091c" + } + }, + { + "text": "He's so great that I am taking another class with him next semester. He is the most wonderful person ever. He is also the undergrad advisor for english so he is a big help with anything english-wise. Such a smart man!", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e6091d" + } + }, + { + "text": "He's the best. He explains everything clearly, gives super in depth and useful feedback on your papers, and keeps the class material interesting. No tests, one paper, one midterm paper, a final paper, and 6 easy journal entries on readings. Easy A for any English major. PLUS he's the English advisor, so dibs registering!", + "pos": 0.318, + "neu": 0.651, + "neg": 0.031, + "_id": { + "$oid": "6711d785cd60fca157e6091e" + } + }, + { + "text": "I took his class more than once. He's dedicated, professional, smart, and nice. I love the guy but he has one fault -- He's easy! C+ is supposed to be standard grade but he hardly gives anything below a B. If u can write/analyze just decently, you'll get an A-grade. I can't lie. he gave me As on papers that, as I read them today, had major flaws.", + "pos": 0.16, + "neu": 0.794, + "neg": 0.045, + "_id": { + "$oid": "6711d785cd60fca157e6091f" + } + }, + { + "text": "Amazing prof. Humble, brilliant, clear, and caring.", + "pos": 0.817, + "neu": 0.183, + "neg": 0.0, + "_id": { + "$oid": "6711d785cd60fca157e60920" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d786cd60fca157e60922" + }, + "professor_name": "Douglas Jahnke", + "rating": 2.9, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Two midterms and multiple quizzes that add up very quick. Tests are open book but can be theoretical so watch out.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60923" + } + }, + { + "text": "Uses McGraw Hill Connect for homework but allows redos and see correct answers. Tests are open book/note with no numbers so take good notes and make a habit of using variables even in hws. Fair exams/pretty generous partial credit. Don't read the textbook, he does problems in great detail in class so follow that. Willing to help in office hours.", + "pos": 0.294, + "neu": 0.629, + "neg": 0.077, + "_id": { + "$oid": "6711d786cd60fca157e60924" + } + }, + { + "text": "Prof. Jahnke explained the course material really well. He expects his students to show up in time, ready to take notes and ask questions. He writes everything on the board in a clear and organize matter because he wants you to understand the material really well. Just put in the work and you should be fine.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60925" + } + }, + { + "text": "Took him in the summer. Easy A, just show up to all his classes and make sure you solve the problems his way. The book's methods are confusing and redundant. Grind the textbook problems before his exams and you'll do fine.", + "pos": 0.176, + "neu": 0.679, + "neg": 0.146, + "_id": { + "$oid": "6711d786cd60fca157e60926" + } + }, + { + "text": "JUST WOW. Seriously don't understand why so low. Currently have J/Li for 330 (Jahnke for 246) and I am genuinely ready to drop out. Jahnke was great. Homeworks sucked and I didn't do them, didn't study, bombed the final (mind you I'm not a curve-breaker kid), and he gave me a B-. No one else curves or is this easy. He's mean though. That's it.", + "pos": 0.176, + "neu": 0.681, + "neg": 0.143, + "_id": { + "$oid": "6711d786cd60fca157e60927" + } + }, + { + "text": "Doesn't know the material well. Doesn't cover all the material so even if you do end up passing you won't understand what's going in ME24700.", + "pos": 0.08, + "neu": 0.92, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60928" + } + }, + { + "text": "Well... Jahnke is a good and easy going prof.. Do some of the online HW just to get an idea, i would recommend to do all of them so you get a slight higher grade. Midterms and Final are easy! Just similar problems like the easy ones on the HW.", + "pos": 0.298, + "neu": 0.659, + "neg": 0.042, + "_id": { + "$oid": "6711d786cd60fca157e60929" + } + }, + { + "text": "Wish I'd found this site before registering for the class. Uses McGraw-Hill connect. It crashed my laptop andI'd have to reboot all the time with unpredictable results. I went during off hrs to get help with a problem. I think he got upset when I asked for explanation/rationale. I dropped the class. Can't comment on the personality.", + "pos": 0.085, + "neu": 0.832, + "neg": 0.083, + "_id": { + "$oid": "6711d786cd60fca157e6092a" + } + }, + { + "text": "Don't bother with the text book. He assigns online homework which, if you do it honestly, you will do well on his exams and quizzes. Lectures are ok but often he would get lost in a problem and end up confusing everyone. And don't ask him questions because he will get visibly upset. It's almost like he see questions as you challenging him.", + "pos": 0.142, + "neu": 0.697, + "neg": 0.161, + "_id": { + "$oid": "6711d786cd60fca157e6092b" + } + }, + { + "text": "This semester for ME330 was catastrophic. I took him before and the way it used to be was to do and understand the homework and, as a result, do good on exams. He teaches exactly from the book BUT the tests were extremely hard, not even close to the material in the book. The final was based on the material we never even cover in class. Life is pain", + "pos": 0.026, + "neu": 0.86, + "neg": 0.114, + "_id": { + "$oid": "6711d786cd60fca157e6092c" + } + }, + { + "text": "Terrible teacher. If he doesnt know something he'll just make stuff up. Confuses students, harsh grader, has way too stupid rules and policies. I can count everything he's taught me on one hand, and most of it wasnt the course material. He teaches about real life engineering which is good, but you NEED to learn from the book. Avoid if possible.", + "pos": 0.06, + "neu": 0.8, + "neg": 0.14, + "_id": { + "$oid": "6711d786cd60fca157e6092d" + } + }, + { + "text": "He's confusing when showing examples but at least is clear on what theories and concepts you should know. TESTS ARE OPEN BOOK. If you can study on your own and create good notes, it's an easy pass. HW's are essential because tests are exactly like HW except a bit harder but the tests are still fair and curves. I'd recommend taking him for 330.", + "pos": 0.288, + "neu": 0.694, + "neg": 0.018, + "_id": { + "$oid": "6711d786cd60fca157e6092e" + } + }, + { + "text": "He's a good professor who seems to know the material he's teaching and is able to convey it well. Example problems are slow so treat it like tutoring and ask questions! Read examples beforehand so you know what questions you'll have. You can tell he cares about his students and he likes to give general advice. Fair grader and a nice guy.", + "pos": 0.287, + "neu": 0.678, + "neg": 0.035, + "_id": { + "$oid": "6711d786cd60fca157e6092f" + } + }, + { + "text": "Cool guy, below average professor. Assigns hw for each ch. but sols. are usually available for most problems online. Had 2 midterms, but the questions seemed to be 2 steps above in difficulty of the hw. Decent grader, partial credit where it is earned. Attendance not mandatory but gives pop quizzes (5% of grade). Prepare to learn from textbook.", + "pos": 0.075, + "neu": 0.8, + "neg": 0.125, + "_id": { + "$oid": "6711d786cd60fca157e60930" + } + }, + { + "text": "Prof. Jahnke is a cool dude - he is just very unorganized during lectures. He would spend a long time going through problems from the book in class & usually got confused midway through it. There was online HW from MasteringEngineering & luckily exams were open book. He unfortunately rushed through the end chapters, doing chapters 9-12 in one week!", + "pos": 0.082, + "neu": 0.805, + "neg": 0.113, + "_id": { + "$oid": "6711d786cd60fca157e60931" + } + }, + { + "text": "Professor Janke is a very funny guy. He doesn't make the class boring but the lectures are long and straight from the book. Expect a lot of hw and do them to get the basic understanding. He gives u hints for the exam so take notes. His exams are difficult. 1/2 his questions are straightfoward but the other half is very conceptual.", + "pos": 0.066, + "neu": 0.861, + "neg": 0.073, + "_id": { + "$oid": "6711d786cd60fca157e60932" + } + }, + { + "text": "Disorganized and took too much time on simple concepts. Exams were very similar to homework. Took the homework WAY TOO SERIOUSLY, and if your referenced the solutions manual to ensure you had correct answers (like everyone does in every engineering class), you would receive an academic write-up without warning. Easy, but lectures were bad.", + "pos": 0.103, + "neu": 0.74, + "neg": 0.157, + "_id": { + "$oid": "6711d786cd60fca157e60933" + } + }, + { + "text": "A cool guy, but he can be very unprepared for class at times. I'm all for examples, but not if we spend unnecessary time on them. I think he'd be a good teacher if he'd just review the material before he teaches it and prepare a bit more for class. He also has a habit of being very late, half the class doesn't bother showing up because of it.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60934" + } + }, + { + "text": "this guy makes me crack up all class long. people say he is tough but if you are awake ME 145 is an easy A. very useful class", + "pos": 0.237, + "neu": 0.727, + "neg": 0.036, + "_id": { + "$oid": "6711d786cd60fca157e60935" + } + }, + { + "text": "Very unorganized. Summer semester - spent first 3 lectures going over basic high school level concepts. Dragged each topic. Result? - he introduced and went over all of ch 5 and 9 on the last day of class. Doesn't seem to understand core concepts sometime - refused to admit he was wrong about a truss concept for 30mins. Vague group project.", + "pos": 0.027, + "neu": 0.852, + "neg": 0.12, + "_id": { + "$oid": "6711d786cd60fca157e60936" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d786cd60fca157e60938" + }, + "professor_name": "Ali Duale", + "rating": 3.7, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Very caring Professor. He cares about each student and helps to prepare for the exam by identifying topics that need to be emphasized. The class itself is not very interesting, but you will definitely learn to type faster.", + "pos": 0.216, + "neu": 0.744, + "neg": 0.039, + "_id": { + "$oid": "6711d786cd60fca157e60939" + } + }, + { + "text": "I failed with duale i do not like i like uyar better UYAR IS THE BEST!", + "pos": 0.305, + "neu": 0.413, + "neg": 0.282, + "_id": { + "$oid": "6711d786cd60fca157e6093a" + } + }, + { + "text": "Thumps up!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e6093b" + } + }, + { + "text": "meh", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d786cd60fca157e6093c" + } + }, + { + "text": "Highly recommend him.", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e6093d" + } + }, + { + "text": "I recommend him", + "pos": 0.556, + "neu": 0.444, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e6093e" + } + }, + { + "text": "Caring and understanding student situations", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e6093f" + } + }, + { + "text": "A lot of work but the professor helps greatly. Recommend to take it!!", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60940" + } + }, + { + "text": "I would Recommend him", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60941" + } + }, + { + "text": "Thumps up!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60942" + } + }, + { + "text": "do not, just do not. TRUST.", + "pos": 0.0, + "neu": 0.606, + "neg": 0.394, + "_id": { + "$oid": "6711d786cd60fca157e60943" + } + }, + { + "text": "Great professor - I recommend to take his courses", + "pos": 0.485, + "neu": 0.515, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60944" + } + }, + { + "text": "Great course - and easier to understand", + "pos": 0.58, + "neu": 0.42, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60945" + } + }, + { + "text": "Great professor - I recommend", + "pos": 0.688, + "neu": 0.312, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60946" + } + }, + { + "text": "One of the best professors that I had", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60947" + } + }, + { + "text": "Excellent professor!!!", + "pos": 0.821, + "neu": 0.179, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60948" + } + }, + { + "text": "A great professor - highly recommend", + "pos": 0.633, + "neu": 0.367, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60949" + } + }, + { + "text": "This Professor is useless. Cant teach at all, has a heavy accent, and doesnt seem to care", + "pos": 0.0, + "neu": 0.734, + "neg": 0.266, + "_id": { + "$oid": "6711d786cd60fca157e6094a" + } + }, + { + "text": "I would highly recommend this professor. You may not find a course on testing in NY area. The professor is an expert in the field. Grades are fairly given.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e6094b" + } + }, + { + "text": "Actually I found this professor to be one of the best and most caring. If someone tells you not take him, it is because they do not do the projects. The course is well curved and one has to really do nothing to fail this class", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e6094c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d786cd60fca157e6094e" + }, + "professor_name": "Alice Medvedev", + "rating": 1.9, + "department": "Mathematics department", + "comments": [ + { + "text": "Took her back in Fall 2019 Semester. She is horrendous. She is a tough grader when it comes to grading exams and always marks the answers of students wrong when the actual setup, calculation, and answers that students give are actually right. I would have gotten a B or an A. Reason I took her is because I got smitten by her beautiful long hair.", + "pos": 0.053, + "neu": 0.832, + "neg": 0.115, + "_id": { + "$oid": "6711d786cd60fca157e6094f" + } + }, + { + "text": "Prof. Medvedev is fine at teaching linear algebra. Nothing too special, but going to lectures does help piece things together between the text, webwork, and book problems. Has only returned 1 out of maybe 20 homework sets in the semester, and we still have not gotten those assignments back as of the day grades for the semester are due.", + "pos": 0.076, + "neu": 0.844, + "neg": 0.08, + "_id": { + "$oid": "6711d786cd60fca157e60950" + } + }, + { + "text": "When it comes to Calculus 2 professors, there are choices that are much easier than Medvedev. Unless you do all the work in class including assigned textbook problems, you'll be lost. You can make single-sided cheat sheet notes for test however, and it's not impossible to get an A with how she tries her best to get you partial points on a question.", + "pos": 0.096, + "neu": 0.795, + "neg": 0.11, + "_id": { + "$oid": "6711d786cd60fca157e60951" + } + }, + { + "text": "Alright, so I'm taking here currently for Calc 2 aka Math 212. For my class, she only uses 3 things for your grade. 1st the online hw on mymathlab worth 10 points. 2nd is the final worth 40 points. A little high but most math classes the final worth about 40 percent. Finally the exams she gives during class. She only gives you 2 exams 50 points.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60952" + } + }, + { + "text": "Amazing professor. She the most literal and complete question answer-er in the history of my education. The class determines direction, but Prof Medvedev makes sure it's as interesting as possible. Grading was an intelligence test, i.e. there were few specifics for study and tests were random. Best teacher for pure knowledge, grades, not so much.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d786cd60fca157e60953" + } + }, + { + "text": "She is horrible, just straight up horrible.", + "pos": 0.147, + "neu": 0.31, + "neg": 0.543, + "_id": { + "$oid": "6711d786cd60fca157e60954" + } + }, + { + "text": "I took Calc and usually I am a person who can comprehend math very well, but her method of teaching confused me and I had a tough time understanding her. It got to the point where I was better of teaching the subject myself than going to her class and listening to her for 2 hours.", + "pos": 0.089, + "neu": 0.835, + "neg": 0.076, + "_id": { + "$oid": "6711d786cd60fca157e60955" + } + }, + { + "text": "Alice is a BRILLIANT mathmatician and a god-awful teacher. Seriously, this woman can discover the secrets of the universe and not teach me the ABCs. Avoid at all costs, unless your already a math genius. Not to mention her grading is smiley faces and sad faces, no lie.", + "pos": 0.124, + "neu": 0.719, + "neg": 0.157, + "_id": { + "$oid": "6711d786cd60fca157e60956" + } + }, + { + "text": "Her exams are hard and tricky. She makes students do lots of homework and she is parsimonious in grading. Be careful people.", + "pos": 0.068, + "neu": 0.805, + "neg": 0.127, + "_id": { + "$oid": "6711d786cd60fca157e60957" + } + }, + { + "text": "Medvedev seems nice but is a terrible calc teacher. She spends every class doing proofs that are not on that tests. The tests by the way, are very difficult. She makes calc seem much more difficult and confusing than it is. I ended up skipping most classes and teaching myself from the book.", + "pos": 0.03, + "neu": 0.748, + "neg": 0.222, + "_id": { + "$oid": "6711d786cd60fca157e60958" + } + }, + { + "text": "She is the most horrible Prof in CCNY. Don't take her class at all. I have no idea what she teaches in class. Spending 1:40mins on one question which is not related to the chapter. The only hw is My Math Lab, and the recommend hw is not required. There is 3 tests in total, questions come out do not match what we learn from the book and in class.", + "pos": 0.033, + "neu": 0.887, + "neg": 0.079, + "_id": { + "$oid": "6711d786cd60fca157e60959" + } + }, + { + "text": "Prof. Medvedev was really great. Her class can be tough but you know that your learning. She doesnt lecture that much but if you have questions she will answer them. I ended up with a C but thats my fault. I would recommend taking her because youll learn a lot and it will make you a better mathematician.", + "pos": 0.145, + "neu": 0.784, + "neg": 0.071, + "_id": { + "$oid": "6711d786cd60fca157e6095a" + } + }, + { + "text": "On top of the course material being very dense and difficult to understand, she is a horrible professor. For 324, class is 1 hour 40 min. We would spend the entire class time going over one question that we WOULD NOT EVEN FINISH. She likes to do group work so you can meet your neighbors when she asks a question which the entire class doesnt know", + "pos": 0.063, + "neu": 0.851, + "neg": 0.086, + "_id": { + "$oid": "6711d786cd60fca157e6095b" + } + }, + { + "text": "Be Aware!!!! Especially if your are taking real analysis course (Math 323, 324), she would expect homework, readings from you. She is not organized when it comes to lecture, some lecture would be nothing but maybe solving one problems using entire class time, therefore, she will not introduce new chapters from book, but still assign homework.", + "pos": 0.0, + "neu": 0.881, + "neg": 0.119, + "_id": { + "$oid": "6711d786cd60fca157e6095c" + } + }, + { + "text": "Avoid this lady. She is unclear, unhelpful and will cause you to fail and fall behind. She once said, \"Its ok to fail\" when all the students failed her third test. I would honestly give her a 0 if it was an option. The only way you would pass is if you took calc before.", + "pos": 0.077, + "neu": 0.709, + "neg": 0.214, + "_id": { + "$oid": "6711d786cd60fca157e6095d" + } + }, + { + "text": "how many of you guys are engineering majors? this class will definitely make you reconsider your options. not a good professor avoid at all costs", + "pos": 0.092, + "neu": 0.751, + "neg": 0.157, + "_id": { + "$oid": "6711d786cd60fca157e6095e" + } + }, + { + "text": "Professor Medvedev is just one of those professors that you should try to avoid. Instead of actually providing some clarity on a question, she would go into the conceptual aspect of the question and make it more complicated. Her tests are tough, which she doesn't give much time for in the first place. AVOID.", + "pos": 0.046, + "neu": 0.843, + "neg": 0.112, + "_id": { + "$oid": "6711d786cd60fca157e6095f" + } + }, + { + "text": "This class is amazing. Take her to have fun. She will definitely teach you an important lesson about life. Life isn't fair.", + "pos": 0.38, + "neu": 0.556, + "neg": 0.064, + "_id": { + "$oid": "6711d786cd60fca157e60960" + } + }, + { + "text": "This class is jokes. No, all seriousness avoid it. For example she'll give you a question and quickly answer A, but will go into detail of how answer B and C are wrong. Then she tests you on answer D which she assumes you have gone over and makes it feel like its not trivial. Very literal in a very literal sense. SELF TAUGHT COURSE!!!!", + "pos": 0.08, + "neu": 0.81, + "neg": 0.11, + "_id": { + "$oid": "6711d786cd60fca157e60961" + } + }, + { + "text": "Avoid at all costs. Basically a self teaching class. She tells you to read the textbook and do webassign but doesn't teach at all. You ask to simplify a problem but complicates it further. Avoid her class.", + "pos": 0.0, + "neu": 0.81, + "neg": 0.19, + "_id": { + "$oid": "6711d786cd60fca157e60962" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d787cd60fca157e60964" + }, + "professor_name": "Margaret Rosario", + "rating": 2.4, + "department": "Psychology department", + "comments": [ + { + "text": "She does not care about anything you do for the whole semester. She doesn't care about participation, doesn't care about attendance and certainly doesn't care if you are learning or not. All you grade comes down to one paper which is graded the same for everyone and almost everyone ends up with the same grade. Rude and arrogant.", + "pos": 0.034, + "neu": 0.727, + "neg": 0.238, + "_id": { + "$oid": "6711d787cd60fca157e60965" + } + }, + { + "text": "It's definitely a tough class, so brace yourself. She's more than willing to answer questions so don't be afraid to speak. The exams are extremely difficult, but if you stay on top of everything, it'll be fine. The most important part of this class is to really pay attention. You must understand what you've learned in order to move forward.", + "pos": 0.133, + "neu": 0.79, + "neg": 0.077, + "_id": { + "$oid": "6711d787cd60fca157e60966" + } + }, + { + "text": "its a hard course but you have to work hard to get a good grade. i went to class knowing nothing about stat and by the end i knew all about it..prof. rosario is very clear and always willing to answer you questions. if you go on time and pay attention and read the book, you will be fine. she is very helpful and explains really well.", + "pos": 0.213, + "neu": 0.733, + "neg": 0.055, + "_id": { + "$oid": "6711d787cd60fca157e60967" + } + }, + { + "text": "I never understood her slant on things still managed to get an A-.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60968" + } + }, + { + "text": "Yes, she is tough as nails but she is MORE than willing to answer questions, clarify issues, and meet with you during office hours. She is a totally accessible resource. Her tests make her best students' head spin but you leave KNOWING that there is no statistical procedure you cannot somehow tackle. Good work ethic? You will get a good grade.", + "pos": 0.155, + "neu": 0.73, + "neg": 0.114, + "_id": { + "$oid": "6711d787cd60fca157e60969" + } + }, + { + "text": "She's a tough professor, but fair. Her test are tricky, and you need to work your butt off for a good grade. Will recommend her, only because she teaches theory and concepts well...you will remember them.", + "pos": 0.227, + "neu": 0.701, + "neg": 0.071, + "_id": { + "$oid": "6711d787cd60fca157e6096a" + } + }, + { + "text": "I am suprised to see negative comments about this professor. Rosario is the best stat professor I have had. She makes complex topics easy to understand through her accessible lecture style. The tests appropriately focus on students' understanding of main concepts. Maybe her stern (but appropriate and not al all mean) attitude turns some off.", + "pos": 0.077, + "neu": 0.883, + "neg": 0.04, + "_id": { + "$oid": "6711d787cd60fca157e6096b" + } + }, + { + "text": "Don't take her, she has problems and she was my nightmare.", + "pos": 0.0, + "neu": 0.787, + "neg": 0.213, + "_id": { + "$oid": "6711d787cd60fca157e6096c" + } + }, + { + "text": "She's the worst teacher I ever taken in my life. I work my butt off and still didn't do as good cause she doesn't know how to teach. I don't hate her but she just need to know that many people have worked hard and she's keeping them behind.", + "pos": 0.038, + "neu": 0.851, + "neg": 0.111, + "_id": { + "$oid": "6711d787cd60fca157e6096d" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d787cd60fca157e6096e" + } + }, + { + "text": "All of these negative comments are clearly posted by students who couldn't cut it in a necessarily difficult course and are unfairly blaming it on the teacher. Dr. Rosario is extremely clear, gives exellent lectures and excellent conceptually-based exams. True, she may not be super-nice in class, but that's not what I look for in a professor.", + "pos": 0.146, + "neu": 0.758, + "neg": 0.096, + "_id": { + "$oid": "6711d787cd60fca157e6096f" + } + }, + { + "text": "We are not here to be liked, nor to be cuddled. We are here to learn. Stop the whinning and take some responsibility. I worked my b-- off and I received a good grade as did others and I learned a lot. She is treats us all equally.", + "pos": 0.108, + "neu": 0.851, + "neg": 0.042, + "_id": { + "$oid": "6711d787cd60fca157e60970" + } + }, + { + "text": "This is the worst professor I have ever had, grad or undergrad. This class is difficult due to the material, but it is impossible because of Dr. R. I am good at math, and had no problem. But I was shocked at how poorly it was taught. And she is mean and nasty. She should really be fired. AVOID AT ALL COSTS. TAKE STATS ELSEWHERE.", + "pos": 0.079, + "neu": 0.667, + "neg": 0.255, + "_id": { + "$oid": "6711d787cd60fca157e60971" + } + }, + { + "text": "Has no ability to be humane with students. There is no point for a professor to know their subject matter, when they communicate it to students via fear/anxiety. I left this class traumatized and sitll have nightmares. How this school would allow this wicked woman to teach I do not know. AVOID!", + "pos": 0.088, + "neu": 0.731, + "neg": 0.181, + "_id": { + "$oid": "6711d787cd60fca157e60972" + } + }, + { + "text": "This woman is very clear in what she expects from you which is a good thing. But her exams are hard and she offers little help or none at all outside of the classroom. If you are going to take her go with a mentally strong head.", + "pos": 0.208, + "neu": 0.763, + "neg": 0.029, + "_id": { + "$oid": "6711d787cd60fca157e60973" + } + }, + { + "text": "Dont expect any breaks with this professor. She educates to help you become a professional. Toughest course to take in Psych, So come prepared. No repositions, no extra credit, and no crying please. Overall she cares but you have to carry your own weight. Also don't miss a class or a test.", + "pos": 0.171, + "neu": 0.726, + "neg": 0.103, + "_id": { + "$oid": "6711d787cd60fca157e60974" + } + }, + { + "text": "Take someone else unless you can read minds.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60975" + } + }, + { + "text": "She expects a lot from graduate students, and refers to study groups, rather than offering availiabillity outside the classroom. She's a tough cookie, but that's what we will also be dealing with, when moving on to doctorial programs, after this.You can't affort to miss any of her sessions.", + "pos": 0.034, + "neu": 0.94, + "neg": 0.026, + "_id": { + "$oid": "6711d787cd60fca157e60976" + } + }, + { + "text": "Totally agree with the comments from prior person's post...don't take her class........", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60977" + } + }, + { + "text": "she is the worst. never never take her. she does not care about the students. she thinks she knows about statistics but she does not", + "pos": 0.0, + "neu": 0.841, + "neg": 0.159, + "_id": { + "$oid": "6711d787cd60fca157e60978" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d787cd60fca157e6097a" + }, + "professor_name": "Nancy Haiduck", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "AS far as english professors, she is one of the best at CCNY! She is is caring her feedback is extremely useful. Take her and you will not regret it!!!", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e6097b" + } + }, + { + "text": "I loved this class! Do what you have to do and you will pass.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e6097c" + } + }, + { + "text": "One of the greatest professors in English! Honestly there is no way you can fail taking her class. She gives many \"papers\" to write and lets you submit late / resubmit for a better credit. She cares about ALL her students, makes sure she knows everyones names. When I say papers I mean short essays which turns into your final ethnography and done!", + "pos": 0.234, + "neu": 0.694, + "neg": 0.072, + "_id": { + "$oid": "6711d787cd60fca157e6097d" + } + }, + { + "text": "Professor Haiduck is one of my favorites at CCNY. She gives a fair amount of homework but its not overwhelming. Her class is actually kind of fun, I always leave in a good mood. She is very kind to everyone and gives really interesting lectures. Overall I think she's a great person and teacher!", + "pos": 0.358, + "neu": 0.624, + "neg": 0.018, + "_id": { + "$oid": "6711d787cd60fca157e6097e" + } + }, + { + "text": "Whole semester did one paper. It's a good class and definitely helps with writing. Also, she is very helpful with everything. She lets you re-write everything as much as you want and will give you extra time. Just take her, you won't regret.", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e6097f" + } + }, + { + "text": "She is a great professor, she lets your rewrite everything as many papers as you want. Their is a lot of writing for this class, so beware if you begin to fall back it can be hard to pick up the slack. She explains what she expects extremely clearly and IS FAR BETTER THAN ALL THE OTHER WRITING FOR SOCIAL SCIENCE TEACHERS TRUST ME.", + "pos": 0.213, + "neu": 0.769, + "neg": 0.019, + "_id": { + "$oid": "6711d787cd60fca157e60980" + } + }, + { + "text": "This is the most influential professor I've ever had. She pushes you to do the work and produce excellent results. I personally nominate her as the \"professor of the year\" for city college as she inspired all of us to be the best we can be.", + "pos": 0.254, + "neu": 0.746, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60981" + } + }, + { + "text": "Easy professor. She tends to ramble a little bit and sometimes is a little boring, but overall she is great. If you participate in class she'll like you even better. She remembers if your absent frequently so try not to be.", + "pos": 0.282, + "neu": 0.69, + "neg": 0.029, + "_id": { + "$oid": "6711d787cd60fca157e60982" + } + }, + { + "text": "Great professor. Truly cares for the success of her students. Very dedicated. Makes class very interesting. Gives interesting Anecdotes.", + "pos": 0.657, + "neu": 0.343, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60983" + } + }, + { + "text": "Amazing teacher. Truly cares about her students! She allows you write papers over as many times as you feel necessary, because she wants to grade you on your BEST work! Great class.", + "pos": 0.417, + "neu": 0.583, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60984" + } + }, + { + "text": "This professor's teaching style is superb. She gives you as many rewrites as you want. If you barely understand English, all that you need to show is that you tried hard and you will get a good grade. She is easy to reach, entertaining and very open-minded. Absolutely recommended.", + "pos": 0.293, + "neu": 0.684, + "neg": 0.023, + "_id": { + "$oid": "6711d787cd60fca157e60985" + } + }, + { + "text": "She is a great teacher!!", + "pos": 0.539, + "neu": 0.461, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60986" + } + }, + { + "text": "Great professor!!", + "pos": 0.824, + "neu": 0.176, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60987" + } + }, + { + "text": "good decent professor. would recommend her.", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60988" + } + }, + { + "text": "Writing-Social Sciences is a great class. This professor is mosly interested in making sure you gain something from the discussions and papers than on the grades. You are allowed to rewrite papers thus allowing you to get graded on ur best work. Absolutely loved her teaching style--highly recommend her!", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e60989" + } + }, + { + "text": "This writing course is like no other, the topics you write about are quite interesting and perhaps enjoyable. She allows rewrites which is awesome.If you can take her for Eng, you'd be very happy.", + "pos": 0.284, + "neu": 0.665, + "neg": 0.05, + "_id": { + "$oid": "6711d787cd60fca157e6098a" + } + }, + { + "text": "Easy A! The grades are based on attendance and essays. There will be 5 essays throughout the semester and you can submit them as many times as you want until you get A's in all your essays. Isn't that easy?", + "pos": 0.102, + "neu": 0.843, + "neg": 0.055, + "_id": { + "$oid": "6711d787cd60fca157e6098b" + } + }, + { + "text": "OVER TALLY if u can...straight A...just go to her office after class if u can't cope up..she is extremely helpful...the best english professor I ever had..", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e6098c" + } + }, + { + "text": "**I do not think that this teacher has an ethical way of teaching. She wants everyone to hand in a standard essay. She'll pick out an essay or two from the class and tell the class that this is the way everyones essay should be. If she does not like your particular style of writing, she will say \"NOT GOOD\" She is not encouraging. Not a good teache", + "pos": 0.083, + "neu": 0.787, + "neg": 0.13, + "_id": { + "$oid": "6711d787cd60fca157e6098d" + } + }, + { + "text": "Shw is a good prof. very helpful and fun.", + "pos": 0.614, + "neu": 0.386, + "neg": 0.0, + "_id": { + "$oid": "6711d787cd60fca157e6098e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d788cd60fca157e60990" + }, + "professor_name": "Regina Castro-Mcgowan", + "rating": 4.3, + "department": "Portuguese department", + "comments": [ + { + "text": "avoid her at all costs if you can. im not sure why theirs so many good reviews , she's treats her students unfair. Not everyone gets the same treatment and get ready to get humiliated if you aren't a Spanish speaker", + "pos": 0.113, + "neu": 0.695, + "neg": 0.192, + "_id": { + "$oid": "6711d788cd60fca157e60991" + } + }, + { + "text": "DO NOT TAKE THIS COURSE if you are not a Spanish speaker!! She will humiliate you in front of the whole class and expect you to pick up the material fast. Be ready to be treated horribly if you are a nonspanish speaker. Avoid this class at all costs it will destroy your gpa.", + "pos": 0.039, + "neu": 0.758, + "neg": 0.204, + "_id": { + "$oid": "6711d788cd60fca157e60992" + } + }, + { + "text": "she's mean and expects you to know everything. take another language class it's not worth it.", + "pos": 0.0, + "neu": 0.9, + "neg": 0.1, + "_id": { + "$oid": "6711d788cd60fca157e60993" + } + }, + { + "text": "Professors Castro-Mcgowan is wonderful. She is truly invested in your thoughts when it comes to the readings for each week. It is a lot of reading, so be prepared, but the books are fantastic. Captains of the Sands by Jorge Amado is easily one of my favorites now. You should participate every class and will not have an issue if you do the readings.", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e60994" + } + }, + { + "text": "She was a very chill professor, i had personal issues and she extended all assignments except the compositions so make sure you do all of that. At the end of the semester she opened all of assignments again. She was an understanding teacher and cares about your progress. You have to participate a lot, so keep that in mind.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e60995" + } + }, + { + "text": "There's no doubt that Dr. Regina loves teaching, cares about her students and knows what she's doing. I have taken her for 3 semesters already, and I am pursuing a minor in PORT because of her. She makes learning in general fun, easy and you'll definitely fall in love with the language. Fair grading, passionate, flexible and understanding!! <3", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e60996" + } + }, + { + "text": "I took Regina for 3 semesters of Portuguese, she is AMAZING!!!! I learned so much, she is very patient and cares for students. If you already know Spanish, you'll pick up Portuguese quickly. But if you do not, no worries because she makes learning a new language fun and easy. It's not hard at all to earn an A. Easily one of the best profs at CCNY!", + "pos": 0.287, + "neu": 0.685, + "neg": 0.029, + "_id": { + "$oid": "6711d788cd60fca157e60997" + } + }, + { + "text": "My first time taking Portugues as a foreign class at City College. The only thing i have to say that Dr. Regina is very caring, helpful and understanding. Shes also very patient with her students and she doesnt get frustrated with her students when they miss pronounce the words in Portuguese. She genuinely, takes her time with the students.", + "pos": 0.142, + "neu": 0.834, + "neg": 0.024, + "_id": { + "$oid": "6711d788cd60fca157e60998" + } + }, + { + "text": "She is honestly such a great professor and she doesn't penalize for incorrect pronunciations but helps you get the pronunciation correct. She is so helpful and really does want you to learn the language and she makes it really fun and sh'e very interactive. 5 stars isn't enough, I'd honestly give her a million. She's my favorite professor ever!", + "pos": 0.306, + "neu": 0.653, + "neg": 0.041, + "_id": { + "$oid": "6711d788cd60fca157e60999" + } + }, + { + "text": "This class was pretty fair. Follow all instructions and participate in class. Theres 5 essays but she explains everything clearly and takes you step by step till your final draft. Theres also 2 written lectures, make sure to do them at the beginning of the semester. 2 exams M/F. Overall great professor.", + "pos": 0.253, + "neu": 0.747, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e6099a" + } + }, + { + "text": "she is an amazing professor. i would have never thought that learning a new language would be this chill. take her bro", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e6099b" + } + }, + { + "text": "She is a really good professor if you're looking to learn a new language. Will definitely take the time to explain things thoroughly. She is great.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e6099c" + } + }, + { + "text": "This is easily the most enthusiastic and charismatic foreign language professor you will come across. She makes the course engaging by getting everyone to participate which helps students understand the course material. Despite speaking to the class in Portuguese 90% of the time, it doesn't take long for you to learn the language. Highly recommend!", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e6099d" + } + }, + { + "text": "Professor Castro is such a nice professor This class was super easy to me we read 3 books for the semester, and a mini quiz on each book. We also watch the movies for each book and compare which is fun and relaxing. Only a midterm and final paper 6 page midterm and 8 page final, not as hard as you think trust me. Essays on topic of choice.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e6099e" + } + }, + { + "text": "Amazing professor. I learned a lot about Brazil from her Brazilian Lit and film. Made me see the country in a whole new perspective. However, her assignments are fair. Just pay attention and you'll do fine. She is so sweet and very kind. She wants the best out of her student", + "pos": 0.302, + "neu": 0.676, + "neg": 0.022, + "_id": { + "$oid": "6711d788cd60fca157e6099f" + } + }, + { + "text": "She is very passionate about Brazil, which made the class more interesting. Very friendly and approachable. Grading: less difficult when compared to the professor teaching the other half of the course. Attendance was important because it was a film course, and the movies weren't online. Also, she will remember your face and participation.", + "pos": 0.196, + "neu": 0.769, + "neg": 0.035, + "_id": { + "$oid": "6711d788cd60fca157e609a0" + } + }, + { + "text": "Super nice teacher. She tremendously increased my interest in the subject. Super clear on expectations, there for you, respected by students. Not an easy A for she gives quizzes about her readings which are a total of 6 articles. In the Brazilian class we had fun watching the films, she used to help us analyze it. Amazing after all 3", + "pos": 0.382, + "neu": 0.589, + "neg": 0.029, + "_id": { + "$oid": "6711d788cd60fca157e609a1" + } + }, + { + "text": "She is an excellent Portuguese professor. She only speaks in portuguese but at such a low level that after 2 weeks you pretty much understand everything. If you really want to speak the language quickly and well, I recommend her.", + "pos": 0.283, + "neu": 0.665, + "neg": 0.052, + "_id": { + "$oid": "6711d788cd60fca157e609a2" + } + }, + { + "text": "Professor Castro McGowan is very helpful! Her class is neither difficult nor easy. Brazilian Lit. and Film is a two part class. She teaches the film part. Through films she teaches the history of Brazil, a beautiful country with various impact in society. She teaches and delivers the material clearly. You can always get her help outside of class.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609a3" + } + }, + { + "text": "I took McGowan for my Brazilian Lit and Film class. Amazing professor. She is strict and structured but she's fair and she's a lot of fun. The film choices I enjoyed a lot. She requires written responses for ea film and ea piece of lit that she assigns. Attendance and lateness is super important to her. Overall great and fair.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d788cd60fca157e609a6" + }, + "professor_name": "Alexander Gilerson", + "rating": 2.2, + "department": "Engineering department", + "comments": [ + { + "text": "Just don't take him", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609a7" + } + }, + { + "text": "One of the few times where I truly criticise the professor and not the course difficulty. The professor just copy and pasted the textbook onto the slides. He would just speed read the slides expecting you to understand.Theres no feedback on homework and exams were questions loosely based from the textbook problems. Just not a good professor, sorry.", + "pos": 0.073, + "neu": 0.756, + "neg": 0.171, + "_id": { + "$oid": "6711d788cd60fca157e609a8" + } + }, + { + "text": "Only reads off from powerpoint slides. Boring lectures. Testing boundary conditions on every exams. Must study on your own for good grades with extra hours outside the class.", + "pos": 0.093, + "neu": 0.833, + "neg": 0.074, + "_id": { + "$oid": "6711d788cd60fca157e609a9" + } + }, + { + "text": "This professor is both bad in teaching and research. I have experience with him in both. Seems sophomoric with fake confidence.", + "pos": 0.118, + "neu": 0.645, + "neg": 0.237, + "_id": { + "$oid": "6711d788cd60fca157e609aa" + } + }, + { + "text": "Terrible lazy professor. CCNY is becoming a joke.", + "pos": 0.172, + "neu": 0.391, + "neg": 0.437, + "_id": { + "$oid": "6711d788cd60fca157e609ab" + } + }, + { + "text": "His way of teaching is terrible, he uses powerpoint that he uploads and just goes over. When he's doing the problem, the answer is right on the screen and students say the answer and he just moves on. I just hate the fact he rarely uses the chalkboard and powerpoints everything. His exams are light though. USE YOUR CALCULATOR TO STORE FORMULAS!", + "pos": 0.0, + "neu": 0.858, + "neg": 0.142, + "_id": { + "$oid": "6711d788cd60fca157e609ac" + } + }, + { + "text": "Dry, uninspiring, boring professor. Reads off PowerPoint and repeats homework questions in exams.", + "pos": 0.0, + "neu": 0.839, + "neg": 0.161, + "_id": { + "$oid": "6711d788cd60fca157e609ad" + } + }, + { + "text": "Not an expert on the subject", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609ae" + } + }, + { + "text": "I took him for Electromagnetics. Hundreds of FORMULAS !!! One negative thing is that you will need to learn the material on your own. He just reads the slides. Positive things are that every exam +10-15 points curve, at least for me. Exams are easy, straightforward questions from assigned HW just different numbers. Besides everything is online.", + "pos": 0.113, + "neu": 0.83, + "neg": 0.057, + "_id": { + "$oid": "6711d788cd60fca157e609af" + } + }, + { + "text": "Bad professor", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d788cd60fca157e609b0" + } + }, + { + "text": "Stay away", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609b1" + } + }, + { + "text": "I cant believe this guy is a professor", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609b2" + } + }, + { + "text": "He's very good at teaching the material. When it comes to his exams however, he will not give you very little partial credit or none at all. If you're taking him make sure you're confident and study the material very thoroughly.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609b3" + } + }, + { + "text": "It seems that some people like him, I personally didn't like the easiness of the class. As someone else mentioned, if you are electrical engineering major - skip him", + "pos": 0.076, + "neu": 0.793, + "neg": 0.131, + "_id": { + "$oid": "6711d788cd60fca157e609b4" + } + }, + { + "text": "He is much better than other 204 Professors. Believe me!! He taught us Phasors, an easy tool to analyze AC circuits. Whereas many of friends (from different sections) didnt even knew its basics.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609b5" + } + }, + { + "text": "For Electrical Circuits, he is probably the best out there. He gives good hw questions which actually repeat in quizzes and Homeworks. if you're are actually doing the hws yourself it shouldn't be difficult to get an A. Bit of advice: Do better than the average and, go over the PowerPoints before the class.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609b6" + } + }, + { + "text": "One of the worst professors I have ever encountered. Stay away at all cost.", + "pos": 0.0, + "neu": 0.76, + "neg": 0.24, + "_id": { + "$oid": "6711d788cd60fca157e609b7" + } + }, + { + "text": "Cant teach, cant answer your questions, cant understand the meaning of partial credit, cant make proper slides and cant put up the right solutions to hw questions.", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609b8" + } + }, + { + "text": "Eh. He's dry. He's very nice and helpful, but the class is boring. Know your math.", + "pos": 0.204, + "neu": 0.649, + "neg": 0.147, + "_id": { + "$oid": "6711d788cd60fca157e609b9" + } + }, + { + "text": "electrical engineering major? take someone else", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d788cd60fca157e609ba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d789cd60fca157e609bc" + }, + "professor_name": "James Biles", + "rating": 4, + "department": "International Studies department", + "comments": [ + { + "text": "I loved his class and his charisma. He is very passionate and such a great person overall. I love his assignments and he is very understanding to all his students. Do the readings! He will ask you about them! He his honestly one of the best teachers at CCNY.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609bd" + } + }, + { + "text": "This course has four small assignments, two evaluations, and five quizzes. Professor Biles is not a harsh grader. Be ready to research global south countries for the PowerPoint small assignments about globalization and development.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609be" + } + }, + { + "text": "I was hesitant to take this professor due to the reviews. However, he is awesome. I had him early in the morning, he's super energetic and engaging with the entire class. Sure, he may say some \"provocative\" things but he means no harm and caters to all his students. Don't hesitate to take any course with him, he's amazing!", + "pos": 0.297, + "neu": 0.682, + "neg": 0.02, + "_id": { + "$oid": "6711d789cd60fca157e609bf" + } + }, + { + "text": "This professor makes uncomfortable and insensitive comments about students. If you disagree with him, you'll better have a thick skin. He can be really rude. Class is very interesting but his teaching style is horrible.", + "pos": 0.09, + "neu": 0.638, + "neg": 0.272, + "_id": { + "$oid": "6711d789cd60fca157e609c0" + } + }, + { + "text": "Professor Biles is goofy and laid back. He does not have boring lectures, they're really interesting. He is a fair grader. He assigns take-home quizzes which is pretty nice. When we converted to online classes because of the pandemic, he was very flexible and willing to work with us so that we can succeed in his class.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609c1" + } + }, + { + "text": "Very knowledgeable but very insulting. He would just make super inappropriate comments for the sake of being \"provocative.\" They were completely unnecessary and made all of us uncomfortable. The assignments were also confusing, incoherent and never graded on time, yet we would always receive criticism.", + "pos": 0.09, + "neu": 0.67, + "neg": 0.24, + "_id": { + "$oid": "6711d789cd60fca157e609c2" + } + }, + { + "text": "Great Professor! I still use his suggested textbooks -- to question current situations. Thank you professors Biles!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609c3" + } + }, + { + "text": "Extremely inappropriate professor. Constantly made insensitive comments about his students and anyone who disagrees with him. His teaching method consist of him complaining about anything he thinks is wrong 98% of the time. Gave no feedback on any of the 3 essays and 4 tests, bragged about students doing poorly on the first day. A total nightmare.", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d789cd60fca157e609c4" + } + }, + { + "text": "He is great at knowing his stuff but his personality and teaching style is horrible. Does not give back assignts. and tests. will grade harshly will not prepare you enough to study. VERY defensive and rude when speaking to him and his jokes are insensitive. He does not care about students, the entire class was going to complain to the department.", + "pos": 0.097, + "neu": 0.663, + "neg": 0.24, + "_id": { + "$oid": "6711d789cd60fca157e609c5" + } + }, + { + "text": "C grades even if you study with the review sheet, no feedback to your essays, you can miss classes, eccentric personality, would not recommend", + "pos": 0.0, + "neu": 0.78, + "neg": 0.22, + "_id": { + "$oid": "6711d789cd60fca157e609c6" + } + }, + { + "text": "if you are lucky youll have a class with him. he is the best professor in the department in my opinion. very clear in lectures and gives study guides for exams. youll o great if you do the papers and pass the exams. hes a tough but fair grader. very inspitatinal. prof. biles ftw", + "pos": 0.248, + "neu": 0.732, + "neg": 0.019, + "_id": { + "$oid": "6711d789cd60fca157e609c7" + } + }, + { + "text": "He likes to make fun of you. Other than that, he is very knowledgable and helpful.. but can be tough.", + "pos": 0.255, + "neu": 0.671, + "neg": 0.073, + "_id": { + "$oid": "6711d789cd60fca157e609c8" + } + }, + { + "text": "Prof. Biles is really one of the best professors in CCNY. Like the others mentioned, his class is not an easy A but you will learn so much from him. He understands his material and will help you out during his office hours... that's a plus for me.", + "pos": 0.147, + "neu": 0.821, + "neg": 0.032, + "_id": { + "$oid": "6711d789cd60fca157e609c9" + } + }, + { + "text": "Prof. Biles definitely one of the best professors in CCNY. He is well informed about the current events and modern concepts. Great Professor to take if you want to really understand social science terms.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609ca" + } + }, + { + "text": "Biles is an excellent professor and a great asset to the International Studies Program at CCNY. His class changed my perspective on so may things and helped me understand so much. Be willing to work hard and be open to learning. He is very helpful and willing to assist with any questions during his office hours.", + "pos": 0.204, + "neu": 0.775, + "neg": 0.021, + "_id": { + "$oid": "6711d789cd60fca157e609cb" + } + }, + { + "text": "Amazing professor! I was new to the IS major but being in his class helped clarify so much. He is a fair professor--he expects you to do the work. He gives a lot of information though during class so be prepared to take tons of notes!", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609cc" + } + }, + { + "text": "This man has a wealth of knowledge. He is very chill, smart and overall a very good professor. However, anyone who says his class is easy is utterly insane. I learned a lot in his class, got a good grade, yet simultaneously never worked so hard in a class in my life. If you want to learn take him. If you want an easy A, take Tai Chi.", + "pos": 0.247, + "neu": 0.694, + "neg": 0.058, + "_id": { + "$oid": "6711d789cd60fca157e609cd" + } + }, + { + "text": "Love Prof. Biles. He knows his material. Very important to read the textbook material. He is also very helpful, defenely go to his office hours", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609ce" + } + }, + { + "text": "Biles is consistent and energetic. He expects his students to perform well- you better be on time and he frowns upon late assignments. The test were take home and from the books. If you do your reading, come to class and take notes you'll be fine.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609cf" + } + }, + { + "text": "Professor Biles is really cool. Yet, he is a Mexocentric person. He believes Mexico is the ultimate nation of the world. Although he is white, he speaks English with a Mexican accent. He is an excellent geographer who knows what he is doing and is very helpful.", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d789cd60fca157e609d2" + }, + "professor_name": "Patricia Kenyon", + "rating": 4.1, + "department": "Physics department", + "comments": [ + { + "text": "She is patient, caring and experienced in teaching. She can address individual need of students and is accessible to ask for help.", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609d3" + } + }, + { + "text": "Great professor. She goes beyond the textbook and teaches a large quantity of material, none of which is beyond the scope of a 100 level class. She's very friendly and puts up great reviews for the exams.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609d4" + } + }, + { + "text": "Had Engr 106 with her, class was combined with EAS students, so she dumbed down the class a whole lot. She is very clear, you don't need the textbook. Very nice, not much of a sense of humor, 3 exams, 1 final no exams dropped. Exams get much harder, and final is similar to 3 exams. This class is a lot of notes, so be prepared to study", + "pos": 0.133, + "neu": 0.804, + "neg": 0.063, + "_id": { + "$oid": "6711d789cd60fca157e609d5" + } + }, + { + "text": "3 Exams- 1 dropped, 1 Final. 60% tests, 40% lab. Her exams get harder as time progresses, although I personally found the second unit the hardest. The material is interesting but her lectures are somewhat boring. Overall, this class does not require an overt amount of effort. Just pay attention in class, take notes, and study the review sheets.", + "pos": 0.03, + "neu": 0.904, + "neg": 0.066, + "_id": { + "$oid": "6711d789cd60fca157e609d6" + } + }, + { + "text": "she gives review sheets for her 3 exams. study the review sheets thoroughly. she also give review class but not during class hours. her class notes are brief so you must also read the textbook. ITS A LOT OF STUDYING!!!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609d7" + } + }, + { + "text": "she is a very nice professor but her class is very boring. you must attend class to take notes because majority of her exam questions are from the notes and some from the textbook. 3 exams (lowest drop) but they are hard even though its 50 multiple choice. 3 homework assignments and a cumulative final. for an elective class, it's hard....", + "pos": 0.029, + "neu": 0.789, + "neg": 0.181, + "_id": { + "$oid": "6711d789cd60fca157e609d8" + } + }, + { + "text": "She gets a bad rap from 106, since it's basic info she has to teach often. But have her for a higher level course and she is amazing!! Very nice, very informative, and always makes sure you understand. Give super detailed notes and review sheets, and really takes her time to help everyone. A+++++!!!!", + "pos": 0.308, + "neu": 0.661, + "neg": 0.031, + "_id": { + "$oid": "6711d789cd60fca157e609d9" + } + }, + { + "text": "Boring. 3 T & final. 1st test easy, 2nd harder, 3rd hardest. Advice would be to skip the 3rd test b/c u can miss a test & then when she posts correct answers outside her door for all exams, take pic and just study them. Final, 100 quest but they are the same questions from all 3 Ts. So if u take pic of correct answers from 3Ts you should get a 100", + "pos": 0.026, + "neu": 0.935, + "neg": 0.039, + "_id": { + "$oid": "6711d789cd60fca157e609da" + } + }, + { + "text": "I've heard alot of other students complain that she is too boring, but if you're looking for a professor that gives you the information you need clearly and concisely, she is perfect. She is older than most other professors, and doesn't joke around alot, but she has a great amount of experience in her field and I found her lectures very enjoyable.", + "pos": 0.234, + "neu": 0.694, + "neg": 0.072, + "_id": { + "$oid": "6711d789cd60fca157e609db" + } + }, + { + "text": "Great professor! She is very helpful & always makes sure everyone understands the material. She can be snappy at times; just don't get on her bad side. She provides detailed review sheets for exams so you don't even need the book. But study carefully b/c she takes off points for small mistakes. Other than that, no complaints about her =)", + "pos": 0.212, + "neu": 0.713, + "neg": 0.075, + "_id": { + "$oid": "6711d789cd60fca157e609dc" + } + }, + { + "text": "Nice prof. Hard grader. Lot of work. Lot of studying. Not easy course. multiple choice question exams are confusing and very tricky. no papers to boost the grade. class participation doesn't count. homework doesn't count.", + "pos": 0.126, + "neu": 0.643, + "neg": 0.231, + "_id": { + "$oid": "6711d789cd60fca157e609dd" + } + }, + { + "text": "Highest level of boring. Her voice is VERY monotone. The beginning of the semester, the lec. room is packed. By the end everyone is sneaking out after signing in. 3 tests and 1 final. 1 of the tests is dropped. Final is mandatory. Review sheet for each exam. You HAVE to have the text. Overall a fair class. Just be prepared to leave or fall asleep.", + "pos": 0.079, + "neu": 0.871, + "neg": 0.05, + "_id": { + "$oid": "6711d789cd60fca157e609de" + } + }, + { + "text": "She is a very serious prof who truly wants her students to do the best they can do. Her exams are fair, straight-forward but a bit challenging. She is a very helpful if you go to her during her office hours. Overall a good prof though very monotone and lackluster. Btw, 93 in the course equals A or 4.0", + "pos": 0.232, + "neu": 0.749, + "neg": 0.019, + "_id": { + "$oid": "6711d789cd60fca157e609df" + } + }, + { + "text": "She is a great professor and she does help students whe they need help. However my main concern is that when I went to her office she told me her family problems=this resulted in her being absent=bunching materials up, and when reviwing her notes sometimes she says1thing the books says the next. People says she's boring, only if you're in the back! I think I leanred alot", + "pos": 0.13, + "neu": 0.839, + "neg": 0.031, + "_id": { + "$oid": "6711d789cd60fca157e609e0" + } + }, + { + "text": "She is really nice and easy. She make sure everyone understand everything. Her exam is really easy, she gives review sheet.. just study that and for sure you can aim an A. Her class notes are really important and her leature too. her test is base on those two things. she also gives review class. take her", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609e1" + } + }, + { + "text": "Ok this is a pretty boring class. Her voice during the lecture has made me fall asleep more than a few times. On the other hand, she is very interested in teaching. She makes sure you understand everything before going on. She also has good review classes and the exams are RELATIVELY easy. I would recommend her", + "pos": 0.306, + "neu": 0.662, + "neg": 0.032, + "_id": { + "$oid": "6711d789cd60fca157e609e2" + } + }, + { + "text": "Good Professor. Really get the sense she enjoys teaching and interacting with students. Keep up with reading and homeworks ! She gives reviews before each exam and final. Do your work and you'll be fine.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609e3" + } + }, + { + "text": "She's boring, but I'm still passing. Class rocks when she shows off the slides.", + "pos": 0.0, + "neu": 0.887, + "neg": 0.113, + "_id": { + "$oid": "6711d789cd60fca157e609e4" + } + }, + { + "text": "A proffessor with a great personality. Come to the lectures with something interesting to say related to the material, she's impressed by that sort of thing. otherwise, just study the review sheets thoroughly. It's easy to slip up in that class because of how easy it is though.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d789cd60fca157e609e5" + } + }, + { + "text": "her class is pretty easy. there's only three exam, the lowest grade is dropped. there's also a final which includes all the material but she gives review sheets and holds a review class before each exam.just know all the stuff on the review sheet, you should do good.", + "pos": 0.147, + "neu": 0.819, + "neg": 0.034, + "_id": { + "$oid": "6711d789cd60fca157e609e6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78acd60fca157e609e8" + }, + "professor_name": "Maggie Whitten", + "rating": 4.5, + "department": "Anthropology department", + "comments": [ + { + "text": "Love this class. The professor is very clear about what she wants. She even gives you office hours to help you write the essays. Quizzes were online and were given a week to complete. If you fail, it is on you. Personally, this class strengthened my writing skills.", + "pos": 0.213, + "neu": 0.728, + "neg": 0.059, + "_id": { + "$oid": "6711d78acd60fca157e609e9" + } + }, + { + "text": "she is a tough grader and her quizzes takes you the whole day it's a lot of reading and she is obsessed with limited words on papers", + "pos": 0.0, + "neu": 0.825, + "neg": 0.175, + "_id": { + "$oid": "6711d78acd60fca157e609ea" + } + }, + { + "text": "Really hard grader. For a 101 class there is a lot of work. Too many quizzes.", + "pos": 0.0, + "neu": 0.899, + "neg": 0.101, + "_id": { + "$oid": "6711d78acd60fca157e609eb" + } + }, + { + "text": "Her class was really interesting. She's very enthusiastic so you can enjoy the class. She gives papers about 1-2 pages, gives you the questions to answer too. Quiz is every week and it's based on the book so you really must have it. Lets you make up for participation if you don't speak in class.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609ec" + } + }, + { + "text": "She is very nice, pretty, bubbly, and funny at certain times. After I took this class in the summer, she change my ideology of anthropology. Personally it a lot of reading in this class but the reading are very interesting. Best adjunct professor I ever took.", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609ed" + } + }, + { + "text": "Nice Professor! I learned a lot in her class as you are required to read the textbook for writing short essays. You have to write only 3 short essays for the entire semester and she is a very easy grader..Overall I enjoyed taking her class and she is extremely sweet!", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609ee" + } + }, + { + "text": "Maggie is awesome! She is really fun and engages the students to learn her material. She really cares for her students and their needs. All of her assignments are open book and they are due on blackboard. No final. As long as you do your part, you will get a good grade. TAKE HER CLASS! YOU WILL NOT REGRET IT!", + "pos": 0.265, + "neu": 0.706, + "neg": 0.029, + "_id": { + "$oid": "6711d78acd60fca157e609ef" + } + }, + { + "text": "She is a very helpful professor but you are required to do a lot of reading. She is also very attractive.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609f0" + } + }, + { + "text": "Nice professor.. An easy A, if u study and pay attentions to quizzes. No final :)", + "pos": 0.25, + "neu": 0.483, + "neg": 0.267, + "_id": { + "$oid": "6711d78acd60fca157e609f1" + } + }, + { + "text": "Maggie is the sweetest & most organized and detail oriented professor I have ever come across. Not only did it shock me that she was a grad student, but the amount of information she can deliver and her level of enthusiasm was pretty great compared to other professors. I thoroughly enjoyed her class. Make sure you do the reading & you'll be fine!", + "pos": 0.295, + "neu": 0.683, + "neg": 0.022, + "_id": { + "$oid": "6711d78acd60fca157e609f2" + } + }, + { + "text": "Very interesting class, she's very helpful explains what is expected. Reviews for papers are very helpful. great class.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609f3" + } + }, + { + "text": "very good teacher. She is willing to help you in any way and willing to see you before and after class. Make sure to do the readings!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609f4" + } + }, + { + "text": "I took this class & Anth of Reproduction..and I will take any other course she teaches. She is by far the most amazing teacher I have ever had. She has faith in her students and gives them the tools to think for themselves. Lots of reading but you grow as a result, since she hand selects each one for a specific purpose. TAKE HER!It will change you!", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609f5" + } + }, + { + "text": "GET HER!!!! NO IF, BUTs, OR MAYBE.... SHE IS FRIENDLY, FUNNY, INTELLIGENT, HELPFUL, AND CARES ABOUT HER STUDENTS ...AKA... THE BEST PROFESSOR EVER!!! BELIEVE ME, I HAVE BEEN THROUGH A LOT THIS PAST SPRING SEMESTER AND SHE HAS BEEN VERY UNDERSTANDING AND HELPFUL (THANK VERY MUCH, MAGGIE, GOD BLESS YOU!) SO YEAH, GET HER! (DO THE READING!) :D", + "pos": 0.498, + "neu": 0.471, + "neg": 0.031, + "_id": { + "$oid": "6711d78acd60fca157e609f6" + } + }, + { + "text": "One thing I really like about her is she is very helpful. If you need some help or if you didn't understand a particular topic that you discussed in class, you can always approach her. She is very considerate and you can tell that she's smart and very witty! Just do all the readings and pass your papers on time and she'll give you a high grade.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609f7" + } + }, + { + "text": "One of the best professors I've ever had! she is very nice and helpful! She really tries to get her students to learn. She has 2 papers all semester that aren't to difficult just don't procrastinate! Read every day or at least skim and understand the material! Highly recommended!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609f8" + } + }, + { + "text": "Good prof - good lecturer. Easy if you just do the reading.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609f9" + } + }, + { + "text": "One, if not the only anthro prof/instructor here at ccny that knows how to teach!!!!! not very easy grader but still super great! shes clear and makes sure u understand! sure beats the hell out of all other anthro professors at ccny!! others are ok but not as clear and concise as Prof Whitten! she makes class so interesting!!!", + "pos": 0.326, + "neu": 0.551, + "neg": 0.123, + "_id": { + "$oid": "6711d78acd60fca157e609fa" + } + }, + { + "text": "Great instructor! She may just be a grad student, but she is clearer, more passionate, funnier and more available to her students than most professors I've had. She handled the rowdy, slacking class like a pro and made sure we all learned the material fully. Definitely as asset to CCNY's mediocre ANTH dept. I would take any course she teaches!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e609fb" + } + }, + { + "text": "awesome!!!! she is fun, funny and clear! she loves to hear from you and answers questions in a very clear and concise way! she makes the class interesting. however, if you are not going to go to class every day, dont take her! shes serious about attendance! shes awesome tho", + "pos": 0.394, + "neu": 0.588, + "neg": 0.019, + "_id": { + "$oid": "6711d78acd60fca157e609fc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78acd60fca157e609fe" + }, + "professor_name": "Amedee des Georges", + "rating": 2.9, + "department": "Chemistry department", + "comments": [ + { + "text": "Professor is really sweet. He is great at teaching the materials and this class is an eye-opener. The midterm can be challenging but he will curve the exam. He grades the quizzes generously giving half the credit just for attending. For the final paper, even if you are lost, don't worry. He helps you narrow down to a specific problem to work on.", + "pos": 0.237, + "neu": 0.65, + "neg": 0.114, + "_id": { + "$oid": "6711d78acd60fca157e609ff" + } + }, + { + "text": "His lectures are very basic. I basically learnt from ALEKS .He curves the exams. The midterms were hard but to me, the final was not so hard. As a person, he is good and always tries to give you partial credit.", + "pos": 0.194, + "neu": 0.78, + "neg": 0.025, + "_id": { + "$oid": "6711d78acd60fca157e60a00" + } + }, + { + "text": "Has very hard finals But curves when needed", + "pos": 0.0, + "neu": 0.839, + "neg": 0.161, + "_id": { + "$oid": "6711d78acd60fca157e60a01" + } + }, + { + "text": "He's great, just pay attention and be a proactive student. I was struggling in his class, but after attending office hours and trying my hardest, I got a great grade. He dropped my lowest exam which helped my grade tremendously last year.", + "pos": 0.192, + "neu": 0.684, + "neg": 0.124, + "_id": { + "$oid": "6711d78acd60fca157e60a02" + } + }, + { + "text": "I personally learned little to nothing from his lectures, it was a self taught effort. However, his exams were not difficult, neither was the final. You just have to kind of guide yourself, and teach yourself along the way. He does curve well, homework helps, and so does recitation. Keep up with class, ask questions, visit tutoring, and study.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e60a03" + } + }, + { + "text": "His accent isn't even bad. He gives three exams and will drop the lowest. If he thinks the class deserves a curve he will curve. He responds quick to emails and is very caring. He will extend hw due dates if necessary or enough students asked. He is overall great and a noce person. I passed with a good grade thinking I was going to do bad. Take him", + "pos": 0.179, + "neu": 0.724, + "neg": 0.097, + "_id": { + "$oid": "6711d78acd60fca157e60a04" + } + }, + { + "text": "Didn't do too well on his exams as well as the final, however, I ended up getting a good grade! I thought for sure I was going to just pass or just fail. He gives three exams and will drop the lowest exams. If he is feeling nice, which he is, he will curve the exams which helped a lot! He responds to emails quick and is willing to extend due dates.", + "pos": 0.162, + "neu": 0.722, + "neg": 0.117, + "_id": { + "$oid": "6711d78acd60fca157e60a05" + } + }, + { + "text": "Yes he has an accent but he is not impossible to understand. Sit in the front, ask questions, participate and you should do fine. If you still don't get it go to tutoring. He gives connect hw that is v similar to his exams. Exams are fair. He makes himself super available during and outside of office hours. You gotta make the effort to pass.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e60a06" + } + }, + { + "text": "Yes he has an accent but it is not impossible to understand. Go to class, sit in the front so that you are able to ask questions and participate. He gives connect hw before the exam which is v similar to the exam itself. He makes himself super available to meet for extra help during and outside of office hours. U have to make the effort to pass.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e60a07" + } + }, + { + "text": "He has an accent which makes it hard to understand what he is saying. As well as that he only assigns reading HW which is not helpful at all as his exams are mostly questions you need to solve. I retook chem with another professor and got a B+. If you care about your GPA at all stay away from amedee.", + "pos": 0.106, + "neu": 0.838, + "neg": 0.056, + "_id": { + "$oid": "6711d78acd60fca157e60a08" + } + }, + { + "text": "I learned by myself through textbook and videos. He curved every exam, too. He was soo nice, but honestly, the only way to Ace this class is to read and practice, practice, practice. His exams were not difficult, either. He is also available for office hours. (He really was a sweetheart.) I definitely put this class as a priority, though. Take him.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e60a09" + } + }, + { + "text": "If he teaches CHEM 104, I would in a heartbeat, take his class. His curve is dramatic and I love it. I rated him 4 stars because really, I learned from the textbook more than him. I had a bunch of first-time professors and all of them really can't teach, and the same goes for Professor Georges.", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e60a0a" + } + }, + { + "text": "Yeah people say he can not teach but it is his first time teaching so he is still learning. He is very nice and caring. It is a little hard for him to explain things because he is French but its not that bad. If you read the textbook and practice you will do well in his class. And he curves.", + "pos": 0.231, + "neu": 0.753, + "neg": 0.016, + "_id": { + "$oid": "6711d78acd60fca157e60a0b" + } + }, + { + "text": "You should not depend on a professor to teach you everything. Read the book and watch videos and do practice. His exams were not impossible. I aced all exams and one gets dropped anyway. So don't study the chapters night before! The people who complain are those who do not study. He curved all his exams, he's so nice and has office hours.", + "pos": 0.058, + "neu": 0.905, + "neg": 0.037, + "_id": { + "$oid": "6711d78acd60fca157e60a0c" + } + }, + { + "text": "Won't recommend for Chem 103. He's really hard to understand. Most of the students don't even bother to go to his class. -Very Vague. -Didn't learn anything from his class.", + "pos": 0.061, + "neu": 0.775, + "neg": 0.164, + "_id": { + "$oid": "6711d78acd60fca157e60a0d" + } + }, + { + "text": "Won't recommend for those taking Chemistry for the first time.", + "pos": 0.0, + "neu": 0.81, + "neg": 0.19, + "_id": { + "$oid": "6711d78acd60fca157e60a0e" + } + }, + { + "text": "he is really bad u will learn nothing in his class you have to be really good at chem in order to do well but if u r someone who needs a teacher or someone to explain things then that is not the right prof for u his exams r really hard he doesn't give review materials or if he does its absolutely different and has nothing to do w/ the exam", + "pos": 0.048, + "neu": 0.894, + "neg": 0.058, + "_id": { + "$oid": "6711d78acd60fca157e60a0f" + } + }, + { + "text": "Hes really hard to understand with his heavy accent. Very monotone and can't explain concept or problems well. My main issue is that He's is so vague as to what will be on the exam. He doesn't give practice exams or review sheets. He just tells us to do the problems off the textbook which most won't even be on the exam.", + "pos": 0.031, + "neu": 0.838, + "neg": 0.132, + "_id": { + "$oid": "6711d78acd60fca157e60a10" + } + }, + { + "text": "One of the better professors for CHEM 104.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d78acd60fca157e60a11" + } + }, + { + "text": "His tests are very fair and he gives very generous reference sheets. His accent makes him a bit hard to understand at times, but overall he's a good professor.", + "pos": 0.233, + "neu": 0.732, + "neg": 0.035, + "_id": { + "$oid": "6711d78acd60fca157e60a12" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78bcd60fca157e60a14" + }, + "professor_name": "Susannah Fritton", + "rating": 4.7, + "department": "Biomedical department", + "comments": [ + { + "text": "It was fun and I learned a lot from this class.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a15" + } + }, + { + "text": "Prof. Fritton shouldn't be anything less than a 5 on here. She's simply the very best of the best. Don't expect her classes to be a walk in the park. She'll always be on time and prepared to teach, so you should always be on time and be prepared to learn. Don't slack off, do the work she says, and you'll be fine :) oh and 12/10 for her jokes.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a16" + } + }, + { + "text": "Even if I had gotten a C, I would give her a 5 because she handled the online class his semester like a Bawse (Boss). She's a real gem. Not only in class but also gives great suggestions outside class. I wish every single professor cared about their students like her. My favorite xoxoxo", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a17" + } + }, + { + "text": "I would give her a 100000000 out of 5 if I could. She's the fairest professor in all of CCNY and the grade breakdown is very transparent unlike some other professors in the department (real shade & tea). She isn't called the Mom of the department for no reason.", + "pos": 0.0, + "neu": 0.956, + "neg": 0.044, + "_id": { + "$oid": "6711d78bcd60fca157e60a18" + } + }, + { + "text": "Professor Firtton is the best professor in the world. She is really we organized, and make a very hard class simple and fun to take. She really care about the student. She is the gold standard that each professor should learn from. I was lucky to take her 2 semesters in a raw. all can say is thank you thank you thank you", + "pos": 0.273, + "neu": 0.705, + "neg": 0.022, + "_id": { + "$oid": "6711d78bcd60fca157e60a19" + } + }, + { + "text": "Prof. Fritton is AMAZING!!! I have never in my life come across such an organized and well-prepared professor like her. The class was so much fun, a lot of work too, but everything was spread out so well. She should run the whole Biomedical Engineering Department I think because she's just that good. Best professor ever!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a1a" + } + }, + { + "text": "This course was very challenging. SHE WAS GREAT! She gives 3 short exams (30 mins), one midterm, one final, and a semester long group project (presentation and poster), which she constantly makes you update and improve with her. She gives great feedback and focuses highly on mechanics. Study her lecture notes and her feedback and you well do well.", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a1b" + } + }, + { + "text": "Truly a great professor!! Very organized and really cares about her students. Learned a lot from this class (made biostats fun!). Just do what she assigns and you'll be good. Weekly quizzes will keep you on track. Also, don't be late!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a1c" + } + }, + { + "text": "She is very picky about what she wants you to do. A LOT of homework, you won't lose track on what you're doing in class because they are quizzes every week. Make sure to do well on the project. Be loud and clear during presentation. The book isn't really necessary, got an A without touching it. For the final, prepare to read long texts.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a1d" + } + }, + { + "text": "Prof. Fritton is the best! I thoroughly enjoyed going to her Biostatistics class and I learned a lot from her. She truly cares about her students and always gave good feedback on all assignments that were given to us. Make sure you study for the weekly quizzes. The homework, though tedious, helped you understand the material! Hope I have her again!", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a1e" + } + }, + { + "text": "Review the slides to ace the quizzes, keep up with the group project even when there aren't deadlines, study for the test, do the homework, get an A. Also she's really nice and takes time to give feedback on the report draft (So do a good job!) Doesn't ask too much of anyone, tries to engage her audience (Tough to do with statistics sometimes).", + "pos": 0.124, + "neu": 0.855, + "neg": 0.021, + "_id": { + "$oid": "6711d78bcd60fca157e60a1f" + } + }, + { + "text": "Had the honor of taking 2 classes with this woman. She is just awesome. Cares so much about her students! Quizzes, HW, project, midterm and final. Quizzes come from readings and lecture. HW is challenging but interesting. Midterm and final are very fair. Just focus and you'll do great! Count your blessings if you have her. Just amazing.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a20" + } + }, + { + "text": "She is an amazing professor! Make sure to all the work (homework, quizzes, and project) and you'll get an A. Loved how she spaced out the quizzes to be every week, and you had to just remember what you learned for that week for the quizzes.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a21" + } + }, + { + "text": "Prof Fritton is just great. All of her quizzes are from the slides so study them and you should get a 10/10 for all of them. The homework is not hard but a little tedious and the final project is pretty fun if you have good partners. The midterm is easy and the final is a little more analytical so know all of your statistical tests -->A", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a22" + } + }, + { + "text": "Only this prof can make statistics fun. She really cares about the students and dedicates her time to clsss. Study slides and you'll get an A. For group presentation be sure to have hardworking members.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a23" + } + }, + { + "text": "She won the 2008 Grove School of Engineer Teacher of the Year Award. She is a really nice professor. Cares so much for the students. Allows extra credit. Listens to the students. Gives multiple opportunities to succeed. She makes class fun by saying cute things. She promotes group work. Midterm is very easy, final is harder. Easy A.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a24" + } + }, + { + "text": "The best professor there is, hands down! If you received a poor grade in her class, you must have worked hard to do so poorly!", + "pos": 0.134, + "neu": 0.703, + "neg": 0.163, + "_id": { + "$oid": "6711d78bcd60fca157e60a25" + } + }, + { + "text": "Prof. Fritton is nice but does not really care about your grade.", + "pos": 0.121, + "neu": 0.638, + "neg": 0.24, + "_id": { + "$oid": "6711d78bcd60fca157e60a26" + } + }, + { + "text": "What a wonderful lady. Why can't people be more like her. If you want to learn and get a awesome grade take her. A+++ teacher. You will love the class and the material. Keep up the good work professor.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a27" + } + }, + { + "text": "Real easy... study the slides religiously and you got it... the test are not even challenging... the class passes by so quick you dont even feel it...", + "pos": 0.099, + "neu": 0.852, + "neg": 0.049, + "_id": { + "$oid": "6711d78bcd60fca157e60a28" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78bcd60fca157e60a2a" + }, + "professor_name": "Christian Wolf", + "rating": 3.5, + "department": "Mathematics department", + "comments": [ + { + "text": "Unorganized and doesn't use a textbook. One of the worse Prof. at CCNY. This guy should be fired.", + "pos": 0.0, + "neu": 0.705, + "neg": 0.295, + "_id": { + "$oid": "6711d78bcd60fca157e60a2b" + } + }, + { + "text": "Great lectures, the course isnt easy, but if you spend at least 2 hours a day on the course you will be able to get an A.", + "pos": 0.087, + "neu": 0.855, + "neg": 0.058, + "_id": { + "$oid": "6711d78bcd60fca157e60a2c" + } + }, + { + "text": "Prof. Wolf is a great guy and caring professor. He's old-school in that you MUST take accurate notes of each class, and missing class can lead to confusion. That being said, the material is always very clearly presented and super-interesting. Learn your Greek/Latin alphabets beforehand: psi, c, z, etc sound similar with Prof's slight German accent!", + "pos": 0.16, + "neu": 0.773, + "neg": 0.067, + "_id": { + "$oid": "6711d78bcd60fca157e60a2d" + } + }, + { + "text": "Please do yourself a favor, don't take choose professor if you really want to learn calculus. His handwriting is the worst. I had to study myself since I barely understood his lecture (still managed an A+). Although, he is a light grader. He will give you full credit if your answer was close. Tests and Exams are very easy if you know the materials", + "pos": 0.166, + "neu": 0.779, + "neg": 0.055, + "_id": { + "$oid": "6711d78bcd60fca157e60a2e" + } + }, + { + "text": "Professor Wolf is very passionate about math and his students. Although he assigns somewhat difficult problems, he goes over them in class and does similar questions. Likes to lighten the mood with personal anecdotes. He doesn't take attendance but going to lecture and office hours is a big plus.", + "pos": 0.081, + "neu": 0.856, + "neg": 0.063, + "_id": { + "$oid": "6711d78bcd60fca157e60a2f" + } + }, + { + "text": "Professor Wolf is a wonderful teacher with lots of experience. He loves math and wants all his students to be passionate about math too. Occasionally, he gives funny life stories that cheer up the class. For the exams, make sure you attend the review sessions as he will likely include very similar problems on the actual test. Definitely recommend!", + "pos": 0.316, + "neu": 0.645, + "neg": 0.038, + "_id": { + "$oid": "6711d78bcd60fca157e60a30" + } + }, + { + "text": "Tough as anything, but if you want to do well, he WILL help you.... attending office hours is a big plus.", + "pos": 0.295, + "neu": 0.656, + "neg": 0.048, + "_id": { + "$oid": "6711d78bcd60fca157e60a31" + } + }, + { + "text": "He's a nice guy but he doesnt know how to teach undergraduates. Expects us to be on a graduate level.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a32" + } + }, + { + "text": "Great guy. Always willing to help. But the course if difficult.", + "pos": 0.281, + "neu": 0.511, + "neg": 0.208, + "_id": { + "$oid": "6711d78bcd60fca157e60a33" + } + }, + { + "text": "According to Prof. Wolf he taught this class as if it were given in an Ivy League, which translates into a very difficult course. That being said you will learn a whole lot! Exams are fair and taken from or are similar to HW and sample exams. This course is odd as it is mostly independent study but it is a skill I am thankful to have learned.", + "pos": 0.094, + "neu": 0.859, + "neg": 0.048, + "_id": { + "$oid": "6711d78bcd60fca157e60a34" + } + }, + { + "text": "He piques on students. He does not like to help. He never explains. Really,rough. I never encourage any student to take Advanced Calcus with ,unless they are very smart. Please, take Advanced Calculus with other Professor.", + "pos": 0.21, + "neu": 0.635, + "neg": 0.155, + "_id": { + "$oid": "6711d78bcd60fca157e60a35" + } + }, + { + "text": "Make sure you read the text. Lectures are confusing and lack focus. Definitely better than Pignataro. The best approach is to view this as independent study. Good Luck.", + "pos": 0.427, + "neu": 0.474, + "neg": 0.1, + "_id": { + "$oid": "6711d78bcd60fca157e60a36" + } + }, + { + "text": "This course is kinda confusing at first with everyone. But if you put a little effort in it, you will do well. He is not a cruel person at all, not trying to fail everyone but requires you to understand. So get ready to study!", + "pos": 0.26, + "neu": 0.717, + "neg": 0.023, + "_id": { + "$oid": "6711d78bcd60fca157e60a37" + } + }, + { + "text": "This class requires work and is not easy but if you do the homework and take good notes it's not so bad. Prof. Wolf makes himself available for office hours and is helpful when you don't understand something. His knowledge of math is beyond extensive...", + "pos": 0.225, + "neu": 0.744, + "neg": 0.031, + "_id": { + "$oid": "6711d78bcd60fca157e60a38" + } + }, + { + "text": "He can not teach! He may be a very nice guy but his lectures are the worst ever. Avoid if you can!", + "pos": 0.068, + "neu": 0.632, + "neg": 0.3, + "_id": { + "$oid": "6711d78bcd60fca157e60a39" + } + }, + { + "text": "This course was very difficult but not insurmountable. Dr. Wolf tried to be helpful, but he did not succeed. The nicest guy in the world, but he cannot teach. Bottom line. Goes to show that extensive knowledge of a specific content area does not guarantee the ability to teach.", + "pos": 0.062, + "neu": 0.716, + "neg": 0.222, + "_id": { + "$oid": "6711d78bcd60fca157e60a3a" + } + }, + { + "text": "Good guy, great personality, very approachable. He prepares for class more than any other professor I've seen. And he shows great concern for his students. Gives good notes, grades fair, and gives fair exams. He gave an oral exam for the final in my class, a graduate math class. Great professor overall. Highly recommended.", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d78bcd60fca157e60a3b" + } + }, + { + "text": "Before exams he drops hints about what questions will be on the exam. PAY ATTENTION TO THE HINTS! I learned this the hard way.", + "pos": 0.0, + "neu": 0.852, + "neg": 0.148, + "_id": { + "$oid": "6711d78bcd60fca157e60a3c" + } + }, + { + "text": "Very nice guy and always willing to answer your questions. Bit of a hard grader though. His notes are super important so never miss a class bc he sometimes simplifies theorems/definitions in the book. Gives review sheets prior to exam.", + "pos": 0.224, + "neu": 0.746, + "neg": 0.03, + "_id": { + "$oid": "6711d78bcd60fca157e60a3d" + } + }, + { + "text": "He has a big smile and is always inviting students to come to office hours. But his lectures are really hard to follow. He states the theorems and put the proofs on the board, without any explanations. He always says that he's not following the textbook, but really he does. I don't know why he claims that he doesn't.", + "pos": 0.055, + "neu": 0.911, + "neg": 0.033, + "_id": { + "$oid": "6711d78bcd60fca157e60a3e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78ccd60fca157e60a40" + }, + "professor_name": "Mark Mirsky", + "rating": 3.2, + "department": "English department", + "comments": [ + { + "text": "Too much reading if you take more than one class. Will shame students in class and in responses distributed among the class. Never actually answers questions - just goes on a spiel of personal anecdotes. No discourse whatsoever, just him preaching. Is unclear and moves the goal posts on final assignments. Dismissive, rude, narcissistic. Avoid him.", + "pos": 0.0, + "neu": 0.803, + "neg": 0.197, + "_id": { + "$oid": "6711d78ccd60fca157e60a41" + } + }, + { + "text": "His advance fiction class is more of a non-fiction style, which not many people are comfortable doing. He does give good critiques to kinda improve.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a42" + } + }, + { + "text": "A grad student in 1971. I am now 70 to his 81. He taught me how to be a writer!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a43" + } + }, + { + "text": "Professor Mirsky is an excellent judge of what works in a story. He is well read, and frequently brings up texts relating to issues in class. He welcomes debate, and recommends that students read his work to see whether they can trust his judgment. He requires sixty pages of prose, and critiques of other students' work. He will push you to improve.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a44" + } + }, + { + "text": "Hands down, the only good reason to study at CCNY. Don't let the weaklings scare you...they just didn't write and got nothing in return. Writing is a contact sport; if you can't take a few bruises you'll never score. Mirsky treats his students like adults...that scares the chickens.", + "pos": 0.133, + "neu": 0.767, + "neg": 0.1, + "_id": { + "$oid": "6711d78ccd60fca157e60a45" + } + }, + { + "text": "Prof. Mirsky's criticism and encouragement strike a balance than any writer will appreciate. His Red Adam should be required reading on every writing course, everywhere for its brilliant conciseness and style. CCNY is blessed with its diversity and handling the resultant chaos of myriad literary cultures is Mirsky's forte. Tinceir Naisiunta", + "pos": 0.202, + "neu": 0.674, + "neg": 0.124, + "_id": { + "$oid": "6711d78ccd60fca157e60a46" + } + }, + { + "text": "Amazing prof, if you're willing to put in the time necessary to get to know him. If you work hard, he'll have valuable things to teach you. He's an honest critic, but if he sees even a spark of something in your writing, he will do whatever he can to help you. Take some of his advice and you WILL become a better, more serious writer.", + "pos": 0.21, + "neu": 0.731, + "neg": 0.059, + "_id": { + "$oid": "6711d78ccd60fca157e60a47" + } + }, + { + "text": "I can understand the previous comments, but writing is a tough business, it's hard not to take criticisms personally, but after taking him, I can confidently say that I am a better writer, no other teacher will invest so much, if you try, he will help you, as someone said in the previous comment, he will be your champion for the rest your career.", + "pos": 0.233, + "neu": 0.691, + "neg": 0.076, + "_id": { + "$oid": "6711d78ccd60fca157e60a48" + } + }, + { + "text": "One of three professors in the English department worth a damn. Although he is the most open-minded professor of the lot, he sure is the only one willing to sacrifice his health and social life for his students. Just write. If you're complaining about 35 pages, go find another vocation or course of study--YOU ARE NOT A WRITER.", + "pos": 0.067, + "neu": 0.861, + "neg": 0.072, + "_id": { + "$oid": "6711d78ccd60fca157e60a49" + } + }, + { + "text": "I don't understand where all these negative comments are coming from. He cares and will invest as much time as needed in a story. He has you submit a 35 pages in total (not a lot really) and you get a good grade. He wants your stories in his workshop, not for him to be teaching you stories. It's a class that runs itself based on what's submitted.", + "pos": 0.079, + "neu": 0.871, + "neg": 0.05, + "_id": { + "$oid": "6711d78ccd60fca157e60a4a" + } + }, + { + "text": "Nothing to add to the previous critiques of this sad, smarmy child-left-behind of his generation, except YOU'VE BEEN WARNED.", + "pos": 0.0, + "neu": 0.725, + "neg": 0.275, + "_id": { + "$oid": "6711d78ccd60fca157e60a4b" + } + }, + { + "text": "Worked us like dogs. Never discussed assigned work. Tore people down. Never offered pos. criticism. Stubborn, self-absorbed, insecure, unreasonable. Wants student praise constantly. If you care about your GPA and growing as a writer avoid his class at all costs. He believes a prof. should test a gifted student by running them into the ground.", + "pos": 0.197, + "neu": 0.69, + "neg": 0.113, + "_id": { + "$oid": "6711d78ccd60fca157e60a4c" + } + }, + { + "text": "He is an extremely honest Professor, who wants the best from his students.He truly cares.Prepared to work hard and have your writing pushed beyond the cliches and the easy. He takes quite a bit of time out either via e-mail or office hours to really get to know you and your work; prepares you for the kinds of critiques that MA programs give out.", + "pos": 0.184, + "neu": 0.797, + "neg": 0.019, + "_id": { + "$oid": "6711d78ccd60fca157e60a4d" + } + }, + { + "text": "Deeply annoying as a professor. Inherently **** and unprofessional as a dept chair. Fundamentally self-obsessed. Write about sex or prepare for ridicule and dismissive jibes. Prompted me to switch majors. Irredeemable--and he's proud of it.", + "pos": 0.071, + "neu": 0.714, + "neg": 0.214, + "_id": { + "$oid": "6711d78ccd60fca157e60a4e" + } + }, + { + "text": "After many great fiction workshops at a previous school, I had high hopes. Mirsky came recommended, but unless you write about sex or being Jewish in Boston, he's a hard sell. He's a good writer and often an interesting guy, but his workshops are disorganized and not very useful. Perhaps 15% of students feel they benefit from his teaching.", + "pos": 0.23, + "neu": 0.666, + "neg": 0.104, + "_id": { + "$oid": "6711d78ccd60fca157e60a4f" + } + }, + { + "text": "A truly awful teacher. Spends up to half of every class with inappropriate, witless and tastless personal anecdotes--none of which will help your writing. Especially offensive to women. A rather sad old man, the Cowardly Lion in tweed. A must to avoid.", + "pos": 0.102, + "neu": 0.639, + "neg": 0.259, + "_id": { + "$oid": "6711d78ccd60fca157e60a50" + } + }, + { + "text": "He'll ask for more of your time than any other teacher you've ever had, but in return he'll give you more time than any other teacher has given. Seriously. He wants you to flatter him--if you remain adamant about not doing so, he might write you off; if you DO flatter him, he'll be your advocate for the rest of your time at City, if not for life.", + "pos": 0.046, + "neu": 0.925, + "neg": 0.029, + "_id": { + "$oid": "6711d78ccd60fca157e60a51" + } + }, + { + "text": "He will seem extremely difficult if you're not willing to put in the effort. Yes he'll work you but that's what it's all about. He put me through the wringer, tearing a story of mine apart before finally giving me an A. I recommend him to those willing to work really hard to get their A.", + "pos": 0.13, + "neu": 0.808, + "neg": 0.062, + "_id": { + "$oid": "6711d78ccd60fca157e60a52" + } + }, + { + "text": "He loved to talk about himself for the first forty minutes or so. Critical without being helpful. Has his own ideas about you and what you should write about. Very judgemental. Several of us from the class would meet in the hall to discuss how much we disliked the class. He needs a lot of prayer.", + "pos": 0.062, + "neu": 0.822, + "neg": 0.116, + "_id": { + "$oid": "6711d78ccd60fca157e60a53" + } + }, + { + "text": "Professor Mirsky is an excellent teacher of creative writing who cares deeply about his students' work and their success.", + "pos": 0.47, + "neu": 0.53, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a54" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78ccd60fca157e60a56" + }, + "professor_name": "Michel Anshel", + "rating": 3.6, + "department": "Computer Science department", + "comments": [ + { + "text": "He comes to class unprepared. He hardly covers 2 chapters. You don't learn anything from him about security. The grading is based on a project that can be the same for a group of students that copied from each other. He encourages plagiarism and provides an existing project for inspiration that can be copied exactly /photocopied. He's a fraud.", + "pos": 0.129, + "neu": 0.815, + "neg": 0.056, + "_id": { + "$oid": "6711d78ccd60fca157e60a57" + } + }, + { + "text": "Prof. Anshel treats undergraduate students like graduate students. He will not pamper the student through the course, but expects the student to do the work and to apply his/her creativity to take Artificial Intelligence to the next level of technological progress and a paradigm shift in thinking.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a58" + } + }, + { + "text": "I LOVE HIM. Very kind & understanding, You will get an 'A' or 'B' you will never fail.", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a59" + } + }, + { + "text": "Prof Anshel is extremely knowledgeable in the field of computer science probably one of the best professors in the city university he is always available for questions. I highly recommend this professor.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a5a" + } + }, + { + "text": "Well, I think the last person who wrote the review knows exactly 0", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a5b" + } + }, + { + "text": "If you want to learn about computer security ... DON'T TAKE THIS COURSE. The Prof. is old and out of date. If you want to kick back and get 'A', then in this case be my guest. I wouldn't recommend it, take Wolberg instead", + "pos": 0.106, + "neu": 0.849, + "neg": 0.045, + "_id": { + "$oid": "6711d78ccd60fca157e60a5c" + } + }, + { + "text": "Well, Prof Anshel is the best prof at City Colege, possibly at CUNY, because he ACTUALLY CARES, unlike the majority of \"teachers\"", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a5d" + } + }, + { + "text": "If you want to know the history about this prof., tale this course. this is the only thing you can learn in this course. You never know the standard of the grade. You may get B or A- even though you study very hard and do everything he ask you to do. You may find you classmate have done onthing but got A or A+. This is prof. Anchel", + "pos": 0.017, + "neu": 0.964, + "neg": 0.019, + "_id": { + "$oid": "6711d78ccd60fca157e60a5e" + } + }, + { + "text": "Took his class and got \"A\".", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a5f" + } + }, + { + "text": "Anshel is the best. He lets u learn on ur own and I don't see any problem with that. So what if he doesn't share all of his knowledge with Students, the point is that u get to learn what u need to know and throw the rest away. For all those students who don't want to be stressed out with too much learning, Anshel is ur man.", + "pos": 0.086, + "neu": 0.84, + "neg": 0.073, + "_id": { + "$oid": "6711d78ccd60fca157e60a60" + } + }, + { + "text": "This professor is and angel sent from Heaven", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a61" + } + }, + { + "text": "Professor anshel saves the students lives.Lets face the fact . do you really learn in city college?the professors here are crazy. they graduate from columbia or some ivy college and gives us F grades .i see students busting there asses to get a d or c grade. on the other hand most of the students cheat and get an A grade.so all even if you study yo", + "pos": 0.044, + "neu": 0.882, + "neg": 0.074, + "_id": { + "$oid": "6711d78ccd60fca157e60a62" + } + }, + { + "text": "This is the most careless proffessor I have taken. He may have a lot of knowledge but he does not care to pass it on to his students. No real way to be graded (his way of grading is based on how well he can remember and pronouce your name As or Bs). If you wnat to learn something DO NOT TAKE HIM", + "pos": 0.038, + "neu": 0.845, + "neg": 0.117, + "_id": { + "$oid": "6711d78ccd60fca157e60a63" + } + }, + { + "text": "Prof Anshel is an outstanding professor, and the kindest person at CUNY. He has helped many, many students in his career at CCNY and the Graduate Center. You learn how to study in Graduate School.This is not a remedial math course.", + "pos": 0.091, + "neu": 0.909, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a64" + } + }, + { + "text": "This prof doesn't teach at all. He would be a nice guy to listen to in a bar with all his knowledge and competence, but he doesn't give it to us students. Doesn't have exams either, the worst you get with the new grade system is A-, without learning at all.", + "pos": 0.034, + "neu": 0.866, + "neg": 0.1, + "_id": { + "$oid": "6711d78ccd60fca157e60a65" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d78ccd60fca157e60a66" + } + }, + { + "text": "he doesn't teach but fools around.u learn nothing,waste time,if that's what u want & a B,go 4 it. i findthe class gd as a place to relax. my friend didn't do final assgnmnt on 1 of his classes but got A! i pay tuition to learn,not to talk **** nonsense", + "pos": 0.213, + "neu": 0.704, + "neg": 0.082, + "_id": { + "$oid": "6711d78ccd60fca157e60a67" + } + }, + { + "text": "This guy does not teach at all. Tell stories of his life and buddies. You are guaranteed either a B or an A.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a68" + } + }, + { + "text": "Good Professor.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d78ccd60fca157e60a69" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d78ccd60fca157e60a6a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78dcd60fca157e60a6c" + }, + "professor_name": "Janet Kyle", + "rating": 4.8, + "department": "Political Science department", + "comments": [ + { + "text": "I learned so much from this class that I will definitely use in my career. Super worth taking, but she will work you. Very, very strict guidelines about attendance, lateness, submitting assignments, etc. You will have homework for this class every week, and it will be extensive. You'll lament how much class this work is, but be glad you took it.", + "pos": 0.14, + "neu": 0.803, + "neg": 0.057, + "_id": { + "$oid": "6711d78dcd60fca157e60a6d" + } + }, + { + "text": "Kyle expects a lot but she does this because she cares for her students! She assigns many readings and a few papers but they are all relevant if you have hopes of teaching. She provides extensive feedback on all assignments. She is strict with being on time to class and with assignments, so be ready. You will learn a lot about inclusive education.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a6e" + } + }, + { + "text": "Professor Kyle is a great teacher. She is very organized and clear about what she wants. Be prepared to read, ALOT. Do not be late or absent. Participate, it weighs heavily on your grade. She is strict and she wastes no class time. All assignments are due at 11:59 the day before class, at 12:00pm it's late and an automatic 0. You will learn a lot.", + "pos": 0.121, + "neu": 0.849, + "neg": 0.03, + "_id": { + "$oid": "6711d78dcd60fca157e60a6f" + } + }, + { + "text": "Class was structured and objectives were clear. Lectures were engaging and HW assignments force you to think critically. The tests are short but require real studying. Expect to read a lot every week, you will work till the very end. The final was a case study consisting of everything we learned. If you do the work you will learn valuable skills.", + "pos": 0.117, + "neu": 0.883, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a70" + } + }, + { + "text": "She works you. But at least you know what to expect. She is clear and fair.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a71" + } + }, + { + "text": "Don't miss any classes, It's almost impossible to make up your grade even if you're betting 90's on everything. She should decrease the weight of 1 missed class. Also do not use phones, or laptops definitely leave it turned off or at home even better. She is great on feedback and responds to emails within seconds almost. Great class, learned a lot", + "pos": 0.204, + "neu": 0.75, + "neg": 0.046, + "_id": { + "$oid": "6711d78dcd60fca157e60a72" + } + }, + { + "text": "HR management guru! learned valuable and practical skills that I'll use in my career. She's clear, concise and straightforward and expects the same from students. She is time-driven, so don't be late! or you'll fail-lol just kidding. She is tough, but a fair grader-- she wants you to learn and expand your thinking.", + "pos": 0.193, + "neu": 0.786, + "neg": 0.021, + "_id": { + "$oid": "6711d78dcd60fca157e60a73" + } + }, + { + "text": "One of the best classes I have ever taken! Learned so much about management through the use of many different theories and practices. Don't be late, absent, or quiet, it will cost you! Totally worth it though!", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a74" + } + }, + { + "text": "You will gain practical skills and experience in this course! You will learn how to align an organization's mission and values with the employee lifecycle, manage employee performance, and much more! Although it is a challenge, if you read all of the assigned readings (many gems/awesome text) and engage in classroom discussions, you will do well!", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a75" + } + }, + { + "text": "She is an awesome professor.", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a76" + } + }, + { + "text": "Professor give good feedbacks and the feedbacks make me rethink my work; She has her rules and fair to everyone. She did hard in the course and request the student do the same.", + "pos": 0.142, + "neu": 0.82, + "neg": 0.038, + "_id": { + "$oid": "6711d78dcd60fca157e60a77" + } + }, + { + "text": "This professor is clear on what she expects. She is no easy A. Expect to put in a lot of work, but you will learn a great deal which applies to your personal and professional life. She constantly gives you feedback and takes the time to explain things to her students. Her lectures are well done and she is always available via email. Take her class.", + "pos": 0.137, + "neu": 0.84, + "neg": 0.023, + "_id": { + "$oid": "6711d78dcd60fca157e60a78" + } + }, + { + "text": "She is very time oriented, no late assignments, no excuses. Homework assignments are each and every week which is very tough, but she gives a very good feedback on homework, reply to an email shortly, class lectures are good. If you want to be a future manager this class is for you. It's very hatd to get an A. 94+ is an A i guess which you can't ge", + "pos": 0.124, + "neu": 0.815, + "neg": 0.061, + "_id": { + "$oid": "6711d78dcd60fca157e60a79" + } + }, + { + "text": "I would take it again and had a clear grading criteria. She is very tough on attendance. I only lost five points all semester but I was in the class just wasn't seated. I really like the culture and atmosphere she created. A fun and learning environment where you were encouraged to voice your opinion and share your perspective.", + "pos": 0.255, + "neu": 0.703, + "neg": 0.042, + "_id": { + "$oid": "6711d78dcd60fca157e60a7a" + } + }, + { + "text": "Fantastic class, super practical. I've been a manager for 2 months and have already used about 80% of what we learned in Kyle's class!", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a7b" + } + }, + { + "text": "She is tough but her class is essential when you want to work in human resource.", + "pos": 0.087, + "neu": 0.838, + "neg": 0.075, + "_id": { + "$oid": "6711d78dcd60fca157e60a7c" + } + }, + { + "text": "If you want to learn very useful tools about HR, this is the class for you. Don't forget to listen to her, that's where you learn from her experiences. The Harvard business school cases are great simulations of what you could face when you enter the work force. \"Employees don't leave their jobs, they leave their Managers\"", + "pos": 0.179, + "neu": 0.802, + "neg": 0.019, + "_id": { + "$oid": "6711d78dcd60fca157e60a7d" + } + }, + { + "text": "Prof Kyle is tough but", + "pos": 0.0, + "neu": 0.762, + "neg": 0.238, + "_id": { + "$oid": "6711d78dcd60fca157e60a7e" + } + }, + { + "text": "One of the most professional and pleasant experiences I have had in a classroom. Janet takes you through a look at HR from different vantage points as she leverages onto years of corporate environment experience. Rigid and regimented in her teaching but there is truth in the end justifying the mean - I learned much more than I imagined from Janet.", + "pos": 0.081, + "neu": 0.899, + "neg": 0.019, + "_id": { + "$oid": "6711d78dcd60fca157e60a7f" + } + }, + { + "text": "A very broad background which Professor Kyle brings to class and shares freely. Her real life examples bring it all to life. Do the work and participate!", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a80" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78dcd60fca157e60a82" + }, + "professor_name": "Gabriel Dugue", + "rating": 3.8, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "taking his class was the biggest mistake of my college career!", + "pos": 0.0, + "neu": 0.788, + "neg": 0.212, + "_id": { + "$oid": "6711d78dcd60fca157e60a83" + } + }, + { + "text": "Mr Dugue is a great teacher, knowledgeable, great speaker, serious, funny, caring. With him, you may rewrite compositions as many times as you want and redo presentations, retake oral assessment for better grade. He offers his students all opportunities to pass with an A.", + "pos": 0.361, + "neu": 0.616, + "neg": 0.022, + "_id": { + "$oid": "6711d78dcd60fca157e60a84" + } + }, + { + "text": "Grading system doesn't exist. He grades based who he likes. He's really strict about attendance and cell phones. He gives a lot of work and doesn't have an answer for how he grades it.", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a85" + } + }, + { + "text": "This guy is hilarious. He is a little intimidating at first with very specific rules like having good posture. He is extremely strict on phones, attendance and participation. He takes care of the people who try.", + "pos": 0.256, + "neu": 0.686, + "neg": 0.058, + "_id": { + "$oid": "6711d78dcd60fca157e60a86" + } + }, + { + "text": "Take him! He is beyond funny. He makes the course fun and enjoyable. As long as you do the work, you will do great!", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a87" + } + }, + { + "text": "Very good teacher, lucky to take his class", + "pos": 0.51, + "neu": 0.49, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a88" + } + }, + { + "text": "This guy is a comedian. You are sure to have a good laugh every single class, like him", + "pos": 0.517, + "neu": 0.483, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a89" + } + }, + { + "text": "He is a good one, I highly recommend him. He teaches well, you just have what you have to do and you '' be fine", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a8a" + } + }, + { + "text": "The first class, you feel like you have been there for years. With mr Dugue's each class, you are sure to have a good laugh along with learning something. He's so the best.", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a8b" + } + }, + { + "text": "this guy is so funny! n a vey good teacher", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a8c" + } + }, + { + "text": "Mr Dugue is a great teacher, very friendly, helpful and caring. He's very serious yet his class is fun. He loves his job and his students.", + "pos": 0.503, + "neu": 0.458, + "neg": 0.038, + "_id": { + "$oid": "6711d78dcd60fca157e60a8d" + } + }, + { + "text": "Prof. Dugue is a master in his field. If you're really interested in learning, take his class. He's strict on attendance, he assigns much work, but he also allows you to rewrite for higher grades.", + "pos": 0.055, + "neu": 0.945, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a8e" + } + }, + { + "text": "Mr Dugue is an excellent professor. I took him, I would take him again. I recommend him without reserve.Only a bad and frustrated student failing his class would say bad things about him.", + "pos": 0.196, + "neu": 0.584, + "neg": 0.221, + "_id": { + "$oid": "6711d78dcd60fca157e60a8f" + } + }, + { + "text": "A good teacher, take him. Sure you'll be satisfied", + "pos": 0.571, + "neu": 0.429, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a90" + } + }, + { + "text": "He's a great teacher. He's mean but fair. With him, teaching goes together with fun. You just have to follow his intructions and do what he asks you to do and you'll be fine", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a91" + } + }, + { + "text": "If you're planning on just winging the class and not doing anything like most people do in 101 you're in for a surprise. You actually need to study. Harsh grader but allows hw re-writes and is very lenient on oral exams. Take his attendance policy SERIOUSLY. Most students don't & complain about him failing them although he stated it from the beg.", + "pos": 0.1, + "neu": 0.749, + "neg": 0.151, + "_id": { + "$oid": "6711d78dcd60fca157e60a92" + } + }, + { + "text": "He is sometimes unclear and annoying,but overall he is an easy professor as long as u follow his instuctions.few homework assignments and lab work.u can hand in rewrites until u get an A.first exam is the hardest,the other two are easy. he gave extra credits that move your grade one letter up.dont make fun of him in class and attendance=A", + "pos": 0.209, + "neu": 0.763, + "neg": 0.028, + "_id": { + "$oid": "6711d78dcd60fca157e60a93" + } + }, + { + "text": "I have taken French for Nine years and I am currently in his class to brush up on my skills. I have had incredible teachers in the past and expected this one to be less than that. It was just that. He says one thing than does another. Quite possibly the most absurd teacher i've ever had. He lies frequently about assignments. Do NOT take his class.", + "pos": 0.0, + "neu": 0.959, + "neg": 0.041, + "_id": { + "$oid": "6711d78dcd60fca157e60a94" + } + }, + { + "text": "He is probably the best kind of professor if you are truly trying to learn a different language. Its a very difficult class because he makes it challenging, but I promise you its worth it. I took 1 month summer session, and I learn more in 1 month than I did 3 years in high school. I can actually have conversations in french. in one month!!", + "pos": 0.159, + "neu": 0.815, + "neg": 0.026, + "_id": { + "$oid": "6711d78dcd60fca157e60a95" + } + }, + { + "text": "I took his class and dropped it after a few classes. He starts speaking in French immediately and refuses to give you the translations. If you don't have the homework, you cannot enter the class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78dcd60fca157e60a96" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78ecd60fca157e60a98" + }, + "professor_name": "Yang Kim", + "rating": 3.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "The class went sour after the first exam. Exam questions are screenshared on handwritten powerpoints, the timing is unclear. If you're someone who is affected by your environment a lot don't take him, the exam inconsistencies are unsettling. He can get unprofessional when his students call him out. His teaching is good, the project is helpful.", + "pos": 0.09, + "neu": 0.802, + "neg": 0.108, + "_id": { + "$oid": "6711d78ecd60fca157e60a99" + } + }, + { + "text": "Kim is a decent prof. Yeah his accent is a bit hard to understand but he does do a lot of practice questions and does his best to help us to grasp the concepts better. He really does inspire us to think for ourselves and UHUH he's right. Doing practice questions in important for learning and that's exactly what Kim does! Overall very sold choice!", + "pos": 0.28, + "neu": 0.705, + "neg": 0.015, + "_id": { + "$oid": "6711d78ecd60fca157e60a9a" + } + }, + { + "text": "He's a great professor. Yes, he gives pop quizzes and exams that can be difficult but if you try your best and complete all homework, he will give a huge curve. For some topics, you will have to learn on your own such as watching YouTube videos but other topics he does a good job explaining.", + "pos": 0.247, + "neu": 0.727, + "neg": 0.025, + "_id": { + "$oid": "6711d78ecd60fca157e60a9b" + } + }, + { + "text": "Good professor if you want to learn. Put in the work and you will pass with a good grade. There are pop quizzes which usually happens when he finishes a chapter. Be on the look out for his math mistakes. If you point it out, there might be a chance he will give you extra credit. Also, \"uhuh\"; \"think about it\".", + "pos": 0.169, + "neu": 0.795, + "neg": 0.036, + "_id": { + "$oid": "6711d78ecd60fca157e60a9c" + } + }, + { + "text": "He is a great professor. Like yes, he might have a little accent but it is not that hard to understand. His tests may be a little tricky but he will curve. He does do pop quizzes so beware. You will learn a lot from this class though. Probably the best option for ENG 204 if you want to learn something.", + "pos": 0.211, + "neu": 0.768, + "neg": 0.021, + "_id": { + "$oid": "6711d78ecd60fca157e60a9d" + } + }, + { + "text": "Terrible explainer, all he does is read off slides and goes over problems solved in the textbook. Also spends a great deal of time going over a single problem. Heavy accent so you can't understand him and neither can he to you. He gives little partial credit on his exams if it is not the way he wants it.", + "pos": 0.122, + "neu": 0.757, + "neg": 0.121, + "_id": { + "$oid": "6711d78ecd60fca157e60a9e" + } + }, + { + "text": "Gave good lectures and solved practice problems. The midterms were a bit challenging, but if you solve practice textbook problems you will definitely do well because they are similarly formatted. The only thing I hated was the last two chapters were rushed, and two of the questions on final was from those chapters. Also be prepared for pop quiz.", + "pos": 0.205, + "neu": 0.647, + "neg": 0.148, + "_id": { + "$oid": "6711d78ecd60fca157e60a9f" + } + }, + { + "text": "This professor has a very thick accent and does not explain how to do the assignments. He gets angry when asked for feedback and help. He does curve.", + "pos": 0.084, + "neu": 0.812, + "neg": 0.103, + "_id": { + "$oid": "6711d78ecd60fca157e60aa0" + } + }, + { + "text": "Oh man one of the best professors I had during college career. He is respectful, cares about his students, will help you if you don't understand anything. Overall he is just an amazing professor. Dont pay attention to the negative reviews i mean you cant expect to get an A if you dont show up to class. Do your hw's, labs, and study you will get A.", + "pos": 0.22, + "neu": 0.734, + "neg": 0.045, + "_id": { + "$oid": "6711d78ecd60fca157e60aa1" + } + }, + { + "text": "Hello QCCians, that's right I took his class in QCC Networking Fundamentals I. Four credits class so heavy labs, easy A if you keep up with class homework and labs good luck. Take the front seat, has accent of South Korea. He is funny, humorous skinny bunny.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60aa2" + } + }, + { + "text": "His test are very tricky but not impossible but, it doesnt help that his partial credit isnt good. He can teach the concepts well but he makes a few algebraic mistakes. Despite all that he really cares a lot about engr students if you show that you try thats all that matters . I failed both midterms and final but he curved and I got a good grade", + "pos": 0.175, + "neu": 0.654, + "neg": 0.171, + "_id": { + "$oid": "6711d78ecd60fca157e60aa3" + } + }, + { + "text": "He really cares about his students so if you put in the work, you'll do fine. Attendance is mandatory; it wouldn't help to skip class and learn the material on your own because he has specific ways of doing problems. Overall, solid professor.", + "pos": 0.16, + "neu": 0.741, + "neg": 0.099, + "_id": { + "$oid": "6711d78ecd60fca157e60aa4" + } + }, + { + "text": "Just show up to class and participate. You can get a 0 on every class and your lowest grade will still be a C. He only gives out Ds and Fs if you don't show up to class", + "pos": 0.0, + "neu": 0.934, + "neg": 0.066, + "_id": { + "$oid": "6711d78ecd60fca157e60aa5" + } + }, + { + "text": "He is a nice professor who is easy to talk to because he is always willing to listen. He may not relay some information clearly but is always motivating students and pushing them. He will try to give you the best possible grade as long as you show him that you are trying. He heavily teaches theory so use the textbook to practice problems.", + "pos": 0.204, + "neu": 0.75, + "neg": 0.046, + "_id": { + "$oid": "6711d78ecd60fca157e60aa6" + } + }, + { + "text": "his is a good guy. kind of easy if u participate in class. to get A do good in final no matter how u did in other exams. He is poor in English and might confuse u if u listen to lecture so read the book which is kind of hard to understand or use the tutoring center. i am a tutor so i will help ya. anyway the class is not too hard anyway", + "pos": 0.147, + "neu": 0.764, + "neg": 0.09, + "_id": { + "$oid": "6711d78ecd60fca157e60aa7" + } + }, + { + "text": "Funny guy but needs to learn how to relay information to the students (accent). If you really try hard he'll give you a good grade. Textbook is horrible so find an alternative.", + "pos": 0.143, + "neu": 0.69, + "neg": 0.167, + "_id": { + "$oid": "6711d78ecd60fca157e60aa8" + } + }, + { + "text": "Dont expect to learn much from him although he will teach some material, a lot you will have to cover on your own. Getting the book is a must. New edition is a must too, old one doesnt have key examples. He literally puts examples on the book on the midterms. Participate a lot, dont be absent more than 3 times, and do 85+ on everything = A.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60aa9" + } + }, + { + "text": "he is the man.. The most friendly teacher at ccny. He teaches all the basics you need the build up everything in electronic. very easy greader but you need to study a little bit. he does not push you hard but you have to push yourself a little bit. otherwise you can get c+ or B. if you study little and follow what he says this is a easy A class.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60aaa" + } + }, + { + "text": "His class is Fun, You learn a lot and he dosen't make you read the textbook you can still do good. Many students with no electrical background are scared because he constantly picks people out reandomly and ask them questions. No way to avoid that cause he never forgets who he picked on at all.", + "pos": 0.096, + "neu": 0.757, + "neg": 0.147, + "_id": { + "$oid": "6711d78ecd60fca157e60aab" + } + }, + { + "text": "He rocks, you wll not regrade if you take a class with him. very freindly. Just do not forgate to bring a prelab note book.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60aac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78ecd60fca157e60aae" + }, + "professor_name": "Matthew Martin", + "rating": 4.7, + "department": "World Humanities department", + "comments": [ + { + "text": "Not sure if he still teaches here, but he was GREAT when I took him. He was very humorous and made class really fun. He was pretty laid back, but also wanted you to work for the grade. He gave great feedback on assignments and was very helpful during the process of writing the final paper. A+ Professor.", + "pos": 0.36, + "neu": 0.622, + "neg": 0.018, + "_id": { + "$oid": "6711d78ecd60fca157e60aaf" + } + }, + { + "text": "Excellent professor! Real and down to earth. He takes his work seriously and is a master of his craft. As long as you do what's required (as in any college course), it is an easy A. Lots of great reading material, gives tremendous feedback. You will definitely advance what you know in this class and come out a better person.", + "pos": 0.23, + "neu": 0.747, + "neg": 0.024, + "_id": { + "$oid": "6711d78ecd60fca157e60ab0" + } + }, + { + "text": "Professor Martin is amazing! He makes coming to class everyday an absolute pleasure. He is hilarious, understanding and so incredibly helpful when it comes to essay writing. He is a really fair grader if you show effort and follow his guidelines. Overall, he's just awesome.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60ab1" + } + }, + { + "text": "Awesome professor! Makes writing enjoyable while still teaching.", + "pos": 0.549, + "neu": 0.451, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60ab2" + } + }, + { + "text": "He's the teacher that you look forward to have because you actually learn something. He really makes you become a better writer but you have to put in the effort. He's a great teacher and someone who doesn't ask for much. Participate because his classes are awesome and participation really isn't that hard to do in his class. I would take him again.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60ab3" + } + }, + { + "text": "Overall he is a fun professor to have, especially your first year. He's knowledgeable in what he teaches and is quick to respond to emails. Lot of peer-review so be prepared to get partnered up. There will be a lot of writing but it's broken down. Just put effort into your work, he appreciates people who actually care. +Don't buy Norton textbook", + "pos": 0.17, + "neu": 0.774, + "neg": 0.056, + "_id": { + "$oid": "6711d78ecd60fca157e60ab4" + } + }, + { + "text": "If you're looking for a someone who is genuinely concerned about teaching literature, this is your guy. If you put in the effort, you'll do just fine. It wont be a hard class unless you make it one. Plus, he's really funny ( i scribbled down a page of his most witty comments ). This is the type of professor that you will remember for a long time.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60ab5" + } + }, + { + "text": "Martin was a great professor. His expectations are clear. There is HW, but its only once per week and he gives you all of the HW ahead of time so you can do it early, plus its easy. He makes writing assignments due in chucks so it dose not feel like a lot of work. He helped me build a good writing foundation. I would definitely take him again.", + "pos": 0.192, + "neu": 0.775, + "neg": 0.033, + "_id": { + "$oid": "6711d78ecd60fca157e60ab6" + } + }, + { + "text": "Good Professor.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60ab7" + } + }, + { + "text": "Professor Martin is the best professor I've ever had at all three CUNY colleges I have attended. I never turn all my work in on time (I'm an b+ student), but this has been the only class I turned all my assignments in on time in fear of him not taking it. You get a wealth of knowledge regarding literature and he is so talented at what he does!!!", + "pos": 0.164, + "neu": 0.784, + "neg": 0.052, + "_id": { + "$oid": "6711d78ecd60fca157e60ab8" + } + }, + { + "text": "You either really like or really hate this guy. I really like him. So hilarious. Really sarcastic and great teacher. He actually tells you what he expects and is very helpful. He gives good feedback on papers and assignments so you know what you need to do to get better.", + "pos": 0.315, + "neu": 0.591, + "neg": 0.094, + "_id": { + "$oid": "6711d78ecd60fca157e60ab9" + } + }, + { + "text": "This class was a Gen Ed requirement for me and I'm guessing many others in the class. What an experience?! yes, he is knowledgeable. Yes, he should find another line of work; like running a third world country and having opponents killed. You don't have the right to talk, ever. You'll never look forward to this class. Im a 3.7 student btw. SO BAD!", + "pos": 0.101, + "neu": 0.753, + "neg": 0.146, + "_id": { + "$oid": "6711d78ecd60fca157e60aba" + } + }, + { + "text": "Really funny and teaches well", + "pos": 0.638, + "neu": 0.362, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60abb" + } + }, + { + "text": "Mr Martin is a nice professor but not that nice, specially with his sarcastic answers which sometimes are really mean. Knows a lot and helpful. The class is not easy or hard. It's like are regular college level freshman class.", + "pos": 0.198, + "neu": 0.636, + "neg": 0.166, + "_id": { + "$oid": "6711d78ecd60fca157e60abc" + } + }, + { + "text": "Really great professor. Well organized and very knowledgeable. He pushes you to think outside the box and helps you. A++++", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60abd" + } + }, + { + "text": "He is probably one of the best professors I had in CCNY...he is very knowledgeable and really funny...he is fair but if you don't do the work he will kick you out of the class...definitely not an easy A but if you work hard he will give you a grade you deserve....he is ver fair to everyone.....and nice too...I learned. Lot :)", + "pos": 0.201, + "neu": 0.736, + "neg": 0.063, + "_id": { + "$oid": "6711d78ecd60fca157e60abe" + } + }, + { + "text": "One of the best teachers I have ever had. He really loves what he does and it shows through in his lectures. He is very knowledgeable about the works he chooses for the semester and that makes for great discussions in class. Excellent teacher!", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60abf" + } + }, + { + "text": "Really great professor, talks most of the time in class but is always interesting and funny. He is very self deprecating, doesn't seem to realize how much he is getting through, although I know the entire class liked him a lot. Fair grader, based on midterm, final, group work, 3 papers and one presentation. Has a fun southern accent too!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d78ecd60fca157e60ac0" + } + }, + { + "text": "professor was over all easy going unless you are the type to not be prepared for class. there is a lot of reading that goes along with this course and understanding of the reading it all the quizes are based on. very easy to pass class with great grades.", + "pos": 0.179, + "neu": 0.791, + "neg": 0.029, + "_id": { + "$oid": "6711d78ecd60fca157e60ac1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78fcd60fca157e60ac3" + }, + "professor_name": "Ardie Walser", + "rating": 2.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Amazingly terrible with no knowledge at all.", + "pos": 0.0, + "neu": 0.461, + "neg": 0.539, + "_id": { + "$oid": "6711d78fcd60fca157e60ac4" + } + }, + { + "text": "Prof. Walser is knowledgeable and know very well the subjects and his students. That's why he always forces students to think outside the box. But most students just want to pass the course and not learn.So the course becomes very hard for them. Only those who attend office hours tend to learn more about different approaches to resolve problems.", + "pos": 0.104, + "neu": 0.812, + "neg": 0.084, + "_id": { + "$oid": "6711d78fcd60fca157e60ac5" + } + }, + { + "text": "Terrible. Flips through the powerpoint presentation as quick as possible and gives no hint as to what is on the tests. The assigned homework is from an older syllabus and has no relation to his tests, doubt he knows what they are. Just says \"do all the problems\" and is absolutely no help. I only heard of people getting Fs and Cs in my section.", + "pos": 0.017, + "neu": 0.778, + "neg": 0.204, + "_id": { + "$oid": "6711d78fcd60fca157e60ac6" + } + }, + { + "text": "Yikes...I studied like a dog for a D. Other students had a different professor and got A's. I asked them about the class and they knew a lot less about it than me. Avoid Walser at all costs if you care about grades.", + "pos": 0.119, + "neu": 0.835, + "neg": 0.046, + "_id": { + "$oid": "6711d78fcd60fca157e60ac7" + } + }, + { + "text": "Many hours invested into studying, and many more lost in frustration. But I'm glad that I learned from professor Walser. I feel that I learned more and worked harder than most CCNY students and got an A. It was definitely a challenge. But if you want to avoid this sort of academic challenge, take someone else.", + "pos": 0.173, + "neu": 0.725, + "neg": 0.102, + "_id": { + "$oid": "6711d78fcd60fca157e60ac8" + } + }, + { + "text": "Stay away from this stupid person, he doesn't know anything about electromagnetics. His students know more than him and he is a good example of what city college represents.", + "pos": 0.086, + "neu": 0.796, + "neg": 0.118, + "_id": { + "$oid": "6711d78fcd60fca157e60ac9" + } + }, + { + "text": "He is a wonderful professor and has worked very hard to get to where he is now. I agree that he is tough on his students, but only because he wants them to get the most out of his class and succeed based on their own merrit and not grading curves. Life isn't easy and nothing is given to you, so why should his class be any different.", + "pos": 0.11, + "neu": 0.815, + "neg": 0.075, + "_id": { + "$oid": "6711d78fcd60fca157e60aca" + } + }, + { + "text": "First be warned, he is not a nice grade what-so-ever, but he does give you what you deserve. But you will definitely learn EM to the full extend if you do take him. He has Office Hours which are very helpful in a hard class like this. USE THEM A LOT. Maybe then, people will stop complaining why they failed his class.", + "pos": 0.164, + "neu": 0.656, + "neg": 0.18, + "_id": { + "$oid": "6711d78fcd60fca157e60acb" + } + }, + { + "text": "YOU WILL FAIL. I GUARANTEE IT! OR you'll at least end up with a D", + "pos": 0.135, + "neu": 0.642, + "neg": 0.223, + "_id": { + "$oid": "6711d78fcd60fca157e60acc" + } + }, + { + "text": "If your reading this, let me learn you something, Phd in Engineering, You should probably learn how to learn!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60acd" + } + }, + { + "text": "OK", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60ace" + } + }, + { + "text": "Don't trust him! Don't believe anything he says. All he is concerned about is himself! If you are not an A student, you mean nothing!!!! Go to another college.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d78fcd60fca157e60acf" + } + }, + { + "text": "He is in the position who should help students, but he doesn't at all. He makes things bigger & worse, and doesn't want to accept his mistakes. He doesn't listen to the students, and pushes over the cliff. The other faculties are irritated, too!", + "pos": 0.033, + "neu": 0.683, + "neg": 0.284, + "_id": { + "$oid": "6711d78fcd60fca157e60ad0" + } + }, + { + "text": "Very helpful during office hours. If you show him you're serious, he'll help you as best he can. You've got to solve ALL the problems and understand them if you want to do well.", + "pos": 0.336, + "neu": 0.575, + "neg": 0.089, + "_id": { + "$oid": "6711d78fcd60fca157e60ad1" + } + }, + { + "text": "Some professors are naturals and others develop into good educators. Ardie is neither of these. Likeable enough, tries hard to get his point across. He is now Dean of Undergrad Engineering...hopefully he can be more successful and competent at this !", + "pos": 0.198, + "neu": 0.724, + "neg": 0.078, + "_id": { + "$oid": "6711d78fcd60fca157e60ad2" + } + }, + { + "text": "Watch out !! This guy is not on your side. He went to school all his life probably till he was 30, and then he went to \"work\" (if you can call it that) in school. He has no idea what the \"real world\" is all about. When you come to him with a situation for help be prepared it will be adveserial.", + "pos": 0.077, + "neu": 0.89, + "neg": 0.033, + "_id": { + "$oid": "6711d78fcd60fca157e60ad3" + } + }, + { + "text": "Doesn't have a clue what he's talking about. I still don't know how in the world he managed to get a PhD in electrical engineering. Very Cocky.", + "pos": 0.0, + "neu": 0.935, + "neg": 0.065, + "_id": { + "$oid": "6711d78fcd60fca157e60ad4" + } + }, + { + "text": "Spectacularly terrible, very cocky, doesn't listen well and does things completey different from what he gives on test.. Annoying at times too.", + "pos": 0.0, + "neu": 0.657, + "neg": 0.343, + "_id": { + "$oid": "6711d78fcd60fca157e60ad5" + } + }, + { + "text": "Spectacularly terrible. If he is still teaching and you're in his class ... save yourself some pain and just leave. Uses the recommended book but sets his exams from an older \"reference\" text in which theorems are old and complex. Very cocky. Ch", + "pos": 0.073, + "neu": 0.771, + "neg": 0.156, + "_id": { + "$oid": "6711d78fcd60fca157e60ad6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d78fcd60fca157e60ad8" + }, + "professor_name": "Raymond Tu", + "rating": 4.3, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "His lectures may at times get confusing but review your notes (read the textbook here and there) often and you're set. Tu really cares and will ensure you understand so long as you are serious about this stuff.", + "pos": 0.175, + "neu": 0.76, + "neg": 0.065, + "_id": { + "$oid": "6711d78fcd60fca157e60ad9" + } + }, + { + "text": "Brilliant guy and even better lecturer. He'll always try to make himself available to help his students. Exams are difficult but once you do the h/w and attend classes you should do fine. Very lenient and consistent grading system. Labs are fun, especially competition days (always be prepared if you want to win bonus points).", + "pos": 0.394, + "neu": 0.583, + "neg": 0.023, + "_id": { + "$oid": "6711d78fcd60fca157e60ada" + } + }, + { + "text": "This is literally the best professor I have had in my life. Incredibly smart, and even more caring about his students. Is available outside of class even on hours other than his office ones. Curves a lot, but makes all the grades fair. Very clear on what will be on the test. If u pay good attention at his lectures u wont even need to open the book", + "pos": 0.218, + "neu": 0.762, + "neg": 0.02, + "_id": { + "$oid": "6711d78fcd60fca157e60adb" + } + }, + { + "text": "It seemed like a filtering class. Be focused in the class and get ur concept clear about the material. Even though open tests are open book u must understand the material otherwise notes or bookes or even solved problems from previous students won't help.", + "pos": 0.186, + "neu": 0.72, + "neg": 0.094, + "_id": { + "$oid": "6711d78fcd60fca157e60adc" + } + }, + { + "text": "Prof. Tu is such a great guy and professor, however it is very difficult to teach Thermo to a class of 100+ people. He is VERY fair with grading (he curves). There are only two in-class exams worth 25% each, along with HW (that you must type and submit on BB) worth 15%, participation is 10% and the final is 35%. Make sure you understand the HWs!", + "pos": 0.178, + "neu": 0.786, + "neg": 0.036, + "_id": { + "$oid": "6711d78fcd60fca157e60add" + } + }, + { + "text": "His lectures are very clear and it really allows you to understand thermodynamics qualitatively. His exams are extremely hard but he is the most generous grader I've ever had. As long as you think about the question you'll get some type of partial credit. All exams are open book so it's imperative to have good study sheets.", + "pos": 0.209, + "neu": 0.771, + "neg": 0.02, + "_id": { + "$oid": "6711d78fcd60fca157e60ade" + } + }, + { + "text": "He is HORRIBLE!!!!!!!!!!!!!!!!!!!!!!!! His exams are extremely hard. Harder than the homeworks and practice exams. Even though he is friendly, don't buy it. He is mean with his exams. You have no choice anyway because he is the only professor teaching the course. All I can say is GOODLUCK!", + "pos": 0.056, + "neu": 0.783, + "neg": 0.162, + "_id": { + "$oid": "6711d78fcd60fca157e60adf" + } + }, + { + "text": "Very helpful. Homework is a lot of work but only 5% of the grade. Tests are difficult but are curved. Overall good teacher of the material", + "pos": 0.183, + "neu": 0.715, + "neg": 0.101, + "_id": { + "$oid": "6711d78fcd60fca157e60ae0" + } + }, + { + "text": "Curves A LOT. Sarcastic/friendly/approachable. Super intelligent. Exams are tricky -- but curves make up for it. Homeworks are tough and office visitations will not help you. You have to figure it out on your own. Don't take advantage of him.", + "pos": 0.096, + "neu": 0.731, + "neg": 0.173, + "_id": { + "$oid": "6711d78fcd60fca157e60ae1" + } + }, + { + "text": "Has to be THE greatest professor I have had at City College. He is very clear and prepared in his teaching, he wants the students to understand, and he is just pure awesome. You have to work hard in his courses, but I have never met a professor that motivated you so much to do great until I took his class (Chemical Engineering Thermodynamics). H", + "pos": 0.236, + "neu": 0.748, + "neg": 0.015, + "_id": { + "$oid": "6711d78fcd60fca157e60ae2" + } + }, + { + "text": "Raymond Tu = pure awesomeness!! he's just the best professor i ever had(until now). if you take notes and do the HWs you'll do really well on his tests. but remember this, doing good on one of his tests does not mean you're gonna do well on the others. so don't slack. he's my idol. seriously. i'm really happy i have him again for thermo I.", + "pos": 0.214, + "neu": 0.76, + "neg": 0.026, + "_id": { + "$oid": "6711d78fcd60fca157e60ae3" + } + }, + { + "text": "Best ChE professor ever! Very smart and helpful, make every topic seem easy. Take good notes and you'll do great.", + "pos": 0.594, + "neu": 0.406, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60ae4" + } + }, + { + "text": "Extremely clear in his explanations, tries to make students understand as much as possible. All exams are open book open notes, which is a plus.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60ae5" + } + }, + { + "text": "A great professor. Teaches well and make sure everyone understands what is taught. And his exams are fair too.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60ae6" + } + }, + { + "text": "best ChE professor explains everything so clearly and gives really useful homework when it comes to the tests he is also really fair with the questions and grading. my favorite professor but im also a ChE major", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60ae7" + } + }, + { + "text": "He is a very good professor, he is very helpful, and cares about the students. Take him he makes the hard topics look easy.", + "pos": 0.379, + "neu": 0.578, + "neg": 0.043, + "_id": { + "$oid": "6711d78fcd60fca157e60ae8" + } + }, + { + "text": "He is probably one of the best professors in CCNY. He teaches great. Always very clear. Just go to class and do your homeworks, you'll get a A. He's fairly young, so he understands if u have an issues with anything. Plus like the person said before, he's pretty hot too. : ) Definitely take him, you'll actually enjoy ChE", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60ae9" + } + }, + { + "text": "he doesn,t know much about the material", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60aea" + } + }, + { + "text": "This is the coolest professor ever. His exams are long, but if you go to class and take good notes and ask him questions during office hours, you'll be in good shape for the class. He's very helpful and kind of cute. He is very smart and he knows the material, so feel free to ask him any type of question you would like to know.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d78fcd60fca157e60aeb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d790cd60fca157e60aed" + }, + "professor_name": "Adrian Rodriguez-Contreras", + "rating": 2.2, + "department": "Biology department", + "comments": [ + { + "text": "Read the textbook and ask for feedback", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60aee" + } + }, + { + "text": "His lectures are RARELY related to what you read in the textbook. All assignments are critical thinking questions. Takes points away for not including information that he never asked about. Horrible instructor. This class is self taught. Doesnt listen to student concerns and not open to suggestions. I regret taking this class. Save your GPA!!", + "pos": 0.106, + "neu": 0.813, + "neg": 0.081, + "_id": { + "$oid": "6711d790cd60fca157e60aef" + } + }, + { + "text": "this is a self taught class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60af0" + } + }, + { + "text": "Dr. Contreras is one of the caring professor in CCNY. He makes sure that every students gets points in exams, quizzes, etc. In order to do really well in exams you have to read details in the textbook. This class is tough in general with the lab, But with Prof Contreras it is a lot more easier.", + "pos": 0.153, + "neu": 0.828, + "neg": 0.02, + "_id": { + "$oid": "6711d790cd60fca157e60af1" + } + }, + { + "text": "All lecture exams are SHORT RESPONSE which will be chosen from a bank of questions. There are SEVEN exams 50 points each, final 25 points You have to STUDY SMART, using study questions & actually studying the TEXTBOOK!!. He allowed retake of 2 exams,. LABS are lifesavers, do well on them. Karen as a TA is cool BTW, PERIOD!", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60af2" + } + }, + { + "text": "By far the worst professor I ever had, he does not care about his students. His lectures are so vague and confusing which makes them pointless. Changes up for each and every exam, the best bet is to read the textbook and do the study questions. If you can, AVOID at all costs.", + "pos": 0.065, + "neu": 0.724, + "neg": 0.211, + "_id": { + "$oid": "6711d790cd60fca157e60af3" + } + }, + { + "text": "The worst professor I have ever had. His lectures are VERY vague and dont even cover a third of the material of the textbooks. You're better off taking the time in class to read the textbook and outline it yourself or catch up on other work you have. All of the tests were made up of short answers that he grades very harshly. DO NOT TAKE!!!!", + "pos": 0.039, + "neu": 0.856, + "neg": 0.105, + "_id": { + "$oid": "6711d790cd60fca157e60af4" + } + }, + { + "text": "Lectures are entirely pointless and always unrelated to the tests. He decided to use a new system this semester and made every test short response, and scheduled 7 exams and a final. You need to read everything in the textbook to answer these questions, only to lose two-thirds of a point on every question due to his entirely subjective grading.", + "pos": 0.0, + "neu": 0.956, + "neg": 0.044, + "_id": { + "$oid": "6711d790cd60fca157e60af5" + } + }, + { + "text": "Worst professor I've ever had. Ever. This is your warning. DO NOT TAKE. He has no idea what he's teaching, his lectures are powerpoints that are a summary of a small portion of the lengthy chapter from that week, everyone catches up on other schoolwork during his lecture. He's inconsiderate, uncaring, lazy, and doesn't show up to his own meetings.", + "pos": 0.0, + "neu": 0.796, + "neg": 0.204, + "_id": { + "$oid": "6711d790cd60fca157e60af6" + } + }, + { + "text": "His lectures are terrible. Barely goes over the course material, the only way you will do well in his class is to read the entire textbook or find practice questions online. It is clear that this class isn't his priority or what he is trained to teach.", + "pos": 0.091, + "neu": 0.849, + "neg": 0.06, + "_id": { + "$oid": "6711d790cd60fca157e60af7" + } + }, + { + "text": "Everyone uses this class's lectures as an opportunity to catch up on work for other classes. He basically takes the textbook, adds a couple other details that fit in, makes it into a PowerPoint presentation, and then uses that for the entire 90 minutes. It is more productive to read the textbook and do practice problems.", + "pos": 0.087, + "neu": 0.869, + "neg": 0.044, + "_id": { + "$oid": "6711d790cd60fca157e60af8" + } + }, + { + "text": "Goes over the course material on the surface. His slides are just pictures with no valuable information whatsoever. His tests are on applying concepts that are never taught, or taught well in class. DO NOT TAKE.", + "pos": 0.054, + "neu": 0.88, + "neg": 0.066, + "_id": { + "$oid": "6711d790cd60fca157e60af9" + } + }, + { + "text": "Very good professor", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60afa" + } + }, + { + "text": "He might be a good professor, but do not take him for 207. I dnt think he is trained for that class and you'll notice it from the way he teaches. He never goes deep into the course work, only plays around the surface. And his exams are completely different from the basic things he goes over in class. You must memorize the entire textbook to do well", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60afb" + } + }, + { + "text": "Do not take this professor unless you plan on memorizing the entire textbook!! The only thing that will help you pass is if you do well in lab. If you are failing lab, you might as well drop the course. He does not really explain anything and his lecture assignments are a waste.", + "pos": 0.11, + "neu": 0.75, + "neg": 0.14, + "_id": { + "$oid": "6711d790cd60fca157e60afc" + } + }, + { + "text": "Terrible Professor. Avoid taking him.", + "pos": 0.0, + "neu": 0.361, + "neg": 0.639, + "_id": { + "$oid": "6711d790cd60fca157e60afd" + } + }, + { + "text": "He basically comes to class, explains the concept, and leaves you to figure out all the details by yourself. His assignments and exams are totally different from his lectures, and you WILL fail if you dont study the whole textbook. He is a nice person, but I feel like Bio 207 is not his field", + "pos": 0.087, + "neu": 0.875, + "neg": 0.038, + "_id": { + "$oid": "6711d790cd60fca157e60afe" + } + }, + { + "text": "he is very nice, easygoing and wants you to learn stuff and not just prepare for the exams. therefore, exams are not hard. he is much more about reading and inferring the journal articles than just doing the txt book. overall, easy and enjoyable class.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60aff" + } + }, + { + "text": "Goes a lot into detail but stresses that he wants you to learn overall concepts. Available in his office/lab usually if you have any questions.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d790cd60fca157e60b00" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d790cd60fca157e60b02" + }, + "professor_name": "Alison Matika", + "rating": 3.3, + "department": "Education department", + "comments": [ + { + "text": "NICE PROFESSOR", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b03" + } + }, + { + "text": "Overall, a dedicated professor.", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b04" + } + }, + { + "text": "thank you for your patient all the time..and for the effort you made to teach us the best way.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b05" + } + }, + { + "text": "Professor was very moody and ridged at times which confused and upset some students. This is an issue that she needs to deal with. Her methods and energy were good. She clearly was invested in her subject and her students.", + "pos": 0.156, + "neu": 0.688, + "neg": 0.156, + "_id": { + "$oid": "6711d790cd60fca157e60b06" + } + }, + { + "text": "Taking Prof. Matika's Core Humanities class gave me the ability to write decent essays that helped me to pass in my other classes. I enjoyed taking her class. She had a positive energy.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b07" + } + }, + { + "text": "the professor was not people friendly.", + "pos": 0.0, + "neu": 0.655, + "neg": 0.345, + "_id": { + "$oid": "6711d790cd60fca157e60b08" + } + }, + { + "text": "Prof Matika's way of teaching was very productive. She allowed us to express our opinion/comments and never made us feel ridiculous, whether we were right or wrong. She did provide constructive criticism, which was welcomed. The free writings exercises were also a huge plus. I would definitely take another course with her again.", + "pos": 0.164, + "neu": 0.706, + "neg": 0.13, + "_id": { + "$oid": "6711d790cd60fca157e60b09" + } + }, + { + "text": "My first impression of her was virtuous but as the days passed I noticed a dificult side to deal with. Very egostical about herself, In my case I was marked absent for 2 days which I had work to prove my presence those days she denied it mocked me and classified me as a liar the class was aware of the situation and made me feel very bad. Stay away!", + "pos": 0.043, + "neu": 0.758, + "neg": 0.198, + "_id": { + "$oid": "6711d790cd60fca157e60b0a" + } + }, + { + "text": "This class, Representations of Youth, really helped me think about how to use media, especially film, in my classroom. As a result, the method of using film, became the basis of my master's thesis and resulted in my most successful teaching semester up to that point.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b0b" + } + }, + { + "text": "This class was great! The textbook we used, Western Wind, is the best anthology of poetry that I have ever owned. I have used it as a teacher, and used it as a writer.", + "pos": 0.212, + "neu": 0.788, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b0c" + } + }, + { + "text": "I loved this class. Learning creative and innovative ways to develop curriculum is essential and writing curriculum has become one of my favorite parts of being a teacher.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b0d" + } + }, + { + "text": "I loved the fact that Ms. Matika assigned writing partners with whom we would work on our theses. It really helped me keep on track and I had someone to bounce ideas off.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b0e" + } + }, + { + "text": "Not only did this class present excellent methods for teaching writing to HS students, the textbooks used helped me find ways to become a better writer.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b0f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d790cd60fca157e60b10" + } + }, + { + "text": "She's a rather difficult teacher and a rather difficult person to be around, but I never got the impression that either one was unintentional. She's quite intelligent and interesting to listen to, but if your looking to be friends with her, you'll have a hard time if you're a woman.", + "pos": 0.2, + "neu": 0.687, + "neg": 0.113, + "_id": { + "$oid": "6711d790cd60fca157e60b11" + } + }, + { + "text": "A horrible person", + "pos": 0.0, + "neu": 0.364, + "neg": 0.636, + "_id": { + "$oid": "6711d790cd60fca157e60b12" + } + }, + { + "text": "Actually made two people in the class cry. Mean with no particular reason to be mean.", + "pos": 0.0, + "neu": 0.725, + "neg": 0.275, + "_id": { + "$oid": "6711d790cd60fca157e60b13" + } + }, + { + "text": "AWFUL!!! STAY AWAY!!!! NEEDS THERAPY!!!", + "pos": 0.0, + "neu": 0.49, + "neg": 0.51, + "_id": { + "$oid": "6711d790cd60fca157e60b14" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d790cd60fca157e60b16" + }, + "professor_name": "Timothy Boyer", + "rating": 4.7, + "department": "Physics department", + "comments": [ + { + "text": "Boyer is the most easy-going, polite and beneficial teacher from CCNY's physics department who posts his lecture notes, homework and homework solution after due date on blackboard. Study harder for exam and redo the homework before the exam date. You must pay attention to his power point slides, which are useful.", + "pos": 0.143, + "neu": 0.832, + "neg": 0.025, + "_id": { + "$oid": "6711d790cd60fca157e60b17" + } + }, + { + "text": "The Beeeeeeeeeeeeeessssssssssssssssssttt!!!!!!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b18" + } + }, + { + "text": "Amazing professor. Gives HW every class, 3 exams, 1 final. If you don't hand in a HW you must speak with him to make it up. Exams are very tricky so you must do HW and study hard. He goes over the HW every class and then begins the lecture which can be hard to understand so make sure you ask questions. Overall nice guy but can be savage with exams.", + "pos": 0.077, + "neu": 0.8, + "neg": 0.123, + "_id": { + "$oid": "6711d790cd60fca157e60b19" + } + }, + { + "text": "I cannot say enough wonderful things about Professor Boyer. To put it succinctly, I am incredibly lucky to have had him as an educator for two semesters. Dr. Boyer is an excellent lecturer and a kind, patient person. He grades incredibly fairly and takes exam improvement strongly into account in the final grade. He is truly one of a kind.", + "pos": 0.282, + "neu": 0.679, + "neg": 0.039, + "_id": { + "$oid": "6711d790cd60fca157e60b1a" + } + }, + { + "text": "Prof. Boyer is incredibly well organized and encouraging. His handle on classical electrodynamics is just about flawless and he provides you with the skills and logic necessary to solve difficult problems. Homework and exam problems can vary widely in terms of difficulty, but he treats simpler problems with the same respect as tougher ones.", + "pos": 0.203, + "neu": 0.638, + "neg": 0.159, + "_id": { + "$oid": "6711d790cd60fca157e60b1b" + } + }, + { + "text": "Professor Boyer is by far the best educator I've ever had. He is clear and highly detailed with beautiful penmanship. He gives homework every week, and gives fair, but sometimes difficult exams. You must be diligent in order to do well, but you will learn so much.", + "pos": 0.203, + "neu": 0.738, + "neg": 0.059, + "_id": { + "$oid": "6711d790cd60fca157e60b1c" + } + }, + { + "text": "2 semesters of e&m with him. very clear and gives hw every class. very helpful and gives fun facts on e&m history. didnt understand the subject from 208 but after these classes i understand it very well. One of the best professors. Exams similar to hw questions and gives nice comments on exams.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b1d" + } + }, + { + "text": "This man really knows E&M and pours love into teaching it. He presents the material clearly, and when you're done with the class, you really know your stuff, too. As a girl, I've always found Boyer to be completely encouraging and supportive. He's very busy, so don't expect him to pal around, but he'll work with you until you're good to go.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b1e" + } + }, + { + "text": "Boyer presented the material in a simple, lucid matter (and was often much clearer than Griffiths). Besides leaving the class with a solid understanding of E&M, you will actually enjoy doing the problem sets (and the harder end-of-chapter problems in Griffiths). My only complaint is that the man is at times outright nasty at office hours.", + "pos": 0.089, + "neu": 0.741, + "neg": 0.169, + "_id": { + "$oid": "6711d790cd60fca157e60b1f" + } + }, + { + "text": "He's an excellent and patient teacher. He's also a true gentleman. The class is certainly not easy, but his expectations of the student are clear. It's not just about the grades, people. Go to him to learn physics.", + "pos": 0.212, + "neu": 0.749, + "neg": 0.039, + "_id": { + "$oid": "6711d790cd60fca157e60b20" + } + }, + { + "text": "Good professor. Teaches very well. First test is easy but after that tests are much harder, to pass this class you have to study after lectures and don't fall behind.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b21" + } + }, + { + "text": "nice professor, his exams are tricky. so you need to understand the material well in order to do good :)", + "pos": 0.394, + "neu": 0.547, + "neg": 0.058, + "_id": { + "$oid": "6711d790cd60fca157e60b22" + } + }, + { + "text": "This professor teaches very well, if your interested you will learn, but the exams are very tricky and hard, it is extreamly important to understand the concepts for his exams. A lot of people dropped out, this professor is not very good and this class PHY208 is very hard.", + "pos": 0.1, + "neu": 0.73, + "neg": 0.17, + "_id": { + "$oid": "6711d790cd60fca157e60b23" + } + }, + { + "text": "Great professor I've had in Phys. Understand what he is doing, extremely easy test if you do the homework. NICE to all students", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b24" + } + }, + { + "text": "Great professor, knows what he's doing. I wouldn't recommend anyone else for the general physics courses.", + "pos": 0.203, + "neu": 0.693, + "neg": 0.104, + "_id": { + "$oid": "6711d790cd60fca157e60b25" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d790cd60fca157e60b26" + } + }, + { + "text": "One of the best professors I've ever had. Knowledgeable, organized, happy to help and helpful. If you're planning to take E&M, it's worth to wait until he comes around. One of those professors that makes a difference.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d790cd60fca157e60b27" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d790cd60fca157e60b28" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d791cd60fca157e60b2a" + }, + "professor_name": "Nancy Eder", + "rating": 3.2, + "department": "Art department", + "comments": [ + { + "text": "This teacher is very good and straight forward. She lets you know whats going to be on the midterm and final. gives you a quiz to help you and is willing to help.she is strict and thats a good thing because discipline is much needed nowadays. I received an A and felt good because I earned it. I did all the hard work and it payed off. So dont slack", + "pos": 0.175, + "neu": 0.808, + "neg": 0.018, + "_id": { + "$oid": "6711d791cd60fca157e60b2b" + } + }, + { + "text": "Best Art History teacher i guarantee it! Tells you what you need to know for your midterm and final. You have to remember alot of dates and analyze art, but that's easy. 2 papers that require you to vist the MET museum of art. Trust me all the other professors will eat you alive. She's helpful and always there for you! TAKE HER!", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b2c" + } + }, + { + "text": "She is a great teacher. Even though her class is boring, she knows what she is talking about. It's up to you to take good notes and attend class. She is not a easy grader but she is very fair.", + "pos": 0.171, + "neu": 0.757, + "neg": 0.073, + "_id": { + "$oid": "6711d791cd60fca157e60b2d" + } + }, + { + "text": "Pretty good teacher. Hints at things that are important and will be on the midterm/final. TAKE NOTES, it'll help when its time to study. Tends to be sarcastic, but just enjoy it because it's her personality its not be mean. She can be boring sometimes, but overall the class wasn't unbearable.", + "pos": 0.193, + "neu": 0.733, + "neg": 0.074, + "_id": { + "$oid": "6711d791cd60fca157e60b2e" + } + }, + { + "text": "great teacher!! the material is straightforward, take good notes and attend every class and you will get an A.", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b2f" + } + }, + { + "text": "u must be good at memorizing. cuz thats all its about. too strict wen grading even if she knows u well.i will advise dat u take her. dats if u ar good at it. and by the way, the class is so boring.", + "pos": 0.119, + "neu": 0.82, + "neg": 0.061, + "_id": { + "$oid": "6711d791cd60fca157e60b30" + } + }, + { + "text": "As long as you attend class and manage to stay awake you can get a good grade. It was easier then I imagined.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b31" + } + }, + { + "text": "go to class every week", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b32" + } + }, + { + "text": "This class may sound easy but it's difficult.You have memorize alot of info.Much material is covered in such a small amt of time.This Prof gives you quizes & points but its challenging.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b33" + } + }, + { + "text": "She knows a lot about the subject. But her teaching style isn't easy, she isn't that clear or concise. She makes certain topics harder than they need to be. Shes a very tough grader even students who usually get A's have a hard time doing well in this course. take this course only if you are VERY into the material and are willing to put in overtime", + "pos": 0.07, + "neu": 0.803, + "neg": 0.127, + "_id": { + "$oid": "6711d791cd60fca157e60b34" + } + }, + { + "text": "I grew an appreciation for ART because I took this class.You do have to memorize alot & write papers but it was challenging.", + "pos": 0.162, + "neu": 0.838, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b35" + } + }, + { + "text": "she doesnt give u good grades.. she gives useless grades for the paper assignment.. she talks too much about her family.. AVOID HER GUYS !!!!", + "pos": 0.0, + "neu": 0.703, + "neg": 0.297, + "_id": { + "$oid": "6711d791cd60fca157e60b36" + } + }, + { + "text": "She will give a bad grade if she doesn't like you! Her problems: monotone, pessimistic, talks more about her family than the subject, cell phone during class, late, unorganize, dismiss early, etc. Textbook is useless. Brags about working as a Harvard librarian. Never say hi outside of class because she'll give you a hatred look and a bad grade!", + "pos": 0.0, + "neu": 0.704, + "neg": 0.296, + "_id": { + "$oid": "6711d791cd60fca157e60b37" + } + }, + { + "text": "very poorly organized, often late for class, misplaces slides, bring the wrong slides etc. Exams quite doable, required 4 books for asian art class yet she somehow forgot to order them at the bookstore, constantly wonders off topic and a very boring lecturer. dont take!!!", + "pos": 0.0, + "neu": 0.867, + "neg": 0.133, + "_id": { + "$oid": "6711d791cd60fca157e60b38" + } + }, + { + "text": "don't take her class", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b39" + } + }, + { + "text": "tough in grading the research paper", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d791cd60fca157e60b3a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d791cd60fca157e60b3b" + } + }, + { + "text": "I was sick of seeing the \"elites\" who have no Eastern mind. Yes, they were easy A givers, but nothing worthy. However, Prof. Eder is different. She is in with Asian mind. She is not easy, but she is o.k. Don't worry your English, her great imagination will help you. One of the best. You must take.", + "pos": 0.298, + "neu": 0.577, + "neg": 0.125, + "_id": { + "$oid": "6711d791cd60fca157e60b3c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d791cd60fca157e60b3e" + }, + "professor_name": "Michael Benitez", + "rating": 4.1, + "department": "Philosophy department", + "comments": [ + { + "text": "Professor Benitez is one of those rare professors that are productive, fun, hilarious, and helpful at the same time. Definitely will retake. Best professor I've ever had.", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b3f" + } + }, + { + "text": "Professor Benitez is extremely helpful,as philosophy can get a little mind twisting, he will explain himself a hundred times over if you don't understand and never makes you feel dumb about it. He always thinks it through with you, he listens to his students and isn't afraid to learn from them. He's awesome and so what if he's late? Get a grip!", + "pos": 0.065, + "neu": 0.886, + "neg": 0.049, + "_id": { + "$oid": "6711d791cd60fca157e60b40" + } + }, + { + "text": "If you just read what he tells you to YOU WILL PASS..its a guarantee..as a person he is a very nice prof. and not like one certain prof who is just a pompous jerk!!! Total opposite..he wants you to learn and not struggle. Take him!", + "pos": 0.096, + "neu": 0.761, + "neg": 0.143, + "_id": { + "$oid": "6711d791cd60fca157e60b41" + } + }, + { + "text": "Nice guy. Doesn't take long grading papers anymore. Cool class and material. Is late but thats good because you can come in late.\r Laid back also a plus. The myth is that he only gives A's, don't know if thats true though. Plus I don't think his a hippie, I think his a heavy metal dude. Alot of the kids in this class are heavy metal dudes.", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b42" + } + }, + { + "text": "Benitez makes it possible to learn allot of philosophy without even realizing it. He is Very knowledgeable about almost every aspect of philosophy and can articulate the material very well. He is very casual, but very informative. It is now after I took his course that i'm noticing how much i got out of it. Don't worry about your grade, just learn", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b43" + } + }, + { + "text": "this professor is easy. i took his philosophy in animal course(not rational animal). he is late all the time, at least 15 minutes, and he is a slow grader. During the whole course i have never got back any grade of my 4 papers, and its been two months after the course i finaly got my grade. lucky its an A.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b44" + } + }, + { + "text": "He is just too irresponsible. He is always late and you wont believe that he hasnt posted the grades even one month after taking the final exam. he is a good teacher, but he stinks and comes late to class", + "pos": 0.045, + "neu": 0.853, + "neg": 0.103, + "_id": { + "$oid": "6711d791cd60fca157e60b45" + } + }, + { + "text": "he's not a bad professor but it mainly depends on who ur TA is cuz they grade all ur work. DON'T TAKE TUDOR he's the worst. but overall the class is cool nd he explains everything well. the tests are pretty simple too.", + "pos": 0.213, + "neu": 0.685, + "neg": 0.102, + "_id": { + "$oid": "6711d791cd60fca157e60b46" + } + }, + { + "text": "Easy professor, just do all the work and you'll certain to get an A. Just do not phil recitation with Tudor. Worst TA ever.", + "pos": 0.166, + "neu": 0.698, + "neg": 0.136, + "_id": { + "$oid": "6711d791cd60fca157e60b47" + } + }, + { + "text": "The stereotypical hippie. The class was interesting. However, he takes forever to grade homeworks and he always comes 20 minutes late. It hurts to say this since he's a cool guy but DO NOT take him.", + "pos": 0.091, + "neu": 0.856, + "neg": 0.053, + "_id": { + "$oid": "6711d791cd60fca157e60b48" + } + }, + { + "text": "Professor is a fair grader. Only two exams, a midterm and final which are both open book. If you need help the Professor will come in earlier or on the weekends.", + "pos": 0.147, + "neu": 0.853, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b49" + } + }, + { + "text": "Pros: Smart, Very Clear, Easy grader, Super interesting. Open book mid term and final. Cons: Way too laid back, chronically late, not particularly challenging. Dumbed down the class too much for all the people that were not getting it. Should try taking his work and us his students more seriously.", + "pos": 0.278, + "neu": 0.664, + "neg": 0.058, + "_id": { + "$oid": "6711d791cd60fca157e60b4a" + } + }, + { + "text": "he's very easy going and even too relaxed (doesn't return hw's and a slow grader), but he's interesting and loves to talk to the class. he's pretty easy, but w/ all the slack he cuts, he actually ends up following a strict grading policy as on the syllabus in the end. then again - you can actually retake the same exam if you don't like your grade.", + "pos": 0.245, + "neu": 0.691, + "neg": 0.064, + "_id": { + "$oid": "6711d791cd60fca157e60b4b" + } + }, + { + "text": "Very insightful classroom discussions and he is always willing to help. His quick wit injects life into what could be a very dull core class and his passion for philosophy is simply infectious.", + "pos": 0.147, + "neu": 0.775, + "neg": 0.077, + "_id": { + "$oid": "6711d791cd60fca157e60b4c" + } + }, + { + "text": "Encourages good class discussions. At first I thought he just liked to hear him self talk, but by the end of the semester I was impressed with and respected him. Has that scholarly-philosopher look with the long hair, etc. Definately holds your interest.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b4d" + } + }, + { + "text": "Really smart, funny, and engaging. Gets a little sidetracked sometimes, but always interesting. And great dimples.", + "pos": 0.577, + "neu": 0.423, + "neg": 0.0, + "_id": { + "$oid": "6711d791cd60fca157e60b4e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d791cd60fca157e60b4f" + } + }, + { + "text": "Prof. Benitez was great at making some really stodgy material very interesting. Great class discussions. It can be a hard course if you don't have a head for philosophy. But, you'll learn a lot with Prof. Benitez.", + "pos": 0.175, + "neu": 0.796, + "neg": 0.029, + "_id": { + "$oid": "6711d791cd60fca157e60b50" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d792cd60fca157e60b52" + }, + "professor_name": "Ainoa Inigo", + "rating": 4.5, + "department": "Languages department", + "comments": [ + { + "text": "Those students will take a Spanish class. PLEASE DO NOT TAKE HER SHE WILL NOT GIVE YOU THE GRADE YOU DESERVE. She would tell you that everything is okay, but nothing is okay and at the end of the semester she would give you a bad grade. Then she would tell you it is your fault and the lab class everything you do there it would not count.", + "pos": 0.045, + "neu": 0.821, + "neg": 0.134, + "_id": { + "$oid": "6711d792cd60fca157e60b53" + } + }, + { + "text": "the best ever !!!!!", + "pos": 0.641, + "neu": 0.359, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b54" + } + }, + { + "text": "Such a great woman and such a great teacher, Would taker her class 100 times over", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b55" + } + }, + { + "text": "One of the best professors you will ever have. Not difficult if you pay attention, she ends up helping you a lot if you need it. She's amazing!!", + "pos": 0.346, + "neu": 0.617, + "neg": 0.038, + "_id": { + "$oid": "6711d792cd60fca157e60b56" + } + }, + { + "text": "She was a very helpful professor, she knew her stuff and knows how to teach and make everyone understand at their own pace. The only problem, was that the class felt like a kindergarten class. Every one had to move their chairs into a circle and we go around the class answering questions and readying from the book. Other than that she was great!", + "pos": 0.137, + "neu": 0.825, + "neg": 0.037, + "_id": { + "$oid": "6711d792cd60fca157e60b57" + } + }, + { + "text": "She is the best professor ever....she's very patient and cares very much about her students and their understanding of the spanish language. I would definitely take her again...I hope she teaches span 225! She's the best professor I ever had!! x", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b58" + } + }, + { + "text": "Very helpful and patient!!! She is very clear on the topics and very willing to help students...Take her, you wouldn't regret it!", + "pos": 0.409, + "neu": 0.591, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b59" + } + }, + { + "text": "I love this professor! She is beautiful, understanding, and innocent! She is so patient when teaching! Take her! You will learn so much!", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b5a" + } + }, + { + "text": "She is the greatest, most helpful teacher. I've learned so much from her class and will try to take classes from her in the future.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b5b" + } + }, + { + "text": "WONDERFUL!! She teaches Spanish very well, and also creates a great atmosphere in class. She pays very close attention to students at all levels, she's accessible and pleasant.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b5c" + } + }, + { + "text": "Great professor. Extremely helpful, extremely approachable and not a bad looking lady. If you put in some effort, you'll pass the class.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b5d" + } + }, + { + "text": "Amazing teacher. Cured my fear of going Spanish class. Shes smart, easy-going, and very helpful. Beautiful too.", + "pos": 0.475, + "neu": 0.414, + "neg": 0.11, + "_id": { + "$oid": "6711d792cd60fca157e60b5e" + } + }, + { + "text": "She made coming to class every morning worth it with the amount of detail and attention she pays towards the class. She gives you such an understanding of Spanish without it feeling like work. Her tests are hard, but worth it if you study for them. I found her extremely attractive but that's not a distraction... okay, maybe a little.", + "pos": 0.158, + "neu": 0.756, + "neg": 0.086, + "_id": { + "$oid": "6711d792cd60fca157e60b5f" + } + }, + { + "text": "thank you", + "pos": 0.714, + "neu": 0.286, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b60" + } + }, + { + "text": "One of the best spanish professors in City College. She is very patient and will not rush you to answer a question. She understand someone students are shy and will not force participation. Her exams are fair and she prepares you well for them. If you're not good at learning a second language, you should take her classes!", + "pos": 0.134, + "neu": 0.799, + "neg": 0.066, + "_id": { + "$oid": "6711d792cd60fca157e60b61" + } + }, + { + "text": "She is a very good prof.and she makes the work very understandable and easy.As long as you show effort you'll do fine", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b62" + } + }, + { + "text": "SHE SURPRISED ME WITH AN F, I WAS DOING GOOD IN HER CLASSES THEN IN THE END I FAILED.", + "pos": 0.199, + "neu": 0.664, + "neg": 0.137, + "_id": { + "$oid": "6711d792cd60fca157e60b63" + } + }, + { + "text": "She is cute and a great teacher.Very Lenient and gives good grades", + "pos": 0.602, + "neu": 0.398, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b64" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d792cd60fca157e60b66" + }, + "professor_name": "Alexander Gambaccini", + "rating": 4.1, + "department": "History department", + "comments": [ + { + "text": "I took him my freshman year and he goes over the assigned reading every day so definitely do it and he also gives pop quizzes on them. Also don't worry he'll be flexible if u don't do it by dropping ur lowest score but it won't happen constantly, so don't forget to do ur reading.", + "pos": 0.131, + "neu": 0.839, + "neg": 0.03, + "_id": { + "$oid": "6711d792cd60fca157e60b67" + } + }, + { + "text": "Great professor who is very knowledgeable and caring. Lectures are very engaging and detailed, even though I'm someone who isn't particularly into history. Clear grading criteria and very generous with grades with good feedback. The class is very heavy on the daily ~20 page reading assignments, with random pop quizzes on them, but its very doable.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b68" + } + }, + { + "text": "One of the best professors I had, with clear grading criteria, and great lectures, is very understanding, and willing to help a student out. However he won't just hand out an A to you, the class has a lot of reading material, and he highly values participation. I highly recommend Prof Gambaccini", + "pos": 0.289, + "neu": 0.672, + "neg": 0.039, + "_id": { + "$oid": "6711d792cd60fca157e60b69" + } + }, + { + "text": "This class is really worth it and not difficult as people say. Professor Gambaccini is really nice and although the readings are a lot and he occasionally assigns in-class quizzes based on some readings, he is very generous with the quiz questions and also grading the assigned essay assignments. His lectures are informative and entertaining.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b6a" + } + }, + { + "text": "Professor G was a G! He knows so much about history. People who complain are those who are lazy to not read the texts, which are actually not bad and full of important stuff relating to that portion of history. Take him", + "pos": 0.097, + "neu": 0.793, + "neg": 0.11, + "_id": { + "$oid": "6711d792cd60fca157e60b6b" + } + }, + { + "text": "I honestly enjoyed having this class. While he is harsh on grading and gives weekly readings and at times, pop quizzes, Gambaccini is a laid-back professor who you can get on his good side. I'd recommend taking this class only if you're okay with reading a lot and writing as well.", + "pos": 0.251, + "neu": 0.703, + "neg": 0.046, + "_id": { + "$oid": "6711d792cd60fca157e60b6c" + } + }, + { + "text": "Professor Gambaccini is a really good professor. He is willing to work with you if you just ask for his help. It is really important to do the readings on his syllabus, as he bases daily quizzes about them, and it makes all of the writing assignments easier. Participation matters to him, even if you don't do well he will work with you if you try.", + "pos": 0.161, + "neu": 0.814, + "neg": 0.025, + "_id": { + "$oid": "6711d792cd60fca157e60b6d" + } + }, + { + "text": "Professor Gambaccini is so underrated. This man is a breathe of fresh air! He only got negative reviews from those whom are obligated to take his class for general education credits, but coming from those who are history major he is nothing but a delightful person who contains deep knowledge of early American history. Take him and do the work!", + "pos": 0.051, + "neu": 0.843, + "neg": 0.106, + "_id": { + "$oid": "6711d792cd60fca157e60b6e" + } + }, + { + "text": "I wouldn't recommend this class unless you like reading 15 - 30 pages for every class. He randomly gives quizzes and his teaching isn't very good. If you don't have any general knowledge for this class and you suck at writing, you'll def. do bad in his class.", + "pos": 0.044, + "neu": 0.759, + "neg": 0.197, + "_id": { + "$oid": "6711d792cd60fca157e60b6f" + } + }, + { + "text": "Don't take his class, he gives pop quizzes and gives horrible feedbacks.", + "pos": 0.0, + "neu": 0.759, + "neg": 0.241, + "_id": { + "$oid": "6711d792cd60fca157e60b70" + } + }, + { + "text": "After taking this class, I realized that I am never ever gonna take another history class in my life. Every day he will give you at least 20-30 pages to read, and you will be quiz on them in next class. He is a good teacher, but he give tons of work that can be overwhelming. Please for your sake, don't take the class if you don't like reading.", + "pos": 0.067, + "neu": 0.897, + "neg": 0.036, + "_id": { + "$oid": "6711d792cd60fca157e60b71" + } + }, + { + "text": "Professor Alexander is an easy going guy who cares about the students and knows what he is teaching. He is soft and well respected.", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b72" + } + }, + { + "text": "He is a nice professor but i was always lost in his class. I felt as though he would jump from topic to topic without any correlation to the other. He would get frustrated that no one spoke in class but not many people understood the lectures. i did like the textbook was free. Every week there is a quiz based on the readings.", + "pos": 0.123, + "neu": 0.744, + "neg": 0.133, + "_id": { + "$oid": "6711d792cd60fca157e60b73" + } + }, + { + "text": "By far one of the most boring professors I've ever had in college. He assigns a 15-30 page reading every class which talks about god knows what, and then complains when no one participates in a discussion as if we're historians. He seems like a pretty chill guy but his expectations are ridiculous. Easy B+/A- tho. I hope you see this, Alexander.", + "pos": 0.176, + "neu": 0.711, + "neg": 0.113, + "_id": { + "$oid": "6711d792cd60fca157e60b74" + } + }, + { + "text": "Great class! If you make sure to do the work you will get a good grade. You only have to write two papers throughout the semester plus one quiz each week based on the readings. For the final we had a take-home with three essays.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b75" + } + }, + { + "text": "Very good professor. A lot of reading. Regular quizzes, but they're no challenge. 3 papers to write about the readings, but they are very short, and you get to try as many times as there are readings. Ask for the take-home final and take that seriously: only 3 short essays. His class requires fair commitment, but he is very good and very kind", + "pos": 0.23, + "neu": 0.726, + "neg": 0.044, + "_id": { + "$oid": "6711d792cd60fca157e60b76" + } + }, + { + "text": "Fantastic class and prof! He gave us really clear guidelines as to what the expectations were and how to do well. There were two essays we had to write based off the given readings and a midterm and final, which was three separate essays. I definitely had to work for the grade, but it wasn't difficult to do well. This prof wants to see you succeed!", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d792cd60fca157e60b77" + } + }, + { + "text": "you have to put in the work. course readings are important becuase we had one quiz every week. like 3 papers all semester and choice between take home/ or in class final. lots of info and reading so its a little hard to decipher between unnecessary info. prof wants to help so reach out and work hard. a good grade is possible", + "pos": 0.165, + "neu": 0.798, + "neg": 0.036, + "_id": { + "$oid": "6711d792cd60fca157e60b78" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d793cd60fca157e60b7a" + }, + "professor_name": "Reza Khayat", + "rating": 3.4, + "department": "Chemistry department", + "comments": [ + { + "text": "you will learn more than just contents and very generous with grading", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b7b" + } + }, + { + "text": "Insanely smart guy and is very nice about answering questions. You learn a lot about public speaking how to read scientific article however, there is not a of learning biochem in this course. It does make the course much easier but sometimes I wish I was learning biochemistry rather than just presenting articles.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b7c" + } + }, + { + "text": "Professor Reza's class is probably the most difficult undergrad biochem course in ccny. I took his class a while back in person. You need to actually know the material. Theres no shortcuts cause his exams are short response. Idk why he grades the class on a bell curve tho. The atmosphere is toxic from the competition.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d793cd60fca157e60b7d" + } + }, + { + "text": "Lots of info given but unrelated to the exams. Bizarre grading policy and hard to understand. Failure to respond to my emails promptly. Not good at explaining questions during lectures.", + "pos": 0.0, + "neu": 0.682, + "neg": 0.318, + "_id": { + "$oid": "6711d793cd60fca157e60b7e" + } + }, + { + "text": "Be in the top 8 highest if you want an A. He will curve on a bell and only 8 will get A Final exam is difficult dont depend on it as your drop grade DO THE HOMEWORK. Exams are very time pressured. You will most likely cry during and after. Go to office hours otherwise youll regret it. Focus on slides and textbook, good luck you WILL need it", + "pos": 0.108, + "neu": 0.735, + "neg": 0.156, + "_id": { + "$oid": "6711d793cd60fca157e60b7f" + } + }, + { + "text": "Hard class but he cares. Put in the work and you'll be fine . Record his lectures and do the practice problems.", + "pos": 0.214, + "neu": 0.622, + "neg": 0.164, + "_id": { + "$oid": "6711d793cd60fca157e60b80" + } + }, + { + "text": "Speedy lectures. Lectures were irrelevant to homework and exams. A bizarre way of grading. Constantly told us \"you're supposed to know this and that\". Don't recommend this professor. Good luck.", + "pos": 0.162, + "neu": 0.716, + "neg": 0.121, + "_id": { + "$oid": "6711d793cd60fca157e60b81" + } + }, + { + "text": "Hes a really good professor and hes nice too. The exams are difficult short response questions and the only way to pass is if you know your stuff. Its a lot of memorization and some of the exam questions are not straight forward. He also curves so most people get Bs and he tries his best to tell us what to study for.", + "pos": 0.141, + "neu": 0.802, + "neg": 0.058, + "_id": { + "$oid": "6711d793cd60fca157e60b82" + } + }, + { + "text": "Hes nice and really good at teaching, but his tests are insanely hard. Knowing the basics for biochemistry isnt enough. You have to really know your stuff because his tests are detailed short response. 12 problems 2 from the hw and you can omit 2 questions. If you can take a easier professor then go ahead, but you will learn a lot from him.", + "pos": 0.107, + "neu": 0.821, + "neg": 0.072, + "_id": { + "$oid": "6711d793cd60fca157e60b83" + } + }, + { + "text": "I took him a few years ago. His exams are hit or miss b/c it's only a few questions. He harbored a viciously competitive environment since your grade was based on your class rank (ie if u get 60 but ur 8th rank u will ace - if you get 90, but 15th rank, you will get B or C. All the ppl who aced are now in or completed med school. You can do it!", + "pos": 0.017, + "neu": 0.941, + "neg": 0.042, + "_id": { + "$oid": "6711d793cd60fca157e60b84" + } + }, + { + "text": "He's amazing, he's thorough you know exactly what to expect on exams and he is relatively kind. Take him you will actually learn something. Do the homework you can find the answers on chegg if you don't understand them go to his office hours he will explain it to until you get it. The tests are exactly from his lectures. DO NOT BE LAZY you'll get A", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b85" + } + }, + { + "text": "Cold person. Not sure if he cares about teaching.", + "pos": 0.251, + "neu": 0.585, + "neg": 0.164, + "_id": { + "$oid": "6711d793cd60fca157e60b86" + } + }, + { + "text": "a decent professor. cares in the sense that he allows time for questions pretty often which is helpful. his grading on exams is really weird and bad though, not clear about what exactly he wants written in his exams. homework is necessary for exams.", + "pos": 0.164, + "neu": 0.692, + "neg": 0.145, + "_id": { + "$oid": "6711d793cd60fca157e60b87" + } + }, + { + "text": "4 Exams each is 8 questions--4 from HW and 4 from lecture. He bell-curves so only 10 people get A's and the next 10 get B's etc. He's a strict grader and exam avg was low 50s (C). He is kind of cold and it seems like just a job for him. If you put massive work in (too much info) you'll be able to at least get a B.", + "pos": 0.034, + "neu": 0.937, + "neg": 0.029, + "_id": { + "$oid": "6711d793cd60fca157e60b88" + } + }, + { + "text": "Very inexperienced.He needs to go learn how to teach.Biochem is a hard course.His curving and grade computing is so confusing that even he cant understand it.Long story short:TAKE CALHOUN!", + "pos": 0.0, + "neu": 0.866, + "neg": 0.134, + "_id": { + "$oid": "6711d793cd60fca157e60b89" + } + }, + { + "text": "He was awesome! He cares about his students. He gave review sheets and assigned HW problems and the exams were from the review sheet topics and HW. Biochem is not easy. So don't expect to just chill in class and get an A no matter how easy the professor is. Study and know your stuff and you can get an A. Questions are straight forward. He curves.", + "pos": 0.156, + "neu": 0.766, + "neg": 0.079, + "_id": { + "$oid": "6711d793cd60fca157e60b8a" + } + }, + { + "text": "I learned a lot of Biochemistry from this class. He gave study guides which helped to prepare for his tests. He asked us to vote for either three tests (which didn't have to include the final) or for four tests for our grade calcs. The class voted for 3, but he warned us that he would always curve which might not help us if the class did well.", + "pos": 0.036, + "neu": 0.888, + "neg": 0.076, + "_id": { + "$oid": "6711d793cd60fca157e60b8b" + } + }, + { + "text": "More of a statistician than a biochem professor. Grades based solely on calculations and does not take into account students growth. Read straight from the slides. Exams were always really long, took atleast 2 hours everytime. Uses a curve that can actually hurt your grade. Take Calhoun instead.", + "pos": 0.085, + "neu": 0.851, + "neg": 0.064, + "_id": { + "$oid": "6711d793cd60fca157e60b8c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d793cd60fca157e60b8e" + }, + "professor_name": "Matthew Carter", + "rating": 3.4, + "department": "Music department", + "comments": [ + { + "text": "Meh. Wish he good give better instructions on ear training assignments. His feedback could also be better. Then again, this would've been a lot better if this was an in person class.", + "pos": 0.344, + "neu": 0.625, + "neg": 0.031, + "_id": { + "$oid": "6711d793cd60fca157e60b8f" + } + }, + { + "text": "Overall a good prof with clear grading criteria. So long as you follow his rules you should be fine. class work is straightforward and pretty easy. I do pray you get placed in a competent group though as that can make or break your grade for the class. Overall I wouldn't mind taking his class again.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b90" + } + }, + { + "text": "Great and thorough class. Not a fan of the group projects but whatever it's not the end of the world. However, if you have difficulty of any kind with group work then I absolutely would not recommend it because it's a major part of your grade.", + "pos": 0.128, + "neu": 0.735, + "neg": 0.137, + "_id": { + "$oid": "6711d793cd60fca157e60b91" + } + }, + { + "text": "He gave me a bad grade for the semester even tho I score higher in final and midterm but he still gave me a low for the semester and grading rubric is terrible plus I never missed a class", + "pos": 0.05, + "neu": 0.755, + "neg": 0.195, + "_id": { + "$oid": "6711d793cd60fca157e60b92" + } + }, + { + "text": "Trash", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b93" + } + }, + { + "text": "Took him for Popular Music (MUS10000) and he was fair and good professor! They assigned weekly HW and had a paper due once a month or so, and even then the papers aren't too hard. They do their best with what they're supposed to teach and even if the topics are a bit boring, they do a good job of trying to make it interesting", + "pos": 0.246, + "neu": 0.724, + "neg": 0.029, + "_id": { + "$oid": "6711d793cd60fca157e60b94" + } + }, + { + "text": "Extremely difficult to work with due to his assignments he assigns. The course does not train your ears, only repeats material learned from voice leading and aura fundamentals. Feedback given from him will be unclear at times and will cause you to dislike it. His course completely goes against the curriculum that is supposed to be taught. Bad class", + "pos": 0.0, + "neu": 0.835, + "neg": 0.165, + "_id": { + "$oid": "6711d793cd60fca157e60b95" + } + }, + { + "text": "As a person who had no prior knowledge of music, the professor those a fantastic job by providing you with tools that will help you understand the lectures are interactive and interesting; however, it may be hard to comprehend if you're someone who has no prior knowledge about music. Regarding the work, it is easy and doable!", + "pos": 0.179, + "neu": 0.735, + "neg": 0.085, + "_id": { + "$oid": "6711d793cd60fca157e60b96" + } + }, + { + "text": "As a person who loves and appreciates music, I'm glad I took this course with professor carter, he is very passionate and knowledgeable about teaching music, his class is not the easiest but if you do the work you will get an A, Just do the readings and the listenings and take notes in class and you'll be good.", + "pos": 0.188, + "neu": 0.787, + "neg": 0.025, + "_id": { + "$oid": "6711d793cd60fca157e60b97" + } + }, + { + "text": "As a introductory level course, this class is a bit harder. But to get an A, take great notes from the lectures and also, there are listening tests so pay attention to the class. This is an interesting class. Just study the materials he talks about in the class. And there are also bonus questions in the exams which help a lot.", + "pos": 0.228, + "neu": 0.742, + "neg": 0.03, + "_id": { + "$oid": "6711d793cd60fca157e60b98" + } + }, + { + "text": "Simple and usual class . Not easy an \"A\" but just do the work and take notes and its a definite \"B\" Work Hard and you will get an \"A\"", + "pos": 0.08, + "neu": 0.819, + "neg": 0.1, + "_id": { + "$oid": "6711d793cd60fca157e60b99" + } + }, + { + "text": "Thanks to Prof. Carter I have learned to appreciate jazz music and Bach. The papers were easier than the exams; there was a lot of literature and listening.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b9a" + } + }, + { + "text": "I think he's a fantastic professor. I've learned a lot and that's because he pushes us (but is still super nice!).", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b9b" + } + }, + { + "text": "He is actually not that bad. He is just like any professor and by no means is an easy A, but doable. Just study, keep up with the readings and listenings and you will have no problem on his quizzes. This is college after all, nothing comes easy. He also gives bonus points on EVERY quiz/test to give you that extra passing edge. He's also chill.", + "pos": 0.172, + "neu": 0.767, + "neg": 0.061, + "_id": { + "$oid": "6711d793cd60fca157e60b9c" + } + }, + { + "text": "Way to hard for a 101 class. Expects way too much out of you. Avoid", + "pos": 0.0, + "neu": 0.783, + "neg": 0.217, + "_id": { + "$oid": "6711d793cd60fca157e60b9d" + } + }, + { + "text": "Expects to much for an intro of music course. A lot of work as well.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d793cd60fca157e60b9e" + } + }, + { + "text": "Hes a nice guy but theres a lot of work in the class. 5 quizzes, mid term, final, and 4 papers. He has listenings every week and puts them on his tests and quizzes so if you don't listen to them your screwed. He expects you to become a musical genius. He's a nice guy i wouldn't take him again but he's probably better than the other music teachers.", + "pos": 0.12, + "neu": 0.825, + "neg": 0.055, + "_id": { + "$oid": "6711d793cd60fca157e60b9f" + } + }, + { + "text": "Good professor. Funny and doesn't take the class too seriously.", + "pos": 0.4, + "neu": 0.483, + "neg": 0.117, + "_id": { + "$oid": "6711d793cd60fca157e60ba0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d794cd60fca157e60ba2" + }, + "professor_name": "Denise Hurd", + "rating": 4.2, + "department": "Theater department", + "comments": [ + { + "text": "Professor Hurd is the BEST at what she does. She is an easy grader for the productions papers required (3 or 4). She is hilarious & very easy to engage with so class participation shouldn't be at all hard. Had her for THRT 131 & you cant go wrong with her. She makes the class super enjoyable & not as dragging. Love her!", + "pos": 0.311, + "neu": 0.632, + "neg": 0.057, + "_id": { + "$oid": "6711d794cd60fca157e60ba3" + } + }, + { + "text": "I would definitely take her class. She gives clear feedback, little to no work besides the acting scenes, participation matters but come on it is an acting class after all. If you have an issue, she makes sure to solve it as quickly as possible, very understanding!", + "pos": 0.18, + "neu": 0.791, + "neg": 0.028, + "_id": { + "$oid": "6711d794cd60fca157e60ba4" + } + }, + { + "text": "Professor Hurd is very open and very considerate of all her students. All the homework were simply discussion board responses and the play reviews are an easy A as well as any presentations.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60ba5" + } + }, + { + "text": "very chill class and the finale is just a fully memorized monologue and a fully memorized scene with a partner. Make sure to rehearse!! You have to attend four production play in the department. the ticket is like five dollars. only if you want to stay late should fine. four play are 20% of grade", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60ba6" + } + }, + { + "text": "Her class is very engaging and not difficult at all. If you participate and do all of the assignments you should be able to pass easily. A very chill class and the final is just a fully memorized monologue and a fully memorized scene with a partner. Make sure to rehearse!!", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60ba7" + } + }, + { + "text": "She really cares, some of her different exercises are a little stupid but for the most part they are fun and help you understand the actions you are doing :) Do not take this class for any easy A because she will make you work as well as the other kids will not respect you because you are wasting their time.", + "pos": 0.253, + "neu": 0.637, + "neg": 0.11, + "_id": { + "$oid": "6711d794cd60fca157e60ba8" + } + }, + { + "text": "Denise is everything I expected from an acting teacher. I am serious about acting so I loved her hands on assignments, improv sessions, and the final that was a scene with my partner. DON'T go here if you are just looking for an easy A Intro class. DO go here if you are looking for a fair A and want to learn acting. Grades based on participation.", + "pos": 0.144, + "neu": 0.838, + "neg": 0.018, + "_id": { + "$oid": "6711d794cd60fca157e60ba9" + } + }, + { + "text": "Awesome professor ! MY favorite class this semester. She makes everyone feel comfortable and you will definitely have a lot of fun! easy A.", + "pos": 0.525, + "neu": 0.475, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60baa" + } + }, + { + "text": "Attendence is big in her class. If she gives assignment do it. Practice it, she is very critical of that. If you are absent more than 3 tims she'll drop you. She HATES late comers. She doesn't say too much about it but at the end when you get your grade, you will know why!", + "pos": 0.0, + "neu": 0.897, + "neg": 0.103, + "_id": { + "$oid": "6711d794cd60fca157e60bab" + } + }, + { + "text": "She talks too much about her personal life. At-least she is not dried out. She still works. She gives TONS of advice about the business. She's not the best, but not the worst. A 5 out of 10. Yet, she's understand with grading.", + "pos": 0.093, + "neu": 0.861, + "neg": 0.046, + "_id": { + "$oid": "6711d794cd60fca157e60bac" + } + }, + { + "text": "fun and interesting, knowledgeable and resourcefull also I found her to be brutally honest which is important to the actor", + "pos": 0.369, + "neu": 0.498, + "neg": 0.133, + "_id": { + "$oid": "6711d794cd60fca157e60bad" + } + }, + { + "text": "Her people skills are excellent! She has a way of making everyone feel comfortable. Her teaching style was very interesting. I felt as though I had methodically matured into a real life actor. She helped me to let go of inhibitions, and believe me, that's not easy!", + "pos": 0.186, + "neu": 0.74, + "neg": 0.074, + "_id": { + "$oid": "6711d794cd60fca157e60bae" + } + }, + { + "text": "Great Professor!", + "pos": 0.815, + "neu": 0.185, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60baf" + } + }, + { + "text": "When I first met her she was nuts a few years later I had her for class and she seemed a little shy and only talked to me because she was paid to be professional. After class she'll talk to you on occassion. THe class is over crowded but this is not her fault.", + "pos": 0.051, + "neu": 0.896, + "neg": 0.053, + "_id": { + "$oid": "6711d794cd60fca157e60bb0" + } + }, + { + "text": "Wonderful teacher. She makes the class very entertaining. She has a good sense of humor. I really recommend her for this class because she is extremely helpful.", + "pos": 0.458, + "neu": 0.542, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60bb1" + } + }, + { + "text": "Winded, menoposal Dr. Jekel and Mr. Hyde.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60bb2" + } + }, + { + "text": "Great speech professor, makes class fun.I highly recommmend her for this class.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60bb3" + } + }, + { + "text": "Class is fun, she can be very creative, however when she's PMS-ing, look out, she be passive agrresive.", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60bb4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d794cd60fca157e60bb6" + }, + "professor_name": "Jenny Horne", + "rating": 2.7, + "department": "English department", + "comments": [ + { + "text": "Even though she has given a lot of work, her work was still easy. She also gives opportunity to revise the papers to increase your grades. She is also willing to help and her lectures are good. She could be strict at times and sometimes she could have a bad attitude.", + "pos": 0.219, + "neu": 0.725, + "neg": 0.056, + "_id": { + "$oid": "6711d794cd60fca157e60bb7" + } + }, + { + "text": "Honestly, this class is the worst I've taken because of the her. I remember one time me and a group member were finishing up our group assignments and had literally 1 questions left to finish. She saw us working on it, and without a word packed her things, got up and left. She didn't bother giving us a warning and gave us a 0 for the assignment.", + "pos": 0.067, + "neu": 0.82, + "neg": 0.113, + "_id": { + "$oid": "6711d794cd60fca157e60bb8" + } + }, + { + "text": "She'll give you a big assignment every week along with questions that go along with a reading every night. If you take her, good luck trying to balance her work load with all of your other classes. I'm not doing as well as I should in other classes because everyday is solely consumed by her assignments. I've never despised a professor so much.", + "pos": 0.118, + "neu": 0.855, + "neg": 0.026, + "_id": { + "$oid": "6711d794cd60fca157e60bb9" + } + }, + { + "text": "Well, what can I say? Professor Horne is a tough cookie. She's nice, but definitely keeps her distance from students. This class is NOT an easy A. Lots of reading, assignments every night, and participation is absolutely required. If you didn't do the reading, expect to get called out for it. This class helped improve my writing skills.", + "pos": 0.161, + "neu": 0.774, + "neg": 0.065, + "_id": { + "$oid": "6711d794cd60fca157e60bba" + } + }, + { + "text": "I have taken 3 different English courses in varies CUNY schools and I she is the toughest one of all. She will make you work for a passing grade. If you have no time to read everyday and have an assignment due every class, DO NOT TAKE her. She is very dedicated to her work, she expects the same from the student.", + "pos": 0.05, + "neu": 0.897, + "neg": 0.053, + "_id": { + "$oid": "6711d794cd60fca157e60bbb" + } + }, + { + "text": "This was easily one of the hardest courses i took, however the professor was very helpful. She is a strict grader and expects a lot of your time but she clearly states what is expected of you for each assignment. The course is easy for those who try, do not take this professor if you want an easy A.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60bbc" + } + }, + { + "text": "Rude, impossible to ask her anything in class, \"come to office hours\" is her only response. Gives multiple assignments each class, collects 1 at random so forced to do it all. Never used anything I learned in this class.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d794cd60fca157e60bbd" + } + }, + { + "text": "Extremely hard and expect tons of homework. The highest grade on the paper was B+ and only 2 students got it, 8 failed and 7 got D. As many students, I ended up dropping from her class. Don't take her!", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d794cd60fca157e60bbe" + } + }, + { + "text": "She is very tough. There were about 25-30 students in the class. ONLY 12 passed!! the rest either dropped the course or failed. I was concentratiing on this class so much, and laking off other important classes such as calc 1 because of the extremely work that was assigned for this course. Anyway, i ended up dropping this course and failing calc.", + "pos": 0.026, + "neu": 0.843, + "neg": 0.131, + "_id": { + "$oid": "6711d794cd60fca157e60bbf" + } + }, + { + "text": "She is a horrible professor!!! DONT EVER TAKE HER", + "pos": 0.0, + "neu": 0.646, + "neg": 0.354, + "_id": { + "$oid": "6711d794cd60fca157e60bc0" + } + }, + { + "text": "Very difficult professor with a large course load. Expect to submit papers and projects on a weekly basis. If you want to do well, never miss an assignment and always do revisions. I hated this class all semester to the very last day but i have to admit that it made me a conscientious writer.", + "pos": 0.103, + "neu": 0.822, + "neg": 0.075, + "_id": { + "$oid": "6711d794cd60fca157e60bc1" + } + }, + { + "text": "The worst professor I have ever had in my life. she is very rude and strict. If you want to fail and mess up your GPA, go head and take her!!... you have to spend your whole life doing her work and will never get sufficient grade.", + "pos": 0.023, + "neu": 0.733, + "neg": 0.244, + "_id": { + "$oid": "6711d794cd60fca157e60bc2" + } + }, + { + "text": "she is hard hard hard...nothing else but hard...she has no life at all and disrespectful...she will give u a lot of papers to read and write response..very annoying teacher n too strict..dont take her..if u have a life thn dont tke her", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d794cd60fca157e60bc3" + } + }, + { + "text": "Very harsh and rude towards students. Her expectations are often unrealistic in terms of performance and the amount of work students are to complete for class. For an introductory course she expects beyond professional work. Overall I learned very little despite being one of the few to do well in the class (I got an A-.)", + "pos": 0.034, + "neu": 0.861, + "neg": 0.105, + "_id": { + "$oid": "6711d794cd60fca157e60bc4" + } + }, + { + "text": "She is strict when it comes to teaching. She likes things done in a certain way. I always felt intense in her class. The class is just an introductory class, however, she expects students to write at a much higher level. My advice to students who will have her in the future is that they should NOT miss an assighnment. Besides that, she is nice.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60bc5" + } + }, + { + "text": "a good person and a good teacher. but the only thing is she is strict, students can hardly get good grades from her. i studied most of time for her course, and only got a B. if you want good grade, do not take her class.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d794cd60fca157e60bc6" + } + }, + { + "text": "I was not too fond of her.", + "pos": 0.0, + "neu": 0.714, + "neg": 0.286, + "_id": { + "$oid": "6711d794cd60fca157e60bc7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d795cd60fca157e60bc9" + }, + "professor_name": "Gabriel Haslip Vierra", + "rating": 3.9, + "department": "Ethnic Studies department", + "comments": [ + { + "text": "He's okay. If you read the readings you'll do good in the class. Participation is credited too, so it's good to do so. Class gets boring sometimes because of the silence. But he knows his subject really well so if you ask questions he can give you answers.", + "pos": 0.191, + "neu": 0.778, + "neg": 0.031, + "_id": { + "$oid": "6711d795cd60fca157e60bca" + } + }, + { + "text": "Interesting class. Very knowledgeable and easy going instructor. Flexible with assignments. Had an answer for just about anything even if it was an issue not connected to the issues talked about in the course--amazing at times.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bcb" + } + }, + { + "text": "Very knowledgeable professor, made the course interesting, communicated very well with students, was sensitive to student needs, required the work normally expected of Honors College students. Was distracted at times by administrative work for the College, but would apologize for this. I learned a lot about the different people who live in NYC.", + "pos": 0.128, + "neu": 0.842, + "neg": 0.03, + "_id": { + "$oid": "6711d795cd60fca157e60bcc" + } + }, + { + "text": "I had this professor for my Macaulay Honors Peopling of New York course... He was bored and boring. Yeah, he grades ridiculously easily, and yes, he barely takes attendance... But he does expect you to complete a lot of work and a LOT of reading, and he managed to make a really cool class into a total drag", + "pos": 0.159, + "neu": 0.727, + "neg": 0.114, + "_id": { + "$oid": "6711d795cd60fca157e60bcd" + } + }, + { + "text": "This professor is incredibly amazing at times. He seems to know just about everyhting when it comes to the subject matter and many other things, but he uses no notes. It's all in his head. He was also easy going, but don't mess with him. You'll lose out.", + "pos": 0.173, + "neu": 0.718, + "neg": 0.109, + "_id": { + "$oid": "6711d795cd60fca157e60bce" + } + }, + { + "text": "I found Professor Haslip-Viera to be a very unconcerned professor. He seemed very disinterested in the class, and didn't even teach half the semester - each day, he would randomly choose a student to present a reading. I don't feel I learned a lot from him.", + "pos": 0.0, + "neu": 0.954, + "neg": 0.046, + "_id": { + "$oid": "6711d795cd60fca157e60bcf" + } + }, + { + "text": "He loves what he does, and is a good lecturer. His test are challenging, but if you read and take good notes you'll do good. He is a wonderful professor that likes to help only those students that show efforts in learning.", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bd0" + } + }, + { + "text": "A wonderful professor. Very knowledgeable and supportive of students who do the work", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bd1" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d795cd60fca157e60bd2" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d795cd60fca157e60bd3" + } + }, + { + "text": "One of the best prof in all CCNY. He brings movies and props to the class. Very interesting. Be on time, never miss a class and take notes.. He is Fair, clear, and punctual.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bd4" + } + }, + { + "text": "He's a great professor. Easily understood, well organized. Seems to know everything when it comes to history, but too nice to the lazy bums who disrupt class with stupid questions.", + "pos": 0.23, + "neu": 0.58, + "neg": 0.19, + "_id": { + "$oid": "6711d795cd60fca157e60bd5" + } + }, + { + "text": "GOOD PROFESSOR LIKE A WALKING ENCYCLOPEDIA BUT GOSH HE USES UMM LIKE CRAZY....BUT HIS TESTS ARE EASY AND THE COURSE IS VERY INTERESTING", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bd6" + } + }, + { + "text": "knowledgeable teacher, but the way he lectures is boring. readings are filled with TOO much information. often disagrees with book's author.", + "pos": 0.0, + "neu": 0.763, + "neg": 0.237, + "_id": { + "$oid": "6711d795cd60fca157e60bd7" + } + }, + { + "text": "This professor is very knowledgeable and very clear and helpful in his lectures and discussions. He's not at all boring except probably for the lazy deadheads in the class.", + "pos": 0.224, + "neu": 0.706, + "neg": 0.071, + "_id": { + "$oid": "6711d795cd60fca157e60bd8" + } + }, + { + "text": "He is very good, he knows his stuff, but he uses the word \"UMMMMM\" A LOT-this will be a bad elody in your ears.", + "pos": 0.073, + "neu": 0.763, + "neg": 0.165, + "_id": { + "$oid": "6711d795cd60fca157e60bd9" + } + }, + { + "text": "he is good,boring but good", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bda" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d795cd60fca157e60bdc" + }, + "professor_name": "Martha Perez Calderon", + "rating": 2.6, + "department": "Psychology department", + "comments": [ + { + "text": "She was one of the best in psy :) the materials were super interesting. lot of work but if you keep up with it you will do awesome. she even gives extra credit on the tests and therefore you can get over 100. don't fall behind and keep up with the reading and you will get an A! :)", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bdd" + } + }, + { + "text": "She changed my life! She is great and incredibly bright it is such a shame she is not teaching anymore... She is not only a great teacher but also caring towards students. She was very approachable in my case and helped me through some pretty hard stuff. : ) I agree with the others that say duh u r in college!", + "pos": 0.225, + "neu": 0.698, + "neg": 0.076, + "_id": { + "$oid": "6711d795cd60fca157e60bde" + } + }, + { + "text": "shes a really good professor, just make sure you do the reading, ask questions if u have any and she will be more then happy to explain it to u the best she can. highly recommanded", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bdf" + } + }, + { + "text": "she's wonderful, extremely easy, just read the book and come to class. there is no way u cant get an A", + "pos": 0.254, + "neu": 0.664, + "neg": 0.081, + "_id": { + "$oid": "6711d795cd60fca157e60be0" + } + }, + { + "text": "This is a tough class to get through, it requires a lot of reading, she strictly uses the textbook and you must make it your business not to miss a class. Overall her grading policy is fair; clear and concise. You have to be willing to do the WORK!!", + "pos": 0.13, + "neu": 0.842, + "neg": 0.028, + "_id": { + "$oid": "6711d795cd60fca157e60be1" + } + }, + { + "text": "took her psy248 class in fall 2004. she was not fair with my grading, had to complain to psy chair, Dr.king. just found out that my grade should be corrected. took me 8 months to fight with her, but it was worth it! DO NOT LET HER TO SCREW AROUND WITH YOU AND YOUR GRADES!!! COMPLAIN TO THE CHAIR, SHE IS SIMPLY NOT FAIR WITH GRADES!!!", + "pos": 0.03, + "neu": 0.758, + "neg": 0.212, + "_id": { + "$oid": "6711d795cd60fca157e60be2" + } + }, + { + "text": "complain about her every chance you get - she just keeps an intelligent, talented, dedicated, and caring teacher out of work. no way she belong in a college, EVEN the city college. She just sucks.", + "pos": 0.298, + "neu": 0.554, + "neg": 0.148, + "_id": { + "$oid": "6711d795cd60fca157e60be3" + } + }, + { + "text": "she is pretty good teacher..if u wanna listen to her..she doesn't ask much to do..and pretty easy going...i A'd her class..then..anybody can..well..almost anybody..take a shot..u won't be disappointed", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60be4" + } + }, + { + "text": "she is the worst! we must coplain about her as much as possible and they will get rid of her. she take a relatively simple class and turns it into something horrible and difficult to understand. oftentimes i thought she did not really understand it herself to begin with.and she gives bad grades.", + "pos": 0.0, + "neu": 0.779, + "neg": 0.221, + "_id": { + "$oid": "6711d795cd60fca157e60be5" + } + }, + { + "text": "Most professors think teaching core classes are a drag, and it definitely shows with prof.calderon. She paraphrased the book for her lectures and didn't try to make the class interesting in any way, but if you study & hand in the assignments on time, you'll do ok", + "pos": 0.199, + "neu": 0.774, + "neg": 0.027, + "_id": { + "$oid": "6711d795cd60fca157e60be6" + } + }, + { + "text": "not clear with what she wants. not hard grader, but she gives bad final grades. not such a good teacher.", + "pos": 0.043, + "neu": 0.602, + "neg": 0.355, + "_id": { + "$oid": "6711d795cd60fca157e60be7" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d795cd60fca157e60be8" + } + }, + { + "text": "she is great, knows her stuff, and follows the book very closely, so it is easy to follow lecture..the only people that complain and rate her badly are the lazy bums that do not want to study..DROP FROM COLLEGE THEN and stay IGNORANT.", + "pos": 0.131, + "neu": 0.65, + "neg": 0.219, + "_id": { + "$oid": "6711d795cd60fca157e60be9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d795cd60fca157e60bea" + } + }, + { + "text": "drop her class ASAP, unless you are planning to mess up your GPA.D or C- is all you'll get.she is teaching psy102 in spring of 2005. took her last term-the class sucked a lot. she is not even a bad teacher-simply the worst.She is very abnormal herself-needs alot of medication or electroshock treatnt", + "pos": 0.048, + "neu": 0.824, + "neg": 0.128, + "_id": { + "$oid": "6711d795cd60fca157e60beb" + } + }, + { + "text": "This teacher is awesome, she makes a very heavy subject, mental disorders, interesting and lightens it up with her sense of humor. She's a grad student and really laid back but expects you to study as well, which is normal becuz duh, we are in college after all.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bec" + } + }, + { + "text": "the only reason you should take her - if, and only if you want an F or a D- in class. not claer at all, exams are very unclear-you do nopt simply understand what she wants from you. she is a part-timer, i hope the school will get rid of her soon.", + "pos": 0.077, + "neu": 0.923, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d795cd60fca157e60bef" + }, + "professor_name": "Linda Abu", + "rating": 1.9, + "department": "Education department", + "comments": [ + { + "text": ";/ not the best teacher", + "pos": 0.0, + "neu": 0.543, + "neg": 0.457, + "_id": { + "$oid": "6711d795cd60fca157e60bf0" + } + }, + { + "text": "Professor is awesome. Very clear. You just have to get her to explain one on one.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bf1" + } + }, + { + "text": "Incomprehensible", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bf2" + } + }, + { + "text": "Poor instruction, unclear, attitude overall should not be teaching graduate students.", + "pos": 0.0, + "neu": 0.638, + "neg": 0.362, + "_id": { + "$oid": "6711d795cd60fca157e60bf3" + } + }, + { + "text": "To anyone reading this, it is quit evident that LINDA ABU rates herself on here. This is evident, because her blog is pointless and does not help at all. Plus she does not plan for class. We are all teachers, we know how to kill time. Please don't try to pull a fast one on us we are not six. Horrible HORRIBLE! HORRIBLE!", + "pos": 0.11, + "neu": 0.737, + "neg": 0.152, + "_id": { + "$oid": "6711d795cd60fca157e60bf4" + } + }, + { + "text": "Keeping it real the Professor is very structured but her presentation is very well organized. I learned much in this class because of the commitment to planning. The blog is a plus.", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bf5" + } + }, + { + "text": "To all who may have to take this course in the July, I feel bad for you! This course was a HORRIBLE WASTE OF TIME!! She does not even know what an annotated bibliography is and has other explain the syllabus. The work in the class is unbeneficial for me as a educator. She clearly rates herself on here, b/c no one would give her high ratings.", + "pos": 0.034, + "neu": 0.784, + "neg": 0.181, + "_id": { + "$oid": "6711d795cd60fca157e60bf6" + } + }, + { + "text": "Either you like her or you hate her. She is a hard worker, concerned about the students and knows her material. She does however have a reputation for requiring tremendous work. But besides that she's FAIR!", + "pos": 0.146, + "neu": 0.768, + "neg": 0.085, + "_id": { + "$oid": "6711d795cd60fca157e60bf7" + } + }, + { + "text": "I just completed this class. The instructor knew her stuff. Not only does she have a blog but she had a plenty of resources and presents a range of group work activities. Students who want \"easy\" work hate her rigid requirements, because she is not flexible but holds to high standards", + "pos": 0.088, + "neu": 0.765, + "neg": 0.146, + "_id": { + "$oid": "6711d795cd60fca157e60bf8" + } + }, + { + "text": "She is horrible. Not helpful at all. In class time is a WASTE of time. Forget asking questions, she will just refer you to her BLOG which is also not helpful.", + "pos": 0.0, + "neu": 0.657, + "neg": 0.343, + "_id": { + "$oid": "6711d795cd60fca157e60bf9" + } + }, + { + "text": "It's a real shame, because the content of this class is quite interesting. We read about various literacy activities and approaches for teaching children, but they are never demonstrated to us in class. She is unclear, unfocused, and and unoriginal in her lessons. Avoid if you can.", + "pos": 0.036, + "neu": 0.765, + "neg": 0.199, + "_id": { + "$oid": "6711d795cd60fca157e60bfa" + } + }, + { + "text": "EDUCATION 500C Avoid taking EDUC 500C with her. She cannot explain anything pertaining to the course. You have to depend on classmates who took the class with someone else to explain the work to you because she does not answer any questions. She gets annoy when you ask her questions and say check my blog. Avoid her not a good professor.", + "pos": 0.0, + "neu": 0.854, + "neg": 0.146, + "_id": { + "$oid": "6711d795cd60fca157e60bfb" + } + }, + { + "text": "She was horible!!!! You wont learn a thing and will get frustrated when she never ever answer your concerns.", + "pos": 0.0, + "neu": 0.798, + "neg": 0.202, + "_id": { + "$oid": "6711d795cd60fca157e60bfc" + } + }, + { + "text": "DONT take her class!!!! She is not clear, you will not learn with her, she is not capable of answering your questions. However two of the books are interesting so just invest your money on the text books but not her class!!!!", + "pos": 0.041, + "neu": 0.863, + "neg": 0.096, + "_id": { + "$oid": "6711d795cd60fca157e60bfd" + } + }, + { + "text": "If you do not have a background in education (i.e. career changer, undergrad in another major), look to classmates for clarification and help. 3 assigned texts that were not often used. However the texts are quite informative.", + "pos": 0.07, + "neu": 0.93, + "neg": 0.0, + "_id": { + "$oid": "6711d795cd60fca157e60bfe" + } + }, + { + "text": "Avoid. Take someone else if you can.", + "pos": 0.0, + "neu": 0.732, + "neg": 0.268, + "_id": { + "$oid": "6711d795cd60fca157e60bff" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d795cd60fca157e60c00" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d796cd60fca157e60c02" + }, + "professor_name": "Kumud Majumder", + "rating": 3.5, + "department": "Computer Science department", + "comments": [ + { + "text": "The class is not bad, but the professor could not have scheduled the course in a worse manner. Seriously you will do nothing until the last 5 weeks of class until projects get posted. It would be much better if projects 1 & 2 were due at each half of the course. Overall, the class was easy, he is not a hard grader but his timeline is horrendous.", + "pos": 0.133, + "neu": 0.731, + "neg": 0.137, + "_id": { + "$oid": "6711d796cd60fca157e60c03" + } + }, + { + "text": "There are only three main projects but the instructions aren't very clear so you must pay attention in the lecture and ask questions. The professor is very caring and accessible outside the classroom. The learning curve is very high if you don't have experience in the project you must spend extra hours working on it.", + "pos": 0.077, + "neu": 0.841, + "neg": 0.082, + "_id": { + "$oid": "6711d796cd60fca157e60c04" + } + }, + { + "text": "This professor really cares and wants us to pass. I have some experience with data visualization so for me the projs were less hard. The instructions for the proj/hw were unclear sometimes but you can reach out to him and he'll help resolve any issues. Overall, not bad but I know some other students had difficulty tackling his projs.", + "pos": 0.198, + "neu": 0.722, + "neg": 0.08, + "_id": { + "$oid": "6711d796cd60fca157e60c05" + } + }, + { + "text": "The final exam will determine your grade, no matter what you did in other work.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d796cd60fca157e60c06" + } + }, + { + "text": "He is good professor. If you pay attention during lecture time, you will get many knowledgeable concepts of your courses.", + "pos": 0.13, + "neu": 0.807, + "neg": 0.063, + "_id": { + "$oid": "6711d796cd60fca157e60c07" + } + }, + { + "text": "You have to be very sincere and real with the prof so he can help you in your areas of weakness. Am a living testimony of the help prof. Kumud's top-notch teaching skills after taking two classes he taught; database and project management, and I did well on both.\n\nHe will help you understand very complex concepts if you ready to do the work. Great!", + "pos": 0.254, + "neu": 0.711, + "neg": 0.035, + "_id": { + "$oid": "6711d796cd60fca157e60c08" + } + }, + { + "text": "Is a good professor. As a student we must study and prepare well for classes(homework/projects) and not think that because of the flexibility of the professor the class is easy. Professor has people skills and is very reachable. He knows well the subjects and has experience in industry which is relevant and he shares that knowledge with students.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c09" + } + }, + { + "text": "Always is available to answer and teach. The class is good because it has some focus on real world (Data base), not only theory (although it is important), but it is a good starting point in this DB world. Prof. Is willing to address concerns (even at different times) and wants that students learn in the right way. It is an excellent teacher.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c0a" + } + }, + { + "text": "He has a lot real experience, dedicates to his job and is always ready to help everyone.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c0b" + } + }, + { + "text": "I have a lot of respect for this Professor. My classmates and I, when we met him in our first, we did not understand his teaching logic and we're afraid about him. But in our second class things became more easy to understand, and we had good interactions. In the last one, he became amazing. I strongly recommend him. Ally best wishes.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c0c" + } + }, + { + "text": "It's very important to establish good communication from the very beginning of the course. I would advise to ask questions if you are lost or confused. Professor Kumud is always willing to listen and work with you. He is flexible and truly cares to help his students thrive. I took three courses with him.", + "pos": 0.234, + "neu": 0.696, + "neg": 0.07, + "_id": { + "$oid": "6711d796cd60fca157e60c0d" + } + }, + { + "text": "Professor Majumder taught three classes in MIS graduate program, namely advanced database system, Project Management, and Capstone project. Prof. Majumder does not just teach a class, he has designed a grand plan where all previous classes need to be implemented in a big capstone project. This is no way to say it is easy, definitely worth it.", + "pos": 0.19, + "neu": 0.776, + "neg": 0.033, + "_id": { + "$oid": "6711d796cd60fca157e60c0e" + } + }, + { + "text": "Professor Majumder is a real gem if you pay attention and are willing to learn. He is always available even when class is not in session. I am glad he was my professor during my final project class. Prof. Majumder learned from us and we learned from him a great deal even during Covid-19 rough times. Note: hardest class ever taken but worth it.", + "pos": 0.101, + "neu": 0.881, + "neg": 0.018, + "_id": { + "$oid": "6711d796cd60fca157e60c0f" + } + }, + { + "text": "He does not know how to teach at all, he can take hours explaining one topic and you still would not understand it. He makes course up as you proceed and there is absolutely no outline. If you question him or tell him that he did not teach us something, so he cannot test us on it he gets upset. I did not learn anything from him.", + "pos": 0.0, + "neu": 0.927, + "neg": 0.073, + "_id": { + "$oid": "6711d796cd60fca157e60c10" + } + }, + { + "text": "he is the worst possible person to teach this course with minimal or no knowledge of the material. he never gives a straight answer to any of the questions asked.", + "pos": 0.0, + "neu": 0.772, + "neg": 0.228, + "_id": { + "$oid": "6711d796cd60fca157e60c11" + } + }, + { + "text": "He never replies with specific answers. No matter what you ask. He will keep bragging about himself in 3hr long lectures", + "pos": 0.0, + "neu": 0.949, + "neg": 0.051, + "_id": { + "$oid": "6711d796cd60fca157e60c12" + } + }, + { + "text": "Excellent professor and course", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c13" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d796cd60fca157e60c15" + }, + "professor_name": "Martin V. Woessner", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "If you work and go to school full time, I do not recommend having him. He does not provide textbooks, heavy reading materials and very hard to understand. Class was convenient because it was asynchronous, but do keep in mind, he's a very tough grader.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d796cd60fca157e60c16" + } + }, + { + "text": "I sure did learn a lot. He is definitely an asset to City College.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c17" + } + }, + { + "text": "Expects you to know, but still works with you. Plays on sarcasm a lot. Highly knowledged in his field but sometimes hard to get a straight answer out of him.", + "pos": 0.139, + "neu": 0.747, + "neg": 0.114, + "_id": { + "$oid": "6711d796cd60fca157e60c18" + } + }, + { + "text": "Professor Woessner is an academic who is well read in all facets of his subjects. He presents the material in an eye opening fashion. Illuminating the evolution of ideas. The best part is that he is excited to bring you into the fold. Down to earth and wants to hear your take on an idea.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c19" + } + }, + { + "text": "The most profound, intellectual , insightful professor that hit the planet. YOU HAVE ALOT of reading but hardly any homework (maybe 3 papers) make sure you study what he speaks of the most and you will do fine. All should enter his classroom, he will change the way you think or view people and the world.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c1a" + } + }, + { + "text": "Yes. He is smart and knowledgeable. But the readings, presentations, weekly blog posts and long final paper are more than I expected. He also comes off arrogant and undermining.", + "pos": 0.102, + "neu": 0.69, + "neg": 0.208, + "_id": { + "$oid": "6711d796cd60fca157e60c1b" + } + }, + { + "text": "Excellent professor. Highly intelligent and the lectures are interesting. Taken his course, Inventing the Americas, and was literally blown away (was the Americas discovered or invented? still puzzled... no direct answer). Overall, recommend Professor Woessner's courses. He's a terrific scholar and in his class you'll walk away with knowledge!", + "pos": 0.253, + "neu": 0.683, + "neg": 0.063, + "_id": { + "$oid": "6711d796cd60fca157e60c1c" + } + }, + { + "text": "Prof Woessner is clearly one of the best educators that I have come across in City College.I have taken 2 of his classes - Age of Extremes and Capitalism Anti-Capitslism - and they both proved to be outstanding. He is very helpful and intensely engaging while at the same time allowing for self discovery and self development. Highly recommended.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c1d" + } + }, + { + "text": "Was apprehensive about Prof W. @ first because the class wasn't what I expected it would be, but soon realized that it would be well worth it. Brilliant professor; Class discussions and materials reviewed force you to think critically. Be prepared to work. Weekly blog entry required. Highly recommended.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c1e" + } + }, + { + "text": "The man is a genius. He takes theory to another level. \"Inventing the Americas\" is one of the GREATEST courses ever. Columbus did not discover America, but rather, America was invented by the Europeans.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c1f" + } + }, + { + "text": "Best professor in the whole of City College IAS program. A genius who will turn you to another genius. Take his classes", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c20" + } + }, + { + "text": "Professor Woesnner is amazing!! He is a fair grader but you must come to class prepared and ready to work. There is alot of reading but it is interesting. Do yourself a favor and take is class. He is a high caliber professor.", + "pos": 0.319, + "neu": 0.681, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c21" + } + }, + { + "text": "Prof. Woessner is perhaps one of the best teachers you can take in City College's CWE Program. His classes are well-prepared, he presents the material clearly, engages his students effectively with some difficult ideas and concepts. Out of the CWE program he is one of the more professional and interesting teachers you can find. Take him.", + "pos": 0.219, + "neu": 0.743, + "neg": 0.037, + "_id": { + "$oid": "6711d796cd60fca157e60c22" + } + }, + { + "text": "Very good, knows his stuff, and willing to help.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c23" + } + }, + { + "text": "Very good, knows his stuff, and willing to help.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d796cd60fca157e60c24" + } + }, + { + "text": "He is no longer at the New School but is missed by many students! Maybe one day we will get him back! I strongly recommend that you take any of his courses for they are all excellent, he is a brilliant professor.", + "pos": 0.293, + "neu": 0.63, + "neg": 0.077, + "_id": { + "$oid": "6711d796cd60fca157e60c25" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d796cd60fca157e60c26" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d797cd60fca157e60c28" + }, + "professor_name": "Laura Gellert", + "rating": 3.3, + "department": "Education department", + "comments": [ + { + "text": "Her lessons and work are useful and do provide some insight into teaching math. I just wish she was more patient and understanding of students. Sometimes when asking questions, she often made me feel a bit stupid even though my questions and concerns were reasonable. She's a nice person overall and did peak my interest in math again.", + "pos": 0.168, + "neu": 0.782, + "neg": 0.05, + "_id": { + "$oid": "6711d797cd60fca157e60c29" + } + }, + { + "text": "She is a very intelligent professor! Her lessons are useful for homework and help you view math a different way. The down side is that she gives a lot of work. Also she is blunt and makes her students feel bad. She doesn't understand her students. Be aware!", + "pos": 0.166, + "neu": 0.772, + "neg": 0.061, + "_id": { + "$oid": "6711d797cd60fca157e60c2a" + } + }, + { + "text": "She was an amazing professor. Although she gives a lot of work her class was fun and you learn a lot.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c2b" + } + }, + { + "text": "Professor Gellert is one of the most educated and intelligent professors I know of. She knows what she's doing and always is ready to teach. You learn A LOT from her class. Yes, there's a lot of homework, but its homework that helps you and is not that difficult if you pay attention to the lesson in class. Overall, I liked this class a lot.", + "pos": 0.206, + "neu": 0.772, + "neg": 0.021, + "_id": { + "$oid": "6711d797cd60fca157e60c2c" + } + }, + { + "text": "Gellert is an amazing professor and knows her math well. This class was interesting and made me think about math differently. She gives a lot of work but this class is definitely worth it. Also, participation and attendance are important in her class.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c2d" + } + }, + { + "text": "Such an amazing math professor! She makes you work for your grade, but is always willing to help if needed. Her lessons are really impacting, as they help you view math in a complete different way. She has a lot to offer as a math professor, but also as a teacher for both young learners and adults. Definitely recommended!", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c2e" + } + }, + { + "text": "This teacher was extremely unhelpful and she doesn't understand her students. She gives a lot of work and doesn't explain her instruction well. Avoid her class", + "pos": 0.074, + "neu": 0.848, + "neg": 0.078, + "_id": { + "$oid": "6711d797cd60fca157e60c2f" + } + }, + { + "text": "Okay! She is skillful and knowledgeable. She is hard grader and she grades based on the HW and participation in the class. The course was the first math in childhood Ed. masters program. But be aware, she is JUST a professor. She does not understand her students that much, but again she is a very good math professor. It is not a very fun class!", + "pos": 0.087, + "neu": 0.843, + "neg": 0.07, + "_id": { + "$oid": "6711d797cd60fca157e60c30" + } + }, + { + "text": "OH! NO.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c31" + } + }, + { + "text": "Hard material. I don't like math but she made it interesting.", + "pos": 0.248, + "neu": 0.559, + "neg": 0.193, + "_id": { + "$oid": "6711d797cd60fca157e60c32" + } + }, + { + "text": "She's great. Super hard, but she takes the class and her students really seriously. Highly recommended.", + "pos": 0.354, + "neu": 0.484, + "neg": 0.162, + "_id": { + "$oid": "6711d797cd60fca157e60c33" + } + }, + { + "text": "the worst in the department of education. do not take her class", + "pos": 0.0, + "neu": 0.728, + "neg": 0.272, + "_id": { + "$oid": "6711d797cd60fca157e60c34" + } + }, + { + "text": "prepare yourself for a lot of homework. she does not understand her students at all. not recomended", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c35" + } + }, + { + "text": "She knows her stuff very well and you will learn a lot in this class. BUT, be prepared to do 3 projects, 10 reflection papers, 5 fieldwork observation papers, plenty of math homework problems and a final exam! On the brightside she accepts late assignments.", + "pos": 0.141, + "neu": 0.791, + "neg": 0.068, + "_id": { + "$oid": "6711d797cd60fca157e60c36" + } + }, + { + "text": "a lot of homework, try to avoid her if you can. her grading is not fair, she gives you time for the papers but takes a lot of points, so not worth it.", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d797cd60fca157e60c37" + } + }, + { + "text": "great professor very helpful just be prepared to do alot of reading and papers. i love her i have no complaints really knows her stuff. is willing to give u breaks if u need more time on ur papers", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c38" + } + }, + { + "text": "avoid her class", + "pos": 0.0, + "neu": 0.476, + "neg": 0.524, + "_id": { + "$oid": "6711d797cd60fca157e60c39" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d797cd60fca157e60c3b" + }, + "professor_name": "Nicole Treska", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Nicole is super lenient with grades. If you show up, you get extra credit. If you don't, as long as you do good on the tests, you'll be fine. Grades are reliant heavily on tests, but she lets people take them late, and most of the tests were take home tests. She lets us use our drills, too, and the answers are basically right there for you.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c3c" + } + }, + { + "text": "engl34200 is the easiest class you can take with the best professor you could have. Prof. Treska made this seemingly boring class, interesting & lively. She makes it fun to learn about grammar. There are 5 total exams, & they're all easy, based off of the drills we do in class. There's also a lot of extra credit questions. Take her!! She's amazing", + "pos": 0.314, + "neu": 0.658, + "neg": 0.028, + "_id": { + "$oid": "6711d797cd60fca157e60c3d" + } + }, + { + "text": "Prof. Treska is an easy-going professor, the assignments were all from the textbook, and it's cheap to get. The exams were simple, nothing difficult. Overall, enjoyed learning from her.", + "pos": 0.066, + "neu": 0.849, + "neg": 0.085, + "_id": { + "$oid": "6711d797cd60fca157e60c3e" + } + }, + { + "text": "l absolutely love this professor! your entire grade is based on the average on 5 exams. super easy exams since they reflect the drills you do in class.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c3f" + } + }, + { + "text": "Prof Treska is awesome. She makes grammar fun, interesting, & accessible. Ask her about her work as a writer. Super chill and funny person. Genuinely cares about students - she learns everyone's names and responds to questions in-depth. Can't wait for her to rewrite (update) Fred's textbook ;) P.S. Covid shutdown BEST time to take this class!", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c40" + } + }, + { + "text": "Professor Treska is such a caring person and she will make sure all her students understand what she is teaching. She is accessible outside of class and despite the subject being hard, she makes it interesting for students. TAKE HER!!!", + "pos": 0.195, + "neu": 0.775, + "neg": 0.03, + "_id": { + "$oid": "6711d797cd60fca157e60c41" + } + }, + { + "text": "AMAZING!! She cares about grammar and makes the course easy. If you don't understand something she goes over it. Don't be shy to ask questions. Take her!", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c42" + } + }, + { + "text": "I want her to be my mom. Honestly, out of every single professor Ive had in the 4 years Ive been here, she has been my absolute fav. Grammar was already easy for me but I saw people in the class who really struggled get As bc she is really helpful and caring and her style of teaching genuinely helps.", + "pos": 0.258, + "neu": 0.694, + "neg": 0.047, + "_id": { + "$oid": "6711d797cd60fca157e60c43" + } + }, + { + "text": "Such an amazing professor. She makes a lot of jokes, keeps the class interesting. There were 5 test and each test (except one) had a few extra credit question. She genuinely cares if her students know the material. A \"textbook\" is required for drills, attendance isn't a must because she doesn't take attendance, but lectures are extremely helpful", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c44" + } + }, + { + "text": "I had Prof. Treska for Advanced Grammar at 8:30 am, 4 times a week - yet there was never a dull moment. She's awesome at her job, and she genuinely cares for grammar and her students. She's clear, easy-going, entertaining and full of energy, and I would love to take her class again, if possible.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c45" + } + }, + { + "text": "She was cool but I did not like her way of teaching. Rushes through things and could not reach her by email when needing to discuss things.", + "pos": 0.056, + "neu": 0.816, + "neg": 0.128, + "_id": { + "$oid": "6711d797cd60fca157e60c46" + } + }, + { + "text": "Love Prof Treska! She is fair, direct and funny. She makes the class interesting and keeps us involved. Although a tough/rigorous course, you learn alot of you focus and participate!", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c47" + } + }, + { + "text": "So Professor Treska was an amazing professor. All you have to do is read a couple of articles and some books throughout the course which are highly informative and interesting to read. She's hilarious and really understanding. If you complete everything that she tells you to do for the portfolio then you'll easily get an A. Highly recommend!", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c48" + } + }, + { + "text": "Nicole is awesome and you should definitely take her class. She's funny and down-to-earth as well. She genuinely cares about her students passing her class and will go out of her way to help them. I would definitely take her as a professor again!", + "pos": 0.356, + "neu": 0.644, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c49" + } + }, + { + "text": "Great Professor! SHe never bored the class. She even provoke interest for me about PR. Her expectations are clear. 3 papers, 1 midterm (some multiple choice questions and short answers) and 1 final (not cumulative, same format as the midterm). Her papers were not boring at all and I learned so much about media that I cannot look at it the same.", + "pos": 0.19, + "neu": 0.773, + "neg": 0.037, + "_id": { + "$oid": "6711d797cd60fca157e60c4a" + } + }, + { + "text": "Instructor Treska is amazing. She gives you the guidelines of what you need to do for the semester. She spends time with you outside of class to assist with your work. Very laid back atmosphere and she gives a reader at the beginning. She should teach more classes (she is an adjunct).", + "pos": 0.069, + "neu": 0.931, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c4b" + } + }, + { + "text": "Had her for creative writing, she was a really helpful, encouraging and sweet. Helped to get everyone's creative juices flowing very easily. Would recommend her to everyone. May be a little harder for some. Has immense knowledge of literature.", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d797cd60fca157e60c4c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d798cd60fca157e60c4e" + }, + "professor_name": "Chrysoula Gitsoulis", + "rating": 4.2, + "department": "Philosophy department", + "comments": [ + { + "text": "no curve, no help, no feedback, quizzes hard", + "pos": 0.299, + "neu": 0.237, + "neg": 0.464, + "_id": { + "$oid": "6711d798cd60fca157e60c4f" + } + }, + { + "text": "Amazing class! very interesting topics, professor is super helpful. Every other week: 300-word response with two 100 word comments, quizzes, and done! Worth taking!", + "pos": 0.461, + "neu": 0.539, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c50" + } + }, + { + "text": "Great class! Learned ALOT!", + "pos": 0.61, + "neu": 0.39, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c51" + } + }, + { + "text": "This class is very easy but the professor is confusing and unorganized. Would never take her again!", + "pos": 0.106, + "neu": 0.76, + "neg": 0.134, + "_id": { + "$oid": "6711d798cd60fca157e60c52" + } + }, + { + "text": "I've taken 3 Philosophy Classes w/ Professor Gitsoulis & about to embark on my 4th this semester. She gives fair grades. Tons of reading to do, but she does give the heads up on what tests & exams will cover. Submit assignments/projects in a timely manner & you will do fine in her classes. She has a good sense of humor so class discussions are fun.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c53" + } + }, + { + "text": "She is a very good professor, although she is very disorganized too. She know the material very well, which kind of makes up for her lack of organization. She was very clear. We didn't have to use the textbook, she would give us hand outs. Her tests are multiple selection and they come straight out of the homeworks.", + "pos": 0.196, + "neu": 0.735, + "neg": 0.069, + "_id": { + "$oid": "6711d798cd60fca157e60c54" + } + }, + { + "text": "The class was ridiculously easy. The grade breakdown was 25% from the HW and 75% from the 3 exams. She allows you to copy the homework word for word out of the reading provided it is in quotations. You only have to study the review packet for the exams.", + "pos": 0.055, + "neu": 0.899, + "neg": 0.046, + "_id": { + "$oid": "6711d798cd60fca157e60c55" + } + }, + { + "text": "Easy class. She collects HW. You don't have to pay attention in class. Her midterms are multiple choice questions and are based entirely on her review packets. She is constantly late. She tries to teach, though material taught is controversial (Philosophy). Usually spends 30 mins arguing/digressing about something. Anyways, easy class - A.", + "pos": 0.123, + "neu": 0.846, + "neg": 0.031, + "_id": { + "$oid": "6711d798cd60fca157e60c56" + } + }, + { + "text": "Really nice professor. Easy hw assignments that are added to the final grade as extra credit & can really boost it up. It is possible to get an A by just getting A's on the test but don't bet on it; tests aren't hard though as she gives you a study packet. Great lady.", + "pos": 0.238, + "neu": 0.762, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c57" + } + }, + { + "text": "She is great", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c58" + } + }, + { + "text": "Pretty decent class. Mandatory attendance. Gives out extra credit which consists of 3 page min. assignments based on the reading. Very nice lady. Class participation is a must in order to get an A+. Multiple choice exam: 25 Q's. Gives study sheets prior to exam. You don't really need the whole text. Most of the works are online.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c59" + } + }, + { + "text": "Great prof. def. learned in her class. Seems a little strange at first, but she is def. a highly intel. prof. Easy on assing. She has one paper, which she breaks down into three parts. Two exams. Highly recomend!", + "pos": 0.16, + "neu": 0.812, + "neg": 0.028, + "_id": { + "$oid": "6711d798cd60fca157e60c5a" + } + }, + { + "text": "A wonderful, laid back, and highly intelligent professor. Saturday mornings were definitely alright. Don't bother buying the book, and take good notes.", + "pos": 0.51, + "neu": 0.49, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c5b" + } + }, + { + "text": "She is amazing!! Everyone has to take this course, so if you can take it with her, do it.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c5c" + } + }, + { + "text": "Very easy professor.She made philosophy interesting.I never expected that I would actually listen and participate in class because i used to think that philo is a boring topic. highly recommended, easy going on assignments,allows to rewrite paper, and postpones assignments. Great professor!", + "pos": 0.241, + "neu": 0.676, + "neg": 0.083, + "_id": { + "$oid": "6711d798cd60fca157e60c5d" + } + }, + { + "text": "GREAT Professor.Although Philosophy is boring, she makes her classes very interesting.Very helpful, and fun :).Is one of the best in City College.She is a qualified teacher, proof: teaches in Baruch too - just for your information.I repeat GREAT TEACHER.She made her Saturday Early morning sooo interesting.", + "pos": 0.357, + "neu": 0.607, + "neg": 0.036, + "_id": { + "$oid": "6711d798cd60fca157e60c5e" + } + }, + { + "text": "Very good professor. Take her class and you won`t regreat.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c5f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d798cd60fca157e60c61" + }, + "professor_name": "Felicia Bonaparte", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "I studied under Prof Bonaparte many years ago, but I will never forget her.\nEncountering George Eliot fundamentally expanded my understanding of the human condition. Prof Bonaparte's class discussions were immediately significant to me. The lessons I learned under her inform my decisions and actions even to this day. She truly changed my life.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c62" + } + }, + { + "text": "I took two classes with Bonaparte. They completely changed my life. She has really heavy reading lists - but fi you do the assignments, come to class, and can write you will do well. She might know more than any other human - and she uses that knowledge in her lectures. Her classes will blow your mind. Take one.", + "pos": 0.044, + "neu": 0.956, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c63" + } + }, + { + "text": "I guess she was okay, but I LOVED Brian Brice the T.A. He was incredibly helpful in simplifying her lectures in ways that we can understand, and had a really great sense of humor. He was really cute too! I'd take her class again if Brian was the T.A.", + "pos": 0.372, + "neu": 0.628, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c64" + } + }, + { + "text": "Be prepared to take a lot of notes. Her lectures are very long and it's just her talking a lot. She jumps from one topic to another. There's two 10pg papers and a midterm and final. And you read like 7-8 or maybe more books. She has 2 T.A who give a 50min class which are very helpful. But overall the class is pretty challenging.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c65" + } + }, + { + "text": "it does not take a genius to jump from topic to topic without stopping to breathe. anyone who reads can make the connections between genres and eras like she does. real teaching is encouraging and building off of student response. not talking for an hour and a half about whatever you feel like.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c66" + } + }, + { + "text": "Her course is very hard. She gives a reading list of like 10 books, which we have to read 1 entire book per week. For the midterm she assigns a 10pg papers plus a 2 hour short answer exam. Her lectures are okay, but this class is tough to manage if you're also taking bio at the same time, like in my case.", + "pos": 0.095, + "neu": 0.859, + "neg": 0.046, + "_id": { + "$oid": "6711d798cd60fca157e60c67" + } + }, + { + "text": "She's really smart and as a student you are sure to learn something but I've been taking her class for a short time and I'm already bummed about how much we have to work.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c68" + } + }, + { + "text": "She is pretty nice but her lectures are all over the place. She goes from greek mythology to roman times & then back. But if u have her as a lecture professor make sure u write down the words she writes on the board, those come up on exams. 2 10 page paper a killer & a midterm & final. exams r pretty fair 4 college level course.", + "pos": 0.173, + "neu": 0.755, + "neg": 0.072, + "_id": { + "$oid": "6711d798cd60fca157e60c69" + } + }, + { + "text": "Ms. Bonaparte is a spectacular academic. Her breadth of knowledge is stunning, as is her ability to articulate it. I find her to be a remarkable and gifted communicator and teacher. If you want to be deeply challenged, and really learn about literature from a talented professional, take anything she is teaching. You will be glad you did.", + "pos": 0.234, + "neu": 0.741, + "neg": 0.025, + "_id": { + "$oid": "6711d798cd60fca157e60c6a" + } + }, + { + "text": "Ms. Bonaparte is a spectacular academic. Her breadth of knowledge is stunning, as is her ability to articulate it. I find her to be a remarkable and gifted communicator and teacher. If you want to be deeply challenged, and really learn about literature from a talented professional, take anything she is teaching. You will be glad you did.", + "pos": 0.234, + "neu": 0.741, + "neg": 0.025, + "_id": { + "$oid": "6711d798cd60fca157e60c6b" + } + }, + { + "text": "Hardest professor I have ever taken. If you are willing to do two papers both ten pages each then take her if not I advise you to not take her because your grade will go down.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d798cd60fca157e60c6c" + } + }, + { + "text": "Extremely difficult! She tends to bomabard students with too much outside references, her notes are all over the place, never clear on what she expects from her students, and has the biggest ego! I don't recommend this class to anyone because your G.P.A will plunge downward, without a doubt.", + "pos": 0.039, + "neu": 0.821, + "neg": 0.14, + "_id": { + "$oid": "6711d798cd60fca157e60c6d" + } + }, + { + "text": "A challenging teacher who is interested in her subject. If you can't accept the challenge, find an easier teacher. She knows an awful lot, but the information comes at you in waves -intimidating for an undergraduate.", + "pos": 0.119, + "neu": 0.681, + "neg": 0.201, + "_id": { + "$oid": "6711d798cd60fca157e60c6e" + } + }, + { + "text": "Leave your undergrad or master's degree at the door-there's nothing you can say that she wants to hear. She runs the class like it's high school; she lectures without allowing for comments and references excessively, never allowing for her grad students' opinions. She may be brilliant; still, she wears that stupid American flag pin on her lapel.", + "pos": 0.099, + "neu": 0.829, + "neg": 0.072, + "_id": { + "$oid": "6711d798cd60fca157e60c6f" + } + }, + { + "text": "VERY disappointed, she knows a lot but if you don't subscribe to HER views she penalizes you... also she can be VERY condescending, she embarrassed me in front of the class once for no reason. Never again", + "pos": 0.0, + "neu": 0.773, + "neg": 0.227, + "_id": { + "$oid": "6711d798cd60fca157e60c70" + } + }, + { + "text": "Absolutely brilliant, almost intimidating with her breadth of knowledge, but also compassionate and cheerful. Not easy, but probably the best prof I've ever had.", + "pos": 0.43, + "neu": 0.445, + "neg": 0.125, + "_id": { + "$oid": "6711d798cd60fca157e60c71" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d798cd60fca157e60c72" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d799cd60fca157e60c74" + }, + "professor_name": "David Willinger", + "rating": 3.6, + "department": "Theater department", + "comments": [ + { + "text": "I took this professor back in Fall 2019 for Speech for the Stage, I see a lot of the reviews for him were many years ago. But when I took him in 2019, it was one of the most incredible experiences of my life. I wanted to try a public speaking class, had no intention of doing theater and he made me love theater so much I've been doing it ever since.", + "pos": 0.074, + "neu": 0.891, + "neg": 0.036, + "_id": { + "$oid": "6711d799cd60fca157e60c75" + } + }, + { + "text": "I took his theatre history class. His class is not easy, but it will not very hard if you do your work!!! You need to read plays and study for exams. He loves teaching and cares about his students. He is a genius professor. I am glad I have met him at CCNY.", + "pos": 0.272, + "neu": 0.703, + "neg": 0.025, + "_id": { + "$oid": "6711d799cd60fca157e60c76" + } + }, + { + "text": "The Professor is a great teacher of acting, directing,speech and all of theater. If you love these subjects, then he will take you to the next level for sure. Be dedicated and you will learn a lot. Previous or current students have taken him twice or three times, he is that good.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60c77" + } + }, + { + "text": "Theres a method to his madness. I felt growth in my work. He's experimental and you can't do any wrong as long as you commit to your choices and have strong reasons for them. Of the professors in that department he's the few that actually does care about the growth of his students. However, his one fault is outside the classroom he's moody.", + "pos": 0.209, + "neu": 0.687, + "neg": 0.103, + "_id": { + "$oid": "6711d799cd60fca157e60c78" + } + }, + { + "text": "He is extremely helpful an takes a lot of interest in the progress and effort of each student. Towards the end of the semester, especially if he is directing a show, he can randomly get into bad moods thus making class a bit unpleasant but those types of classes are few and far between and he is generally quite chipper and a pleasure to be around", + "pos": 0.146, + "neu": 0.797, + "neg": 0.057, + "_id": { + "$oid": "6711d799cd60fca157e60c79" + } + }, + { + "text": "Teacher is the best teacher to have. He is inspirational and knowledgeable. You can have the best performance but he will find something wrong, point it out, and make it ten times more incredible than before. I sincerely recommend him. Every actor needs him!", + "pos": 0.263, + "neu": 0.664, + "neg": 0.073, + "_id": { + "$oid": "6711d799cd60fca157e60c7a" + } + }, + { + "text": "So fun to be with and he makes class enjoyable. He has crazy exercises but go with it and you will learn.", + "pos": 0.17, + "neu": 0.762, + "neg": 0.068, + "_id": { + "$oid": "6711d799cd60fca157e60c7b" + } + }, + { + "text": "This professor is one of the most eccentric and biased teacher on the premise of CCNY. But the man knows what he teaches and made me (a non theatre major) appreciate the artistic expressivity in the short stories he assigned. Brace yourself for a lot of reading.", + "pos": 0.079, + "neu": 0.888, + "neg": 0.033, + "_id": { + "$oid": "6711d799cd60fca157e60c7c" + } + }, + { + "text": "Gave lots of A's. Brilliant lecturer; but really idiosyncratic, and it's hard to tell what will get on his nerves (doesn't mind if you sleep, but try to avoid distracting him). Participate and do the reading beforehand and you'll get a lot out of it.", + "pos": 0.047, + "neu": 0.781, + "neg": 0.172, + "_id": { + "$oid": "6711d799cd60fca157e60c7d" + } + }, + { + "text": "He is very unclear. He never finishes full thoughts, He is incoherent at times. He leaves his class unfinished. It feels like he rambles allot but never sticks to a subject, He doesn't follow through on what he says. He's flaky at times. He is also, at-least, very energetic, very upbeat and intense.", + "pos": 0.135, + "neu": 0.837, + "neg": 0.028, + "_id": { + "$oid": "6711d799cd60fca157e60c7e" + } + }, + { + "text": "This man is nuts. He is very unhelpful,rude also very miserable. He doesn't care about his students. Only about his \"power\". Not out the box thinker, too boxed in!", + "pos": 0.0, + "neu": 0.749, + "neg": 0.251, + "_id": { + "$oid": "6711d799cd60fca157e60c7f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d799cd60fca157e60c80" + } + }, + { + "text": "totally nuts and not trust worthy.", + "pos": 0.0, + "neu": 0.28, + "neg": 0.72, + "_id": { + "$oid": "6711d799cd60fca157e60c81" + } + }, + { + "text": "just do all of the crazy stuff he makes everyone else do, write ur papers and do ur readings and u have an A.", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d799cd60fca157e60c82" + } + }, + { + "text": "loud guy gets confusing but everything he does has a purpose as odd as it may seem ok class if youre shy or not one for criticism avoid the class but then again if you are the class would probably help you out in that area", + "pos": 0.163, + "neu": 0.671, + "neg": 0.167, + "_id": { + "$oid": "6711d799cd60fca157e60c83" + } + }, + { + "text": "He is a little anal about reading the plays before class, but if you do that and come to class ready to discuss the plays you will do well in his class. He does get annyoing sometimes .", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60c84" + } + }, + { + "text": "Willinger is a very eccentric person, he sees things outside of the box, it'll be hard to see things the way he does, but at the end of the semester, you'll appreciate everything he's tried to install into your heads. Remember to take off your shoes!", + "pos": 0.078, + "neu": 0.897, + "neg": 0.024, + "_id": { + "$oid": "6711d799cd60fca157e60c85" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d799cd60fca157e60c87" + }, + "professor_name": "Bren Cavallo", + "rating": 3.9, + "department": "Mathematics department", + "comments": [ + { + "text": "terrible for calc 202 but he was very lenient towards grader.", + "pos": 0.219, + "neu": 0.637, + "neg": 0.145, + "_id": { + "$oid": "6711d799cd60fca157e60c88" + } + }, + { + "text": "Bren is one of the most dedicated profs in CCNY. He'll stay after class and hold review sessions beyond class for exams. He's also very clear and thorough, although he goes at a fast sometimes disorganized pace. His exams are TOUGH however. His final was twice as hard as the department's final. He's great with partial credit, but it was brutal.", + "pos": 0.118, + "neu": 0.741, + "neg": 0.141, + "_id": { + "$oid": "6711d799cd60fca157e60c89" + } + }, + { + "text": "He is an awesome professor", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60c8a" + } + }, + { + "text": "Cheers to one of the few professors at CCNY that I actually like. He is very considerate and approachable, and he is very clear-cut in his teachings. He spends a lot of time reviewing previous work. He also encourages class participation and post-class discussions, and is very helpful if you reach out to him in an appropriate manner. Amazing.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60c8b" + } + }, + { + "text": "He grades paper very leniently for the midterms but doesn't curve grades at all,doesn't matter if all students fail the course. Got a 93 & 96 on the midterms and a 90 on the final and still end up with an A-. You have to study for the final by yourself if you want to get an A in the class. Class tests are super easy but final is GPA killer.", + "pos": 0.122, + "neu": 0.743, + "neg": 0.135, + "_id": { + "$oid": "6711d799cd60fca157e60c8c" + } + }, + { + "text": "He is a very intelligent professor. He gives a lot of partial credit. Even if the math is wrong and the procedure is correct or vice versa, he gives partial credit. He doesn't really care with the absence and always stays after class to help. If you study enough, its an easy A.", + "pos": 0.213, + "neu": 0.697, + "neg": 0.09, + "_id": { + "$oid": "6711d799cd60fca157e60c8d" + } + }, + { + "text": "He is a great professor. However, his teaching methods are not so great. He is very helpful and sticks around after class to help students. Take him if you have good background on calculus. Keep in mind that departmental final of this class is super hard. I had a 93 class average but I got 60 on final and got a C. Hard work is the key!", + "pos": 0.148, + "neu": 0.781, + "neg": 0.071, + "_id": { + "$oid": "6711d799cd60fca157e60c8e" + } + }, + { + "text": "He is a easy prof. However when the final comes, its super hard. and grades go down alot because of that. He uses web assign which is helpful. He can help out alot.", + "pos": 0.295, + "neu": 0.671, + "neg": 0.034, + "_id": { + "$oid": "6711d799cd60fca157e60c8f" + } + }, + { + "text": "Good: He is a nice test grader. He is less stricter than any other Math professors in CCNY. He encourages students to ask question. If you have an emergency you don't need to go to class because he rarely takes attendance. Bad: He talks very fast and sometimes he skips the whole mathematical computation when explaining.", + "pos": 0.176, + "neu": 0.784, + "neg": 0.04, + "_id": { + "$oid": "6711d799cd60fca157e60c90" + } + }, + { + "text": "Excellent. He might go a bit fast, but that's only if no one asks questions. In fact, he actually encourages questions, since it slows down the pace a bit. He does many examples. If he skips a step, ask him about it and he'll quickly let you know what he did. He grades fairly on tests, and helps student after class. No accent, clear voice.", + "pos": 0.125, + "neu": 0.766, + "neg": 0.109, + "_id": { + "$oid": "6711d799cd60fca157e60c91" + } + }, + { + "text": "He is a great professor, he will make the exam and take it with the class to see how difficult it is and he gives a bunch of partial credit. He does speak fast sometimes and he mostly skips basic mathematical formulas that you should know. Overall he's a good professor and if you do his homework and try on his exams he will give you a good grade.", + "pos": 0.158, + "neu": 0.81, + "neg": 0.032, + "_id": { + "$oid": "6711d799cd60fca157e60c92" + } + }, + { + "text": "GREAT TEACHER! take him very informative very helpful. leaves nothing out in his notes. gives plenty of examples to make sure you really understand what he is teaching you workload isnt too bad maybe 10-20 math problems a night. covers material quickly so you have a lot of time in class for review before exam.", + "pos": 0.206, + "neu": 0.754, + "neg": 0.041, + "_id": { + "$oid": "6711d799cd60fca157e60c93" + } + }, + { + "text": "he is a good teacher", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60c94" + } + }, + { + "text": "You have to pay close attention cuz he speaks too fast and skips way too many steps! im talking from 1 to 4 then 6 and u have your answer! he doesn't want to slow down he doesn't like staying too long on a problem b/c \"theres not enough time\"! he wants us to know math his way *which is impossible!) other than that hes ok...Study! & u'll get it!", + "pos": 0.0, + "neu": 0.885, + "neg": 0.115, + "_id": { + "$oid": "6711d799cd60fca157e60c95" + } + }, + { + "text": "He does go fast when teaching, but if you ask him to go over a problem, he will. He is helpful if you have a hw question, just study and you'll do well in this class. He's not a bad teacher, just listen carefully and study the old math finals because it really does help.", + "pos": 0.232, + "neu": 0.716, + "neg": 0.052, + "_id": { + "$oid": "6711d799cd60fca157e60c96" + } + }, + { + "text": "He speaks too fast & he skips half of the steps. Expects you to understand math the way he does; at a graduate level. He is apprehensive when confronted about slowing down, His reason being that there is a lot of material. This runs contrary to him mentioning that we are ahead of the other sections. He does however, help you if you email him. avoid", + "pos": 0.039, + "neu": 0.904, + "neg": 0.057, + "_id": { + "$oid": "6711d799cd60fca157e60c97" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d799cd60fca157e60c99" + }, + "professor_name": "Cynthia Toronto", + "rating": 3.3, + "department": "Speech department", + "comments": [ + { + "text": "I had so much fun in her class. It was fun going to her class. But, you must be prepared for your speech presentations. This is actually a really good class to meet new friends too. I wouldn't really buy the textbook, but you do need it because the midterm will be on that", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60c9a" + } + }, + { + "text": "She's pretty nutty, but it breaks the ice between the class. 3 speeches, 2 take home exams, and 2 theater critiques. I learned a lot from her class and had a blast. She seems in her own world sometimes but she is very caring and helpful.", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60c9b" + } + }, + { + "text": "If you don't want to do a lot of writing, don't take her!! I'm glad I didn't buy the textbook. Take home midterm exams and finals are straight from the textbook, which you can borrow from the school'so library. The only thing I hated about her class was our silly acting, her constant desire to talk, too much homework and her confusing syllables!!", + "pos": 0.135, + "neu": 0.765, + "neg": 0.1, + "_id": { + "$oid": "6711d799cd60fca157e60c9c" + } + }, + { + "text": "She knows what she is doing. She knows lots of stuff about public speaking. What I didn't like about this class was that we had lots of writing assignments such as evaluations critique and etc. She is very strict with her regulation and you MUST know her policy. I think students who are having difficulties with English should not take this class.", + "pos": 0.0, + "neu": 0.933, + "neg": 0.067, + "_id": { + "$oid": "6711d799cd60fca157e60c9d" + } + }, + { + "text": "She is so weird. Like she would make you do weird activities. But she's very nice if you're always in class and hand in all your work on time. You'll do just fine. WARNING: DON'T ask her a question (she'll assume you weren't listening) or DON'T interrupt while she's talking. Good Luck :)", + "pos": 0.354, + "neu": 0.552, + "neg": 0.094, + "_id": { + "$oid": "6711d799cd60fca157e60c9e" + } + }, + { + "text": "at first she seems crazy but if you do all the work you will pass. extremly stict.", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d799cd60fca157e60c9f" + } + }, + { + "text": "Expect that when she discusses something, she will always notice your attentiveness towards her. You don't have the right to speak while she's discussing. She's strict but that's what makes her interesting. Have a lot of written homework but she'll give you a high grade if you'll pass all of them in time.", + "pos": 0.064, + "neu": 0.936, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60ca0" + } + }, + { + "text": "Not an easy class if you are an ESL student", + "pos": 0.0, + "neu": 0.789, + "neg": 0.211, + "_id": { + "$oid": "6711d799cd60fca157e60ca1" + } + }, + { + "text": "If there is a class every student should take, it's Acting 1 with Toronto! Whether you are a theater major or not, you will love her class. Her assignments are very easy, just do them and attend class. Her midterm is take home and all the answers are in the book. Easy class, just be dedicated.", + "pos": 0.145, + "neu": 0.803, + "neg": 0.052, + "_id": { + "$oid": "6711d799cd60fca157e60ca2" + } + }, + { + "text": "Very Energetic!Love to keep us on our feet! She is a great prof., just follow her directions carefully and don't be late or absent. However, she is a wonderful prof. and I loved her class. I recommend everyone to take Acting 1 with her.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d799cd60fca157e60ca3" + } + }, + { + "text": "ok this woman is crazy! just crazy... dont ever in your life ask a question to another student while shes talking cause she'll ramble on about how youre not paying attention then she'll ask you if youd like to share the convo with the class... she talks so much about herself and about her love for improv... all she talks about is herself and improv", + "pos": 0.152, + "neu": 0.785, + "neg": 0.064, + "_id": { + "$oid": "6711d799cd60fca157e60ca4" + } + }, + { + "text": "She is very easy as long as you try.she gives a lot of extra credit.i didnt do like four assignments and i still got an A.she repeats everything many times throughout the class.the smallest assignment takes an hour to explain. however i do recommend her because of how easy she is easy she is", + "pos": 0.184, + "neu": 0.783, + "neg": 0.034, + "_id": { + "$oid": "6711d799cd60fca157e60ca5" + } + }, + { + "text": "She has problems with communication with students , if you ask quastion she blame you for not listening. She is nuts , that is nice discription of her. You have to use ink when you writte any assisments, she takes poin for that.", + "pos": 0.057, + "neu": 0.793, + "neg": 0.15, + "_id": { + "$oid": "6711d799cd60fca157e60ca6" + } + }, + { + "text": "shes nice but i must warn you guys, she is a bit weird. Yes she does make you act like a fool but its fun in the end. i took her for acting 1 and at first i wanted to drop the class but then changed my mind. If you dont like to act stupid and do stupid assignments in class then this is not for you.", + "pos": 0.144, + "neu": 0.614, + "neg": 0.241, + "_id": { + "$oid": "6711d799cd60fca157e60ca7" + } + }, + { + "text": "Easy class in the sense ofthe papers you have to do, but if you are shy don't take it. It will not help you at all to eliminate being afraid of public speaking. The teacher is a total nut. She makes you do things like act like a monkey (seriously) to supposily help you eliminate your fear. It sure didn't work for me", + "pos": 0.185, + "neu": 0.669, + "neg": 0.145, + "_id": { + "$oid": "6711d799cd60fca157e60ca8" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d799cd60fca157e60ca9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79acd60fca157e60cab" + }, + "professor_name": "Yuying Gosser", + "rating": 1.4, + "department": "Chemistry department", + "comments": [ + { + "text": "Very hard to understand her heavy accent.", + "pos": 0.0, + "neu": 0.78, + "neg": 0.22, + "_id": { + "$oid": "6711d79acd60fca157e60cac" + } + }, + { + "text": "She is not so helpful.", + "pos": 0.0, + "neu": 0.577, + "neg": 0.423, + "_id": { + "$oid": "6711d79acd60fca157e60cad" + } + }, + { + "text": "She sucks, do not take this class even it is so useful. Never saw a professor with such attitude. She is also banging the table to individual students, mumbling with horrible accents. Terrifying horrible prof.on earth!!", + "pos": 0.077, + "neu": 0.639, + "neg": 0.284, + "_id": { + "$oid": "6711d79acd60fca157e60cae" + } + }, + { + "text": "She is the worst teacher I have ever seen. She cannot make sense of the material herself and she tries to mumble through the stuff she doesn't know. Totally useless. Never take a class with her unless you want a semester of HELL.", + "pos": 0.074, + "neu": 0.746, + "neg": 0.18, + "_id": { + "$oid": "6711d79acd60fca157e60caf" + } + }, + { + "text": "Substituted a chem 103 class and that was hell. I gave her the benefit of the doubt by giving her a chance, but she spoke too softly, and couldn't understand what on earth was going on. People walked out on her in the middle of class. I felt like we were in kindergarten telling us to be quiet. One day was enough. Run... and never look back!", + "pos": 0.118, + "neu": 0.821, + "neg": 0.061, + "_id": { + "$oid": "6711d79acd60fca157e60cb0" + } + }, + { + "text": "Quoting Joseph Conrad, \"OH THE HORROR!\" Advice from Shakespeare on when to take her class, \"NEVER, NEVER, NEVER, NEVER, NEVER\" RUN FOR YOUR LIVES!", + "pos": 0.0, + "neu": 0.821, + "neg": 0.179, + "_id": { + "$oid": "6711d79acd60fca157e60cb1" + } + }, + { + "text": "There is not anyway other way to describe her but HORRENDOUS.", + "pos": 0.0, + "neu": 0.614, + "neg": 0.386, + "_id": { + "$oid": "6711d79acd60fca157e60cb2" + } + }, + { + "text": "I remember me and my friends actually wrote a petition to have this professor removed. I failed every test and the final with a 45 and she passed me with a C.", + "pos": 0.085, + "neu": 0.824, + "neg": 0.091, + "_id": { + "$oid": "6711d79acd60fca157e60cb3" + } + }, + { + "text": "God she is horrible. made the easiest class on earth hard. if not for self study. i'd never pass. fair tests. horrible. lecture waste of time.", + "pos": 0.132, + "neu": 0.513, + "neg": 0.355, + "_id": { + "$oid": "6711d79acd60fca157e60cb4" + } + }, + { + "text": "is there any worst professor???", + "pos": 0.0, + "neu": 0.463, + "neg": 0.537, + "_id": { + "$oid": "6711d79acd60fca157e60cb5" + } + }, + { + "text": "if it was not for my AP chem from high school, i'de never pass this class. the lady can not teach nor explain. her english is bad and speaks softly. tests are not bad, but how's that going to help when in class u have no idea what's going on?", + "pos": 0.097, + "neu": 0.814, + "neg": 0.089, + "_id": { + "$oid": "6711d79acd60fca157e60cb6" + } + }, + { + "text": "she really sucks as a teacher and damn she can't speak english... then she tries to cover the material too fast and she doesn't even care what the hell is going on she just write on the projector and make weird sounds... i guess trying to explain what she's writing", + "pos": 0.0, + "neu": 0.757, + "neg": 0.243, + "_id": { + "$oid": "6711d79acd60fca157e60cb7" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d79acd60fca157e60cb8" + } + }, + { + "text": "Interesting contradiction here: she cant teach at all, nor can she even speak english, yet her tests are easy as hell. take your chances....", + "pos": 0.224, + "neu": 0.576, + "neg": 0.2, + "_id": { + "$oid": "6711d79acd60fca157e60cb9" + } + }, + { + "text": "she can't teach but if you take a class with her buy the teacher's solutions manual and you'll get an A as long as you do all the problems in the book and keep up with the work.", + "pos": 0.049, + "neu": 0.865, + "neg": 0.085, + "_id": { + "$oid": "6711d79acd60fca157e60cba" + } + }, + { + "text": "oh wow, this teacher CANNOT teach, if u're good at learning on your own, good luck, her tests aren't hard, but wow, she CANNOT teach. I like chemistry and she made the simplest things very confusing.", + "pos": 0.201, + "neu": 0.596, + "neg": 0.203, + "_id": { + "$oid": "6711d79acd60fca157e60cbb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79acd60fca157e60cbd" + }, + "professor_name": "Laura Alarcon", + "rating": 3.5, + "department": "Psychology department", + "comments": [ + { + "text": "Do not recommend, very disorganized, due dates are messy and moved back and forth, didn't learn much you can find better profs.", + "pos": 0.181, + "neu": 0.652, + "neg": 0.167, + "_id": { + "$oid": "6711d79acd60fca157e60cbe" + } + }, + { + "text": "She's sweet for the most part but very disorganized. Her Blackboard page was a mess and filled with random resources, being late/absent affected you heavily. It was very hard to get back up to a good grade if you missed even one assignment. She was available to talk but unfortunately i didn't learn anything in her class that wasn't self taught.", + "pos": 0.078, + "neu": 0.705, + "neg": 0.217, + "_id": { + "$oid": "6711d79acd60fca157e60cbf" + } + }, + { + "text": "Prof Alarcon was fairly disorganized. Once you get used to finding the assignments on blackboard, you should be fine. This class really depends on submitting all work on time, one missed deadline can affect your grade greatly. I recommend this prof as long as you are disciplined with submitting work. I took this Summer 2023, assignments due daily.", + "pos": 0.073, + "neu": 0.857, + "neg": 0.07, + "_id": { + "$oid": "6711d79acd60fca157e60cc0" + } + }, + { + "text": "The Blackboard page is a mess. Doesn't follow her own syllabus. If you miss an assignment for any reason good luck trying to make it up, she'll tell you to do extra credit which counts for next to nothing. She's not unkind but can be a bit manic and is weird about communication. Easy A but I didn't learn much, unfortunately.", + "pos": 0.172, + "neu": 0.736, + "neg": 0.092, + "_id": { + "$oid": "6711d79acd60fca157e60cc1" + } + }, + { + "text": "The class was very disorganized at first, but eventually Professor Alarcon fixed that. The workload is very heavy, especially with the papers. I'd recommend starting the assignments right away. Other than that, she's a good professor and her lectures are very clear. She's also accommodates for students when possible. I would recommend her.", + "pos": 0.222, + "neu": 0.751, + "neg": 0.027, + "_id": { + "$oid": "6711d79acd60fca157e60cc2" + } + }, + { + "text": "This is an easy class. All the homework and tests/quizzes were online despite having an in person class. She was always available so if you needed to ask question she would be there. Attendance was mandatory and you don't have to participate.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d79acd60fca157e60cc3" + } + }, + { + "text": "Professor is a easy grader, if you writing essay with things she want, then you will get 100 on the essay. She did not really care about format, also did not give any feedback on essay. She is a little disorganized, BB have many tags and mostly useless and a lot time can't found what I want.", + "pos": 0.086, + "neu": 0.796, + "neg": 0.118, + "_id": { + "$oid": "6711d79acd60fca157e60cc4" + } + }, + { + "text": "I enjoyed this online class it is pretty easy as long as you keep up with deadlines. Especially for homework because once the assignment closes its done with.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d79acd60fca157e60cc5" + } + }, + { + "text": "This professor is quite unorganized, but if brought to her attention, she will make any corrections or clarifications that are needed. She is kind and reasonable. The material isn't hard and as long as you do everything on time, you should pass.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d79acd60fca157e60cc6" + } + }, + { + "text": "She tries to be organized that she is so unorganized. She is constant updating her 10 page syllabus and expects you to check it on the daily and look for her small grey highlights. There are SOOOO many assignments and tests that she doesn't ever bring up or let you know they have been posted, she just expects you to know from the syllabus.", + "pos": 0.019, + "neu": 0.981, + "neg": 0.0, + "_id": { + "$oid": "6711d79acd60fca157e60cc7" + } + }, + { + "text": "She's tough, but cares about her students. Her exams aren't hard (a little tricky) but she does drop one. Definitely an easy A if you read, study and are on top with the material. 100% would recommend :)", + "pos": 0.401, + "neu": 0.503, + "neg": 0.096, + "_id": { + "$oid": "6711d79acd60fca157e60cc8" + } + }, + { + "text": "Very unprofessional and does not consider the wellbeing of her students. Inconsistent with scheduling and expectations for her students. Seems lost in her own teaching and schedule.", + "pos": 0.0, + "neu": 0.809, + "neg": 0.191, + "_id": { + "$oid": "6711d79acd60fca157e60cc9" + } + }, + { + "text": "I took her psychology course for Spring 2020. She is my favorite professor. She is very understandable, she is a little messy but it happens, she just has a lot of files. She is test heavy, she gives many quizzes and tests. However, if you study you will definitely get a great score. Her class is definitely for people who can memorize things.", + "pos": 0.198, + "neu": 0.78, + "neg": 0.022, + "_id": { + "$oid": "6711d79acd60fca157e60cca" + } + }, + { + "text": "Took this class Summer 2020 because of COVID as well. I'm an engineering student and needed one last liberal art over 200s level and this was the best one I could've taken. The professor is such a kind person, who is always willing to compromise with the students. Assignments are not difficult, exams are a little tricky but she is a fair grader.", + "pos": 0.157, + "neu": 0.826, + "neg": 0.017, + "_id": { + "$oid": "6711d79acd60fca157e60ccb" + } + }, + { + "text": "Because of COVID-19 this summer class was online. She is a bit unorganized, but shes super nice and understanding and is willing to help students with anything. We had 4 exams (lowest grade was dropped), 7 quizzes (1 was also dropped), around 7 mini hw assignments, a wiki profile, and an oral presentation. Very easy A class. Participation counts!", + "pos": 0.23, + "neu": 0.724, + "neg": 0.046, + "_id": { + "$oid": "6711d79acd60fca157e60ccc" + } + }, + { + "text": "She is quite unorganized; she would upload her exams late and sometimes emailed us incorrect info. Some of the exam questions were also topics never covered in class. Her lectures are boring; she reads directly from the slides and takes forever to go over chapters (took 3 classes to cover chap 1) Besides that, she is really kind and understanding.", + "pos": 0.058, + "neu": 0.906, + "neg": 0.036, + "_id": { + "$oid": "6711d79acd60fca157e60ccd" + } + }, + { + "text": "One of the kindest professors on campus. Really cares about her students. The material is the basic building blocks of psychology, so it isnt difficult. Very few quizzes, tests and assignments. Just show up, engage in class and read the chapters and youll get an A.", + "pos": 0.155, + "neu": 0.808, + "neg": 0.037, + "_id": { + "$oid": "6711d79acd60fca157e60cce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79bcd60fca157e60cd0" + }, + "professor_name": "Elise Engler", + "rating": 3.3, + "department": "Education department", + "comments": [ + { + "text": "She makes you work for the grade.This class asks for you to express creativity and manage work. If you're an educator, or studying to become one, you can understand that she uses her teaching style which involves art to engage students in the content of the class. She cares and makes it clear that she has expectations about produced work.", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d79bcd60fca157e60cd1" + } + }, + { + "text": "Professor Engler was very straight forward with what she wanted of her students. People who are complaining about her most likely didn't do the work that she asked for, or were extremely disrespectful to her. She gives ALL of her students numerous chances to get their grades up. Art heavy class, and assignments are not dreadful.", + "pos": 0.106, + "neu": 0.864, + "neg": 0.03, + "_id": { + "$oid": "6711d79bcd60fca157e60cd2" + } + }, + { + "text": "This professor is a mess, she does not show professionalism in the class. please keep your peace of mind and don't take this class. She will make your life impossible.", + "pos": 0.164, + "neu": 0.765, + "neg": 0.071, + "_id": { + "$oid": "6711d79bcd60fca157e60cd3" + } + }, + { + "text": "This Professor is not the greatest when it comes to being professional. Extremely rude and critical. Does not give proper feed back without throwing jabs at your work and comparing it to being \"inadequate\" compared to other classmates. Well everyone process information differently. The material and lectures are repetitive and boring.", + "pos": 0.034, + "neu": 0.706, + "neg": 0.26, + "_id": { + "$oid": "6711d79bcd60fca157e60cd4" + } + }, + { + "text": "Shes a very caring professor, do you work and youll receive a good grade!!! Easy A.", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d79bcd60fca157e60cd5" + } + }, + { + "text": "So much work for an Inquiry class fun activities to work but not if you take more courses or have more responsibility her homework will take your full concentration or attention that will probably affect other courses. WONT GRADE YOU UNTIL NEAR THE END OF THE SEMESTER. Embarrass students when she don't agree If you like to be challenge she is good.", + "pos": 0.148, + "neu": 0.776, + "neg": 0.076, + "_id": { + "$oid": "6711d79bcd60fca157e60cd6" + } + }, + { + "text": "easy class, yet very demanding. professor Engler is passionate about art so this is a basically a art class plus 15 hours of observations (at 2 different sites) 2 group projects 2 papers and some independant work as well. be ready to spend some money also cause u will need to buy some materials you will only be using once. be on time do the work.", + "pos": 0.147, + "neu": 0.823, + "neg": 0.03, + "_id": { + "$oid": "6711d79bcd60fca157e60cd7" + } + }, + { + "text": "If you do your work and actually come to class, then she'll give you an A. It's not going to be an easy A, b/c she genuinely wants you guys to learn and understand the process of being a teacher. The projects were insanely easy and creative. This teacher was passionate about teaching and the arts. If you're gonna come to college then do the work!", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d79bcd60fca157e60cd8" + } + }, + { + "text": "She will call you out in front of the class if late and will even embarrass you. Doesn't take excuses. Doesn't follow the syllabus. Not a hard course but you must do all of the assigned works and group projects. Oh and don't submit late work- it will reflect on your grades.", + "pos": 0.022, + "neu": 0.948, + "neg": 0.03, + "_id": { + "$oid": "6711d79bcd60fca157e60cd9" + } + }, + { + "text": "Is insensitive to students diverse behavior and diverse backgrounds, often reffered to black students as minorites, poor, unfortunate, and special needs, does not stick to the syllabus , is all over With course work in class and for homework,uses schoology rather than blackboard and will emabarass you in front of the whole class and call you names.", + "pos": 0.042, + "neu": 0.832, + "neg": 0.126, + "_id": { + "$oid": "6711d79bcd60fca157e60cda" + } + }, + { + "text": "She hates when you're late, she will call you out on it every time. I didn't enjoy the class but I didn't hate it either. Its just a lot of group work and she makes you do what feel like unnecessary art projects. On the bright side, she isn't a tough grader and always gives back clear feedback to do better on future papers!", + "pos": 0.253, + "neu": 0.7, + "neg": 0.047, + "_id": { + "$oid": "6711d79bcd60fca157e60cdb" + } + }, + { + "text": "Every class Elise complains about the high # of students and seems to use it as an excuse to give a lot less than she asks of us. She gives V little constructive feedback considering the amount of work she assigns and is shockingly unaware of race/gender dynamics for a person who so proudly claims to be \"political.\" Good person, mediocre professor.", + "pos": 0.152, + "neu": 0.764, + "neg": 0.085, + "_id": { + "$oid": "6711d79bcd60fca157e60cdc" + } + }, + { + "text": "Makes you work for your grade, and hates lateness. Attendance greatly affects you grade regardless on how much she likes you or how hard you work.", + "pos": 0.093, + "neu": 0.764, + "neg": 0.143, + "_id": { + "$oid": "6711d79bcd60fca157e60cdd" + } + }, + { + "text": "I love this class!This class is not an easy A. You have to work for your grade, which means -do projects,papers,participate, do your fieldwork (education class requires fieldwork fyi).Projects/papers are not difficult. She can b confusing at times,change things from the syllabus,but as with anything if you find something confusing as ask questions.", + "pos": 0.109, + "neu": 0.789, + "neg": 0.102, + "_id": { + "$oid": "6711d79bcd60fca157e60cde" + } + }, + { + "text": "TAKE THIS CLASS. She is amazing, makes the class environment so pleasant to work in. She is reasonable and as long as you express your concerns and difficulties she will work with you. Participation matters. Her class work consists of projects that she makes up according to the classrooms choice, majority vote. There is 2 major hands on projects.", + "pos": 0.138, + "neu": 0.829, + "neg": 0.033, + "_id": { + "$oid": "6711d79bcd60fca157e60cdf" + } + }, + { + "text": "She insists that \"This is an art class; it's inquiry in education.\" She basically makes you bring a load of things that you bring to an art class and has demands that contradict each other. One minute she says that she wouldn't judge, but the next in regards to whichever project we were doing, she starts giving a dissatisfied look. STAY AWAY.", + "pos": 0.046, + "neu": 0.879, + "neg": 0.075, + "_id": { + "$oid": "6711d79bcd60fca157e60ce0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79bcd60fca157e60ce2" + }, + "professor_name": "Richard Van Nort", + "rating": 2.8, + "department": "World Civilizations department", + "comments": [ + { + "text": "My favorite professor during my studies in college. I am writing this 3 years after I graduated. You will love him if you like world history. He is the only professor that I still remember till this day and respect the most.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d79bcd60fca157e60ce3" + } + }, + { + "text": "This teacher is impressively dull. If you wanted compare this course to a food, it would be a cross between tofu and spam. The only excitement you do get is the bizarre commentary in response to your answers in class. If you like being tortured and abused THIS IS YOUR GUY!!!", + "pos": 0.13, + "neu": 0.642, + "neg": 0.228, + "_id": { + "$oid": "6711d79bcd60fca157e60ce4" + } + }, + { + "text": "Hes an easy grader, there are 2 research essays, midterm and a finals. The finals and midterm consist of 10 questions, he wants to you pick three questions. He also wants the essays to be 5 pages and gives extra credit if you write more. There is no quizzes and summaries.", + "pos": 0.098, + "neu": 0.858, + "neg": 0.044, + "_id": { + "$oid": "6711d79bcd60fca157e60ce5" + } + }, + { + "text": "He is not a bad professor. While I admit his lectures are heavy, it also means you can take a lot of notes for the tests. We never really went by the book and his tests make you choose which terms to define and which events you want to talk about. no MC Make sure to have someone in class w/ you to help, cuz he's not accessible outside of class.", + "pos": 0.14, + "neu": 0.832, + "neg": 0.028, + "_id": { + "$oid": "6711d79bcd60fca157e60ce6" + } + }, + { + "text": "Hes not accessible outside of class so make sure youre always paying attention or have a friend in the class with you. He lectures literally the whole class time. No group projects or presentations. He is a fair grader! Take this class if you want something where you dont need to worry about participating 24/7.", + "pos": 0.191, + "neu": 0.774, + "neg": 0.035, + "_id": { + "$oid": "6711d79bcd60fca157e60ce7" + } + }, + { + "text": "he's an okay professor, extremely lecture heavy he just talks. the tests are easy because he provides a study sheet, its half definitions. he does summaries but doesn't keep track of them. the tests are all essays or short response. two major papers which are pretty easy. the more you write the higher the grade.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d79bcd60fca157e60ce8" + } + }, + { + "text": "Weekly summaries. After first 4 weeks he stops caring. 2 papers, a midterm and final. Papers are 4 pages each, do 5 for chances on higher grades. Review sheets for exams are almost the exact same as the actual exams. Dont speak in class he gets a nasty attitude when interrupted. Get someone to sign your name on attendance dont need to go. Easy A.", + "pos": 0.106, + "neu": 0.794, + "neg": 0.1, + "_id": { + "$oid": "6711d79bcd60fca157e60ce9" + } + }, + { + "text": "Prof VanNort is alright. He is a little rude but the less you speak the better. Honestly he is an easy A. He grades very leniently and his exams are almost identical to the review sheets he hands out. He also offers extra credit so make use of it. He did assign chapter summaries as homework but he didn't really care when you handed them in.", + "pos": 0.204, + "neu": 0.726, + "neg": 0.069, + "_id": { + "$oid": "6711d79bcd60fca157e60cea" + } + }, + { + "text": "He is a really good professor. There are weekly summaries on each unit that one submit it whenever they like. There were two papers based on readings and if you follow his format, you will get an A. There is a midterm and a final which is exactly similar to the review sheets he gives. The more you write, the higher your grade will be. Take him!!", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d79bcd60fca157e60ceb" + } + }, + { + "text": "Honestly, his class is actually not that bad. He knows what hes talking about but goes off topic sometimes. Only 2 papers, midterm, and final. Hes not a tough grader. Assigns chapter summaries but hes very lenient with those, only 1-2 pages (he doesnt mind if u give It in late). He gives study sheets, pretty much same as exam.", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d79bcd60fca157e60cec" + } + }, + { + "text": "This professor is horrible. Very disrespectful when he speaks to you. He is very lecture heavy and is very boring. He isn't clear with what he wants and doesn't give dates for the assignments in his class. His lectures are a mess and confusing. He has a habit of rambling fast and isn't coherent with a thought. Avoid him at all cost.", + "pos": 0.0, + "neu": 0.79, + "neg": 0.21, + "_id": { + "$oid": "6711d79bcd60fca157e60ced" + } + }, + { + "text": "He lectures whole time, very boring! Dont expect to learn history in his class. Gives a midterm, a final (10 identities and 2-3 essays, gives study guide before exams), 2-3 papers and weekly summaries (after couple of weeks he doesnt keep track). Follow the formats for papers and know the topics from study sheets, EASY A! Doesn't use Blackboard!", + "pos": 0.07, + "neu": 0.889, + "neg": 0.04, + "_id": { + "$oid": "6711d79bcd60fca157e60cee" + } + }, + { + "text": "Didn't have clarity of how grades are made up, no percentages of how much everything was worth. Assigned two papers, a midterm, final, weekly chapter summaries, and extra credit but he took forever to give everything back. He gave out study sheets for exams which made them doable. Never took attendance. Seemed not to care about students' grades.", + "pos": 0.052, + "neu": 0.842, + "neg": 0.106, + "_id": { + "$oid": "6711d79bcd60fca157e60cef" + } + }, + { + "text": "Very boring, I recommend never take this professor.", + "pos": 0.243, + "neu": 0.528, + "neg": 0.228, + "_id": { + "$oid": "6711d79bcd60fca157e60cf0" + } + }, + { + "text": "Not accessible outside class, bad teaching skills and bad preparation for classes, he does not explain assignments thoroughly and is confusing, does not have good management of time, waste student's time. When he cancel a class, he does not send out any email, you can only find out when you go to class.", + "pos": 0.0, + "neu": 0.742, + "neg": 0.258, + "_id": { + "$oid": "6711d79bcd60fca157e60cf1" + } + }, + { + "text": "Does not keep his promise, waste student's time, never get things on time. When he cancel a class, he does not send out any email, you can only find out when you go to class.", + "pos": 0.0, + "neu": 0.826, + "neg": 0.174, + "_id": { + "$oid": "6711d79bcd60fca157e60cf2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79ccd60fca157e60cf4" + }, + "professor_name": "Jennifer Buno", + "rating": 3.4, + "department": "English department", + "comments": [ + { + "text": "Extremely caring, will require you to write quite a bit but it's not anything extraordinary. Very laidback and lenient grading criteria.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60cf5" + } + }, + { + "text": "Professor. Buno was very kind and caring professor. I had taken this class during the winter semester. There is a lot of writing in this class, but it is very helpful. I learned a lot about writing in English. This class is very easy to get an A in if you put in the effort and do the work. I highly recommend you take her.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60cf6" + } + }, + { + "text": "Really understanding and sweet professor, cares about her students. In order to get an A you have to do two projects for extra credit but its fairly easy. Lectures were long and boring. Theres a lot of writing assignments but she only grades based off effort and whether or not you met that rubric criteria, not grammar.", + "pos": 0.151, + "neu": 0.803, + "neg": 0.046, + "_id": { + "$oid": "6711d79ccd60fca157e60cf7" + } + }, + { + "text": "if i had her at a later class time, I think i wouldve done better. This class is a heavy workload class, the work isnt hard tho homework, participation, attendance and papers make ur grade. she is very kind and understanding but also dont take advantage of that.", + "pos": 0.106, + "neu": 0.853, + "neg": 0.041, + "_id": { + "$oid": "6711d79ccd60fca157e60cf8" + } + }, + { + "text": "Professor Buno is really caring and understanding. She assigns a lot of work which isn't hard, just tedious. Her lectures are very boring but as long as you do the work and put in some effort, you should be able to get a good grade.", + "pos": 0.145, + "neu": 0.819, + "neg": 0.036, + "_id": { + "$oid": "6711d79ccd60fca157e60cf9" + } + }, + { + "text": "I took it in winter semester and would recommend others to rather take her during winter too as during a full semester there might be a lot of work but during this small semester if you have a good time management to easily pass the class becuase of her grading contract that is not based on SAE rather is based on your own creative language.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60cfa" + } + }, + { + "text": "She's been very understanding with me and the deadlines for assignments. She can be very flexible, you just have to communicate with her. She is very sweet and genuinely cares about your well-being and mental health.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60cfb" + } + }, + { + "text": "This class just stressed me out. The professor expected too much out of our assignments and was never happy with my work, she always seemed grumpy as well.", + "pos": 0.065, + "neu": 0.769, + "neg": 0.166, + "_id": { + "$oid": "6711d79ccd60fca157e60cfc" + } + }, + { + "text": "This course is very different from your typical English class, i like how she encourages you to write with your own voice and does not penalize you for grammar or formatting errors in this course", + "pos": 0.136, + "neu": 0.804, + "neg": 0.06, + "_id": { + "$oid": "6711d79ccd60fca157e60cfd" + } + }, + { + "text": "She was one of the most disingenuous professors I have had who did not care about our grades and our success in the class after it was all over. By the way, she decided to made it asynchronous for 50% of the time, maybe thats why she was not on the same page as her students. Upsetting.", + "pos": 0.058, + "neu": 0.851, + "neg": 0.09, + "_id": { + "$oid": "6711d79ccd60fca157e60cfe" + } + }, + { + "text": "If you're expecting to pass with minimal effort, don't take this class. There are three major essays given throughout the semester and a website portfolio for your final. If you're in constant communication with her about your grades and the class, you will pass. Overall, I would rate a 9.5 out of 10. Would definitely take this class again.", + "pos": 0.044, + "neu": 0.956, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60cff" + } + }, + { + "text": "She is nice at first but then you will see her true character show throughout the semester and by the end she will fail you. She makes so many rude backhanded comments that leaves you thinking if you will even pass her class. So many unnecessary papers and the grading rubric is horrendous. Please do not take her classes, don't let her fool you!!!!!", + "pos": 0.138, + "neu": 0.677, + "neg": 0.185, + "_id": { + "$oid": "6711d79ccd60fca157e60d00" + } + }, + { + "text": "Professor Bunos assignments were overall pretty easy, but there were lots of requirements that had to be met. Her grading was fair and she was very reasonable. She also made sure to check in with every single student.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60d01" + } + }, + { + "text": "If you can avoid this Professor you should. Very misleading grading criteria, the whole class was disappointed with their final grades, and we did not receive answers either!", + "pos": 0.0, + "neu": 0.744, + "neg": 0.256, + "_id": { + "$oid": "6711d79ccd60fca157e60d02" + } + }, + { + "text": "A writing heavy class, there was a writing assignment due every week and 3 essays (2-5 pages) in total. She seems really nice and grades okay but her instructions were very confusing. I was thrown off by the grade she gave me because she gave me such high grades on my assignments, I don't really understand her. Just hope for the best I guess. :/", + "pos": 0.168, + "neu": 0.756, + "neg": 0.075, + "_id": { + "$oid": "6711d79ccd60fca157e60d03" + } + }, + { + "text": "Stay away from this Professor! She will make you believe youre doing good in the class and at the end leave you with a very unexpected low grade. She stops replying to emails at the end too! Terrible.", + "pos": 0.065, + "neu": 0.737, + "neg": 0.198, + "_id": { + "$oid": "6711d79ccd60fca157e60d04" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79ccd60fca157e60d06" + }, + "professor_name": "Molly Aitken-Zaidi", + "rating": 3.2, + "department": "Art department", + "comments": [ + { + "text": "Awful professor, very heartless and cold towards a student's work, she is very mean and cruel with helping her students pass her class. Harsh grader, do not recommend her.", + "pos": 0.054, + "neu": 0.564, + "neg": 0.382, + "_id": { + "$oid": "6711d79ccd60fca157e60d07" + } + }, + { + "text": "I love her! She's so sweet, and is able to make an art history class enjoyable. Like someone else mentioned, at first I wasn't interested in Southeast Asian art but by the end of the semester, my tastes have changed. I've learned a lot from her lectures and the readings she gives weekly.", + "pos": 0.154, + "neu": 0.818, + "neg": 0.028, + "_id": { + "$oid": "6711d79ccd60fca157e60d08" + } + }, + { + "text": "She is not helpful at all! She grades very harshly, especially for a introduction to indian art course. Most of the students have little to no knowledge of Indian Art but she expects us to write superb papers. In addition, her reading homeworks are very long and she will give pop quizzes to see if you did your reading. She doesn't explain things", + "pos": 0.086, + "neu": 0.869, + "neg": 0.045, + "_id": { + "$oid": "6711d79ccd60fca157e60d09" + } + }, + { + "text": "Professor Aitken is super knowledgeable of Asian art and art historical theory. However, she is not very helpful in teaching or helping students understand the material. She assigns papers and is very black and white about grading. It would be helpful if she gave more helpful feedback and worked with student weaknesses.", + "pos": 0.19, + "neu": 0.73, + "neg": 0.08, + "_id": { + "$oid": "6711d79ccd60fca157e60d0a" + } + }, + { + "text": "She's a good professor. I gotta admit, I wasn't so crazy about South Asian art when I first started, but her sense of humor and lectures made it fun for me. In my experience, she doesn't really pick on students who don't participate anymore. She does also give breaks now, and lengthy breaks I mean. Readings are pretty long though.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60d0b" + } + }, + { + "text": "Shes pretty clear on what she want but is not really helpful She also tends to randomly pick on people so pay attention Lots of readings but quizzes are simple She grades the papers harshly though", + "pos": 0.121, + "neu": 0.744, + "neg": 0.135, + "_id": { + "$oid": "6711d79ccd60fca157e60d0c" + } + }, + { + "text": "Shes a great teacher only if you have a passion for indian culture! Take her, do her readings and youll be fine! Class is like a debate at points but very interesting lec. Shes a great person! Loved her!", + "pos": 0.427, + "neu": 0.573, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60d0d" + } + }, + { + "text": "Loved her class. Readings are EXTREMELY important. She'll give pop quizzes and doesn't like when you don't read. She does have a tendency to pick on those who are inattentive.", + "pos": 0.188, + "neu": 0.753, + "neg": 0.059, + "_id": { + "$oid": "6711d79ccd60fca157e60d0e" + } + }, + { + "text": "She teaches the class somewhat well, but DON'T SLEEP IN CLASS. If she see's you sleeping/ unattentive in class, she picks on u. She trys to act cute, but failed to. Unrealiable and strict when it comes to papers. She doesn't help you, but instead say \"No, no, no\" if something is wrong with your paper. She will not give you hints. AVOID if possible!", + "pos": 0.067, + "neu": 0.737, + "neg": 0.196, + "_id": { + "$oid": "6711d79ccd60fca157e60d0f" + } + }, + { + "text": "She a great teacher! Amazing personality and knows what shes talking about when it comes to Indian Art! Great prof. esp if your interested in Indian culture. Do your readings because you might get a pop quiz, and talk alot in class she likes interaction.", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d79ccd60fca157e60d10" + } + }, + { + "text": "i can't believe aitken could have any negative reviews. she is the best professor i have ever had by far, and especially in art history where professors can tend to be a bit dry. YES, aitken is demanding when it comes to written work, but having high standards is critical to the writing/student process.", + "pos": 0.08, + "neu": 0.809, + "neg": 0.111, + "_id": { + "$oid": "6711d79ccd60fca157e60d11" + } + }, + { + "text": "She is way too hard. Gives unrealistic amount of reading. Hard grader plus her paper are hard and she is very demanding. Lectures for 3 hour with no breaks", + "pos": 0.0, + "neu": 0.736, + "neg": 0.264, + "_id": { + "$oid": "6711d79ccd60fca157e60d12" + } + }, + { + "text": "Great professor, easy class, simple exams. She is fun but a bit flighty. Do all the work guarantees an A. Class does get boring if students ask too many questions.", + "pos": 0.187, + "neu": 0.73, + "neg": 0.083, + "_id": { + "$oid": "6711d79ccd60fca157e60d13" + } + }, + { + "text": "Great sense of humor. Critical when it comes to writing assignments, but helps you in the long run.", + "pos": 0.324, + "neu": 0.605, + "neg": 0.071, + "_id": { + "$oid": "6711d79ccd60fca157e60d14" + } + }, + { + "text": "She will make you work on your butt off for an introduction class and grade very hard. It is an art history class, but she should better teach English, she had the nerve to criticize the writing center tutors.Take another teacher if you can.", + "pos": 0.078, + "neu": 0.827, + "neg": 0.096, + "_id": { + "$oid": "6711d79ccd60fca157e60d15" + } + }, + { + "text": "this teacher will fail u by her reason, anyway if u try your best, but still not get a good grade on her test and paper, she will fail u...", + "pos": 0.067, + "neu": 0.672, + "neg": 0.261, + "_id": { + "$oid": "6711d79ccd60fca157e60d16" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79dcd60fca157e60d18" + }, + "professor_name": "I-Hsien WU", + "rating": 4.9, + "department": "Chinese department", + "comments": [ + { + "text": "Wu laoshi is amazing!! Her class is very engaging and fun. She's also very caring and understanding. Always asks if anyone has questions and gives clear answers. Class participation everyday by drawing straws, you would get to know each other through activities and partner work. 10/10 would recommend taking her class.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d19" + } + }, + { + "text": "Professor Wu is a phenomenal professor. Her teaching style is friendly for everyone as long as your do your part and study for the class. Her grading is also extremely lenient. Despite having a quiz every day (excluding exam days), they're very easy if you study before hand. She will let you know what to study.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d1a" + } + }, + { + "text": "best professor at ccny!! always makes sure students understand the material. 13/10 recommend", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d1b" + } + }, + { + "text": "Wu laoshi is passionate about what she teaches. There are not that many professors at CCNY that are passionate about what they teach. She makes it fun to learn chinese and has a lot of patience!! highly recommend this class", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d1c" + } + }, + { + "text": "Wu-laoshi is great! She's caring and enthusiastic. I took both CHIN123 and CHIN124 with her. She structures the class in a way that makes learning characters and Chinese grammar simple and easy. Online learning has all sorts of difficulties but I think she did a great job in adapting to distance learning. 10/10 would recommend taking her class.", + "pos": 0.254, + "neu": 0.723, + "neg": 0.023, + "_id": { + "$oid": "6711d79dcd60fca157e60d1d" + } + }, + { + "text": "Wu laoshi is wonderful! She does plenty of practice with the class and reviews well before exams. There are 5 exams, all non-cumulative with a written and verbal part. A textbook is used, you can get the Web App version or the physical one. Doing the homework's help with exams. Overall, she makes it fun and easy to learn beginner level Chinese!", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d1e" + } + }, + { + "text": "Very fun class and she makes Chinese easy to grasp.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d1f" + } + }, + { + "text": "Best Chinese professor ever. Take her, easy class, and you just have to read the book and grind the characters. Jiandan A.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d20" + } + }, + { + "text": "Best teacher at CCNY", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d21" + } + }, + { + "text": "Amazing Professor. Amazing Course. NO wonder why everybody is chasing the Asian Study course.", + "pos": 0.353, + "neu": 0.511, + "neg": 0.136, + "_id": { + "$oid": "6711d79dcd60fca157e60d22" + } + }, + { + "text": "She's the best professor ever! She makes Chinese easy to learn even for beginners. Taking her again for CHIN124. Coming to class on time is a must so you don't miss a quiz (she gives it everyday). It sounds crazy but it makes learning easier. She's also very nice and understanding. Always asks if anyone has questions and gives clear answers.", + "pos": 0.221, + "neu": 0.755, + "neg": 0.024, + "_id": { + "$oid": "6711d79dcd60fca157e60d23" + } + }, + { + "text": "SHE'S THE BEST! She has a PhD and thank you CCNY because she knows what she's doing. She repeats each vocab we learn because repetition sticks to your memory. I never got lower than a 93 on her tests and a 6/10 on her quizzes (which are every day you see her). Xie Xie nin, Wu laoshi!", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d24" + } + }, + { + "text": "She is a Cool cat. You'll end up learning the language with her style of teaching.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d25" + } + }, + { + "text": "Very kind and personable. If you have her, she will get you engaged and make Chinese interesting. Class participation everyday by drawing straws, but everyone gets to know each other through activities. No one is a stranger in that class!", + "pos": 0.14, + "neu": 0.798, + "neg": 0.062, + "_id": { + "$oid": "6711d79dcd60fca157e60d26" + } + }, + { + "text": "Wu Laoshi is energetic, enthusiastic, clear/on-point, fair, encouraging, and totally cool. It's hard to find professors like her these days. Be warned you will have a quiz and homework due almost every class, but it's a brilliant idea since it keeps everyone on track. Helpful, fun, a wonderful person in general", + "pos": 0.416, + "neu": 0.544, + "neg": 0.04, + "_id": { + "$oid": "6711d79dcd60fca157e60d27" + } + }, + { + "text": "Professor Wu, or \"Wu Laoshi\" is the best professor to have for beginner's level Chinese. She is very clear, patient, approachable, and friendly towards everyone! The textbook and workbooks weren't very expensive, and she even gives reviews for tests. She makes learning Chinese easy and even more interesting than it already is!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d28" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79dcd60fca157e60d2a" + }, + "professor_name": "Segni Sami", + "rating": 2.9, + "department": "Science department", + "comments": [ + { + "text": "There was a lot of work to do within the winter 3-4 week semester, but there were several chances to take things over/extra credit. The professor does send out a lot of emails, but he also holds Bb Collaborate meetings to talk exams, assignments, and answer any questions.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d2b" + } + }, + { + "text": "Easy credit class to take. Bombards you with a lot of emails and color codes every little thing. If you follow the deadline, you'll be good and get an easy A with this.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d2c" + } + }, + { + "text": "EASY class! Great professor. Strict on deadline! Learned a lot in this class and everything was so easy.", + "pos": 0.446, + "neu": 0.554, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d2d" + } + }, + { + "text": "He did a-lot of video quizes weekly and you can take them twice. He dorps the lowest grade.\n3 main assignments\nmidterm is easy if you watch the lecture videos and take notes.", + "pos": 0.079, + "neu": 0.849, + "neg": 0.071, + "_id": { + "$oid": "6711d79dcd60fca157e60d2e" + } + }, + { + "text": "Not flexible whatsoever, constantly spams w. emails in huge bright bold letters repeating & enforcing his strict rules. Doesn't understand that things happen whether personal life or technical difficulties. Lectures are extremely disengaging & he isn't easily accessible, shows very little care for students. Don't take his classes.", + "pos": 0.19, + "neu": 0.708, + "neg": 0.102, + "_id": { + "$oid": "6711d79dcd60fca157e60d2f" + } + }, + { + "text": "Pray that there are no mistakes on the Blackboard website during the final exam and that you get an easy A. I had done well on previous quizzes and assignments, but an error on the website during the final exam ended my exam early. Send him emails, he never replies.", + "pos": 0.121, + "neu": 0.814, + "neg": 0.064, + "_id": { + "$oid": "6711d79dcd60fca157e60d30" + } + }, + { + "text": "a complete moron, lacks any effort, condescending and critical of students, narcissistic as many of his classes just include himself talking about himself, overall a bad teacher. Who thought it was a good idea to hire him? cuz fire them too. also his classes are not mandatory. Not worth it unless you're lazy.", + "pos": 0.068, + "neu": 0.698, + "neg": 0.234, + "_id": { + "$oid": "6711d79dcd60fca157e60d31" + } + }, + { + "text": "Bro im hype I didn't listen to these dumb reviews. I took this over the winter and it was easy af. The prof is corny but funny. The material is like high school work. Exams are all multiple choice. Take home labs and video assignments but they are dumb easy. He even tells you answers. I was shook about winter classes but thank god for this class.", + "pos": 0.221, + "neu": 0.682, + "neg": 0.096, + "_id": { + "$oid": "6711d79dcd60fca157e60d32" + } + }, + { + "text": "The prof class is hard and wants you to be pacific in all your work. When he gives a test thing get hard around that part. if you get me as a teacher change the class or drop the class right away.", + "pos": 0.0, + "neu": 0.888, + "neg": 0.112, + "_id": { + "$oid": "6711d79dcd60fca157e60d33" + } + }, + { + "text": "I got A+ in his summer class! What I DID was being a responsible student, that is, prepare topic concepts before class, go to class, take notes, ask questions, review what knowledge was taught on that day, do HW, treat this class seriously. I think these are normal students' responsibilities, right? I got A+, and I believe you can do so.", + "pos": 0.081, + "neu": 0.892, + "neg": 0.026, + "_id": { + "$oid": "6711d79dcd60fca157e60d34" + } + }, + { + "text": "Don't take him if you can't predict future. His policies discriminate against students, so he doesn't have to do extra work. If you have emergency and can't come to class, he'll show no compassion or understanding of your situation. He's disrespectful, doesn't check email, &when you call him out on it, he snaps at you for the rest of the semester.", + "pos": 0.0, + "neu": 0.921, + "neg": 0.079, + "_id": { + "$oid": "6711d79dcd60fca157e60d35" + } + }, + { + "text": "Dont take this class if you want an easy A. Theres 4 take home assignments & 3 in class video assignments that arent hard however midterm and finals are difficult if you dont study a lot. He is a very strict & will mark you absent If you are even a minute late, sleeping or on your phone. Gets frustrated but is very smart on the topic though.", + "pos": 0.111, + "neu": 0.836, + "neg": 0.053, + "_id": { + "$oid": "6711d79dcd60fca157e60d36" + } + }, + { + "text": "Just the worst teacher I've ever seen in my life. Totally incomprehensible, and he's an adjunct but demands you call him professor. He's on a complete power trip and City College would do well to fire him.", + "pos": 0.063, + "neu": 0.804, + "neg": 0.134, + "_id": { + "$oid": "6711d79dcd60fca157e60d37" + } + }, + { + "text": "At first I was getting low grades, but then I went up to him and said \"whats the deal?\" since then I got high grades. His accent is very THICK, and he is helpfuT. Also he is a total HOTTIE. He dresses nice. I never got to ask if he was married(joking). Again he's understanding. Altho you can't pick lab prof. i was happy to have him.", + "pos": 0.118, + "neu": 0.861, + "neg": 0.021, + "_id": { + "$oid": "6711d79dcd60fca157e60d38" + } + }, + { + "text": "This guy is the best! I couldn't really understand most of what he was saying because his accent is so strong, but if you read the instructions in the lab while he's talking, you're fine. He's a VERY easy grader and comes around to everyone to help out if you're stuck. He also gives extra credit.", + "pos": 0.264, + "neu": 0.7, + "neg": 0.036, + "_id": { + "$oid": "6711d79dcd60fca157e60d39" + } + }, + { + "text": "He is a Lab Instructor. This is thrid week of school and I only had him once so far due to Monday classes being cancelled. First of all he is HANDSOME. But his accent sucks. He has a bad accent and talks fast so I have to say \"what?repeat that.\" I'll be back here to add more coments when semester is over.", + "pos": 0.035, + "neu": 0.829, + "neg": 0.136, + "_id": { + "$oid": "6711d79dcd60fca157e60d3a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79dcd60fca157e60d3c" + }, + "professor_name": "Devin Heyward", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "She is a awesome professor and trust me I been in college since 2012 and I've come across all types of professors. But she's really good. The work is regular we wrote 3 papers but 2 of them was opinion papers the 3rd was a final research paper. We had 3 test throughout the semester. And she gives extra credit. So it's really a cool class 2 take", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d3d" + } + }, + { + "text": "I loved Professor Heyward's class so much! This is the first review I've ever writte. I highly recommend and encourage you to take the class. I would retake the course two more times just to reabsorb it all over again. Truly an excellent professor!", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d3e" + } + }, + { + "text": "I love this professor, she is really amazing! Quite intimidating at first, but she has such a good heart and wants her students to do well. There was no textbook required, maybe because it was a summer course, but she posted all of the readings online. She allows for lots of class discussions, may annoy some people, others love it.", + "pos": 0.282, + "neu": 0.611, + "neg": 0.106, + "_id": { + "$oid": "6711d79dcd60fca157e60d3f" + } + }, + { + "text": "Cuurently taking her Psych and Black Experience class. LOOOOOVEEEE this professor. She is great and has made me immensely interested in the black experience. Highly recommend taking this course, You won't regret it!", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d40" + } + }, + { + "text": "Loved this professor and this class. Best class I've taken at this school. I would totally recommend. Wish she was teaching other classes so I could take them. There is a lot of reading and you will have to work ,but the class is so interesting and fun at times that you can work through it if you try.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d41" + } + }, + { + "text": "I took her pysch of the black experience course and she is a wonderful lecturer. She is passionate about what she teaches and how she teaches. She has great review sessions before her exams, she is very clear and thorough. Do not pass up an opportunity to take a class with her. She is awesome. More professors at ccny should be like her.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d42" + } + }, + { + "text": "Took her for Soc. Psych of Racism and Prejudice during the summer. Her syllabus is very clear and she follows it. Class is not hard but you must pay attention. Quizes, she give you a study sheet (you NEED to follow it and ask questions if doubtful). Shes funny and approachable. Your grade really depends on you but she does give extra credit!", + "pos": 0.142, + "neu": 0.733, + "neg": 0.125, + "_id": { + "$oid": "6711d79dcd60fca157e60d43" + } + }, + { + "text": "I took Social Psychology of Racism and Prejudice with her over the summer. She understood that it's difficult for students to learn and cram everything in a 4 week period. Her exams aren't bad - just study the review sheet and ask questions if anything is confusing. I'm taking another class with her in the Fall and I cannot wait! She is wonderful.", + "pos": 0.087, + "neu": 0.754, + "neg": 0.16, + "_id": { + "$oid": "6711d79dcd60fca157e60d44" + } + }, + { + "text": "Great teacher. You must take her. She is really cool and makes the class fun. She is very lenient.", + "pos": 0.452, + "neu": 0.548, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d45" + } + }, + { + "text": "She is an AMAZING instructor & person. She is very knowledgeable of the material & the class runs smoothly. Do the reading; they're not hard to read. Matter of fact the readings are fun. You have the entire semester to write your final paper & she makes you do drafts. I loved and enjoyed the class. Highly recommend her.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d46" + } + }, + { + "text": "She is by far the best professor i have had in CCNY. Her class flows so smoothly, she lets you know exactly what is on the test using review sheets. Her slides are good and she is VERY knowledgeable about the subject. Highly recommended", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d47" + } + }, + { + "text": "She's great!!! She's young, but has a lot of knowledge and makes the class super interesting. She gives 3 exams and a final research paper. Also, gives quizzes and homeworkers but they're super easy!! Highly recommend to taker her class", + "pos": 0.429, + "neu": 0.571, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d48" + } + }, + { + "text": "Devin was a clear professor. she gives 2 exams if u do well on that u don't need to take the final, so do well on those two. The only thing that make challenge in this class the research paper overall the class and hw was clear n easy. O yea hate ppl being late! Plus she young don't give her a hard time. Good Luck!", + "pos": 0.25, + "neu": 0.687, + "neg": 0.063, + "_id": { + "$oid": "6711d79dcd60fca157e60d49" + } + }, + { + "text": "She's a great professor! I wish all the professors at CCNY were like her. She is very clear, very helpful, makes the material really easy and knows what she's doing. Her 2 exams are m/c, T or F, Filling the blank and short answers. Final paper is on whatever you liked and she is always available for help. She deserves to work at a better school!", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d4a" + } + }, + { + "text": "black experience I'm taking her now & she's really a good teacher & nice. She gives a review sheet for midterm, final is optional. Gives pop quizzes. Shes new but knows her stuff & is always available when you email her. Its a class you'll enjoy taking with her.i recommend you take her, easy A if you do the work of course", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d79dcd60fca157e60d4b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79ecd60fca157e60d4d" + }, + "professor_name": "Lynn Applebaum", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "MY FAVORITE PROFESSOR OF ALL TIME!!! Yes, she's tough but she's fair. I cannot thank her enough for all she's done for me. She's always accessible, gives excellent feedback and just an overall great person/professional. She's the best teacher I've ever had at City College. We are lucky to have her.", + "pos": 0.381, + "neu": 0.566, + "neg": 0.053, + "_id": { + "$oid": "6711d79ecd60fca157e60d4e" + } + }, + { + "text": "Definitely my toughest professor to date but she cares about all the students in the program (even more about the ones who take her class). If you work hard and show you care, she'll open up so many doors for you. But you HAVE to show up and do the work. NO BS. Best teacher for PR Writing, learned so much and I continue to look to her for guidance.", + "pos": 0.12, + "neu": 0.747, + "neg": 0.133, + "_id": { + "$oid": "6711d79ecd60fca157e60d4f" + } + }, + { + "text": "Prof A truly is amazing. If you're seriously interested in PR or want to perfect your writing TAKE HER! She pushes you and gives a lot of work, but the end result is incredible. She works with you, as long as you allow her to. Her lessons are super clear interesting and always relate to the assignment. She is the tough but its worth it!", + "pos": 0.327, + "neu": 0.636, + "neg": 0.037, + "_id": { + "$oid": "6711d79ecd60fca157e60d50" + } + }, + { + "text": "Excellent professor and program director, I can't thank her enough for all her help.", + "pos": 0.328, + "neu": 0.564, + "neg": 0.108, + "_id": { + "$oid": "6711d79ecd60fca157e60d51" + } + }, + { + "text": "Professor Appelbaum is an AMAZING teacher. An accomplished professional and the Director of the PR dept. there is no one better suited than her to teach this material. She's clear, insightful, inspiring and always available. I only wish she taught more classes. Note: PR writing is a difficult class-not 4 everyone", + "pos": 0.237, + "neu": 0.655, + "neg": 0.108, + "_id": { + "$oid": "6711d79ecd60fca157e60d52" + } + }, + { + "text": "Real nice and compassionate about teaching. I'm an engineer and I found what she said interesting. Intro to PR was nothing too hard to grasp in my opinion but it seemed that some people had trouble with it. I would totally recommend her as a must-have prof!", + "pos": 0.198, + "neu": 0.738, + "neg": 0.064, + "_id": { + "$oid": "6711d79ecd60fca157e60d53" + } + }, + { + "text": "Professor Appelbaum is without a doubt my favorite professor! Her class is challenging and really makes you think, but if you do the work, you get a lot out of the class. She is tough on deadlines, but she really prepares you for real life experience. She is passionate about the subject and her excitement is electric. My favorite class ever!", + "pos": 0.248, + "neu": 0.729, + "neg": 0.024, + "_id": { + "$oid": "6711d79ecd60fca157e60d54" + } + }, + { + "text": "She is hands down one of my fav professors. You really learn from her and you can apply it directly to internships/jobs. Appelbaum is always willing to help as long as you want to be helped. Her class is engaging and rarely boring. The assignments aren't too tough and the midterm isn't very difficult. Take her class to learn, not for an easy A.", + "pos": 0.205, + "neu": 0.762, + "neg": 0.033, + "_id": { + "$oid": "6711d79ecd60fca157e60d55" + } + }, + { + "text": "No stress, no worry simple class. Nothing over 2 pages and she brings guest speakers. She does have a potty mouth. Lack of participation does hurt your final grade.", + "pos": 0.182, + "neu": 0.661, + "neg": 0.157, + "_id": { + "$oid": "6711d79ecd60fca157e60d56" + } + }, + { + "text": "This course provides an in depth background into PR + some real world experience as well. Applebaum definately puts your brain to work. Very kind and helpful. Always open to questions and will ensure that you understand the material. Gives a few papers as well as short answer midterm + final. Don't look for an easier professor; take her and learn.", + "pos": 0.229, + "neu": 0.771, + "neg": 0.0, + "_id": { + "$oid": "6711d79ecd60fca157e60d57" + } + }, + { + "text": "She's kind of a hard teacher but she's very understanding and willing to help you learn. Believe me when you leave her class you will know your stuff and if you don't you don't use her help to your full advantage", + "pos": 0.128, + "neu": 0.762, + "neg": 0.11, + "_id": { + "$oid": "6711d79ecd60fca157e60d58" + } + }, + { + "text": "Excellent prof and advisor. I took everything she teaches: PR Intro, Writing, and Corp Comm. Definitely not easy, but helpful, clear, professional, and definitely rewards hard work. Grading is very fair. Lots of writing and feedback. You will learn in her classes.", + "pos": 0.322, + "neu": 0.569, + "neg": 0.109, + "_id": { + "$oid": "6711d79ecd60fca157e60d59" + } + }, + { + "text": "She's tough and intimidating to approach, but one thing you learn is thta in PR you can not be intimidated. Se is actually a great professor and advisor. Very helpful in a wierd way but her door is always open. Shes really great and shows real tough love with a dash of the business world.", + "pos": 0.323, + "neu": 0.612, + "neg": 0.065, + "_id": { + "$oid": "6711d79ecd60fca157e60d5a" + } + }, + { + "text": "Professor Appelbaum is an amazing professor. I hope future generations are as lucky as we are to have had a professor that cares about her students like Prof. Appelbaum did with us. (Class of 2005)", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d79ecd60fca157e60d5b" + } + }, + { + "text": "Tuff but good. The class is a lot of work but she is willing to help you out if u ask .", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d79ecd60fca157e60d5c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79ecd60fca157e60d5e" + }, + "professor_name": "Mike Dressel", + "rating": 4.2, + "department": "World Humanities department", + "comments": [ + { + "text": "You read 6 books. 3 papers (2 books per each paper). Midterm(gives kinda a review sheet). A group presentation. Final is an online group project. Friday class gets 15 min break. Hes funny and explains all books in detail so essays are easy. Accessible out of class. Made me love reading books. Take him if you can, you wont be disappointed.", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d79ecd60fca157e60d5f" + } + }, + { + "text": "all the books he assigns, you need to buy! he gives out a good chunk of readings but you have a week to do it. 3 papers, 1 midterm, 2 group projects. such an easy A. literally no lecture and just a group discussion. if you have him from 9:30-12:15 you get a 20 min break.", + "pos": 0.098, + "neu": 0.856, + "neg": 0.045, + "_id": { + "$oid": "6711d79ecd60fca157e60d60" + } + }, + { + "text": "Spring semester. Had many books to read, but made me appreciate reading. Definitely helped me improve my writing, and will meet with you outside of class. Make sure you read, and participate. He will get to know you by name, and take you serious. Paper requirements have options, but not too difficult. Fun class as well. Must take.", + "pos": 0.259, + "neu": 0.674, + "neg": 0.067, + "_id": { + "$oid": "6711d79ecd60fca157e60d61" + } + }, + { + "text": "He is a good professor. He gives a lot of essays but as long as you read the books or spark note it, the you will have an easy time. Make sure to follow the instructions for the essay and you will do fine. Lecture are kind of boring but show up everyday because he gives a pop quiz for every book you read. Put the work into it and you will get an A", + "pos": 0.155, + "neu": 0.805, + "neg": 0.04, + "_id": { + "$oid": "6711d79ecd60fca157e60d62" + } + }, + { + "text": "Was a fine professor even though he could be a tough grader - follow everything he wants in the instructions and you should be fine. Sparknoted every book before class and did fine (try to make comments during class and he will appreciate it)", + "pos": 0.167, + "neu": 0.802, + "neg": 0.031, + "_id": { + "$oid": "6711d79ecd60fca157e60d63" + } + }, + { + "text": "Good professor", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d79ecd60fca157e60d64" + } + }, + { + "text": "He's a good professor but if reading isnt your thing then dont take him and expect an A. I read only one book and sparknoted the rest and received a B+. However, if you like reading novels and are good writer then take him. He is boring though and expects essays to 100% precise to his format but if you are a good writer then I'd suggest taking him.", + "pos": 0.162, + "neu": 0.802, + "neg": 0.037, + "_id": { + "$oid": "6711d79ecd60fca157e60d65" + } + }, + { + "text": "He's okay. Very tough grader and expects you to participate. Don't be late or else you might be called out. But he does give good feedback and tries to answer your questions.", + "pos": 0.148, + "neu": 0.812, + "neg": 0.039, + "_id": { + "$oid": "6711d79ecd60fca157e60d66" + } + }, + { + "text": "Professor Dressel was an excellent teacher. The assignments given are interesting and really help take your writing to the next level. I'll always remember the readings for this class, they really help you understand how to approach writing, especially for beginners. You will need the Norton Field Guide To Writing for this class.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d79ecd60fca157e60d67" + } + }, + { + "text": "He's hilarious. He expects a lot especially for a freshmen course. He thinks 90 is a good grade. He's very harsh on essay. When you ask him questions, he tries his best to answer it directly. Overall he's a good professor. You really have to earn your grade.", + "pos": 0.216, + "neu": 0.73, + "neg": 0.054, + "_id": { + "$oid": "6711d79ecd60fca157e60d68" + } + }, + { + "text": "He's a rather tough grader of papers and his lectures are average. Gives a lot of homework. He will help you if you seek him out when you're having trouble. He wants to see you succeed but he'll make you work for it. I would suggest taking him if you're not expecting an otherwise difficult semester because he won't make things any easier for you.", + "pos": 0.105, + "neu": 0.808, + "neg": 0.087, + "_id": { + "$oid": "6711d79ecd60fca157e60d69" + } + }, + { + "text": "He's actually really nice, if a bit average in teaching style. He gives complicated books, but the class discussions really help out. There is a midterm, a final paper, and a few other papers. Good writing skills are a must to get high marks. Also, everyone had to act out a scene from a play in a group, so hopefully you get good group members.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d79ecd60fca157e60d6a" + } + }, + { + "text": "Professor Dressel is really passionate about this course and he wants his students to earn their grades. He is a really tough grader when it comes to papers so you put more work is put into them than necessary. Dressel isn't bad, but if you have more important subjects to dedicate your time to I would recommend taking an easier professor.", + "pos": 0.197, + "neu": 0.783, + "neg": 0.02, + "_id": { + "$oid": "6711d79ecd60fca157e60d6b" + } + }, + { + "text": "He was very interesting and I liked the things we discussed in class. The only distraction was the idiots in class who clearly didn't care about anything.", + "pos": 0.238, + "neu": 0.616, + "neg": 0.146, + "_id": { + "$oid": "6711d79ecd60fca157e60d6c" + } + }, + { + "text": "He's not a bad professor. He assigns a lot of books (7-8) but sparknotes is all you need. He's a fair grader of his papers and tries to explain clearly. He's good but boring. You'll do we'll in his class", + "pos": 0.244, + "neu": 0.697, + "neg": 0.059, + "_id": { + "$oid": "6711d79ecd60fca157e60d6d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79fcd60fca157e60d6f" + }, + "professor_name": "Aya Hayashi", + "rating": 2.8, + "department": "Music department", + "comments": [ + { + "text": "I took her class simply as a general ed. requirement, and she made it a miserable experience. I have absolutely zero background in music, but she treated us as if we were intermediate level learners. She gave out difficult content for new learners to grasp, and was completely unaware since she herself has a strong musical background. Self absorbed", + "pos": 0.066, + "neu": 0.816, + "neg": 0.118, + "_id": { + "$oid": "6711d79fcd60fca157e60d70" + } + }, + { + "text": "I will never take another music class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d71" + } + }, + { + "text": "I had A's in all my classes. In music I was given a C+ and that spoilt my entire GPA. She is a very tough grader. It is is good that she tries to promote discipline and seriousness in a subject like music. But, she also has to realize that not everyone has a listening ear and that most of the kids in class take music only as a requirement.", + "pos": 0.075, + "neu": 0.89, + "neg": 0.034, + "_id": { + "$oid": "6711d79fcd60fca157e60d72" + } + }, + { + "text": "Forced to go to many concerts. Both concerts were awful. Had to go through a 2 3 hour concerts that were awful. Hard tests,had to memorize an excessive amount of material. Memorize songs, composers, terminology, gave random time period and you had to identify the time period.", + "pos": 0.0, + "neu": 0.805, + "neg": 0.195, + "_id": { + "$oid": "6711d79fcd60fca157e60d73" + } + }, + { + "text": "After getting 90s on tests and high 80s on her two papers, I expected an A. Instead, I got a B and was disappointed since that is not what I earned due to a bell curve that sacrificed my grade to bring up other students. She is picky with writing habits and marks papers down for anything she deems unnecessary and doesn't negotiate final grades.", + "pos": 0.0, + "neu": 0.954, + "neg": 0.046, + "_id": { + "$oid": "6711d79fcd60fca157e60d74" + } + }, + { + "text": "I wasted an entire semester working hard in this class, but did not get the grade I deserved. I did really good in the class becuz the class is easy. But because of her bell curve grading system, my final grade was lowered. She is nice and the class is ok; but at the end of the semester you will be very mad when u see the final grade. NOT WORTH IT", + "pos": 0.134, + "neu": 0.724, + "neg": 0.142, + "_id": { + "$oid": "6711d79fcd60fca157e60d75" + } + }, + { + "text": "This professor is now at HUNTER COLLEGE teaching music history. The class is really easy if you take good notes, and study everything that is on her study guides. Here is the catch. The grading system is absolutely terrible. Although you clearly deserve an A, she will give you a lower grade. Don't take this class. She doesn't care about your GPA.", + "pos": 0.12, + "neu": 0.767, + "neg": 0.113, + "_id": { + "$oid": "6711d79fcd60fca157e60d76" + } + }, + { + "text": "hands down the best class of college so far", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d77" + } + }, + { + "text": "She is an extremely tough grader. If you are not passionate about music and its history do not take this class with her. Even though it is a 101 course her work makes it seem like it is a 300 course. Constantly gives pop quizzes so the book is mandatory. Very boring.", + "pos": 0.066, + "neu": 0.811, + "neg": 0.124, + "_id": { + "$oid": "6711d79fcd60fca157e60d78" + } + }, + { + "text": "Great teacher.. highly recommend taking her class.", + "pos": 0.58, + "neu": 0.42, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d79" + } + }, + { + "text": "Great professor. She definitely knows musicology but her exams are difficult. Study hard, know all the dates, composers, and listen to the pieces over and over because they WILL come on the test.", + "pos": 0.115, + "neu": 0.758, + "neg": 0.127, + "_id": { + "$oid": "6711d79fcd60fca157e60d7a" + } + }, + { + "text": "Course is very easy, as long as you study hard. she really goes hard with the readings. Long test reviews, but helpful. I will not recommended her if you dont have time to read the textbook.", + "pos": 0.141, + "neu": 0.752, + "neg": 0.107, + "_id": { + "$oid": "6711d79fcd60fca157e60d7b" + } + }, + { + "text": "This professor was really great. The class was extremely difficult because of the harsh grading but if you study (VERY HARD) you'll be fine. A word of advice if you're planning on taking this would be to ALWAYS remember to the DATES, NAME OF COMPOSERS, AND THEIR PIECES. Sosososoo Important, I cannot stress this enough. I love her, she was great!!", + "pos": 0.269, + "neu": 0.632, + "neg": 0.098, + "_id": { + "$oid": "6711d79fcd60fca157e60d7c" + } + }, + { + "text": "This professor is very hard. Is Passionate and expects the same of her students. If you are only taking this class as a requirement, choose another professor. She puts most of the work on BB and expects all students to go over the material. As first she is fun but don't let that5 fool you. Very Hard grader and very strict and upfront.", + "pos": 0.11, + "neu": 0.841, + "neg": 0.049, + "_id": { + "$oid": "6711d79fcd60fca157e60d7d" + } + }, + { + "text": "She's extremely strict with work. She's a harsh grader and has high expectations of all students. She's very passionate about the subject but acts as if the class is Music Theory 500 as opposed to MUSIC 101. I would not recommend her to ANYONE unless you want a C the highest.", + "pos": 0.069, + "neu": 0.848, + "neg": 0.083, + "_id": { + "$oid": "6711d79fcd60fca157e60d7e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d79fcd60fca157e60d80" + }, + "professor_name": "Harry Stafylakis", + "rating": 2.2, + "department": "Music department", + "comments": [ + { + "text": "His class is a requirement, but his lecture is so bad to a point if you don't have music bg, you will be lost. He's really rude and think himself is funny type of guy, always made me feel ashamed when I don't understand. You can do all the works beforehand, but I don't understand why he gives out hw on fri when he only have mon and wed class.", + "pos": 0.044, + "neu": 0.75, + "neg": 0.205, + "_id": { + "$oid": "6711d79fcd60fca157e60d81" + } + }, + { + "text": "He should definitely not be a teacher...", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d82" + } + }, + { + "text": "Just straight up rude. Started out ok & then as the days progressed you could tell he seemed to have an attitude w/ everyone & seemed to blame everyone for pretty much anything & seemed to create issues out of nothing. He won't work w/ you to fix issues & will not fail to send passive aggressive comments ur way. He made me hate my music major", + "pos": 0.172, + "neu": 0.697, + "neg": 0.131, + "_id": { + "$oid": "6711d79fcd60fca157e60d83" + } + }, + { + "text": "worst class in the whole 4 years of my college experience... quite literally the most passive aggressive and most arrogant professor i've ever encountered...super uncomfortable being around him and being in his class..he talks to everyone like they are beneath him and always seems to want to argue with everyone about the most minor things", + "pos": 0.087, + "neu": 0.698, + "neg": 0.215, + "_id": { + "$oid": "6711d79fcd60fca157e60d84" + } + }, + { + "text": "Seems like he has some kind of inferiority complex that makes him come across as pretty arrogant/rude to his students & takes this class way too seriously (esp for 101 level) which def didnt make it an enjoyable elective. He called out students in front of everyone visibly making them uncomfortable & took off a lot of points just for missing 1 day", + "pos": 0.117, + "neu": 0.762, + "neg": 0.121, + "_id": { + "$oid": "6711d79fcd60fca157e60d85" + } + }, + { + "text": "I would definetly say take Stafylakis for Fretboard class instead of theory. I've had him for both and he is way more laid back for Fretboard class. You are only graded by 3 exams. Fretboard class is fun in person and Stafylakis always gives strong feedback if you're struggling on anything realting to guitar or bass.", + "pos": 0.106, + "neu": 0.849, + "neg": 0.045, + "_id": { + "$oid": "6711d79fcd60fca157e60d86" + } + }, + { + "text": "I would say that if people don't know anything about music, they shouldn't take a college-level course. This class is amazing and I have never heard anyone complaining about it. On the contrary. He deeply knows the subject he is teaching and is always willing to help with any queries. I would definitely take classes with him again.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d87" + } + }, + { + "text": "For my first semester at CCNY I took his course and It sucked. His teaching style was pure lazy and had little to no benefit for me when it came to quizzes, all he did was review written stuff than explain what all of it meant. When I asked him for assistance he would give me rude responses. Overall, he was a jerk and had no intentions of helping.", + "pos": 0.028, + "neu": 0.764, + "neg": 0.208, + "_id": { + "$oid": "6711d79fcd60fca157e60d88" + } + }, + { + "text": "Stafylakis is unlike other professors where he really relies on us students to have studied a whole chapter of music theory by next class even though we have 4 other classes to study as well. His teaching isn't the best but he really knows his stuff and is glad to hear any music related questions. He's only necessary to take for theory 1 class.", + "pos": 0.081, + "neu": 0.887, + "neg": 0.032, + "_id": { + "$oid": "6711d79fcd60fca157e60d89" + } + }, + { + "text": "belittles students that need help. will make you feel stupid. laughs at you for not knowing things in class. rude. loves students who already know the material. calls students who don't understand \"below average\" to their faces.", + "pos": 0.2, + "neu": 0.667, + "neg": 0.133, + "_id": { + "$oid": "6711d79fcd60fca157e60d8a" + } + }, + { + "text": "Very good professor. Hes very technical and precise with his words and covers extra material beyond the scope of the class. Hes also very prepared, organized and is available during office hours. If you want to learn and youre willing to put in the work, then take him; you wont regret it.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d8b" + } + }, + { + "text": "Though he is intelligent, he lacks on teaching actually the class. He reviews rather than explains. Makes you feel dumb when you dont understand a topic and he isnt afraid to show it in his tone of voice. Marks homework late if youre even 1 minute late to class.", + "pos": 0.056, + "neu": 0.882, + "neg": 0.062, + "_id": { + "$oid": "6711d79fcd60fca157e60d8c" + } + }, + { + "text": "His overly dominant personality gets in the way of his teaching. He's not really teaching anything of much substance to begin with", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d8d" + } + }, + { + "text": "Hard for no reason. Arrogant.", + "pos": 0.319, + "neu": 0.243, + "neg": 0.438, + "_id": { + "$oid": "6711d79fcd60fca157e60d8e" + } + }, + { + "text": "Great guy. Been taking with a few music profs at CCNY and this guy is one of the best. He's excited with something interesting since he is a composer not a theory one. Learnt a lot from him.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d79fcd60fca157e60d8f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a0cd60fca157e60d91" + }, + "professor_name": "Julio Davalos", + "rating": 2.7, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Gives handwritten notes, whose methods differ from the textbook so keep up in class. First exam is basically statics on steroids and it picks up after that. The material isn't too complicated but he can be a very harsh grader, taking off lots of points for small arithmetic errors, etc. Group project isn't bad at all. Participate and show you care.", + "pos": 0.111, + "neu": 0.787, + "neg": 0.102, + "_id": { + "$oid": "6711d7a0cd60fca157e60d92" + } + }, + { + "text": "Professor Davalos definitely won't be your easiest professor, but if you're present in lectures, he will be very helpful. Practice textbook questions to prepare for tests, and you will be fine. He was a little harsh on some students, but if you make an effort to show him you care, he's very happy to help you succeed.", + "pos": 0.331, + "neu": 0.605, + "neg": 0.064, + "_id": { + "$oid": "6711d7a0cd60fca157e60d93" + } + }, + { + "text": "He assigns a textbook, but you're better off saving your money, since nothing he does relates to it, and he'll gives the textbook homework on the separate document anyway. He'll also make up his own way of \"solving\" problems, expects you to instantly master them, and called people lazy for not studying for his class until 4am. Good luck with him.", + "pos": 0.193, + "neu": 0.718, + "neg": 0.089, + "_id": { + "$oid": "6711d7a0cd60fca157e60d94" + } + }, + { + "text": "Davalos does his best to make sure students understand the material from his notes and lectures. Homeworks is okay if you practice and understand the tough concepts. Im gonna complain about the way he makes his exams since he keeps making the class correct mistakes he made during making the exam. His drawings are awful and people got frustrated.", + "pos": 0.116, + "neu": 0.705, + "neg": 0.178, + "_id": { + "$oid": "6711d7a0cd60fca157e60d95" + } + }, + { + "text": "Textbook wont help you, he makes up his own methods. Homeworks can take days to complete but are helpful for exams. He is not looking to fail anybody as long as you know the basic concepts.", + "pos": 0.178, + "neu": 0.784, + "neg": 0.039, + "_id": { + "$oid": "6711d7a0cd60fca157e60d96" + } + }, + { + "text": "This class requires A LOT of work. His homeworks are dense but will help you understand the material. Attendance is A MUST as he doesn't use textbook and he makes his own notes, which are helpful. He adds to those notes during class. Study & understand examples completed in class. He CAN be a jerk, but just know your stuff (basics) & youll be fine", + "pos": 0.128, + "neu": 0.829, + "neg": 0.042, + "_id": { + "$oid": "6711d7a0cd60fca157e60d97" + } + }, + { + "text": "This class lost me eventually and his way of organizing and presenting material was all over the place. his diagrams were difficult to understand and lecture notes was just like what he writes. Exams were a mess too, as he would often make mistakes and many students were left confused with his wording. Wasnt lenient with that either.", + "pos": 0.037, + "neu": 0.757, + "neg": 0.206, + "_id": { + "$oid": "6711d7a0cd60fca157e60d98" + } + }, + { + "text": "He's a great professor. You cant miss out on the lectures, he explains in depth on how to tackle the problems, and his way is better than the textbook. Use the textbook to solve extra problems and to do the hw. The homework helps a lot. He's always there after class. He cares about his students. Use SW FEA 2D Frame app to help but don't abuse it.", + "pos": 0.219, + "neu": 0.734, + "neg": 0.047, + "_id": { + "$oid": "6711d7a0cd60fca157e60d99" + } + }, + { + "text": "Would advice you to avoid him but he is the only one who teaches the course. Good luck learning something from his lectures.", + "pos": 0.267, + "neu": 0.679, + "neg": 0.054, + "_id": { + "$oid": "6711d7a0cd60fca157e60d9a" + } + }, + { + "text": "he is terrible", + "pos": 0.0, + "neu": 0.392, + "neg": 0.608, + "_id": { + "$oid": "6711d7a0cd60fca157e60d9b" + } + }, + { + "text": "I decided to just study on my own and not even go to class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7a0cd60fca157e60d9c" + } + }, + { + "text": "I took Ghosn so I had a solid foundation so the 1st month of class was cake. The professor wants you to \"feel the structure\" and really wants you to understand how a structure will behave. Love that he gives you a copy of his notes so you can follow what he is doing easily. After that 1st exam though, don't recommend missing class.", + "pos": 0.142, + "neu": 0.829, + "neg": 0.03, + "_id": { + "$oid": "6711d7a0cd60fca157e60d9d" + } + }, + { + "text": "Having a good foundation of Mechanics of Materials is a must because he will not tolerate questions about things you should already know. You get to follow what he does during class instead of taking notes because he gives photo copies of the notes he is teaching. Pay attention in class and follow ALL the steps he wants on the hw you will do well.", + "pos": 0.073, + "neu": 0.906, + "neg": 0.02, + "_id": { + "$oid": "6711d7a0cd60fca157e60d9e" + } + }, + { + "text": "If you don't have a sense of humor then don't take him, students are too serious these days. Anyways he clearly loves the topic and he does a great job at teaching it. Take good notes in class and follow his methods, don't get too excited and follow Hibbeler's (textbook) techniques because then you'll only confuse yourself.", + "pos": 0.222, + "neu": 0.703, + "neg": 0.075, + "_id": { + "$oid": "6711d7a0cd60fca157e60d9f" + } + }, + { + "text": "One of the worst professors. He talks non-stop for three hours but doesn't even realize what he's saying doesn't help you, but there's no other source where you can learn his \"methods\". Even in the middle of a test he keeps talking, it's a nightmare. I'd rather take ten classes with Ghosn over one class with Davalos. At least I'd learn something.", + "pos": 0.0, + "neu": 0.877, + "neg": 0.123, + "_id": { + "$oid": "6711d7a0cd60fca157e60da0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a0cd60fca157e60da2" + }, + "professor_name": "Peter Fraenkel", + "rating": 3.2, + "department": "Psychology department", + "comments": [ + { + "text": "Truly awful-Fraenkel combines contradictory qualities of being belittling/condescending while unintelligent/unthoughtful, self-obsessed but incapable of self-reflection, comically ridiculous without a sense of humor, moralizing without moral integrity, and a psych professor without any psychological insights. He embarrasses me to be a CUNY student.", + "pos": 0.085, + "neu": 0.645, + "neg": 0.27, + "_id": { + "$oid": "6711d7a0cd60fca157e60da3" + } + }, + { + "text": "The class was okay. We had three exams and a paper which consisted of 25% each. The professor had a grader who graded all the exams, which consisted of lecture material that made the exams easy.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d7a0cd60fca157e60da4" + } + }, + { + "text": "Professor is in a good mood & then his mood shifts for what seems no reason at all. His slides are from the textbook company so you don't need it, exams based on slides. Exams are really easy. Participation counts, but you have to participate A LOT. His comments can also make you feel uncomfortable.", + "pos": 0.067, + "neu": 0.849, + "neg": 0.083, + "_id": { + "$oid": "6711d7a0cd60fca157e60da5" + } + }, + { + "text": "I had really high hopes for this class before the semester had started but so far have been left disappointed. He is extremely moody, and spends 90% of the time showing us these really old videos of sessions with his previous clientele. I want to like this course and professor but it's a snooze. You don't even need the textbook just his slides.", + "pos": 0.093, + "neu": 0.799, + "neg": 0.108, + "_id": { + "$oid": "6711d7a0cd60fca157e60da6" + } + }, + { + "text": "One of the BEST professors at CCNY. Took him for different classes and I always learned so much from him. He's a real gem that cares so much for his students. Lectures are a lot of fun. You have to do your part though by reading the materials and attending classes. Materials are posted on BB. Absolutely would recommend taking his classes.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d7a0cd60fca157e60da7" + } + }, + { + "text": "professor should not be teaching at the masters level. he's easily distracted, rude, and self-absorbed. some of his commentary is odd. exams are easy. no homework. you want an easy A? take him, but you won't learn anything, it's unfortunate how students are okay with easy As and not learning.", + "pos": 0.206, + "neu": 0.62, + "neg": 0.174, + "_id": { + "$oid": "6711d7a0cd60fca157e60da8" + } + }, + { + "text": "He is AMAZING, one of the best profs in CCNY. Take him, he makes lectures interesting. However, abnormal psych is a serious topic. Thus, the first few lectures might seem boring, but he makes the material interesting. For the exams, just look at the lecture slides and your notes. He gives extra credit on exams and the final can be optional", + "pos": 0.181, + "neu": 0.778, + "neg": 0.04, + "_id": { + "$oid": "6711d7a0cd60fca157e60da9" + } + }, + { + "text": "He's an awesome professor, although some material may be dry he really tries to engage everyone. 3 exams, a final, 25% each, & the final ended up being optional. Attendance is not mandatory but if you don't show up you will miss out on a lot of important information & participation helps when he remembers who you are. Will def take him for PSY 365.", + "pos": 0.139, + "neu": 0.82, + "neg": 0.042, + "_id": { + "$oid": "6711d7a0cd60fca157e60daa" + } + }, + { + "text": "Wonderful professor. It's an easy class, sure, but his wealth of knowledge in psychology is invaluable for those pursuing a career in the field. Highly recommend any class you are taking with him.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d7a0cd60fca157e60dab" + } + }, + { + "text": "everything you need to know is on the slides. his experience he disclosed was irrelevant. MA course & he let us grade our own exams (shocking!). exams seem to be from his UG course. self-absorbed. has favorites! so moody! this class is vital for us in the MHC program, I believe I and my cohorts needed more than him just reading off the slides", + "pos": 0.07, + "neu": 0.835, + "neg": 0.095, + "_id": { + "$oid": "6711d7a0cd60fca157e60dac" + } + }, + { + "text": "Hes disorganized which is frustrating at times but you'll definitely get an A because he gives a lot of extra credit on the exam and the paper is not hard at all", + "pos": 0.216, + "neu": 0.693, + "neg": 0.091, + "_id": { + "$oid": "6711d7a0cd60fca157e60dad" + } + }, + { + "text": "He is a very interesting professor for family psych but he is a little unorganized. He doesn't use blackboard so he emails you all the class material. However, it is a mix of ppt, pdf, and word docs. But hes pretty easy and you def get an A if you try because he gives you 10 extra questions on the test for extra credit", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d7a0cd60fca157e60dae" + } + }, + { + "text": "Very interesting class. You will learn a lot. Easy A.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d7a0cd60fca157e60daf" + } + }, + { + "text": "Dr. Fraenkel is one of the best professors i have taken at CCNY. He provides real life footage of therapy sessions, which are pretty interesting. His tests always have additional extra credit questions, which help you in a long run. The final paper is pretty long but definitely worth it. My overall experience with Dr. Fraenkel was a great one!!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d7a0cd60fca157e60db0" + } + }, + { + "text": "3 Exams (25% each) and one term (final) paper (25%). The final or 3rd exam is not cumulative nor are the other exams. Lectures were good but at times boring when students wouldn't participate much or the same ones would. He shows videos (classified) which were ALWAYS interesting. He's an expert of his field-family psych.", + "pos": 0.091, + "neu": 0.86, + "neg": 0.049, + "_id": { + "$oid": "6711d7a0cd60fca157e60db1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a1cd60fca157e60db3" + }, + "professor_name": "K.D. Irani", + "rating": 4, + "department": "Philosophy department", + "comments": [ + { + "text": "A spellbinder. A brilliant, deep, ecyclpedic, amusing and somehow both authoritative and and humble. He goes off on fascinating tangents, but there's a method to it. They always illuminate. He's not just a brilliant teacher, he's a brilliant man. Those who fail to see this haen't been paying attention.", + "pos": 0.183, + "neu": 0.677, + "neg": 0.139, + "_id": { + "$oid": "6711d7a1cd60fca157e60db4" + } + }, + { + "text": "I think that most of the students who've criticized Irani aren't intellectually curious. He spoke clearly and beautifully about a whole mess of interesting subjects and is a wonderfully kind man. i'm not judging people for their disinterest--hey, school can suck--but they shouldn't explain their boredom or low grade by suggesting he's a bad teacher", + "pos": 0.242, + "neu": 0.566, + "neg": 0.192, + "_id": { + "$oid": "6711d7a1cd60fca157e60db5" + } + }, + { + "text": "A wonderful man and a gift to this school- take a course with him if you can", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d7a1cd60fca157e60db6" + } + }, + { + "text": "Rare opportunity to pick the brain of a man who experienced more in his life time than many people could even read about in theirs. Sometimes difficult to pay attention, but if you do, you are greatly rewarded.", + "pos": 0.152, + "neu": 0.78, + "neg": 0.068, + "_id": { + "$oid": "6711d7a1cd60fca157e60db7" + } + }, + { + "text": "Irani is an amazing professor; knows almost every major figure alive during his incredibly long lifetime; is lucid, precise, w/ fantastic memory. Be prepared for old, european pre-war teaching style. Take the class to learn, not to get a grade; he will not grade your work at all, but will give you a final grade from the gestalt or your performance.", + "pos": 0.124, + "neu": 0.876, + "neg": 0.0, + "_id": { + "$oid": "6711d7a1cd60fca157e60db8" + } + }, + { + "text": "He is horrible. You'll fall dead asleep in this class. Barely makes any sense (or it's just not that interesting) and then makes it seem so easy and you're that dumb. He'll give one exam in the end, but fail you anyway you didn't answer the way HE wants you to. Waste of time..", + "pos": 0.036, + "neu": 0.707, + "neg": 0.258, + "_id": { + "$oid": "6711d7a1cd60fca157e60db9" + } + }, + { + "text": "BORING", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d7a1cd60fca157e60dba" + } + }, + { + "text": "I felt like because he's taught for a long time he tends to ignore individuals and see the whole class as yet another bunch.", + "pos": 0.093, + "neu": 0.815, + "neg": 0.093, + "_id": { + "$oid": "6711d7a1cd60fca157e60dbb" + } + }, + { + "text": "He is a great professor. He is very helpful, nice and has flexible office hours. You can learn a lot from his class. He tells the most amazing stories from his life. And he's very funny!", + "pos": 0.397, + "neu": 0.603, + "neg": 0.0, + "_id": { + "$oid": "6711d7a1cd60fca157e60dbc" + } + }, + { + "text": "He's so amazing! He's the bestest. He really likes graphs. He doesn't give you grades on your paper. Bit odd. Doesn't matter though, because it's amazing. You learn stuff! Philosophy stuff and more! He's amazing. He'll totally make you see the world in weird graphs.", + "pos": 0.27, + "neu": 0.644, + "neg": 0.086, + "_id": { + "$oid": "6711d7a1cd60fca157e60dbd" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7a1cd60fca157e60dbe" + } + }, + { + "text": "He's a great professor who enjoys teaching. He makes the effort of helping you and he understands that not everyone is interested in philosophy. He cares that you make the effort", + "pos": 0.308, + "neu": 0.636, + "neg": 0.055, + "_id": { + "$oid": "6711d7a1cd60fca157e60dbf" + } + }, + { + "text": "Excellent teacher and human being.", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc0" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a1cd60fca157e60dc3" + }, + "professor_name": "Maria Milan", + "rating": 3.1, + "department": "Spanish department", + "comments": [ + { + "text": "great professor she is motivating and kind she gives 4 quizzes for the semester these quizzes will prepare you for the midterm and final", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc4" + } + }, + { + "text": "This class is very hard if you do not speak spanish fluently. I took the placement test and ended up in this class. The teacher does not speak any English so I got very lost. If you don't understand an assignment she will put you on the spot. She is a an ok teacher, but doesn't explain what she is saying. You will get lost if you do not speak spani", + "pos": 0.021, + "neu": 0.897, + "neg": 0.082, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc5" + } + }, + { + "text": "I found her to be very helpful and useful. It is by no means easy to learn spanish but she really cares about all her students and lets you know how u r doing in the class. She would stay with you for as long as you need her to and doesn't get angry when she has to explain things again and again.Good teach but hard work.", + "pos": 0.157, + "neu": 0.779, + "neg": 0.064, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc6" + } + }, + { + "text": "SHE IS SO BAD. SHE WILL TELL YOU TO DO EXTRA CREDIT TO PASS AND THEN FAIL YOU.. THIS LITTLE TOAD IS BAD NEWS. YOU WILL NEVER GRADUATE IF SHE'S TEACHING THE CLASS.", + "pos": 0.061, + "neu": 0.677, + "neg": 0.262, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc7" + } + }, + { + "text": "I did not like takeing this class. She goes really fast and talks in spanish 95% of the time. She is one of those teachers who goes by the numbers so that means if you are really close to passing it does not matter, Oh yeah pass the final pass the class.", + "pos": 0.0, + "neu": 0.906, + "neg": 0.094, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc8" + } + }, + { + "text": "i think this professor was very helpful if u failed it was because you failed as a student to use all available resources, the course i must admit wasnt that easy but my advice ta any student that hasthis professor is realize she actually a nice teacher she really does want u to learn but you must make an effort!:)\r \r -felicia(como estas ms.milan)", + "pos": 0.131, + "neu": 0.785, + "neg": 0.084, + "_id": { + "$oid": "6711d7a1cd60fca157e60dc9" + } + }, + { + "text": "Not an easy class, but very challenging. I enjoyed being in this class because the professor was helpful. She let us know that passing her class was going to be hard work on our par, and she was right. However, it was worth it.No student should walk into a classroomand expect to get an \"A\" without working hard for it. Not unless one is a genius.", + "pos": 0.191, + "neu": 0.766, + "neg": 0.043, + "_id": { + "$oid": "6711d7a1cd60fca157e60dca" + } + }, + { + "text": "This professor is very difficult and intimidating. She was not very helpful so avoid this professor in the future.", + "pos": 0.0, + "neu": 0.562, + "neg": 0.438, + "_id": { + "$oid": "6711d7a1cd60fca157e60dcb" + } + }, + { + "text": "Horrible professor. She is not honest with her student. More than half the class failed. She told half the class that the borderline student should continue taking her class and the final to see how they do. In result, she FAILED more than half of them. She reviewed the final exam in her office disclosing the grades to every1. Very unprofessional.", + "pos": 0.0, + "neu": 0.766, + "neg": 0.234, + "_id": { + "$oid": "6711d7a1cd60fca157e60dcc" + } + }, + { + "text": "she is very helpful and fair especially when you sincerely apply yourself as a serious student", + "pos": 0.404, + "neu": 0.538, + "neg": 0.058, + "_id": { + "$oid": "6711d7a1cd60fca157e60dcd" + } + }, + { + "text": "She's awsome. She's very intimidating at first, but she's very helpful and you come out of her class knowing alot more than when you went in.", + "pos": 0.137, + "neu": 0.794, + "neg": 0.069, + "_id": { + "$oid": "6711d7a1cd60fca157e60dce" + } + }, + { + "text": "She is a very Bad Professor!", + "pos": 0.0, + "neu": 0.55, + "neg": 0.45, + "_id": { + "$oid": "6711d7a1cd60fca157e60dcf" + } + }, + { + "text": "Profesora Milan Is a very nice professor overall. She reached out to the students including myself to help us understand the Spanish language. She sought out to make us think, write, and speak in Spanish and not just English. I appreciate her help and thoughfulness, I wish her the very best!", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d7a1cd60fca157e60dd0" + } + }, + { + "text": "Its difficult to judge her effectiveness because the problems I have writing Spanish stem from my inconsistencies with the English language. She seems to grade fairly", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d7a1cd60fca157e60dd1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a2cd60fca157e60dd3" + }, + "professor_name": "Sarah Beck", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "She's okay.", + "pos": 0.655, + "neu": 0.345, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dd4" + } + }, + { + "text": "Prof.Beck is by far one of the most patient professors at ccny. She will go over a lesson as many times possible until we get. There are only a couple of assignments and a trip and she is heavy on the participation. Other than that anyone can get an A.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dd5" + } + }, + { + "text": "She was a very inspirational professor. She is a kind and charismatic.She gave about 5 papers,a mandatory trip, 7 newspaper summaries,and a mandatory online course of twelve 100 question exams.This is what she gave for the English 201003 class.Intimidating if you have three or more classes to take. Take her if ur part time, u will come out skilled!", + "pos": 0.152, + "neu": 0.848, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dd6" + } + }, + { + "text": "She's an awesome professor. Got me really interested in writing. We read lots of short stories and also had to write 2-3. It was fun. she's an easy grader and a very helpful professor.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dd7" + } + }, + { + "text": "Pretty okay teacher. Not very interesting, The workload isn't heavy.", + "pos": 0.35, + "neu": 0.48, + "neg": 0.17, + "_id": { + "$oid": "6711d7a2cd60fca157e60dd8" + } + }, + { + "text": "She hates it when people are late, even if it's only 5 minutes. She's okay, but not if you're always late. Then she'll be kinda ****y with you. But she's available like everyday if you need help.", + "pos": 0.191, + "neu": 0.764, + "neg": 0.045, + "_id": { + "$oid": "6711d7a2cd60fca157e60dd9" + } + }, + { + "text": "She draws out the writer in everyone! Integrates reading and analysis of stories with writing, so you learn form example. Is very open to all different styles of writing and gives VERY helpful feedback. I loved this class and came away with a few really strong pieces of work!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dda" + } + }, + { + "text": "She is really an awesome teacher. One of my favorites at CCNY. Not only does she challenge your creative side but she's also a BIG help. Plus, I have the biggest crush on her! :)", + "pos": 0.342, + "neu": 0.616, + "neg": 0.042, + "_id": { + "$oid": "6711d7a2cd60fca157e60ddb" + } + }, + { + "text": "very helpful and understanding. One of the few teachers that genuinely care about what you do but also is tough on you getting the work done. You can get a A if you do all your work. Go see her during her office hours, you'll find that she has a lot to offer and a great listener", + "pos": 0.152, + "neu": 0.821, + "neg": 0.027, + "_id": { + "$oid": "6711d7a2cd60fca157e60ddc" + } + }, + { + "text": "she is very helpful and always there when u need her. she is very passionate about writing, which is awesome.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60ddd" + } + }, + { + "text": "She tries her best to make sure everyone learns and expresses their opinions. She even made us come to her office just to get used to \"College.\" I used to hate English until her because she teaches English the way it should be taught, read and write based on your own experience, NOT based on some solution manual.", + "pos": 0.132, + "neu": 0.812, + "neg": 0.056, + "_id": { + "$oid": "6711d7a2cd60fca157e60dde" + } + }, + { + "text": "Her assignments were extremely stimulating for english majors or if you just have appreciation for good writing. The reading assignments and in class discussions were also great, but make sure you show up everday because attendance is mandatory.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60ddf" + } + }, + { + "text": "Incredibly easy class. Just do the readings assigned as well as essays and your set for an easy A. Followed syllabus with some minor edits over the progression of time. Quite helpful when it comes down to editing your paper. Cares for her students as she tries to interact with you in a one-on-one chat (mandatory, not going counts as an absence)", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60de0" + } + }, + { + "text": "Shes a good professor, tries her best to give you what you expect. Helps you with papers. Enjoys teaching.", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60de1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a2cd60fca157e60de3" + }, + "professor_name": "Philip Sooknanan", + "rating": 4.1, + "department": "Mathematics department", + "comments": [ + { + "text": "horrible, no direction and no interaction. Had to rely on tutors and the internet to teach me the concepts. If you get this prof drop the class ASAP.", + "pos": 0.0, + "neu": 0.706, + "neg": 0.294, + "_id": { + "$oid": "6711d7a2cd60fca157e60de4" + } + }, + { + "text": "I don't like Math, but this man teaches like he's slow. He knows his stuff, but a lot of the class is left behind while he moves ahead. He's a nice guy, I had to make up exams and I got an A (after going to free tutoring in the Marshak). I've seen worse, so he's average.", + "pos": 0.165, + "neu": 0.752, + "neg": 0.083, + "_id": { + "$oid": "6711d7a2cd60fca157e60de5" + } + }, + { + "text": "The Teacher from God!He posses the natural skill of interpreting the subject, making it cristal clear and easy to understand. On top of that he has a great personality. Very helpful, professional, one of the best math profies on camp! Take him - you will not regret!", + "pos": 0.385, + "neu": 0.615, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60de6" + } + }, + { + "text": "Everything he teached was unclear if you dont read the textbook or do the homework and ask tons of questions...He doesnt penalize for attendance but he always comes to class late... I dont think he likes teaching Math150, thats the problem", + "pos": 0.0, + "neu": 0.825, + "neg": 0.175, + "_id": { + "$oid": "6711d7a2cd60fca157e60de7" + } + }, + { + "text": "he is an awesome professor, carries the class along. if you do the homework and study the practice tests well, you definetely will ace the class.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60de8" + } + }, + { + "text": "Teaches you a lot of good stuffs & with clarity", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60de9" + } + }, + { + "text": "A wonderful professor had him for math 190. He knows his topic...i think it was about 3 exams and final... explains everything clearly....goes over homeworks doesnt check it but recommend you do it b/c it helps you for the exams...wha you dont understand ask and he will explain... i highly recommend this professor !!", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dea" + } + }, + { + "text": "If I had had Philip Sooknanan as a teacher when I was in high school, my experience of math would have been totally different. He explains everything, including rules. When you don't understand he will explain things as many times and ways as it takes for you to get it.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60deb" + } + }, + { + "text": "He tries to make it as easy as possible for you to understand teh material. His exams are fair and so are his quizzes. He prepares his student well for the final. If you had a hard time in math before, then you should definately take him, he'll make you fall in love with math -again- :).. Great Prof!", + "pos": 0.226, + "neu": 0.754, + "neg": 0.02, + "_id": { + "$oid": "6711d7a2cd60fca157e60dec" + } + }, + { + "text": "awesome professor. take him you wont regret it. he knows what he teaches and he teaches it well. A+++ prof. one of the best professors i had for math so far.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60ded" + } + }, + { + "text": "I would advise anyone to take Maths 195 with phillip, he is really cool and gives students a good foundation in precal.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dee" + } + }, + { + "text": "This prof is super funny!!! He Know what he is doing...and he try to make his test fair...He is a very nice guys...he one of the few Prof At CCNY that I love! Take him if you have the opportunity you wont regret it... The bad new is they ussually dont post his name in esim for registration!!", + "pos": 0.272, + "neu": 0.681, + "neg": 0.047, + "_id": { + "$oid": "6711d7a2cd60fca157e60def" + } + }, + { + "text": "He is a good professor and helps his students alot, explains everything clearly and gives an easy method to look at all problems. His exams are a little hard but not impossible, just do your homework.", + "pos": 0.187, + "neu": 0.742, + "neg": 0.072, + "_id": { + "$oid": "6711d7a2cd60fca157e60df0" + } + }, + { + "text": "diffcult and did not know how to explain anything about math. enter the class unprepaired", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60df1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a2cd60fca157e60df3" + }, + "professor_name": "Casey Gordon", + "rating": 4.9, + "department": "English department", + "comments": [ + { + "text": "Casey really likes participation. She has index cards she carries around with her students' names on them so if you don't raise your hand, she's reaching for the cards and randomly chooses a name. Her essay assignments are actually interesting topics (yet veryyy broad) so you're open to using pretty much anything you want.", + "pos": 0.193, + "neu": 0.765, + "neg": 0.042, + "_id": { + "$oid": "6711d7a2cd60fca157e60df4" + } + }, + { + "text": "Alright Professor. Seems to like teaching and talking. Class sometimes gets boring but she is very nice and helpful. Not an easy A but if you put the work in then it will be. Overall, take class if you want to improve your writing.", + "pos": 0.292, + "neu": 0.626, + "neg": 0.083, + "_id": { + "$oid": "6711d7a2cd60fca157e60df5" + } + }, + { + "text": "Casey is a wonderful professor. She i so insightfull and engaging. She is not a difficult grader, if you put in the work required you will get a good grade. The readings and writing assignments are interesting. She is big on lateness, so be puntual.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60df6" + } + }, + { + "text": "Casey is absolutely engaging! She gave great assignments for reading as well as writing. Her classroom style is relaxed and interesting. Highly recommmend this professor for anyone interested in Creative Writing!", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60df7" + } + }, + { + "text": "casey is awesome. like i want to be her when i grow up. her class is awesome, shes super intelligent and is always wanting recommendations when it comes to graphic novels and comics. shes super stylish and even other t.a's think shes incredible.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60df8" + } + }, + { + "text": "Best professor ever! she's very helpful and if you do the work youll get the A", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60df9" + } + }, + { + "text": "Great professor! Just come to class and do your work, she is very helpful all you have to do is ask for help! My best professor by far!", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dfa" + } + }, + { + "text": "Shes such a sweetheart!...shes always helpful and willing, shes wants to have a student/teacher relationship with you, so open up , ask question..feel free!...coolest and cutest teacher..", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dfb" + } + }, + { + "text": "GREAT TEACHER!!!! easy and very clear on what she wants u to do. the class is lead by the students which makes it even more interesting. shes also a hottie :)", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dfc" + } + }, + { + "text": "i think that if anyone is starting college her class is the best ice breaker! of course it must be taken a seriously as any other but it's so much fun and all the students are allowed their creative input so the class flows smoothly and quickly. she's cute too!", + "pos": 0.255, + "neu": 0.723, + "neg": 0.022, + "_id": { + "$oid": "6711d7a2cd60fca157e60dfd" + } + }, + { + "text": "FUN and GREEEEEAT professor! She is good looking so that helps. Also, she allwos YOU THE STUDENT to controll the class. So it's easy. She gives a million chances to make up work and to fix your grade. AWWWSOME professor and GREAT class. oh btw, READDDDD THE BOOK! if you domn't read the stories your screwed. But thier fun. she gives easy quizes.", + "pos": 0.279, + "neu": 0.694, + "neg": 0.027, + "_id": { + "$oid": "6711d7a2cd60fca157e60dfe" + } + }, + { + "text": "She's the best. I'm taking the class right now and I'm sure I'm getting an A. Read the book and you will be fine. She's Gorgeous, so the class is very interesting.", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60dff" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7a2cd60fca157e60e00" + } + }, + { + "text": "Great teacher. Found her very helpfull and very understanding. Fun and interesting class. Explains everything very well. Listen to directions and its an easy A.", + "pos": 0.439, + "neu": 0.561, + "neg": 0.0, + "_id": { + "$oid": "6711d7a2cd60fca157e60e01" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a3cd60fca157e60e03" + }, + "professor_name": "Julia Lee", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "Professor Julia Lee was an amazing professor, who really grew on me. She was my first professor entering college, and she really made the whole experience great for me. Understanding however, expect to work for your grade. She is a recent graduate, and gives occasional homework. Take her if you can, she is truly passionate about what she does.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e04" + } + }, + { + "text": "BEST PROFESSOR YOU WILL EVER HAVE", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e05" + } + }, + { + "text": "Funny, out spoken and a little crazy. But that's how she made class interesting! She actually gives out her cell number so students can reach her whenever! Make sure you have a voice in her class though because she WILL ask you questions!", + "pos": 0.242, + "neu": 0.727, + "neg": 0.031, + "_id": { + "$oid": "6711d7a3cd60fca157e60e06" + } + }, + { + "text": "Can be a bit harsh at times. Strict on deadlines but easy to talk to if you have a problem or need something. Her essay assignments assignments were interesting to write about. Take her class if you are serious about your work. Not an easy A.", + "pos": 0.129, + "neu": 0.696, + "neg": 0.175, + "_id": { + "$oid": "6711d7a3cd60fca157e60e07" + } + }, + { + "text": "Professor Lee is my fav. She's different from the rest. You better participate in her class and have an opinion. She always listens to what you have to say, and in her class there are no right and wrong answers. Some claim she's \"harsh\" but in my opinion that's what make her class interesting.", + "pos": 0.123, + "neu": 0.786, + "neg": 0.092, + "_id": { + "$oid": "6711d7a3cd60fca157e60e08" + } + }, + { + "text": "She is a great professor...extremely helpful...hears everybody's opinion...she tries to help you a lot if english is your second language...She is a great professor...take her.. :)", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e09" + } + }, + { + "text": "Professor Lee is a phenomenal professor. She allows us to think for ourselves and did not tell us her opinions. She allowed us to discuss various topics and class. I learned how to present my argument in a clear and concise way. The readings are really easy and interesting. Make sure you have an opinion! Don't miss a chance to have class with her.", + "pos": 0.173, + "neu": 0.77, + "neg": 0.057, + "_id": { + "$oid": "6711d7a3cd60fca157e60e0a" + } + }, + { + "text": "This is my first year of college and professor Lee has made it a very enjoyable! She is so much different from my other professors because she doesn't care to make us think like her; she wants us to value our own opinions. I learned 3 things from her class: 1. Have an opinion 2. stick to your opinion 3. No one is ever right or wrong! She's my muse.", + "pos": 0.108, + "neu": 0.794, + "neg": 0.098, + "_id": { + "$oid": "6711d7a3cd60fca157e60e0b" + } + }, + { + "text": "Such a hard to find professor. I love how she never takes a side in any debate in class. She gives us choice! She's also great at concealing her beliefs because she makes every student feel that his or her opinion is extremely important. I wish all professors are like her, not too ideolgically driven. :)", + "pos": 0.275, + "neu": 0.705, + "neg": 0.02, + "_id": { + "$oid": "6711d7a3cd60fca157e60e0c" + } + }, + { + "text": "She is the best. The class is not easy but its fun. Lots of debate and open discussion. Tons of reading. if u get a chance to take her class don't miss.", + "pos": 0.281, + "neu": 0.676, + "neg": 0.043, + "_id": { + "$oid": "6711d7a3cd60fca157e60e0d" + } + }, + { + "text": "One of the best professor at CCNY. Her classes are so much fun. We all learned a lot, but through fun debates and writing assignments. More creative writing!! If you need to take FIQWS/English 210, take her! Also, she's teaching another course, I forgot the name.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e0e" + } + }, + { + "text": "One of the few class I actually looked forward to going to. Folks, if you have a chance to take this professor DO IT. Very helpful and knowledgeable. She makes an otherwise boring class fun & interesting while her workload is reasonable. The only issues that may arise is too much freedom (freestyling) when writing. But a great professor overall.", + "pos": 0.224, + "neu": 0.752, + "neg": 0.023, + "_id": { + "$oid": "6711d7a3cd60fca157e60e0f" + } + }, + { + "text": "She makes you do a lots of peer editing which helps you in the future when you are doing your final draft. She is very helpful. And she will reply to your email/text ASAP. I loved her little discussion circle.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e10" + } + }, + { + "text": "Great professor. Makes class a lot more fun than other professors. Listens to the views/complaints of students. Very helpful. Loved the class discussions. I would recommend to everyone.", + "pos": 0.432, + "neu": 0.568, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e11" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a3cd60fca157e60e13" + }, + "professor_name": "Gabriel Tardos", + "rating": 2.1, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Tardos is a character. Very funny, sarcastic, and too old to care anymore. Not sure why the person below me is saying he's a GPA killer. Clearly someone in a random major considering 341 is a REQUIRED course for ChE and BME majors. In any case, he curves like a mad man. You have to try to do bad in his class. But yeah, not exactly the best teacher.", + "pos": 0.127, + "neu": 0.697, + "neg": 0.176, + "_id": { + "$oid": "6711d7a3cd60fca157e60e14" + } + }, + { + "text": "HORRIBLE! Rude, disrespectful, sarcastic, and just can't teach. Doesn't care about students, writes chicken scratch on the board, doesn't assign hw from the textbook, gives weird theoretical hw problems and refuses to post solutions to anything on Blackboard. Tests are impossible and that's why they are open book. DONT TAKE HIM! GPA KILLER!", + "pos": 0.057, + "neu": 0.657, + "neg": 0.286, + "_id": { + "$oid": "6711d7a3cd60fca157e60e15" + } + }, + { + "text": "doesn't know what he teaches.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e16" + } + }, + { + "text": "I felt cheated out of what should have been a rigorous and demanding class. The class was dumbed down so much because BME's were taking the classes with ChemE's. Transport II was impossible because we never learned the basics in Trans. I. Rumschitzki is much better.", + "pos": 0.054, + "neu": 0.765, + "neg": 0.181, + "_id": { + "$oid": "6711d7a3cd60fca157e60e17" + } + }, + { + "text": "Lazy and mean.Never helps the students and loves to make fun of people.He is full of sarcasm! Gives multiple choice exams because he is too lazy to grade them. The excuse is \"students scribble on exams,so I can't read\" don't these students take other classes and their professor read their hand writing.People can easily copy and get A's coz of this!", + "pos": 0.225, + "neu": 0.684, + "neg": 0.091, + "_id": { + "$oid": "6711d7a3cd60fca157e60e18" + } + }, + { + "text": "This guy tries to be funny, but he is not. His nastiness is disguised in his jokes etc. He does not know how to talk to people. Refers to male studnets as \"this man, that man\" etc. I wonder what he'd call a female student,probably \"woman\".", + "pos": 0.13, + "neu": 0.818, + "neg": 0.052, + "_id": { + "$oid": "6711d7a3cd60fca157e60e19" + } + }, + { + "text": "One of the laziest professors in the ChE dept. Doesn't care about his students at all; his wonderful TA knows nothing about fluid mechanics, and copies solutions to the problems from the solution manual and posts them online, even without correcting the silly mistakes in the published solutions!!! The TA may be excused, but not the professor...", + "pos": 0.104, + "neu": 0.746, + "neg": 0.15, + "_id": { + "$oid": "6711d7a3cd60fca157e60e1a" + } + }, + { + "text": "if you are not passionate about teaching, and if you dont like teaching, then dont, because the students wont learn from you. that pretty much sums up his teaching.", + "pos": 0.094, + "neu": 0.763, + "neg": 0.143, + "_id": { + "$oid": "6711d7a3cd60fca157e60e1b" + } + }, + { + "text": "lazy guy. multiple choice and no partial credits on exams in an engineerin class? be more responsible to the students who are actually working and trying to learn.", + "pos": 0.078, + "neu": 0.718, + "neg": 0.204, + "_id": { + "$oid": "6711d7a3cd60fca157e60e1c" + } + }, + { + "text": "I liked him. He's a great professor and he explains things better than most.", + "pos": 0.471, + "neu": 0.529, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e1d" + } + }, + { + "text": "first of all, Tardos does not teach chem330. Anyways, he is very good and very clear. He made one of the hardest courses in che look so easy. We had multiple choice because of the damn biomed students.", + "pos": 0.211, + "neu": 0.731, + "neg": 0.058, + "_id": { + "$oid": "6711d7a3cd60fca157e60e1e" + } + }, + { + "text": "lazy tchr. multiple choices with no partial credits. makes mistakes too often and cant explain things. lazy and bad.", + "pos": 0.076, + "neu": 0.466, + "neg": 0.459, + "_id": { + "$oid": "6711d7a3cd60fca157e60e1f" + } + }, + { + "text": "he's really good and fair. He's funny sometimes too, so u don't get bored in his class easily.", + "pos": 0.498, + "neu": 0.502, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e20" + } + }, + { + "text": "He is good", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d7a3cd60fca157e60e21" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a4cd60fca157e60e23" + }, + "professor_name": "Mohammed Sabha", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Best prof I have taken till now!! Very accessible outside class. I wish I could take him for all my math courses. Gives a lot of extra credit. I mean a lot a lot! You cant possibly fail his class if you pay attention to his lectures. Easy A", + "pos": 0.266, + "neu": 0.71, + "neg": 0.023, + "_id": { + "$oid": "6711d7a4cd60fca157e60e24" + } + }, + { + "text": "He's the best math professor I've ever taken!! Gives so many opportunities to make everyone pass, YOU CAN NOT FAIL HIS CLASS! He also explains everything in the simplest ways possible. Literally just the best. Will miss his class :\")", + "pos": 0.298, + "neu": 0.671, + "neg": 0.031, + "_id": { + "$oid": "6711d7a4cd60fca157e60e25" + } + }, + { + "text": "Hands down the best Math Professor I've taken yet. He is really relaxed and answers all questions. Makes sure you understand the material. He will answer ANY question you have regarding math. Very understanding. He is indeed the GOAT. The Summer course was tough due to the short amount of time so it was fast-paced, but he's a true gem.", + "pos": 0.153, + "neu": 0.828, + "neg": 0.019, + "_id": { + "$oid": "6711d7a4cd60fca157e60e26" + } + }, + { + "text": "Literally the greatest of all time(GOAT)!!. Very caring and understanding and is one of the best math professors I ever had. Very easily accessible outside of class to offer some extra help. Easiest A you can possibly get in any Math class with this professor. Just come to class and pay attention.", + "pos": 0.308, + "neu": 0.671, + "neg": 0.021, + "_id": { + "$oid": "6711d7a4cd60fca157e60e27" + } + }, + { + "text": "He is the GOAT. Super clear explanations and hilarious. just a great man overall. take him for an easy A. make sure you do his work and dont piss him off !!!!!!!!!!!!", + "pos": 0.467, + "neu": 0.533, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e28" + } + }, + { + "text": "Ah man what a guy! hes one of a kind, he puts a lot of effort to explain with most simplicity and is SUPER CLEAR! hes also available in the tutoring center so take advantage of those extra hours. Most teachers just give you the work and expect you to figure it out but he walks you through it and makes sure you understand. take him u wont regret it!", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e29" + } + }, + { + "text": "Regardless of his age he is hands down one of the best math prof. in the math department. He is explains everything in class in way you understand so you don't have to teach it to yourself like in other classes. He is accessible outside class, provides review sheet and lots of review hours outside class prior to exams. PS. Email reminders 1& funny", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e2a" + } + }, + { + "text": "Best professor at CCNY. I had him last semester for math 190 and he always answered my questions. If you have the chance to take his class, take it!", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e2b" + } + }, + { + "text": "Mohammed is among the best professor you'll find in the math department. Gives really good feedback as well as being really accessible outside class. When is time for finals or any exam given in class tutoring is offered. He does write a lot on the board as well as sending lots of emails but overall his great (laugh at his jokes).", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e2c" + } + }, + { + "text": "He is the best math professor! He goes over step by step and always open to questions and emails. Very helpful with reminders for upcoming test and quizzes. I had lost my grandfather and he completely understand, he extended my homework and excused me from class. If you wanna understand math, take this guy!", + "pos": 0.129, + "neu": 0.834, + "neg": 0.038, + "_id": { + "$oid": "6711d7a4cd60fca157e60e2d" + } + }, + { + "text": "Very good professor. He's very clear about what he teaches, he's very detailed and answers any question from start to finish. He is not strict but you have to keep up with homework and deadlines. He has a sense of humor, very young so he is very understanding. Overall great professor.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e2e" + } + }, + { + "text": "He's the best math professor ever. His tests and quizzes are literally the same questions from the review sheets. He gives extra credits as well. If you attend his class, pay attention and write down the notes you'll definitely get a A. He is also available during tutoring session. P.s he has corny jokes, but its funny.", + "pos": 0.204, + "neu": 0.778, + "neg": 0.019, + "_id": { + "$oid": "6711d7a4cd60fca157e60e2f" + } + }, + { + "text": "He was honestly one of the best math teachers I ever had. He is very clear and concise. If you have trouble just email him!! He is very helpful, and is always there for his students. He wants to see you succeed. Just don't disrespect him, he doesn't take acting like a child seriously. We are not in high school, just remember that.", + "pos": 0.242, + "neu": 0.677, + "neg": 0.082, + "_id": { + "$oid": "6711d7a4cd60fca157e60e30" + } + }, + { + "text": "Hands down, one of the best professors I've had for math. He is very clear and breaks down every problem as simple as possible for anyone to understand. Although he is young, and many would criticize on that, Sabha's teaching methods and love for the students really makes one appreciate all the extra work he puts into the class.", + "pos": 0.196, + "neu": 0.73, + "neg": 0.073, + "_id": { + "$oid": "6711d7a4cd60fca157e60e31" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a4cd60fca157e60e33" + }, + "professor_name": "David Johnson", + "rating": 4.5, + "department": "History department", + "comments": [ + { + "text": "Dr. Johnson is an excellent professor with a wealth of knowledge and real life experiences that he shares freely. He allows for a vibrant class discussion and insists on participation from everyone. The reading list was excellent but probably too much for the class. He expects a 1 page response to the readings and 3 formal papers.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e34" + } + }, + { + "text": "He is an person in general. as stated if u need more time and show genuine interest you are good. Took all undergrad and now in his Grad courses. For Grad:work 2(6-7 pgs on a question) 1 (15 pages on your choice with his approval)1 page reading response evry week.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e35" + } + }, + { + "text": "He's Trinidadian.Scholar on Southern Africa, taught in Nigeria and is SUPER cool.He expects you to read the books.Take good notes-it'll help with the 3 papers, midterm and final.MY FAV PROF-taken 3 class w/ him 2 B+ and 1 A last semester. Now that I've graduated I'll miss him.", + "pos": 0.238, + "neu": 0.734, + "neg": 0.027, + "_id": { + "$oid": "6711d7a4cd60fca157e60e36" + } + }, + { + "text": "Yeah mann, very knowledgable jamacian professor, he loves to talk about cricket. he is not that tough, very nice personality.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e37" + } + }, + { + "text": "He is very nice jamacian teacher, always talk about cricket. Lot of knowledge and tough professor", + "pos": 0.166, + "neu": 0.753, + "neg": 0.081, + "_id": { + "$oid": "6711d7a4cd60fca157e60e38" + } + }, + { + "text": "Definitely has good command of the material he teaches. He is not going to just hand an A out so you're going to have to do the work, but nothing out of this world.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e39" + } + }, + { + "text": "he is hard the best grade youll get is a B. he has two 4 page papers and a final 10 pg paper which you pick you own topic. also he talks a lot and doesnt give you a chance to speak and he is hard to understand cause he has a very thick accent.", + "pos": 0.103, + "neu": 0.85, + "neg": 0.047, + "_id": { + "$oid": "6711d7a4cd60fca157e60e3a" + } + }, + { + "text": "Very interesting, speaks his mind and the truth about history. However, he is a difficult grader", + "pos": 0.255, + "neu": 0.625, + "neg": 0.12, + "_id": { + "$oid": "6711d7a4cd60fca157e60e3b" + } + }, + { + "text": "very thorough, great lectures", + "pos": 0.593, + "neu": 0.407, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e3c" + } + }, + { + "text": "Professor knows his material and presents material in a fresh and interesting way. Excellent class, great professor!", + "pos": 0.502, + "neu": 0.498, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e3d" + } + }, + { + "text": "wonderful, just wonderful", + "pos": 0.881, + "neu": 0.119, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e3e" + } + }, + { + "text": "Great guy, no quetion about it, could have done a better job with the lectures though.", + "pos": 0.315, + "neu": 0.586, + "neg": 0.099, + "_id": { + "$oid": "6711d7a4cd60fca157e60e3f" + } + }, + { + "text": "Prof. Johnson was dope. While he had a tendancy to go on and on, he was interesting to listen to and had a good perspectives on issues. Plus the occassional chance to hear him chuckle or sing Bob Marley definitely made the class worthwhile. The class was challanging, but interesting.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e40" + } + }, + { + "text": "Very good at teaching the material, understandable, and very easy", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e41" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a4cd60fca157e60e43" + }, + "professor_name": "Yashasvi Aulak", + "rating": 3.4, + "department": "Mathematics department", + "comments": [ + { + "text": "Takes his time to make sure everybody understands his lectures. Very lenient grader. Only things graded are the 2 highest of 4 in-class exams and final. His exam reviews are similar to his exams. Made absolutely sure to tell the class to heavily prepare for the final, should have no problem getting an A if you put in some effort and come to class.", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e44" + } + }, + { + "text": "Attendance is not mandatory, 4 really short exams throughout semester the 2 highest are taken, the final sample exam and practice exams given are very similar to the exams", + "pos": 0.0, + "neu": 0.958, + "neg": 0.042, + "_id": { + "$oid": "6711d7a4cd60fca157e60e45" + } + }, + { + "text": "He is always willing to answer questions during lectures and reexplain topics. Very nice grader and provides practice exams that are very similar to the actual exam.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e46" + } + }, + { + "text": "Not useful", + "pos": 0.0, + "neu": 0.294, + "neg": 0.706, + "_id": { + "$oid": "6711d7a4cd60fca157e60e47" + } + }, + { + "text": "Not good", + "pos": 0.0, + "neu": 0.294, + "neg": 0.706, + "_id": { + "$oid": "6711d7a4cd60fca157e60e48" + } + }, + { + "text": "This professor is great at keeping the class engaged! He loves questions and wants students to fully understand concepts so he will take the time to explain. This man is the kindest and will properly help you if you are struggling. I wish there were more professors like him!!", + "pos": 0.304, + "neu": 0.653, + "neg": 0.044, + "_id": { + "$oid": "6711d7a4cd60fca157e60e49" + } + }, + { + "text": "amazing professor. Extremely encouraging, he makes it easy to want to participate in class. He genuinely cares about his students. Math 190 is known for being a difficult class to pass, but he is good at teaching and I would look forward to learn everyday. I like math now because of him. 10/10, I would recommend to take this professor.", + "pos": 0.277, + "neu": 0.699, + "neg": 0.024, + "_id": { + "$oid": "6711d7a4cd60fca157e60e4a" + } + }, + { + "text": "Had to drop his class, definitely would not recommend him. He seems like a nice man, but goes at a very fast pace, is difficult to understand, and cannot explain. The exams are difficult and very different from the practice, and essentially the final makes your grade.", + "pos": 0.1, + "neu": 0.726, + "neg": 0.174, + "_id": { + "$oid": "6711d7a4cd60fca157e60e4b" + } + }, + { + "text": "He is the sweetest Professor! But do pay attention to his lectures, he can go in a fast pace.", + "pos": 0.0, + "neu": 0.905, + "neg": 0.095, + "_id": { + "$oid": "6711d7a4cd60fca157e60e4c" + } + }, + { + "text": "All the reviews of his class that were written for the fall semester are completely bs. his accent is annoying and sometimes his attempt at explaining isn't effective. only tests counted towards grade but that was not his choice. Hes a decent professor . btw I had to take summer class for math and many who failed didnt pay attention or study.", + "pos": 0.021, + "neu": 0.859, + "neg": 0.12, + "_id": { + "$oid": "6711d7a4cd60fca157e60e4d" + } + }, + { + "text": "He is nice and all but it's very hard to understand him because of his accent and he is very fast when he teaches. homework doesn't count only exams and also his exams are hard. He teaches something else and his exams are something else", + "pos": 0.04, + "neu": 0.883, + "neg": 0.077, + "_id": { + "$oid": "6711d7a4cd60fca157e60e4e" + } + }, + { + "text": "He is a very nice guy but I can't understand him because of his thick accent and he speaks very fast. Your grade is based on the exams and final so if you fail 1 test, good luck. Homework is not graded but you are expected to do them for practice.", + "pos": 0.16, + "neu": 0.758, + "neg": 0.083, + "_id": { + "$oid": "6711d7a4cd60fca157e60e4f" + } + }, + { + "text": "Super nice and understanding ! Honestly one of the sweetest Professors who understand what its like being a student", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e50" + } + }, + { + "text": "Easy A", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d7a4cd60fca157e60e51" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a5cd60fca157e60e53" + }, + "professor_name": "Anne Kornhauser", + "rating": 3.2, + "department": "History department", + "comments": [ + { + "text": "Truthfully, I wanted to enjoy this class but at the end of the day the lack of clarity in assignments and expectations was hard to deal with. Syllabus was changed no less than 4 times throughout the semester, feedback was never given despite being promised, and she often interrupted students when they are supposed to be giving oral presentations.", + "pos": 0.146, + "neu": 0.68, + "neg": 0.174, + "_id": { + "$oid": "6711d7a5cd60fca157e60e54" + } + }, + { + "text": "A condescending professor who loves to ramble on about her experiences at Columbia and Princeton. She doesn't actually teach anything worthwhile, and sitting in her class is the equivalent of eating chalk. She will bore you with outdated material that is totally out of touch with the tangible historical realities of the contemporary United States.", + "pos": 0.144, + "neu": 0.824, + "neg": 0.032, + "_id": { + "$oid": "6711d7a5cd60fca157e60e55" + } + }, + { + "text": "How can one know so much? This professor knows her own material and enough about everything else. Inspiring for anyone in the social sciences. Witty AF. The readings are long but relevant&intriguing. Her comments\u00aces on assignments are insightful&allow for growth&development to the end semester. No one leaves this class without improvement&gains.", + "pos": 0.035, + "neu": 0.912, + "neg": 0.052, + "_id": { + "$oid": "6711d7a5cd60fca157e60e56" + } + }, + { + "text": "You get what you give. She is an invaluable resource at City College. The depth and breadth of her knowledge are unparalleled by most other professors. Fantastic reading assignments. Easy to approach/talk to, useful feedback, has students' best interest in mind, and extremely funny. I recommend this professor to those who actually want to learn.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e57" + } + }, + { + "text": "avoid at all costs! rude, disorganized, arrogant. overall just not worth the stress, pick a better proffessor", + "pos": 0.188, + "neu": 0.36, + "neg": 0.452, + "_id": { + "$oid": "6711d7a5cd60fca157e60e58" + } + }, + { + "text": "I've taken Dr. Kornhauser for several different classes and I've always found her to be engaging, well-prepared, and super funny. She assigns a fair amount of reading and a research paper but she also gives great feedback and will definitely take the time to help you if you need it. Just be aggressive and ASK.", + "pos": 0.295, + "neu": 0.677, + "neg": 0.027, + "_id": { + "$oid": "6711d7a5cd60fca157e60e59" + } + }, + { + "text": "Was hopeful for this class because of the reviews. Super confusing. Took her for Age of Human Rights and I just can't. She goes off topic, rambles on, jumps around.", + "pos": 0.199, + "neu": 0.748, + "neg": 0.053, + "_id": { + "$oid": "6711d7a5cd60fca157e60e5a" + } + }, + { + "text": "This was an incredible class. Completely well thought out. The preparation put in to this class was excellent and each assignment was on target and related well to the subject matter. The class had a very clear path and I had a few \"a ha\" moments. As for the negative remarks. I would attribute them to the authors not being too bright. Great class!", + "pos": 0.213, + "neu": 0.709, + "neg": 0.077, + "_id": { + "$oid": "6711d7a5cd60fca157e60e5b" + } + }, + { + "text": "she definitely knows what shes talking about. there is a lot of reading and its all kinda of similar. you get to redo the papers so there's no way you cant do good. overall, i learned a whole lot about human rights. theres no tests :)", + "pos": 0.051, + "neu": 0.77, + "neg": 0.18, + "_id": { + "$oid": "6711d7a5cd60fca157e60e5c" + } + }, + { + "text": "She was great! And mad smart.", + "pos": 0.534, + "neu": 0.226, + "neg": 0.241, + "_id": { + "$oid": "6711d7a5cd60fca157e60e5d" + } + }, + { + "text": "I took this class and loved it. Prof. Kornhauser is so smart, and she has a fun sense of humor. I have read some of the other posts and am surprised by them. If you did the reading, the lectures and her comments made total sense. As a history class I liked the focus on human rights. It was really interesting.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e5e" + } + }, + { + "text": "so much reading,it was impossible to discuss all.hard grader, bias against some students.Reminds me of Edna from \"The Incredibles\" criticizes students work.Always talks about teaching in Princeton, wish she stayed there.Makes students exchange papers to critique each other.She loves her own voice & will keeps us after class a lot.", + "pos": 0.114, + "neu": 0.819, + "neg": 0.068, + "_id": { + "$oid": "6711d7a5cd60fca157e60e5f" + } + }, + { + "text": "This prof loves to hear herself speak, she would stop students to tell her opinions! Had her Human rights class, sooooo much reading, she keeps us after class to hear herself speak some more. Hard for no apparent reason, so much work. Students had to exchange papers and correct each other, like we know what the others' subjects are!", + "pos": 0.092, + "neu": 0.804, + "neg": 0.103, + "_id": { + "$oid": "6711d7a5cd60fca157e60e60" + } + }, + { + "text": "I had Professor Kornhauser for Human Right class( FIQWA, Very good topic, boring professor. She needs to find new ways to keep the class interested.", + "pos": 0.193, + "neu": 0.722, + "neg": 0.084, + "_id": { + "$oid": "6711d7a5cd60fca157e60e61" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a5cd60fca157e60e63" + }, + "professor_name": "Ewa Barnes", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "I loves prof Barnes so much! She is super sweet and understanding. She is very organized and truly tries to make her lesson easy for her students.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e64" + } + }, + { + "text": "She's incredibly organized and she gives good feedback. She is really clear about her expectations from the beginning of the year as well", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e65" + } + }, + { + "text": "Super nice and helpful, very organized. The weeks are organized very clearly online, and there's no need to go to 10 different BB pages to make sure you did everything. She makes class very interesting, as well.", + "pos": 0.392, + "neu": 0.565, + "neg": 0.043, + "_id": { + "$oid": "6711d7a5cd60fca157e60e66" + } + }, + { + "text": "Professor Barnes is awesome . I would definitely recommend this Professor .", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e67" + } + }, + { + "text": "Great Professor! She's a reasonable grader, if you miss work she allows make up to boost up your grade long as you attend class regularly.", + "pos": 0.231, + "neu": 0.717, + "neg": 0.052, + "_id": { + "$oid": "6711d7a5cd60fca157e60e68" + } + }, + { + "text": "She's chill and caring as long as you do your work you will get a good grade", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e69" + } + }, + { + "text": "She is really AWSOME. She teaches very well, she speak english clearly.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e6a" + } + }, + { + "text": "She is really a nice professor.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d7a5cd60fca157e60e6b" + } + }, + { + "text": "Professor Barnes is a pretty tough professor in terms of getting your essays graded, however her online assignments are clearcut and are an easy ways to boost your grade in her class. Paying attention to her rubric is essential and it may be tough, but not impossible. I will agree with one thing said below, DO NOT willfully try to prove her wrong!", + "pos": 0.131, + "neu": 0.777, + "neg": 0.092, + "_id": { + "$oid": "6711d7a5cd60fca157e60e6c" + } + }, + { + "text": "I took this class for 21001, and honestly, she's a good teacher. She has her own style, but it was very adaptable. Her grading is strict, however, because I believe she has her own view on writing compared to others. Make sure you write long essays and paragraphs. I got an A, but it made me work hard for it. Good luck whoever is taking her!", + "pos": 0.196, + "neu": 0.783, + "neg": 0.021, + "_id": { + "$oid": "6711d7a5cd60fca157e60e6d" + } + }, + { + "text": "People have mixed opinions about her. She's fine but its hard to understand what she wants. She'll have a rubric and all but its really hard to follow and vague, honestly I wish she graded it a little more based on a few opinions seeing as its meant to prepare us for further writing. The easiness is variable,if you write in a way she likes...", + "pos": 0.205, + "neu": 0.728, + "neg": 0.067, + "_id": { + "$oid": "6711d7a5cd60fca157e60e6e" + } + }, + { + "text": "Great professor. Made the class enjoyable. However, the activities can be very boring. The assignments are fair, and there is more than enough time given to complete them. You almost never use the textbook, so don't buy it. Borrow it instead.", + "pos": 0.19, + "neu": 0.757, + "neg": 0.053, + "_id": { + "$oid": "6711d7a5cd60fca157e60e6f" + } + }, + { + "text": "Ms. Barnes is great! As someone who never liked english, I actually found this class okay because of her. She's a fair grader and clearly lays out exactly what she's looking for in each assignment. She genuinely cares for her students, and is very organized. Just watch out for all the small online assignments, they're very easy to forget.", + "pos": 0.24, + "neu": 0.699, + "neg": 0.062, + "_id": { + "$oid": "6711d7a5cd60fca157e60e70" + } + }, + { + "text": "She's a really good English teacher and very nice. Every assignment she gives has clear instructions and she's a fair grader. She takes attendance but it's okay if you miss class once or twice as long as you tell her why. She gives extra credit and the class always has a good and friendly environment. Would definitely recommend her for English 110.", + "pos": 0.348, + "neu": 0.628, + "neg": 0.023, + "_id": { + "$oid": "6711d7a5cd60fca157e60e71" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a6cd60fca157e60e73" + }, + "professor_name": "Angelo Lampousis", + "rating": 4.2, + "department": "Earth Science department", + "comments": [ + { + "text": "Even though most of the students were taking this class as an elective, he still made the subject material very interesting. Tests were straightforward and straight from the material, but make sure to study well and know definitions and key terms. He gave a medium-ish curve on the tests and finals that definitely helped a lot of people.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e74" + } + }, + { + "text": "This class is good for those who need a science elective. Labs are the most time consuming part of the class and are all done in person. Lectures are not mandatory but attendance is still a part of your grade so go to class at least five times. The tests are basically quizlet type questions and are straightforward. He is also rlly understanding.", + "pos": 0.03, + "neu": 0.952, + "neg": 0.017, + "_id": { + "$oid": "6711d7a6cd60fca157e60e75" + } + }, + { + "text": "This guy makes the class harder for no reason. This is an elective class for most and he cant come to grips that earth science is about me memorizing definitions. This guy is real paranoid about cheating.", + "pos": 0.0, + "neu": 0.813, + "neg": 0.187, + "_id": { + "$oid": "6711d7a6cd60fca157e60e76" + } + }, + { + "text": "he is funny. he explain everything clearly. in addition, he is helpful.", + "pos": 0.483, + "neu": 0.517, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e77" + } + }, + { + "text": "He's a great professor and definitely cares about getting you interested in EAS topics. There are midterm and final exams, a term-long group project, a few small assignments and like 12 labs. He uploads all his slides on Bb but discusses a lot of important stuff during the actual classes so you should attend as many of the classes as possible.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e78" + } + }, + { + "text": "Prof Lampousis is very engaging and clear about what will be on the 3 exams that make up the course. He gives lectures using a powerpoint, and will tell you to NOT read the powerpoint but instead focus on what he highlights from them and what is in the textbook. He encourages students to ask questions and is very test oriented. Very funny prof too!", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e79" + } + }, + { + "text": "Professor Angelos is hilarious and caring, not strict at all. Attendance is mandatory but lectures are just him reading off slides. For EAS328 you're better off studying test banks, just ask a previous student for them most of the questions are from there.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e7a" + } + }, + { + "text": "For this class, there's too much reading. Throughout the whole semester all we did is read. He brings guest speakers, and took us to places to understand the environmental job field, make connections and get internships. He's lectures are the key to understand the reading materials. His exams are fair and they are based on the readings. So show up!", + "pos": 0.042, + "neu": 0.958, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e7b" + } + }, + { + "text": "Lampousis is really engaging in class. He tells a lot of fun stories, but they can be a bit irrelevant. However, there is not much guidance on what or how to study for exams. Overall, not a difficult class.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e7c" + } + }, + { + "text": "I don't seem to understand why this prof. has such a low grade here! He is awesome! Lectures and readings are easy after the 1st Midterm. That's because, after the midterm, you will know what he will be testing you on. Literally, not a lot of reading after that. If you are interested, the book is interesting, u can use pdf. Would take AGAIN! DO it!", + "pos": 0.177, + "neu": 0.796, + "neg": 0.027, + "_id": { + "$oid": "6711d7a6cd60fca157e60e7d" + } + }, + { + "text": "Great guy, very easy to get a good grade in the class, just do the few assignments he assigns and participate once in a while.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e7e" + } + }, + { + "text": "Do not take class with this Prof. No one knew how to study for this class and the lectures were a waste of time. Nice guy and all but very lazy teacher.", + "pos": 0.051, + "neu": 0.755, + "neg": 0.194, + "_id": { + "$oid": "6711d7a6cd60fca157e60e7f" + } + }, + { + "text": "Awesome professor. Passionate about the subject and is very engaging. 3 minor assignments, biweekly reading questions on the one assigned novel, 1 major assignment (a poster project, which is Macaulay-wide). Not sure if attendance is mandatory, since everyone usually showed up. You will not regret taking him for this class!", + "pos": 0.267, + "neu": 0.701, + "neg": 0.032, + "_id": { + "$oid": "6711d7a6cd60fca157e60e80" + } + }, + { + "text": "Really funny and relaxed, the exams were pretty easy, pay attention in class and read the chapters and you'll be fine. Don't sweat it lol.", + "pos": 0.401, + "neu": 0.496, + "neg": 0.103, + "_id": { + "$oid": "6711d7a6cd60fca157e60e81" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a6cd60fca157e60e83" + }, + "professor_name": "Bettina Sheppard", + "rating": 3.7, + "department": "Music department", + "comments": [ + { + "text": "honestly she's not very understanding.", + "pos": 0.429, + "neu": 0.571, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e84" + } + }, + { + "text": "tried the hardest in her class. Did good over all always participated and engaged myself in her lectures. But still didnt receive a good grade. Avoid her if you can", + "pos": 0.106, + "neu": 0.728, + "neg": 0.165, + "_id": { + "$oid": "6711d7a6cd60fca157e60e85" + } + }, + { + "text": "I had Bettina this semester for aural 161. She was an amazing professor. Really nice and caring. Her classes would go by super quickly as she made sure you had fun while learning. 100% would reccomend.", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e86" + } + }, + { + "text": "Amazing class, I loved the group that I worked in bc it was an intro class. She gave insanely easy quizzes you complete before class and you can literally find the answers in the provided chapter pdfs. A couple 2 pag papers which are super easy and some easy presentations. She made the class super fun and involved", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e87" + } + }, + { + "text": "Prof Sheppard was really nice, and since this was an intro to music class, was really thorough with the basics. She only gave one quiz and one midterm, and she gave us a clear outline of the exact questions that would be on both. For the final, she assigned questions for hw that we had a week to complete. Really nice, but do the work or youll fail", + "pos": 0.079, + "neu": 0.857, + "neg": 0.064, + "_id": { + "$oid": "6711d7a6cd60fca157e60e88" + } + }, + { + "text": "Probably one of the only classes I've laughed the most at. She is incredibly funny and she cares for the people who can't sing in pitch. Sure she's a tough grader but it's understandable that you have to be good and work hard in music to do the best musician possible. She is also reliable if you have questions on anything.", + "pos": 0.238, + "neu": 0.724, + "neg": 0.039, + "_id": { + "$oid": "6711d7a6cd60fca157e60e89" + } + }, + { + "text": "tough grader. did the utmost in her class still, didn't receive a well grade.", + "pos": 0.0, + "neu": 0.784, + "neg": 0.216, + "_id": { + "$oid": "6711d7a6cd60fca157e60e8a" + } + }, + { + "text": "Bettina Sheppard is an excellent professor. She is clear and concise with her lessons and paces her classes wonderfully. She is a perfect blend of warm, inspirational, and professional. I have never had a professor as good as her.", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e8b" + } + }, + { + "text": "Pretty harsh grader, but helpful if you ask. Don't be fooled by her kindness (no exams, assignments), you can end up with a grade you don't want.", + "pos": 0.341, + "neu": 0.57, + "neg": 0.089, + "_id": { + "$oid": "6711d7a6cd60fca157e60e8c" + } + }, + { + "text": "She's tough grader and don't take it if you don't have musical experience.", + "pos": 0.0, + "neu": 0.889, + "neg": 0.111, + "_id": { + "$oid": "6711d7a6cd60fca157e60e8d" + } + }, + { + "text": "She is so nice and approachable. She will stay after class and help you improve your voice. She is very funny as well.", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e8e" + } + }, + { + "text": "Took her for Voice 1 and as a non-singer she was very approachable and helpful. I definitely feel that I had a great introduction to voice technique and singing from this class. Love her!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e8f" + } + }, + { + "text": "Very fair. Her teaching style and explanations are very clear and she makes sure everyone understands the material. Obviously loves music and loves teaching.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e90" + } + }, + { + "text": "Professor Sheppard is by far my favorite professor at City College. I have had her for a few music courses and she has always been clear, helpful and encouraging. I have gone to her in times of need with other classes and she has even offered her assistance to me for my other classes that she didn't even teach. She is everything a teacher should be", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d7a6cd60fca157e60e91" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a7cd60fca157e60e93" + }, + "professor_name": "Angela Chitkara", + "rating": 4.2, + "department": "Media Arts department", + "comments": [ + { + "text": "Professor Chitkara was an amazing Professor. In the beginning of the semester, her exact words were, \"I am going to be hard on you all and I expect that you don't slack.\" She has given a lot of content and has taught our class to the best of her abilities by giving an overall 360 degree experience throughout the world of PR. Tough but worth it.", + "pos": 0.147, + "neu": 0.819, + "neg": 0.034, + "_id": { + "$oid": "6711d7a7cd60fca157e60e94" + } + }, + { + "text": "Professor Chitkara is one of the best educators in the BiC program. She was always available outside of class for help, she brought in very relevant and interesting guest speakers, and she took the time to make sure that everyone understood the subject matter. The things I learned in her class directly helped me succeed in other classes.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60e95" + } + }, + { + "text": "Professor Chitkara takes special care to assign topics to each student that are relevant to our interests, which makes doing the work fun. She expects a lot, but in the end it's very rewarding. Great guest lectures too that give a view inside the PR industry in different ways.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60e96" + } + }, + { + "text": "She's a strict but very responsible teacher! She would spend lots of time outside class giving you feedbacks and allow you to do the revisions. You might feel stressed when she pushes you to improve your work, but it would definitely help you grow up and learn a lot. She also provided us many networking opportunities in the industry. Appreciate it", + "pos": 0.329, + "neu": 0.633, + "neg": 0.038, + "_id": { + "$oid": "6711d7a7cd60fca157e60e97" + } + }, + { + "text": "Scattered and unprofessional. Doesn't use the most basic instructional methods to help students understand what's required. You have no idea where you stand throughout the semester because she doesn't return any graded assignments until then. Relies on guest speakers instead of teaching. This class almost made me change tracks.", + "pos": 0.05, + "neu": 0.849, + "neg": 0.101, + "_id": { + "$oid": "6711d7a7cd60fca157e60e98" + } + }, + { + "text": "She made an overwhelming course manageable. When I went over reading materials I didnt quite get it but when she covered it during lectures it was easy to assimilate. There were lots of assignments and it forces you to thrive outside your comfort zone which is great. Im usually shy but this was one class that helped boost my confidence.", + "pos": 0.269, + "neu": 0.699, + "neg": 0.032, + "_id": { + "$oid": "6711d7a7cd60fca157e60e99" + } + }, + { + "text": "Angela Chitkara is an amazing teacher. She isnt biased and makes you work for your grades (as its supposed to be). Shes caring yet firm and quite approachable. She goes an extra mile to care about your career or profession after graduation so you can call her an opportunity bank That is, always sharing career opportunities with students.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60e9a" + } + }, + { + "text": "For market research, she gives you the chance to revise each assignment. Her feedback may not always be clear at first or may sound blunt, but you can always ask her to clarify. The textbook isnt needed but it helped me out, but follow any guideline she says in class and you should also do well. Overall, good class.", + "pos": 0.124, + "neu": 0.851, + "neg": 0.025, + "_id": { + "$oid": "6711d7a7cd60fca157e60e9b" + } + }, + { + "text": "Professor Chitkara is very knowledgeable about PR and marketing strategies. She makes sure her students understand what is being taught and how it is used in the real world. She gives us campaigns to work on which will prepare us for actual campaigns in the future. I learned a lot from her class. Plus she allows you to make up work.", + "pos": 0.037, + "neu": 0.963, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60e9c" + } + }, + { + "text": "What makes Angela a valuable adviser is her inside knowledge of the Public Relations industry. She is widely connected and provided us with the most amazing guest speakers who performed in a wide range of roles at different companies. In graduate school this is so important to see because you are still navigating what you will specialize in.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60e9d" + } + }, + { + "text": "If youre looking Someone who will challenge you and help you grow, shes the one. She wants to see you succeed. She will go above and beyond for you, she will defend you and support you in anyway she can. We pay for tuition to learn, and she assures that we learn all of our material. I took her for Market Research first, then Ad/PR workshop.", + "pos": 0.166, + "neu": 0.815, + "neg": 0.019, + "_id": { + "$oid": "6711d7a7cd60fca157e60e9e" + } + }, + { + "text": "As a PR student she is excellent and really takes you inside the ins and outs of PR and the difference of Advertising. She is more appreciated by people of the field and is a challenge for those who don't know the field and the misconceptions of the role of PR in industry. She challenges students and demands students can articulate their position.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60e9f" + } + }, + { + "text": "Think Meryl Streep in \"The Devil Wears Prada\". She's tough but she knows what she's doing. I think she almost made someone cry in class once. Make no mistake, you will learn from her, but don't expect a nice, funny and understandable professor. Would I take her again? Not really sure...", + "pos": 0.1, + "neu": 0.689, + "neg": 0.211, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a7cd60fca157e60ea2" + }, + "professor_name": "Margaret Winslow", + "rating": 4.5, + "department": "Geology department", + "comments": [ + { + "text": "You really needs to know your material ahead because she expect you to know it already and this is a graduate course. For the undergraduate, she a little easy on them. But for graduate, she expected more. Not too bad good professor for hard working student.", + "pos": 0.113, + "neu": 0.797, + "neg": 0.089, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea3" + } + }, + { + "text": "This professor is wonderful and very helpful", + "pos": 0.576, + "neu": 0.424, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea4" + } + }, + { + "text": "Few professors can be so clear, and helpful as Winslow. Dont hesitate for a second to take her class!", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea5" + } + }, + { + "text": "she's such a sweetheart and will go back and explain anything thats not understood, she made her class fun and her labs were hands on so you understood confusing mapping concepts and such. DEF take her for any class!", + "pos": 0.171, + "neu": 0.782, + "neg": 0.047, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea6" + } + }, + { + "text": "She gives three homework assignments, 2 in class exams, a take-home exam and a final project. Just make sure you do all of them and hand them in on time. Her lectures are boring but at least you will learn something. Cool professor, easy grader. Recommended for CE majors who are taking this class! Got an A from her!", + "pos": 0.196, + "neu": 0.78, + "neg": 0.024, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea7" + } + }, + { + "text": "shes great if u want an a take her because she gives you alot of chances to improve... lots of extra credit", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea8" + } + }, + { + "text": "Winslow wants you to succeed. This is an easy class if you go over your notes. However, if you don't go over the material daily it becomes tedious. The rock labs are a bit difficult. Still, I recommend the class for anyone willing to put in the time.", + "pos": 0.156, + "neu": 0.799, + "neg": 0.045, + "_id": { + "$oid": "6711d7a7cd60fca157e60ea9" + } + }, + { + "text": "This is a good class to take. She is very nice and tries hard to make the topic fun and interesting - lots of good examples and personal experience. Her tests are kind of easy even though she says they are not.", + "pos": 0.325, + "neu": 0.649, + "neg": 0.026, + "_id": { + "$oid": "6711d7a7cd60fca157e60eaa" + } + }, + { + "text": "I love her. She is so great. I found the topic very interesting i dunno how people can find it hard. Its not that the class is easy, she makes it good and she teaches very well. Be very glad that she teaches it becuase the class can suck big time. I took her for EAS319 and she is awesome. Easy to get an A, do a little bit of work and pay attention.", + "pos": 0.314, + "neu": 0.629, + "neg": 0.058, + "_id": { + "$oid": "6711d7a7cd60fca157e60eab" + } + }, + { + "text": "get the syllabus and come to most every class. Take notes and ask questions. Very helpful to students. Open door policy. Quizzes from lectures, not too much from readings. Be in class or else get someone's complete notes. Not instant A. Class average 76. Lots of chances to improve and get extra credit.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60eac" + } + }, + { + "text": "Go to the first class so you would know where the class is. Stay home at rest for the rest of the term. Go to class the day before the exams and get the review sheet. Find the answer to those (Get them from someone else). Take the exams. Repeat till final. -> A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ead" + } + }, + { + "text": "Very easy classes, she is sometimes unclear but will quickly clear things up. Easy A with minimal stress.Good classes to raise your GPA", + "pos": 0.313, + "neu": 0.637, + "neg": 0.05, + "_id": { + "$oid": "6711d7a7cd60fca157e60eae" + } + }, + { + "text": "She is the sweetest professor, cares about students learnging the information and is a very easy person to get a A in her class. SO easy", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60eaf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a7cd60fca157e60eb1" + }, + "professor_name": "Matt Lau", + "rating": 3.6, + "department": "English department", + "comments": [ + { + "text": "My experience in his class was not bad, although I agree with most of the comments below. He isn't too clear about what he wants out of the writing. But he is approachable and gives easy work. The paper topics were easy, and he never really \"checked\" the readings.", + "pos": 0.2, + "neu": 0.772, + "neg": 0.028, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb2" + } + }, + { + "text": "Professor Lau is the worst professor I have had yet. His classes are boring and he always goes off topic. In a english class, he would continously go on about Freud. I felt as if my time in his class was useless...I didn't learn anything. His lesson plan should be more focused on what he is supposed to be teaching.", + "pos": 0.044, + "neu": 0.86, + "neg": 0.097, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb3" + } + }, + { + "text": "This class was very boring and dragged by. Prof Lau is very smart but often goes off topic. He tries to be funny but it doesn't always work. If you want to be engaged in the class, I wouldn't suggest him...other then that, he's ok. Nice guy.", + "pos": 0.253, + "neu": 0.695, + "neg": 0.053, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb4" + } + }, + { + "text": "He's funny and pretty cool. Knows his stuff and makes the class interesting.Not too much work but not too little. good stuff", + "pos": 0.215, + "neu": 0.68, + "neg": 0.105, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb5" + } + }, + { + "text": "\"Is he STILL talking?\" I ask my friend after 45 minutes of his endless babbling about NOTHING. He talks about a lot of NADA. BORING BORING BORING If you need a good nap in the middle of the day, take this class. It's the WORST.", + "pos": 0.103, + "neu": 0.661, + "neg": 0.236, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb6" + } + }, + { + "text": "Matt Lau is a terrific teacher. He is very passionate about literature. You can't help but get caught up in his enthusiasm. He expresses himself beautifully. There are some teachers you always remember and he is one of them.", + "pos": 0.272, + "neu": 0.695, + "neg": 0.033, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb7" + } + }, + { + "text": "Knows his stuff, a nice guy. Can get rather off the class's topic at time, but still seemed clear and helpful enough to me.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb8" + } + }, + { + "text": "Professor lau is a very articulate man who know what he is talking about. His assignments are meant to give a good introduction to college level writing; I think Lau does much more than that, assigning essays that help develop the writer's style and creativity. Never again will my ethos be recorded on paper as it was during his class.", + "pos": 0.126, + "neu": 0.874, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60eb9" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7a7cd60fca157e60eba" + } + }, + { + "text": "boring", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ebb" + } + }, + { + "text": "he uis funny and helpful he is intresting and never a dull moment", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ebc" + } + }, + { + "text": "Mr. Lau is great. I enjoyed his class - he uses films and pop culture to relate to his students and he expects good work. He is very helpful and his essay assignments are interesting and challenging.", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ebd" + } + }, + { + "text": "He is very clear and helpful. In my opinion, he is a great professor who makes the students think in the college level. I learned something new in that class everyday. By the end of the semester, the students are thought to appreciate the meaning of the material studied in class.", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d7a7cd60fca157e60ebe" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a8cd60fca157e60ec0" + }, + "professor_name": "Edward Wall", + "rating": 4.5, + "department": "Education department", + "comments": [ + { + "text": "A thoughtful and kind professor.", + "pos": 0.667, + "neu": 0.333, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec1" + } + }, + { + "text": "Absolutely the best and nicest professor ever. He knows extremely alot about education since he studied education for years, he does get boring and talk the entire class, but he is respectful, you can talk about anything, easy homeworks, you can write however you feel and you will get 100 on them, so caring about his students, take him, easy A,", + "pos": 0.285, + "neu": 0.694, + "neg": 0.021, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec2" + } + }, + { + "text": "This class was honestly one of the best classes i have taken so far. It has opened my eyes even more as a future educator. YES, there is work to be done but he gives you time to re-due assignments until u r satisified with your grade. He truely cares about education. Just do the work and participate. Great Prof. and got an A-", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec3" + } + }, + { + "text": "Deffinately the best professor CCNY has. Sincere, kind, he goes on and on about education which can get really boring but he is a kind hearted person. He will give you reading annotations which you can talk and answer the questions anyway you like. He allows you to speak freely in your homeworks and in class. Easy A", + "pos": 0.3, + "neu": 0.676, + "neg": 0.024, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec4" + } + }, + { + "text": "Nice professor but can get very boring sometimes. Reading annotations every week. Two essays and a final paper. Class takes up a lot of time. Participate and do all your work and you will do well. Received an A.", + "pos": 0.104, + "neu": 0.819, + "neg": 0.077, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec5" + } + }, + { + "text": "OMG! He is such a nice and sincere person! One of my favorite professors so far!", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec6" + } + }, + { + "text": "Great teacher - knows a lot. Appreciates honesty and effort. Jot EVERYTHHING in the math Jopurnal.", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec7" + } + }, + { + "text": "Learned a lot!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec8" + } + }, + { + "text": "Professor Wall is an excellent teacher. He has a lot of experience and handles the material well. Since it was a class pertaining to the \"Art of Teaching,\" we watched tons of cool movies, and read many excerpts from books of famous philosophers. He is very organized and is an understanding teacher. If you can, please take-FIQWS Art of Teaching.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ec9" + } + }, + { + "text": "Very good professor. I you like the field you will enjoy his class and learn a lot.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60eca" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7a8cd60fca157e60ecb" + } + }, + { + "text": "He is one the most organized professor I have had since coming to this school. When I grow up I want to be like that. He is very helpful and loves what he does. His work is a bit lenghty but manageable. It was a blessing to take his class.", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ecc" + } + }, + { + "text": "HE IS AN EXCELLENT PERSON. HE TREATS EVERYONE WITH RESPECT AND HE IS VERY HELPFUL. HE IS VERY ORGANIZED WITH HIS SYLLABUS AND THAT HELPS THE STUDENTS TO PACE THEIR WORK ACCORDING TO THEIR SCHEDULE. I HAVE LEARNED MANY INTERESTING THINGS AND SINCE I AM VERY SATISFIED,I REGISTERED FOR 6100C WITH HIM.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ecd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a8cd60fca157e60ecf" + }, + "professor_name": "Richard Boles", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "Great professor... do the homeworks and read the passages and you'll be guaranteed an A. He gives a short writing assignment at the beginning of each class so make sure to do the readings.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed0" + } + }, + { + "text": "I took Boles last semester (i forgot to rate him then) He is a great prof. There is a lot of reading but it is super interesting! He gives pop quizzes on random days at the very beginning of class to ensure attendance. He gave us 2 papers, a take home test and a final. He is very efficient and helpful. I recommend 110%!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed1" + } + }, + { + "text": "He is very knowledgable on the subject and a very fair professor. He's awesome although you will be reading ALOT!", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed2" + } + }, + { + "text": "Prof. Boles is excellent. He has reading that you have to complete before every class because he gives in class writing assignments. He assigns 2 papers, 3 tests whole semester. He is very passionate and will help you every step of the way! If given the chance I would take another one of his classes!!!!!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed3" + } + }, + { + "text": "wonderful prof. I took 2 classes with him. one of the greatest professor at ccny. a lot of reading but he is a fair guy.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed4" + } + }, + { + "text": "I've taken two classes with professor Boles, and he is one of the best at CCNY! While he presents material clearly, he is also respectful, professional, and approachable. The reading may seem daunting, but it is interesting. Very good professor--I would definitely take him again!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed5" + } + }, + { + "text": "This is the second class I've taken with Professor Boles at City College. He is an amazing teacher, and he is just what I look for in a professor, especially in History. He is clear, helpful, very nice, and still maintains high standards for his grading. If you show up and take notes on his lectures, you will definitely pass. also, lot of reading!!", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed6" + } + }, + { + "text": "HE IS MY FAVORITE PROFESSOR. You will read A LOT but he is dedicated, knowledgeable, and kind. A MUST TAKE", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed7" + } + }, + { + "text": "I took a winter class with him and it was brutal. BUT you can tell he is a professor that actually cares about getting his job done AND right. He is a very good person. He gave quite the readings but he is fair. I would take more classes with him. But im not a history major. TAKE HIM IF YOU ARE DEBATING ON IT", + "pos": 0.15, + "neu": 0.816, + "neg": 0.034, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed8" + } + }, + { + "text": "Pretty good professor. I learned a lot more than i expected. There is required reading every class meeting and makes us do a short (4+ sentences) q&a writing. Not hard. Lectures are informative and interesting! I used a digital recorder (recommended) to make sure I didn't miss anything cause he doesn't layout every single point on his lect. slides.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60ed9" + } + }, + { + "text": "Very fair professor", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60eda" + } + }, + { + "text": "Great professor and very helpful when it comes to writing essays. A lot of readings but they are interesting. Take the class, you'll learn and enjoy it.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60edb" + } + }, + { + "text": "He is the best professor. He helps a lot and class discussions are helpful to write class assignment papers. Take home midterm and final exam. Please take him for US history elective class.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d7a8cd60fca157e60edc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a9cd60fca157e60ede" + }, + "professor_name": "Avi Tropper", + "rating": 4.8, + "department": "Education department", + "comments": [ + { + "text": "The professor runs a rigorous course which thoroughly prepares you to become a NYC public school teacher. He is very helpful, knowledgeable, and makes sure that you have the practical know-how to succeed in the teaching profession.", + "pos": 0.197, + "neu": 0.755, + "neg": 0.048, + "_id": { + "$oid": "6711d7a9cd60fca157e60edf" + } + }, + { + "text": "great class rigorous to an extreme. have never taken another course like it in grad school. if you need help the prof is always available, but you better have done all the readings before you ask questions.", + "pos": 0.23, + "neu": 0.735, + "neg": 0.036, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee0" + } + }, + { + "text": "This class was a beacon of light in an otherwise horrendous program. This was the only course I took during my 2 years in the program that was on a graduate level!!", + "pos": 0.0, + "neu": 0.876, + "neg": 0.124, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee1" + } + }, + { + "text": "If you get an A in this class you know you are ready to be a NYC public school teacher. The professor prepares you for the literacy issues you will confront in the classroom. Grading is tough but those who put in the work all got the grades we deserved. Dont not do the readings. Unlike in other classes in the CCNY program you wont get away with it.", + "pos": 0.025, + "neu": 0.938, + "neg": 0.037, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee2" + } + }, + { + "text": "Loads of practical literacy tools were shared and explained by the instructor such as QAR, reciprocal teaching, sentence combining for grammar, graphic organizers, vocabulary activities, etc. etc. I was able to use many of them in my class the next day. He is also a vice-principal and does not tolerate unprofessional behavior. Tough love.", + "pos": 0.174, + "neu": 0.802, + "neg": 0.025, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee3" + } + }, + { + "text": "Awesome mix of research, theory and practical tools. Great readings. Excellent resources shared by the prof.", + "pos": 0.544, + "neu": 0.456, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee4" + } + }, + { + "text": "Gave a lot of reading, all of it of high quality. Shared many practical resources and anecdotes from real school situations. Did not play with the lack of professionalism by many students in the School of Education at City College who did not want to have to read or complete assignments. This is greatly appreciated by the majority of the class.", + "pos": 0.089, + "neu": 0.829, + "neg": 0.082, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee5" + } + }, + { + "text": "At the end of the first class I had with Professor Avi, I flying arm barred him. He was so impressed he gave me an A+ for the rest of the class.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee6" + } + }, + { + "text": "This professor is arrogant but knows his****", + "pos": 0.0, + "neu": 0.741, + "neg": 0.259, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee7" + } + }, + { + "text": "This professor is condescending and spends way too much time cutting down the teachers at the high school where he is AP. He also fills class time with group work that is uninspired. He is unable to adjust his lesson plans when things do not work well. He did not allow us to do formal course evaluations, as all CCNY profs do.", + "pos": 0.0, + "neu": 0.922, + "neg": 0.078, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee8" + } + }, + { + "text": "The most demanding professor at City College's special education department. Assigns a lot of work, but assignments are meaningful and focus on the content area you teach. People who complain compare him to other professors who give As for showing up to class and pretending you do the reading. If you are serious about teaching, take his class.", + "pos": 0.099, + "neu": 0.804, + "neg": 0.097, + "_id": { + "$oid": "6711d7a9cd60fca157e60ee9" + } + }, + { + "text": "Most demanding and rigorous professor in the department. Forces special education teachers to learn content so we aren't just classroom helpers. Certainly not for everybody, but the one you'll learn the most from if you are willing to do the reading, complete the assignments and attend every class. A very hard grader. Not for all tastes.", + "pos": 0.059, + "neu": 0.83, + "neg": 0.112, + "_id": { + "$oid": "6711d7a9cd60fca157e60eea" + } + }, + { + "text": "One of the few that care about helping people become great teachers. Those who com[plain about him are looking for an easy \"A\", and are a travesty to the profession. They complained when he actually had the nerve to make us come to class, and was so rude he checked to make sure we did the reading with simple quizzes.", + "pos": 0.191, + "neu": 0.676, + "neg": 0.133, + "_id": { + "$oid": "6711d7a9cd60fca157e60eeb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a9cd60fca157e60eed" + }, + "professor_name": "Alexis Dianda", + "rating": 4.8, + "department": "Philosophy department", + "comments": [ + { + "text": "I took her at Fordham. She is a QUEEN. She is so funny and goes over all the readings so I didn't read them all year. She has some one the clearest grading criteria I've ever seen. She is so funny and I hate philosophy and she made it bearable. Also she has the most luscious locks.", + "pos": 0.115, + "neu": 0.828, + "neg": 0.057, + "_id": { + "$oid": "6711d7a9cd60fca157e60eee" + } + }, + { + "text": "I took her class at Fordham University and honestly, she was just spectacular. One of the best professors I've had. She was kind and extremely informative. She obviously was passionate about what she was talking about and extremely intelligent. Make sure you go to class. It's never boring and plus it'll be perfect fodder for your papers/exams.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60eef" + } + }, + { + "text": "Definitely ranks at the top of the list as a professor in any of the obscure topics (i.e. Philosophy, Religion, Literature). She has a great ability to explain very dense text and ideas so that her students grasp the fundamentals. You must do your readings and go to her lectures - no way you can learn this on your own. Also very engaging.", + "pos": 0.187, + "neu": 0.783, + "neg": 0.03, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef0" + } + }, + { + "text": "She teaches at Fordham and she's a pretty good professor. Though you won't get notes to copy down, be sure to pay attention to the readings and pay attention during discussion during class. Also fun fact - she looks like Lorde", + "pos": 0.278, + "neu": 0.667, + "neg": 0.055, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef1" + } + }, + { + "text": "Prof. Dianda is very nice and helpful to her students. She thoroughly explains all the reading and concepts and grades very fairly on the papers. She's picky on attendance and reading is mandatory (pop-quizzes on the reading are 10% of your grade), but overall she made a challenging topic pretty enjoyable. All reading on blackboard, no textbook.", + "pos": 0.224, + "neu": 0.734, + "neg": 0.041, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef2" + } + }, + { + "text": "She is a very nice professor and even though I must have annoyed the heck out of her with questions she remained calm and collected. Very easy grader.", + "pos": 0.244, + "neu": 0.682, + "neg": 0.074, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef3" + } + }, + { + "text": "She's amazing! You must read and write her 3 mini papers and do another paper that is 5-6 pgs. I love to write so it's not a problem. She's very thorough and clear. If you need help in understanding something, she is more than happy to give it. A GREAT professor and she's very funny!", + "pos": 0.377, + "neu": 0.623, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef4" + } + }, + { + "text": "She gives a decent amount of reading but goes over everything. She's really nice when you don't understand something.", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef5" + } + }, + { + "text": "One of the best professors! You have to do the reading and there's a lot of writing but she explains stuff well and the lectures are good.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef6" + } + }, + { + "text": "1. Keep up with the reading ,Reading is hard but if u go to class u will understand it.2 writing writing, if ur not a great writer go to the writing center,Her final is all writing.Because I did not take her class serious got a B- ;because of the writing.", + "pos": 0.0, + "neu": 0.869, + "neg": 0.131, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef7" + } + }, + { + "text": "The best professor I have ever taken. Funny, awesome, and really down to earth. Talking to her after class, i found she is really a chill person. Easy A+ since she dropped one of her short papers. Take her!", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef8" + } + }, + { + "text": "Prof. Dianda is really good at what she does, especially because she likes doing it. Philosophy can be one of the hardest things to get people to understand, yet she pulls it off surprisingly easily. One of the few classes I actually enjoy and look forward to going to. Also, the fact that she's incredibly hot kinda helps.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60ef9" + } + }, + { + "text": "Alexis Is Awesome! She takes time to make sure you understand the material, uses select literature instead of the textbook which really helps in understanding the fundamentals. She is funny, spontaneous and overall a great person. I highly reccommend this course with Prof. Dianda if you want an A as well as a fun philisophical experience!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60efa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7a9cd60fca157e60efc" + }, + "professor_name": "Anton Masterovoy", + "rating": 4.9, + "department": "History department", + "comments": [ + { + "text": "He is a great professor: gives a lot on his lectures so you have to read a textbook only for small test he gives during the term. He helps with your papers too so if you not lazy, yo will get a good great with ease!", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60efd" + } + }, + { + "text": "Very knowledgeable and engaging. Helps making what might be a boring subject into fun and energetic lessons. Most people take him for his reputation as an easy grader. However, it turns out that most student retain a lot of the material. I guess he knows how to attract the bees.", + "pos": 0.271, + "neu": 0.692, + "neg": 0.037, + "_id": { + "$oid": "6711d7a9cd60fca157e60efe" + } + }, + { + "text": "THIS IS THE TRUE DEFFINATION OF WHAT THE IDEAL PROFESSOR SHOULD BE LIKE. MAKE A STATUE OF THIS GUY AND PUT IT INFRONT OF NAC SO OTHER PROFESSORS CAN SEE THE EXAMPLE OF A TRUE PROFESSOR! You have to read the book to answer his quizzes and the final is given to you a week before, so you have time to prepare since this class contains alot of info.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60eff" + } + }, + { + "text": "One of the best professor i have taken in my entire life. You learn in his class plus get a good grade. What more can you ask from a professor.", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f00" + } + }, + { + "text": "Great Professor who takes great care in his student's learning. He answers every question and is self-defacing to break the ice and make students more comfortable in participating. It's easy work, if you just read the assignments and listen to his lectures. Highly recommended.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f01" + } + }, + { + "text": "Easy class. Great professor. Big on plagiarism. Quizzes consist of 2-4 easy question from the weeks topic. 3 essays from books read in class.", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f02" + } + }, + { + "text": "Professor Masterovoy.... You are amazing, Sir. He's the EASIEST professor by far! He apologizes for everything and he's such a sweetheart. I would definitely take more classes with him. Easy A+ with this professor! Hats off!", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f03" + } + }, + { + "text": "Very nice very nice professor. always apologizes for everything. he is clear on his assignments and explains everything clearly. there are 6 quizzes and 7-8 in classs assignments not hard at all. best wciv professor.", + "pos": 0.414, + "neu": 0.586, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f04" + } + }, + { + "text": "This professor is amazing! I recommend him to nay one!", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f05" + } + }, + { + "text": "Highly praise Professor Masterovoy. Very amiable, approachable and laid back. Provides encouraging comments. Taken several of his courses, such as Soviet History & Collapse of Communism (he was replacing Prof Greble during her leave / absence). Lectures are interesting, always raises interesting questions. On concluding day, brings Russian candy!", + "pos": 0.215, + "neu": 0.712, + "neg": 0.073, + "_id": { + "$oid": "6711d7a9cd60fca157e60f06" + } + }, + { + "text": "He is a great professor. He makes class interesting and fun. He is also an easy grader and doesn't make papers hard. I would definitely recommend this teacher for history related classes.", + "pos": 0.438, + "neu": 0.562, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f07" + } + }, + { + "text": "BEST CLASS EVER. He makes it so easy. Barely any work. He is really nice and lenient. Wish he taught more classes. TAKE HIM!!!!", + "pos": 0.486, + "neu": 0.514, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f08" + } + }, + { + "text": "I took his \"Modern Imperialism\" class and liked it a lot! He is interesting, funny and uses a lot of excellent sources and material. He is also an expert on the Soviet Union which is cool. My favorite aspect of the class was his use of old textbooks as a way to understand what a historical perspective is in the first place. Very good Professor!", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d7a9cd60fca157e60f09" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7aacd60fca157e60f0b" + }, + "professor_name": "Waqar Khalid", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "It was a pleasure having him as lab teacher. Very clear and helpful, learned a lot.", + "pos": 0.426, + "neu": 0.574, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f0c" + } + }, + { + "text": "Can be scattered at times. I understand that he Is a grad student so I won't give him a hard time. He's very knowledgable - what he isn't sure of hE is willing to find out for students. clearly present course expectations. Reviews the before handing out. VERY NICE AND VERY PATIENT. Easy on the eyes as well.", + "pos": 0.193, + "neu": 0.758, + "neg": 0.049, + "_id": { + "$oid": "6711d7aacd60fca157e60f0d" + } + }, + { + "text": "Very good professor.", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f0e" + } + }, + { + "text": "He is the kindest person I have ever met- truly an amazing teacher. He wants his students to do well and makes little corny but funny jokes while teaching. Take him if you ever have the chance!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f0f" + } + }, + { + "text": "Wants to see students succeed. Keep up with the work and you are sure to get a good grade.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f10" + } + }, + { + "text": "He's a great TA! My favorite to be exact, and he's HOT! Very helpful with the course material and is clear on the classes expectations.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f11" + } + }, + { + "text": "He is a great professor, assign short papers, reviews quizzes before handing them out and gives you extra credits if you need it.", + "pos": 0.239, + "neu": 0.761, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f12" + } + }, + { + "text": "His class and quizzes are very easy as long as you listen and pay attention in class. He's a cool guy i guess because he can relate to his students since he's a grad student. I enjoyed his bio lab class very much. Great TA!", + "pos": 0.245, + "neu": 0.729, + "neg": 0.026, + "_id": { + "$oid": "6711d7aacd60fca157e60f13" + } + }, + { + "text": "He was the TA for my Bio 100 class. He was a little scattered in teaching since he never knew what had been covered in the lecture, but he was clear in explaining what the professor wanted from us in lab reports and what we were expected to know for exams. Overall, he was pretty laid back about everything, friendly and open to answer any questions.", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f14" + } + }, + { + "text": "Great professor and also pleasant to look at which makes him even more interesting!", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f15" + } + }, + { + "text": "Thee best TA ive ever had!", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f16" + } + }, + { + "text": "Great TA. He has a great sense of humor and never turns down a question. Even if he is not sure, he makes sure to find out for that student. He connects easily with his students, making the class enjoyable and entertaining. I hope to have the pleasure to learn under him again!", + "pos": 0.381, + "neu": 0.592, + "neg": 0.027, + "_id": { + "$oid": "6711d7aacd60fca157e60f17" + } + }, + { + "text": "Amazing!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f18" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7aacd60fca157e60f1a" + }, + "professor_name": "Melissa Watson", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "Missy is one of the best English professors! She is so incredibly funny and laid back which makes you feel relaxed and comfortable. She breaks down her assignments very clearly. She is very passionate and it's evident in her willingness to make this class enjoyable. Her feedback is phenomenal so always revise! She's great at replying to emails.", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f1b" + } + }, + { + "text": "She is one of the best professor. Don't be afraid to take this class if English is your second language. it's not a really hard course. And Professor will take really good care for ever students. Trust me! Take her class if you can, you won't regret!", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f1c" + } + }, + { + "text": "Super nice teacher and super caring. She is very lenient on late assignments and gives ample time for assignments. She's genuinely really nice and the class is not hard at all as long as you do assignments and read a few of the chapters.", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f1d" + } + }, + { + "text": "Shes one of the most amazing professors ever! She is so passionate about seeing her students do well. She goes above and beyond to help her students.", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f1e" + } + }, + { + "text": "I would say she is one of the best professors in CCNY. She is passionate about education and she knows what she is teaching. Her teaching style is hilarious and humorous. Yes, she does have a lot of homework and assignments, almost every class, there is a homework ( or maybe 2). Nevertheless, she does care for her students, and work grades.", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f1f" + } + }, + { + "text": "I have mix feelings about her. Her class is hard and is a lot if work, but she really cares about us doing better. If you taking her just be prepare for a lot of work, because there's homework for every class. Oh if you are not a fan of peer reviews, get ready they are coming!", + "pos": 0.175, + "neu": 0.771, + "neg": 0.054, + "_id": { + "$oid": "6711d7aacd60fca157e60f20" + } + }, + { + "text": "Good professor all-in-all; she cares about what she is teaching, is fun to listen to, and is open-minded towards everyone's opinion. Her work-load isn't balanced, however, and there are too many assignments (most of which are unnecessary) due in too short of a time span. At least her grading policy is layed-out and clear-cut.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f21" + } + }, + { + "text": "I'm quite disspointed I didn't get my final graded yet , but got a grade in the class. *Sigh* Wouldn't take again.", + "pos": 0.052, + "neu": 0.948, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f22" + } + }, + { + "text": "This class has changed my outlook on writing classes. It was a lot of work , but this professor deserves so much credit. She has done an amazing job in shaping us into better writers and students . If you have never worked for something before , get ready to work . It is very rewarding though !", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f23" + } + }, + { + "text": "I am so glad I took this class. She is funny, she is helpful, and she really takes her time to make sure you understand. I cannot stress how much her humor makes her and her class more likable. Anything unclear will be explained, she's not very stressful. There is work to do, some group/pair work, but overall I would take her class allover again.", + "pos": 0.183, + "neu": 0.795, + "neg": 0.023, + "_id": { + "$oid": "6711d7aacd60fca157e60f24" + } + }, + { + "text": "There were four different major assignments also divided into 4 phrases. A lot of writing but the course was very helpful for those that are in need of writing skills. The class was fun because there are group review sections and she gives one on one meeting during the midterm regarding individual work status.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f25" + } + }, + { + "text": "She is a very helpful and very clear professor. She gave tons of homework, but you end up learning so much. You have to work for your grade. I strongly recommend her.", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f26" + } + }, + { + "text": "Comes off strong in the beginning, but she is a very nice person. Her syllabus is pretty hefty but very clear in explanation. She breaks down each major assignment by phases. Readings are very interesting. Homework must be done by a certain time, but it helps to build the major assignment at the end of each phase.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f27" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7aacd60fca157e60f29" + }, + "professor_name": "Alexander Couzis", + "rating": 4.5, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "literally everyone says hes good because he allowed them to use CHEGG on the exams. this is the first semester he didnt and nearly everyone failed because hes 100% inaccessible outside of class. even tho hes the only teacher, consistently study from the textbook.", + "pos": 0.06, + "neu": 0.871, + "neg": 0.068, + "_id": { + "$oid": "6711d7aacd60fca157e60f2a" + } + }, + { + "text": "One of the best professors that I ever had. He is just AWESOME!! At first i felt a little lost in class, but that's just me coz i never prepared for it until I started doing the HWs and midterm that's when you'll really start to understand everything.", + "pos": 0.114, + "neu": 0.821, + "neg": 0.065, + "_id": { + "$oid": "6711d7aacd60fca157e60f2b" + } + }, + { + "text": "Am academically in love with this Professor. He knows what he teaches.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f2c" + } + }, + { + "text": "Am in love with this Prof. academically. He is my best Prof CCNY, Chem dept. He knows what he teaches.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f2d" + } + }, + { + "text": "Great Professor. Really relate the class with the real business. Give information and useful websites. Flexible. If you have questions, he's very helpful. He's willing to help you understand the subject.", + "pos": 0.361, + "neu": 0.639, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f2e" + } + }, + { + "text": "He's an awesome professor. He's very engaged in his teaching and provides interesting outlooks on the subject from an industrial stand point to compare it to theory. This is helpful to students in relating the subject to the realm of the world outside of school. He's also a techy and loves Apple Inc. It's not hard to get an A in his class.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f2f" + } + }, + { + "text": "well,he's definitely one of the best professors in chemy department.Very smart.", + "pos": 0.545, + "neu": 0.455, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f30" + } + }, + { + "text": "As smart as he was, we did not cover all of the material that we were supposed to for thermo II. I felt robbed, the class became more about energy and mass balances, which is ChE 228, oh well, it was good to take ChE 228 over again.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f31" + } + }, + { + "text": "Knows the stuff well, and explains things very well. However, he is kind of disorganized and never returns the exams. His TA was pretty good: far better than the other TA's of the ChE dept.", + "pos": 0.3, + "neu": 0.645, + "neg": 0.055, + "_id": { + "$oid": "6711d7aacd60fca157e60f32" + } + }, + { + "text": "The best professor in ChemE.I'd love to have him for all the other classes.l", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f33" + } + }, + { + "text": "Brilliant proffessor!!!The very best!", + "pos": 0.825, + "neu": 0.175, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f34" + } + }, + { + "text": "Couzis...is the best proffessor that i have ever encountered in city college.He's exceptionally smart...and teaches very... very ..well....The best chemical engineering professor..in city college...Life would be great if he taught all the other chemical engineering classes.He's great.", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f35" + } + }, + { + "text": "EXCELLENT PROFESSOR! I wish he taught all ChE classes... Helpful, good grading, enthusiastic!!!", + "pos": 0.683, + "neu": 0.317, + "neg": 0.0, + "_id": { + "$oid": "6711d7aacd60fca157e60f36" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7abcd60fca157e60f38" + }, + "professor_name": "Mary Carpenter", + "rating": 4.2, + "department": "Education department", + "comments": [ + { + "text": "Four projects, however, were straight-forward and simple. She can be disorganized at times, and we did not know about our grades until they were assigned at the end. Also, she does not reply to emails. To get an A: do all the assignments, show up to every class, and participate.", + "pos": 0.0, + "neu": 0.957, + "neg": 0.043, + "_id": { + "$oid": "6711d7abcd60fca157e60f39" + } + }, + { + "text": "Overall I'd say she is a solid choice and handled the switch to online pretty well, at least with Zoom. Many, many handouts to download on BB, it can get confusing & she sometimes mixed them up w/another class. We never received grades on any project, which was annoying. She rarely answers emails. Great lectures tho, and she's very encouraging.", + "pos": 0.148, + "neu": 0.741, + "neg": 0.11, + "_id": { + "$oid": "6711d7abcd60fca157e60f3a" + } + }, + { + "text": "Taking her right now. She is disorganized. Dont know how were graded because she hasn't given a syllabus. She is boring. Doesn't reply to email. Was supposed to have a textbook dont know what happen with that. I regret taking her.", + "pos": 0.0, + "neu": 0.839, + "neg": 0.161, + "_id": { + "$oid": "6711d7abcd60fca157e60f3b" + } + }, + { + "text": "Very caring professor! Alot of reading and interactive assignments but very useful for your career path! She cares about quality not quantity. She is excellent!!", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f3c" + } + }, + { + "text": "Mary Carpenter is a very responsible professor. You will learn a lot of useful information about teaching in her class.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f3d" + } + }, + { + "text": "Very nice professor. Talks a lot. Gives out A LOT of handouts which got confusing towards the end of the semester. Lots of busy work. Provided assignment checklists on what needed to be done, but still sometimes seem unclear. Was not quick to respond through email. Agree with what was mentioned before, grades based on quality not quantity.", + "pos": 0.084, + "neu": 0.854, + "neg": 0.062, + "_id": { + "$oid": "6711d7abcd60fca157e60f3e" + } + }, + { + "text": "I'm taking my third education class with her. She's not so demanding and very generous with grades. She's very nice but she likes to talk a lot. Just do the work and submit everything that she asks for and you'll get an A.", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f3f" + } + }, + { + "text": "She was very nice and easy. I loved taking her class and I'm taking Grammar & it's Pedagogy with her this semester. Highly recommended!!!", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f40" + } + }, + { + "text": "Great professor. Very excited and enthusiastic about what she is teaching. She's a big talker, but loves to hear others talk to. Simple assignments. Final group project instead of a research paper. She doesn't look for the amount that you write, but what you're saying. Definitely take her class!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f41" + } + }, + { + "text": "This class had a lot of usefull information to give. She should give students some class time to work together on the many group projects she requires.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f42" + } + }, + { + "text": "She's a nice person and responsive, but would often flood us with paper handouts. Also, she could set up a more 'active classroom,' especially for a night class when the full-time teachers are already pretty tired. But I did learn alot about ELL learning and theory, I will admit. Needed more active, open discussions on the reading, in my opinion.", + "pos": 0.242, + "neu": 0.707, + "neg": 0.051, + "_id": { + "$oid": "6711d7abcd60fca157e60f43" + } + }, + { + "text": "Could create a better environment for free speaking in class. Often felt like she wasn't open to our comments.", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f44" + } + }, + { + "text": "Great prof, great course, assignments are kind of easy but better then that are \"fun\" and applicable, definately solid prof !!", + "pos": 0.541, + "neu": 0.459, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f45" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7abcd60fca157e60f47" + }, + "professor_name": "Naren Weiss", + "rating": 5, + "department": "Speech department", + "comments": [ + { + "text": "Probably the most respected professors I've ever worked with, the man really does practice what he preaches. If you ever take Playwriting, New Play Collaborations or any other theater class take it!!! He's amazing with feedback and pushing you in the right direction as a writer and actor. Just know attendance is important so don't be late!!!", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f48" + } + }, + { + "text": "He creates a great classroom atmosphere that makes everyone feel comfortable. Just show up on time and speak in class every day. He gave everyone an A+.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f49" + } + }, + { + "text": "So glad to see all 5/5 ratings for Professor Weiss because its what he deserves. One of the best professors I ever had. It was a speech class, so we really had to put ourselves out there and you know, speak... but he really eased us into it and made us feel comfortable with our classmates before throwing us into our first speech assignment.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f4a" + } + }, + { + "text": "Mr. Weiss is very educated within the theater world and knows how to make you think and write like a playwright. The class was a lot of grasping and understanding concepts and then putting that understanding into work/words. The biggest assignment was a min/max of 25 page one-act play. A really good class to challenge your own creativity.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f4b" + } + }, + { + "text": "So amazing, such a beautiful human being inside & out, so down to earth. One of the best professors I've ever had in my life. Just do the reading because he likes asking questions, but he's so nice and makes everyone super comfortable. Only gotta give 3 speeches, he gives great feedback so you could improve. This world need more prof like him !!!!!", + "pos": 0.419, + "neu": 0.581, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f4c" + } + }, + { + "text": "Probably the best professor I have taken in my life. Makes the class atmosphere feel really welcoming and gives good feedback on your speeches. He isn't a harsh grader either. You will participate every day because he likes to ask questions. Don't be scared to participate! Also, make sure you read your books! We have a mini discussion every day.", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f4d" + } + }, + { + "text": "One of the best professors at City, He is extremely understanding and just a genuinely great person. I would 100% take his class again. He is able to build such a safe and welcoming atmosphere in his class that allowed everyone to be themselves. I HIGHLY recommend.", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f4e" + } + }, + { + "text": "I would 100% take professor Weiss again! Hes so understanding and works well with all his students. Hes always available to help through email or even after class on zoom. If youre gonna take this class, please please please please please please please please please please please please please do yourself a favor and take professor Weiss!!!!", + "pos": 0.485, + "neu": 0.515, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f4f" + } + }, + { + "text": "As a freshman this year being online was hard. Im really happy i took this class since there wasn't much written work. This professor is extremely chill. Do the readings and contribute to the discussion. You have to do three speeches which is not bad at all. The space he helps create is safe. I highly recommend this professor!", + "pos": 0.247, + "neu": 0.733, + "neg": 0.02, + "_id": { + "$oid": "6711d7abcd60fca157e60f50" + } + }, + { + "text": "If you're seeing this I am practically begging you to take Professor Weiss' class. He is a very caring, understanding, and respectful professor who just wants the same back. \"Show up to class and show that you care and that's your A\"-Weiss. The only HW is to read chapters from a very easy textbook which is free online. He's like no other professor!", + "pos": 0.246, + "neu": 0.726, + "neg": 0.029, + "_id": { + "$oid": "6711d7abcd60fca157e60f51" + } + }, + { + "text": "Please take his class!!! You wont regret it! He is very understanding and chill. The most important thing is he understands you have other classes. He doesnt give homework other then reading a chapter of the one speech text book we had to get. His class is easy to pass if you show youre trying and hes easy to communicate with through email.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f52" + } + }, + { + "text": "AMAZING! Please please please take him if you can. I promise you wont regret it!", + "pos": 0.649, + "neu": 0.351, + "neg": 0.0, + "_id": { + "$oid": "6711d7abcd60fca157e60f53" + } + }, + { + "text": "PLEASE PLEASE TAKE HIM IF YOU CAN ! He is a teacher that understands you have a life outside of his class and allows you to explain yourself if youre lacking or missing something. He lets the class get comfy with each other by playing some games and it doesnt feel like youre in a class. It feels like youre talking to friends!", + "pos": 0.189, + "neu": 0.753, + "neg": 0.058, + "_id": { + "$oid": "6711d7abcd60fca157e60f54" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7accd60fca157e60f56" + }, + "professor_name": "Tenzing Doleck", + "rating": 1.7, + "department": "Biology department", + "comments": [ + { + "text": "I had her as a TA for BIO 102 and she is the only reason I received C while my classmates with different TAs had Bs and As. She does not tell you clearly how she expects you to write the lab report and tells us after the report is done being submitted. Such a harsh grader yet she is late to grading all our work. I DO NOT RECOMMEND. JUST RUN!!", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d7accd60fca157e60f57" + } + }, + { + "text": "I will give just one piece of advice, if you want to pass Biology 102 then do not take her lab class. If you see her as your TA, I would suggest dropping the class ASAP else you will suffer.", + "pos": 0.03, + "neu": 0.888, + "neg": 0.082, + "_id": { + "$oid": "6711d7accd60fca157e60f58" + } + }, + { + "text": "First off, she has got to be by far the most rudest TA Ive ever had in my life! Try to ask questions and make sure, and she thinks youre trying to prove her wrong and turns all defensive. Her grading is BY FAR the worst I have ever seen. All other TAs in other sections were pretty fair with their grading while Tenzing was definitely not.", + "pos": 0.145, + "neu": 0.721, + "neg": 0.134, + "_id": { + "$oid": "6711d7accd60fca157e60f59" + } + }, + { + "text": "Worst TA I've had at CCNY, which says a lot because the science department in this school is absolute trash. She is an extremely harsh grader, does not provide us the slides, does not reply to emails, will take off points for the smallest mistakes. Go-to advice for any complaint is \"you should already know this\". Does not care about her students.", + "pos": 0.0, + "neu": 0.796, + "neg": 0.204, + "_id": { + "$oid": "6711d7accd60fca157e60f5a" + } + }, + { + "text": "tenzing genuinely does not care for her students. purposefully makes the material confusing and hard. she does not like to reply to emails. she is strict which some people like but there is a limit to strictness. i asked for an extension bc of a recent death she said no", + "pos": 0.03, + "neu": 0.73, + "neg": 0.24, + "_id": { + "$oid": "6711d7accd60fca157e60f5b" + } + }, + { + "text": "The WORSTTT!!! Never answers emails on time or ever! Grades super harshly compared to other TAs who are more FAIR. Doesnt grade on time and returns assignments super LATE. Not helpful, rude at times, makes you feel stupid and just not it", + "pos": 0.261, + "neu": 0.637, + "neg": 0.101, + "_id": { + "$oid": "6711d7accd60fca157e60f5c" + } + }, + { + "text": "tenzing expects us to read her mind when it comes to the lab reports. she grades very harshly and won't post slides on blackboard because we should catch and remember every important thing she says during lecture. she practically hates being asked to clarify things. I was jealous of my peers who had other TAs cus they seemed way more understanding", + "pos": 0.027, + "neu": 0.883, + "neg": 0.09, + "_id": { + "$oid": "6711d7accd60fca157e60f5d" + } + }, + { + "text": "Online class, unclear on what she wants in the lab reports. Have to make an appointment with her to read your draft lab report two days before the due day and then she posted the recording with lab report details (unclear) late. Ask the most specific question in the exam. She is late for everything. but you can't have ur paper late.", + "pos": 0.0, + "neu": 0.952, + "neg": 0.048, + "_id": { + "$oid": "6711d7accd60fca157e60f5e" + } + }, + { + "text": "She unclear of how she wants to grade the assignments as she becomes clear after or while reading it. Put's the link for the assignment at 10PM when it's due the next day at 8am and if you happen to sleep and forgot to submit it on time you get almost 50% off your grade. Asks the most specific and ridiculous questions on the exam??", + "pos": 0.037, + "neu": 0.889, + "neg": 0.073, + "_id": { + "$oid": "6711d7accd60fca157e60f5f" + } + }, + { + "text": "Really bad at communicating, bad at grading, takes points off for questions that weren't asked. Says \"it's common sense\" for every question you ask her. One of the most useless TA's I've had. I am trying to learn in this class, not read her mind! There is no way to get a 10, because it's just never good enough for her.", + "pos": 0.0, + "neu": 0.786, + "neg": 0.214, + "_id": { + "$oid": "6711d7accd60fca157e60f60" + } + }, + { + "text": "Pay close attention to her mini lectures before she starts the lab and her discussion following the lab. Take good notes and make sure you read the lab manual and you can do well in this course. Never try to negotiate grades but if you ask her to explain something you got wrong, you might get a few extra points.", + "pos": 0.079, + "neu": 0.84, + "neg": 0.082, + "_id": { + "$oid": "6711d7accd60fca157e60f61" + } + }, + { + "text": "One of the worst teachers I've ever had. Count on being given incorrect information at each class. You don't get your papers back, your grades aren't entered until the class is over. Hypocrite: very demanding of students but not herself. Asks the most random questions on quizzestests-- stuff she hasn't and can't teach. Should not be teaching.", + "pos": 0.0, + "neu": 0.93, + "neg": 0.07, + "_id": { + "$oid": "6711d7accd60fca157e60f62" + } + }, + { + "text": "She needs to learn that this class is not that serious and level off on the grading", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d7accd60fca157e60f63" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7accd60fca157e60f65" + }, + "professor_name": "Fabian Llonch", + "rating": 3.5, + "department": "Architecture department", + "comments": [ + { + "text": "bad attitude change mind no reason", + "pos": 0.0, + "neu": 0.412, + "neg": 0.588, + "_id": { + "$oid": "6711d7accd60fca157e60f66" + } + }, + { + "text": "BEST PROFESSOR EVER!! gives great feedback and is very inspirational. Will always help you if you are struggling but you must show him that you are trying. Do the work and you will do great.", + "pos": 0.34, + "neu": 0.62, + "neg": 0.041, + "_id": { + "$oid": "6711d7accd60fca157e60f67" + } + }, + { + "text": "Barely showed up to class. Did not learn anything. Got stuck with a partner who didn't do any work. When I attempted to contact Llonch, he never responded.", + "pos": 0.0, + "neu": 0.931, + "neg": 0.069, + "_id": { + "$oid": "6711d7accd60fca157e60f68" + } + }, + { + "text": "I took his studio class years ago and loved it. He does impose his own style a bit, but I felt that it was an improvement. If you listen to him and let him guide you, you'll find a nice balance and simplicity that architects strive for.", + "pos": 0.185, + "neu": 0.785, + "neg": 0.029, + "_id": { + "$oid": "6711d7accd60fca157e60f69" + } + }, + { + "text": "Fabian is the best around period I enjoyed the studio environment, very competitive but good", + "pos": 0.488, + "neu": 0.512, + "neg": 0.0, + "_id": { + "$oid": "6711d7accd60fca157e60f6a" + } + }, + { + "text": "Very helpful professor! Guides you all the way from design to development with profound enthusiasm and you learn softwares along the way to a proficient level!", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d7accd60fca157e60f6b" + } + }, + { + "text": "the best professor I ever had period.", + "pos": 0.412, + "neu": 0.588, + "neg": 0.0, + "_id": { + "$oid": "6711d7accd60fca157e60f6c" + } + }, + { + "text": "Horrible professor, thinks he knows everything and never thinks once that he may be wrong. He likes manipulating other people's design by taking the students idea and developing instead of letting the student develop his/her own idea. He's arrogant and thinks too much of himself. He doesn't care about the effort you put in your project.", + "pos": 0.041, + "neu": 0.738, + "neg": 0.22, + "_id": { + "$oid": "6711d7accd60fca157e60f6d" + } + }, + { + "text": "GREAT PROFESSOR", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d7accd60fca157e60f6e" + } + }, + { + "text": "hes a great guy, but i think architecture is not just about making 'cute' computer renderings, based on a arbitrary/unresolved concepts that have nothing to do with the projectr at hand. and its too bad he keeps getting all these gased up horn students...", + "pos": 0.195, + "neu": 0.719, + "neg": 0.085, + "_id": { + "$oid": "6711d7accd60fca157e60f6f" + } + }, + { + "text": "GREAT Prof. fall 05/spr 06 to bad he had a studio was filled with selfish and student who can not look pass there own NOSE.\r \r For the above comment. 2 words \u201cFirst Amendment\u201d. Deal with your own problem at home. Grow up.", + "pos": 0.093, + "neu": 0.729, + "neg": 0.178, + "_id": { + "$oid": "6711d7accd60fca157e60f70" + } + }, + { + "text": "Should remain a 3rd yr studio professor. Deamands a lot but dont know how to explain what he wants. and he favors people and speak spanish to students in studio instead of english. Very unprofessional.", + "pos": 0.062, + "neu": 0.817, + "neg": 0.121, + "_id": { + "$oid": "6711d7accd60fca157e60f71" + } + }, + { + "text": "Demands allot, very clear, and knows where he is going. This semester is bringing the other classes kind of together: a bit of structures, sitetech into studio; interested in a working boulding in the end. I very Recomend him.", + "pos": 0.131, + "neu": 0.869, + "neg": 0.0, + "_id": { + "$oid": "6711d7accd60fca157e60f72" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7adcd60fca157e60f74" + }, + "professor_name": "John Calagione", + "rating": 3, + "department": "Anthropology department", + "comments": [ + { + "text": "Prof. Calagione was not as bad as he is described in these comments. You have a weekly journal due, with 5 question and yes, the readings are long, but very interesting. He is very invested during class, and loves discussions. It's not an easy class, but If you keep up with your work you'll do good.", + "pos": 0.239, + "neu": 0.717, + "neg": 0.045, + "_id": { + "$oid": "6711d7adcd60fca157e60f75" + } + }, + { + "text": "This class covers A LOT of material and most of it is very dense. You will do great as long as you try and don't expect to get an easy A. The professor is fair. If he see's that you tried and put effort, he will give you credit. There is no makeup work. if you miss it, you miss it. The class is difficult but you'll learn a lot for sure.", + "pos": 0.137, + "neu": 0.789, + "neg": 0.075, + "_id": { + "$oid": "6711d7adcd60fca157e60f76" + } + }, + { + "text": "This was a really interesting class to come into. He's a great Professor, but you will WORK for that grade. No easy A's. He forces you to critically think when you respond to lengthy pieces. I actually enjoyed the readings because it was different from the average day-to-day writings. He will work with you if you need clarification. Best", + "pos": 0.206, + "neu": 0.751, + "neg": 0.043, + "_id": { + "$oid": "6711d7adcd60fca157e60f77" + } + }, + { + "text": "read, read, read, read and DIFFICULT material.... critically think, think, think.... not an easy semester but he is a a very fair professor. You will def learn a lot!", + "pos": 0.101, + "neu": 0.776, + "neg": 0.123, + "_id": { + "$oid": "6711d7adcd60fca157e60f78" + } + }, + { + "text": "think twice", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f79" + } + }, + { + "text": "I took his \"working class new york\" class. There were A LOT of readings, with weekly responses to readings. Midterm and final paper (which was actually fun). He doesn't come off as nice person but hes not that bad. Not an easy A but not terrible either.", + "pos": 0.198, + "neu": 0.746, + "neg": 0.055, + "_id": { + "$oid": "6711d7adcd60fca157e60f7a" + } + }, + { + "text": "I took two classes with Pro. Calagione and learnt a lot from these courses. The negative feed back I have read on this site is completely opposite to my experience. The structure of the course was more or less fail proof if you read your material and came prepared for class. I found this to be one of my most interesting and informative classes.", + "pos": 0.068, + "neu": 0.833, + "neg": 0.1, + "_id": { + "$oid": "6711d7adcd60fca157e60f7b" + } + }, + { + "text": "I took two classes with Pro. Calagione and learnt a lot from these courses. The negative feed back I have read on this site is completely opposite to my experience. The structure of the course was more or less fail proof if you read your material and came prepared for class. I found this to be one of my most interesting and informative classes.", + "pos": 0.068, + "neu": 0.833, + "neg": 0.1, + "_id": { + "$oid": "6711d7adcd60fca157e60f7c" + } + }, + { + "text": "Does he still flick his hair & talk about how sexual he is. I took him about 7 yrs ago & boy does he think a lot of himself. The material he presented was interesting, but he is about his opinions. For the end of semester party his date was a scantily clad 90 lb. hair stylist, she was nice but it suited him.", + "pos": 0.13, + "neu": 0.87, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f7d" + } + }, + { + "text": "This instructor is not keen on teaching undergraduates and prefers to project his opinions rather than cover the coursework.", + "pos": 0.0, + "neu": 0.895, + "neg": 0.105, + "_id": { + "$oid": "6711d7adcd60fca157e60f7e" + } + }, + { + "text": "Horrible!", + "pos": 0.0, + "neu": 0.0, + "neg": 1.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f7f" + } + }, + { + "text": "Don't even think about it.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f80" + } + }, + { + "text": "Refuse to explain questions that students ask. I pain for being teach, not to watch his \"puppy shows\". One knows addition doesn't mean he can teach math in elementary schools. He need to take some psychology classes to learn how to teach.", + "pos": 0.0, + "neu": 0.879, + "neg": 0.121, + "_id": { + "$oid": "6711d7adcd60fca157e60f81" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7adcd60fca157e60f83" + }, + "professor_name": "Yvette Mercado", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "TAKE THIS PROFESSOR! \nIt is very reading heavy but she provides the textbook and she is a great fair grader.\ndiscussion boards are EC only\nshe allows EC on all exams\nShe is very lenient on submission times\nshe provides feedback! \nshe does weekly updates\nhonestly you could pass with only watching the videos she provide!\nAMAZING and sweet!", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f84" + } + }, + { + "text": "She is great", + "pos": 0.672, + "neu": 0.328, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f85" + } + }, + { + "text": "I absolutely loved this professor. I felt like I gained a lot of knowledge of the subject. She was very down to earth and thoroughly explained the content. Be prepared to read a lot. She provides study guides to her exams which are sooooooo helpful! Definitely Would take this professor again", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f86" + } + }, + { + "text": "She is a great professor and humorous too. She should make her exams less difficult. She is respectful and has loads of knowledge.", + "pos": 0.314, + "neu": 0.615, + "neg": 0.071, + "_id": { + "$oid": "6711d7adcd60fca157e60f87" + } + }, + { + "text": "She is excellent, organized, thorough and very knowledgeable. She may seem a little intimidating at first, but she is detailed in her explanations and funny as well. She does assign a heavy workload, but if you are consistent, you will do great She gets two thumbs up from me!!", + "pos": 0.248, + "neu": 0.723, + "neg": 0.03, + "_id": { + "$oid": "6711d7adcd60fca157e60f88" + } + }, + { + "text": "She is excellent. You will learn and she is worth every penny.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f89" + } + }, + { + "text": "SHE'S A GREAT TEACHER OVERALL BUT SHE TENDS TO BELITTLE STUDENTS IF THEY DONT PARTICIPATE IN HER CLASS BUT THEY STILL MAKE THE WORK NECESSARY FOR HER CLASS. I GOT HURT AND NEEDED MEDICAL CR, BUT BECAUSE I COULDNT ATTEND HER CLASS ONCE, BECAUSE OF MY ACCIDENT SHE DIDNT CARE OR SEEM TO BE CONCERNED ABOUT MY SAFETY OR MY HEALTH.", + "pos": 0.081, + "neu": 0.712, + "neg": 0.208, + "_id": { + "$oid": "6711d7adcd60fca157e60f8a" + } + }, + { + "text": "She is WONDERFUL!!", + "pos": 0.715, + "neu": 0.285, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f8b" + } + }, + { + "text": "Very articulate and well organized. Shows respect to each student and thus deems respect. Read the text, take good notes. You will learn alot of valuable info and get a good grade. An excellent professor--this is good education!", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f8c" + } + }, + { + "text": "Very articulate and well organized. Shows respect to each student and thus deems respect. Read the text, take good notes. You will learn alot of valuable info and get a good grade. Really, an excellent professor!", + "pos": 0.428, + "neu": 0.572, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f8d" + } + }, + { + "text": "She gives a lot of notes! As long as you follow her notes the exams are EASY! Her grading system is 100% FAIR..Basically your grade is based on three short papers, two exams (out of three) and one term paper", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f8e" + } + }, + { + "text": "She's a serious professor yet with sense of humor and great enthusiast teaching her class. She gives A as long as you participate and do your research papers, and study for exams. Her grading system is fair to get an A grade.", + "pos": 0.223, + "neu": 0.751, + "neg": 0.026, + "_id": { + "$oid": "6711d7adcd60fca157e60f8f" + } + }, + { + "text": "This Professor dosen't follow her syllabus accordingly.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7adcd60fca157e60f90" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7aecd60fca157e60f92" + }, + "professor_name": "Robert Gruskin", + "rating": 4.8, + "department": "Biology department", + "comments": [ + { + "text": "The mold that other teaching professionals SHOULD be cast from.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60f93" + } + }, + { + "text": "Mr. Gruskin is one of a kind. Amazing sums it up.", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60f94" + } + }, + { + "text": "The absolute best! He deserves the Nobel prize!", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60f95" + } + }, + { + "text": "he's the best lab prof. theres a few quizzes but they're not horrible. his tests are pretty simple but be careful because he does take points off for the smallest mistakes", + "pos": 0.301, + "neu": 0.622, + "neg": 0.078, + "_id": { + "$oid": "6711d7aecd60fca157e60f96" + } + }, + { + "text": "Professor Gruskin is the most amazing lab teacher. He's a sweet little old man. He definitely cares about his students as long as you do the work. I highly recommend him to anyone. But don't think he's a push over. He is nice, but he can lay down the law. He lectures during his lab, but make sure you listen. It'll come in handy during lectures!", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60f97" + } + }, + { + "text": "He is the greatest professor I have had yet.He takes time to explain any concept you don't understand, and concepts you won't encounter until later in bio. My lecture prof. was horrible, and it was because of Gruskin that I was able to comprehend the lecture material. You have to be precise on the quizzes, especially with definitions.", + "pos": 0.066, + "neu": 0.879, + "neg": 0.055, + "_id": { + "$oid": "6711d7aecd60fca157e60f98" + } + }, + { + "text": "Greatest bio instructor ever. He explains everything in class well enough, very funny, caring. This is a place and a professor to learn the material with. Highly recomended!!!!!", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60f99" + } + }, + { + "text": "Very good professor. Even funny at times. He explains everything thoroughly. This is where you learn the Bio material. The quizzes are hard. He wants specific answers and takes off points for the slightest broadness of an answer. But overall, a very good professor. Very hard to fail also. Only challenge is the quizzes, you have to pay attention.", + "pos": 0.138, + "neu": 0.721, + "neg": 0.141, + "_id": { + "$oid": "6711d7aecd60fca157e60f9a" + } + }, + { + "text": "He is a grandfather type. He makes the subject interesting but his quizzes are a little hard. but if you study, you will do fine", + "pos": 0.149, + "neu": 0.809, + "neg": 0.043, + "_id": { + "$oid": "6711d7aecd60fca157e60f9b" + } + }, + { + "text": "Goes out of his way to explain everything you didn't understand in lecture. You get a quiz almost every lab, but studying for them is all memorization. Quite a character. He's semi-retired and still teaches lab because he likes to teach. Saved me from getting a C in Bio 101.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60f9c" + } + }, + { + "text": "Mr. Gruskin is a very kool teacher you will definitley learn alot from him. However,his quizzes are KILLERS.... im telling you he takes off mad points.If your the type of perosn loves memorizing then take him otherwise DONT!!", + "pos": 0.078, + "neu": 0.737, + "neg": 0.186, + "_id": { + "$oid": "6711d7aecd60fca157e60f9d" + } + }, + { + "text": "hes a tough grader, he will always find a way to take off points on ur quizzes! other than that, hes truly a great professor with good sense of humor, i had fun with him and learned a lot", + "pos": 0.311, + "neu": 0.659, + "neg": 0.03, + "_id": { + "$oid": "6711d7aecd60fca157e60f9e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7aecd60fca157e60fa0" + }, + "professor_name": "Matthew Rolnick", + "rating": 3, + "department": "Economics department", + "comments": [ + { + "text": "I absolutely loved his class. He was very engaging and tries multiple methods to try to get students to understand the material. I went to his office hours a couple time and he was extremely helpful and understanding. I would definitely take another course with him if I could!", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fa1" + } + }, + { + "text": "Easy but useless. Easiest A I ever got, but I felt dirty watching everyone around me just slide along.", + "pos": 0.2, + "neu": 0.532, + "neg": 0.268, + "_id": { + "$oid": "6711d7aecd60fca157e60fa2" + } + }, + { + "text": "I feel lucky to attend this course. And it is the best I have ever had here. He cares students' understanding of concepts rather than just memorize them. He used video, animation and mimic the market to help understanding. This course excites my passion to read and think ECO things. Also he is tough demanding in homework and group project.", + "pos": 0.253, + "neu": 0.701, + "neg": 0.046, + "_id": { + "$oid": "6711d7aecd60fca157e60fa3" + } + }, + { + "text": "hes a really nice guy dont get me wrong, but a horrible teacher. Doesnt explain well, he's not even sure of what he puts on his slides. And there is no unexcused absences with him, he says he allows a certain number but its a lie, he'll penalize you for even one absence.He grades smoothly, but you wont learn anything.If you like econ, dont take him", + "pos": 0.139, + "neu": 0.709, + "neg": 0.152, + "_id": { + "$oid": "6711d7aecd60fca157e60fa4" + } + }, + { + "text": "Easy and fun. But it's so dumbed down that it won't help you in future courses. My Macaulay honors classmate dropped this corse.", + "pos": 0.254, + "neu": 0.536, + "neg": 0.21, + "_id": { + "$oid": "6711d7aecd60fca157e60fa5" + } + }, + { + "text": "Not clear in lecture or instructions in assignments. Disorganized in grading. Written group project doesn't have a personal grading part. Ambiguous information on current grade in the course.", + "pos": 0.0, + "neu": 0.856, + "neg": 0.144, + "_id": { + "$oid": "6711d7aecd60fca157e60fa6" + } + }, + { + "text": "He doesn't know how to teach a lecture class. Too much activity in the class of 90 students. Doesn't have real time to teach real macroeconomic. No calculator in the exam with CPI. He is the only Eco professor that I had in CCNY has the final exam cover all of the course. Be consider to take him.", + "pos": 0.0, + "neu": 0.963, + "neg": 0.037, + "_id": { + "$oid": "6711d7aecd60fca157e60fa7" + } + }, + { + "text": "Great guy, always available and he seemed generally interested in students grades. Take him you will def no regret it", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fa8" + } + }, + { + "text": "Very caring and nice professor. Sometimes a bit disorganized but he makes sure you understand material clearly.", + "pos": 0.442, + "neu": 0.492, + "neg": 0.066, + "_id": { + "$oid": "6711d7aecd60fca157e60fa9" + } + }, + { + "text": "Really great professor. He truly cares about the students and makes sure everyone understands. I was one of the younger students in his 104 class full of seniors and he has been one of my favorites ever since. He is willing to help you if you ask for help and is very understanding. Debates/Group projects were graded fairly and tests were fair.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60faa" + } + }, + { + "text": "The online homework can be a bit challenging, but the class in general was fairly easy, and fun (attendance was mandatory, but on the bright side, you get points just for showing up). I don't recall ever going to his office hours, but he was pretty quick about responding to questions through email. We had to a couple of group projects as well.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fab" + } + }, + { + "text": "Taking his class likes taking the kindergarten class, it has lots of activities in the lecture, so didn't have time to do the real lecture. You need to buy online HW code, clicker and book. Two midterm, one final and quizzes(give randomly), also has discussion on the BB. He requires so many things for this easy class, and easy lecture, hard test.", + "pos": 0.133, + "neu": 0.847, + "neg": 0.02, + "_id": { + "$oid": "6711d7aecd60fca157e60fac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7aecd60fca157e60fae" + }, + "professor_name": "Jeffrey Heiman", + "rating": 4.7, + "department": "World Humanities department", + "comments": [ + { + "text": "One of the greatest professors I have met, by far. Passionate of what he teaches and who he teaches too. You are going to have to read, a lot. Always ready to give feed back and help, if needed. His discussions and work made the literature's assigned to read, an ease.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60faf" + } + }, + { + "text": "Great professor, cool guy, very engaging. TAKE HIM!", + "pos": 0.652, + "neu": 0.348, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fb0" + } + }, + { + "text": "By far the best professor I have had at CCNY! Despite the fact I hate waking up early I really enjoyed attending this class. We read 5 books and had to write 3 essay. No midterm. This is not an easy A class you have to work for your grade.", + "pos": 0.127, + "neu": 0.733, + "neg": 0.14, + "_id": { + "$oid": "6711d7aecd60fca157e60fb1" + } + }, + { + "text": "Prof.Heiman placed his soul into every lecture, every Saturday! You just have to do the same..just joking, a very good prof. who respects and picks the sense from any gibberish you say. He should have workshops on lecturing. Seriously.", + "pos": 0.173, + "neu": 0.789, + "neg": 0.038, + "_id": { + "$oid": "6711d7aecd60fca157e60fb2" + } + }, + { + "text": "Great professor!!!!!", + "pos": 0.84, + "neu": 0.16, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fb3" + } + }, + { + "text": "He is a cool guy", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fb4" + } + }, + { + "text": "Prof Heiman is great as a person, great as a teacher. You will learn and like the class. There is no mid terms and no quizzes. He hardly gives any A's. Prepare to read 8 books, work hard and get a B+ the highest. I recommend him but it is not an easy A. If you don't want work and get A's then look for another class.", + "pos": 0.114, + "neu": 0.769, + "neg": 0.117, + "_id": { + "$oid": "6711d7aecd60fca157e60fb5" + } + }, + { + "text": "Jeff is great, awesome course, lot of reading, tough in grading.", + "pos": 0.463, + "neu": 0.452, + "neg": 0.085, + "_id": { + "$oid": "6711d7aecd60fca157e60fb6" + } + }, + { + "text": "Great class. I dreaded classical literature before his class. I'm happy to have taken this. Cool guy. Recommended.", + "pos": 0.423, + "neu": 0.449, + "neg": 0.128, + "_id": { + "$oid": "6711d7aecd60fca157e60fb7" + } + }, + { + "text": "Professor is intimately familiar with the required reading and has deep insights into the various layers of meaning in classic literature. He teaches with enthusiasm and clearly loves the job. He encourages class discussion and validates each student's viewpoint. Lots of reading, so don't procrastinate until the end of the semester!", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fb8" + } + }, + { + "text": "He is very knolegeable. Knows the subject well. Very passionate. Most important he respects students, he will never put you down. No favorism between students. He is fair. However, he hardly gives A's. Just sit back and enjoy the class you will learn a lot. Expect tons of reading. Great professor with great personality.", + "pos": 0.341, + "neu": 0.628, + "neg": 0.031, + "_id": { + "$oid": "6711d7aecd60fca157e60fb9" + } + }, + { + "text": "Prof. Heiman is a nice person to be around, mellow personality. He knows what he is teaching. If anyone does not understand a subject, he is always happy to explain.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d7aecd60fca157e60fba" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7afcd60fca157e60fbc" + }, + "professor_name": "Amir Danesh", + "rating": 4.8, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Danesh is amazing! He's a great professor who has a lot of experience with the material. He can be brutally honest at times (in a good funny way) and he really cares about his students. I almost took an 8:00am class just to have him again!", + "pos": 0.327, + "neu": 0.611, + "neg": 0.063, + "_id": { + "$oid": "6711d7afcd60fca157e60fbd" + } + }, + { + "text": "Great teacher and a great guy. The MATLAB is a little rough, but he is willing to answer any questions you have about it, even on the weekends.", + "pos": 0.164, + "neu": 0.836, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fbe" + } + }, + { + "text": "Funny guy, dynamic, knows the material well. Some topics are hard: frames & trusses. He's very discouraging in the beginning to make students work at their full potential. He grades using class rank. If you're in top 40%, it's possible to A-B+. His tests require a thorough understanding of concepts. Do well on MATLAB to get more points!", + "pos": 0.175, + "neu": 0.757, + "neg": 0.068, + "_id": { + "$oid": "6711d7afcd60fca157e60fbf" + } + }, + { + "text": "Really clear in lecture and tries to help you out if you ask. He gave us quizzes every week and allowed extra credit from matlab problems.", + "pos": 0.249, + "neu": 0.669, + "neg": 0.082, + "_id": { + "$oid": "6711d7afcd60fca157e60fc0" + } + }, + { + "text": "His lectures are really helpful, attend them. Stresses concepts that students usually don't understand. The hw is optional. Gives quizzes once a week (10 quizzes total). Tests are a little beefed up, so watch out for tricky questions. No accent. Really fair and sincere. Office hours are helpful. 3 matlab assignments. Great personality. 55 Prof.", + "pos": 0.224, + "neu": 0.678, + "neg": 0.098, + "_id": { + "$oid": "6711d7afcd60fca157e60fc1" + } + }, + { + "text": "Really work intense class but you learn tremendous amount of material that is actually interesting. If you are not willing to sacrifice time with MATLAB dont take this class. He is the best professor you can ever take. He him self is passionate about the subject so it makes the class that much more fun and interesting.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fc2" + } + }, + { + "text": "Best professor you can have!!! Very helpful and clear on explaining the material. He should teach every class in ME department.", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fc3" + } + }, + { + "text": "the best guy ever inhale taken in city college. a lot of partial credits, helps a lot anytime and i would say the best professor for mech246.. lectures are well organized and easy to understand..but material is tough you have to work hard!! overall best professor to take..", + "pos": 0.357, + "neu": 0.598, + "neg": 0.044, + "_id": { + "$oid": "6711d7afcd60fca157e60fc4" + } + }, + { + "text": "Excellent professor and mechanical engineer. Responds to emails. Drops a lot of grades and gives as many points as possible even when you don't deserve it. Take him. Has a very prestigious future ahead of him.", + "pos": 0.096, + "neu": 0.904, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fc5" + } + }, + { + "text": "HE IS AMAZING! The quizzes are always easier than the hw and he gives A LOT of partial credit. Tests are difficult but he is very nice with his grades. Lectures are extremely organized and clear. He is always willing to help with any issues at any time. Responds to emails fast, Matlab is fairly easy if you are BME. He deserves respect A+ PROFESSOR!", + "pos": 0.315, + "neu": 0.664, + "neg": 0.021, + "_id": { + "$oid": "6711d7afcd60fca157e60fc6" + } + }, + { + "text": "very clear helpful and not harsh on students a lot of partial credits a lot of quizzes though but very similar to the hw", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fc7" + } + }, + { + "text": "Work is TOUGH but he is SUPER helpful and responsive to feedback. You better know your matlab before you take any class taught by him. If you dont know matlab you will struggle but you will end up learning a lot.", + "pos": 0.304, + "neu": 0.616, + "neg": 0.08, + "_id": { + "$oid": "6711d7afcd60fca157e60fc8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7afcd60fca157e60fca" + }, + "professor_name": "Mikael Awake", + "rating": 4.2, + "department": "English department", + "comments": [ + { + "text": "Awake is super nice and makes class enjoyable. Do the readings for the quizzes and participate in discussions and you'll be fine. I think he notices when you're making an effort even if you don't get the material immediately. Super approachable which I really appreciate, he's easygoing and willing to help and give feedback. Would def. take again!", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fcb" + } + }, + { + "text": "Clear assignments, straightforward lessons, smooth class discussion. I have never met someone so encouraging of my learning process, even when I'm the girl asking a million questions and unapologetically bored of Emily Di**inson. He's a fair grader and the work is very manageable. Favorite professor by far, and just such a nice guy. Take his class!", + "pos": 0.231, + "neu": 0.738, + "neg": 0.031, + "_id": { + "$oid": "6711d7afcd60fca157e60fcc" + } + }, + { + "text": "He was my absolute favorite professor that I've had at Hunter thus far. Super down to earth and approachable, and he gives really great feedback on papers. He's also quirky and fun which made the class that much more enjoyable. If you get the chance, definitely take a class with him. :)", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fcd" + } + }, + { + "text": "Really enjoyed Professor Awake's class. The classroom environment was laid back but engaging. You do have to do the assigned readings if you want to pass. The good news is that if you do the readings you won't have any trouble with the course.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fce" + } + }, + { + "text": "Wasn't so great. His discussions on readings are the worst. He assigns the chapters and then wants you to come into class listen to him lecture the plot. Expects others to participate but only one girl in the front did (bet she got an A+ hah) CLEARLY he should of rephrased the questions in ways that would allow students to engage & participate", + "pos": 0.139, + "neu": 0.796, + "neg": 0.066, + "_id": { + "$oid": "6711d7afcd60fca157e60fcf" + } + }, + { + "text": "eh wasn't so great. Assigned papers but never went over exactly what he wanted. Dwells on certain parts of the text too much & completely ignores the rest. Grading was a bit unfair. Final grade is based MOSTLY on final paper NOT the other assignments (quizzes/papers). Definitely not my ideal english class. Got an ok grade but Would NOT take again.", + "pos": 0.117, + "neu": 0.692, + "neg": 0.191, + "_id": { + "$oid": "6711d7afcd60fca157e60fd0" + } + }, + { + "text": "Respectful, diligent, intelligent, clear and concise, understanding, specific, makes you want to do well and give back what he is giving you. I definitely learned how to speak properly as well as write thoroughly and I already took Eng 220 this is your guy! Excellent textbooks!", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fd1" + } + }, + { + "text": "Awake is everything you want in an English teacher--funny, understanding, and reasonable. He assigns a moderate amount of work, but nothing too overwhelming; and if you do find yourself falling behind, shoot him an email and he'll be happy to help. He's also has a dorky sense of humor, in the best way possible. Would definitely recommend.", + "pos": 0.314, + "neu": 0.59, + "neg": 0.096, + "_id": { + "$oid": "6711d7afcd60fca157e60fd2" + } + }, + { + "text": "HES GREAT! He gives a syllabus in the beginning and if any changes are made to it throughout the semester, he'll mention them (idk what that kid was saying in the other comment!) His class is anything BUT boring, he's really sweet, has a clear grading criteria, & easy grader! If i needed to take another class & he was the prof i would! TAKE AWAKE!", + "pos": 0.197, + "neu": 0.751, + "neg": 0.052, + "_id": { + "$oid": "6711d7afcd60fca157e60fd3" + } + }, + { + "text": "Hi, uh, this is Mikael Awake, the professor being rated here. And I just have to say that, um, what this student of mine is saying, uh, about me is, uh, not true.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d7afcd60fca157e60fd4" + } + }, + { + "text": "He is the worst professor I've ever had. He is unclear and unorganized. He didn't put up a complete syllabus until mid December. Rarely gives feedback and when he does he's very unclear on it. He's unclear when speaking as well. With his uh's and um's it becomes difficult to focus. He also grades tough for someone who isn't doing their job well.", + "pos": 0.057, + "neu": 0.747, + "neg": 0.196, + "_id": { + "$oid": "6711d7afcd60fca157e60fd5" + } + }, + { + "text": "Prof. Awake is a funny, engaging, and passionate educator. He gives constructive and attentive feedback on creative work and assigns interesting projects. Really listens to and supports his students. Highly recommended, you will be eager to get arrive to class each week.", + "pos": 0.386, + "neu": 0.614, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fd6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7afcd60fca157e60fd8" + }, + "professor_name": "Wenbo Li", + "rating": 1.4, + "department": "Mathematics department", + "comments": [ + { + "text": "One of the worst. Doesnt explain properly. Hard to understand. Taught myself using youtube because it was hard to comprehend.", + "pos": 0.054, + "neu": 0.714, + "neg": 0.231, + "_id": { + "$oid": "6711d7afcd60fca157e60fd9" + } + }, + { + "text": "Worst professor ever. The ratings say it all. He doesn't show any sympathy for you during the semester. He legit doesn't care. You can cut class everyday and his webassign hws are long, boring, and pointless to understand the concept. I'm sure he knows calc but he just can't teach. Pointless rushing and copying from textbook without explaining.", + "pos": 0.026, + "neu": 0.828, + "neg": 0.145, + "_id": { + "$oid": "6711d7afcd60fca157e60fda" + } + }, + { + "text": "Honestly, you're better off learning on your own which he doesn't mind but his final is worth 50% and he sucks at teaching. He also has an accent he also doesn't do extensions or extra credit.", + "pos": 0.221, + "neu": 0.705, + "neg": 0.074, + "_id": { + "$oid": "6711d7afcd60fca157e60fdb" + } + }, + { + "text": "Worst professor ever.", + "pos": 0.0, + "neu": 0.328, + "neg": 0.672, + "_id": { + "$oid": "6711d7afcd60fca157e60fdc" + } + }, + { + "text": "RUN. This is the worst teacher on earth. Can't speak English. skips steps. sloppy handwriting, writes tiny on board. rushes, does not explain, copy's straight out of textbook. does not care. you will leave his class frustrated and upset you went. beware. pure garbage. grades final at 50% of grade. ccny should be ashamed to have him as an adjunct.", + "pos": 0.0, + "neu": 0.739, + "neg": 0.261, + "_id": { + "$oid": "6711d7afcd60fca157e60fdd" + } + }, + { + "text": "Basically learned everything on YouTube, you wont learn anything here so no point in comimg to class, you'll waste your time. Doesnt take attendance so only show up during test days which he'll email each test date. He also emails mock exams before tests which are similar to the real test. Gives a bit too much homework.", + "pos": 0.0, + "neu": 0.864, + "neg": 0.136, + "_id": { + "$oid": "6711d7afcd60fca157e60fde" + } + }, + { + "text": "The only good thing about this guy is that he doesn't take attendance.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fdf" + } + }, + { + "text": "he's a good professor.", + "pos": 0.492, + "neu": 0.508, + "neg": 0.0, + "_id": { + "$oid": "6711d7afcd60fca157e60fe0" + } + }, + { + "text": "HE IS THE WORST professor of the world. I had a W for his class. My first and only W.", + "pos": 0.0, + "neu": 0.797, + "neg": 0.203, + "_id": { + "$oid": "6711d7afcd60fca157e60fe1" + } + }, + { + "text": "Stopped coming to his class, and did my own studying. At least attendance isnt mandatory.", + "pos": 0.0, + "neu": 0.806, + "neg": 0.194, + "_id": { + "$oid": "6711d7afcd60fca157e60fe2" + } + }, + { + "text": "Okay, I once had this guy as a professor. He was the reason I wanted to quit college. He has a very strong Chinese accent which is not helpful at all when you are a Math professor. I wouldn't suggest anyone take his class !!!", + "pos": 0.126, + "neu": 0.828, + "neg": 0.046, + "_id": { + "$oid": "6711d7afcd60fca157e60fe3" + } + }, + { + "text": "First off, he barely speaks english. I'm not referring to having an accent. I mean literal limited proficiency. He was not accessible for office hours and if you were lucky enough to make his office hours it ended up being a complete waste. I asked him for help once with a question to which he responded \"why don't you figure out for yourself?\"AVOID", + "pos": 0.079, + "neu": 0.853, + "neg": 0.068, + "_id": { + "$oid": "6711d7afcd60fca157e60fe4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b0cd60fca157e60fe6" + }, + "professor_name": "Sophia Inam", + "rating": 4.8, + "department": "Biology department", + "comments": [ + { + "text": "Sophia is a fantastic professor. She does quick lectures at the start of each class that outline everything you need to know. She's very knowledgeable and helpful during the labs. She does a great review before exams, and if you pay attention and focus on what she covers, you'll ace the exams. She managed to make a tough class fun and enjoyable.", + "pos": 0.227, + "neu": 0.735, + "neg": 0.039, + "_id": { + "$oid": "6711d7b0cd60fca157e60fe7" + } + }, + { + "text": "Sophia is such an amazing person! She makes the lab very interesting and fun. She has her cute little jokes and acronyms for memorizing things which make it really fun! She has a great personality and is very lenient with her grading and tests. Participation and attendance do count! She really loves what she teaches and makes sure you understand !", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60fe8" + } + }, + { + "text": "She is the best TA. Her lectures in lab are straight forward and makes sure you understand. She cares a lot about her students and wants nothing but the best for them.", + "pos": 0.196, + "neu": 0.688, + "neg": 0.116, + "_id": { + "$oid": "6711d7b0cd60fca157e60fe9" + } + }, + { + "text": "She's a really good TA, definitely take her if you have the chance! She's very clear about labs and takes a lot of care that you understand how to do the reports as well.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60fea" + } + }, + { + "text": "Amazing !!!! Best lab instructor ever!", + "pos": 0.696, + "neu": 0.304, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60feb" + } + }, + { + "text": "Very nice, food at explaining, good at teaching, caring & always helpful.", + "pos": 0.6, + "neu": 0.4, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60fec" + } + }, + { + "text": "I had Sophia as a TA for Anatomy & Physiology. Sophia was a great TA because she would make her own slides to be able to teach us what we previously learned in lecture and made sure we understood. She was very helpful in finding videos and small things that could help us remember things better. She listens and genuinely wishes to see you do good.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60fed" + } + }, + { + "text": "I had Sophia for a summer course and honestly she is so passionate about what she does. She cares for everyone and willing to do more than what her job requires. I learned so much from her even though this course is heavy and very fast during the summer. She won't move on until everyone is ready. Sophia is amazing and would love to take her again!", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60fee" + } + }, + { + "text": "Sophia was the TA genetics recitation, and was honestly grate if anyone had any questions she was always there to help and thoroughly explain how to solve the problem. Definitely one of the best TAs I've had so far.", + "pos": 0.287, + "neu": 0.659, + "neg": 0.054, + "_id": { + "$oid": "6711d7b0cd60fca157e60fef" + } + }, + { + "text": "I took genetics in Summer '18. Sophia was the TA for recitation. She is super sweet and stayed after class every week to go over material I didn't understand. If she didn't know the answer herself she would make sure to have it by next class. She made videos for the last exam and is a very lenient grader. I would take another class with her.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff0" + } + }, + { + "text": "Sophia was my recitation teacher for Genetics at CCNY. Overall, the class is extremely challenging, but Sophia always worked her hardest to help students understand the dense material. She went above and beyond for us and even made videos to go over problems that we were confused about. She's definitely one of the best TA's I've ever met.", + "pos": 0.197, + "neu": 0.714, + "neg": 0.089, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff1" + } + }, + { + "text": "Sophia was my TA for Bio 206 (Genetics)- the Summer 2018/ 8 week session. She is simply fantastic! She is kind, caring, understanding, and helpful. She went over material in recitation, gave us extra resources (video lectures), and even made her own step by step homework key videos for us. I would be overjoyed if I ever had her as a TA again!", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b0cd60fca157e60ff4" + }, + "professor_name": "Harry Blain", + "rating": 4.8, + "department": "Political Science department", + "comments": [ + { + "text": "Great prof. Highly recommend!", + "pos": 0.782, + "neu": 0.218, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff5" + } + }, + { + "text": "This professor was very nice. He knew what he was talking about and was open to hearing students without making them feel dumb. just pay attention in class and you will be able to write a great paper. Remember, he really wants you to argue in your paper, so always show the other side and then rebuttal. the in-class debates were fun. great class.", + "pos": 0.185, + "neu": 0.724, + "neg": 0.09, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff6" + } + }, + { + "text": "Pretty nice and understanding, engaging lectures, and straightforward assignments.", + "pos": 0.583, + "neu": 0.417, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff7" + } + }, + { + "text": "Taking Prof. Blain the second time, and it is sure that he does not disappoints me. His criteria were clear and made the class fun especially with the final project to rewrite the constitution. There is a lot of reading but most of the reading does help class discussion, and I would suggest skimming it because he will cover it inclass.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff8" + } + }, + { + "text": "I expected more considering how many good reviews this professor had. His lectures were pretty boring, and his class was very heavy on the reading (which is to be expected). His criteria especially for the last project was confusing, and he leaves feedback for some not all.", + "pos": 0.114, + "neu": 0.807, + "neg": 0.079, + "_id": { + "$oid": "6711d7b0cd60fca157e60ff9" + } + }, + { + "text": "He is one of the best professor out there. I think he balance his lecture with class discussion nicely and helps us understand the topic really well. Learnt alot about Congress with him and 100% re-offending his class next semester!", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ffa" + } + }, + { + "text": "BEST PROFESSOR IN CCNY! I think he does touch on alot of topic with a very fair explanation and also gives students to talk about their views. He is a very understandable person and very flexible with grades. 3 papers in total. His class is fun and you will get a lot from him!", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ffb" + } + }, + { + "text": "One of the best professors I have taken at CCNY. First time I learned my constitutional rights as a citizen. The way he explained bill of rights, supreme court cases often two sided are simply amazing. His online communication is the best- BB, email response, paper feedback.... above all , he is avery nice person. Completely recommended.", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ffc" + } + }, + { + "text": "Not a fan of weekly online posts, but I am guessing this is a way to ensure students are doing the reading. Grading seems relatively easy. I read a few of my classmates' essays that were poorly written, yet they earned B+s. This is an easy A class! Professor is very good! Engages all students in class discussion. Plus, he is cute! Win win :)", + "pos": 0.4, + "neu": 0.585, + "neg": 0.016, + "_id": { + "$oid": "6711d7b0cd60fca157e60ffd" + } + }, + { + "text": "Exams are relatively easy. Essay assignments are directly linked to class discussion. Show up, participate, and you will do good. Also, there is a weekly online blog post which counts for your participation grade. This is a good professor.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e60ffe" + } + }, + { + "text": "Great professor. He engages the entire class into participating. He ensures that you understand the key arguments of the assignments. He is always willing to give positive and constructive feedback. Take his class, you will NOT regret it!", + "pos": 0.257, + "neu": 0.687, + "neg": 0.056, + "_id": { + "$oid": "6711d7b0cd60fca157e60fff" + } + }, + { + "text": "This is perhaps the best-professor that I've had at CCNY. Grading is clear, professor is entertaining and keeps the class engaged. The material and essays requirements are clear. Prof. is open to speak of the requirements during office hours. Weekly blog post and participation is important. A real gem.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7b0cd60fca157e61000" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b1cd60fca157e61002" + }, + "professor_name": "Paul Clifford", + "rating": 4.8, + "department": "Economics department", + "comments": [ + { + "text": "to be fair economics is not my best topic but he was super informative about the topics. his class was both online and in person but we spent most of it online. he gives out tests, no hw, midterm and final, no papers either. I would take one of his classes again since he explains topics well.", + "pos": 0.141, + "neu": 0.745, + "neg": 0.114, + "_id": { + "$oid": "6711d7b1cd60fca157e61003" + } + }, + { + "text": "Professor Clifford was honestly a super refreshing professor. He actually cares and helps you with anything you need. He provides a lot of resources and genuinely wants you to succeed in and out of the classroom. Give your honest effort and he reciprocates evenly.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e61004" + } + }, + { + "text": "This was an asynchronous course and he still hosted live lectures. It was very informative and helpful and he stuck to the textbook. I would highly recommend. Great teacher and made sure the students had opportunity to get a good grade.", + "pos": 0.336, + "neu": 0.627, + "neg": 0.037, + "_id": { + "$oid": "6711d7b1cd60fca157e61005" + } + }, + { + "text": "He is a great professor who is very respectful as well. The online class was made up of weekly lectures, about 10 quizzes a midterm and a final. It is not a hard class and he gives you many resources.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e61006" + } + }, + { + "text": "His online class was very simple and easy. He gives around small 9 quizzes and midterm and final. No homework. No attendance. Quiz is easy. The cons are the final exam time is just 70 minutes compared to midterm. Else time frame for midterm and quiz is ok. I recommend taking him for this class.", + "pos": 0.167, + "neu": 0.798, + "neg": 0.035, + "_id": { + "$oid": "6711d7b1cd60fca157e61007" + } + }, + { + "text": "He's a good professor for accounting. He uploads old video explanations of his slides and he gives around 9 quizzes that's based off of each chapter as well as a midterm and a final. Make sure to do all of your quizzes since that'll be your participation for the class. Overall he's a pretty good professor. Take him for accounting if you can.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e61008" + } + }, + { + "text": "By far the best professor in ECONOMICS department. Wish he had taught some more class, instead of those other useless professors. Accounting is kinda boring but he made it so fun. A real talent.", + "pos": 0.309, + "neu": 0.617, + "neg": 0.075, + "_id": { + "$oid": "6711d7b1cd60fca157e61009" + } + }, + { + "text": "Prof Clifford is an amazing and kind person. You have to put in work to do good. He gives quizzes for almost every chapter, use them as boosters for your grade. He drops the lowest. He grades midterm and final pretty tough so you have to know your stuff. Lectures are kind of boring as he reads slides but it's important info for quizzes and tests.", + "pos": 0.147, + "neu": 0.787, + "neg": 0.066, + "_id": { + "$oid": "6711d7b1cd60fca157e6100a" + } + }, + { + "text": "One of the easiest and most interesting classes ever. Take it ! I barely did any work and got an A. Professor is this English guy and he is crazy nice.", + "pos": 0.232, + "neu": 0.705, + "neg": 0.063, + "_id": { + "$oid": "6711d7b1cd60fca157e6100b" + } + }, + { + "text": "This was one of the easier economic courses to take at ccny. He gives weekly quizes that are all multiple choice and drops the lowest. 2 exams and a final & No HW. He posts all of the slides on Blackboard every week and lets you know what topics to study for each exam and quiz. DO NOT buy the e-text for this class its like $70 and we never used it.", + "pos": 0.068, + "neu": 0.871, + "neg": 0.061, + "_id": { + "$oid": "6711d7b1cd60fca157e6100c" + } + }, + { + "text": "Honestly great Professor. Very sincere and wants nothing but for his student to understand the content he presents. Do not miss the quizzes!!!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e6100d" + } + }, + { + "text": "Professor is honestly a great guy who's understanding and cares about his students. He gives 3 in class exams, about 7-8 quizzes, all MC (drops the lowest) and a final. His class isn't that difficult if you try, and also all the answers can be found on quizlet lol. Overall his a cool and genuine guy.", + "pos": 0.251, + "neu": 0.711, + "neg": 0.038, + "_id": { + "$oid": "6711d7b1cd60fca157e6100e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b1cd60fca157e61010" + }, + "professor_name": "Souad Ajarar", + "rating": 3.2, + "department": "Mathematics department", + "comments": [ + { + "text": "Calc 2 is very hard, but Souad does her best to explain the material well. There were three exams (one dropped), homework, and the final. The exams were tough but similar to the syllabus homework so practice those a lot. Her notes helped a lot for the midterms. She also did a final review that helped a lot with preparing for the final exam.", + "pos": 0.118, + "neu": 0.839, + "neg": 0.043, + "_id": { + "$oid": "6711d7b1cd60fca157e61011" + } + }, + { + "text": "Souad is one of the best professors I've had. She's caring, and explains her material well. If you don't understand something, just ask her and she'll help you out!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e61012" + } + }, + { + "text": "Class wasn't hard same curriculum as a hs algebra and trig class, quizzes every week and few questions top like 5 questions. Provides a discount code for txt book $40. Textbook mandatory for hw assignments. Provides review worksheets for major tests but doesn't provide answer sheets you'd have to ask her during office hours for the answers.", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e61013" + } + }, + { + "text": "way too strict", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e61014" + } + }, + { + "text": "People complain about the quizzes and HW but it's universal across the math department. The quizzes (only 4 questions) are once a week, and she takes them from the HW but changes a few numbers. She's a great teacher and knows what she's doing, although you can't make up any quiz she drops the lowest 2.", + "pos": 0.089, + "neu": 0.831, + "neg": 0.081, + "_id": { + "$oid": "6711d7b1cd60fca157e61015" + } + }, + { + "text": "She is very good at explaining any problem. I would take her class again.", + "pos": 0.178, + "neu": 0.671, + "neg": 0.151, + "_id": { + "$oid": "6711d7b1cd60fca157e61016" + } + }, + { + "text": "Good Professor just make sure you're studying outside of class and come prepared for every class since there's a quiz everyday on the things you learned the day before.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d7b1cd60fca157e61017" + } + }, + { + "text": "HORRIBLE! if you have the chance to stay away, please do. Quizzes every week, no make- ups for ANYTHING, does not like questions and goes through the lectures REALLY fast.", + "pos": 0.113, + "neu": 0.656, + "neg": 0.232, + "_id": { + "$oid": "6711d7b1cd60fca157e61018" + } + }, + { + "text": "the math dept sucks so it's not her fault the way things are graded. we get quizzes every week, for a total of like 10 quizzes, plus two midterms, and a final. all the tests/quizzes are based on homework and problems done in class. she moves pretty fast but she's willing to stop and explain something if you ask.", + "pos": 0.086, + "neu": 0.815, + "neg": 0.098, + "_id": { + "$oid": "6711d7b1cd60fca157e61019" + } + }, + { + "text": "Her class is really long and she goes through material quickly. Her quizzes and exams are very hard. She doesn't allow you to make up exams or homework.", + "pos": 0.0, + "neu": 0.886, + "neg": 0.114, + "_id": { + "$oid": "6711d7b1cd60fca157e6101a" + } + }, + { + "text": "She doesn't allow to make up for quizzes or homework. This is very unfair sometimes as we have no control of certain situations and it is not our fault. Given valid reasons/proofs, requests for make up should be granted because we don't want to jeopardize our grades.", + "pos": 0.116, + "neu": 0.729, + "neg": 0.155, + "_id": { + "$oid": "6711d7b1cd60fca157e6101b" + } + }, + { + "text": "The class is long and she goes fast. Im lost in her class and confused. she talks a lot and isn't understanding when there is something like wifi problems.", + "pos": 0.072, + "neu": 0.718, + "neg": 0.21, + "_id": { + "$oid": "6711d7b1cd60fca157e6101c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b2cd60fca157e6101e" + }, + "professor_name": "Rose Wong", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Extremely fun and engaging lectures. Class material is difficult no doubt, but she prioritizes learning over grades. Very easy to get a good grade if you simply do the work.", + "pos": 0.349, + "neu": 0.606, + "neg": 0.044, + "_id": { + "$oid": "6711d7b2cd60fca157e6101f" + } + }, + { + "text": "You need to put in the work for the grade you want. You can screw up so badly in the midterm and comes with an A if you do all those extra credits. She prioritizes learning over test grades and we need more professors like that.", + "pos": 0.126, + "neu": 0.783, + "neg": 0.092, + "_id": { + "$oid": "6711d7b2cd60fca157e61020" + } + }, + { + "text": "25% Engagement | 25% Effort | 25% Midterm | 25% Final | She genuinely cares about the students and prioritizes learning over grades. The problems and the midterm can be tricky and difficult, but she gives generous partial and extra credit. The final was a group project where we made probability/statistics videos. Definitely take her!", + "pos": 0.232, + "neu": 0.695, + "neg": 0.072, + "_id": { + "$oid": "6711d7b2cd60fca157e61021" + } + }, + { + "text": "She cares about the students and tries to actually teach us something. Reminded of a high school class", + "pos": 0.15, + "neu": 0.85, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61022" + } + }, + { + "text": "The midterm exam was pretty difficult but if you participate a lot in class it will definitely help. There are also opportunities for extra credit. Professor Wong cares about her students and gives challenging topics, but she wants her students to succeed.", + "pos": 0.43, + "neu": 0.541, + "neg": 0.029, + "_id": { + "$oid": "6711d7b2cd60fca157e61023" + } + }, + { + "text": "EXTREMELY humble prof, genuinely cares for her students. She was my recitation leader for cs104 and she would put in a lot of effort to make sure everyone understands the topic no matter how far behind you may think you are. \n\nOpen to any critiques\nTakes no offense\nASK QUESTIONS, she cares deeply if her students understand or not\nShes wholesome", + "pos": 0.15, + "neu": 0.834, + "neg": 0.016, + "_id": { + "$oid": "6711d7b2cd60fca157e61024" + } + }, + { + "text": "Rose Wong was one of the best recitation leaders I've had in the past couple years here at CCNY. She really cares about her students and makes sure everyone understands the topics before moving onto the next one. She truly is amazing!", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61025" + } + }, + { + "text": "She's great guys. Definitely take her. Super kind and approachable. In recitation, she helps explain many discrete hw solutions and ensures we understand each question. Definitely recommend!", + "pos": 0.557, + "neu": 0.443, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61026" + } + }, + { + "text": "Absolute angel of a professor. She takes the time to make sure she can explain the content as best as possible to her students, as well as gives outside resources. It is very clear that she wants all of her students to do well!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61027" + } + }, + { + "text": "I had her as the TA for recitation in CSC104 with Kingsbury. She's extremely helpful when we reviewed the homework and clarified any confusion we had from lecture. Plus, if you attend the recitations, it'll bump up your grade and you'll know how to exactly do the homework. Her classroom was very welcoming and overall it was a great experience.", + "pos": 0.151, + "neu": 0.816, + "neg": 0.032, + "_id": { + "$oid": "6711d7b2cd60fca157e61028" + } + }, + { + "text": "Professor Wong the goat fr not much to say here, her classes are engaging and she cares a lot about her students and is passionate about their learning experience. Would take her class again. Just come to her lectures so you're not behind.", + "pos": 0.18, + "neu": 0.82, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61029" + } + }, + { + "text": "She's new but she's VERY good at what she does. Her lectures are very easy to follow through and she takes the time to help students that are behind.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e6102a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b2cd60fca157e6102c" + }, + "professor_name": "Ali Sadegh", + "rating": 3.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Nice professor. He checks in weekly on your project and is helpful but it is up to you and your group to get work done so make sure u have a good group. Dont slack off or u wont finish.", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e6102d" + } + }, + { + "text": "One may think that he is a no-nonsense individual, but he has a sociable character and that helps the students to tolerate some points such as his ignorance regarding your actual learning and progress in the project. Everything on your shoulders, and a few corrective comments from him rarely, but sometimes misleading. But he is smooth and lenient.", + "pos": 0.23, + "neu": 0.725, + "neg": 0.045, + "_id": { + "$oid": "6711d7b2cd60fca157e6102e" + } + }, + { + "text": "A very good professor with extensive knowledge in M.E.", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e6102f" + } + }, + { + "text": "Professor Sadegh cares about his students to finish their projects. He will constantly check on your progress, make sure you receive the funds and meet with the contractors as was planned. Perhaps the best choice to take senior design with.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61030" + } + }, + { + "text": "this is one of the few professors that really goes above and beyond for his students . he will prepare you for the real world, and will work with you to make sure your senior design project is a success. if you put in the time and effort, you will receive a good grade its as simple as that", + "pos": 0.137, + "neu": 0.863, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61031" + } + }, + { + "text": "Nice guy, knows his stuff, writes a lot on board, gives a lot of homework, exam questions not far from homeworks. BUT: his grading is absolutely unpredictable; maybe he's biased, maybe he grades based on impressions, i really don't know, but i took two courses with him and was badly under-graded in both, though i thought i did very good in both.", + "pos": 0.107, + "neu": 0.798, + "neg": 0.095, + "_id": { + "$oid": "6711d7b2cd60fca157e61032" + } + }, + { + "text": "Good professor. He try his best to make you understand. You will learn something from his class. Work through out the semester to have a good grade.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61033" + } + }, + { + "text": "Doesn't grade until class is over, fair grader though.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61034" + } + }, + { + "text": "You can tell he loves his research. His classes are interesting when you put time into them. Go to him for help- he always makes time.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61035" + } + }, + { + "text": "Lectures were boring and pointless, and not much help was provided for student projects. However, if you take the time to ask for help, he will give you his time. He can't always help much, but he will give the time.", + "pos": 0.042, + "neu": 0.846, + "neg": 0.112, + "_id": { + "$oid": "6711d7b2cd60fca157e61036" + } + }, + { + "text": "This Professor shows favoritism to students that do favors for him outside of the classroom. If you need a good grade be prepared to run errands and perform tasks that will promote his agenda", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61037" + } + }, + { + "text": "Regardless of the course, this professor teaches straight out of the book. If the book's no good or lacks helpful examples, then you're up a creek. If you have to take his course, verify that the HW material is the same as the exam material, or you could be in trouble come midterm and final time.", + "pos": 0.076, + "neu": 0.841, + "neg": 0.083, + "_id": { + "$oid": "6711d7b2cd60fca157e61038" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b2cd60fca157e6103a" + }, + "professor_name": "William Gibbons", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "Great professor he was very patient with the class. The work he gave was easy as long as you hand it all in you should be good. I recommend taking him he cares a lot he is understanding. One of the best classes I have taken.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e6103b" + } + }, + { + "text": "This professor is very chill and outgoing; always trying to make the class laugh but also goes deep into many different aspects of life that correlates to the material. Not that much work and if there is work all you have to do is pay attention in class, he tells you how to write your papers and what to include.", + "pos": 0.064, + "neu": 0.91, + "neg": 0.026, + "_id": { + "$oid": "6711d7b2cd60fca157e6103c" + } + }, + { + "text": "This is probably the easiest English class I have ever taken", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e6103d" + } + }, + { + "text": "He's a very kind person and always in a good mood to teach. The whole class will be based on reading and completing assignments. He does lecture a lot about topics that some people might find boring but a very easy class to pass. Make sure to put effort into assignments since he's a lenient grader.", + "pos": 0.215, + "neu": 0.759, + "neg": 0.025, + "_id": { + "$oid": "6711d7b2cd60fca157e6103e" + } + }, + { + "text": "This man may talk a lot, but you can really tell how passionate he is about the course material. Super super lenient about due dates the one time he assigned a lot of work , as long you do what you need to do and you get them in you should be good. If you are looking for a easy-going class, 100% would recommend.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e6103f" + } + }, + { + "text": "This is the perfect class. His lectures were informative and captivating. Workload was extremely fair. Learning how to make a website was also a relief from the essays that typical english courses demand you to do. Highly recommend that everyone take this professor.", + "pos": 0.236, + "neu": 0.735, + "neg": 0.029, + "_id": { + "$oid": "6711d7b2cd60fca157e61040" + } + }, + { + "text": "Easy A. Classes were low-key a waste of time because I never really learned anything new from them and the homeworks were confusing on what he wants from you, but at the end it didn't matter because he gave As for all of them. No real essays in this class just homeworks and a website at the end.", + "pos": 0.031, + "neu": 0.852, + "neg": 0.117, + "_id": { + "$oid": "6711d7b2cd60fca157e61041" + } + }, + { + "text": "He is a very laid back but amazing professor. If you pay attention in his class, it should be easy A. It's really great to talk to him", + "pos": 0.372, + "neu": 0.589, + "neg": 0.039, + "_id": { + "$oid": "6711d7b2cd60fca157e61042" + } + }, + { + "text": "I absolutely LOVE Prof. Gibbons. He's the best in and out of the classroom. He not only asks students how they are doing outside of his class, but if needed he is more than willing to help in any situation. HIS CLASS IS A MUST! Takes you outside and everything, very laid back but also clear on his expectations. Also, loves to communicate!", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61043" + } + }, + { + "text": "Good teacher! Respectable to the max. He'd never walk past me without saying hello. He took us on many trips around the college. Lectures are very entertaining.", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61044" + } + }, + { + "text": "He is one of the best professors I ever had. Although his lectures are little long, he tries to make them interesting. He is ready to help his students during office hours, and other times as well. He gives helpful feedback on term papers and if you are late for some reason just talk to him, he will help you. I highly recommend him!!!", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61045" + } + }, + { + "text": "He's a great professor, straight forward and really cool. He's a smart guy and he knows a lot about everything and he's always there to help you. If you do all the work, you will get an A in his class.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d7b2cd60fca157e61046" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b3cd60fca157e61048" + }, + "professor_name": "Amir Elzawawy", + "rating": 3.1, + "department": "Engineering department", + "comments": [ + { + "text": "Fun class, All group work..Take it in summer...lots of work, but interesting.. professor is helpful, but requires too many reports and matlab :(", + "pos": 0.291, + "neu": 0.589, + "neg": 0.119, + "_id": { + "$oid": "6711d7b3cd60fca157e61049" + } + }, + { + "text": "His class is so boring. He assigns homework every class which you need to do to complete the final project. His test were hard.", + "pos": 0.0, + "neu": 0.834, + "neg": 0.166, + "_id": { + "$oid": "6711d7b3cd60fca157e6104a" + } + }, + { + "text": "Despite learning a very useful software program, this course was very boring. Elzawawy is a fair teacher, but does not bring any energy to the course.", + "pos": 0.126, + "neu": 0.739, + "neg": 0.135, + "_id": { + "$oid": "6711d7b3cd60fca157e6104b" + } + }, + { + "text": "He is a good professor but challenging.", + "pos": 0.435, + "neu": 0.565, + "neg": 0.0, + "_id": { + "$oid": "6711d7b3cd60fca157e6104c" + } + }, + { + "text": "dont take him.hiz very hard and gives a lots of wrk for one credit.u would better wait for next sem but just dont take him.", + "pos": 0.074, + "neu": 0.875, + "neg": 0.051, + "_id": { + "$oid": "6711d7b3cd60fca157e6104d" + } + }, + { + "text": "He is just great prof., try to make it easy, not too much work, if you maintain attendance and submitting HW's you got at least B, wasn't very hard to get An A in his class, and ya he got a nice smile.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d7b3cd60fca157e6104e" + } + }, + { + "text": "i love his smile! he's a nice prof. everything is group projects_ easy grade. Make sure you are present for presentations or he'll take points off-effecting your grade. I got a B. It's easy-everything is in the manual.He does take attendance and a view quizzes. For once a week and 1 cr. it may b alot of work but it's easy. The projects are fun!", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d7b3cd60fca157e6104f" + } + }, + { + "text": "HE is a great professor, his work is not hard at all, the mose u have to do is actually come to class, take the quizes, which are all open book quizez and just pay attention and participate...I got an A in the class and i Think he was agreat professor, He is a little hard to understand sometimes, but thats why we have hand,to raise n ask questions!", + "pos": 0.056, + "neu": 0.912, + "neg": 0.032, + "_id": { + "$oid": "6711d7b3cd60fca157e61050" + } + }, + { + "text": "too much work for one credit. hard to understand what he explain.", + "pos": 0.186, + "neu": 0.714, + "neg": 0.1, + "_id": { + "$oid": "6711d7b3cd60fca157e61051" + } + }, + { + "text": "Very Hard to understand and english is poor. Does not explain the work, but he is lenient.", + "pos": 0.132, + "neu": 0.698, + "neg": 0.169, + "_id": { + "$oid": "6711d7b3cd60fca157e61052" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7b3cd60fca157e61053" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b3cd60fca157e61055" + }, + "professor_name": "Takoa Lawson", + "rating": 2.6, + "department": "Chemistry department", + "comments": [ + { + "text": "one hes realllyyy cute, two, he seems nice and is a pretty good teacher, and three he is very helpful", + "pos": 0.5, + "neu": 0.5, + "neg": 0.0, + "_id": { + "$oid": "6711d7b3cd60fca157e61056" + } + }, + { + "text": "Great professor.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d7b3cd60fca157e61057" + } + }, + { + "text": "I personally wouldn't take this professor.Right now he's pretty green and snobby. His exams are not bad, but I really hated the fact that he NEVER did problems in class. I learned chem on my own and thru workshop, honestly. The quizzes were very simple but the grading was unfair and definitely could drop your grade. You are better off with Salame.", + "pos": 0.215, + "neu": 0.61, + "neg": 0.175, + "_id": { + "$oid": "6711d7b3cd60fca157e61058" + } + }, + { + "text": "The problem with this class were the TA's that graded the exams, sometimes you got partial credit, others you didnt. I went to him and he gave me all the partial credit I deserved. He was fair but the final grading was confusing and he didnt give me (and many others in the class) credit for quizzes which affected final grade. The guy has potential.", + "pos": 0.119, + "neu": 0.797, + "neg": 0.084, + "_id": { + "$oid": "6711d7b3cd60fca157e61059" + } + }, + { + "text": "He's young and new to this and the first few classes will have to suffer due to his inexperience with curving and grading. This guy cares more about the units in a problem rather then if you understand the problem or not. He's the strictest professor in this department and he never follows what he promises.DO NOT TAKE THIS GUY!!! AWFUL", + "pos": 0.041, + "neu": 0.772, + "neg": 0.186, + "_id": { + "$oid": "6711d7b3cd60fca157e6105a" + } + }, + { + "text": "CCNY should stop hiring researchers & non-prosessors to teach science courses! These courses are difficult already and students now have to deal with individuals who may be very smart but who CANNOT TEACH! Which is the case of professor Lawson who is someone who has trainig wheels and is practcing while messing up everyones GPA. Avoid at all cost", + "pos": 0.031, + "neu": 0.863, + "neg": 0.106, + "_id": { + "$oid": "6711d7b3cd60fca157e6105b" + } + }, + { + "text": "Everybody should throw rotten eggs at him, He Basically reads the book concepts and paste it on PPT. But Doesn't do any exercises on class, Fast speaker, Test are the same as Salame. But doesn't do any overview. Those kissbuds will like him. Extremely harsh grader and doesn't let you breath.", + "pos": 0.056, + "neu": 0.832, + "neg": 0.112, + "_id": { + "$oid": "6711d7b3cd60fca157e6105c" + } + }, + { + "text": "He STINKS, is new in CCNY, Takes Professor Salame sample tests. But doesn't go over it. Not even an overview before exam, and questions are nothing like the book(much harder and incomprehensible). He needs to get a life. If you take him, you'll ruin your major. Believe it. CHEM104 is hard to understand, but with this guy will make it miserable.", + "pos": 0.0, + "neu": 0.782, + "neg": 0.218, + "_id": { + "$oid": "6711d7b3cd60fca157e6105d" + } + }, + { + "text": "Professor nice guy but CANNOT teach,goes off on random nonsense,post sample exams with no solutions, if you spend all your time doing the sample exams wrong you won't know until you mess up on the actual exam unless you go to tutoring,that being said this was a night class so tutoring was not an option for those who work full time! Stay Away!", + "pos": 0.027, + "neu": 0.835, + "neg": 0.138, + "_id": { + "$oid": "6711d7b3cd60fca157e6105e" + } + }, + { + "text": "If you want to learn the chemistry then take him, but if you want to pass the exams then good luck trying.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d7b3cd60fca157e6105f" + } + }, + { + "text": "Oki....all this professor will do in class is go over the concept and no numerial problems that will be on the exam....Which is going to mess you up on the exam badly....Study the previous exams and finals from professor Salame..Don't count on him....My opinion is avoid him if you hate chemistry because he will not make it any better for you to und", + "pos": 0.071, + "neu": 0.783, + "neg": 0.146, + "_id": { + "$oid": "6711d7b3cd60fca157e61060" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b4cd60fca157e61062" + }, + "professor_name": "Charles Townsend", + "rating": 1.6, + "department": "Humanities department", + "comments": [ + { + "text": "This is the worst professor of all times, he would make sure you fail or give you very hard time to survive.. I withdrew because no matter what an effort I made, he didn't seem to come towards me. Inconsiderate, he doesn't give a d--- about your progress. I am working full time so while tearing myself between school and work, he was the WORST choic", + "pos": 0.063, + "neu": 0.714, + "neg": 0.223, + "_id": { + "$oid": "6711d7b4cd60fca157e61063" + } + }, + { + "text": "Challenging professor, can be hard to deal with but the other reviews are a bit harsh. As long as you do all of the work you will do well. Like someone else said, he expects a lot for an intro class, with homework every night. His biggest fault is a general intolerance for questioning, which is frustrating. Don't take him if you don't want to work!", + "pos": 0.09, + "neu": 0.714, + "neg": 0.196, + "_id": { + "$oid": "6711d7b4cd60fca157e61064" + } + }, + { + "text": "Some people on here are just complaining because they got bad grades. I missed the first two weeks of class and I got a A. But I did everything the professor said. You just have to follow his directions. You can?t bee a slacker.1. Do the homework and you ?ll be ok.", + "pos": 0.0, + "neu": 0.897, + "neg": 0.103, + "_id": { + "$oid": "6711d7b4cd60fca157e61065" + } + }, + { + "text": "A lot of homework; each week has a quizze,confusion reading,watching video discussion.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61066" + } + }, + { + "text": "for a intro class he expects a lot from students. and he is a hard grader. most of the work is online and he graded them in the beginning later on he stopped checking and every wrk you handed in person he never gave it bac so you dont noe all of ur grades. He is very rude and unreasonable.. he SUCKSSSSS..killed my gpa", + "pos": 0.0, + "neu": 0.902, + "neg": 0.098, + "_id": { + "$oid": "6711d7b4cd60fca157e61067" + } + }, + { + "text": "Had him 4 Anthropology101 in LAGCC. My first year in college and i was excited..until i took his class. He is soo rude and unhelpful. He wanted a 10pg APA format paper due the 1st wk of class & it was an intro class not writing intensive!! I got a C+ in his class..GPA KILLER is right!I worked hard, asked ques, but he said \"figure it out on ur own.\"", + "pos": 0.0, + "neu": 0.904, + "neg": 0.096, + "_id": { + "$oid": "6711d7b4cd60fca157e61068" + } + }, + { + "text": "He seems unfamiliar with black studies. He kept calling huge ethnic groups in Africa \"tribes\". I am a black studies major and I got an A in everything else this semester but he gave me a D. One person actually walked out of class after he got rude and nasty with her. Anyway, dont bother with this guy, he doesnt even impart any knowledge.", + "pos": 0.058, + "neu": 0.821, + "neg": 0.122, + "_id": { + "$oid": "6711d7b4cd60fca157e61069" + } + }, + { + "text": "The worst professor at City College. I wish i dropped his class when I had the opportunity .. UGH!", + "pos": 0.193, + "neu": 0.528, + "neg": 0.279, + "_id": { + "$oid": "6711d7b4cd60fca157e6106a" + } + }, + { + "text": "If you want to keep an ounce of your self-confidence, do not take ANY class by this prof. (Check out his ratings on the LGCC page.) 40% participation/one page assignments, 60% final paper with confusing instructions and strict limits on the bibliography. Hope this class gets cancelled from CCNY because it's a GPA killer.", + "pos": 0.068, + "neu": 0.798, + "neg": 0.134, + "_id": { + "$oid": "6711d7b4cd60fca157e6106b" + } + }, + { + "text": "Wow, this guy is rude, self-important, & mad annoying. He will personally insult you and not give a damn. One page assignments daily, & even A students are getting Cs & Ds. I wish I never took this class. I didn't learn a thing, & he doesn't really care. Doesn't take attendance but by the time half the class drops, he can count the # of ppl anyway.", + "pos": 0.077, + "neu": 0.79, + "neg": 0.132, + "_id": { + "$oid": "6711d7b4cd60fca157e6106c" + } + }, + { + "text": "Someone had to add this crazy guy to CCNY's professor listing...so that no one will ever take him again! If you want a Professor that doesn't care about his students, take this class. Rude, inconsistent grading, and downright ridiculous. He gets an F from me. He shouldn't be allowed to teach. DO NOT TAKE HIS CLASS!!! You have been warned.", + "pos": 0.018, + "neu": 0.75, + "neg": 0.231, + "_id": { + "$oid": "6711d7b4cd60fca157e6106d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b4cd60fca157e6106f" + }, + "professor_name": "Rossen Ventzislalov", + "rating": 3.6, + "department": "Philosophy department", + "comments": [ + { + "text": "He's great and hilarious. Gives you impeccable advice on papers.You really need to work your butt off to get a good grade in his class. All in all he's a great professor.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61070" + } + }, + { + "text": "Great professor. If you let his humor get the best of you then you are not seeing the true professor he is. I loved his idea to question the world in ways many people dont. What do students think taking a Phil class is about. He is extremely helpful and is a young guy that has a true passion to teach; which is very hard to find in City college.", + "pos": 0.263, + "neu": 0.691, + "neg": 0.046, + "_id": { + "$oid": "6711d7b4cd60fca157e61071" + } + }, + { + "text": "hes pretty egotistical, apparently full of himself. also an atheist which he isnt shy to share every class. because of this, he will offend religious students", + "pos": 0.155, + "neu": 0.658, + "neg": 0.188, + "_id": { + "$oid": "6711d7b4cd60fca157e61072" + } + }, + { + "text": "If youre not use to(or disslike) interactive classes where its mandatory for you to speak up and express your opinions on the subjects (ie religion,God...) then dont take him.", + "pos": 0.044, + "neu": 0.956, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61073" + } + }, + { + "text": "I am a good student. This man is a horrible professor and person (he insults his students). His lectures are unclear and the text is difficult to decipher. Avoid this professor at all costs.", + "pos": 0.066, + "neu": 0.638, + "neg": 0.296, + "_id": { + "$oid": "6711d7b4cd60fca157e61074" + } + }, + { + "text": "This professor is one of the few I've met so far who are straight to the point and who's idea of teaching is exactly as it should be. He regards his student as mature enough to do the work and be responsible for understanding. fair as it comes do the work get the A.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61075" + } + }, + { + "text": "He is not a very bad prof but It would be nice if he respects students a bit more. A great prof should not be full of hubris and sarcastic.", + "pos": 0.349, + "neu": 0.592, + "neg": 0.059, + "_id": { + "$oid": "6711d7b4cd60fca157e61076" + } + }, + { + "text": "I didn't think I would like this professor but the more i listen to him, i really like him. Every word that he mutters is hilarious and he is so to the point. he does not want to baby his students. do the work. get a good grade. very very fair.", + "pos": 0.264, + "neu": 0.715, + "neg": 0.021, + "_id": { + "$oid": "6711d7b4cd60fca157e61077" + } + }, + { + "text": "amamzing guy, extreamly funny really helpful,class is mostly discussion, bring in interesting stuff and he will turn it into a lesson. 2 test one paper, all very easy.", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61078" + } + }, + { + "text": "Questions for the midterm and final are given prior which is extremely helpful. Good prof and interacts well w/ students. I highly recommend him", + "pos": 0.358, + "neu": 0.642, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61079" + } + }, + { + "text": "Prof. Ventislavov is a very straight forward guy. He makes it clear from the start what he expects from you. There is no homework given which is a plus. Just be prepared to do the readings for class discussion because he will call people out. He's fair, and very knowledgeable on the subject. He has a great sense of humor. The exams are very f", + "pos": 0.202, + "neu": 0.769, + "neg": 0.029, + "_id": { + "$oid": "6711d7b4cd60fca157e6107a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b4cd60fca157e6107c" + }, + "professor_name": "Bushra Ahsan", + "rating": 4.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "AWESOME professor. She confuses herself once in a while, but she'll pick up on it and correct herself. She keeps the class very interesting, and her quizzes/tests are fair. she gives a quiz after every chapter in the book, so you only have to review per chapter. great class, it's mandatory for EE majors, and is an easy A!", + "pos": 0.282, + "neu": 0.696, + "neg": 0.022, + "_id": { + "$oid": "6711d7b4cd60fca157e6107d" + } + }, + { + "text": "She is a FANTASTIC instructor..alot easier than Chakravarthy..she knows the material and she is very very helpful..for teaching this course for the first time i guess she was confident and extremely positive...she is an easy grader and she is very funny!", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e6107e" + } + }, + { + "text": "She knows what she is teaching. Explanation is very clear. She goes step by step. If you want to learn take her class. But she is not teaching EE210 next semester....which is Fall 09.", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e6107f" + } + }, + { + "text": "smart, funny, and very helpful. incredibly easy to get an A.", + "pos": 0.634, + "neu": 0.366, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61080" + } + }, + { + "text": "I took 2 classes with Prof. Ahsan. I got As in both classes. In the first class she seemed a bit nervous and unsure, but she then became ABSOULTELY FANTASTIC in the second class. She is a very easy grader and very accessible and knows and loves the material really well. Will make the book crystal clear. Loved the class and professor.", + "pos": 0.323, + "neu": 0.641, + "neg": 0.036, + "_id": { + "$oid": "6711d7b4cd60fca157e61081" + } + }, + { + "text": "AWESOME Professor.....wants to help her student to succeed in her class...If u wanna know Switching System and also ge good grades, take her...she loves teaching...specially meet her during her office hours..she helps a lot...The book is annoying...study the exercise and solved probs & u will be fine...", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61082" + } + }, + { + "text": "Bushra Ahsan is a great professor. Yes, she does not give examples of reviews but I still managed to get an A (this is not a high school class anyway so take this class if you can manage to study like a university adult student!) She is also very smart and loves the material, and does a great job communicating it to the students.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61083" + } + }, + { + "text": "She is a nice Prof, Dr., etc, and a very fair grader. She will help you very much. Go to her office to make her like you...as a student that is, then she will never fail you, especially if she knows your name. :)", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61084" + } + }, + { + "text": "Better off taking Kim or someother person.She tries but just confuses you.She gives no HW,or reviews so you only see problems on the day of the exam.The plus side is that she is a very easy grader.", + "pos": 0.131, + "neu": 0.673, + "neg": 0.196, + "_id": { + "$oid": "6711d7b4cd60fca157e61085" + } + }, + { + "text": "The course is easy in the beginning but gets a lot harder (warning). She does not give examples or review for exams or give HW so you have to test yourself and know the Mat. Your basically going to learn from the book. Shes an easy grader though.", + "pos": 0.108, + "neu": 0.835, + "neg": 0.058, + "_id": { + "$oid": "6711d7b4cd60fca157e61086" + } + }, + { + "text": "She's a PHD student in the EE department. She's nice but does not know the material really well. If you ask her questions she might not know the answer. Everything she teaches is by the order of the book. So get the book and study. Her exams are also based on the book.", + "pos": 0.089, + "neu": 0.911, + "neg": 0.0, + "_id": { + "$oid": "6711d7b4cd60fca157e61087" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b5cd60fca157e61089" + }, + "professor_name": "Aminata Diop", + "rating": 4.5, + "department": "Education department", + "comments": [ + { + "text": "What an amazing professor. If you do your assignments and read the material you will pass. She's amazing knowledgable and relatable. She is available outside of class which is so important She is a quick responder she really wants all her students to do well. I'm glad I took her class.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6108a" + } + }, + { + "text": "Dr. Diop is very understanding and knowledgeable of culture and her class is a thinktank of amazing ideas and relevant discussions. You won't regret taking this class. Think about culturally responsive teaching and this class embodies that. It has all the elements that help teachers to be fierce leaders in urban classrooms.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6108b" + } + }, + { + "text": "Excellent Professor. This was my favorite Class. I enjoyed the class discussions as well as the group presentations. You will have lots of fun learning. Her homework and papers are explained thoroughly, and she is easily accessible outside of class if you need help.", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6108c" + } + }, + { + "text": "THIS PROFESSOR IS AMAZING. No worries! Her way of teaching is fun. It made taking the train at night worth it. Huge syllabus but has every single detail. Everything she expects is in the syllabus. She is definitely someone who cares and is always readily available to jump on a call or text! I feel like a better person because of this class", + "pos": 0.316, + "neu": 0.684, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6108d" + } + }, + { + "text": "Professor Diop is truly amazing and inspirational. Her course has been one of the best that Ive taken in my graduate school career. The winter course is a lot of work and you have to make sure that you can commit to that, but the amazing conversations during class is all worth it. She is very knowledgeable. AMAZING OVERALL!", + "pos": 0.35, + "neu": 0.65, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6108e" + } + }, + { + "text": "Not sure if the online module contributed to the amount of group work but there was LOTS of group work. Overall she's a great professor who cares about her students. You will need to work for your grade, but she is also a very understanding no bs kind of teacher. There was a lot of reading and lecturing. I would take her again if I had to.", + "pos": 0.125, + "neu": 0.814, + "neg": 0.061, + "_id": { + "$oid": "6711d7b5cd60fca157e6108f" + } + }, + { + "text": "Professor Diop is the most committed, caring and driven teacher I've ever encountered. I've never learnt more or felt more enriched when taking a class. She works very hard for her students and is passionate about making education work in a remote setting. Group projects are worth a lot and she expects everyone to be an adult, but it's worth it.", + "pos": 0.15, + "neu": 0.83, + "neg": 0.02, + "_id": { + "$oid": "6711d7b5cd60fca157e61090" + } + }, + { + "text": "Synopsis: worst professor the 5 of us have ever had. Don't even consider enrolling unless you're a masochist. Positives: Excellent selection of articles. Negatives: She doesn't teach, just provides a tedious hour-long review. Threatens you like schoolchildren if you turn off your camera. Feedback is superficial. Grueling 5-hour online sessions", + "pos": 0.152, + "neu": 0.698, + "neg": 0.149, + "_id": { + "$oid": "6711d7b5cd60fca157e61091" + } + }, + { + "text": "Great class. Almost purely discussion. Prof Diop stays out of it when she should, but makes sure to guide the discussion. I had lots of thoughtful discussions in this class. Good bit of work too, especially because it was a summer session. But not a hard grader. Would take any class again with her.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e61092" + } + }, + { + "text": "Professor Diop is the best professor at if you're looking for someone who is objective and open to any kind of discourse related to the class. She is extremely supportive, energetic and keeps the class lively at all times! I wish she were teaching all of the Graduate courses for Education!", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e61093" + } + }, + { + "text": "Professor Diop is amazing! She's so fair and inspirational. This course does require reading (but nothing over the top) and all the readings are interesting. I would definitely sign up for her class.", + "pos": 0.324, + "neu": 0.631, + "neg": 0.044, + "_id": { + "$oid": "6711d7b5cd60fca157e61094" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b5cd60fca157e61096" + }, + "professor_name": "Helio Dos Santos", + "rating": 3.7, + "department": "Psychology department", + "comments": [ + { + "text": "He is phenomenal professor! He is patient and enjoys class participation. Attendance is a must! He gives quizzes (drops the lowest grade) and a final. This semester he did not assign any papers, which was a big help being that other courses assigned papers. This was basically a stress free course. Recommend for those going into counseling.", + "pos": 0.18, + "neu": 0.741, + "neg": 0.079, + "_id": { + "$oid": "6711d7b5cd60fca157e61097" + } + }, + { + "text": "Professor Dos Santos was great. He had clear grading criteria. There were five quizzes (the lowest one got dropped), a paper, a final, and an extra credit assignment. Be ready to read about seven famous psychologists and their theories of personality and religion.", + "pos": 0.225, + "neu": 0.725, + "neg": 0.05, + "_id": { + "$oid": "6711d7b5cd60fca157e61098" + } + }, + { + "text": "Professor is really very kind. It is true, he doesn't have much paitence for students who do not do their best and then complain about their grades. Do your work and you will learn a great deal.", + "pos": 0.223, + "neu": 0.657, + "neg": 0.12, + "_id": { + "$oid": "6711d7b5cd60fca157e61099" + } + }, + { + "text": "This really has been my favorite class this semester. Professor Dos Santos' lectures are super interesting and engaging, and he really cares that we do well in the class. There are several quizzes, midterm, final, and one paper. Just show up and do the work. I highly recommend!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6109a" + } + }, + { + "text": "He doesn't care about the well-being of his students. The majority of the class is struggling and he doesn't care to accommodate. He doesn't care to listen to the concerns of his students, please do yourselves a favor and avoid this man.", + "pos": 0.095, + "neu": 0.662, + "neg": 0.244, + "_id": { + "$oid": "6711d7b5cd60fca157e6109b" + } + }, + { + "text": "I've never felt so condescended in my life. When the majority of class has a low grade, he'll spend a good amount of class time questioning our intelligence and skills rather than finding a better way to teach us the material. I've taken harder classes, but I am disappointed in the fact that I feel as though I am not learning a single thing.", + "pos": 0.084, + "neu": 0.819, + "neg": 0.097, + "_id": { + "$oid": "6711d7b5cd60fca157e6109c" + } + }, + { + "text": "He explains every detail you need to know in assignments, quizzes, and exams. He is very knowledgeable and gives an extra credit opportunity. He is flexible, caring and he is always willing to help outside class. He replies to emails. Reading the chapters before class would help you a lot.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6109d" + } + }, + { + "text": "Prof Santos is by far one of the best professors at CCNY! Very knowledgeable & provides lots of useful information. Makes lectures fun & intriguing! One paper, midterm, final & 2 quizzes. Provides detailed feedback for paper. Discussion heavy, so at least participate in the chat or he will call on you. You will learn a lot! Highly recommend.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6109e" + } + }, + { + "text": "Professor Helio is very passionate about his class; he explains very clear and fluent. He makes sure everyone understands the material. Lectures and discussions are fascinating. He makes you see things from different perspectives. He is a very nice professor. One main assignment, two quizzes, midterm and final. He is the best!", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d7b5cd60fca157e6109f" + } + }, + { + "text": "Badly written exams, heavy textbook use, unclear syllabus and assignment criteria. Teaches from the textbook often word-for-word but requires attendance. Paper was easy and graded lightly, but inexperience as a professor makes him a hard pass for future classes.", + "pos": 0.087, + "neu": 0.795, + "neg": 0.117, + "_id": { + "$oid": "6711d7b5cd60fca157e610a0" + } + }, + { + "text": "Not clear,makes own tests so beware for tricky answers, pushed textbook almost no one could get even towards the end of the semester and got specific questions from there instead of the notes,lecture heavy literally reads off notes,not caring even during the pandemic,if you miss class you will not pass", + "pos": 0.059, + "neu": 0.843, + "neg": 0.098, + "_id": { + "$oid": "6711d7b5cd60fca157e610a1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b6cd60fca157e610a3" + }, + "professor_name": "Jennifer Sloan", + "rating": 4.2, + "department": "Sociology department", + "comments": [ + { + "text": "There were multiple assignments from the syllabus that were removed because of time management, barely any feedback and the work was graded very late. The class itself is not difficult, but its just the time management that conflicting, and it doesn't help to not know what grade you currently have when feedback is given after 5 weeks or not all.", + "pos": 0.024, + "neu": 0.877, + "neg": 0.099, + "_id": { + "$oid": "6711d7b6cd60fca157e610a4" + } + }, + { + "text": "Prof Sloan put a lot on the syllabus, and unfortunately, that meant some of it was pushed off due to time, etc. As my first Sociology class, I enjoyed the project and appreciated her help when I was lost. She was also very supportive of every student's ideas and helped us figure out what we could realistically do with little experience.", + "pos": 0.165, + "neu": 0.769, + "neg": 0.066, + "_id": { + "$oid": "6711d7b6cd60fca157e610a5" + } + }, + { + "text": "She is a great professor and she is very clear. She is a fair grader and she gives so much reading materials which helps make your assignments so much easier!! Take her!! You will enjoy her class!!", + "pos": 0.384, + "neu": 0.616, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610a6" + } + }, + { + "text": "amazing professor, great lectures and she is super sweet!", + "pos": 0.751, + "neu": 0.249, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610a7" + } + }, + { + "text": "Professor Sloan was pleasant, the lectures consisted a lot of group discussions and readings. She is clear about what is required of us for the course. However, she does grade late, but is fair grader.", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610a8" + } + }, + { + "text": "She's a good professor, and I enjoyed her lectures and discussions in class. She was absent a few times and doesn't grade stuff right away. You're mainly graded on quizzes, group discussions and the midterm/final exam. Even though she was late when it came to grading, she is a good professor. If you're thinking about this class, take it with her.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610a9" + } + }, + { + "text": "A very good class to take especially when taking difficult classes because it doesn't require a lot of work. I learned a lot in this class and it was also an easy A. definitely recommend taking it!!", + "pos": 0.255, + "neu": 0.686, + "neg": 0.059, + "_id": { + "$oid": "6711d7b6cd60fca157e610aa" + } + }, + { + "text": "She's a nice prof. There is lot of work but sometimes she cancel stuff based on time. There are lot of interesting reading and you will learn a lot. She give you good amount of time to finish your work. Not a tough grader. Do your work and you will pass.", + "pos": 0.183, + "neu": 0.775, + "neg": 0.042, + "_id": { + "$oid": "6711d7b6cd60fca157e610ab" + } + }, + { + "text": "Too many things on syllabus resulting in things getting moved, pushed or cancelled. Made students a little uneasy because didn't know when things would be due & assignment instructions were sometimes not posted. Lots of writing is expected. She was very nice and understanding, though.", + "pos": 0.063, + "neu": 0.85, + "neg": 0.087, + "_id": { + "$oid": "6711d7b6cd60fca157e610ac" + } + }, + { + "text": "Professor Sloan is a light well needed in CCNY. She is one of the most caring, passionate, and intelligent Professors the college and Sociology department has to offer. You can tell she cares about her students and lessons. Extremely clear assignments and rubrics. She makes the classroom setting inviting and a place to interact with one another.", + "pos": 0.29, + "neu": 0.71, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610ad" + } + }, + { + "text": "I love Sloan so much. As a finance person, I couldn't see value in academia. Sloan completely changed my perspective. She helped me realize that every single experience I've had, even if they aren't skill-oriented, shaped an incredibly equipped mind. Introspection is everything. Consistent and frequent participation helped me realize my power. TY!", + "pos": 0.078, + "neu": 0.887, + "neg": 0.035, + "_id": { + "$oid": "6711d7b6cd60fca157e610ae" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b6cd60fca157e610b0" + }, + "professor_name": "Mary Sweeney", + "rating": 3.8, + "department": "Art department", + "comments": [ + { + "text": "She got an attitude, passive aggressive attitude.", + "pos": 0.214, + "neu": 0.595, + "neg": 0.19, + "_id": { + "$oid": "6711d7b6cd60fca157e610b1" + } + }, + { + "text": "I hated ceramics until her class", + "pos": 0.0, + "neu": 0.543, + "neg": 0.457, + "_id": { + "$oid": "6711d7b6cd60fca157e610b2" + } + }, + { + "text": "She seems to have a lot of knowledge in her area but she is kind of rude and VERY strict. She has a bad way to talk to students I understand is her job to make sure students stay on task but there is better ways to talk to students. The projects do seem fun though, but her attitude can be hard to deal with.", + "pos": 0.139, + "neu": 0.728, + "neg": 0.133, + "_id": { + "$oid": "6711d7b6cd60fca157e610b3" + } + }, + { + "text": "I really enjoyed her Intro to Ceramics class. She is so passionate about ceramics and loves to see her students care about it too. She really wants to see you succeed so just have fun with it. She can be a bit sassy at times but I find it funny lol. She also loves to just connect with her students and get to know you all.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610b4" + } + }, + { + "text": "She's good in her field and she knows how to teach it. My only problem with her is that she can be a little rude with the students sometimes, to the point where people can feel intimidated to ask a question or make a comment because she can give a bitter answer. She is a good person to learn ceramics if you are willing to overlook her attitude.", + "pos": 0.074, + "neu": 0.786, + "neg": 0.141, + "_id": { + "$oid": "6711d7b6cd60fca157e610b5" + } + }, + { + "text": "I took professor Sweeney's online fall course and it was a lot of fun! She really cares about ceramics and wants her students to put in the work but you end up learning a lot from her. She teaches something new each class so it be best not to miss more than one. 2 projects, a presentation and 1 final project that you get three weeks to do.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610b6" + } + }, + { + "text": "I thought she was a brilliant professor. She his very patient with beginners and you can tell she really cares about her students. Dont be late or absent as that will affect your grade. besides that, just do your work in a timely manner and you will be alright. its an easy/very chill environment.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610b7" + } + }, + { + "text": "Shes a really good professor if you put enough effort in your work. Just be responsible and do everything as she says. Follow the rules in the syllabus, dont be late, dont miss any class and youll be good.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610b8" + } + }, + { + "text": "She's very chill. Go to class, get work done. I took her 300 level sculpture class but there are two different types of classes so read course description carefully.", + "pos": 0.059, + "neu": 0.941, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610b9" + } + }, + { + "text": "She seems like shes a bit of a smart-ass, but shes really not. Just come to class prepared and do every project with lots of effort and you'll do very well.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610ba" + } + }, + { + "text": "She seems like shes a bit of smart-ass, but shes really not. Just come to class prepared and do every project with lots of effort and you'll do very well.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b6cd60fca157e610bd" + }, + "professor_name": "Shirshendu Chatterjee", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "He's amazing. The materials are tough, but the exams were pretty easy. He was very clear when presenting the material. Homework is optional, but he puts up solutions. I would say he is a lenient grader. Take him.", + "pos": 0.372, + "neu": 0.604, + "neg": 0.024, + "_id": { + "$oid": "6711d7b6cd60fca157e610be" + } + }, + { + "text": "His exams are tough but if you focus on text book and his lectures carefully you will not have much difficulty to do well in his class.", + "pos": 0.223, + "neu": 0.737, + "neg": 0.04, + "_id": { + "$oid": "6711d7b6cd60fca157e610bf" + } + }, + { + "text": "Doesn't care much about students- 1/3 of the class failed, he is basically talking to himself during lectures, goes extremely fast during lectures, even if you attempt to do extra credit for him- be aware, it doesn't count much. He gives very vague responses if you email him about anything. If you can self study well, take him.", + "pos": 0.072, + "neu": 0.811, + "neg": 0.117, + "_id": { + "$oid": "6711d7b6cd60fca157e610c0" + } + }, + { + "text": "His quizzes and exams are very hard. Make sure to do the homework and review the examples he does in class as they are similar. He expects you to do 4-6 problems with parts in a short amount of time for exams. He isnt open minded to the fact students need time to take in and complete the problems. Also the grader has something against students.", + "pos": 0.036, + "neu": 0.865, + "neg": 0.099, + "_id": { + "$oid": "6711d7b6cd60fca157e610c1" + } + }, + { + "text": "I must say his lectures are boring and not at all interesting. He is a mediocre Professor.", + "pos": 0.0, + "neu": 0.767, + "neg": 0.233, + "_id": { + "$oid": "6711d7b6cd60fca157e610c2" + } + }, + { + "text": "He was very clear when presenting the material. The class itself is hard, but he went slow and didn't assume prior knowledge, and was willing to go over concepts or homework questions again. Homework is optional, but he puts up solutions. I would say he is a lenient grader. Lectures can be a bit boring sometimes but overall, I would take him again.", + "pos": 0.097, + "neu": 0.843, + "neg": 0.06, + "_id": { + "$oid": "6711d7b6cd60fca157e610c3" + } + }, + { + "text": "His exams are difficult. This graduate and undergraduate course is not easy. Study Harder for the exam!", + "pos": 0.0, + "neu": 0.743, + "neg": 0.257, + "_id": { + "$oid": "6711d7b6cd60fca157e610c4" + } + }, + { + "text": "Most uninspiring professor I have taken in my entire life. He talks to himself rather than lectures. His excuse for not communicating with the class is because he is \"blind.\" Expect to learn everything from doing a ton of homework problems. He doesn't grade homework nor test himself. I'm not sure why he is even there.", + "pos": 0.021, + "neu": 0.857, + "neg": 0.121, + "_id": { + "$oid": "6711d7b6cd60fca157e610c5" + } + }, + { + "text": "Boring Lecturer, but then again Linear Algebra is really REALLY abstract. I asked him to graph some of the stuff to get a visual understanding and improve my geometric intuition. The Course was fine until we got to Vector Spaces, at that point the lectures made no sense. There is no denying he understands the material, but he struggles to convey it", + "pos": 0.119, + "neu": 0.775, + "neg": 0.106, + "_id": { + "$oid": "6711d7b6cd60fca157e610c6" + } + }, + { + "text": "This professor is beneficial, but numerous questions on homework assignment are complicated before due date if you don't answer them.", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d7b6cd60fca157e610c7" + } + }, + { + "text": "Grades selected HW problems. homeworks are long and hard. tries to push theory, but can't really teach it. boring and uninspiring. tests aren't that difficult. curves. overall slightly below average", + "pos": 0.076, + "neu": 0.742, + "neg": 0.182, + "_id": { + "$oid": "6711d7b6cd60fca157e610c8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b7cd60fca157e610ca" + }, + "professor_name": "John DiBartolo", + "rating": 3.2, + "department": "Physics department", + "comments": [ + { + "text": "Makes physics 2 easy. Would recommend for anyone that needs a science elective. No curves but simple exams and quizzes. Study hard and youll do fine", + "pos": 0.196, + "neu": 0.698, + "neg": 0.106, + "_id": { + "$oid": "6711d7b7cd60fca157e610cb" + } + }, + { + "text": "Guy doesn't curve even if his life depended on it. Final was too hard", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d7b7cd60fca157e610cc" + } + }, + { + "text": "Tests were too hard. He also rushed the material that was on the final.", + "pos": 0.0, + "neu": 0.903, + "neg": 0.097, + "_id": { + "$oid": "6711d7b7cd60fca157e610cd" + } + }, + { + "text": "He's a good professor but near the end of the course everything started to go down hill! Quizzes and test became way too hard!", + "pos": 0.097, + "neu": 0.842, + "neg": 0.061, + "_id": { + "$oid": "6711d7b7cd60fca157e610ce" + } + }, + { + "text": "He is a decent professor, his lectures are pretty dense. Class was super fast tho bc he rushed it around the middle of the semester even tho he taught well all around the semester. This class is not an easy class and requires you to study every day. His final was out of this world hard... If he curved it would relieve alot of pressure but he doesnt", + "pos": 0.107, + "neu": 0.832, + "neg": 0.061, + "_id": { + "$oid": "6711d7b7cd60fca157e610cf" + } + }, + { + "text": "Overall good class, very good professor but his test were very hard. Quizzes were easier than his tests. It felt like the ta and the professor were never on the same page. I would retake the class but next time i'll study harder for the final. Final caught me off guard.", + "pos": 0.186, + "neu": 0.779, + "neg": 0.035, + "_id": { + "$oid": "6711d7b7cd60fca157e610d0" + } + }, + { + "text": "FINAL WAS WAY TOO HARD!!!!", + "pos": 0.0, + "neu": 0.609, + "neg": 0.391, + "_id": { + "$oid": "6711d7b7cd60fca157e610d1" + } + }, + { + "text": "Overall good class, but final was way too hard!!! He took his time for the earlier chapters than rushed the last couple of chapters. Final might have killed my grade. Hopefully he curves <3", + "pos": 0.217, + "neu": 0.616, + "neg": 0.167, + "_id": { + "$oid": "6711d7b7cd60fca157e610d2" + } + }, + { + "text": "He does not curve and that is a problem when it comes to a Physics class. Also he does not teach to well he just rambles on and on and does not stop. If he explained things slower and with more detail he would be better. Also he is not specific when it comes to what will be on the exam the homework he gives as nothing to do with the exam.", + "pos": 0.062, + "neu": 0.88, + "neg": 0.058, + "_id": { + "$oid": "6711d7b7cd60fca157e610d3" + } + }, + { + "text": "FANTASTIC!Great teacher! Explains things well,breaks down everything. Funny guy, really nice, speaks english. Exams are what he teaches in class. Need to attend lecture to pass. Quizzes wednesdays,not difficult,again based on what he teaches. HWs twice a week. Not too hard either and not a lot. NO CURVE. But its not needed! Hes going back to NYU :(", + "pos": 0.12, + "neu": 0.821, + "neg": 0.06, + "_id": { + "$oid": "6711d7b7cd60fca157e610d4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b7cd60fca157e610d6" + }, + "professor_name": "Jonathan Perl", + "rating": 4.1, + "department": "Music department", + "comments": [ + { + "text": "VERY willing to give grace and go the extra mile. Is interested in students, creativity and the learning process more than grades. Just do the work and you're golden - and there is the opportunity to learn something. Good prof.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d7b7cd60fca157e610d7" + } + }, + { + "text": "Music Technology & MIDI. Knowledgeable teacher, poorly formatted class. Long lecture/weekly quiz format w/rote memorization required; very little actual hands on work, which was the only practical part of the class. The class should be about meeting the real life needs of music students. Obscure theories are quickly forgotten after the quiz.", + "pos": 0.0, + "neu": 0.964, + "neg": 0.036, + "_id": { + "$oid": "6711d7b7cd60fca157e610d8" + } + }, + { + "text": "Very knowledgeable, but extremely boring. He simply take the most important, interesting and fun issues and make all the class sleep. It is impossible to stay awake on his class. Very unorganized, confused and nothing seems to work on his hands.", + "pos": 0.205, + "neu": 0.669, + "neg": 0.126, + "_id": { + "$oid": "6711d7b7cd60fca157e610d9" + } + }, + { + "text": "Always ran into computer problems and was very drab in his teaching methods. Seemed very unorganized and stuck in the 1980s. But ultimatly I learned a great deal from him, and you gotta love him.", + "pos": 0.249, + "neu": 0.675, + "neg": 0.076, + "_id": { + "$oid": "6711d7b7cd60fca157e610da" + } + }, + { + "text": "A great teacher who gets dissed too often for being \"boring\". He's not boring, but some of his students are self-important ****s who think that what he's teaching is unimportant or something.", + "pos": 0.11, + "neu": 0.764, + "neg": 0.126, + "_id": { + "$oid": "6711d7b7cd60fca157e610db" + } + }, + { + "text": "He knows his stuff. Great Teacher!", + "pos": 0.468, + "neu": 0.532, + "neg": 0.0, + "_id": { + "$oid": "6711d7b7cd60fca157e610dc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7b7cd60fca157e610dd" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7b7cd60fca157e610de" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7b7cd60fca157e610df" + } + }, + { + "text": "One of the best. He's able to turn even the worst questions into a learning experience for the class. Easy going with lots of patience.", + "pos": 0.214, + "neu": 0.663, + "neg": 0.123, + "_id": { + "$oid": "6711d7b7cd60fca157e610e0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b8cd60fca157e610e2" + }, + "professor_name": ". Levine", + "rating": 4.5, + "department": "Humanities department", + "comments": [ + { + "text": "I assume this is for Ira Levine. If so, he was wonderful; glad to hear he is sill at CCNY (14 years later). Encouraging of participation, explained very well. Remember him stating privately re: one student, \"What am I supposed to teach her about the Humanities, the woman survived Cambodia's killing fields for God's sake!\" Now go tend your garden!", + "pos": 0.219, + "neu": 0.722, + "neg": 0.059, + "_id": { + "$oid": "6711d7b8cd60fca157e610e3" + } + }, + { + "text": "Excellent teacher, good clear examples on composition writing and makes the material engaging. A true asset to the University.", + "pos": 0.565, + "neu": 0.435, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610e4" + } + }, + { + "text": "He's pretty cool. Knows his stuff and is interesting.", + "pos": 0.577, + "neu": 0.423, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610e5" + } + }, + { + "text": "oh my god. This professor i great, knowledgeable, enthusiastic about what he teaches and understanding, all of what makes him a memorable and incredible educator. i hope he stays on board for a long time, because students will definitely learn a thing or two about the social sciences", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610e6" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7b8cd60fca157e610e7" + } + }, + { + "text": "Professor Levine made this subject so very interesting, also, and exciting!!! I learned so much from this class. Professor made the past come alive, and helped to understand why social situations are the way they are today.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610e8" + } + }, + { + "text": "Great teacher. He knows alot about literature and about science fiction. He makes his classes interesting when discussing the books, along with sound effects. Great guy too. I recommend him.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610e9" + } + }, + { + "text": "He is one of the nicest Professors I have had since I have been in School. The readings are long but easy to understand. He tries to help students to improve their grades. He will give you a chance to re-write essays.I wish many professors were like him. Thank You Prof. Levine", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610ea" + } + }, + { + "text": "Professor Levine is a very thourogh professor. He explains what he wants from the students as far as papers and tests very well. I like his method for preparing the class for tests. Thanks Professor Levine", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610eb" + } + }, + { + "text": "boring and speaks weird. easy class though", + "pos": 0.266, + "neu": 0.367, + "neg": 0.367, + "_id": { + "$oid": "6711d7b8cd60fca157e610ec" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b8cd60fca157e610ee" + }, + "professor_name": "Marjorie Munsterberg", + "rating": 3.7, + "department": "Art History department", + "comments": [ + { + "text": "she goes mad hard for art its like a english class and nobody cares she needs to take it easy", + "pos": 0.3, + "neu": 0.536, + "neg": 0.164, + "_id": { + "$oid": "6711d7b8cd60fca157e610ef" + } + }, + { + "text": "She's very clear of what she wants and expects from every student. Not an easy A but not too difficult either. She doesnt expect much memorization from you unlike some art history professors, she mainly focuses on writing visual descriptions and comparisons professionally and thoroughly thus giving many visual description essays. Good professor!", + "pos": 0.198, + "neu": 0.775, + "neg": 0.027, + "_id": { + "$oid": "6711d7b8cd60fca157e610f0" + } + }, + { + "text": "The last person that commented was in the wrong class. In a class about writing about art, professor does JUST that. Not an symbolically analytical class, but a professional approach to descriptive analysis of worldly art. Doing the work to the specification of the assignment gets you a good grade. Teacher cares about subject matter & students", + "pos": 0.141, + "neu": 0.827, + "neg": 0.032, + "_id": { + "$oid": "6711d7b8cd60fca157e610f1" + } + }, + { + "text": "She provides an arrogant and uninteresting perspective on a vibrant and dynamic subject. Relying heavily on boring binary distinctions such as good/bad - right wrong she whisps through slides without even scratching the surface of the humanity and profundity of the spirit which moves people to engage in art making. I couldn't like a class less.", + "pos": 0.147, + "neu": 0.698, + "neg": 0.156, + "_id": { + "$oid": "6711d7b8cd60fca157e610f2" + } + }, + { + "text": "i loved this class, and learned alot. this professor is interested in the material she covers and i think it really translates. she is also very much about the students.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610f3" + } + }, + { + "text": "Iliked her a lot, she was great and aproachable! She is a bit intimidating at first, but if u give her a chance she is awesome. She keeps up with ur grades, and checks on u often, never lets u alone, always there. The class is well organized and like all teachers there are boring lectures, but give her a chance, she won't let u down.", + "pos": 0.258, + "neu": 0.683, + "neg": 0.059, + "_id": { + "$oid": "6711d7b8cd60fca157e610f4" + } + }, + { + "text": "She definately knows her stuff very well. I have sat thru class whereby prof read thur notes. But her class can be hard- lots of research papers to write. It feels like Im taking a masters in history sometimes, but she does keeps up with students and their grades. Very approachable.", + "pos": 0.091, + "neu": 0.88, + "neg": 0.029, + "_id": { + "$oid": "6711d7b8cd60fca157e610f5" + } + }, + { + "text": "She's ok and so are her papers. The class is boring enough as is and she didn't make it any more interesting. The guest speakers kept me awake more than she did.", + "pos": 0.142, + "neu": 0.795, + "neg": 0.063, + "_id": { + "$oid": "6711d7b8cd60fca157e610f6" + } + }, + { + "text": "Class was boring sometimes bc ur taking notes on slides being shown. but other than that, she's kool, if u need help she will provide. The class is not hard, just some quizes, papers (which u have to go to musuem to write) and final. take her, just pay attention and u will do fine.", + "pos": 0.119, + "neu": 0.827, + "neg": 0.054, + "_id": { + "$oid": "6711d7b8cd60fca157e610f7" + } + }, + { + "text": "OY! I wish I didn't take this class.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d7b8cd60fca157e610f8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b8cd60fca157e610fa" + }, + "professor_name": ". Zhou", + "rating": 2.2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "She is one of the best professors that i've had. I dont know what everybody is talking and complaining about. The class itself is hard and maybe those students arent smart enough. I love her voice and her teaching style. There should be more professors like her at city college. And she is hot for a chinese girl. -*-", + "pos": 0.161, + "neu": 0.761, + "neg": 0.078, + "_id": { + "$oid": "6711d7b8cd60fca157e610fb" + } + }, + { + "text": "Ok she gives hard homeworks...but all you need to do is ask questions after class and you are fine. I totally bombed the Final Exam and I still passed with a C. I know some people who failed the homeworks,midterm, and final exam...and still managed to pass with a C. She also doesn't scream...she's just LOUD. Trust me she isn't an itch.", + "pos": 0.106, + "neu": 0.826, + "neg": 0.068, + "_id": { + "$oid": "6711d7b8cd60fca157e610fc" + } + }, + { + "text": "another thing: u need raise ur hand and ask questions during class. because if u dont, she will assume u know everything and will give u very hard tests. so ask questions all the time, even if it sounds stupid. she will give u easy exam.. the other section got hard test b/c they didn't participate in class and she assume they knew everything", + "pos": 0.085, + "neu": 0.824, + "neg": 0.091, + "_id": { + "$oid": "6711d7b8cd60fca157e610fd" + } + }, + { + "text": "c'mon, she wasn't THAT hard. ALL her exams is based on hw. If you understand the hw problem and the concept, you will definitly pass the class. She also grades hw. i recommend not to take 103 if ur taking cal 2. u need cal 3 or higher to understand this course. she does sound angry, but this is her normal voice. DON'T slack off, just do the hw!!!!", + "pos": 0.04, + "neu": 0.89, + "neg": 0.071, + "_id": { + "$oid": "6711d7b8cd60fca157e610fe" + } + }, + { + "text": "Her lectures were boring and confusing, her exams were impossible, and her attitude was plain cruel. She expects you to know Matlab before taking the course. Avoid unless you already know Matlab.", + "pos": 0.0, + "neu": 0.733, + "neg": 0.267, + "_id": { + "$oid": "6711d7b8cd60fca157e610ff" + } + }, + { + "text": "Her tests are really tough, she gives H.W for every week. You will learn a lot but your GPA will be screwed up. Out of the original 25 students, 18 dropped her class. I got a B but it was really difficult. From having the highest GPA among honors engineering, i now am among the lower. Advise- if u take her class, socialize with your classmates.", + "pos": 0.093, + "neu": 0.754, + "neg": 0.153, + "_id": { + "$oid": "6711d7b8cd60fca157e61100" + } + }, + { + "text": "I advise all serious fellas mindful of their GPA's to avoid Zhou like a plague. She has a very mean attitude and screams at you should you not understand her teaching. Extremely unhelpful and very hard tests. Taking her class was a waste of my 340 bucks. Sucks!!!", + "pos": 0.044, + "neu": 0.718, + "neg": 0.238, + "_id": { + "$oid": "6711d7b8cd60fca157e61101" + } + }, + { + "text": "worse very worse professor.", + "pos": 0.0, + "neu": 0.235, + "neg": 0.765, + "_id": { + "$oid": "6711d7b8cd60fca157e61102" + } + }, + { + "text": "she thinks very highly of herself and seems to have a lot of attitude and some manners problems, she needs to lower her volume or one day there won't b any windowz left in our college. man she yells at every single question u ask, i don't know whats her prb", + "pos": 0.0, + "neu": 0.909, + "neg": 0.091, + "_id": { + "$oid": "6711d7b8cd60fca157e61103" + } + }, + { + "text": "He has issues and can't explain herself clearly at times.", + "pos": 0.0, + "neu": 0.799, + "neg": 0.201, + "_id": { + "$oid": "6711d7b8cd60fca157e61104" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b9cd60fca157e61106" + }, + "professor_name": "Adrienn Petty-Roberts", + "rating": 4.3, + "department": "History department", + "comments": [ + { + "text": "I took her for two grad classes Comparative Slavery and Civil War Reconstruction. and love both of them. Class is all based on discussion and one final paper on the topic of your choice. She is funny and fair and I loved goign to her class-you will learn alot and wont have to do crazy work. Be resposible and you will to great. Highly recommend!", + "pos": 0.234, + "neu": 0.639, + "neg": 0.127, + "_id": { + "$oid": "6711d7b9cd60fca157e61107" + } + }, + { + "text": "Rebel and reactionary class..lots of reading but writing is response based. very patient as long as you show interest and know what you're talking about. I would have her teach my entire college needs if I could LOL she is one of the best!", + "pos": 0.265, + "neu": 0.712, + "neg": 0.023, + "_id": { + "$oid": "6711d7b9cd60fca157e61108" + } + }, + { + "text": "THE BEST! Who else could teach on rebels and reactionaries and smile throughout the class??!!! Loves to get the students going and makes sure people feel comfortable sharing varying opinions. If you have any passion for history this is the prof you want!", + "pos": 0.415, + "neu": 0.556, + "neg": 0.029, + "_id": { + "$oid": "6711d7b9cd60fca157e61109" + } + }, + { + "text": "she is a good teacher, and compromises with students.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e6110a" + } + }, + { + "text": "Nice, interesting teacher. Made history funny.", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e6110b" + } + }, + { + "text": "Very nice and she does have a sense of humor!", + "pos": 0.407, + "neu": 0.593, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e6110c" + } + }, + { + "text": "She was brand new when I had her as my teacher, she's funny and down to earth", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e6110d" + } + }, + { + "text": "Cares about the students, she has a laid back and easy-going style . . . but don't cross her!!! Excellent sense of humor.", + "pos": 0.187, + "neu": 0.677, + "neg": 0.135, + "_id": { + "$oid": "6711d7b9cd60fca157e6110e" + } + }, + { + "text": "Petty is very approachable, and encourages you to think deeply about the issue of race in society. I enjoyed her class, and found her accessibility and unpretentious personality absolutely refreshing. Plus, she has a good sense of humor!", + "pos": 0.253, + "neu": 0.709, + "neg": 0.039, + "_id": { + "$oid": "6711d7b9cd60fca157e6110f" + } + }, + { + "text": "Comparative Slavery - No Reasearch Paper, 3 Short papers, normally 15pg readings. Prof. Petty is very nice and allows the class to be largely based upon classroom discussions. While at times this could lead away from the particular subject it was often interesting. She got better about regulating on kids who talked to much as the semester went on.", + "pos": 0.123, + "neu": 0.752, + "neg": 0.125, + "_id": { + "$oid": "6711d7b9cd60fca157e61110" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7b9cd60fca157e61112" + }, + "professor_name": "Alison Klein", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I took her for my core English class, a class which I had to repeat due to a mix up with transfer credits, needless to say I wasn't excited about this class at all, but she was really interesting and funny, she made the class a pleasure, truly. She's one of the primary reasons I declared English as my major.", + "pos": 0.254, + "neu": 0.726, + "neg": 0.02, + "_id": { + "$oid": "6711d7b9cd60fca157e61113" + } + }, + { + "text": "Writing for the Humanities in Sp 2009....Alison is a great teacher. She knows are stuff. When you ask questions she gives logical, helpful answers. She challenges her students to take different angles in their analysis of the different aspects of the humanities.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e61114" + } + }, + { + "text": "Took her for Writing for Engineers. Really nice professor and helps students, but you must also DO YOUR PART. She's very responsible, gives you a week for a major paper assignments. The last project was to \"develop\" a project that will improve NYC (nothing fancy). Gradings are fair, gives quizes(drop 2), lets you rewrite to get higher grade, NICE.", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e61115" + } + }, + { + "text": "I took creative writing with her, and she was really fun and energetic and supportive. I recommend her, especially if like me you are a little nervous about creative writing. Her reading assignments are short, and as long as you do the work (regardless of quality)you'll be fine.", + "pos": 0.346, + "neu": 0.625, + "neg": 0.029, + "_id": { + "$oid": "6711d7b9cd60fca157e61116" + } + }, + { + "text": "I had never liked English and now I'm looking at doing an English minor. This was the only class that I actually had wanted to be in. Once she made us write exact directions to make a sandwich and she actually brought in the materials. It was very comical; best day I had in ccny (period). She is also very helpful and updates on you performance.", + "pos": 0.104, + "neu": 0.864, + "neg": 0.032, + "_id": { + "$oid": "6711d7b9cd60fca157e61117" + } + }, + { + "text": "Fun prof. Young and interesting.", + "pos": 0.667, + "neu": 0.333, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e61118" + } + }, + { + "text": "I would take another class with her.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e61119" + } + }, + { + "text": "professor klein is an awesome teacher. she is willing to help you, and very fair. only gives quizzes on readings, no tests. however, if you miss a quis from absent/lateness, you cannot make it up. dont worry, because she offers extra credit and an optional final if you want to boost up your grade. she hates lateness, and only allows 4 absences befo", + "pos": 0.236, + "neu": 0.679, + "neg": 0.086, + "_id": { + "$oid": "6711d7b9cd60fca157e6111a" + } + }, + { + "text": "she's great. her class helps you understand yourself more and the work is not too hard.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d7b9cd60fca157e6111b" + } + }, + { + "text": "Professor Klein is a very good teacher. She knows her stuff and she is very fair. She's strick but yet leniant on some things. But don't take advantage of her because the chances of it are impossible. She's a strong person. I enjoyed having her and i hope to have her again.", + "pos": 0.286, + "neu": 0.682, + "neg": 0.032, + "_id": { + "$oid": "6711d7b9cd60fca157e6111c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bacd60fca157e6111e" + }, + "professor_name": "Taha Abdulla", + "rating": 4.3, + "department": "Chemistry department", + "comments": [ + { + "text": "This guy tried his best but I just don't get it. Maybe it's because he's too smart or thinks he's too smart?", + "pos": 0.338, + "neu": 0.662, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e6111f" + } + }, + { + "text": "He's freaking brilliant!", + "pos": 0.518, + "neu": 0.127, + "neg": 0.355, + "_id": { + "$oid": "6711d7bacd60fca157e61120" + } + }, + { + "text": "really cool helpful laid back dude. great workshop leader", + "pos": 0.62, + "neu": 0.38, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61121" + } + }, + { + "text": "he just is a workshop leader.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61122" + } + }, + { + "text": "the best ever.. he makes complicated stuff s0o0 simple for u to understand. Go to him if u need help in any science or math class", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61123" + } + }, + { + "text": "Taha, is a great teacher he gives everyone high grades, even if he doesn't like you. Please take this guy. (1)", + "pos": 0.157, + "neu": 0.688, + "neg": 0.156, + "_id": { + "$oid": "6711d7bacd60fca157e61124" + } + }, + { + "text": "Yo, this guys is the MAN plain and simple just take him for Chem, he explains it sooo good. Also don't forget he easily beat up ISMAIL!!!!", + "pos": 0.18, + "neu": 0.755, + "neg": 0.064, + "_id": { + "$oid": "6711d7bacd60fca157e61125" + } + }, + { + "text": "Yo Thaha is the man, though I never took his workshop, he is a good teacher. I go to him if I need help in math or chem. (i. ahmed)", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61126" + } + }, + { + "text": "I sometimes wonder, why shouldn't the chemistry department gid rid of professors and have workshop leaders teach us instead. I didn't undertand isotopes until he explained it to me.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61127" + } + }, + { + "text": "Unbelievable. KNows everyone in class which makes me alittle nervous. never tells anyone their grades.", + "pos": 0.107, + "neu": 0.769, + "neg": 0.124, + "_id": { + "$oid": "6711d7bacd60fca157e61128" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bacd60fca157e6112a" + }, + "professor_name": "Sebastien Cormier", + "rating": 4.2, + "department": "Physics department", + "comments": [ + { + "text": "He teaches at the University of San Diego now and I have to say Seabass is the bee's knees. He's a great professor and he can be pretty funny at times. My favorite professor in the department so far. Not an insane amount of hw, but he may go a little fast while lecturing. If he does, just ask him to slow down or go over something again.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e6112b" + } + }, + { + "text": "Go to class and write down all his examples and you'll pass every test. Very easy physics class and very cool and laid back teacher.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e6112c" + } + }, + { + "text": "Do NOT take lab with this guy!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e6112d" + } + }, + { + "text": "He now teaches at USD. He's a great teacher!! He is a very fair grader and really helpful if you go to his office hours. If you go to his office hours before a test he will do example problems with you that are identical to test questions.", + "pos": 0.182, + "neu": 0.771, + "neg": 0.047, + "_id": { + "$oid": "6711d7bacd60fca157e6112e" + } + }, + { + "text": "An awesome professor. I used to hate excel. Thanks to him it's now bearable, not to mention I make kick ass graphs now. He is really cool and really understanding! TAKE HIM!!! (side note: we had a substitute professor for a day, and she was a nightmare. She was in her 50s or so, evil, and ignorant. When Seb came back I was happy!)", + "pos": 0.203, + "neu": 0.638, + "neg": 0.159, + "_id": { + "$oid": "6711d7bacd60fca157e6112f" + } + }, + { + "text": "the class was fun and easy. an easy A with sebastian. he's cool", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61130" + } + }, + { + "text": "Are you kidding, Sebastien is very laid back. He is helpful, funny and understanding. He curves a lot and an easy grader as well. Take him, he is a great guy.", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61131" + } + }, + { + "text": "Very laid back. He is very helpful, funny and understanding. He curves a lot and an easy grader as well. Take him, he is a great guy.", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61132" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7bacd60fca157e61133" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7bacd60fca157e61134" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bacd60fca157e61136" + }, + "professor_name": "Sangeeta Nair", + "rating": 3.9, + "department": "Psychology department", + "comments": [ + { + "text": "Hard but fair. Good class.", + "pos": 0.68, + "neu": 0.2, + "neg": 0.12, + "_id": { + "$oid": "6711d7bacd60fca157e61137" + } + }, + { + "text": "Demanding course. I liked the course and the professor a lot. This is definitely not an easy A course. You will learn if you do what you have to do. There are quizzes almost EVERY day. She is very fair and helpful, she messed up on my final grade, but I have yet to speak to her about that. READ READ READ and study before the exam!", + "pos": 0.108, + "neu": 0.825, + "neg": 0.067, + "_id": { + "$oid": "6711d7bacd60fca157e61138" + } + }, + { + "text": "good work", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e61139" + } + }, + { + "text": "SHE GIVES WEEKLY QUIZZES. YOU NEED TO STUDY THE CLASS NOTES AND THE TEXTBOOK VERY CAREFULLY. SHE IS FAIR BUT HER QUIZZES ARE SOMETIMES DIFFICULT TO UNDERSTAND. SHE WILL HELP YOU AS MUCH AS YOU NEED.", + "pos": 0.158, + "neu": 0.765, + "neg": 0.078, + "_id": { + "$oid": "6711d7bacd60fca157e6113a" + } + }, + { + "text": "Great course... So far my favorite psych, better then child development. Very easy thanks to her quiz's but she plays a lot of semantics in teaching us how to distinguish hard similar situations and tasks.Her case studies or research examples require a trained eye and I think she needs to train us a little bit better in deciphering wat is wat. HOT!", + "pos": 0.235, + "neu": 0.743, + "neg": 0.022, + "_id": { + "$oid": "6711d7bacd60fca157e6113b" + } + }, + { + "text": "Demanding,Fair, very smart and HOT!!!!!", + "pos": 0.51, + "neu": 0.49, + "neg": 0.0, + "_id": { + "$oid": "6711d7bacd60fca157e6113c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7bacd60fca157e6113d" + } + }, + { + "text": "Prof. Nair looks young but she's tough and doesn't tolerate any disrespect. Definitely take her if you want to learn. She gives weekly quizzes, one paper and midterm and final exam...and she keeps the class interesting. The class is hard.", + "pos": 0.236, + "neu": 0.695, + "neg": 0.069, + "_id": { + "$oid": "6711d7bacd60fca157e6113e" + } + }, + { + "text": "This class is tough and demanding but she is a fair professor. Also, she is really willing give tons of feedback. The bottom line is that Nair expects you to act like you're in college. If you can handle that, take this class.", + "pos": 0.129, + "neu": 0.814, + "neg": 0.056, + "_id": { + "$oid": "6711d7bacd60fca157e6113f" + } + }, + { + "text": "do not take Nair not easy Little Indian woman a kid do your self a favor and refuse Nair you will be better off she acts like she knows what she is doing", + "pos": 0.199, + "neu": 0.688, + "neg": 0.113, + "_id": { + "$oid": "6711d7bacd60fca157e61140" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bbcd60fca157e61142" + }, + "professor_name": "Mike Cinelli", + "rating": 4.6, + "department": "Chemistry department", + "comments": [ + { + "text": "Calling him absolutely amazing, would be an understatement. He is more passionate about chemistry than any professor in this school. Teaches you actual concepts rather than just math. It is a shame that he wont be there to help me in orgo. An absolute genius and a incomparable inspiration. Thank you very much, Mike!", + "pos": 0.246, + "neu": 0.708, + "neg": 0.046, + "_id": { + "$oid": "6711d7bbcd60fca157e61143" + } + }, + { + "text": "Best professor ever! Dedicated to helping students. You learn so much from his lectures. Some people can't handle his immense intelligence and will whine.But don't listen! Has a passion for science. And those cheeks!I just wanna squeeze them!! Hard exams but doable. Treasure his words;he is so worth it. Such an inspiration to students. True genius!", + "pos": 0.353, + "neu": 0.631, + "neg": 0.016, + "_id": { + "$oid": "6711d7bbcd60fca157e61144" + } + }, + { + "text": "Omg hes horrible, has such an ego, always putting your down if you ask a question. This one time i saw him in the halls and needed help, but he said come during his office hours. Who does he think he is! Avoid him at all cost!", + "pos": 0.036, + "neu": 0.855, + "neg": 0.109, + "_id": { + "$oid": "6711d7bbcd60fca157e61145" + } + }, + { + "text": "OMGGGGGGGGGGGG NO COMMENT!!!!!!!!!!!! THE BEST EVER!!! LOVE HIM!!!! HE SHOULD BE A PROFESSOR!! HES BETTER THAN ANY CHEMISTRY PROFESSOR IN CCNY", + "pos": 0.394, + "neu": 0.537, + "neg": 0.069, + "_id": { + "$oid": "6711d7bbcd60fca157e61146" + } + }, + { + "text": "No doubt the best T.A. in the Chem Dept. Really cares for his students and wants everyone to do well and understand!!! He is crystal clear and holds review sessions for every exam. Makes the class fun and enjoyable. Just go to class and pay attention. That man is gonna make a great MD. He is brilliant. He knows so much! Yes he's tough but worth it!", + "pos": 0.3, + "neu": 0.669, + "neg": 0.03, + "_id": { + "$oid": "6711d7bbcd60fca157e61147" + } + }, + { + "text": "Hes Great makes things easy", + "pos": 0.7, + "neu": 0.3, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61148" + } + }, + { + "text": "Had him for Organic Chemistry last semester.We were so lucky to have him.Orgo IS as difficult as they say it is....unless you have Mike. He is so smart and makes Orgo so interesting that it is clear and doable.Hilarious and has a passion for chemistry and for helping others to learn it. I wish I had him for 103 when I took it. Take him for Orgo!!!!", + "pos": 0.266, + "neu": 0.704, + "neg": 0.03, + "_id": { + "$oid": "6711d7bbcd60fca157e61149" + } + }, + { + "text": "A dream come true for anyone taking chemistry.Really cares and is passionate about helping students understand. Wants everyone to do well and is always available to help. I wish I had him instead of lecture professor. Take him and you won't regret it. And did I mention how adorable he is? Mike is the real deal: adorable, intelligent,caring and cute", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e6114a" + } + }, + { + "text": "Yo Mike is the man!!!! He legit knows everything about chemistry. I learn so much from him every workshop. I never knew that chemistry was this awesome. He makes the material relevent to real life so it just sticks in our heads. Funny guy too. Always has us laughing and engaged. Hoping to get him for Organic when I take it. Highly reccommended", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e6114b" + } + }, + { + "text": "By far the BEST TA in CCNY for chemistry. Always available to help both day/night and out of class. Holds review sessions before each exam including the final!Best Advice: fight to be in his class. He is the best! Also he is such a sweetheart. I absolutely am in LOVE with him. Such a pleasure to be in his class; its the highlight of my week! ;)", + "pos": 0.333, + "neu": 0.639, + "neg": 0.029, + "_id": { + "$oid": "6711d7bbcd60fca157e6114c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bbcd60fca157e6114e" + }, + "professor_name": "Domenick Acocella", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "He actually reached out to me when I missed class!!! The first Prof to say I have potential. Amazing person.", + "pos": 0.24, + "neu": 0.673, + "neg": 0.087, + "_id": { + "$oid": "6711d7bbcd60fca157e6114f" + } + }, + { + "text": "Cool Prof.! Love him!", + "pos": 0.78, + "neu": 0.22, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61150" + } + }, + { + "text": "With work and rewrites you can bring your grade from a D to a B+. All the grading he does to help us improve our writing is just impressive!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61151" + } + }, + { + "text": "He is the best professor I've ever had!", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61152" + } + }, + { + "text": "I had this professor last semester, he is honestly the best professor i ever had!!!!", + "pos": 0.392, + "neu": 0.608, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61153" + } + }, + { + "text": "Just papers. He makes you do drafts before final submission. Lots of interesting stuff to read. You wont fall asleep in his class. There's a good amount of writing. Very strict on plagiarism. JUST DON'T!!! Appreciates effort and ideas. CLASS PARTICIPATION and your good :)", + "pos": 0.225, + "neu": 0.726, + "neg": 0.049, + "_id": { + "$oid": "6711d7bbcd60fca157e61154" + } + }, + { + "text": "Such a down to earth professor. I truly had a fun time in his class and alongside, learned so much. He's a reasonable grader, helpful, and very understanding. Just do what he says and there's no reason you should not get an A.", + "pos": 0.179, + "neu": 0.777, + "neg": 0.044, + "_id": { + "$oid": "6711d7bbcd60fca157e61155" + } + }, + { + "text": "I learned a lot in his class, not only how to be a better writer within my engineering career, but also how to enjoy writing on a creative level. He made the class fun with student-initiated discussions and he gave us a lot of freedom with assignments. He is also always willing to help if you need it. I'm glad I was able to take his class!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61156" + } + }, + { + "text": "Funny. Helpful. Interesting.", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61157" + } + }, + { + "text": "He was absolutely PERFECT! Funny easy going, just-right strict, and flexible. He was patient with questions, and supportive of work.", + "pos": 0.508, + "neu": 0.492, + "neg": 0.0, + "_id": { + "$oid": "6711d7bbcd60fca157e61158" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bccd60fca157e6115a" + }, + "professor_name": "Randy Matusow", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "Made intro to photography very inspiring. Offers great feedback and tries to motivate you to love the class and your camera. Kind woman. Midterm was 5 rolls of negatives, 5 contact sheets and 2 prints from each roll. Final was 20 prints, which was a lot less than what some other professors required. Definitely recommend!", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e6115b" + } + }, + { + "text": "Fun class, taking lots of photos and developing them in the darkroom, laid back teacher really nice, I love her class! If you want to make prints in the darkroom she's a great teacher to help you. This class feels more like fun than work, yes there's homework but I find it enjoyable!", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e6115c" + } + }, + { + "text": "How can someone not like her as a professor? Her class is not easy, but she is a great professor and a wonderful person. She will help you if you show interest in the class.", + "pos": 0.361, + "neu": 0.574, + "neg": 0.065, + "_id": { + "$oid": "6711d7bccd60fca157e6115d" + } + }, + { + "text": "loeve randy. very laid back and will give you alot of freedom once youve grasp the topics in class. lets you work on your own and develop and will give honest feedback.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e6115e" + } + }, + { + "text": "She expects a lot from you and it gets time consuming. She might like your work but don't count on it because if she doesn't then its not good enough. Seriously, take any other professor because you won't get good at it.", + "pos": 0.074, + "neu": 0.796, + "neg": 0.13, + "_id": { + "$oid": "6711d7bccd60fca157e6115f" + } + }, + { + "text": "The class its self was fun, but with a professor who gives bad instruction...it made it difficult. She isnt very clear and she expects you to get everything on the first try. She taught a beginners class at Manhattanville. She is nice though and tries, but I wouldnt recommend her if you want to get good at photography.", + "pos": 0.149, + "neu": 0.667, + "neg": 0.184, + "_id": { + "$oid": "6711d7bccd60fca157e61160" + } + }, + { + "text": "She is really good!!! She will ask you to shoot 20 rolls of film and the final project is 10 prints size 11x14 fiber paper and 10 prints 8x10 fiber paper. This class is really really easy you just have to keep shooting all the time and make sure you do the 10 assigments the other 10 rolls is to shoot what ever you like. GOOD LUCK!", + "pos": 0.239, + "neu": 0.704, + "neg": 0.057, + "_id": { + "$oid": "6711d7bccd60fca157e61161" + } + }, + { + "text": "She is the best. you have to shoot 10 rolls of film, show her 10 contacts, 10 final prins, have a decent attendance, and thats all you get an A. she is not anal about lateness nor how the pics looks. she just wants the u to show some interest and do the work!!! Also she doesnt care if your work is late:)", + "pos": 0.112, + "neu": 0.818, + "neg": 0.07, + "_id": { + "$oid": "6711d7bccd60fca157e61162" + } + }, + { + "text": "Very easy A if you just get all your work done. Very scattered, but if you do well she'll let you get away with a lot.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e61163" + } + }, + { + "text": "She is very helpful. Although sometime she seems lost. But overall, you'll learn. Thats the bottom line.", + "pos": 0.109, + "neu": 0.802, + "neg": 0.088, + "_id": { + "$oid": "6711d7bccd60fca157e61164" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bccd60fca157e61166" + }, + "professor_name": "Babak Rassi", + "rating": 3.6, + "department": "Media Arts department", + "comments": [ + { + "text": "Knowledgable about films but would often ramble for too long making the class overlap into the next one. Felt empty coming out of the class and the final has a bunch of stuff that we were SUPPOSED to learn but never got around to. Also jokes around way to much. Were not friends.", + "pos": 0.043, + "neu": 0.862, + "neg": 0.095, + "_id": { + "$oid": "6711d7bccd60fca157e61167" + } + }, + { + "text": "Hes a nice professor but I really hate this class. If your into movie making then this class is for you. Its tedious and annoying and the final project is creating a movie thats less than 5-6 minutes long. This class is alright.", + "pos": 0.133, + "neu": 0.701, + "neg": 0.167, + "_id": { + "$oid": "6711d7bccd60fca157e61168" + } + }, + { + "text": "I had Babak in grad school. True, is classes are a bit scattered BUT there's no one better to give one-on-one feedback on editing and post. He will absolutely help you take your work to the next level. He helped recut my thesis into something MUCH BETTER than I could have achieved on my own.", + "pos": 0.162, + "neu": 0.749, + "neg": 0.089, + "_id": { + "$oid": "6711d7bccd60fca157e61169" + } + }, + { + "text": "Ill conceived class to begin with-part audio (dif professor) and part editing class (taught by Rassi). He did absolutely no preparation for the editing. He could never finish a thought. Must have heard 100's of times \"I'll get to that later\" with topic never mentioned again. In fairness he would give 1-1 explanations. But then why sit in class?", + "pos": 0.0, + "neu": 0.94, + "neg": 0.06, + "_id": { + "$oid": "6711d7bccd60fca157e6116a" + } + }, + { + "text": "I think Mr.Rassi is a genuinely unique, wonderful man with an obvious passion for his craft and for narrative. I disagree with the negative comments left by other users. He is well-spoken, educated, experienced, and I think he is a man of limitless potential. He provides excellent guidance for the novice editor. I highly anticipate more to follow.", + "pos": 0.149, + "neu": 0.76, + "neg": 0.09, + "_id": { + "$oid": "6711d7bccd60fca157e6116b" + } + }, + { + "text": "He is not a good teacher. He complains about things because he's not prepared for class. Disorganized and always late. He's condescending and not very creative. Where they find this guy???", + "pos": 0.0, + "neu": 0.684, + "neg": 0.316, + "_id": { + "$oid": "6711d7bccd60fca157e6116c" + } + }, + { + "text": "Good teacher. It is a shame that the school does not care about the students and did not give at least basic equipment to the professor and to the students. The school did not even give him chalk to write imagine editing equipment. However, the professor gave all to teach in poor conditions.", + "pos": 0.048, + "neu": 0.807, + "neg": 0.145, + "_id": { + "$oid": "6711d7bccd60fca157e6116d" + } + }, + { + "text": "The great teacher finally appears in the MFA film program! The only and the best teacher since I came to the MFA program!", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e6116e" + } + }, + { + "text": "He's a great teacher too bad the department is so screwed up that he didn't get a chance to teach much", + "pos": 0.135, + "neu": 0.558, + "neg": 0.307, + "_id": { + "$oid": "6711d7bccd60fca157e6116f" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7bccd60fca157e61170" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bccd60fca157e61172" + }, + "professor_name": "Paul Kozel", + "rating": 4, + "department": "Music department", + "comments": [ + { + "text": "Paul is one of the best teachers I've ever had. If you are lucky enough to get into the Sonic Arts Program, his class will be easily the best class you'll have at City College. Even if you only take 217, he has a ton of information, is a funny guy, and is ridiculously excited about teaching. If you get a bad grade in his class, you aren't trying.", + "pos": 0.22, + "neu": 0.711, + "neg": 0.069, + "_id": { + "$oid": "6711d7bccd60fca157e61173" + } + }, + { + "text": "Do not take 217 with this teacher unless you want a c+. do not take his class. very difficult.", + "pos": 0.062, + "neu": 0.806, + "neg": 0.132, + "_id": { + "$oid": "6711d7bccd60fca157e61174" + } + }, + { + "text": "Paul is so enthusiastic about his teaching and sometimes can result in him talking about pure ****... but you gotta love him. He taught me and lot, threw great summer parties and is always interested in bettering the Sonic Arts Center. He often went on tangents that resulted in us not finishing the class topics... oh well!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e61175" + } + }, + { + "text": "Paul is a very knowledgable guy. Obviously he knows what he is doing but sometimes he just cares about himself and his paycheck. He only checks his email 3 days a week on the days he comes to campus. He almost never answers the questions outside the class.", + "pos": 0.078, + "neu": 0.922, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e61176" + } + }, + { + "text": "Wow! Bam! What a lot of shimmer in this class! Talks out loud to himself and others! Very entertaining!", + "pos": 0.324, + "neu": 0.676, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e61177" + } + }, + { + "text": "He's punctual and passionate about audio technology. You'll learn several interesting facts about acoustics, electricity etc and their interaction. It's difficult to get accepted into the Sonic Arts program; this class is the first hurdle that potential applicants have to clear.", + "pos": 0.219, + "neu": 0.73, + "neg": 0.051, + "_id": { + "$oid": "6711d7bccd60fca157e61178" + } + }, + { + "text": "He knows tons of stuff, and it is a great oppurtunity to be in his classes.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e61179" + } + }, + { + "text": "The man is nice, the class was boring. He did make sure you understood the material before he went on to the next material. He hands out study guides for tests, but you will only see about 4/20 questions actually appear on the test. So why give a guide for.", + "pos": 0.068, + "neu": 0.9, + "neg": 0.032, + "_id": { + "$oid": "6711d7bccd60fca157e6117a" + } + }, + { + "text": "Very helpful and brings fun into the studio. Very knowledgeable and commits in helping students become pro's in the recording industry and music business.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d7bccd60fca157e6117b" + } + }, + { + "text": "Excellent to-the-point teaching style. A pro who knows how to lead a class and get difficult points across.", + "pos": 0.167, + "neu": 0.721, + "neg": 0.113, + "_id": { + "$oid": "6711d7bccd60fca157e6117c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bdcd60fca157e6117e" + }, + "professor_name": "Daniel Keedy", + "rating": 4.4, + "department": "Chemistry department", + "comments": [ + { + "text": "Very good professor. He grades based on 4 exams (100 points each with the lowest dropped); A group project (30 points) and an optional extra credit presentation (10 points). His lectures are thorough, easy to follow, and he adds a lot of good questions to check for comprehension. Atop that, he's very caring of students. Take him! :)", + "pos": 0.255, + "neu": 0.709, + "neg": 0.036, + "_id": { + "$oid": "6711d7bdcd60fca157e6117f" + } + }, + { + "text": "Lectures are really clear. Just an all around good professor.", + "pos": 0.42, + "neu": 0.58, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e61180" + } + }, + { + "text": "Prof Keedy was a gem. He was really understanding with coursework and explains concepts well. Biochem is hard but his exams were mostly fair. The lab work was a great component and grade booster for those who participated in it. The extra credit work was also really easy to get.", + "pos": 0.283, + "neu": 0.698, + "neg": 0.019, + "_id": { + "$oid": "6711d7bdcd60fca157e61181" + } + }, + { + "text": "He is one of my favorite professors. Fair grading, and drops your lowest exam score. Really friendly and interesting.", + "pos": 0.415, + "neu": 0.494, + "neg": 0.092, + "_id": { + "$oid": "6711d7bdcd60fca157e61182" + } + }, + { + "text": "Professor Keedy is honestly the best. He explains everything so well during lectures, and his exams are only based on what is taught in lecture! He gives you opportunities for extra credit. Overall, great professor. Obviously you have to put in work and study to get good exam grades (its biochem duh) but prof keedy makes it enjoyable :)", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e61183" + } + }, + { + "text": "Dr. Keedys a great teacher. Over the years He's improved in his laid-back teaching style and gives you the meat of the material. One of the biggest downsides to the course however is his exams. The exams aren't hard, it's just tricky. He tests on the fine lines of his powerpoints which causes the low-class average. Overall, good professor bleh exam", + "pos": 0.189, + "neu": 0.788, + "neg": 0.023, + "_id": { + "$oid": "6711d7bdcd60fca157e61184" + } + }, + { + "text": "This professor makes biochemistry very easy and simple to understand, exams are based on lecture material, it helps if you read but not required to get an A. Take him you wont regret it !", + "pos": 0.183, + "neu": 0.817, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e61185" + } + }, + { + "text": "Took him in Fall 2018, first time teaching, so he was quite disorganized. But I don't blame him. Only what he taught were on the exams, so there is no need to read all the stuff on the book. He is willing to help students before each test, and his exams are actually a lot fairer than other profs' exams. With extra credits, getting an A is doable.", + "pos": 0.121, + "neu": 0.815, + "neg": 0.064, + "_id": { + "$oid": "6711d7bdcd60fca157e61186" + } + }, + { + "text": "The only good thing about this course is the curve to 75. If you are seeking an easy A, this course is not for you, but most people pass with a B.", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e61187" + } + }, + { + "text": "Keedy taught biochem for the first time in Fall 2018. Although he was little disorganized, he was caring and accessible. He gave out extra credits opportunities: participation, presentations , summary of paper. Exams were MC, with 1 bonus question. He curved the exam average to 75 if the class average were lower, only 1st of 4 exams need a curve.", + "pos": 0.169, + "neu": 0.772, + "neg": 0.059, + "_id": { + "$oid": "6711d7bdcd60fca157e61188" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bdcd60fca157e6118a" + }, + "professor_name": "Ashfaq Khan", + "rating": 4.3, + "department": "Earth Science department", + "comments": [ + { + "text": "He is a slow trader. Taking him for lab. Have done 9 labs has only graded 2 for almost everyone in class.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e6118b" + } + }, + { + "text": "Really thinks about his students, and he is an easy grader. Just make sure to always come to class and take notes, otherwise you may catch yourself lost.", + "pos": 0.16, + "neu": 0.769, + "neg": 0.071, + "_id": { + "$oid": "6711d7bdcd60fca157e6118c" + } + }, + { + "text": "Prof. Ashfaq is a good Lab TA and sweet person as well. He makes sure that everybody understands the Lab procedure very well. He is also available outside of the class by appointment. He always answers every single email with the proper explanation to make sure it makes sense to u. Although Labs can be confusing, He will help you to solve these.", + "pos": 0.259, + "neu": 0.716, + "neg": 0.025, + "_id": { + "$oid": "6711d7bdcd60fca157e6118d" + } + }, + { + "text": "I had him for lab and he was cool. If you can't go to lab that day he will let you go in to another lab session that same day. He is good at making sure everyone is on the same page and understands what they need to do in order to complete a lab. Quiz at the end not based on the labs so make sure you remember formulas and such. Get a lab buddy!!!!!", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e6118e" + } + }, + { + "text": "HE IS A GOOD LAB TA, BUT LABS ARE HARD. SO ATTENDANCE IS MANDATORY", + "pos": 0.231, + "neu": 0.671, + "neg": 0.098, + "_id": { + "$oid": "6711d7bdcd60fca157e6118f" + } + }, + { + "text": "He is a really good professor. Padilla's TA for the lab class. He's sweet and chill. He gives good feedback as well and if you email him with any questions he will reply back answering all of your questions. Labs can be a little confusing, so pay attention! He goes through all the steps and explains topics very well.", + "pos": 0.201, + "neu": 0.753, + "neg": 0.046, + "_id": { + "$oid": "6711d7bdcd60fca157e61190" + } + }, + { + "text": "He is the TA for Padilla's EAS 104 course. He really knows his stuff. Goes over each lab in detail. He is very sweet and understanding. His exams are not that hard if you pay attention to his lectures. Wish he taught other labs.", + "pos": 0.15, + "neu": 0.822, + "neg": 0.029, + "_id": { + "$oid": "6711d7bdcd60fca157e61191" + } + }, + { + "text": "Hes the Lab TA. Super chill guy. Pay attention in Lab, he literally goes through how to do the lab. Really nonchalant. Hes married though if that matters", + "pos": 0.159, + "neu": 0.796, + "neg": 0.045, + "_id": { + "$oid": "6711d7bdcd60fca157e61192" + } + }, + { + "text": "Ashfaq is a good TA. Very easy going and understands you. Attend lecture and his class, you will pass. Bonus: His exams are all Multiple choice", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e61193" + } + }, + { + "text": "Had him for EAS 104 lab. Easy pass, and understanding. Easy Lab final.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d7bdcd60fca157e61194" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7becd60fca157e61196" + }, + "professor_name": "Barbara Nevins-Taylor", + "rating": 3.3, + "department": "Media Arts department", + "comments": [ + { + "text": "She's one of the best professors I ever had. There are a lot of bad ratings about her ways of criticism but I disagree. She's very honest and tells you exactly what's wrong and exactly how to correct that. She also greatly helps every student and wants everyone to get an A. She's very accessible outside the class and is always willing to help.", + "pos": 0.18, + "neu": 0.678, + "neg": 0.142, + "_id": { + "$oid": "6711d7becd60fca157e61197" + } + }, + { + "text": "Professor Nevins wants to see all of her students succeed, she never fails to send opportunities when she finds them. She can be blunt at times but her constructive criticism has helped me grow and better my work tremendously.", + "pos": 0.199, + "neu": 0.719, + "neg": 0.081, + "_id": { + "$oid": "6711d7becd60fca157e61198" + } + }, + { + "text": "Do not take this class unless you are 110% sure you want to continue in the Journalism program here. She is a difficult professor and does not take kindly to criticism. You will find yourself handing in draft after draft that re-edits small things like phrases or spelling that can get infuriating. She is very dictatorial and can be rude.", + "pos": 0.084, + "neu": 0.717, + "neg": 0.199, + "_id": { + "$oid": "6711d7becd60fca157e61199" + } + }, + { + "text": "DO NOT TAKE HER! SHE DO NOT KNOW HOW TO TALK TO PEOPLE AND SHE CAN NEVER KEEP HER WORD, SHE SAY ONE THING AND IT'S ANOTHER! VERYYYYY JUDGMENTAL AND SHE LOSE WORK (EVEN IF ITS THROUGH EMAIL) AVOID!", + "pos": 0.0, + "neu": 0.865, + "neg": 0.135, + "_id": { + "$oid": "6711d7becd60fca157e6119a" + } + }, + { + "text": "She was great in-person, and was accessible outside of class, but during COVID she did not know how to criticize students. Her class is nearly impossible during a pandemic, and she became very annoying with her expectations. Students put in a lot of work into the projects and still gave bad grades. Also she isn't qualified to teach TV journalism", + "pos": 0.036, + "neu": 0.792, + "neg": 0.172, + "_id": { + "$oid": "6711d7becd60fca157e6119b" + } + }, + { + "text": "Professor Nevins-Taylor is an amazing journalism professor. She assigns the stories weeks in advance to give you enough time to complete it and gives you amazing feedback. She has high expectations but she is always willing to help whether it be in class or outside of class. Learned a lot from her and highly recommend.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e6119c" + } + }, + { + "text": "She is the journalism advisor so I had interaction with her in the past. She was nice to deal with on campus before COVID. Since COVID though and this zoom format, she has no understanding how hard it is to do this type of class during a global pandemic. Her way of talking about student's work can be quite mean and nasty sometimes.", + "pos": 0.04, + "neu": 0.852, + "neg": 0.108, + "_id": { + "$oid": "6711d7becd60fca157e6119d" + } + }, + { + "text": "She expects her students to try their best. When you do, she makes you feel very proud of your work and your abilities! She gives a lot of great feedback and edits on articles which can be annoying sometimes, but she's only looking to help you become a better writer. Great professor!", + "pos": 0.329, + "neu": 0.644, + "neg": 0.027, + "_id": { + "$oid": "6711d7becd60fca157e6119e" + } + }, + { + "text": "Ok so ppl complain because she comes off eccentric but shes a very sweet, understanding lady. You just have to be patient and get to know her. Sometimes it'll feel like she puts you on the spot but she likes participation. Assignments aren't hard at all. She gives you a chance to revise your work and she'll even help you write better one-on-one", + "pos": 0.303, + "neu": 0.673, + "neg": 0.024, + "_id": { + "$oid": "6711d7becd60fca157e6119f" + } + }, + { + "text": "Would not recommend this professor. She was extremely harsh to the students. She said one thing and wanted another. Avoid at all cost!!!", + "pos": 0.0, + "neu": 0.705, + "neg": 0.295, + "_id": { + "$oid": "6711d7becd60fca157e611a0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7becd60fca157e611a2" + }, + "professor_name": "Pamela Laskin", + "rating": 3, + "department": "English department", + "comments": [ + { + "text": "Took her class a while ago and am surprised no one mentioned her behavior. She loves to slip in microagressions while telling her predominantly POC students how great she is at not being racist. Assigned her own book (Palestinian & Israeli romance; she's NEITHER) and had everyone tell her their favorite pieces from it. Made us uncomfortable a lot.", + "pos": 0.259, + "neu": 0.677, + "neg": 0.064, + "_id": { + "$oid": "6711d7becd60fca157e611a3" + } + }, + { + "text": "She is overall a nice teacher but very serious about lateness, so beware and make sure to attend on time! Talk to her after class about anything that might cause you to be late or miss class otherwise your grade will be impacted. Besides that, she gives good feedback on papers and allows students extra time if they request.", + "pos": 0.135, + "neu": 0.809, + "neg": 0.057, + "_id": { + "$oid": "6711d7becd60fca157e611a4" + } + }, + { + "text": "Shes OK as long as youre on time for class, turn in every assignment within the deadline, participate in class, and read the assigned books. But I didn't do them except turn in all my assignments+kinda read the books and got a B+. So ig show her that you care for the most parts and don't be late more than 9x or absent for more than 3x youll be fine", + "pos": 0.112, + "neu": 0.888, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611a5" + } + }, + { + "text": "Boy was she something", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611a6" + } + }, + { + "text": "My only reason for writing this review is because I feel like I was graded very unfairly. I did every single assignment that she requested, every week she would assign 3 novels to read plus a 6-page writing assignment without taking into consideration that we have other classes to do work for, and even then I made sure to hand even everything in.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611a7" + } + }, + { + "text": "Overall she's a great professor, as long as you care in the class. Keep the camera on at all times, and don't be late but the class is pretty engaging and the material is interesting. She can be a tough grader, but she gives A LOT of feedback in her first drafts, which helps get the best grade possible.", + "pos": 0.32, + "neu": 0.658, + "neg": 0.023, + "_id": { + "$oid": "6711d7becd60fca157e611a8" + } + }, + { + "text": "A typical English teacher. You have to have your camera on and participation matters but overall when it comes to grading paper she gives really good feedback so youll grow as a writer. She just wants whats best for her students.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611a9" + } + }, + { + "text": "I didn't really like her honestly, she can get very nagging and even annoying. You have to have your camera on, otherwise she will flip. You have to constantly participate in her classes. She is a decent human being though, cares for her students, her class was interesting, and it's pretty easy but her constant nagging is just not it", + "pos": 0.143, + "neu": 0.728, + "neg": 0.129, + "_id": { + "$oid": "6711d7becd60fca157e611aa" + } + }, + { + "text": "Typical English teacher. Read, participate, write papers. Shes amazing !", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611ab" + } + }, + { + "text": "Professor Laskin may seem harsh at first but in all honesty she wants students to give their best in class. If you meet her halfway and show that you want to be present and improve your writing you'll realize what a gem she is. So participate and actually engage in her class. And most importantly NO PHONES IN HER CLASS!!", + "pos": 0.278, + "neu": 0.644, + "neg": 0.078, + "_id": { + "$oid": "6711d7becd60fca157e611ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7becd60fca157e611ae" + }, + "professor_name": "Norman Eng", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Professor Eng is great! The work actually becomes very interesting and easy to do as long as you keep up with the readings and weekly tasks. It's a very engaging class that also brings in a lot of creativity. He's organized and communicative, which makes the class much easier to keep up with hw/tasks.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611af" + } + }, + { + "text": "Asynchronous class. We hardly met. However, we are able to reach him in a class group chat in which he requires all students to log in (GroupMe). He is very professional and kind. Easy class.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611b0" + } + }, + { + "text": "Best teacher Ive ever had. Actually cares and knows his students. PARTICIPATE. Not much homework, just come prepared to discuss in class. This class is the most useful course I have taken. Must show up on time. Very accessible. Final is a pdf you will work on throughout the semester. No test: 2 papers, hw reading responses and final.", + "pos": 0.179, + "neu": 0.788, + "neg": 0.032, + "_id": { + "$oid": "6711d7becd60fca157e611b1" + } + }, + { + "text": "best professors hands down, so thoughtful, has a great way of explaining and makes everything extremely easy to understand and know for the final!! JUST TAKE HIM HE IS THE BEST. You wouldn't even mind going to his class", + "pos": 0.375, + "neu": 0.625, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611b2" + } + }, + { + "text": "He is a true gem! A really great great professor, he wants you to really get a good grade. He really care for his students. The texbook was provided and the readings are really interesting, he is very clear when explaining something. Take him, you wont regret it.", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611b3" + } + }, + { + "text": "TWO WORDS!!!!!!!! TAKE HIM", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611b4" + } + }, + { + "text": "Professor Eng is amazing!!!!!!!!!! Take him if you really want to learn!!! his class is amazing, nothing hard!!", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611b5" + } + }, + { + "text": "Professor Eng is organized, structured, and attentive to his students. He makes sure that his lectures are interactive and engaging while making sure that everyone has a voice. Attendance matters. You will have 2 fieldwork papers, a final paper, and weekly homework based on the readings. He prints out the textbook for you. This class was amazing!", + "pos": 0.19, + "neu": 0.81, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611b6" + } + }, + { + "text": "Professor Eng is amazing. I have taken many education and psychology courses where I have learned about the important theorists but I never really learned or it never really made sense until I took this class, with this professor. No one teaches the material better. His class helped me in writing my edTPA, which I am eternally grateful for. Thanks!", + "pos": 0.218, + "neu": 0.744, + "neg": 0.039, + "_id": { + "$oid": "6711d7becd60fca157e611b7" + } + }, + { + "text": "Professor Eng was extremely inspirational as he was devoted to the job and cared about us as a class. A great listener, he made the course so clear. If you are an introvert, you're able to email your comments about the class and have it count as participation. Clear syllabus, great lectures, everything was great! He deserves a raise! Free txtbk!", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d7becd60fca157e611b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bfcd60fca157e611ba" + }, + "professor_name": "Kedon Willis", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "I appreciated the insight and value this course provided towards Caribbean history and culture. Professor Willis was kind and encouraging, but didn't consistently update grades. The final exam had last minute details added onto it which wasn't fair. Make sure you're getting clear instructions with this class, it'll save you in the long run.", + "pos": 0.239, + "neu": 0.688, + "neg": 0.073, + "_id": { + "$oid": "6711d7bfcd60fca157e611bb" + } + }, + { + "text": "Kedon is an incredible human being. my favorite course i took in the MFA program was his caribbean literature course, it was so good - it changed my life. we read maisy card's novel which inspired my own writing. even brought her to our class for a Q and A! run, don't walk, to your computer during course offerings, sign up for his class!", + "pos": 0.176, + "neu": 0.824, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611bc" + } + }, + { + "text": "Interesting, but heavy reading. Quizzes, Discussion boards, and Zoom discussions on the readings. Gives extra credit opportunities. Loved Prof Willis and would totally take him again if I could.", + "pos": 0.359, + "neu": 0.641, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611bd" + } + }, + { + "text": "This professor forgets we are students with more classes, and readings to do. 4 books which you have to buy out of pocket HEAVY READINGS btw. In my opinion he's very inconsiderate I'm an A student and love a good read but this professor? Avoid if you are a full time student w a job,with life outside his class take if this is the only class you need", + "pos": 0.062, + "neu": 0.871, + "neg": 0.067, + "_id": { + "$oid": "6711d7bfcd60fca157e611be" + } + }, + { + "text": "Professor Willis was overall good when it came to lectures, but you gotta be prepared to discuss the readings or you'll be totally lost. A quiz and discussion board post was due every week rather than a big test at the end of the semester. He also graded fairly and offered extra credit.", + "pos": 0.128, + "neu": 0.815, + "neg": 0.056, + "_id": { + "$oid": "6711d7bfcd60fca157e611bf" + } + }, + { + "text": "You will have to do a lot of reading for this class so be prepared. In addition, make sure to participate in class because it counts for your grade.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611c0" + } + }, + { + "text": "He is an excellent teacher. I took this class online. There was weekly quizzes and discussion posts. No exams. Every class was interesting and he always asked mind altering questions which made the class much more fun. Definitely recommend.", + "pos": 0.309, + "neu": 0.648, + "neg": 0.043, + "_id": { + "$oid": "6711d7bfcd60fca157e611c1" + } + }, + { + "text": "Professor Kedon Willis is one of the best professors in CCNY. His classes are simple. Weekly quizzes and discussions. His discussions are very interesting and makes us question everything that we read. And he encourages students to participate and discuss the material. Overall, great professor.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611c2" + } + }, + { + "text": "It is rare to find a professor like Willis. He is such an amazing teacher. He is diverse in his discussions. His topics are so interesting. The readings are fantastic. He understands the students and keeps the energy going. I highly recommend him! He course does not disappoint! One of the best course and professor Ive taken at CCNY.", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611c3" + } + }, + { + "text": "Just amazing. The best teacher Ive ever had. Super super accommodating to students needs & will give you extra time to do a paper, no points off. There are a a few papers youll have to do complete with a few novels to read as well but seriously the books are amazing. Please take him! It will be worth it", + "pos": 0.293, + "neu": 0.659, + "neg": 0.048, + "_id": { + "$oid": "6711d7bfcd60fca157e611c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bfcd60fca157e611c6" + }, + "professor_name": "Evan Dennis", + "rating": 3.7, + "department": "International Studies department", + "comments": [ + { + "text": "Professor Dennis's class consists of 3 MC exams and 3 essays. He is kind on extensions. However, I found the class more difficult than what it should be. During this semester, he has posted the midterm and final late. His email responses are slow and very unprofessional.", + "pos": 0.063, + "neu": 0.818, + "neg": 0.119, + "_id": { + "$oid": "6711d7bfcd60fca157e611c7" + } + }, + { + "text": "The class consisted of multiple choice and essay exams. The multiple choice was very detailed so make sure to thoroughly take notes on lectures and readings, and there were fair essays. As long as you listen to lectures, it is not a difficult course.", + "pos": 0.146, + "neu": 0.854, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611c8" + } + }, + { + "text": "Lots of readings. 3 Midterms(10 MC/1 essay), note-taking is crucial as lectures aren't recorded. Slides alone is not enough. Exam questions are based solely on lecture/readings. Has discussion sections to earn participation points, participation is not mandatory in lecture sections. His exam extensions are awesome. One of CCNY's better professors.", + "pos": 0.156, + "neu": 0.822, + "neg": 0.022, + "_id": { + "$oid": "6711d7bfcd60fca157e611c9" + } + }, + { + "text": "This guy is the worst. I took him during spring 2023. He is only kind about his extensions", + "pos": 0.145, + "neu": 0.681, + "neg": 0.174, + "_id": { + "$oid": "6711d7bfcd60fca157e611ca" + } + }, + { + "text": "Professor Dennis is very knowledgeable about economics and did a great job teaching the economics part of this course. He always takes the time to answer student's questions. He sometimes goes too into detail with his answers, which might confuse people, but he is still a great professor. He also gives long extensions on both the midterm and final!", + "pos": 0.129, + "neu": 0.849, + "neg": 0.022, + "_id": { + "$oid": "6711d7bfcd60fca157e611cb" + } + }, + { + "text": "Amazing man, Passionate about what he teaches, and cares about students. He is truly a master of his field. I needed an extension on an assignment and he gave me a whole week with no hesitation. His lectures are interactive. Take all of his classes you won't regret, you will learn so much. There is some reading, nothing overwhelming.", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611cc" + } + }, + { + "text": "Professor Dennis is a nice guy and he's understanding when it comes to things like extensions. There's a lot of material to get through and class participation is a must, but he explains the content well and he does his best to clarify any confusions.", + "pos": 0.222, + "neu": 0.735, + "neg": 0.043, + "_id": { + "$oid": "6711d7bfcd60fca157e611cd" + } + }, + { + "text": "Dennis is a fine professor and he is pretty straight forward. As being a tough grader, I actually think he isnt because he is pretty lenient on the midterm and the final. You can ask for extensions for both of the papers and if you use them correctly, youll get a good grade. The course itself is pretty hard though. There are a LOT of material.", + "pos": 0.234, + "neu": 0.729, + "neg": 0.037, + "_id": { + "$oid": "6711d7bfcd60fca157e611ce" + } + }, + { + "text": "He is a harsh grader and be prepared to read a lot.", + "pos": 0.128, + "neu": 0.676, + "neg": 0.196, + "_id": { + "$oid": "6711d7bfcd60fca157e611cf" + } + }, + { + "text": "Professor Dennis originally planned to make us write 5 memos but after I spoke with him, he changed it to 3 memos, the 4th being optional and he replaced the lowest memo grade with the 4th memo grade. One midterm and one final so not a lot of work but the class is very lecture heavy and you need to do the readings. He offered extra credit on BB tho", + "pos": 0.045, + "neu": 0.909, + "neg": 0.045, + "_id": { + "$oid": "6711d7bfcd60fca157e611d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7bfcd60fca157e611d2" + }, + "professor_name": "Luis Cardoso", + "rating": 4.4, + "department": "Biomedical department", + "comments": [ + { + "text": "It was easy to understand his class and learn more in this lecture or discussion.", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611d3" + } + }, + { + "text": "Professor Cardoso is a gem. He was able to explain the material really well and his expectations were very clear. Exams are straight forward but VERY long. Brush up on ODEs before starting this class and you should be fine.", + "pos": 0.168, + "neu": 0.832, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611d4" + } + }, + { + "text": "He is paranoid about cheating. He gives different exam versions. Some versions are easier than others- at least that was the case on the midterm! HW is graded by different TA's, so some people get higher grades than others. Attendance credit is given if he calls your name and you respond instantly. This nonsense makes grade scaling VERY UNFAIR!!!!!", + "pos": 0.074, + "neu": 0.725, + "neg": 0.202, + "_id": { + "$oid": "6711d7bfcd60fca157e611d5" + } + }, + { + "text": "Prof. Cardoso is a cool guy, but his lectures are long & boring. He has a clear grading criteria (HW, Attendance, Labs, Midterm, Final all being 20% each). Unfortunately, though called Bioelectrical Circuits, this class had no BME applications in it. For the labs, the TAs are sometimes clueless, & their grading is weird. MidtermFinal were hard!", + "pos": 0.072, + "neu": 0.699, + "neg": 0.229, + "_id": { + "$oid": "6711d7bfcd60fca157e611d6" + } + }, + { + "text": "Incredibly wonderful and gifted professor! It was a pleasure to be in his class! I learned so much from him and he deserved to be recognized as being the best teacher at CCNY!", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611d7" + } + }, + { + "text": "All his quizzes and exams are from his slides. He is always willing to help you whenever you need it. He is very kind and respectful. It is not nice to have a quiz every single class, but he makes it to be sure people is understanding his lectures as well as to take attendance. It is very easy to get an A with him, because he teaches very nicely.", + "pos": 0.244, + "neu": 0.737, + "neg": 0.02, + "_id": { + "$oid": "6711d7bfcd60fca157e611d8" + } + }, + { + "text": "Professor Cardoso is incredible. He seems to know everything. Incredibly helpful. I agree with the other post, I genuinely respect Cardoso--one of the most dedicated teachers I've ever had.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611d9" + } + }, + { + "text": "Easy professor! But very boring. 70% of the course is an exact repetition of Diff equations minus the power series and the laplace transforms. Quizzes straight from the hw and lectures. Exams very easy. Very mundane lectures. Math taught through powerpoint! what has the world come to ayi yi yi", + "pos": 0.157, + "neu": 0.785, + "neg": 0.058, + "_id": { + "$oid": "6711d7bfcd60fca157e611da" + } + }, + { + "text": "The best teacher ever! He is extremely dedicated and loves to teach.He starts from the basics and will break down the hardest topic into something you can easily digest. Extremely nice and helpful in person. He is at the top of my list of all-time favorite and unforgetable teachers. It's a privilage to learn from him. Go Professor Cardoso!", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611db" + } + }, + { + "text": "The best there ever was", + "pos": 0.512, + "neu": 0.488, + "neg": 0.0, + "_id": { + "$oid": "6711d7bfcd60fca157e611dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c0cd60fca157e611de" + }, + "professor_name": "Michael Piasecki", + "rating": 3.5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "I thought his lectures were very clear. He is a bit monotone so it can be hard to pay attention but if you are able to, his lectures tend to be consistent with the textbook and his exams. Other than that, just do the homework, labs, etc., and you should be fine. He's not so accessible outside of class though so use the TAs.", + "pos": 0.062, + "neu": 0.902, + "neg": 0.036, + "_id": { + "$oid": "6711d7c0cd60fca157e611df" + } + }, + { + "text": "His exams and labs are tough", + "pos": 0.0, + "neu": 0.769, + "neg": 0.231, + "_id": { + "$oid": "6711d7c0cd60fca157e611e0" + } + }, + { + "text": "Does not know how to talk to students. Likes to yell at students when we ask for help. He is unapproachable. Take someone else if you can it is not worth the headache.", + "pos": 0.148, + "neu": 0.807, + "neg": 0.045, + "_id": { + "$oid": "6711d7c0cd60fca157e611e1" + } + }, + { + "text": "Piasecki is a great lecturer, but his exams are very tough and his grading is even tougher, but he makes the material interesting and worth spending time on. Overall, I'm glad I took Piasecki's course because I learned a lot of Fluids that I should've learned from another professor.....", + "pos": 0.243, + "neu": 0.72, + "neg": 0.037, + "_id": { + "$oid": "6711d7c0cd60fca157e611e2" + } + }, + { + "text": "Had Piasecki for CE365 and Intro to GIS. He's an amazing lecturer, and may be one of the best in the CE dept. /In his Intro GIS Class, Project, HW, and Final is your grade. HARSH grader on project presentation (expect IGNITE presentation format). In my class he gave scores btwn 65 and 85 (NO 100)./Dr. Piasecki, pls be more encouraging to students.", + "pos": 0.174, + "neu": 0.777, + "neg": 0.049, + "_id": { + "$oid": "6711d7c0cd60fca157e611e3" + } + }, + { + "text": "He is perfect, makes you try and listen.", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d7c0cd60fca157e611e4" + } + }, + { + "text": "Not a hard class at all. He makes expectations and grading of students very clear. Do what you gotta do and you'll do well. He doesn't fail anyone, grades on an absolute curve.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d7c0cd60fca157e611e5" + } + }, + { + "text": "He never mentions about the basics of GIS and its tools. He only uses the sources where you can get those datas from but never shows how exactly this data can be extracted. In addition, he uses other professors pdf file and uses guidelines which is outdated version", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7c0cd60fca157e611e6" + } + }, + { + "text": "Very interesting class!!!", + "pos": 0.659, + "neu": 0.341, + "neg": 0.0, + "_id": { + "$oid": "6711d7c0cd60fca157e611e7" + } + }, + { + "text": "Great class, but a lot of work!!!", + "pos": 0.363, + "neu": 0.637, + "neg": 0.0, + "_id": { + "$oid": "6711d7c0cd60fca157e611e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c0cd60fca157e611ea" + }, + "professor_name": "Garri Rivkin", + "rating": 2.5, + "department": "English department", + "comments": [ + { + "text": "By far the worst Professor ever. This course was supposed to give students credit for a previous internship. The class was disorganized, the professor did not appear to know what he was doing at all. He gave more work than regular courses, I should've taken a reg course. Do not take him, you will regret it. One of the worst profs at City.", + "pos": 0.035, + "neu": 0.786, + "neg": 0.179, + "_id": { + "$oid": "6711d7c0cd60fca157e611eb" + } + }, + { + "text": "He is one of the best professors at CCNy. Things we learned from him will help us years to come. Very real life related class. Totally recommended", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d7c0cd60fca157e611ec" + } + }, + { + "text": "Garri's class was very difficult. If you want to pass you have to put in work. I met with my class assigned tutor every single week to get a \"good\" score. Put effort in your work, he will take notice if you care about the class or not. He is usually fast with emails. Prepare to WRITE! An A is not easy you have to work for it.", + "pos": 0.101, + "neu": 0.83, + "neg": 0.069, + "_id": { + "$oid": "6711d7c0cd60fca157e611ed" + } + }, + { + "text": "He was completely unhelpful. Whenever you had a question his number one answer was to \"Google it\". I had no idea what his expectations were. He barely kept up with his own syllabus. Don't buy the textbook, it would only collect dust. He was either extremely late for class or just did not show up. Don't waste your time with him.", + "pos": 0.057, + "neu": 0.909, + "neg": 0.034, + "_id": { + "$oid": "6711d7c0cd60fca157e611ee" + } + }, + { + "text": "As the writing professor of the course, he's more helpful in terms of content (especially compared to the content professor). He isn't vague but very confusing because he goes on and on and really just loses the point. This is a class to waive if you can.", + "pos": 0.061, + "neu": 0.821, + "neg": 0.118, + "_id": { + "$oid": "6711d7c0cd60fca157e611ef" + } + }, + { + "text": "Tough grader! Prepare to write, write and write! Will not be satified with one paper, he wants 10 different drafts. If you don't share the same opinion you are automatically WRONG and he will look at you weird and will make you not want to participate.", + "pos": 0.0, + "neu": 0.793, + "neg": 0.207, + "_id": { + "$oid": "6711d7c0cd60fca157e611f0" + } + }, + { + "text": "Very hard professor, a very hard grader and doesn't really show you what you do wrong in your work. DOesn't clarify guidelines for essay at the begginning of class, don't take this guy", + "pos": 0.0, + "neu": 0.822, + "neg": 0.178, + "_id": { + "$oid": "6711d7c0cd60fca157e611f1" + } + }, + { + "text": "NOT clear on his expectations for papers. If you don't share his opinion, you are wrong! Do NOT buy the text book, waste of $30-40. Be prepared to work VERY hard for an A.", + "pos": 0.045, + "neu": 0.657, + "neg": 0.298, + "_id": { + "$oid": "6711d7c0cd60fca157e611f2" + } + }, + { + "text": "cofusing at times, but will repeat if he sees confused looks. great prof, tries to help u get the best grade u can. always available to help out of class and thru EMAIL!he genuinely wants to help. not a stickler for attendance and handing in essays on time. however, he does pick apart essays, but there are redos and grading is fair. take him!", + "pos": 0.3, + "neu": 0.666, + "neg": 0.034, + "_id": { + "$oid": "6711d7c0cd60fca157e611f3" + } + }, + { + "text": "Professor Rivkin is an amazing professor and you will learn in his class. He does not give easy A'S SO BE PREPARED TO DO THE WORK!!", + "pos": 0.239, + "neu": 0.689, + "neg": 0.072, + "_id": { + "$oid": "6711d7c0cd60fca157e611f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c1cd60fca157e611f6" + }, + "professor_name": "Julia Biber", + "rating": 3.8, + "department": "Music department", + "comments": [ + { + "text": "Biber makes music history interesting and she's funny. The class is an easy A especially if you are a musician. Papers are worth a lot but I found them fun to write. Theres a final presentation at the end of the class on any musician you want. I would 100% take her again.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e611f7" + } + }, + { + "text": "Professor Biber is a dedicated teacher who cares about her students. I was struggling with some theory stuff and she really took time out to help me. She's also hilarious and knows how to keep it light.", + "pos": 0.247, + "neu": 0.693, + "neg": 0.061, + "_id": { + "$oid": "6711d7c1cd60fca157e611f8" + } + }, + { + "text": "TAKE HER FOR MUSIC. She is a GREAT professor. She is funny. There is a midterm and final and a presentation on powerpoint or oral. I never used her book, just class notes and i promise youll get over a 90 on the test.2 VERY EASY concert papers which u can go to on campus. good notes = A in her class, dont listento others", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e611f9" + } + }, + { + "text": "Replies back to emails pretty fast, approachable, tries to make the class interesting and funny, but it doesn't always work. Gives test reviews. 2 concert reports, 1 essay, a group presentation, midterm, final and quizes.", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e611fa" + } + }, + { + "text": "2 concert papers, midterm, final & a quiz here or there. Not a easy A but easy class to pass. She tries to make the class fun but it's just boring.", + "pos": 0.208, + "neu": 0.676, + "neg": 0.116, + "_id": { + "$oid": "6711d7c1cd60fca157e611fb" + } + }, + { + "text": "She gives too music work, nd totally unorganized....her exams and final exam are hard..she doesn't give any points for participation...don't take her if u can", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e611fc" + } + }, + { + "text": "Funny professor; She makes the class fun. Don't really need to use your textbook but its good to have it to review. QUIZZES ARE EASYY if you attempt to look at the review sheet. Glad I took this over Art.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e611fd" + } + }, + { + "text": "Definitely a cool teacher. She expects students to actually DO WORK, just like any other teacher. She tries to keep it upbeat, which is good. I don't know what people think, that they're supposed to sit in class, do nothing, & get a free A?", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e611fe" + } + }, + { + "text": "shes a great professor trys her best to help her students understand, funny, a few papers to write,2 concert reports,1 midterm n final n quizes , we only lyk took 2 quizzes n she dropped the lowest...class overall was easy an A is very doable...just study for the exams n do what she asks for on the papers n u got it..:)", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e611ff" + } + }, + { + "text": "Shes a gus professor, theres 2 concert reports n a few essays, which wer pretty easy just write what she asks for and what u think..straightforward, listen to diff music, likes when students particpates, funny at times, shes young n cool i guess...got a A-, just study n ull do fine:)", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e61200" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c1cd60fca157e61202" + }, + "professor_name": "Natali Pujols", + "rating": 2.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Professor Pujols is a pretty good professor. She doesn't look like she has the best mood all the time, but trust me, once you get to know her, she's very nice. The projects in class are pretty straightforward, and anytime you run into some slight difficulties, she won't hesitate to stay there and help you until you get it.", + "pos": 0.324, + "neu": 0.626, + "neg": 0.05, + "_id": { + "$oid": "6711d7c1cd60fca157e61203" + } + }, + { + "text": "She is doing her PHD which means she is very busy with her coursesis not trained as a teacher and did not hav time to honor her office hours to hand back hwks until several weeks after they were completed and hand exams the final day of class. YOu will have to teach yourself use youtube but do not depend on her lectures.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e61204" + } + }, + { + "text": "She is where GPAs go to die. Overall, an average professor with murderous exams and HW. Very disorganized - took 4+ weeks to return hw/exam grades, and some were not returned at all. Has no classroom management skills as she allows the wannabe class clowns to waste a TON of the lecture time with their corny jokes and ridiculous questions.", + "pos": 0.027, + "neu": 0.725, + "neg": 0.248, + "_id": { + "$oid": "6711d7c1cd60fca157e61205" + } + }, + { + "text": "Its true that her exams/HW are brutal, but that pushed me hard to learn the material very well on my own. Does an adequate job of teaching the material, but its all recycled from the textbook. Very approachable and willing to help any questions. Does NOT honor her stated office hours. This class caused me alot of pain, but glad that she taught it.", + "pos": 0.173, + "neu": 0.679, + "neg": 0.149, + "_id": { + "$oid": "6711d7c1cd60fca157e61206" + } + }, + { + "text": "She expects you to actually know the material, she does easy examples in class then gives hard questions for homework/exams. People complain about her way more than they should though. She says she doesn't curve but the amount of partial credit given is a big enough curve. Don't be intimidated by the other comments, she isn't that bad.", + "pos": 0.182, + "neu": 0.774, + "neg": 0.044, + "_id": { + "$oid": "6711d7c1cd60fca157e61207" + } + }, + { + "text": "She is the worst professor I ever had. Her hw is not from this planet. The exam is no where near the universe. Avoid her of all cost. She gives back the hw the day before the exam. I am writing this on the day of my exam. Its too late for me but u guys save your self . AVOID HER!!!!!!!!!!!!", + "pos": 0.06, + "neu": 0.79, + "neg": 0.15, + "_id": { + "$oid": "6711d7c1cd60fca157e61208" + } + }, + { + "text": "Class is completely done on slides which makes it hard to follow. There is a huge jump in difficulty between examples, to the homework, and then to the test. She is not very organized and the homework is returned so late it there is no way to learn from it. This was not supposed to be a hard class but most of us are struggling to understand it.", + "pos": 0.023, + "neu": 0.849, + "neg": 0.129, + "_id": { + "$oid": "6711d7c1cd60fca157e61209" + } + }, + { + "text": "Her accent is there but she isn't hard to understand. She explains the concepts mediocre at best but this class is more study-on-your-own/do-a-lot-of-problems type course. Make sure you understand the concept and not tricking yourself thinking you know it. She makes up the exams but is similar to the book problems. If you can do those, you're set.", + "pos": 0.15, + "neu": 0.781, + "neg": 0.069, + "_id": { + "$oid": "6711d7c1cd60fca157e6120a" + } + }, + { + "text": "Pretty decent teacher. She has a bit of an accent, but it isn't difficult to decipher what it is that she's saying. Make sure you do the homework assignments and check out the slides hows before class and ask if you're unclear on anything and you should be fine in the class.", + "pos": 0.167, + "neu": 0.791, + "neg": 0.042, + "_id": { + "$oid": "6711d7c1cd60fca157e6120b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c1cd60fca157e6120d" + }, + "professor_name": "Elsada Cassells", + "rating": 4.6, + "department": "African-American Studies department", + "comments": [ + { + "text": "You have to do the readings because her lectures supplement the readings but doesn't summarize them. you will be lost without doing readings. a midterm and final are short answer but you can bring a cheat sheet w you as long as it's all on one page. Group project where you have to basically give a lecture on one of the readings assigned", + "pos": 0.0, + "neu": 0.898, + "neg": 0.102, + "_id": { + "$oid": "6711d7c1cd60fca157e6120e" + } + }, + { + "text": "Amazing Professor! She is extremely knowledgeable and I learned so much. Her lectures are informative, interesting and very relevant to what is happening with race, social injustice and much more right now. She is also very funny even through those dense readings. I Highly recommend.", + "pos": 0.226, + "neu": 0.708, + "neg": 0.066, + "_id": { + "$oid": "6711d7c1cd60fca157e6120f" + } + }, + { + "text": "What an amazing professor, I wish I could take her again. Her assignments are fairly easy, just a quiz, a short midterm paper, and a basic group project. She is also hilarious and sarcastic, which everyone loved. Really like a mother figure passionately lecturing a class. If you can, please take her!", + "pos": 0.355, + "neu": 0.616, + "neg": 0.029, + "_id": { + "$oid": "6711d7c1cd60fca157e61210" + } + }, + { + "text": "shes amazing, shes so caring. ive taken her for 3 years straight and shes so smart. i truly love her.", + "pos": 0.589, + "neu": 0.411, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e61211" + } + }, + { + "text": "Cassells is passionate about African and Carribean studies and it shows each class. Cassells is very knowledgeable about the coursework and how it impacts current events. Though the class is lecture heavy, just keep up with the readings and you'll follow fine. The only homework is the readings. There is a midterm (plus review) and final", + "pos": 0.088, + "neu": 0.912, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e61212" + } + }, + { + "text": "Great professor he lectures are more discussion based on the reading that was assigned for that day on the syllabus. I recommend staying on top of those readings and participating in class helps a lot. The MidTerm paper, a group project and a final are worth most of your grade.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7c1cd60fca157e61213" + } + }, + { + "text": "This Prof. Class is something else. There is no review for midterm. The lecture is all over the place. Try to talk to her about her the readings and wont get clear concise answer. Class was not what i expected. As well as the sassyiness. Pick another class. This aint it chief.", + "pos": 0.038, + "neu": 0.883, + "neg": 0.079, + "_id": { + "$oid": "6711d7c1cd60fca157e61214" + } + }, + { + "text": "Prof Cassells is very knowledgable. There's a group project, midterm & final. The group project is presenting the reading of the day & asking the class questions. W/ the final, ur able to bring a cheat sheet w info u think u'll need (the final is 2 essays). Just take notes/read the readings. I enjoyed this class & learned a lot from her. TAKE HER!!", + "pos": 0.056, + "neu": 0.901, + "neg": 0.043, + "_id": { + "$oid": "6711d7c1cd60fca157e61215" + } + }, + { + "text": "Literally best professor ever and best class. She cares about all her students and makes tough topics simple to understand. DO YOURSELF A FAVORRR and take her class!", + "pos": 0.314, + "neu": 0.645, + "neg": 0.04, + "_id": { + "$oid": "6711d7c1cd60fca157e61216" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c2cd60fca157e61218" + }, + "professor_name": "Nandini Bagchee", + "rating": 3.6, + "department": "Architecture department", + "comments": [ + { + "text": "Bagchee is by far one of the most intelligent professor. Expect a overwhelming amount of work load and she has really high standards. One thing to know is that she plays by favorites and she makes it extremely obvious, which makes a lot of students uncomfortable. She does give amazing feedback ; she will help you develop your drawings or concept", + "pos": 0.202, + "neu": 0.762, + "neg": 0.036, + "_id": { + "$oid": "6711d7c2cd60fca157e61219" + } + }, + { + "text": "Shes very intelligent, make sure to listen to what she says and do it! She can be a bit harsh at time s ut its I t for your education, if you can do what she doesnt want you to do and impress her that is where you will get the most out of her in terms of grading and feedback etc etc!", + "pos": 0.131, + "neu": 0.812, + "neg": 0.058, + "_id": { + "$oid": "6711d7c2cd60fca157e6121a" + } + }, + { + "text": "Professor Bagchee, like many others here, has her specific methods and goals in mind when teaching studio. She can be rigid and difficult to please, but it's balanced by pride in her studio and a willingness to teach, especially those who make an effort. Any suggestions otherwise are from incompetent students.", + "pos": 0.152, + "neu": 0.73, + "neg": 0.119, + "_id": { + "$oid": "6711d7c2cd60fca157e6121b" + } + }, + { + "text": "One of the worst architecture professors, I have professor Nandini second year second semester . and her method if you do not know everything about AutoCAD or photoshop you not supposed to be in her class or the school in general. She is such a harsh and terrible grader. Save your money and time. I did not learn from her as I expected.", + "pos": 0.044, + "neu": 0.816, + "neg": 0.14, + "_id": { + "$oid": "6711d7c2cd60fca157e6121c" + } + }, + { + "text": "I'm currently taking Professor Bagchee in my second semester of first year. One word to sum up my experience so far is, intense. I've created more than I thought ever possible in the span of four days, her feedback is explosive -- in that her thoughts go everywhere on where your project can develop-- and I've found that you must decipher it.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d7c2cd60fca157e6121d" + } + }, + { + "text": "She can be harsh and very nice, it depends on the day, but if she sees that you care and work hard she will help you along the way. Sometimes she pushes you to do things her way but you shouldn't unless it truly helps your concept/design. I enjoyed her studio because I was able to push myself to create better and clearer designs.", + "pos": 0.286, + "neu": 0.636, + "neg": 0.078, + "_id": { + "$oid": "6711d7c2cd60fca157e6121e" + } + }, + { + "text": "Best teacher ever. One day u'll hate her and the next day you wont. she really wants to help you and she gives u what is expected ahead of time so dont complain. she tends to forget what she said the week before, tell her your opinion, she likes that.", + "pos": 0.199, + "neu": 0.71, + "neg": 0.09, + "_id": { + "$oid": "6711d7c2cd60fca157e6121f" + } + }, + { + "text": "You learn alot, but also do alot of work.. while the other studios next to yours are empty.. you will be there -every day & working over night- She gives decent feedback; although you need to decipher it most of the time. She is very critical and does not bite her tongue. Considered the hardest first year prof. But prepares you well for the next yr", + "pos": 0.037, + "neu": 0.884, + "neg": 0.078, + "_id": { + "$oid": "6711d7c2cd60fca157e61220" + } + }, + { + "text": "Very great mind. You must do your work, gather research, do drawing and always do extra than what is required. Let her know all you are thinking and speak it well. She is one of the few professors to give feedback, one of the best in my opinion.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d7c2cd60fca157e61221" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c2cd60fca157e61223" + }, + "professor_name": "Jennifer Roberts", + "rating": 3.3, + "department": "Classics department", + "comments": [ + { + "text": "Professor Roberts is clearly an expert in her field. I however found myself not needing to pay attention in class, but simply teaching myself the material. I pay to go to college to be taught material, not to learn it myself. I simply think that he method of teaching was not for me, though the class was erroneously easy. I like to be challenged.", + "pos": 0.142, + "neu": 0.813, + "neg": 0.045, + "_id": { + "$oid": "6711d7c2cd60fca157e61224" + } + }, + { + "text": "You can tell she really cares about her students and generally seeks to make the class more interesting for all. I also learned a lot about grammar and writing. She does do a lot of group work though and assigns a lot of reading, most of which can be found online.", + "pos": 0.114, + "neu": 0.886, + "neg": 0.0, + "_id": { + "$oid": "6711d7c2cd60fca157e61225" + } + }, + { + "text": "Honestly, this is the best class I have ever taken. Its not only about the grade, you will definitely see a change in your writing style. Vocabulary is going to be a piece of cake for you afterwards. Trust me and take her! Shes super nice and helpful!", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d7c2cd60fca157e61226" + } + }, + { + "text": "Too slow for me. I was sleepy most of the time. Need to retire. Seriously.", + "pos": 0.0, + "neu": 0.892, + "neg": 0.108, + "_id": { + "$oid": "6711d7c2cd60fca157e61227" + } + }, + { + "text": "By far the worst advisor anyone can have for a dissertation. Completely forgetful. Hard to understand and requirements are not important. Stay away otherwise it will be difficult to understand her.", + "pos": 0.0, + "neu": 0.68, + "neg": 0.32, + "_id": { + "$oid": "6711d7c2cd60fca157e61228" + } + }, + { + "text": "A teacher that insists on engagement with the material and analytical thinking in the context of the course. Fair and straight forward tests and papers. 50/50 work load split between lecture/discussion and doing your own personal reading to keep up. Lazy students that refuse to read and pay attention will be lost.", + "pos": 0.119, + "neu": 0.743, + "neg": 0.139, + "_id": { + "$oid": "6711d7c2cd60fca157e61229" + } + }, + { + "text": "she is nice and she is helpful and understanding give easy papers and easy test tell you exactly whats on it", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d7c2cd60fca157e6122a" + } + }, + { + "text": "She is interesting and she knows her stuff. She will tell you exactly what to study for test, so its not hard to do well, but you will have to work for it. She is a very nice person in general", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d7c2cd60fca157e6122b" + } + }, + { + "text": "Whatever you do not take a History class from her if she is teaching it. You will learn more about classics then you would about history. She is not hard but she can be ditszy.", + "pos": 0.033, + "neu": 0.967, + "neg": 0.0, + "_id": { + "$oid": "6711d7c2cd60fca157e6122c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c3cd60fca157e6122e" + }, + "professor_name": "Jack Hanson", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "He curves a lot but his teaching is weak. When you ask him a specific question in his office or after the class, sometimes he tells you the answer and other times he wants you to get it on your own. He is a decent guy but not very helpful in \"breaking down\" the challenging concepts.", + "pos": 0.031, + "neu": 0.854, + "neg": 0.116, + "_id": { + "$oid": "6711d7c3cd60fca157e6122f" + } + }, + { + "text": "Hanson is a really genuine professor. He is charming in a quirky way. Lectures were clear and many examples were given. Hw is harder than the tests, but he is a generous grader. Still a difficult class, so work needs to be put in.", + "pos": 0.167, + "neu": 0.771, + "neg": 0.063, + "_id": { + "$oid": "6711d7c3cd60fca157e61230" + } + }, + { + "text": "Amazing professor, really cares that you understand the material. Always willing to answer questions! Let's you use formulas which is really helpful! And doesn't take off many points for small computational mistakes. Make sure you can do the HW and understand it well and you should be able to well on his exams. Also, pretty funny!", + "pos": 0.323, + "neu": 0.642, + "neg": 0.034, + "_id": { + "$oid": "6711d7c3cd60fca157e61231" + } + }, + { + "text": "He is a really great professor. He knows the subject matter well too. Bare in mind, MATH376, is not your ordinary statistics course, it is 4 credits because there is more proof. 2 exams (20% each), HW(20%) final (40%). Drops the lowest HW and also accessible outside class.", + "pos": 0.181, + "neu": 0.772, + "neg": 0.047, + "_id": { + "$oid": "6711d7c3cd60fca157e61232" + } + }, + { + "text": "He is a really great professor. He knows the subject matter well too. Bare in mind, MATH376, is not your ordinary statistics course, it is 4 credits because there is more proving that plug and plug or accepting the formula without questioning. 2 exams (20% each), HW(20%) final (40%). Drops the lowest HW and also accessible outside class.", + "pos": 0.207, + "neu": 0.755, + "neg": 0.038, + "_id": { + "$oid": "6711d7c3cd60fca157e61233" + } + }, + { + "text": "Great professor, 2 midterm 20% each , 1 final 40%. Gave about 10 hw 20%. If you do his practice problems and the hw, you should get a good grade on his exams. They are not super difficult. Make sure to speak to him during office hours with any questions you might have about the material. All around great guy.", + "pos": 0.209, + "neu": 0.713, + "neg": 0.079, + "_id": { + "$oid": "6711d7c3cd60fca157e61234" + } + }, + { + "text": "His linear algebra class is very straightforward. Homework is assigned and collected once a week. He drops two of the lowest homeworks. There were two exams and they were both curved up. He wants his students to learn and do well, asks to make sure we understand, and is more than willing to meet outside of class if you have questions or need help.", + "pos": 0.102, + "neu": 0.861, + "neg": 0.037, + "_id": { + "$oid": "6711d7c3cd60fca157e61235" + } + }, + { + "text": "Blame can't be completely put on the professor, as the course material is naturally hard. Unfortunately, he's not the best lecturer, as you can get pretty much the same information directly from the textbook. Lectures are verbose, and only barely paraphrases the text. Do all the homework, and practice, and you'll pass.", + "pos": 0.054, + "neu": 0.786, + "neg": 0.16, + "_id": { + "$oid": "6711d7c3cd60fca157e61236" + } + }, + { + "text": "Practice, practice, practice. Exams are similar to the homework and class examples. Ask questions and you won't regret from asking.", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e61237" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c3cd60fca157e61239" + }, + "professor_name": "Neville Parker", + "rating": 1.4, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He doesn't know how to explain on what pedagogy means. Not worth to take this class with him. It is a deception because the course is really interesting be he is not good teaching.", + "pos": 0.075, + "neu": 0.751, + "neg": 0.174, + "_id": { + "$oid": "6711d7c3cd60fca157e6123a" + } + }, + { + "text": "He doesn't teach, \"he guides\" as he says so several times during the class. He does not guide at all either, he laughs, he talks and he says NOTHING. We are just captive students because there is no one else to teach this. He is not helpful at all and then when you obtain a bad grade is your fault. Be prepared for this joke.", + "pos": 0.096, + "neu": 0.763, + "neg": 0.141, + "_id": { + "$oid": "6711d7c3cd60fca157e6123b" + } + }, + { + "text": "Not worth the money.i think he should retire,same old exam paper from last year.He has no clue what he is talking about.", + "pos": 0.0, + "neu": 0.838, + "neg": 0.162, + "_id": { + "$oid": "6711d7c3cd60fca157e6123c" + } + }, + { + "text": "RUN AWAY!!!! FROM THIS TERRIBLE, HORRIBLE, MISERABLE teacher, DO NOT WASTE YOUR MONEY. His classes are Boring, terrible accent, his teaching skills are poor. Run for your lives!!", + "pos": 0.062, + "neu": 0.454, + "neg": 0.484, + "_id": { + "$oid": "6711d7c3cd60fca157e6123d" + } + }, + { + "text": "Hard work but doable. Material for class MUST BE READ if you want a shot at passing.", + "pos": 0.082, + "neu": 0.85, + "neg": 0.068, + "_id": { + "$oid": "6711d7c3cd60fca157e6123e" + } + }, + { + "text": "he knows the subject but does not know how to explain. get in touch with ur seniors and ask for the project reports and test papers to excel in the class. if u really work hard then u might score a A or A-", + "pos": 0.083, + "neu": 0.875, + "neg": 0.042, + "_id": { + "$oid": "6711d7c3cd60fca157e6123f" + } + }, + { + "text": "his classes are very boring......his exams are really bad...exams are the same every year..so get in touch with your seniors....he will atleast fail 4 members in the class.....final project is will decided ur final grades", + "pos": 0.0, + "neu": 0.907, + "neg": 0.093, + "_id": { + "$oid": "6711d7c3cd60fca157e61240" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7c3cd60fca157e61241" + } + }, + { + "text": "He sucks.He thinks he knows something.Yes he knows.But he doesnt know how to teach..Simply, he failed many graduate students. He is equal..since his class is core course for transportation, almost each of the poor students will see his face if he is not fired or retired..", + "pos": 0.056, + "neu": 0.822, + "neg": 0.122, + "_id": { + "$oid": "6711d7c3cd60fca157e61242" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c3cd60fca157e61244" + }, + "professor_name": "Karin Fisher Agha", + "rating": 4.7, + "department": "Psychology department", + "comments": [ + { + "text": "best professor ever!!!!!!!", + "pos": 0.729, + "neu": 0.271, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e61245" + } + }, + { + "text": "best professor ever", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e61246" + } + }, + { + "text": "Subject is hard (VERY!) but she is very HELPFUL and NICE too. work hard, do the readings, and participate in class and you will do fine... :D", + "pos": 0.437, + "neu": 0.497, + "neg": 0.066, + "_id": { + "$oid": "6711d7c3cd60fca157e61247" + } + }, + { + "text": "Took her for Infancy and Childhood, shes an amazing teacher. Makes class interesting and hw\u00b4s are straight from the book and her notes. Take good notes and you will do well.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e61248" + } + }, + { + "text": "great professor, i failed all the exams but with my hw and attendance grades and extra credits.. i managed to get a B.. overall u shud take her.. she tries her best to help u.. and dont be rude.. and come to class 5 mins early ...", + "pos": 0.299, + "neu": 0.666, + "neg": 0.035, + "_id": { + "$oid": "6711d7c3cd60fca157e61249" + } + }, + { + "text": "If you do the readings and work you will be fine. She is clear in her lectures, and very nice.", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e6124a" + } + }, + { + "text": "Great teacher! Likes to show interesting video clips in class . Attendance counts a lot. Likes to engage the class in discussion and likes to hear personal experiences from students. Tests are directly from the textbook & test reviews are incredibly helpful. Gives opportunity for extra credit. Very friendly and nice :) Recommended!", + "pos": 0.489, + "neu": 0.511, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e6124b" + } + }, + { + "text": "Easy going, fun, engaging.", + "pos": 0.896, + "neu": 0.104, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e6124c" + } + }, + { + "text": "Good teacher, easy going.", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d7c3cd60fca157e6124d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c4cd60fca157e6124f" + }, + "professor_name": "Claudet Charles", + "rating": 1.6, + "department": "Media Arts department", + "comments": [ + { + "text": "Is a class on her opinions. Little taught from the textbook or any real source. 70% is just an argument with what she believes in. Especially when the ideas are very outdated and out of touch. Will assign projects and papers with out even telling the class, so if you didn't look on her constantly updated syllabus, you get late grades.", + "pos": 0.0, + "neu": 0.96, + "neg": 0.04, + "_id": { + "$oid": "6711d7c4cd60fca157e61250" + } + }, + { + "text": "absolutely awful. do not take her for an elective. favors students who's majors are media arts. do not disagree with her.", + "pos": 0.164, + "neu": 0.707, + "neg": 0.129, + "_id": { + "$oid": "6711d7c4cd60fca157e61251" + } + }, + { + "text": "As friendly as she is, she'll quickly turn on you for your personal views. For a professor her level of teaching is as low as it can get. Her quizzes are exams beware! Her grading for papers is tough which is fine, however ones she holds something against you its history. No matter how great your paper is she will give you a low grade. Awful.", + "pos": 0.118, + "neu": 0.752, + "neg": 0.13, + "_id": { + "$oid": "6711d7c4cd60fca157e61252" + } + }, + { + "text": "First I would like to say, yes she is a very nice person ... HOWEVER she is not the easiest or greatest professor to follow. She is un-organized, always on her phone, constantly changing things on the syllabus. Honestly, I spent more time correcting her mistakes on \"test\" than actually focusing on it. I'm sorry I learned more from the book.", + "pos": 0.208, + "neu": 0.71, + "neg": 0.082, + "_id": { + "$oid": "6711d7c4cd60fca157e61253" + } + }, + { + "text": "Really harsh grader with grammar on papers, when her own work has multiple grammar mistakes. Doesn't make sense half of the time. Gives group projects that aren't really considered group projects. When presenting final project she sits in the back of the room on her laptop and phone. She's a nice person but not professor material.", + "pos": 0.032, + "neu": 0.902, + "neg": 0.065, + "_id": { + "$oid": "6711d7c4cd60fca157e61254" + } + }, + { + "text": "Professor is always unclear and expects things done without warning. Never received a grade higher than a 75 even after working hard and putting in effort. Each test has over 20 typos, and she takes a month to return any work you turned in. Lectures are irrelevant. Would not recommend this professor to literally anyone.", + "pos": 0.035, + "neu": 0.871, + "neg": 0.094, + "_id": { + "$oid": "6711d7c4cd60fca157e61255" + } + }, + { + "text": "She's very nice, but goes off topic a lot. Be prepared to read the textbook on your own if you want to do well on the tests. Pretty easy grader when it comes to papers, and the questions on the final are taken from tests. Definitely not the easiest A to get, but not impossible; just do the work.", + "pos": 0.272, + "neu": 0.687, + "neg": 0.04, + "_id": { + "$oid": "6711d7c4cd60fca157e61256" + } + }, + { + "text": "She mostly goes off-topic that doesn't have anything to do with the class. If you need to take this course, be prepared to hear about certain topics that might not be interesting to you or not even related to the class.", + "pos": 0.09, + "neu": 0.859, + "neg": 0.051, + "_id": { + "$oid": "6711d7c4cd60fca157e61257" + } + }, + { + "text": "nice and fair teacher, you really have to be on top of your game, good at listening and retaining information if you want to pass her class.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d7c4cd60fca157e61258" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c4cd60fca157e6125a" + }, + "professor_name": "Kirsten Comeforo", + "rating": 4.6, + "department": "Marketing department", + "comments": [ + { + "text": "I loved the class! It was interesting , and she is nice and funny. If you attend take notes and do the required work, you'll be fine! PS you don't even need to buy a book!", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d7c4cd60fca157e6125b" + } + }, + { + "text": "Nice, funny, interesting, and helpful. Definitely would recommend her!", + "pos": 0.848, + "neu": 0.152, + "neg": 0.0, + "_id": { + "$oid": "6711d7c4cd60fca157e6125c" + } + }, + { + "text": "I took the course in Summer 2007. Comeforo made Ad Man 2 a fun class. We worked in groups of 2 and had to turn in a different assignment each week. At the end of the course we each had to present our research and campaign to the class. Best summer course ever! I got a B+ despite getting all A's on the papers because I laughed during my presentation", + "pos": 0.139, + "neu": 0.861, + "neg": 0.0, + "_id": { + "$oid": "6711d7c4cd60fca157e6125d" + } + }, + { + "text": "She often gave me contradicting ideas for my paper and in the end, penalized me for writing on a topic she first approved.", + "pos": 0.107, + "neu": 0.805, + "neg": 0.088, + "_id": { + "$oid": "6711d7c4cd60fca157e6125e" + } + }, + { + "text": "Great Prof. She gives examples and topics that students could relate to and treats students like intellectuals of society. Liberal. Understanding and funny. Take her paper seriously though it will weight heavy on your grade.", + "pos": 0.276, + "neu": 0.685, + "neg": 0.039, + "_id": { + "$oid": "6711d7c4cd60fca157e6125f" + } + }, + { + "text": "WONDERFUL!!! THE class doesnt seems like 3 hrs, more like an hr & 30 min. rlly good. so informative, teaches in an interesting way, helps students alot! not boring at all, so engaging, she's great!", + "pos": 0.481, + "neu": 0.48, + "neg": 0.039, + "_id": { + "$oid": "6711d7c4cd60fca157e61260" + } + }, + { + "text": "Fun teacher, discussion on broad range of topics. There are basically 4 papers and a presentation you need todo for this class. Do them well and you'll do fine. Teacher is nice and approachable.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d7c4cd60fca157e61261" + } + }, + { + "text": "class was very good,works well with student.you'l get a good grade if you attend and do assignments", + "pos": 0.26, + "neu": 0.74, + "neg": 0.0, + "_id": { + "$oid": "6711d7c4cd60fca157e61262" + } + }, + { + "text": "For a 3 hr. class, one of the best! She is very funny, and makes 3 hrs. seem like 1. Interesting topics, likes to talk about AOL and PR(public relations.) Just know the 3 key themes, and you're set. Has to be the best professor i've had here at CCNY!", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d7c4cd60fca157e61263" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c5cd60fca157e61265" + }, + "professor_name": "Ryan Coughlan", + "rating": 1.5, + "department": "Education department", + "comments": [ + { + "text": "This professor is a tough grader. Assigns lots of reading.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d7c5cd60fca157e61266" + } + }, + { + "text": "He assigns a lot of readings and it can get daunting at times. The essay guidelines were clear, and participation is a must. He makes you work for the grade.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61267" + } + }, + { + "text": "He is extremely hard grader.", + "pos": 0.0, + "neu": 0.703, + "neg": 0.297, + "_id": { + "$oid": "6711d7c5cd60fca157e61268" + } + }, + { + "text": "He is a hard grader. This class requires a lot of reading, writing and participation. If you want a good grade must participate. Speak up, whatever you want.", + "pos": 0.178, + "neu": 0.777, + "neg": 0.045, + "_id": { + "$oid": "6711d7c5cd60fca157e61269" + } + }, + { + "text": "He behaves like he is so nice and cool. For grading, he is so tough. No.1 GPA killer.", + "pos": 0.31, + "neu": 0.465, + "neg": 0.225, + "_id": { + "$oid": "6711d7c5cd60fca157e6126a" + } + }, + { + "text": "You have to beg for help then he will help. Tough grader. Class participation MUST. Assigns a lot of readings.", + "pos": 0.226, + "neu": 0.711, + "neg": 0.063, + "_id": { + "$oid": "6711d7c5cd60fca157e6126b" + } + }, + { + "text": "He is TOUGH grader. PARTICIPATION is so IMPORTANT. If you want get a good grade MUST PARTICIPATE (TALK). Attendance is also important for his class.", + "pos": 0.295, + "neu": 0.635, + "neg": 0.071, + "_id": { + "$oid": "6711d7c5cd60fca157e6126c" + } + }, + { + "text": "You have to be an active speaker to get the participation points. Talk a lot. Otherwise it will kill your GPA.", + "pos": 0.102, + "neu": 0.72, + "neg": 0.178, + "_id": { + "$oid": "6711d7c5cd60fca157e6126d" + } + }, + { + "text": "He is a HARD grader.", + "pos": 0.0, + "neu": 0.652, + "neg": 0.348, + "_id": { + "$oid": "6711d7c5cd60fca157e6126e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c5cd60fca157e61270" + }, + "professor_name": "Hasan Faruq", + "rating": 4.6, + "department": "Economics department", + "comments": [ + { + "text": "Hasan was really enjoyable as a teacher.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61271" + } + }, + { + "text": "not flexible at all with with credit for attendance and extra credit", + "pos": 0.328, + "neu": 0.567, + "neg": 0.105, + "_id": { + "$oid": "6711d7c5cd60fca157e61272" + } + }, + { + "text": "Wish he wasn't a guest teacher. We need more teacher like him in ccny. great guy, very easy to talk to. even tho big part of your grade is based on two exam but if you study and come to lecture, you will be fine because he gives great lecture.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61273" + } + }, + { + "text": "He is a great professor and very nice to talk to. Lectures are clear and he does a great job of explaining the subject material. Only problem with this class is that almost 90% of your grade is 2 exams (3, but the lowest is dropped) and his questions are very tricky so you really have to study. Overall great guy that does a great job on this topic", + "pos": 0.231, + "neu": 0.683, + "neg": 0.086, + "_id": { + "$oid": "6711d7c5cd60fca157e61274" + } + }, + { + "text": "After taking this class and microeconomics, I decided to change major to economics. He's a genuinely kind and caring proffessor. He always asks us if we understand the material. I have been to his office hours many times and always find him polite and patient. Only wish City College had more proffessors like him.", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61275" + } + }, + { + "text": "Good class. His lectures make you think. Exams are challenging but doable.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61276" + } + }, + { + "text": "His teaching style is amazing definitely take him if you have chance. He is available for office hours and email.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61277" + } + }, + { + "text": "Professor Faruq is always available for students outside the class so make sure you go to his office hours. He always make sure that students understand the economics concepts. Make sure that you take advantage of his office hours because if you don't understand macro economics concepts he will always make the concepts clear and concise for student", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61278" + } + }, + { + "text": "Professor Faruq is always available for students outside the class so make sure you go to his office hours. He always make sure that students understand the economics concepts. Even though attendance is not always mandatory you should try not to skip class because macro economics is not really an easy class. Just take advantage of his officehour", + "pos": 0.108, + "neu": 0.832, + "neg": 0.06, + "_id": { + "$oid": "6711d7c5cd60fca157e61279" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c5cd60fca157e6127b" + }, + "professor_name": "Marlene Clark", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "interesting professor and she is not overwhelming. Definitely fair.", + "pos": 0.209, + "neu": 0.464, + "neg": 0.327, + "_id": { + "$oid": "6711d7c5cd60fca157e6127c" + } + }, + { + "text": "The professor is really nice, she is very knowledge and passionate about her work. She gives you a lot of opportunities to revise you work before handing up the one she grades. would totally recommend to anyone who need to do critical reading.", + "pos": 0.232, + "neu": 0.725, + "neg": 0.044, + "_id": { + "$oid": "6711d7c5cd60fca157e6127d" + } + }, + { + "text": "Prof. Clarke cares about her students. She appears tough and stern in the beginning but that is simply because she is super determine to bring the best out of her students and their writing ethics.", + "pos": 0.29, + "neu": 0.683, + "neg": 0.028, + "_id": { + "$oid": "6711d7c5cd60fca157e6127e" + } + }, + { + "text": "Prof. Clark is an amazing professor. One of the best professors hands down! She will teach you the skills that are needed to write an excellent paper that will have your next professor amazed at how great your writing is. As long as you attend class, do your work and readings, there shouldn't be an issue.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e6127f" + } + }, + { + "text": "Great professor some may think she's mean and only favors some students, but do your work come to class on time and participate and you'll do great!!!!", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61280" + } + }, + { + "text": "Excellent professor.", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61281" + } + }, + { + "text": "This Prof. has her favorites. It is not nice. No matter how much you participate or how well you do on assignments, she may or may not like you and show it in front of the class. Speaks about her son a lot, which some mind, some don't, but the favoritism she shows towards a select few students is disgusting.", + "pos": 0.067, + "neu": 0.79, + "neg": 0.143, + "_id": { + "$oid": "6711d7c5cd60fca157e61282" + } + }, + { + "text": "Core Writing: Culture/Critique", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7c5cd60fca157e61283" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7c5cd60fca157e61284" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c6cd60fca157e61286" + }, + "professor_name": "Zhengrong Wang", + "rating": 2.3, + "department": "Science department", + "comments": [ + { + "text": "He was an alright professor, didn't really care if you skipped his lectures. Your grade is only based on the midterm, final, and lab grade so try your best on the exams. DO THE EXTRA CREDIT its pretty easy and i don't think he really checks what u write, only how long your paper is.", + "pos": 0.235, + "neu": 0.723, + "neg": 0.042, + "_id": { + "$oid": "6711d7c6cd60fca157e61287" + } + }, + { + "text": "He literally made us do so much work for extra credits and they barely even counted. Lectures are 60% of the grade which consists of a midterm and final and labs are only 40%. There is no way you can do really good on the tests, they're so hard even if you memorized all the slides and textbook chapters. Avoid him!!", + "pos": 0.083, + "neu": 0.817, + "neg": 0.1, + "_id": { + "$oid": "6711d7c6cd60fca157e61288" + } + }, + { + "text": "Normally he used to introduce the speaker of the day and that was what he did. At the end of the semester, he didn't want to give the desired grade to students. He gave grades that didn't make sense and was a stark contrast to the syllabus. Had to go through the Department to obtain my grade. Don't take him unless you want to damage your CGPA.", + "pos": 0.048, + "neu": 0.89, + "neg": 0.062, + "_id": { + "$oid": "6711d7c6cd60fca157e61289" + } + }, + { + "text": "He teaches the topics fairly well and you can skip the class if you want to study the slides on your own time. Although his 3 tests make up the majority of the final grade, he heavily curves them and gives a lot of easy extra-credit assignments on Bb weekly. Just come in on his test review days and you can do the rest, if you find him boring.", + "pos": 0.086, + "neu": 0.883, + "neg": 0.031, + "_id": { + "$oid": "6711d7c6cd60fca157e6128a" + } + }, + { + "text": "The main downside to this class is that the grading is divided 60% lecture and 40% lab, but the entire lecture grade is just composed of the tests. The class is pretty boring and his slides are taken right from the textbook, and even if you memorize the slides you probably won't do well on his exams.", + "pos": 0.067, + "neu": 0.829, + "neg": 0.104, + "_id": { + "$oid": "6711d7c6cd60fca157e6128b" + } + }, + { + "text": "Your grade is based on only three exams for lecture which are super hard and dense. They come from the textbook and slides, but it's almost impossible to memorize everything because the textbook has so much information, so you don't know what's going to be on the exams. Lab is only 40% of your grade while lecture exams are 60%.", + "pos": 0.04, + "neu": 0.941, + "neg": 0.019, + "_id": { + "$oid": "6711d7c6cd60fca157e6128c" + } + }, + { + "text": "Heavy accent conflicts lecture. Do not take this professor unless you want to drop your major and switch to another like the rest. He made my desire for science simmer from lack of communication. Definitely a knowledgeable man, just not a good teacher.", + "pos": 0.172, + "neu": 0.653, + "neg": 0.175, + "_id": { + "$oid": "6711d7c6cd60fca157e6128d" + } + }, + { + "text": "Wang is one of the best professors I've had, he teaches tough courses like solid earth geochem and mineralogy which are known to be hard subjects. Most of your class grade (like 50%) is based on hw so he basically makes it impossible to fail. He is also very kind and understanding, he is always available outside of class and is very helpful.", + "pos": 0.226, + "neu": 0.692, + "neg": 0.082, + "_id": { + "$oid": "6711d7c6cd60fca157e6128e" + } + }, + { + "text": "You have to study alot of information for his tricky worded exams but they are mega curved. You do need to buy a lab book, but he doesn't completely use information from the required textbook, half of his slides come from online so you can get by without buying. WARNING: Mr. Wang is nice but his lectures are incredibly boring, just reads off slides", + "pos": 0.098, + "neu": 0.836, + "neg": 0.065, + "_id": { + "$oid": "6711d7c6cd60fca157e6128f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c6cd60fca157e61291" + }, + "professor_name": "Marianne Wolk", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "The econs department has so many bad professors EXCEPT her. She is the best professor ive ever had. She simplifies what it is like to work on wall street, and strcuturely gives directions for excel assignments. She gives you the tools needed to well on exams(midterm and final). You are mostly graded on how well you forecast. She truly cares. 10/10", + "pos": 0.259, + "neu": 0.692, + "neg": 0.049, + "_id": { + "$oid": "6711d7c6cd60fca157e61292" + } + }, + { + "text": "I can undoubtedly say that Prof. Wolk and Prof. Horwitz are two of the best professors at CCNY. Not only are they very knowledgeable and approachable, but they both have impressive careers. They try their best to teach us real-world skills using excel and financial analysis to improve our analytical abilities. I recommend this class to everybody!", + "pos": 0.348, + "neu": 0.652, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e61293" + } + }, + { + "text": "Prof. Rich and Wolk provide you with excel documents with data and short readings that you analyze and read to do the homework. Whenever I had trouble understanding a question and sent an email, I always got a quick response back. They are really inviting and open for you to use them as a resource for networking and for any advice!", + "pos": 0.137, + "neu": 0.824, + "neg": 0.039, + "_id": { + "$oid": "6711d7c6cd60fca157e61294" + } + }, + { + "text": "Rich and Marianne are one of the most helpful professors I had taken. They had taught me a lot about Financial Analysis in such a short time as well as sharpening our excel skills. I would love to take them again in the future if possible one day.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e61295" + } + }, + { + "text": "I loved this class, It was once a week but the professors were available all times of the day via email, before or after class to help students. I wish they were teaching before i graduated.", + "pos": 0.224, + "neu": 0.776, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e61296" + } + }, + { + "text": "Wolk and Horwitz are both amazing Professors at CCNY. Its unfortunate they were only here for 1 semester. They made Financial Analysis very interesting, and guided you on what you need to know as someone on Wall Street. Hw is optional but recommended. Graded on Company Forecasts, Midterm and Final. Guided what mistakes you made on exams. 5/5", + "pos": 0.102, + "neu": 0.817, + "neg": 0.081, + "_id": { + "$oid": "6711d7c6cd60fca157e61297" + } + }, + { + "text": "Professor Work and Professor Horwitz are two amazing professors, who give real insight from their experiences. The class is great, as you learn a lot more than expected, also more than other economic courses. I would definitely take any class taught by them.", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e61298" + } + }, + { + "text": "This course went beyond what I expected as the instructors not only taught us practical skills and professional knowledge using real excel files for different companies but also helped us with resume revision, mock interview and mentoring. If you want to learn knowledge, skills and get insights about the finance industry, I would highly recommend.", + "pos": 0.115, + "neu": 0.825, + "neg": 0.06, + "_id": { + "$oid": "6711d7c6cd60fca157e61299" + } + }, + { + "text": "I took this professor for Financial Analysis, Modeling and Strategy. The professor knows the material and presents it in a way that makes it understandable. Also cares about the students development inside and outside of the class. One of the better professors in the school.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e6129a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c6cd60fca157e6129c" + }, + "professor_name": "Yorkinoy Shermatova", + "rating": 4.2, + "department": "Mathematics department", + "comments": [ + { + "text": "I actually go to the University of Minnesota and have Yorkinoy for a summer course. While the class isnt too hard, the lectures are very disorganized and have nothing to do with what we are required to study in the textbook. Consequently, all the students in the class get confused on how to do in-class work as we havent seen it before I. homework", + "pos": 0.019, + "neu": 0.909, + "neg": 0.071, + "_id": { + "$oid": "6711d7c6cd60fca157e6129d" + } + }, + { + "text": "Shes a sweetheart. She saw that some people did poorly on the final and curved our grades. Calc 1 is easy if you learned 195/precalc well and/or had it in highschool. Please study and learn it for yourselves no matter the teacher. She was great for me but you have to be great for yourself. Good luck", + "pos": 0.327, + "neu": 0.659, + "neg": 0.014, + "_id": { + "$oid": "6711d7c6cd60fca157e6129e" + } + }, + { + "text": "If you want to have a professor that goes step by step and slowly dont take her. I repeat dont take her. I dont know how she is rated 5 stars. She rushes through her lectures and gets mad when you ask too many questions", + "pos": 0.027, + "neu": 0.905, + "neg": 0.067, + "_id": { + "$oid": "6711d7c6cd60fca157e6129f" + } + }, + { + "text": "I LOVE THIS PROFESSOR!! She's literally the BEST professor I've come across at CCNY!!! She actually CARES about her students and her tests are EASY if you do the web assign homeworks. She preps you for the final EXCEPTIONALLY WELL. TAKE MY WORD AND TAKE HER CLASS!!", + "pos": 0.346, + "neu": 0.654, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e612a0" + } + }, + { + "text": "The best math professor Ive had. Shell take her time to explain something you dont understand and is easy to reach outside the class.", + "pos": 0.281, + "neu": 0.719, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e612a1" + } + }, + { + "text": "SUCH A GREAT TEACHER! Take her if you want to improve math skills and learn a lot. Great choice, wish I could take her again. Very fair and incredibly nice!", + "pos": 0.49, + "neu": 0.51, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e612a2" + } + }, + { + "text": "Probably one of the most amazing professors I've encountered. Very clear explanations, easy going teaching style, really cares about her students, definitely would take again. PS: Her exams are cake if you study her review sheets as well as her webassign hw.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e612a3" + } + }, + { + "text": "SHE IS VERY NICE WITH HER STUDENTS AND FRIENDLY AS WELL. IF YOU SHOW EFFORT SHE WILL PASS YOU. JUST KNOW THE MATERIALS SHE TEACH, YOU WILL GET COMMON QUESTIONS IN THE EXAMS. I WILL DEFINITELY TAKE HER AGAIN.", + "pos": 0.241, + "neu": 0.759, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e612a4" + } + }, + { + "text": "Great Professor, very friendly in office hours and really cares about the students. Fair grading and extra credit.", + "pos": 0.548, + "neu": 0.452, + "neg": 0.0, + "_id": { + "$oid": "6711d7c6cd60fca157e612a5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c7cd60fca157e612a7" + }, + "professor_name": "John Droescher", + "rating": 4.8, + "department": "Business department", + "comments": [ + { + "text": "He's a decent professor. Genuinely cares. The way he wants his students to think is very beneficial to harder questions. But, it gets extremely redundant for easier questions and it feels like you're creating more questions/issues than needed. Not very accessible through email. Does goes on tangents. But, if you're pursuing DA/DS, he is the goto.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612a8" + } + }, + { + "text": "John Droescher is one of the best professors I have ever had in my 4 years of CCNY. As everyone has said, he cares about his student's success and helps you think like a true analyst, he helps you think insightfully and gives amazing feedback. His class can be difficult but if you want to pursue this field then this is the man you go to.", + "pos": 0.238, + "neu": 0.739, + "neg": 0.023, + "_id": { + "$oid": "6711d7c7cd60fca157e612a9" + } + }, + { + "text": "A gem in City College. Prof. Droescher cares about setting his students up for success. He encouraged us to get into the habit of having an intentional approach towards problems. He offers immense help & advice during office hours. Had us do a final project that can actually be used in a portfolio for a BA/DA career, instead of busy work. THANK YOU", + "pos": 0.202, + "neu": 0.762, + "neg": 0.036, + "_id": { + "$oid": "6711d7c7cd60fca157e612aa" + } + }, + { + "text": "One of the best professors I've taken at CCNY. Not only is he caring, but he genuinely wants you to succeed in life. His feedbacks are amazing! Please take him. You won't regret it.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612ab" + } + }, + { + "text": "One of the coolest professor I have ever had. I would have take his another class if I hadn't transferred. He is the expert on his work, that's for sure!", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612ac" + } + }, + { + "text": "he is good as long as you pay attention to him and do your work. Take your time when doing the works", + "pos": 0.119, + "neu": 0.823, + "neg": 0.058, + "_id": { + "$oid": "6711d7c7cd60fca157e612ad" + } + }, + { + "text": "This class is great for students who want to learn how to think like an analyst and are willing to work hard on their own time. Class will not specifically teach you how to code on SQL or python. This will have to come from your own work. Pace yourself with the final project and go to office hours to ask questions. If you work hard you'll do great!", + "pos": 0.157, + "neu": 0.807, + "neg": 0.036, + "_id": { + "$oid": "6711d7c7cd60fca157e612ae" + } + }, + { + "text": "Test, weekly assignments, and a final project. He gives you the tools you will need to succeed. Great lecturer and a great class, if you are interested in python and want to develop a analyst mindset then take his class. YOU WILL NEED TO WORK FOR YOUR GRADE. Keep up with the lectures and you will be fine.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612af" + } + }, + { + "text": "Professor Droescher is a very caring professor and will help you out whenever you need it. If you don't understand something don't hesitate to ask questions because he will explain it to you. His class is very fair and he's a fair grader. You will learn Python and SQL with this professor, if you want to learn business analysis take him!", + "pos": 0.209, + "neu": 0.791, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c7cd60fca157e612b2" + }, + "professor_name": "Anna Towne", + "rating": 3.8, + "department": "Computer Science department", + "comments": [ + { + "text": "Professor Anna is one of the best that I have seen at Cuny. She explains everything in details and will go over any material that you will ask her to. It was my first time taking Computer Science class and she made it so easy. Of course you have to study. Participation matters. I would totally recommend her and I would take her again.", + "pos": 0.165, + "neu": 0.835, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612b3" + } + }, + { + "text": "I had my final exam today and was freaking out, so I emailed her last night; she responded in a couple of hours and was very comforting. I wouldn't say I like coding, but somehow she made me enjoy it. I think she is very caring and would respond to your email. I recommend her.", + "pos": 0.214, + "neu": 0.734, + "neg": 0.052, + "_id": { + "$oid": "6711d7c7cd60fca157e612b4" + } + }, + { + "text": "Her lectures were extremely helpful, especially as they included example questions.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612b5" + } + }, + { + "text": "This class is kind of a joke because zybook accounts for 80% of the grade. She wants the students to learn but most take the class for an easy A or because they're required. The only complaint I have with her is that she always picks the same 3 students.", + "pos": 0.099, + "neu": 0.851, + "neg": 0.051, + "_id": { + "$oid": "6711d7c7cd60fca157e612b6" + } + }, + { + "text": "Recitations of CSC 102 are supposed to be mandatory, but played no role on the grade. Anna Towne is a good professor, but unfortunately the class is so easy that people do not pay attention to her lectures. She's very nice and caring about her students, but students just don't care because the class is so easy to get a good grade in.", + "pos": 0.35, + "neu": 0.55, + "neg": 0.101, + "_id": { + "$oid": "6711d7c7cd60fca157e612b7" + } + }, + { + "text": "Towne was a great professor. She is very kind and is always willing to help outside of class. 90% of your grade is based on the homework assignments so make sure you complete all of it. Don't skip class and try to take some notes!", + "pos": 0.246, + "neu": 0.754, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612b8" + } + }, + { + "text": "Professor Towne is caring and wants her students to learn. She makes sure to breakdown concepts so you get a full understanding of the basics before moving up. All homework is on Zybooks and she extends homework if the majority of the class needs it. Very helpful in office hours. Show up to class, participate, do hw, and go to office hours.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d7c7cd60fca157e612b9" + } + }, + { + "text": "Nice lady, but online class its a disaster. We get zoom links 5-15 minutes late (when it can be prescheduled), she stays on a single topic for too long and often wastes time and often ends up calling on the same few people. She extends hw often which I appreciate. Alsom if u take her and she only grades hw ur ok, but if she does exams I'd drop.", + "pos": 0.091, + "neu": 0.805, + "neg": 0.104, + "_id": { + "$oid": "6711d7c7cd60fca157e612ba" + } + }, + { + "text": "She's a great person, but teaching-wise isn't the best. Not only she uses a different textbook from the HW program, but she's redundant while she teaches, and wastes time reviews the little things. She also makes zoom rooms at the last moment and is hard on having the cameras on for some reason. But she is generous with HW extensions.", + "pos": 0.101, + "neu": 0.81, + "neg": 0.089, + "_id": { + "$oid": "6711d7c7cd60fca157e612bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c8cd60fca157e612bd" + }, + "professor_name": "Caitlin Geoghan", + "rating": 5, + "department": "Science department", + "comments": [ + { + "text": "P.S. Just take her. A for amazing.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612be" + } + }, + { + "text": "great professor! understanding and funny. if you communicate and do the work easy A.", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612bf" + } + }, + { + "text": "Amazing professor! She's so understanding", + "pos": 0.506, + "neu": 0.494, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612c0" + } + }, + { + "text": "Prof Geoghan is awesome. She gives great feedback on the papers and shows you how you can improve your writing.", + "pos": 0.395, + "neu": 0.605, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612c1" + } + }, + { + "text": "Professor Geoghan is one of the best professors I've had at CCNY. She's a caring person and wants everyone to pass her class. Her class is very flexible and labor-based, meaning as long as you do your work you will get an easy 100. Just try to do hw on time and you'll be good. If you need help on assignments, she'll be happy to assist you.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612c2" + } + }, + { + "text": "She is very understanding, and one of the best professors I've ever had. Although the class requires a lot of writing (3 major assignments), as long as you do them, you're all good.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612c3" + } + }, + { + "text": "She's an amazing professor", + "pos": 0.559, + "neu": 0.441, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612c4" + } + }, + { + "text": "Professor Geoghan was honestly one of the best professors i've had at CCNY so far. If you take her class you can expect to never experience a boring lecture. She truly cares for her students and it shows.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612c5" + } + }, + { + "text": "Amazing professor. There are 3 major writing assignments which will give u a B. With each extra writing assignment you do, your grade goes up by .3, therefore if you do 3 then that will give you a guaranteed A. It was a lot of writing but an easy A if you do the work.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612c6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c8cd60fca157e612c8" + }, + "professor_name": "Ioana Voiculescu", + "rating": 3.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Not great. She just explains a few things, but the lectures are mainly spent talking about the group labs. The lab reports are annoyingly very long/tedious. Ended up with 40 pages on most of them. Make sure you join a good group, will make your life WAY easier. Exams open note. No need to go crazy studying. Just print out the notes (no technology).", + "pos": 0.17, + "neu": 0.728, + "neg": 0.103, + "_id": { + "$oid": "6711d7c8cd60fca157e612c9" + } + }, + { + "text": "Her lectures are bad. Her grade is based on the labs, hws and 2 exams(25% each). She doesn't curve or drop so make sure to do well on everything in order to get a good grade.", + "pos": 0.214, + "neu": 0.706, + "neg": 0.08, + "_id": { + "$oid": "6711d7c8cd60fca157e612ca" + } + }, + { + "text": "The grade consists of 2 exams, a few individual labs, and about 5 group labs. she looks for only some charts, graphs, and numbers in the lab, doesn't care about writing. she will tell u what she wnts in the lab and it is much less than what the lab manual says. exams easy except 1 or 2 concept questions. can get an A without reading if u go to clas", + "pos": 0.039, + "neu": 0.926, + "neg": 0.035, + "_id": { + "$oid": "6711d7c8cd60fca157e612cb" + } + }, + { + "text": "The class is really easy if you have old exams. Do all the labs. She only really cares about the results so you don't have to go all out with the write up. You do have to attend the class, can't be absent no more than 6 times.", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612cc" + } + }, + { + "text": "Basically, 311 is just a review for electrical and differential equation, as long as you do lab report well and be careful on the easy test, it will be fine. She deducts points based on 5 point/mistake, so, careful, haha", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612cd" + } + }, + { + "text": "Easiest class ever. No book. Notes on blackboard. Easy test. Prof is helpful by email. In person she will most likely confuse you. Lab are easy to conduct and group reports are given enought time to summit. Overall easy A.", + "pos": 0.277, + "neu": 0.639, + "neg": 0.085, + "_id": { + "$oid": "6711d7c8cd60fca157e612ce" + } + }, + { + "text": "Very absent minded and physically not always there. Lab portions are a mess and scheduled at bad times. All in all easy.", + "pos": 0.104, + "neu": 0.681, + "neg": 0.215, + "_id": { + "$oid": "6711d7c8cd60fca157e612cf" + } + }, + { + "text": "she is very sweet and helpful. she knows her class is little boring but out of the class she explains very clearly if you question. exams are easy and projects a little long but you will get the basics. again she is very nice and she will be a great prof. one day.", + "pos": 0.315, + "neu": 0.664, + "neg": 0.022, + "_id": { + "$oid": "6711d7c8cd60fca157e612d0" + } + }, + { + "text": "All exam open book open note. Her class is easy and boring, but you will learn too few in her class, and the material you will learn are all in the lab but not the lecture.", + "pos": 0.052, + "neu": 0.904, + "neg": 0.044, + "_id": { + "$oid": "6711d7c8cd60fca157e612d1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c8cd60fca157e612d3" + }, + "professor_name": "Susan Di Raimo", + "rating": 5, + "department": "English As A Second Language department", + "comments": [ + { + "text": "She's a really good teacher, she cares about her students both academically and emotionally, she is really nice and patient, although she gave too much work but she gave us time to complete them and was willing to help us pass her class", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612d4" + } + }, + { + "text": "Very understanding professor!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612d5" + } + }, + { + "text": "Best professor I ever had! I love her. Dying to take her again. Missed an assignment due date? She'll give you a chance to make it up. VERY understanding. Never bought textbook, she allows you to make copies of hers", + "pos": 0.219, + "neu": 0.736, + "neg": 0.045, + "_id": { + "$oid": "6711d7c8cd60fca157e612d6" + } + }, + { + "text": "Professor Di-Raimo is the best. I advice you to take her class but be ready to work hard and do all the assignments and you will end the semester with smiles on your face. Professor Di-Raimo is always there for the students and ready to give you the chance to do well.", + "pos": 0.283, + "neu": 0.692, + "neg": 0.025, + "_id": { + "$oid": "6711d7c8cd60fca157e612d7" + } + }, + { + "text": "Susan Di Raimo is one of the best professors you can take at Lehman College. Although her class is a writing intensive class, if you do everything you need to do, you will be fine! I passed with an A. I highly recommend her if you treat school like a job. If you don't, then that's your problem.", + "pos": 0.207, + "neu": 0.754, + "neg": 0.039, + "_id": { + "$oid": "6711d7c8cd60fca157e612d8" + } + }, + { + "text": "In one word she is great, she will boost your confidence.", + "pos": 0.558, + "neu": 0.442, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612d9" + } + }, + { + "text": "She's almost too nice for her own good. One of the kindest professors this school has. Do all your assignments and just be yourself and you'll surely get an A", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612da" + } + }, + { + "text": "She is very helpful and just do all of the homework that she asks for and she will give you an A! She's very kind but the only thing I don't like is she always talk about her daughter on how she hated school and will always convince you to not eat meat anymore and turn to vegatarianism.", + "pos": 0.1, + "neu": 0.772, + "neg": 0.128, + "_id": { + "$oid": "6711d7c8cd60fca157e612db" + } + }, + { + "text": "She is a nice professor.that enccourage students. She makes you write an essay every week which makes it easy for student to improve their writing skills.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d7c8cd60fca157e612dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c9cd60fca157e612de" + }, + "professor_name": "Maria Politarhos", + "rating": 4.2, + "department": "Art department", + "comments": [ + { + "text": "I don't know if it's because the class is online, but she is so rude to everyone even the students who actually do all of their work on time and participate in class. If you are confused about something she will make you look stupid in front of the whole class. You will spend hundreds of dollars for this class. You must present photos every week.", + "pos": 0.0, + "neu": 0.831, + "neg": 0.169, + "_id": { + "$oid": "6711d7c9cd60fca157e612df" + } + }, + { + "text": "Hilarious professor, you need to be in class in order to pass. Let me break it to you, you will be expending SO MUCH MONEY. You will learn something new, but you better do the Hw and go to lab hours. Yall crazy if you think you gonna pass without going to class. Also get a part job or something because you will need it to pay for the materials.", + "pos": 0.075, + "neu": 0.864, + "neg": 0.062, + "_id": { + "$oid": "6711d7c9cd60fca157e612e0" + } + }, + { + "text": "Do what you need to do and you'll do great. Put the time and effort in and you'll do great!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d7c9cd60fca157e612e1" + } + }, + { + "text": "You need to spend a LOT of money to get a good grade in this class. Also, you need to spend a lot of time outside of class developing/printing pictures. Maria is a kind lady who cares about you. She is not at all an obstacle to completing the course. She gives you a pdf file of textbook.", + "pos": 0.141, + "neu": 0.821, + "neg": 0.038, + "_id": { + "$oid": "6711d7c9cd60fca157e612e2" + } + }, + { + "text": "Such a great professor! I took her for black and white film photography and if you submit your work on time it's really an easy A with Maria. She's extremely helpful and so sweet. The class itself requires a lot of lab time outside of class so be prepared! 10/10 would recommend!!!!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d7c9cd60fca157e612e3" + } + }, + { + "text": "I dont doubt she is a great person but her attitude is crazy sometimes. her class is really easy but borring. She will make u do a final project and then talk about it REALLY BORRING!!! I liked the fact that u dont have to shoot a lot in her class so save a lot of money. But still I dont know if it was her or if I didnt realy liked my classmates.", + "pos": 0.239, + "neu": 0.697, + "neg": 0.064, + "_id": { + "$oid": "6711d7c9cd60fca157e612e4" + } + }, + { + "text": "The best ever! Although ppl in photography still think Bruce is better, Maria is like the underdog. She is patient but only stern to those who slacks in class or have absolutely no interest in the course.", + "pos": 0.184, + "neu": 0.733, + "neg": 0.083, + "_id": { + "$oid": "6711d7c9cd60fca157e612e5" + } + }, + { + "text": "The best Photography Prof ever. Such a grate person and so interesting character.I Love her.", + "pos": 0.503, + "neu": 0.497, + "neg": 0.0, + "_id": { + "$oid": "6711d7c9cd60fca157e612e6" + } + }, + { + "text": "Great............i loved her class.............and she is very fair when it comes to give grades.................", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d7c9cd60fca157e612e7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7c9cd60fca157e612e9" + }, + "professor_name": "Pouyan Ghaemi", + "rating": 1.9, + "department": "Physics department", + "comments": [ + { + "text": "The college needs this man taken back to his research center and never touch a lecture again. Lectures are very bad, avoid taking him at all costs. and if you are unlucky, use organic chemistry tutor and Von bizen and pray you pass because this man shows laziness and unprofessionalism in his craft as a professor or whatever he is.", + "pos": 0.035, + "neu": 0.869, + "neg": 0.096, + "_id": { + "$oid": "6711d7c9cd60fca157e612ea" + } + }, + { + "text": "HE IS THE WORST, this class is purely self-taught. He is rude when you ask him questions to clarify and going to his office during hours to receive help is unhelpful because he just groups you up with other students to help each other. HE JUST DOES NOT CARE. His midterms are only 3 questions and the final is 6, EVERYTHING relies on those exams.", + "pos": 0.071, + "neu": 0.785, + "neg": 0.144, + "_id": { + "$oid": "6711d7c9cd60fca157e612eb" + } + }, + { + "text": "Awful,he does not grade his exams and lets the TAs grade his exams. The TAs tend to grade the exam incorrectly so you have to fight for your grade. His handwriting is horrible so you don't even know what he is writing half the time. The lecture is useless. YOU HAVE TO RELY ON VAN BIZEN AND ORGANIC CHEM TUTOR TO SAVE YOUR GRADE. Just don't take him.", + "pos": 0.051, + "neu": 0.833, + "neg": 0.116, + "_id": { + "$oid": "6711d7c9cd60fca157e612ec" + } + }, + { + "text": "Organic Chemistry Tutor carried my learning more in 1 hour than this guy can for a day.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7c9cd60fca157e612ed" + } + }, + { + "text": "Bro is one of the WORST professors in CCNY. PLEASE FOR THE SAKE OF YOUR MENTAL HEALTH DON'T TAKE THIS MAN. Lectures are awful, horrendous at explaining the topics. His TA's can't even grade your exams properly. Had to rely on Organic Chemistry Tutor and online resources to pass this class. Its a very self taught class. Also Mu carried.", + "pos": 0.043, + "neu": 0.792, + "neg": 0.165, + "_id": { + "$oid": "6711d7c9cd60fca157e612ee" + } + }, + { + "text": "He's not good at explaining the concepts. He just draws some things, almost no text explaining, and almost the entire lecture is deriving to get the formula. You need to read textbook and solve the questions a lot. TA's grade the exams, so you always need to bring your graded exam and talk to him for one or more points. Not good at teaching.", + "pos": 0.026, + "neu": 0.872, + "neg": 0.102, + "_id": { + "$oid": "6711d7c9cd60fca157e612ef" + } + }, + { + "text": "curves ode", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7c9cd60fca157e612f0" + } + }, + { + "text": "He is really nice and curved at then. Constantly changed the grading system to help each individual student. Teaching style is well CCNY but he does a lot of problems", + "pos": 0.156, + "neu": 0.743, + "neg": 0.101, + "_id": { + "$oid": "6711d7c9cd60fca157e612f1" + } + }, + { + "text": "This professor does very difficult examples in classes and uses the whole period to solve them and its hard to understand. He gives 40 mins to complete a 12 question test. one or two people pass others get 10 or 20. Dont take him you will regret it. The curving doesnt help you. TAKE ANOTHER PROFESSOR HE WANTS YOU TO FAIL HIS CLASS.", + "pos": 0.025, + "neu": 0.789, + "neg": 0.187, + "_id": { + "$oid": "6711d7c9cd60fca157e612f2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cacd60fca157e612f4" + }, + "professor_name": "Alessandro Daniele", + "rating": 3.4, + "department": "Italian department", + "comments": [ + { + "text": "Professor Alessandro is a wonderful teacher. I had him last semester and am about to take his final for ital12400. I always came to class early but idk if he really care about attendance cuz a few of my classmates were always absent. Almost everyone from 12300 was in my 12400. Hoping to see some in 22600", + "pos": 0.165, + "neu": 0.811, + "neg": 0.024, + "_id": { + "$oid": "6711d7cacd60fca157e612f5" + } + }, + { + "text": "N/A", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e612f6" + } + }, + { + "text": "Very basic level Italian. The oral exam at the end doesn't really make sense b/c the class doesn't provide an adequate level of verbal practice for it to have a major exam measuring our speaking capability (it's also a group oral exam). He doesn't like answering questions that he thinks will confuse other students. Decent but wouldn't take a again", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d7cacd60fca157e612f7" + } + }, + { + "text": "I did not like the class at all", + "pos": 0.0, + "neu": 0.768, + "neg": 0.232, + "_id": { + "$oid": "6711d7cacd60fca157e612f8" + } + }, + { + "text": "Lectures are long and boring", + "pos": 0.0, + "neu": 0.635, + "neg": 0.365, + "_id": { + "$oid": "6711d7cacd60fca157e612f9" + } + }, + { + "text": "Professor Daniele is the absolute best. Had a pleasure of having him for a whole year and was always laughing in his class. He teaches his material extremely well and his work isn't hard if you are paying attention. Missing class is definitely not ideal because he does go over a lot in one class but would love to have him again :)", + "pos": 0.276, + "neu": 0.679, + "neg": 0.045, + "_id": { + "$oid": "6711d7cacd60fca157e612fa" + } + }, + { + "text": "This class did not feel like a basic intro class it felt very advanced. His quizzes and exams were so many questions in less than 2 hours to finish, uses the school final grade chart system to grade them. You could get a 85 on a quiz or test but will have a B grade so unless you are scoring high 90s like 95+ an A range grade is very hard.", + "pos": 0.065, + "neu": 0.888, + "neg": 0.048, + "_id": { + "$oid": "6711d7cacd60fca157e612fb" + } + }, + { + "text": "Professor Alessandro is a real gangsta when it comes to teaching Italian. His classes are super fun and engaging, really passionate about teaching, and has a great sense of humor. I recommend taking him 100%. 4 exams, 4 quizes, 1 final and 1 oral exam. Has Review for all of them except the oral exam. To pass, you must put in the work & study 5hr/wk", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e612fc" + } + }, + { + "text": "4 tests, 4 quizzes, 1 final, 1 oral exam. Super easy. Very helpful and understanding. Gives topics of all quizzes and tests ahead of time. Gives few homework. Funny & great sense of humor. Very clear in his explanations. He is Italian, not just someone who can teach it. Great professor, would definitely take the class again if I could. Intro course", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e612fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cacd60fca157e612ff" + }, + "professor_name": "So-Young Lee", + "rating": 4.3, + "department": "Music department", + "comments": [ + { + "text": "Greatest teacher ever. Teaches all the material very clearly and I was able to understand everything she taught. Makes sure that everyone understands everything she is teaching and remembers it all. Very sweet and caring, as well as funny. Extremely talented and knowledgable in music. I definitely recommend everyone to take this professor.", + "pos": 0.411, + "neu": 0.589, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e61300" + } + }, + { + "text": "She is an amazing music professor and one of the best. She plays so beautifully on the piano, has played in concerts, she just all around loves music. You will come out with a more passionate view into music. She is just great.", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e61301" + } + }, + { + "text": "She seems strict but in reality she is very good and the information you learn is very useful for theory and musicianship.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e61302" + } + }, + { + "text": "she is the best and the cutest", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e61303" + } + }, + { + "text": "She wasn't too bad. At first I didn't like her, but as the semester went on she grew on me. She comes off as very strict, but really she isn't. As long as the assignments are handed in on time she will give you a good grade on them. The tests are easy. All you have to do is memorize some definitions and stuff like that. All around not bad.", + "pos": 0.203, + "neu": 0.779, + "neg": 0.019, + "_id": { + "$oid": "6711d7cacd60fca157e61304" + } + }, + { + "text": "Professor Lee I LOVE YOUUUUUUU, YOU WERE AWESOME THROUGH OUT THE WHOLE SEMESTER. I like the way you looked i think you looked hot and still look hot ohhh you have a bf already but trust me I would have asked you out if u didnt ;) yes i am a guy but in love with my cool beautifull professor. hope you the best in everything thank you again....", + "pos": 0.349, + "neu": 0.6, + "neg": 0.051, + "_id": { + "$oid": "6711d7cacd60fca157e61305" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7cacd60fca157e61306" + } + }, + { + "text": "She's an easygoing professor with a fairly dry sense of humor. A fair grader and cares about her students' progress. The musicianship sequence is dead boring but she makes it a little bit better.", + "pos": 0.287, + "neu": 0.612, + "neg": 0.101, + "_id": { + "$oid": "6711d7cacd60fca157e61307" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cacd60fca157e61309" + }, + "professor_name": "Alosha Grinenko", + "rating": 4.8, + "department": "Theater department", + "comments": [ + { + "text": "He will stimulate your interest if your're not already. Besides his good looks (added bonus), he can teach and gices good feedbacks to help the student improve! Love him and theatre!", + "pos": 0.517, + "neu": 0.483, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e6130a" + } + }, + { + "text": "He is literally the best professor ever. This class is interesting and it is all due to him. Just have to do the work and you'll be fine, you don't even have to do well. Bring the textbook to class, it is helpful with discussion. Engage yourself with the discussion, he notes it down. Easy A", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e6130b" + } + }, + { + "text": "BEST PROF EVER. Seriously take this class. Yea iit 's easy but it's because Alosha makes the class about you not himself. Def worth taking!!", + "pos": 0.184, + "neu": 0.704, + "neg": 0.112, + "_id": { + "$oid": "6711d7cacd60fca157e6130c" + } + }, + { + "text": "Great guy! He's a good teacher, and my only complaint about the class was that it was a little too easy. (I mean, I feel like we should have had more than one monologue performance, even in an Acting I class.) But you can tell that he really knows his stuff!", + "pos": 0.154, + "neu": 0.818, + "neg": 0.028, + "_id": { + "$oid": "6711d7cacd60fca157e6130d" + } + }, + { + "text": "i loved him.", + "pos": 0.661, + "neu": 0.339, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e6130e" + } + }, + { + "text": "I think Prof. Grinenko is a fine teacher. He is helpful and cares about each student. He gives each student a chance to be the best they can be. One of my classmates changed majors because she was so moved my his teaching. If I were not already a theater major, I would think about changing my major too. He is a Great Professor. I am lucky.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e6130f" + } + }, + { + "text": "Omg he's so amazing and fun and really hot btw. I learned so much and he brings a really interesting perspective to acting because he's from another country, although I forget where.", + "pos": 0.276, + "neu": 0.678, + "neg": 0.046, + "_id": { + "$oid": "6711d7cacd60fca157e61310" + } + }, + { + "text": "Mr. Grinenko is a funny and dedicated theatre professor who will teach you a lot. His class is worth it.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d7cacd60fca157e61311" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cbcd60fca157e61313" + }, + "professor_name": "Randall Edwards", + "rating": 4.9, + "department": "Art department", + "comments": [ + { + "text": "JUST AN AMAZING PROF!! And a genuine person. The class is soo fun, too bad he is leaving CCNY :( He will be missed!", + "pos": 0.216, + "neu": 0.523, + "neg": 0.261, + "_id": { + "$oid": "6711d7cbcd60fca157e61314" + } + }, + { + "text": "his test and finals are easy!!!! just attend the review day and you will be fine!", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e61315" + } + }, + { + "text": "I found his class harder than others have suggested, but it was not overwhelming. He presents the information clearly, and emphasizes the history of the works, not just the changes in styles. The best part is his lectures, as he brings in funny images of modern things to look at too.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e61316" + } + }, + { + "text": "He doesn't force you to use the textbook, but he integrates it into his lectures. Very helpful when I had questions for him. You get out what you put in.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e61317" + } + }, + { + "text": "Take him. He's the best. He teaches history of art rather than just the style of the art. Highly underrated professor. After taking his class I changed my major to Art History. He's really lenient on assignments too. He focuses more on helping students out rather than being critical. And yes, he is hot. :D", + "pos": 0.236, + "neu": 0.73, + "neg": 0.034, + "_id": { + "$oid": "6711d7cbcd60fca157e61318" + } + }, + { + "text": "Great professor. Although art seems to be a boring class, he actually makes it very interesting. The midterm and final is pretty fair.Don't have to memorize a whole bunch of art works, so its great. Overall, he's really good plus he's really cute too!", + "pos": 0.353, + "neu": 0.609, + "neg": 0.038, + "_id": { + "$oid": "6711d7cbcd60fca157e61319" + } + }, + { + "text": "Good prof. Take his class if you take Art 100. A lot more easier than some of the other prof having you memorize 100 works of Art. This guy only about 20 for the midterm. Great prof and funny guy. Makes the class very interesting. Art History is usually boring.", + "pos": 0.257, + "neu": 0.706, + "neg": 0.037, + "_id": { + "$oid": "6711d7cbcd60fca157e6131a" + } + }, + { + "text": "He is clear explains the material very well is willing to help and explain and answers emails timely. You do need to do a paper on a piece of art but he helps along the way with any questions. He gives a midterm and a final. Overall he is a very good professor and very pleasant.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e6131b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cbcd60fca157e6131d" + }, + "professor_name": "Sara Weintraub", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Great teacher.", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e6131e" + } + }, + { + "text": "BEST TEACHER!", + "pos": 0.818, + "neu": 0.182, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e6131f" + } + }, + { + "text": "BEST TEACHER I EVER HAD!", + "pos": 0.529, + "neu": 0.471, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e61320" + } + }, + { + "text": "I loved Dr. Weintraub's class, I would definitely take it again!", + "pos": 0.434, + "neu": 0.566, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e61321" + } + }, + { + "text": "She was a nerdy fun art teacher! You can tell she loves what she does. There is never any homework assignments. Textbook is optional, however, there is a copy of it available in the NAC library. Attendance and participation mandatory however she will excuse you if you talk to her about it. Tests are easy, have to know dates and formal aspects.", + "pos": 0.183, + "neu": 0.8, + "neg": 0.017, + "_id": { + "$oid": "6711d7cbcd60fca157e61322" + } + }, + { + "text": "Sara is amazing! she explains the content very well. Her lectures are interesting to listen to. The papers that were do were easily explained. The power points are perfect. Exams require memorization but if you listened to her lectures than you should be fine.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e61323" + } + }, + { + "text": "Professor Weintraub is great! She is really funny and awesome, and makes a potentially boring subject super interesting. Prior to her art history class I has no interest in the subject, and now I'm thinking of minoring in it.", + "pos": 0.335, + "neu": 0.578, + "neg": 0.086, + "_id": { + "$oid": "6711d7cbcd60fca157e61324" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7cbcd60fca157e61325" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cbcd60fca157e61327" + }, + "professor_name": "David Crouse", + "rating": 2.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He doesnt follow his syllabus in terms of how much each exam or home work is worth, it says the homework is 30, but its actually 80%, in terms of teaching he is not that clear and the material itself is hard. Dont expect to learn much from him, try to study and do problems on your own", + "pos": 0.023, + "neu": 0.852, + "neg": 0.125, + "_id": { + "$oid": "6711d7cbcd60fca157e61328" + } + }, + { + "text": "This class is crazy. EE department make it more harder. Prof. Crous is demanding and expect a lot from students. take him if you want to work your ass off and this is the only class you planning to take next semester. YOU HAVE TO STUDY A LOT WITH him.", + "pos": 0.024, + "neu": 0.835, + "neg": 0.142, + "_id": { + "$oid": "6711d7cbcd60fca157e61329" + } + }, + { + "text": "His exam is too difficult and long to finish. I will take Ho for next semester.", + "pos": 0.0, + "neu": 0.857, + "neg": 0.143, + "_id": { + "$oid": "6711d7cbcd60fca157e6132a" + } + }, + { + "text": "run away. his exams are super difficult.", + "pos": 0.342, + "neu": 0.439, + "neg": 0.219, + "_id": { + "$oid": "6711d7cbcd60fca157e6132b" + } + }, + { + "text": "He teaches good and his exams are hard(open book). Be sure to have previous exams.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d7cbcd60fca157e6132c" + } + }, + { + "text": "He doesnt really follow any book. This makes it difficult to keep up with him during the course. He doesnt do any examples or provide enough HW probs to get a grasp of the subject. You will not learn anything in his courses, but he is a liberal grader.", + "pos": 0.0, + "neu": 0.965, + "neg": 0.035, + "_id": { + "$oid": "6711d7cbcd60fca157e6132d" + } + }, + { + "text": "He teaches well and gives students a firm grasp of the qualitative and quantitative behaviour of materials and devices. Unfortunately he seems to treat the course like it were an elective. Be sure to use his office hours: he gives tremendous insight into the material, and the kind of questions that he would expect his students to be able to answer.", + "pos": 0.141, + "neu": 0.824, + "neg": 0.035, + "_id": { + "$oid": "6711d7cbcd60fca157e6132e" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7cbcd60fca157e6132f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cccd60fca157e61331" + }, + "professor_name": "Libby Pratt", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "Pr. Pratt is amazing. The class content was interesting and very encouraging. Get ready to be creative, it's fun. Reading is part of the every week's assignments, but you'll find it is very interesting. Highly recommended. PS: always be on time, she doesn't like when someone is late.", + "pos": 0.32, + "neu": 0.637, + "neg": 0.043, + "_id": { + "$oid": "6711d7cccd60fca157e61332" + } + }, + { + "text": "Libby is a great professor. She gives useful feedback and its an easy class as long as you actually do the work and show up. She will help you no matter what level of photography you are at (I was a beginner when I was in her class). Libby is strict when it comes to attendance but if you email her before hand than she is very understanding.", + "pos": 0.167, + "neu": 0.82, + "neg": 0.014, + "_id": { + "$oid": "6711d7cccd60fca157e61333" + } + }, + { + "text": "She's good, I love her. She cares about her students and is really lenient about problems as long as you don't abuse it. Just do what she asks and you'll get an A", + "pos": 0.346, + "neu": 0.589, + "neg": 0.065, + "_id": { + "$oid": "6711d7cccd60fca157e61334" + } + }, + { + "text": "You will not find a better instructor of photography. She's approachable, humorous, inspiring, and really knowledgeable. Critiques are engaging, shooting assignments are interesting & challenging! Three hours pass by so quickly in this course--I wish more classes could be like this. I highly encourage anyoneeveryone to sign up for her class", + "pos": 0.323, + "neu": 0.64, + "neg": 0.037, + "_id": { + "$oid": "6711d7cccd60fca157e61335" + } + }, + { + "text": "Best professor ever", + "pos": 0.677, + "neu": 0.323, + "neg": 0.0, + "_id": { + "$oid": "6711d7cccd60fca157e61336" + } + }, + { + "text": "Great professor that is eager to share her passion for photography with her students. This can be a very time consuming class when you factor in time to shoot your film and develop it. Also supply costs can easily go over $500 throughout the semester. Don't be late to class. If your willing to put the time it's a great class to take.", + "pos": 0.239, + "neu": 0.73, + "neg": 0.031, + "_id": { + "$oid": "6711d7cccd60fca157e61337" + } + }, + { + "text": "Just go to class, do the work and show that you are interested in learning and you should do fine.", + "pos": 0.2, + "neu": 0.8, + "neg": 0.0, + "_id": { + "$oid": "6711d7cccd60fca157e61338" + } + }, + { + "text": "She's a wonderful professor. My Favorite Professor at CCNY! I just loved going to this class! She will teach you so much about photography, there's so much more to it then just lighting and shooting pictures! TAKE HER! Attendance is mandatory, unless you have an excuse. Weekly readings and assignments. Very Easy Class and FUN!!!", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d7cccd60fca157e61339" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cccd60fca157e6133b" + }, + "professor_name": "Mohamed Zahran", + "rating": 4.1, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Professor Z has excellent lectures on compilers, is very helpful in answering questions from students, and also grading is definitely fair in his class. I'd say he's way better than some other NYU professors.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d7cccd60fca157e6133c" + } + }, + { + "text": "It's too bad that he is leaving ccny; well, he deserves something better. Exams are open books, notes. Read the book and study his notes. Easy A", + "pos": 0.23, + "neu": 0.669, + "neg": 0.102, + "_id": { + "$oid": "6711d7cccd60fca157e6133d" + } + }, + { + "text": "His exams are little bit tricky, so make sure you know your stuff. However, the material is not hard. Don't rely on the book too much, you'll learn a lot more by actually coming to the lectures (I didn't read anything in the book, but still got an A). Exams are open-book & notes, which definitely helps.", + "pos": 0.157, + "neu": 0.825, + "neg": 0.018, + "_id": { + "$oid": "6711d7cccd60fca157e6133e" + } + }, + { + "text": "Zahran has very tricky exams, to do exceptionally well in his class you should really understand the material but, most can get by without such an in depth knowledge and still pull at least a B, especially since all his exams are open notes and he only gives 4 hw's for the semester which can be done in a group. Overall, the class was fairly easy.", + "pos": 0.079, + "neu": 0.9, + "neg": 0.021, + "_id": { + "$oid": "6711d7cccd60fca157e6133f" + } + }, + { + "text": "I think this he is a good prof and takes his time if someone asks question. Exams are not that hard. If you pay attention and study, you will get an A very easily.", + "pos": 0.18, + "neu": 0.784, + "neg": 0.037, + "_id": { + "$oid": "6711d7cccd60fca157e61340" + } + }, + { + "text": "Didn't like his teaching method. Pay extra attention to his lecture slides as he is explaining them cause its hard to understand the concepts by studying alone. Tricky exam. 2nd exam is usually easier.", + "pos": 0.071, + "neu": 0.712, + "neg": 0.216, + "_id": { + "$oid": "6711d7cccd60fca157e61341" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7cccd60fca157e61342" + } + }, + { + "text": "his lectures are clear and well explained if you are paying attention but its easy to daydream in the class. the tests are tricky and you have to know what you're doing.", + "pos": 0.194, + "neu": 0.755, + "neg": 0.051, + "_id": { + "$oid": "6711d7cccd60fca157e61343" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cdcd60fca157e61345" + }, + "professor_name": "Sayo Yamagata", + "rating": 3.4, + "department": "Music department", + "comments": [ + { + "text": "even though its mad material, you get your worth out of it, got an A- even though it wasnt that easy", + "pos": 0.074, + "neu": 0.706, + "neg": 0.22, + "_id": { + "$oid": "6711d7cdcd60fca157e61346" + } + }, + { + "text": "Considering that this is an introduction to Music 101 course the level of difficulty is extreme and does not leave you time for other more important classes towards your interest or major. Please do not take this professor if it's just for general requirements. If you are planning to become a music major then by all means. Attendance is extreme", + "pos": 0.133, + "neu": 0.83, + "neg": 0.036, + "_id": { + "$oid": "6711d7cdcd60fca157e61347" + } + }, + { + "text": "Heavy work load, but learned a lot from her.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7cdcd60fca157e61348" + } + }, + { + "text": "She's an okay professor. You have to read the slides carefully in order to pass tests. You have to do the listening portions at home because they will be on the tests. She looks like one of those cool kids from the block.", + "pos": 0.167, + "neu": 0.774, + "neg": 0.059, + "_id": { + "$oid": "6711d7cdcd60fca157e61349" + } + }, + { + "text": "She is very tough and extremly boring, If you brake a leg and lose your excuse slip from doctor she will mark you absent even if you show up with your broken leg.", + "pos": 0.033, + "neu": 0.714, + "neg": 0.252, + "_id": { + "$oid": "6711d7cdcd60fca157e6134a" + } + }, + { + "text": "This class was beyond boring. I learned the same things that I was learning in my history class and not much else. I love music and she made me hate this class. And when you have a life altering situation that's clearly affecting your grade, don't think you're getting anywhere telling her. Just DON'T TAKE HER.", + "pos": 0.106, + "neu": 0.801, + "neg": 0.092, + "_id": { + "$oid": "6711d7cdcd60fca157e6134b" + } + }, + { + "text": "Had her for Fall '09 and I hated her. You can tell from day 1 that she's new at teaching. Her class should be an online course b/c all she does is read her slides and she emails them to you anyway. Make sure you study carefully from those slides, because her tests are no joke! She put me to sleep every single time. I do NOT recommend her at all.", + "pos": 0.049, + "neu": 0.843, + "neg": 0.108, + "_id": { + "$oid": "6711d7cdcd60fca157e6134c" + } + }, + { + "text": "Very good professor. A is not hard to get.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d7cdcd60fca157e6134d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cdcd60fca157e6134f" + }, + "professor_name": "Katelyn Jin-Young Jung", + "rating": 4.1, + "department": "Chemistry department", + "comments": [ + { + "text": "not that great, shes a bit of perfectionist.", + "pos": 0.212, + "neu": 0.509, + "neg": 0.279, + "_id": { + "$oid": "6711d7cdcd60fca157e61350" + } + }, + { + "text": "she wasnt a fanstastic instructor, i mean all she did was talk about the experiment really fast for 3 min and you could barely understand what she says. explanations were okay but not better than the lab manual. she got really paranoid around the end about people copying labs and plagiarizing. she needs to chill cause she is not a professor", + "pos": 0.022, + "neu": 0.886, + "neg": 0.092, + "_id": { + "$oid": "6711d7cdcd60fca157e61351" + } + }, + { + "text": "I never left the class not knowing what was taught that day. Katelyn truly knows how to teach student, and can better help you understand a topic if you are having difficulty.", + "pos": 0.219, + "neu": 0.72, + "neg": 0.062, + "_id": { + "$oid": "6711d7cdcd60fca157e61352" + } + }, + { + "text": "She's a great lecturer, tries to get all her studenta involved in the lesson so they actually do something in class besides listening quietly. She makes a hilarious few jokes now and then that make the clasa fun and keeps you awake. Overall a great professor, highly recommend to others.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d7cdcd60fca157e61353" + } + }, + { + "text": "Katelyn's lectures are great, she always goes into depth and cares for all her students. she teaches the materials so clearly and the way she is just so amazing. Loved her class each time i took her. I had her for chem 103 as well, she taught great. She teaches with a lot enthusiasm. I would love to take her again for any further chem courses. :D", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d7cdcd60fca157e61354" + } + }, + { + "text": "She is very helpful and is really good at explaining difficult concepts.", + "pos": 0.353, + "neu": 0.506, + "neg": 0.141, + "_id": { + "$oid": "6711d7cdcd60fca157e61355" + } + }, + { + "text": "She is so easy to understand. I learn so well when she explains it to me!!! Wonderful workshop leader!!", + "pos": 0.415, + "neu": 0.585, + "neg": 0.0, + "_id": { + "$oid": "6711d7cdcd60fca157e61356" + } + }, + { + "text": "She really knows how to teach, makes chemistry fun!! Take her you won't regret!!!", + "pos": 0.362, + "neu": 0.638, + "neg": 0.0, + "_id": { + "$oid": "6711d7cdcd60fca157e61357" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cecd60fca157e61359" + }, + "professor_name": "Lynn Tarlow", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "I just heard Prof Tarlow retired. That's too bad for City College. I've been teaching awhile and so many of my ideas and methods are from her class. A tough class but she was always helpful and very fair. It was obvious she really cared about her students. Wish I could have had her for more classes. I like to think my teaching would make her proud!", + "pos": 0.268, + "neu": 0.691, + "neg": 0.041, + "_id": { + "$oid": "6711d7cecd60fca157e6135a" + } + }, + { + "text": "Great class; helpful/caring prof! Now that Im teaching, I use a lot of what I learned from Tarlow, especially how to help students construct ideas instead of chalk and talk and how to be prepared and make my expectations clear. Have you seen her 20+page syllabus? Scary at first, but realized it gave me everything I needed to know to do well!", + "pos": 0.159, + "neu": 0.81, + "neg": 0.03, + "_id": { + "$oid": "6711d7cecd60fca157e6135b" + } + }, + { + "text": "Started the class thinking she was going to be really tough. She turned out to be funny and really helpful. I highly recommend her course.", + "pos": 0.278, + "neu": 0.665, + "neg": 0.057, + "_id": { + "$oid": "6711d7cecd60fca157e6135c" + } + }, + { + "text": "I definitely recommend Prof. Tarlow's classes. She made a math teacher out of me. ?", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e6135d" + } + }, + { + "text": "in tarlow's class you work hard but you learn a lot!! also she taught in schools for a long time so she knows what she is talking abt. i think she still goes into schools to work with teachers and kids. you can tell she loves teaching.", + "pos": 0.109, + "neu": 0.868, + "neg": 0.023, + "_id": { + "$oid": "6711d7cecd60fca157e6135e" + } + }, + { + "text": "Excellent professor. Lots of useful info & really changed my ideas about teaching math. Def want to take more of her classes.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e6135f" + } + }, + { + "text": "I think Tarlow is a great prof. She gives a lot of work but she is fair and she really makes you think. I learned a lot in her classes. She has lots of experience in schools so that makes the class interesting and practical. The only thing I didn't like so much was a group project. I hope I can take more classes with her.", + "pos": 0.168, + "neu": 0.797, + "neg": 0.035, + "_id": { + "$oid": "6711d7cecd60fca157e61360" + } + }, + { + "text": "Very stubborn teacher. Hope you love constructivism otherwise this will be a sheer waste of time. Very poorly prepared and horrible memory.", + "pos": 0.274, + "neu": 0.459, + "neg": 0.267, + "_id": { + "$oid": "6711d7cecd60fca157e61361" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cecd60fca157e61363" + }, + "professor_name": "Antonio Di Oronzo", + "rating": 3.6, + "department": "Architecture department", + "comments": [ + { + "text": "bad news", + "pos": 0.0, + "neu": 0.222, + "neg": 0.778, + "_id": { + "$oid": "6711d7cecd60fca157e61364" + } + }, + { + "text": "Great professor... one of the best if not the best in first year. I took him for two semesters and i would take him again if they decide to put him in a higher year... Made my life a living hell but taught me all i know about Arch. If you really want to be pushed to the limit and produce good work take him!", + "pos": 0.149, + "neu": 0.785, + "neg": 0.066, + "_id": { + "$oid": "6711d7cecd60fca157e61365" + } + }, + { + "text": "he's hard ... and inspiring... he made me work day and night, but i learned all i know so far!!!", + "pos": 0.126, + "neu": 0.819, + "neg": 0.055, + "_id": { + "$oid": "6711d7cecd60fca157e61366" + } + }, + { + "text": "he gooooood...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61367" + } + }, + { + "text": "i took him for 2 semesters... i went a long way with him... he was never happy... at first i couldn't understand, but at the end i could see the big picture...great course!!!", + "pos": 0.0, + "neu": 0.918, + "neg": 0.082, + "_id": { + "$oid": "6711d7cecd60fca157e61368" + } + }, + { + "text": "He is sooooooooooo hot and sexy!", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61369" + } + }, + { + "text": "i wish he could be a little more helpful! i couldn't stand him!", + "pos": 0.357, + "neu": 0.643, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e6136a" + } + }, + { + "text": "he is an arrogant son of a ****. if you are ready to kiss ass he is more than willing to take it. He really sucks as a professor", + "pos": 0.137, + "neu": 0.619, + "neg": 0.245, + "_id": { + "$oid": "6711d7cecd60fca157e6136b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cecd60fca157e6136d" + }, + "professor_name": "Sean O'Hanlon", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Sean! He is a great guy! Great professor! Interesting, has that irish sense of humor. Really helpful. Too bad he left. He's a chess dude also!", + "pos": 0.421, + "neu": 0.488, + "neg": 0.092, + "_id": { + "$oid": "6711d7cecd60fca157e6136e" + } + }, + { + "text": "O'Hanlon is a great professor, he's not Exactly easy but he isn't too difficult either. I would definetly recommend anyone to take this class, it's involving and definetly just a great experience, I certainly enjoyed it, and he's funny to. ENJOY!!!", + "pos": 0.485, + "neu": 0.489, + "neg": 0.026, + "_id": { + "$oid": "6711d7cecd60fca157e6136f" + } + }, + { + "text": "He's really helpful and nice. The assignments aren't so bad.I would recommend to take his class if you were given the chance.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61370" + } + }, + { + "text": "Great professor. Assigns readings and a one page essay every week, but is lenient with grades. Majority of your grade is two big essays which you hand drafts in for. Helpful inside and outside of class. Participate in discussions, hand your work in and you're golden.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61371" + } + }, + { + "text": "The class is very fun and engaging. There are two major papers which he has drafts for. There are about 9 short essay in response to the readings (1-2pages) and a midterm (very leniently graded).He's very helpful with the comments on the papers he returns. Just be there, and do all ur papers and ur good.", + "pos": 0.191, + "neu": 0.809, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61372" + } + }, + { + "text": "For one of the my first classes in college he was a great professor small readings each week and 1 paper about a page long each week that dosent take long to write. He very engaing in class I would recomened him if your taking this class", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61373" + } + }, + { + "text": "Good teacher, not so much reading, but so much writing. He helps a lot to understand everything. And he is hot, so you will enjoy the class even more!!!", + "pos": 0.296, + "neu": 0.704, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61374" + } + }, + { + "text": "He was the best english teacher I've had. Really nice and understanding. He explains everything you have to do clearly and makes class interesting and fun. Although you have to write essays every week, it helps a lot throughout the semester. Overall YOu should definately pick him as a teacher. Did I mention thats he's HOT!! lol ;) Very hot!!", + "pos": 0.32, + "neu": 0.68, + "neg": 0.0, + "_id": { + "$oid": "6711d7cecd60fca157e61375" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cfcd60fca157e61377" + }, + "professor_name": "Leora Trub", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "GREAT professor! Very attentive really wants you to learn. Keeps the class engaged. Uses her own personal experience as a learning tool which works great! Love her!", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e61378" + } + }, + { + "text": "She is my favorite teacher! Extremely clear, helpful, and nice.", + "pos": 0.668, + "neu": 0.332, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e61379" + } + }, + { + "text": "Attendance is mandatory because a lot of her tests come straight from lecture explanations/slides she has you fill in during class. Generally though if you just come to class it's pretty easy. She also gives extensive review sheets for tests and the class is usually interesting.", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e6137a" + } + }, + { + "text": "I can't say enough good things about this professor. If you want an understanding, interesting, in-control-of-her-classroom professor then take her. If you want an easy A (as long as you put in the minimal work) then take her. If you just want to dabble in psych then take her. Trust me TAKE HER :)", + "pos": 0.246, + "neu": 0.716, + "neg": 0.037, + "_id": { + "$oid": "6711d7cfcd60fca157e6137b" + } + }, + { + "text": "she's very helpful willing 2 take d next step 4 u...she cares...she teaches very well...she doesn't move on until she gets d ok from e'one...her class is fun...she answers all your questions..she shows interesting videos (one was d 1st Sopranos episode)..d material r easy n clear 4 u 2 understand..and she's not bad looking either..get front seats", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e6137c" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7cfcd60fca157e6137d" + } + }, + { + "text": "She's my favorite teacher this semester. Always willing to help u, and really smart", + "pos": 0.441, + "neu": 0.559, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e6137e" + } + }, + { + "text": "She is not that bad, might be boring in the begining but u will get used to it after a while, attendence is MANDATORY. You can print her slides and take notes on them in the class. She will repeat anything u ask her to and will give u time to write it down unlike some other psy professors. She is not that entertaining but hey she's not that bad..", + "pos": 0.106, + "neu": 0.833, + "neg": 0.061, + "_id": { + "$oid": "6711d7cfcd60fca157e6137f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cfcd60fca157e61381" + }, + "professor_name": "Yangli Tian", + "rating": 3.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Can't believe she's not even teaching next semester. On top of that the professor replacing her is Kim who is the EE god. Very confusing lectures, hard hw's, but easy exams. She the only one that teacher properly compared to others. So if u wanna be prepared for Linear Systems she's ur best bet.", + "pos": 0.23, + "neu": 0.724, + "neg": 0.045, + "_id": { + "$oid": "6711d7cfcd60fca157e61382" + } + }, + { + "text": "Her Midterm and final are both very easy and open book but you need to teach yourself the material. The HW being 40% is actually a trojan horse; it is actually very challenging and graded with almost no partial credit. Be very careful and methodical or your grade will suffer for it. HW - 40% Mid term - 25% Final - 35%", + "pos": 0.123, + "neu": 0.748, + "neg": 0.129, + "_id": { + "$oid": "6711d7cfcd60fca157e61383" + } + }, + { + "text": "Pretty good teacher and obviously cares about students. Lectures are straight from textbook slides, but does a good job of clarifying some non-obvious points. Wastes too much time though looking for volunteers to do examples on the board. Open-book exams are straightforward, and cheating is rampant. HW can be slightly tricky, but not overwhelming.", + "pos": 0.175, + "neu": 0.726, + "neg": 0.098, + "_id": { + "$oid": "6711d7cfcd60fca157e61384" + } + }, + { + "text": "she does not know to teach, absolutely no curve. most of the questions from old exam. does not have clue what she is teaching. from this class i learn what is a image that is all.", + "pos": 0.0, + "neu": 0.934, + "neg": 0.066, + "_id": { + "$oid": "6711d7cfcd60fca157e61385" + } + }, + { + "text": "Exams are a joke. Open-book exams that consist of multiple choice and small problems STRAIGHT from the notes. However, the homework are not easy, they take a lot of time to do. The TA grades everything so don't deviate on exams or homework from outside the solution from the notes. I did so and lost a lot of points even though it was correct.", + "pos": 0.098, + "neu": 0.797, + "neg": 0.106, + "_id": { + "$oid": "6711d7cfcd60fca157e61386" + } + }, + { + "text": "Pretty nice person, helpful indeed. Cute too. Fair exams. You'll learn something.", + "pos": 0.668, + "neu": 0.332, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e61387" + } + }, + { + "text": "Doesn't really explain anything (all she does is flash PowerPoints). Very Nice and Helpful if you have questions. Exams are EASY. But the HW are a NIGHTMARE (But they count A LOT).", + "pos": 0.181, + "neu": 0.819, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e61388" + } + }, + { + "text": "You'll Learn...", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e61389" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7cfcd60fca157e6138b" + }, + "professor_name": "Elizabeth Nelson", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "Want to take another class with prof Nelson. My fav class this semester, very engaging, learning a lot, no long work-cited-papers to make, no books to buy, the time passes by so quick in her class. Must take! Do the work and you ll love it with this prof! She s one of the best instructors at ccny, knowledgeable, resourceful, fun, friendly, pretty,", + "pos": 0.309, + "neu": 0.638, + "neg": 0.053, + "_id": { + "$oid": "6711d7cfcd60fca157e6138c" + } + }, + { + "text": "You won't regret taking professor Nelson. She is an excellent teacher in every sense. I can truly say that i have learnt alot from her readings and lectures. Her lectures are very imperative to passing the class. She makes the class very fun and really cares about her student!", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e6138d" + } + }, + { + "text": "I cannot stress this enough: Professor Nelson is just simply the best!! The best professor I have ever had in the college. No explanation needed, she is just the best.", + "pos": 0.363, + "neu": 0.585, + "neg": 0.052, + "_id": { + "$oid": "6711d7cfcd60fca157e6138e" + } + }, + { + "text": "I am taking her for the third time. She is a MUST TAKE!!! Best professor I have EVER had in my college career! 240 characters is not enough to describe how absolutely awesome this professor is! I guarantee you, you WILL NOT BE DISAPPOINTED!", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e6138f" + } + }, + { + "text": "Professor Nelson is one of the reasons why I actually enjoy attending this school. She makes sure every student understands the material before moving further along in the lectures. The lectures are very entertaining and its always fun to come to her classes. Make sure you do all the blackboard readings before attending class and you will be good.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e61390" + } + }, + { + "text": "She is an amazing professor! Trust me, even if the topic is not of your interest, she is going to make it interesting for you! This college needs more professor like her! I would definitely take her again!! She is an easy A if you do all the readings, which are not that many..", + "pos": 0.281, + "neu": 0.683, + "neg": 0.036, + "_id": { + "$oid": "6711d7cfcd60fca157e61391" + } + }, + { + "text": "Had an amazing semester with Nelson. She's funny, young, and a great speaker--making lectures interesting even if you're not super invested in the material. She really emphasizes class discussions, meaning you will get to know her and she will get to know you. Her tests are EASY if you actually read and pay attention in class. Take her!", + "pos": 0.239, + "neu": 0.699, + "neg": 0.062, + "_id": { + "$oid": "6711d7cfcd60fca157e61392" + } + }, + { + "text": "such a great professor. will learn a lot with. take her if you have the chance. she makes the class and material very easy to understand. the greatest!", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d7cfcd60fca157e61393" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d0cd60fca157e61395" + }, + "professor_name": "Brisilda Ndreka", + "rating": 3, + "department": "Mathematics department", + "comments": [ + { + "text": "Easy class and grade but dont be lazy. I skipped class a lot and read the textbook. Not the best math teacher and tests are based on textbook questions. I taught myself most of it. doesnt show you techniques or variety of problems; instead she just reiterated textbook problems. Final was harder than her tests, online hw boosts grade so do it", + "pos": 0.101, + "neu": 0.745, + "neg": 0.155, + "_id": { + "$oid": "6711d7d0cd60fca157e61396" + } + }, + { + "text": "PROFESSOR IS NICE HOWEVER HER TEST ARE HARD", + "pos": 0.275, + "neu": 0.588, + "neg": 0.137, + "_id": { + "$oid": "6711d7d0cd60fca157e61397" + } + }, + { + "text": "We were behind ALL semester. She procrastinates like crazy. Showed up to every lecture but there was no point because a student would ask a question and we would go on a tangent for 20 minutes. Spends too much time on the proof of the concept and doesn't do enough practice examples. She's a nice grader, but can't teach for the department final.", + "pos": 0.079, + "neu": 0.856, + "neg": 0.065, + "_id": { + "$oid": "6711d7d0cd60fca157e61398" + } + }, + { + "text": "She is very passionate about math and you might think her voice is unnecessarily loud but I think that's just how she is. Pay attention in lectures because her handwriting can become a little unreadable. She helps you a lot if you ask her. She knows when you're having trouble understanding and will take time off lecture to explain (if she can)", + "pos": 0.078, + "neu": 0.847, + "neg": 0.075, + "_id": { + "$oid": "6711d7d0cd60fca157e61399" + } + }, + { + "text": "She knows what she is talking about but you have to pay attention to understand. Attendance is not mandatory in the sense that she rarely takes attendance, but the lecture are for the quizzes and exams. when grading she takes into account effort. Her quizzes and exam were more difficult than the final but that prepares you.", + "pos": 0.0, + "neu": 0.891, + "neg": 0.109, + "_id": { + "$oid": "6711d7d0cd60fca157e6139a" + } + }, + { + "text": "She is a nice person but definitely not a good teacher.", + "pos": 0.329, + "neu": 0.483, + "neg": 0.188, + "_id": { + "$oid": "6711d7d0cd60fca157e6139b" + } + }, + { + "text": "Although her accent is thick so is her love for math. She knows what she is talking about and tries really hard to explain it to the class through the lectures. Doing the homework certainly helps you practice but also can boost your final grade. If you aren't sure: just ask. Matlab is a joke btw. NOTE: Show up!!! There are no ppt or recordings!", + "pos": 0.178, + "neu": 0.737, + "neg": 0.085, + "_id": { + "$oid": "6711d7d0cd60fca157e6139c" + } + }, + { + "text": "She's really nice!", + "pos": 0.629, + "neu": 0.371, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e6139d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d0cd60fca157e6139f" + }, + "professor_name": "Kevaughn Hunter", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "He's super chill and helpful if you reach out. He genuinely cares about his students. His lectures are easy to follow and useful.", + "pos": 0.494, + "neu": 0.506, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e613a0" + } + }, + { + "text": "Best writing for the sciences professor hands down, very chill dude and doesn't go on any form of power trip or anything. Very flexible but also fair professor. He had us working on a group project where we had to make our own scientific research paper. Basically we just learn how to analyze scientific research papers. Would definitely recommend.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e613a1" + } + }, + { + "text": "This is not the class u looking for an easy A.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e613a2" + } + }, + { + "text": "Prof Hunter is one of the best. He is very understanding and generous with his grading. As long as you complete the work on time, you get full credits. Most of the assignments are group projects and not too much individual work. He does not pick on students and is very respectful. I would def take him again :)))", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e613a3" + } + }, + { + "text": "Very caring professor, will understand and miscommunications or mistakes especially since there are group projects. Only a couple weekly assignments, group research paper, additional group project, and end of semester reflections. Easy going and clear lectures. Clarifies and gives great feedback.", + "pos": 0.286, + "neu": 0.667, + "neg": 0.048, + "_id": { + "$oid": "6711d7d0cd60fca157e613a4" + } + }, + { + "text": "His group projects seem complicated but they're straightforward. He's very lenient with the work with grades and seems like a really nice guy.", + "pos": 0.344, + "neu": 0.656, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e613a5" + } + }, + { + "text": "I recommend him, he makes the class bearable and hes always accessible for questions and wants to help. He also makes his lecture straight to the point and easy to follow. Hes awesome", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e613a6" + } + }, + { + "text": "Kevaughn is a pretty good professor for science majors at CCNY that need this for their degree. Classes are mostly PowerPoints that are very straightforward. There's a decent amount of in-class work as well as homework (mostly papers), but it is very manageable. He gives great and honest feedback on your work and is a very flexible with deadlines.", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d7d0cd60fca157e613a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d1cd60fca157e613a9" + }, + "professor_name": "Catherine Talton", + "rating": 2, + "department": "Theater department", + "comments": [ + { + "text": "I saw her ratings and it kind of scared me but honestly she's really chill. she doesn't do quizzes. she assigns readings which you discuss in class, barley and work to turn in. she's very understanding of students schedules outside of classes so she does extend due dates.", + "pos": 0.12, + "neu": 0.84, + "neg": 0.039, + "_id": { + "$oid": "6711d7d1cd60fca157e613aa" + } + }, + { + "text": "Everyone has given her bad reviews but they can be misleading. Prof. Talton simply expects you to be committed and engaged in the work. Acting class was fun, most of the time all we did was play games and review different acting techniques for our monologues.", + "pos": 0.231, + "neu": 0.672, + "neg": 0.097, + "_id": { + "$oid": "6711d7d1cd60fca157e613ab" + } + }, + { + "text": "Expect to spend a lot of money on plays that are mandatory, but have absolutely nothing to do with the class. You will get graded harshly on papers, but she will take forever to grade them and hand them back. She is all over the place and rarely follows her own syllabus. I do not recommend taking this class. Find another class for those credits.", + "pos": 0.14, + "neu": 0.823, + "neg": 0.037, + "_id": { + "$oid": "6711d7d1cd60fca157e613ac" + } + }, + { + "text": "Very condescending and disrespectful towards students, yet somehow becomes a victim when students give back the same energy. Ive never spent so much money on a class outside of tuition. She has yet to post our grades. I would not recommend this class to my worst enemy. By far the worst class Ive taken in my experience during my undergrad.", + "pos": 0.029, + "neu": 0.75, + "neg": 0.221, + "_id": { + "$oid": "6711d7d1cd60fca157e613ad" + } + }, + { + "text": "Very mediocre class. Her teaching style is a bit messy. You have to see every school play and write reviews. She gives 3 question pop quizzes from the reading that you will probably always fail. Take the class for the Gen ed credit, but don't be surprised at how borning and unproductive the class is.", + "pos": 0.059, + "neu": 0.84, + "neg": 0.101, + "_id": { + "$oid": "6711d7d1cd60fca157e613ae" + } + }, + { + "text": "Requires you to act even though its a history class. Expects understanding for her extremely late grading but doesnt give the slightest consideration that not everyone taking this class pursues acting or is able to put the same energy into every single lecture. Be careful cause she will take notes on each person every lecture.", + "pos": 0.079, + "neu": 0.921, + "neg": 0.0, + "_id": { + "$oid": "6711d7d1cd60fca157e613af" + } + }, + { + "text": "I dont recommend taking her. The curriculum is okay, but it would be nice if she actually graded things on time so the students can know where they stand... Very strict on deadlines but somehow cant meet her own deadlines for grading the papers. She graded one paper out of 3 and even that one was extremely late.", + "pos": 0.083, + "neu": 0.891, + "neg": 0.025, + "_id": { + "$oid": "6711d7d1cd60fca157e613b0" + } + }, + { + "text": "Attendance mandatory Quiz every class Long readings for homework every class. Need to see EVERY theater production. 2 research analysis papers 2-3 pages each. A Production Response Paper 3-4 pages. A Group Performance/Presentation. Lets not forget about a final exam. NO LATE ASSIGNMENTS WILL BE ACCEPTED. She is too much work...", + "pos": 0.104, + "neu": 0.843, + "neg": 0.053, + "_id": { + "$oid": "6711d7d1cd60fca157e613b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d1cd60fca157e613b3" + }, + "professor_name": "Akshar Patel", + "rating": 3, + "department": "Computer Science department", + "comments": [ + { + "text": "Just sent out pdfs and did not teach. Would often give an inpatient reply full of contempt to simple questions. Would not recommend if you dont already know data structures and actually want to learn.", + "pos": 0.033, + "neu": 0.816, + "neg": 0.151, + "_id": { + "$oid": "6711d7d1cd60fca157e613b4" + } + }, + { + "text": "He's great. You can definitely take him for data structure. HW is easy 40%, Group project is 25% and the rest is from quizzes and exams. easy class to pass", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d7d1cd60fca157e613b5" + } + }, + { + "text": "Laziest professor ever. Barely responds to emails or commentary Not helpful at all rude", + "pos": 0.0, + "neu": 0.549, + "neg": 0.451, + "_id": { + "$oid": "6711d7d1cd60fca157e613b6" + } + }, + { + "text": "Teaching technique is terrible and not effective. Barely teaches and expects you to know everything. Going to class is useless as he only took attendance once. Expects students to learn on their own. The laziest professor I have ever seen. If you are okay with teaching the material to yourself then go for it. Otherwise I would suggest someone else.", + "pos": 0.028, + "neu": 0.796, + "neg": 0.176, + "_id": { + "$oid": "6711d7d1cd60fca157e613b7" + } + }, + { + "text": "Lazy, condescending, rude when answering questions and doesnt teach. Looked bored and upset to be in class & complained how he was expected to learn all material on his own when we went to school. So only good for students who like to self teach. For distance learning he uploaded PDF's after reminding him several times. No real help & a lot of work", + "pos": 0.096, + "neu": 0.707, + "neg": 0.196, + "_id": { + "$oid": "6711d7d1cd60fca157e613b8" + } + }, + { + "text": "Amazing professor. He combines traditional teaching with project-based learning. The first half of the semester consisted of assignments and a midterm. Then there was a final group project where we used the theory in a real-life application.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d7d1cd60fca157e613b9" + } + }, + { + "text": "Amazing professor. He combines traditional teaching with project-based learning. The first half of the semester consisted of assignments and a midterm. Then there was a final group project where we used the theory in a real-life application. It's his first time teaching but his methods are far more effective than other profs.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d7d1cd60fca157e613ba" + } + }, + { + "text": "This was his first-semester teaching. Yet he was able to understand his students' knowledge level and taught the course accordingly. He is very caring in terms of assignments. 1 Midterm, 1 final project, 5-7 coding homework assignments. if you study the textbook u will be more than fine for tests. The final project is in groups and hw are very fair", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d7d1cd60fca157e613bb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d1cd60fca157e613bd" + }, + "professor_name": "Varnica Arora", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "Super caring and approachable! Always friendly and ready to help you with whatever problem you have. Very understanding and will try her best to accommodate you. Not too much homework and lectures are clear and concise. No exams in this course and the final was either a paper or a podcast. Makes the material exciting, great professor!", + "pos": 0.372, + "neu": 0.567, + "neg": 0.06, + "_id": { + "$oid": "6711d7d1cd60fca157e613be" + } + }, + { + "text": "I LOVED Pr. Arora and learned so about the intersections of social media x psychology in her class. The material is engaging and the projects are genuinely fun and interesting. She even let us record a podcast instead of a final exam or paper. When a classmate was inappropriate with me, she stepped in and I was so impressed by her helpful response!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d7d1cd60fca157e613bf" + } + }, + { + "text": "Professor Arora is by far one of the best professors I had. She is very caring and is willing to help you out if you're not doing well in the course. You take 3 exams and she drops the lowest score and the review she gives makes the exams easier.", + "pos": 0.214, + "neu": 0.714, + "neg": 0.072, + "_id": { + "$oid": "6711d7d1cd60fca157e613c0" + } + }, + { + "text": "By far one of the best profs. So flexible with the syllabus and attentive to the students. If you do well on the first 2 tests (all MC super easy), you don't have to take the third one. Takes into account what the students like/dislike and adjusts. Uses memes in lectures and uploads everything to BB. Joyous and caring prof, absolutely recommend!", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d7d1cd60fca157e613c1" + } + }, + { + "text": "Varnica loves all of her students! I cannot recommend her enough, if you can, please take her. She is understanding and really easy to talk to about anything! She will help you if you need assistance. She gives 3 exams and drops the lowest one, she gives plenty of options for assignments and a final paper plus extra credit. Take her if you can!!", + "pos": 0.202, + "neu": 0.737, + "neg": 0.061, + "_id": { + "$oid": "6711d7d1cd60fca157e613c2" + } + }, + { + "text": "Prof. Arora takes effort to make the material interesting and engaging. She is approachable, open to feedback, and willing to help you. The textbook can be confuzing at times (you need to study the textbook to succeed in this class). There are three exams, of which the lowest grade drops. I would definetely reccomend this class", + "pos": 0.17, + "neu": 0.789, + "neg": 0.04, + "_id": { + "$oid": "6711d7d1cd60fca157e613c3" + } + }, + { + "text": "Varnica is a really nice lady, but I don't think her teaching style is optimal. It's hard to learn and understand when she pretty much only reads off of the slides, and her feedback on my final paper was very vague. There are 3 tests, one is dropped, but make sure you do well on the first two so you dont have to worry about the last one.", + "pos": 0.223, + "neu": 0.732, + "neg": 0.044, + "_id": { + "$oid": "6711d7d1cd60fca157e613c4" + } + }, + { + "text": "You take 3 exams and she drops the lowest score. She gives a review as to what will be on the exam. You also do 3 reflective memos where you write about 500 words and a final paper that's 7-8 pages. She's receptive to feedback and open to ideas to better your understanding. Arora is a sweetheart and worth taking. Take her if you can!", + "pos": 0.129, + "neu": 0.836, + "neg": 0.036, + "_id": { + "$oid": "6711d7d1cd60fca157e613c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d2cd60fca157e613c7" + }, + "professor_name": "Benjamin Goodman", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "Absolutely the worst professor I have ever had. Does not know what he is doing. Does not know how to answer questions or do some math problems. He just writes problems from his notebooks and solves them without explaining. Does not give any extra credit or curves. Do not take his class.", + "pos": 0.076, + "neu": 0.764, + "neg": 0.159, + "_id": { + "$oid": "6711d7d2cd60fca157e613c8" + } + }, + { + "text": "Here to debunk all accusations made about Professor Goodman below. Im currently taking him for MATH 205, but had him for 190. He was always available during office hours for help only downside is that his handwriting can be a bit hard to understand. Had to withdraw for personal reason so I dont know what my grade would have been, but he is great.", + "pos": 0.124, + "neu": 0.798, + "neg": 0.078, + "_id": { + "$oid": "6711d7d2cd60fca157e613c9" + } + }, + { + "text": "I did not understand one problem he taught in class. I learned everything on my own from YouTube, Google, etc. He doesnt curve grades at all. Doesnt give good feedback. I tried super hard in his class and still got a C+ but grade was only based on 3 exams His way of teaching is not helpful, he sounds like hes learning the problems with us", + "pos": 0.097, + "neu": 0.779, + "neg": 0.125, + "_id": { + "$oid": "6711d7d2cd60fca157e613ca" + } + }, + { + "text": "semester isn't even over yet and im sure I failed. goodman does not teach, he completes problems while we watch. he can barely explain anything, it's as if he's figuring things out as he goes. there are no grades besides the exams so pls do yourself a favor and study extremely hard. he seems like a nice person but he just isn't fit for a professor", + "pos": 0.115, + "neu": 0.755, + "neg": 0.13, + "_id": { + "$oid": "6711d7d2cd60fca157e613cb" + } + }, + { + "text": "Material was essentially self-taught because instructor is unable to teach. I was frustrated throughout the course and relied on Youtube and tutoring (and meltdowns). Pacing of this class was unrealon any given day, we were doing homework on one section, being quizzed on a different section, and being lectured on yet another section. Run!", + "pos": 0.0, + "neu": 0.935, + "neg": 0.065, + "_id": { + "$oid": "6711d7d2cd60fca157e613cc" + } + }, + { + "text": "Basically had to teach myself throughout the whole semester, he doesnt do well with explaining anything at all. Attendance doesnt really matter, hw is worth three percent the quizzes and exams are most important.", + "pos": 0.108, + "neu": 0.809, + "neg": 0.084, + "_id": { + "$oid": "6711d7d2cd60fca157e613cd" + } + }, + { + "text": "He's very confusing while explaining.", + "pos": 0.0, + "neu": 0.646, + "neg": 0.354, + "_id": { + "$oid": "6711d7d2cd60fca157e613ce" + } + }, + { + "text": "DO NOT TAKE THIS MAN'S CLASS!!! Do yourself a favor and save your time and money. He doesn't know how to teach. He doesn't answer questions when you ask him. Half of the times he doesn't know the answer. If you wish to learn and pass this class don't take him. He doesn't teach and doesn't know what he is doing. My class had to help each other", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613cf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d2cd60fca157e613d1" + }, + "professor_name": "Joseph Furlong", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Professor for long is kind and caring. very accessible always of discuss your papers and any questions you may have . You will find yourself participating in class. Discussions are very innovative.", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613d2" + } + }, + { + "text": "When he teache he make sure his students are involved. The material we read in class is very intriguing. His form of teaching is very unique and unlike tedious lectures. We are graded by a handful of papers, you have plenty of time to work on a receive good feedback.", + "pos": 0.098, + "neu": 0.902, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613d3" + } + }, + { + "text": "I actually took his FIWQIS 10005 course. He likes talking and he also likes it when others share or participate during his free-write. Oh there will be 5 mins free write everyday about random prompts and its fun. Even through too many papers; he is accessible outside class. Take his class, you won't regret I promise.", + "pos": 0.247, + "neu": 0.724, + "neg": 0.029, + "_id": { + "$oid": "6711d7d2cd60fca157e613d4" + } + }, + { + "text": "He a good professor but he grades few thing at a time and he don't give a back until it late like until the end of the semester or the mid of the semester and each we he give home out", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613d5" + } + }, + { + "text": "10/10 i love this proffesor, if i could i would take this proffesor again for different classes, love his sense of humor, very understanding and caring. just over all great proffesor", + "pos": 0.41, + "neu": 0.59, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613d6" + } + }, + { + "text": "Papers are difficult but if you do the work he will give you a good grade and he is always there for help", + "pos": 0.254, + "neu": 0.686, + "neg": 0.06, + "_id": { + "$oid": "6711d7d2cd60fca157e613d7" + } + }, + { + "text": "Professor Furlong is nice and caring. His class is very interesting. discussion post every week and assigned us 4-5 essays to write throughout the semester. try to participate because it matters.", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613d8" + } + }, + { + "text": "Very understanding and helps his students", + "pos": 0.364, + "neu": 0.636, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d2cd60fca157e613db" + }, + "professor_name": "Rob Barron", + "rating": 4.5, + "department": "Theater department", + "comments": [ + { + "text": "Professor Barron is someone MADE to be an educator in the arts. He knows the dramatic arts well & guaranteed will help you improve if you participate in whichever class. He really is the best & you wont regret taking any of his classes!", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613dc" + } + }, + { + "text": "Great professor", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613dd" + } + }, + { + "text": "Amazing Professor. Introduced me to the world of play writing and I'm loving it. He assigns nothing that can't be done. In only a few weeks, he managed to unite the class with friendly and welcoming vibes.", + "pos": 0.336, + "neu": 0.664, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613de" + } + }, + { + "text": "Had Rob for Acting 1 and loved it. He makes sure to bring the class together as a family, and really envelopes students into the love of theatre and acting. If you are shy, take Rob. Half the class went from shy and reserved to loud and exciting. Take him if you want an A.", + "pos": 0.207, + "neu": 0.638, + "neg": 0.155, + "_id": { + "$oid": "6711d7d2cd60fca157e613df" + } + }, + { + "text": "The best acting professor I have had in my lifetime (and I've had a few). He makes sure that you leave his class with a clearer understanding of how to perform and how to tap into the character you're portraying. I've made it my goal to take every class that he will teach.", + "pos": 0.113, + "neu": 0.867, + "neg": 0.021, + "_id": { + "$oid": "6711d7d2cd60fca157e613e0" + } + }, + { + "text": "Definitely my favorite professor/class so far this year. He's very energetic and gives awesome feedback and he's really up for anything. He doesn't stand for absences unless you've emailed him though. Overall a GREAT teacher.", + "pos": 0.373, + "neu": 0.627, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613e1" + } + }, + { + "text": "Tells irrelevant stories constantly, barely gives any feedback, and an egomaniac. He does not know how to teach acting.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7d2cd60fca157e613e2" + } + }, + { + "text": "ACTING 1 WAS AN AWESOME EXPERIENCE WITH ROB! THIS GUY IS AMAZING HE IS PASSIONATE AND HIS IS FUNNY! YOU WILL ENJOY TAKING THIS CLASS...HE IS AN EASY GRADER...IF YOU HAVE A PASSION FOR ACTING THIS IS THE GUY TO TAKE!!! YOU WILL ENJOY IT!", + "pos": 0.454, + "neu": 0.487, + "neg": 0.059, + "_id": { + "$oid": "6711d7d2cd60fca157e613e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d3cd60fca157e613e5" + }, + "professor_name": "Megan Blumenreich", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "If only all professors were as good as her! I learned so much in her class and everything was super clear! She doesn't give busy work, she gives assignments which you will learn from. She gives like 4 small quizzes on BB, 3 papers (Super easy if you're doing your fieldwork) and 2 group assignments. TAKE HER!", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d7d3cd60fca157e613e6" + } + }, + { + "text": "She's a class act. Take her. You'll thank me later. She'll literally hold your hand all the way and will provide you with the best feedback a professor can give you. I never felt lost in the course and all her readings will help you be the best teacher you can be. Don't be overwhelmed by the assignments; just following the syllabus will suffice.", + "pos": 0.244, + "neu": 0.741, + "neg": 0.015, + "_id": { + "$oid": "6711d7d3cd60fca157e613e7" + } + }, + { + "text": "I have her now and she is such a good/nice person! Some people don't like her because they expect to get a good grade without doing any work. What she teaches actually helps us as teachers. Yes there's work every week but nothing that can't be handled.", + "pos": 0.117, + "neu": 0.852, + "neg": 0.031, + "_id": { + "$oid": "6711d7d3cd60fca157e613e8" + } + }, + { + "text": "Prof. Bumenreich is very knowledgeable and understanding. Her class is a delight to be in. You will learn A LOT! Class discussions, as well as the field trips, are mind-blowing-- very interesting and fun. There were two awesome books we read in class that went well with the class discussions + field trips to a school.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d7d3cd60fca157e613e9" + } + }, + { + "text": "People are intimidated by her but she's actually really nice and very helpful. If you put full effort into her class you'll do fine.", + "pos": 0.323, + "neu": 0.617, + "neg": 0.06, + "_id": { + "$oid": "6711d7d3cd60fca157e613ea" + } + }, + { + "text": "She is a nice person and all readings are helpful. you will be prepared for EdPTA.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d7d3cd60fca157e613eb" + } + }, + { + "text": "her class drags forever and she is very picky about what she wants when handing in work. Do Not Take!", + "pos": 0.0, + "neu": 0.905, + "neg": 0.095, + "_id": { + "$oid": "6711d7d3cd60fca157e613ec" + } + }, + { + "text": "Really sweet professor. Sometimes felt the class dragged on and was a bit repetitive. Regardless, she focuses on everything you read! So make sure to pay attention to the names and points. It'll help out for the end of the semester stuff !", + "pos": 0.18, + "neu": 0.729, + "neg": 0.091, + "_id": { + "$oid": "6711d7d3cd60fca157e613ed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d3cd60fca157e613ef" + }, + "professor_name": "Ivan Rosa", + "rating": 3.7, + "department": "Architecture department", + "comments": [ + { + "text": "Professor Rosa pushed me to move forward with my career choice when he saw that I was at a cross roads. He shared with me his own personal experience and motivated me to get going and work harder. I will alway appreciate that and respect him for being real with me. I now have my R.A. One of the few Puerto Ricans in NY/NJ to achieve so.", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d7d3cd60fca157e613f0" + } + }, + { + "text": "One of the few professors who is actually grounded to reality. Treats you as an adult - meaning he won't babysit you or guide you along your project as if you're a child. There's a lot to learn from him, just make sure not to slack because he's chill - he can't help you if you don't have anything to show.", + "pos": 0.036, + "neu": 0.928, + "neg": 0.036, + "_id": { + "$oid": "6711d7d3cd60fca157e613f1" + } + }, + { + "text": "AMAZING professor. Very helpful and understanding. Took him twice and would take him again if I could.", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d7d3cd60fca157e613f2" + } + }, + { + "text": "Very down to earth. He teaches you what you really need to know when you're out in the field.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7d3cd60fca157e613f3" + } + }, + { + "text": "He is kind of careless. He is always late for an hour or more in the studios. He is kind of careless. He always have some people on his favor. People he likes will get a good grade does not matter if they do their works or not, and the others will receive random grades, he is a random grader. He is not clear on his instruction.", + "pos": 0.109, + "neu": 0.777, + "neg": 0.114, + "_id": { + "$oid": "6711d7d3cd60fca157e613f4" + } + }, + { + "text": "Amazing professor! He explains at the beginning of the semester what he is looking for, & though he is a tough grader, he is fair. Very down to earth, which is a refreshing change from most professors. He teaches you the importance proper presentation, and stresses having a clear set of drawings that speak for themselves.", + "pos": 0.174, + "neu": 0.758, + "neg": 0.068, + "_id": { + "$oid": "6711d7d3cd60fca157e613f5" + } + }, + { + "text": "One of the worst Professors I ever had. If you want to just joke around and breeze by this is the professor for you. You won't learn anything form him. His grading system is completely unfair. Bad students received good grades because they were friends with this guy. If you are not within his circle of friends expect a low grade.", + "pos": 0.162, + "neu": 0.667, + "neg": 0.171, + "_id": { + "$oid": "6711d7d3cd60fca157e613f6" + } + }, + { + "text": "Nice guy. Understanding and helpful.", + "pos": 0.651, + "neu": 0.349, + "neg": 0.0, + "_id": { + "$oid": "6711d7d3cd60fca157e613f7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d4cd60fca157e613f9" + }, + "professor_name": "Dominick Pilla", + "rating": 3.2, + "department": "Architecture department", + "comments": [ + { + "text": "Pilla thinks he's lecturing to a group of engineers, and that the material is review for us. None of us are good at math, so we are constantly lost and having to pray that we do good on the exams.", + "pos": 0.175, + "neu": 0.776, + "neg": 0.05, + "_id": { + "$oid": "6711d7d4cd60fca157e613fa" + } + }, + { + "text": "Lectures could be slower paced and tests could have more than one question, but overall Pilla is fair.", + "pos": 0.148, + "neu": 0.852, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e613fb" + } + }, + { + "text": "The structure of this elective is extremely loose without clear learning objectives, assignments, or grades. Pilla is knowledgable and will often add insight in reaction to student work but not much more than that. Difficult to recommend overall.", + "pos": 0.073, + "neu": 0.765, + "neg": 0.161, + "_id": { + "$oid": "6711d7d4cd60fca157e613fc" + } + }, + { + "text": "Pilla walks into class, shoots information at you, and walks out. You will be largely teaching yourself. That said, he will not fail you outright if you underperform on the tests that comprise basically the entire grading criteria.", + "pos": 0.072, + "neu": 0.928, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e613fd" + } + }, + { + "text": "prof pilla is pretty easy, if you do the minimum you will pass his class. but if you want to learn the material he is not very good. he doesn't explain too well and goes to fast. its not that he doesn't care, its more like he's so smart and doesn't realize we are sitting there staring into space", + "pos": 0.18, + "neu": 0.696, + "neg": 0.124, + "_id": { + "$oid": "6711d7d4cd60fca157e613fe" + } + }, + { + "text": "Fun class", + "pos": 0.767, + "neu": 0.233, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e613ff" + } + }, + { + "text": "Could hardly concentrate in class 'cause he's too good looking.", + "pos": 0.244, + "neu": 0.756, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e61400" + } + }, + { + "text": "He is sooooooooo sexy. The only good looking professor in the school. He is very clear in structures but his handwriting is chickenstratch. Doesn't matter. Hes freakin hot you will never miss class.", + "pos": 0.211, + "neu": 0.759, + "neg": 0.03, + "_id": { + "$oid": "6711d7d4cd60fca157e61401" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d4cd60fca157e61403" + }, + "professor_name": "Joseph Fantozzi", + "rating": 4.2, + "department": "Music department", + "comments": [ + { + "text": "If you don't have an interest in music, don't take this class its going to be hell. Really passionate about music so if he scenes you don't like it, he's going to make sure to give you a tough time. Really harsh grader, counts grammar like he's my English teacher. class is really boring and long. Don't take this class if you don't like music.", + "pos": 0.103, + "neu": 0.67, + "neg": 0.226, + "_id": { + "$oid": "6711d7d4cd60fca157e61404" + } + }, + { + "text": "Great professor. Even though I do not have a good \"ear for music\" I was able to follow and understand him. You will definitely learn. Very clear in his teaching and grading technique. Make sure you study class notes and DO NOT miss prior days of quizzes. And study your quizzes with class notes for finals. Don't be lazy or miss class.", + "pos": 0.211, + "neu": 0.734, + "neg": 0.054, + "_id": { + "$oid": "6711d7d4cd60fca157e61405" + } + }, + { + "text": "He is a good professor overall. He lets you skip the last quiz if you do good on that. His class was overall easy. You have to read the textbook in order to ace his class. I didn't do well as expected because I was being lazy.", + "pos": 0.158, + "neu": 0.763, + "neg": 0.078, + "_id": { + "$oid": "6711d7d4cd60fca157e61406" + } + }, + { + "text": "He is an amazing professor. If you pass the first 3 quizzes, you have the option of skipping the last one. I wish he taught other music classes and classes that are earlier.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e61407" + } + }, + { + "text": "He's a very good teacher. He explains everything really well. He starts from basic instrument families, to more complex material such as the differences between the music of the Baroque era and of the Romantic era. Review your notes ALWAYS! 9/10 that the quizzes will have same material covered. He won't make the class boring. Good luck!", + "pos": 0.217, + "neu": 0.749, + "neg": 0.034, + "_id": { + "$oid": "6711d7d4cd60fca157e61408" + } + }, + { + "text": "Easy A just take notes in class do the papers and review the Cheat sheet he gives out be4 every test", + "pos": 0.116, + "neu": 0.763, + "neg": 0.12, + "_id": { + "$oid": "6711d7d4cd60fca157e61409" + } + }, + { + "text": "he is pretty down to earth, but does expect to teach you what your are supposed to learn from his class. as long as to go to class, get the review(exam are close to the review) and study before the exam and do ur paper(make them a little interesting, put ur personal experience) and u'll do great in his class", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e6140a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d4cd60fca157e6140c" + }, + "professor_name": "Phoebe Rumsey", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "Professor Rumsey is a really kind person. She is also a good teacher. She made learning theatre history a fun process.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e6140d" + } + }, + { + "text": "She is a lovey professor and has very good energy. super passionate about theatre and tries to make class less boring. She gives EXTRA CERDIT! I loved her and do recommend her!", + "pos": 0.427, + "neu": 0.53, + "neg": 0.043, + "_id": { + "$oid": "6711d7d4cd60fca157e6140e" + } + }, + { + "text": "Theres a lot of work you have 2 group presentations 4 papers to write and about 4 to 5 plays to read with some additional readings. Nonehtless it is an easy A. Just do your work and participate you will pass with an A.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e6140f" + } + }, + { + "text": "Prof Ramsey is amazing. She is one of the nicest people you'll ever meet. As long as you try, participate, do the few papers she asks you to write your guaranteed to pass her class. She's also pretty funny. He classroom has a very same, calm and enjoyable atmosphere. Definitely take her class. You will not regret it.", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e61410" + } + }, + { + "text": "There's alot of work but it's fun! You watch plays ($2-$5 each) and write 2 pg reviews on 'em and see a professional play ($25) for your final and write a 5 pg paper on it. You must print the readings but you can get by just reading summaries. There are also 2 GROUP presentations. But Ms. Rumsey was wonderful and funny, and so was my class overall", + "pos": 0.234, + "neu": 0.766, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e61411" + } + }, + { + "text": "Professor Rumsey is AMAZING! She help students with their papers, she's funny, she urges people to participate, she gives out readings on BB and you MUST print them, and there are weekly quizzes that are super easy! 3 papers based on school plays (2-3 pgs), 2 group projects, and final paper (5-7 pgs) based on a play you choose. TOTALLY RECOMMEND!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e61412" + } + }, + { + "text": "Professor Rumsey is easy-going. She really cares about your writing. She gives really good feedback for your 2 group presentations, and reviews about school plays. She is really funny too and you can tell she likes what she does. She is the best professor! Easy A, punctuality is important and participation.", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d7d4cd60fca157e61413" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d5cd60fca157e61415" + }, + "professor_name": "Eve Sourian", + "rating": 4.6, + "department": "Foreign Languages & Literature department", + "comments": [ + { + "text": "Nice enough woman, but the whole focus of her class is grammar and conjugation. If you are looking for a course to prepare you to read French literature, I would look at another school altogether. (Saint-Just is no better for lit.) Pretty much a high school French class. First day of class was 90 minutes of put-you-on-the-spot verb conjugations.", + "pos": 0.095, + "neu": 0.857, + "neg": 0.048, + "_id": { + "$oid": "6711d7d5cd60fca157e61416" + } + }, + { + "text": "very interesting teacher. Just like a grandma would teach.she is very good and know both languages well-english anf french.I love her", + "pos": 0.431, + "neu": 0.569, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e61417" + } + }, + { + "text": "she is very nice and clear. I felt happy attending her class. ohhh!and she smile :-)", + "pos": 0.573, + "neu": 0.427, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e61418" + } + }, + { + "text": "she's really funny...and will joke on students if they do something stupid..really funny and a bit hardcore with the tests though.", + "pos": 0.22, + "neu": 0.78, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e61419" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7d5cd60fca157e6141a" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7d5cd60fca157e6141b" + } + }, + { + "text": "Very good. No nonsense French teaching. Great.", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e6141c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d5cd60fca157e6141e" + }, + "professor_name": "Ralph Zuzolo", + "rating": 2.4, + "department": "Biology department", + "comments": [ + { + "text": "He is the most helpful, kind and human professor I have ever had.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e6141f" + } + }, + { + "text": "This class was VERY confusing in terms of what to expect, etc. Overall, it was easy if you actually come to class. He literally tells you what pages he could test you on from the book about 2 wks before the test. Study that and you'll be ok. He's hard of hearing so you have to yell questions out to him or just ask him after class.", + "pos": 0.041, + "neu": 0.899, + "neg": 0.061, + "_id": { + "$oid": "6711d7d5cd60fca157e61420" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7d5cd60fca157e61421" + } + }, + { + "text": "he's cute (as in little old man cute) but not terribly competent. his enthusiasm for scientific progress does not make up for the fact that his lectures are wildly disorganized and not terribly informative. he also cannot hear so if you have a question please be prepared to YELL. it's kind of abbot & costello. stick to study sheet, read the book.", + "pos": 0.3, + "neu": 0.636, + "neg": 0.064, + "_id": { + "$oid": "6711d7d5cd60fca157e61422" + } + }, + { + "text": "This professor is for those who like to listen to great achivements in science research and who prefers study at home by himself.He doesnt follow the book material during lectures, gives bunch of handouts.Gives review sheet for exams and exams are fairly easy. Take Bio206 in advance--you will do great then!", + "pos": 0.228, + "neu": 0.772, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e61423" + } + }, + { + "text": "This was the most stressful class I have ever taken. The course only offered a midterm and a final, and little feedback on your progress except for scores on lab reports.", + "pos": 0.079, + "neu": 0.819, + "neg": 0.102, + "_id": { + "$oid": "6711d7d5cd60fca157e61424" + } + }, + { + "text": "Prof Zuzolo's exam is pretty hard. His exam guide does not help at all. Even if you attend his review day it will not help you at all. Most importantly, he is ****.", + "pos": 0.146, + "neu": 0.705, + "neg": 0.149, + "_id": { + "$oid": "6711d7d5cd60fca157e61425" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d5cd60fca157e61427" + }, + "professor_name": "Cathy McArthur", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "She is quirky, funny, and loves literature. She will rarely take off points if an essay is handed in late. She gives easy assignments and is a fairly easy grader. Her class was a pleasure.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e61428" + } + }, + { + "text": "Prof. MacArthur has a great passion for literature and will try and incorporate that into her lessons and class discussions. Very light hearted and a decent grader. You have to truly earn your grade in her class, but if you participate, focus and are attentive during discussions/lessons then that should guarantee you a passing grade!", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e61429" + } + }, + { + "text": "Not really easy. A lot of reading. Weekly reaction papers,two term papers but you learn a lot. She jokes a lot in class. Lots of discussions; This teacher likes her literature.", + "pos": 0.172, + "neu": 0.778, + "neg": 0.05, + "_id": { + "$oid": "6711d7d5cd60fca157e6142a" + } + }, + { + "text": "She is a cool prof. Very easy and helpful. Grading is very neutral. The course had much reading and she understood that. Polite in speech and behavior. What else you want?", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e6142b" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7d5cd60fca157e6142c" + } + }, + { + "text": "Very easy Porf.", + "pos": 0.615, + "neu": 0.385, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e6142d" + } + }, + { + "text": "Really easy going. Corny funny, but funny nonetheless.", + "pos": 0.612, + "neu": 0.388, + "neg": 0.0, + "_id": { + "$oid": "6711d7d5cd60fca157e6142e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d6cd60fca157e61430" + }, + "professor_name": "Augusto Lori", + "rating": 2.6, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "He does not know what he's talking about. Even when students ask him questions, he doesn't know how to answer them clearly. Giving 50/100 for everyone's project without telling what we did wrong. Heavy lectures but useless. Super strict about attendance, mark you absence even 5minutes late. Overall, terrible instructor.", + "pos": 0.142, + "neu": 0.701, + "neg": 0.158, + "_id": { + "$oid": "6711d7d6cd60fca157e61431" + } + }, + { + "text": "I gave him 2 because he was accessible outside the class. If you answered different answer than the one he wants he may take 6 points out of the 10 even if its right though.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7d6cd60fca157e61432" + } + }, + { + "text": "He's such a dingbat. When explaining to the class how we can get better at taking his exams he said \"you need to know what you dont know.\" Puts trick questions on his exams but doesnt write them in a way that gives you the option of not answering the question because you know its a trick you just have to take the chance. His words btw.", + "pos": 0.079, + "neu": 0.902, + "neg": 0.019, + "_id": { + "$oid": "6711d7d6cd60fca157e61433" + } + }, + { + "text": "If you want to see your GPA spiral into oblivion, take his class. Even when I'm completely right, I was still completely wrong. Will mark the answer completely wrong if your answer doesn't fit his. Grading criteria for exams are not the same. Class average remained a 50. Dodge this class with all of your might. You would not regret it.", + "pos": 0.053, + "neu": 0.817, + "neg": 0.13, + "_id": { + "$oid": "6711d7d6cd60fca157e61434" + } + }, + { + "text": "Awesome professor. People complain that he is too critical with exams, but he is right to be that way. Even if you get the question right, he will take off points if you show that you don't understand what you're doing. HINT: UNDERSTAND WHAT YOU'RE DOING. Good lectures, funny guy, very knowledgeable, enjoyable class overall.", + "pos": 0.217, + "neu": 0.732, + "neg": 0.051, + "_id": { + "$oid": "6711d7d6cd60fca157e61435" + } + }, + { + "text": "He's only our TA, but I wish he was the professor. It's rare to get lectures from him. He's one of the few professors in the school that can actually teach and keep you engaged. It's a tough subject, but I feel like I barely need to look over the textbook after his lectures.", + "pos": 0.167, + "neu": 0.805, + "neg": 0.028, + "_id": { + "$oid": "6711d7d6cd60fca157e61436" + } + }, + { + "text": "Takes off points literally for the smallest things off your homeworks/exams. Even if your answer is 100% right, he will still somehow find a way to lower your grade. If you're not looking for someone who's going to give you a difficult time and not grade you fairly, too bad cause this is the only TA. Welcome to City College.", + "pos": 0.045, + "neu": 0.833, + "neg": 0.122, + "_id": { + "$oid": "6711d7d6cd60fca157e61437" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d6cd60fca157e61439" + }, + "professor_name": "David Aglow", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "This is the best professor in the entire world. I was his student and I think he should be teaching at MIT because he makes writing so fun and interesting. I am a student at Harvard Medical school and he is was one of my role model.", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d7d6cd60fca157e6143a" + } + }, + { + "text": "He is the nice teacher, fair grader and really helpful eventhough English is your second laguage, but it's not a problem with him as long as you show him how hard you've been working on. he will 100% help you to pass the class but now he's in LaGuardia Community college so if anyone attends to that college. I would suggest you to take him !!", + "pos": 0.17, + "neu": 0.808, + "neg": 0.022, + "_id": { + "$oid": "6711d7d6cd60fca157e6143b" + } + }, + { + "text": "This professor is the best....he really makes you want to get the grade. HE teaches in such a way that makes the subject interesting.I started off as a B student and because the class was interesting i worked my way up to an A+", + "pos": 0.092, + "neu": 0.908, + "neg": 0.0, + "_id": { + "$oid": "6711d7d6cd60fca157e6143c" + } + }, + { + "text": "Hard as in grading, makes class a little more interesting but begins to be a pain with his expectations in writing. Not excessive writing but a good enough amount that you don't feel burdened by the class.", + "pos": 0.186, + "neu": 0.692, + "neg": 0.122, + "_id": { + "$oid": "6711d7d6cd60fca157e6143d" + } + }, + { + "text": "Very good professor. He is very helpful in writing paper. I believe because of him, I am able to write a decent paper in all my classes. I recommend that you take him and plus it is an easy A. Show up do the work in class and hand in the papers and you will do A ok.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d7d6cd60fca157e6143e" + } + }, + { + "text": "Aglow is a great professor , down to earth and very funny. The amount of work he gives is fair and so is his grading as long as he knows your giving it your all. May i add hes very good to look at", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d7d6cd60fca157e6143f" + } + }, + { + "text": "THE COOLEST!!!!Creative, funny, and never boring. very very fair in grading just be serious! highly recomended!!!", + "pos": 0.401, + "neu": 0.541, + "neg": 0.059, + "_id": { + "$oid": "6711d7d6cd60fca157e61440" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d7cd60fca157e61442" + }, + "professor_name": "Valdon Battice", + "rating": 4.4, + "department": "English department", + "comments": [ + { + "text": "The best man you'll ever meet.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61443" + } + }, + { + "text": "I thought I had this guy in the bag. I won't lie atfirst he seemed easy. He always came to class late and didn't really give much. But the final paper threw me off. Still he was alright. I didn't really learn much plus he does make us read once in awhile. Decent lectures though. It's a hit or miss depending on your view.", + "pos": 0.066, + "neu": 0.906, + "neg": 0.028, + "_id": { + "$oid": "6711d7d7cd60fca157e61444" + } + }, + { + "text": "Awesome professor enthusiastic full of energy provides student with deeper insight of all the material he cover in his class making learning fun and easy. In total there were 4 papers and a board final. I highly recommend his class.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61445" + } + }, + { + "text": "He got on my everlasting nerves. Im not at all a lazy student, but he annoyed the crap out of me. His conception of time this semester was way off. ALWAYS LATE! so annoying. Slow with grading papers, slow with giving them back. Makes you buy 4 books THAT YOU NEVER USE and slow with posting final grades. Go to class once a week, he wont notice.", + "pos": 0.039, + "neu": 0.773, + "neg": 0.187, + "_id": { + "$oid": "6711d7d7cd60fca157e61446" + } + }, + { + "text": "I can't believe nobody thinks he is hot!:) anyway the best professor I ever had so far in city college and its ironic because this class is just a workshop but i learned a lot more than i learned in my other classes, take his class, find him and talk to him. This guy knows his stuff. He gets the students attention the second he starts talking, oh g", + "pos": 0.041, + "neu": 0.942, + "neg": 0.018, + "_id": { + "$oid": "6711d7d7cd60fca157e61447" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7d7cd60fca157e61448" + } + }, + { + "text": "Very clear, explains thing's in depth, and will take the time to see you after class if needed, overall very helpful professor.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61449" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d7cd60fca157e6144b" + }, + "professor_name": "Keri Marcovici", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Been a couple of years, but her class was so awesome. And she's soooo hot, I love her.", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e6144c" + } + }, + { + "text": "Prof Marcovici's class was interesting and pretty fun. I liked the mix of group work and lectures. She's easy to talk to and very nice when I met after class to talk about my work.", + "pos": 0.383, + "neu": 0.617, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e6144d" + } + }, + { + "text": "Be on time if not, its an automatic absence, participate, read the texts assigned and u should do fairly well.. so far im learning alot and actually enjoy the class..", + "pos": 0.159, + "neu": 0.841, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e6144e" + } + }, + { + "text": "she's a well rounded professor...her class is fun...as a group you'll get 2 watch a movie on psychology n you'll have 2 network in groups and do a group presentation at the end of the semester...our movie was The Woodsman w/ Kevin Bacon on Sexual Disorders...d course is easy going...make sure 2 attend every day and get there early", + "pos": 0.115, + "neu": 0.885, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e6144f" + } + }, + { + "text": "She doesn't lecture, she briefly speaks at the beginning of class. The whole semester was based on group presentations(each group presents a lecture for the length of the class, basically the students taught the class) and we had lots of group discussions. Her tests and quizzes are okay.", + "pos": 0.039, + "neu": 0.961, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61450" + } + }, + { + "text": "GREAT SHE GIVES STUDENTS A LOT OF OPPORTUNITY TO BOOST THEIR GRADE AND SHE MAKES YOU WORK HARD FOR YOUR GRADE.", + "pos": 0.343, + "neu": 0.607, + "neg": 0.05, + "_id": { + "$oid": "6711d7d7cd60fca157e61451" + } + }, + { + "text": "I liked this class. Class was interesting and i liked the group discussions.", + "pos": 0.454, + "neu": 0.546, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61452" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d7cd60fca157e61454" + }, + "professor_name": "Erica Rogers", + "rating": 4.6, + "department": "Psychology department", + "comments": [ + { + "text": "Awesome professor! She's super sweet and nice. She's pretty young so she's always available via email and willing to help. Her exams aren't hard as long as you read the textbook and pay attention in class. She also gives practice questions during her lectures to prepare you for exams. Professor Rogers also bought everyone breakfast on the last day!", + "pos": 0.292, + "neu": 0.689, + "neg": 0.019, + "_id": { + "$oid": "6711d7d7cd60fca157e61455" + } + }, + { + "text": "Great professor! Read the textbook, it will help you follow along with her lectures! She skips some of the information but you can still learn a lot from her without reading. Her exams are based off her study guide. She pays attention to when students who need extra clarification. She also separates class into groups for psychological debates.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61456" + } + }, + { + "text": "Super nice and helpful. She goes through her slides on her PowerPoints kinda quickly but if you have any question she tries to explain everything to the best of her abilities. Her powerpoints are very fun to look at since she is pretty tech savvy. She's also a very fair grader and gives students the chance to do extra credit. She's awesome!", + "pos": 0.433, + "neu": 0.567, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61457" + } + }, + { + "text": "Professor Rogers is super nice and helpful. Her feedback is very helpful and she's always available to answer any questions you might have. She gives two exams, one observation paper, and one final paper. She also gave an extra credit opportunity. She's very knowledgable and makes lectures very fun. She also gives you a study guide for exams.", + "pos": 0.297, + "neu": 0.703, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e61458" + } + }, + { + "text": "she was awsome and really tired to claify they materical... and sometimes she rushes but u can easily say \"heyy slow down\"!", + "pos": 0.133, + "neu": 0.785, + "neg": 0.082, + "_id": { + "$oid": "6711d7d7cd60fca157e61459" + } + }, + { + "text": "BEAUTIFUL TEACHER", + "pos": 0.796, + "neu": 0.204, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e6145a" + } + }, + { + "text": "Nice professor always willing to answer questions and clarify subject matter. She offers extra credit, and uses power point in every lesson. Sometimes she rushes through the material, you will have to be on point with reading the slides and book chapters. If you go to class and study the book you should be fine.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d7d7cd60fca157e6145b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d8cd60fca157e6145d" + }, + "professor_name": "Coriel Gaffney", + "rating": 4.7, + "department": "English department", + "comments": [ + { + "text": "She is such an amazing teacher. Very thoughtful and it's hard to not like the class. Every class was a joy to go to, I learned something new everyday. This class was a course about the PSY of Love, but she taught the writing portion. Because of her, she made it a lot easier to write creatively and accurately for my final.", + "pos": 0.223, + "neu": 0.739, + "neg": 0.038, + "_id": { + "$oid": "6711d7d8cd60fca157e6145e" + } + }, + { + "text": "Very great and helpful professor. Easy A!", + "pos": 0.727, + "neu": 0.273, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e6145f" + } + }, + { + "text": "Amazing teacher. I loved this class. She's very intelligent and handles a classroom well. She's very understanding and appreciates creativity. You have to read the work she assigns because it will relate to the following class. Its easy to get an A because she doesn't place pressure on you, instead you find yourself enjoying the work.", + "pos": 0.369, + "neu": 0.631, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e61460" + } + }, + { + "text": "I took her for a creative writing workshop. She was cool and relaxed in her class. Definately do her readings because a lot of the next class depends on what you were supposed to read. Also, randomly, she reminds me of the chick from MDK... just sayin'", + "pos": 0.16, + "neu": 0.84, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e61461" + } + }, + { + "text": "She is one of the best instructor i had so far. she is also the best paper grader ever. she writes an entire page of comments for your papers which is extremely helpful. her classes are always entertaining!!", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e61462" + } + }, + { + "text": "she is OK. you don't have to work hard but if you're lazy shes not for you. she helps students a lot. and participation in her class is a plus.", + "pos": 0.098, + "neu": 0.775, + "neg": 0.128, + "_id": { + "$oid": "6711d7d8cd60fca157e61463" + } + }, + { + "text": "She is OK", + "pos": 0.595, + "neu": 0.405, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e61464" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d8cd60fca157e61466" + }, + "professor_name": "Cuiyuan Wang", + "rating": 4.1, + "department": "Computer Science department", + "comments": [ + { + "text": "She has a tough accent to understand, but if you do understand her then her lectures are useful and she teaches in a nice decent way. Her lecture notes are very useful, must copy them. she assigned 4 overall Homeworks, 3-midterms, 1 final depending on the midterm grades you receive. She always reviews before exams. Her reviews are very helpful.", + "pos": 0.221, + "neu": 0.761, + "neg": 0.017, + "_id": { + "$oid": "6711d7d8cd60fca157e61467" + } + }, + { + "text": "Helpful, gives extra credit, approachable and nice to her students. just make an effort and make sure you copy what she writes on the board because she goes over exactly whats on the exams", + "pos": 0.259, + "neu": 0.741, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e61468" + } + }, + { + "text": "take her!! nicest csc professor out of all", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e61469" + } + }, + { + "text": "nice professor, the class is very easy. give you the basic information about output, input, array, class, for loop....", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e6146a" + } + }, + { + "text": "this professor is helpful and lenient. just make sure you sit in the front and participate, she gives extra credit if you do. her exams are not that difficult and she gives review sheets which help alot and are alot like the tests. would take again.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e6146b" + } + }, + { + "text": "She is nice and her class is clear and easy if you have some basic background in middle school level. The class give you some basic ideas about C++, very easy.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e6146c" + } + }, + { + "text": "she seems like a nice person, but i cannot understand what she says during lecture.", + "pos": 0.219, + "neu": 0.781, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e6146d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d8cd60fca157e6146f" + }, + "professor_name": "Aydin Saribudak", + "rating": 1.9, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "The worst TA ever. If you find your TA is him, just leave him right away. You will learn nothing from him. He does not care about his students and is really bad to his students. If you want to ask him some questions, he will use academic integrity to put you away. What a joke.", + "pos": 0.091, + "neu": 0.733, + "neg": 0.175, + "_id": { + "$oid": "6711d7d8cd60fca157e61470" + } + }, + { + "text": "He's an OK lecturer. W/o previous programming exp. you may struggle to follow. How to pass: BUY THE BOOK ($20, cheap), do the projects and use the book to help you, make sure you understand the projects COMPLETELY (i.e. not just copy+pasting), WRITE YOUR OWN MAIN files to test AS MANY different scenarios as possible, then repeat until memorized.", + "pos": 0.122, + "neu": 0.843, + "neg": 0.035, + "_id": { + "$oid": "6711d7d8cd60fca157e61471" + } + }, + { + "text": "Terrible attitude, very unhelpful. When asked for help, he thinks we want him to do the work for us. The problem is with the computers and his poor handouts. He doesn't seem to like being here. If that's the case, why are you here and not elsewhere where you might be happier and more productive? Just a question that deserves some critical thought.", + "pos": 0.098, + "neu": 0.726, + "neg": 0.176, + "_id": { + "$oid": "6711d7d8cd60fca157e61472" + } + }, + { + "text": "Here's how to pass this guy. Study the projects and make sure you understand all of the material. Write your own main file to check your code for the secret test. He always adds at least one tricky thing to the test so make sure you know the material from the projects like your life depended on it.", + "pos": 0.117, + "neu": 0.857, + "neg": 0.025, + "_id": { + "$oid": "6711d7d8cd60fca157e61473" + } + }, + { + "text": "I don't know how he got into phD program and qualified to teach classes. It's a miracle that he made it thus far. He has no clue what he is talking about. If you did well on your cs102 or had done a few projects, chances are that you know better programming than this guy. Plus he is mean when you ask questions that he doesn't know.", + "pos": 0.142, + "neu": 0.829, + "neg": 0.029, + "_id": { + "$oid": "6711d7d8cd60fca157e61474" + } + }, + { + "text": "In the beginning of the semester he's really mean but gradually settles into the class as it progresses. The final grade is calculated based on class rank. His lectures are really long and he sometimes doesn't do a good job of explaining the code so you have to figure it out through the textbook. All coding is done in the computer lab.", + "pos": 0.0, + "neu": 0.952, + "neg": 0.048, + "_id": { + "$oid": "6711d7d8cd60fca157e61475" + } + }, + { + "text": "had him as a TA during the summer and talking to him is like your in another planet. you will be all on your own and he is less helpful during exams.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d7d8cd60fca157e61476" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d9cd60fca157e61478" + }, + "professor_name": "Geraldine Murphy", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "Lots of work in class and reading outside class. She is a fair grader, and I overall liked her class.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d7d9cd60fca157e61479" + } + }, + { + "text": "Professor Murphy no doubt will make you work for an A. I never thought I would need a tutor, but she suggested I go to one and I became a much writer because of her tough grading. If you are willing to take criticism and are ready for your writing to improve, take her class. She is very sweet, humorous, and will dedicate time to extra help :)", + "pos": 0.275, + "neu": 0.662, + "neg": 0.063, + "_id": { + "$oid": "6711d7d9cd60fca157e6147a" + } + }, + { + "text": "Great professor. Lots of reading, but generally interesting texts. Class discussions are engaging and you can tell she really enjoys the subject. Had a few papers, but they were graded pretty fairly.", + "pos": 0.405, + "neu": 0.595, + "neg": 0.0, + "_id": { + "$oid": "6711d7d9cd60fca157e6147b" + } + }, + { + "text": "Murphy is a dedicated professor. She wants to cover a lot in class which means she assigns a lot of readings and papers. The pace for the class is very fast. At one point we were reading a book a week. She encourages discussion and enjoys when students express their opinions.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d7d9cd60fca157e6147c" + } + }, + { + "text": "She is highly intelligent and expects the same from her students. She gives clear, helpful feedback on essays and her lectures are enjoyable. Be prepared to read a lot and participate in class. Also, try to do her work early- otherwise it builds up. I liked this class a lot and would definitely take her again for a different course.", + "pos": 0.264, + "neu": 0.736, + "neg": 0.0, + "_id": { + "$oid": "6711d7d9cd60fca157e6147d" + } + }, + { + "text": "She takes points out even if you corrected what she told you to correct.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7d9cd60fca157e6147e" + } + }, + { + "text": "I?ve never seen anyone micromanage a research paper this way. It was insulting. Every grad student is well acquainted with writing research papers. Assigned texts were mostly nonfiction history books. They were boring and some indigestible. She made us write essays before and after each reading assignment. She kept us late nearly every night.", + "pos": 0.036, + "neu": 0.87, + "neg": 0.094, + "_id": { + "$oid": "6711d7d9cd60fca157e6147f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7d9cd60fca157e61481" + }, + "professor_name": "Laurie Paul", + "rating": 2.1, + "department": "Psychology department", + "comments": [ + { + "text": "Do not recommend this TA. She was late for a good amount of recitations, very monotone, her lectures are her reading off slides the whole time, and a crazy tough grader.", + "pos": 0.081, + "neu": 0.752, + "neg": 0.167, + "_id": { + "$oid": "6711d7d9cd60fca157e61482" + } + }, + { + "text": "(COVID) Changed the weight on the grades at the last minute. Doesn't communicate well and doesn't answer emails (even during online tests when there is an error preventing you from answering a question).Seemed chill but was in a rush to get this semester over with and we got the short end of the stick. UNPROFESSIONAL. She acts it on emails but nope", + "pos": 0.0, + "neu": 0.855, + "neg": 0.145, + "_id": { + "$oid": "6711d7d9cd60fca157e61483" + } + }, + { + "text": "Where do I start? Heavy exams, group based projects which in most cases fail. She doesn't reply to emails. She's not good at explaining the requirements, she changes her mind a lot on assignments. Midterm and final but a group project. She's discussion based so the group you'll have you will do articles and come up with questions. Attendance!!", + "pos": 0.0, + "neu": 0.924, + "neg": 0.076, + "_id": { + "$oid": "6711d7d9cd60fca157e61484" + } + }, + { + "text": "Extra credit is heavy. Exams cover a wide range of material. The textbook is absolutely necessary to comprehend the material and get an A. Much effort is required in this course. She is nice but not good in teacher because she is a student herself and has grad work. Overall take this class with a structured study plan or you won't get an A.", + "pos": 0.055, + "neu": 0.9, + "neg": 0.046, + "_id": { + "$oid": "6711d7d9cd60fca157e61485" + } + }, + { + "text": "Her teaching definitely needs improvement. Her lectures are just her reading off the slides. Homework includes reading the textbook and answering questions on Cengage. She had weekly quizzes that we had to remember specific details for, from her powerpoints. 2 exams that are also okay and 1 final paper due at the end of the semester.", + "pos": 0.125, + "neu": 0.875, + "neg": 0.0, + "_id": { + "$oid": "6711d7d9cd60fca157e61486" + } + }, + { + "text": "She is a really chill teacher and is very passionate about her profession. You will need to work hard meaning reading the chapter assigned for class as well as take notes which will be useful. Participation is also good for your grades as well as being into the subject.", + "pos": 0.236, + "neu": 0.74, + "neg": 0.024, + "_id": { + "$oid": "6711d7d9cd60fca157e61487" + } + }, + { + "text": "The absolute worst. Her teaching needs improvement. I'd rather stick to Sophia who actually gets you interested in the class & makes you laugh. Meanwhile, Laurie just makes them boring and unbearable. Her grading is atrocious, sometimes she'll mess up the grading which is annoying. Her lectures are just reading from the slide. Advice: just don't.", + "pos": 0.133, + "neu": 0.701, + "neg": 0.166, + "_id": { + "$oid": "6711d7d9cd60fca157e61488" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dacd60fca157e6148a" + }, + "professor_name": "Asale Angel-Ajani", + "rating": 4.6, + "department": "Women's Studies department", + "comments": [ + { + "text": "This was my winter class. Easiest class I've ever taken. I learnt a lot more about feminism and its role in society through this class. She's also a very sweet woman! I enjoyed it, and I liked the weekly readings/assignments we got. Easy A class.", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e6148b" + } + }, + { + "text": "This class is a very easy A. All you have to do in her WS 100 class is to submit discussion post questions and submit a total of 3 papers. It's really easy. Take her course if you want an easy GPA booster and to learn valuable information about feminism and women as a whole.", + "pos": 0.215, + "neu": 0.785, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e6148c" + } + }, + { + "text": "Dr. Ajani really surprised me. First, I havent had a professor of color before EVER at CCNY. She was serious, smart, and passionate. I took the class for a requirement but I learned so much about myself and society. Dr. Ajani talked to all of us, encouraged us and was available after class and in office hours. Take her classes! Shes great!", + "pos": 0.209, + "neu": 0.775, + "neg": 0.016, + "_id": { + "$oid": "6711d7dacd60fca157e6148d" + } + }, + { + "text": "She is amazing! Although the readings may be long, they're very interesting. She is straightforward about what she wants from you. At the same time, if you need any help with anything she will provide it. She cares a lot about her students.", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e6148e" + } + }, + { + "text": "This Professor is a great person but the grading doesn't make much sense. You can receive A's on everything in the class, participate daily, but still get a B as your final grade. Blackboard is never utilized. You might have to be a previous student to get brownie points or be a full-on teachers pet for an A.", + "pos": 0.043, + "neu": 0.957, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e6148f" + } + }, + { + "text": "Totally agree with the other comment posted. Words cannot describe how amazing Asale is. Class discussions are unlike any that I experienced before. Topics are thought-provoking, everyone is so engaged, and Asale is able to facilitate our conversations in meaningful ways. PLEASE take at least one of Asale's classes before you graduate.", + "pos": 0.188, + "neu": 0.762, + "neg": 0.05, + "_id": { + "$oid": "6711d7dacd60fca157e61490" + } + }, + { + "text": "There is nothing that can be put into a review that would do Dr. Angel-Ajani justice. Hands down the most intelligent, driven, caring, brilliant professor you will ever come across. Always willing to go above and beyond for her students. If you are lucky enough to have the opportunity to take any one of her classes, don't pass it up.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e61491" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dacd60fca157e61493" + }, + "professor_name": "Ming Chen", + "rating": 4.4, + "department": "Psychology department", + "comments": [ + { + "text": "She is very nice and understanding, quizzes are easy every week, and you can use the slides she gives for the answers.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e61494" + } + }, + { + "text": "I took Professor Ming in the Summer of 2022; I have to tell you Professor Ming is AWESOME! I took her for PSY 311, you get weekly quizzes total of 4 quizzes, 2 discussion board responses, a course paper, Final, tons of extra credit opportunities, Easy A", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e61495" + } + }, + { + "text": "Ming is a wonderful professor! She is really considerate of her students and gives plenty of opportunities to pass the class. There are weekly/biweekly quizzes, 2 simple discussion posts, paper, midterm, and final. Her quizzes and tests are straightforward. Attendance matters. Lectures can get boring at times but she engages the class really well.", + "pos": 0.213, + "neu": 0.76, + "neg": 0.027, + "_id": { + "$oid": "6711d7dacd60fca157e61496" + } + }, + { + "text": "She is a nice person. She would share her experience teaching psychology which is a very refreshing style of teaching. You don't have to read book, all the quiz and exams are multiple choices which will be from the slides that she shares. It could get boring sometimes but it is a very easy class. There are extra credit opportunities. light grading", + "pos": 0.222, + "neu": 0.755, + "neg": 0.023, + "_id": { + "$oid": "6711d7dacd60fca157e61497" + } + }, + { + "text": "Professor Chen is very nice and understanding. She takes attendance, lectures are very information heavy so be sure to pay attention and take notes. She writes her own exams so they can be a little challenging but its nothing some studying won't fix. She allows extra credit and there's only 3 \"major\" assignments to get done. Random but easy quizzes", + "pos": 0.181, + "neu": 0.801, + "neg": 0.018, + "_id": { + "$oid": "6711d7dacd60fca157e61498" + } + }, + { + "text": "Ming is the Best!!!! Please take her and she is very down to earth and is very understandable. Plus she emails back very fast and knows what she is doing. Just be aware with attendance. Thats all I can say. Plus she is the best grader.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e61499" + } + }, + { + "text": "Ming is a very nice TA. She has an accent but is very understandable. She used to take attendance during lecture. Ming was especially hardworking when classes moved online. Really communicative and tries to relate to her students. She was a bit too strict with grading by taking off points for little things but was overall a good TA.", + "pos": 0.094, + "neu": 0.906, + "neg": 0.0, + "_id": { + "$oid": "6711d7dacd60fca157e6149a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dbcd60fca157e6149c" + }, + "professor_name": "Israel Porat", + "rating": 3.9, + "department": "History department", + "comments": [ + { + "text": "This Guy is an absolute gem!! He is very thorough and a caring man and values his student's progress. This is an easy class. The course consists of 3 papers. 2 assignments and one final paper. Make sure to participate, come on time, and do the assignments. Also, He is a grammarian/editor, so make sure your punctuation and grammar are immaculate.", + "pos": 0.237, + "neu": 0.763, + "neg": 0.0, + "_id": { + "$oid": "6711d7dbcd60fca157e6149d" + } + }, + { + "text": "He was a fantastic professor and the lessons were engaging. Homework is usually only reading, but you are graded on 2 assignments and 1 take-home final later on in the semester. (Make sure your grammar and punctuation are correct). The class was not super hard but make sure to show up on time, listen to the lectures, and participate if you can.", + "pos": 0.143, + "neu": 0.797, + "neg": 0.06, + "_id": { + "$oid": "6711d7dbcd60fca157e6149e" + } + }, + { + "text": "Prof. Porat is amazing. He really makes sure to answer every single student's questions and makes sure to engage the class in the lecture. This is a really EASY class to pass if you just show up and listen to what he is saying. Only 3 homework essay's and no final required. Super easy and straightforward Prof, take him if you can.", + "pos": 0.28, + "neu": 0.692, + "neg": 0.028, + "_id": { + "$oid": "6711d7dbcd60fca157e6149f" + } + }, + { + "text": "I genuinely liked this professor and expected an A, but was given a lower grade. When I reached out to him, he said that it was because of my attendance, despite earning a high grade on each essay. It is quite ridiculous how seriously professors take attendance but if youre late or absent to his class then you wont pass.", + "pos": 0.052, + "neu": 0.816, + "neg": 0.132, + "_id": { + "$oid": "6711d7dbcd60fca157e614a0" + } + }, + { + "text": "This professor is really good! His lectures weren't that heavy so they didn't drag. gave us 3 papers in total and was a good grader and gives good feedback. Only thing I didn't like was the lectures we were supposed to watch outside of class. Didn't see the point and the information in the lectures were not applied to the class at all.", + "pos": 0.157, + "neu": 0.813, + "neg": 0.03, + "_id": { + "$oid": "6711d7dbcd60fca157e614a1" + } + }, + { + "text": "Professor Porat is a kind teacher, we only had 4 essays to do, I struggled a bit with reading the history texts we were given to do the essays. But during class he goes over them and basically give us answers. I still struggled cause I hate history, but overall hes an okay professor, just be prepared to write 4 essays with each one adding a page.", + "pos": 0.089, + "neu": 0.785, + "neg": 0.127, + "_id": { + "$oid": "6711d7dbcd60fca157e614a2" + } + }, + { + "text": "Our session was online. You're only graded on four things: 3 papers and joining the zoom call. He assigns a lot of readings. The papers are based on the readings, and he allows rewrites. He allows early drafts and gives good feedback. Participation matters. Bit boring, but not too bad. Overall, good guy. I'd recommend.", + "pos": 0.215, + "neu": 0.759, + "neg": 0.026, + "_id": { + "$oid": "6711d7dbcd60fca157e614a3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dbcd60fca157e614a5" + }, + "professor_name": "Ronak Etemadpour", + "rating": 2.6, + "department": "Computer Science department", + "comments": [ + { + "text": "She is the worst teacher I have seen in my life.", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d7dbcd60fca157e614a6" + } + }, + { + "text": "(Fall 2020 Semester) Professor records a lecture and uploads on Blackboard weekly. There are lots of static and background noises in the audio. The video consists of the Professor reading the PowerPoint slides and not much explaining is done. Weekly work consists of a small assignment and a small task for class participation.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7dbcd60fca157e614a7" + } + }, + { + "text": "A tough class. I got a good grade at the end!", + "pos": 0.233, + "neu": 0.657, + "neg": 0.11, + "_id": { + "$oid": "6711d7dbcd60fca157e614a8" + } + }, + { + "text": "Stay away if you can. She gives a lot of info in powerpoint but doesn't reinforce the material with useful assignments. No review for midterm/final, which is frustrating because her tests don't reflect what you've worked on in class/hw. This class could benefit from a proper text book and weekly programming assignments that reflect the lectures.", + "pos": 0.118, + "neu": 0.782, + "neg": 0.1, + "_id": { + "$oid": "6711d7dbcd60fca157e614a9" + } + }, + { + "text": "If you want to learn data science, I would not recommend her.", + "pos": 0.097, + "neu": 0.746, + "neg": 0.157, + "_id": { + "$oid": "6711d7dbcd60fca157e614aa" + } + }, + { + "text": "The lectures in general are difficult but she gave lots of examples and extra books and resources for better clarification. She is helpful in general. The class needs more preparation. The exams are not difficult though there are many assignments. I liked the class and learned a lot", + "pos": 0.237, + "neu": 0.733, + "neg": 0.03, + "_id": { + "$oid": "6711d7dbcd60fca157e614ab" + } + }, + { + "text": "The lectures are not quiet clear. Class lectures are based on mostly powerpoint presentation which are not that helpful to understand course materials. She does not prepare students well for the exam. You would have to self teach most of the stuffs.", + "pos": 0.0, + "neu": 0.86, + "neg": 0.14, + "_id": { + "$oid": "6711d7dbcd60fca157e614ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dbcd60fca157e614ae" + }, + "professor_name": "Robert Diamond", + "rating": 4.4, + "department": "Art department", + "comments": [ + { + "text": "I was excited to take this professor based on his reviews but I found him unbearable. His prompts were unclear and often he could not explain his points concisely. Professor Diamond was the most arrogant, pretentious, and condescending professor I have ever had. Professor Diamond is also the most hostile to feedback I have ever encountered.", + "pos": 0.115, + "neu": 0.725, + "neg": 0.161, + "_id": { + "$oid": "6711d7dbcd60fca157e614af" + } + }, + { + "text": "Amazing Professor with great presentations and interesting lectures. I am extremely happy that I have taken two of his classes. Participation was mandatory to receive a good grade, but it was very easy to start speaking because the class atmosphere is welcoming and inspiring. I learned a lot from his classes.", + "pos": 0.366, + "neu": 0.634, + "neg": 0.0, + "_id": { + "$oid": "6711d7dbcd60fca157e614b0" + } + }, + { + "text": "Professor Diamond is, without a doubt, my favorite professor at CCNY so far. He is someone who has such a passion for art history and is very knowledgable about his topics. His online class was all lectures but he makes them very interesting and inclusive. He really appreciates when you participate in class discussions. 100% RECOMMEND!", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d7dbcd60fca157e614b1" + } + }, + { + "text": "Professor Diamond, is an amazing professor. Not too tough on the grading at all, However make sure to pay attention in class and focus because many things come up during quizzes from the lectures. He's great and always happy to help you if you have any questions. Highly recommended.", + "pos": 0.352, + "neu": 0.626, + "neg": 0.022, + "_id": { + "$oid": "6711d7dbcd60fca157e614b2" + } + }, + { + "text": "He is a very easy professor if you pay attention in class. The quizzes are straightforward and the videos provided makes it easy. Writing down notes about the art pieces he talks about will be helpful with the final and exam.", + "pos": 0.188, + "neu": 0.782, + "neg": 0.03, + "_id": { + "$oid": "6711d7dbcd60fca157e614b3" + } + }, + { + "text": "Wow! Don't miss this professor! He is incredibly knowledgeable about every course he teaches and you can tell he is very passionate about his job and his craft. Prof. Diamond is also a trained artist so he has a great perspective when it comes to art history. There is weekly homework about the lecture but it is not bad at all. A total gem at City!!", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d7dbcd60fca157e614b4" + } + }, + { + "text": "He is one of my Top3 Favorite professors. lecture is very fun, he has very nice personality, he is easy going and friendly. He showed class his art works. It is very inspiring. He is a talented Artist and great professor.", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d7dbcd60fca157e614b5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dccd60fca157e614b7" + }, + "professor_name": "Andrew Ciprian", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Andrew is one of my favorite TA's that I'd have so far. Although he stutters and may not act too confident in what he's doing from the looks of it, he is an exceptional TA. He makes sure he puts himself in our shoes as undergraduate students, understanding our needs and being reasonable with what's expected of us. Take him you won't regret!", + "pos": 0.112, + "neu": 0.822, + "neg": 0.066, + "_id": { + "$oid": "6711d7dccd60fca157e614b8" + } + }, + { + "text": "A goated TA that response quick with emails. He also creates answer keys for each chapter review so it helps with our studying . If you have him you are in good hands!!!", + "pos": 0.226, + "neu": 0.774, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614b9" + } + }, + { + "text": "He was super strict on attendance but the kindest most dedicated ta ever. He is very understanding and always willing to help", + "pos": 0.355, + "neu": 0.645, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614ba" + } + }, + { + "text": "I would 100% recommend Andrew because he makes it easier for students to understand the topic by providing them with worksheets that he goes over in class.", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614bb" + } + }, + { + "text": "Andrew was my recitation leader this semester, it was his first time being a recitation leader but he always tried his best to help us. Responsive and easy to reach outside of class, I hope he does Chem 104 next semester.", + "pos": 0.38, + "neu": 0.62, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614bc" + } + }, + { + "text": "Cool TA.", + "pos": 0.697, + "neu": 0.303, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614bd" + } + }, + { + "text": "Amazing professor, first time you have him you may be questioning stuff but a week later youll come to love him. He is very knowledgeable in his field, hes very understanding and caring. Takes things slow, just ask him questions and make sure you go to his classes and youll will definitely pass with a high grade!", + "pos": 0.274, + "neu": 0.709, + "neg": 0.017, + "_id": { + "$oid": "6711d7dccd60fca157e614be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dccd60fca157e614c0" + }, + "professor_name": "Nathan Sensel", + "rating": 4.6, + "department": "Art department", + "comments": [ + { + "text": "Professor Sensel is an amazing professor. I took him for Illustration I and II. He's on point with his lectures. I wish CCNY had Illustration III, I would've taken him again. He's caring, funny, and down to earth with everything with schoolwork. Very understandable, sweet guy. Even outside of school. The best professor in CCNY, take him!!!!", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614c1" + } + }, + { + "text": "I took Illustration I and Illustration II with him, he is extremely caring, and patient, and he will answer all your questions. This class has a lot of assignments but precisely that is the reason why I found it the most useful in terms of learning the Adobe Cloud. He always listens to student suggestions, I definitely recommend his class.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614c2" + } + }, + { + "text": "Super nice professor, nice personality and his class is fun and easy. I don't remember my course code, it was Illustration I", + "pos": 0.48, + "neu": 0.52, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614c3" + } + }, + { + "text": "Totally enjoyed this class. I learned a lot and developed myself in terms of illustrating things. Along with formulating ideas that when put on paper came out solid. I defiantly recommend this class for anyone who needs to take illustration 1. You will enjoy yourself. He's super caring and understanding. This will be your escape from everything.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614c4" + } + }, + { + "text": "All of the work completed throughout the semester was worth way more than the grade received at the end. Will punish you for late assignments but ironically, he can never upload assignments on to black board in a timely fashion. Some assignments were uploaded weeks after they were due.", + "pos": 0.029, + "neu": 0.928, + "neg": 0.043, + "_id": { + "$oid": "6711d7dccd60fca157e614c5" + } + }, + { + "text": "It was the first time he has taught this class. I felt like Nate gets really close with his students and helps them understand the concept of teaching in Art Museum setting. If you do the readings and participate, you will fully understand the lessons he gives as a whole! He really does make this class super fun.", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614c6" + } + }, + { + "text": "Very engaging and willing to help his students.", + "pos": 0.473, + "neu": 0.527, + "neg": 0.0, + "_id": { + "$oid": "6711d7dccd60fca157e614c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ddcd60fca157e614c9" + }, + "professor_name": "Meg Wise-Lawrence", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "I had an online/in-person class, so I never really met her, but her lectures are okay, she just uploaded videos, so you could watch them anytime, I ended up not needing them at all, so i can't say it was helpful.", + "pos": 0.134, + "neu": 0.866, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614ca" + } + }, + { + "text": "Really nice professor! Gave feedback and was very understanding. \n\nMedium workload, don't procrastinate.\n\nThroughout the semester it feels like a lot of work but trust me, it'll be worth it for the final essay.\n\nIt was nice breaking down the musical West Side Story!", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614cb" + } + }, + { + "text": "She was very helpful, high spirited, kind and understanding as well. She is open to anyone needing help and guiding them as long as u let her know that you need it.", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614cc" + } + }, + { + "text": "She's such a sweet professor! There is a weekly discussion question on blackboard. She's very lenient about due dates for both discussion questions and papers. There are a lot of academic readings. There were 3 weighted papers, which she explained clearly. She allows rewrites. Very understanding!. I'd recommend, 100%!", + "pos": 0.207, + "neu": 0.793, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614cd" + } + }, + { + "text": "Not going to lie, this class may be quite boring (as I've slept throughout both writing and topic classes with Dr. Robb) and be warned that there's a lot of homework and academic sources to read, so it's best not to procrastinate till the last minute! Despite that, their leniency and humbleness makes up for it! You'll definitely enjoy the musicals.", + "pos": 0.153, + "neu": 0.782, + "neg": 0.065, + "_id": { + "$oid": "6711d7ddcd60fca157e614ce" + } + }, + { + "text": "She is nice and understanding but don't take advantage of her. Sometimes we would have workshops where she gave us time to work on our American Music Theatre essays. USE THAT TIME- GO TO CLASS. Not much is given throughout the semester (4 essays no tests) but like its a lot. Blackboard Discussion Boards is used weekly. Buy the ebook no hardcopy!!!", + "pos": 0.073, + "neu": 0.806, + "neg": 0.121, + "_id": { + "$oid": "6711d7ddcd60fca157e614cf" + } + }, + { + "text": "Kinda Boring, sounds like Marge Simpson. Cares but gets off topic from time to time and does not really tell you what she wants. Dances around the assignments", + "pos": 0.12, + "neu": 0.83, + "neg": 0.05, + "_id": { + "$oid": "6711d7ddcd60fca157e614d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ddcd60fca157e614d2" + }, + "professor_name": "Rosario Gennaro", + "rating": 4, + "department": "Computer Science department", + "comments": [ + { + "text": "MIT grad, his lectures are truly amazing, I was looking forward to each one. He is very fair, if you try hard- he will value your effort. Not a trivial hw, you will be challenged thus will learn a lot. Sit back and enjoy, his class is worth a million bucks! Attend office hours and ask questions. I got to love data structures because of his class.", + "pos": 0.272, + "neu": 0.694, + "neg": 0.034, + "_id": { + "$oid": "6711d7ddcd60fca157e614d3" + } + }, + { + "text": "He gives homework every week that are very tricky/hard. However, if you understand how to do the homework and really know the concepts between every problem, then the exams/final \"should\" be easy (the exams/final are easier then the homework). However, note that a lot of students did not do well in the final for some reason.", + "pos": 0.092, + "neu": 0.836, + "neg": 0.073, + "_id": { + "$oid": "6711d7ddcd60fca157e614d4" + } + }, + { + "text": "One of the best professors in the CS department. His lectures are pretty conceptual. Hws are very conceptual and tough, but if you go to office hours, he'll help you out as much as he can and pretty much work you through it. Exams are really easy compared to hws and he is really lenient in his grading. Definitely take him if you want learn.", + "pos": 0.303, + "neu": 0.68, + "neg": 0.017, + "_id": { + "$oid": "6711d7ddcd60fca157e614d5" + } + }, + { + "text": "The best CS professor I've had at CCNY by far. He's an MIT grad; lectures are very clear and you will learn most of the material in class (very little self study unlike most CCNY cs classes). He gives Homework every week and they are very difficult and you will need a lot of online help for those but exams are very fair (easy compared to hw).", + "pos": 0.183, + "neu": 0.793, + "neg": 0.025, + "_id": { + "$oid": "6711d7ddcd60fca157e614d6" + } + }, + { + "text": "Great Professor. He teaches in detail. He is always wiling to go back and explain. He is always available to help outside of office hours. Must do well on the midterm and final. He curves generously.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614d7" + } + }, + { + "text": "Exams are tough, he also is tough grader, not many partial credits provide. Leave him alone!", + "pos": 0.0, + "neu": 0.561, + "neg": 0.439, + "_id": { + "$oid": "6711d7ddcd60fca157e614d8" + } + }, + { + "text": "Algorithms is one of the toughest course that i ever took but the professor made it Manageable .He explains every concept deep from roots. Homeworks are tough and expect them every week but the tests are easy. you can crack them if you are paying attention to his classes. Grading standards are good and i would be more than happy to take him again.", + "pos": 0.175, + "neu": 0.786, + "neg": 0.039, + "_id": { + "$oid": "6711d7ddcd60fca157e614d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ddcd60fca157e614db" + }, + "professor_name": "Magdalena Andrzejewska", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "One of the best TA's at CCNY! Very clear with her guidelines on lab reports, very responsive to questions during experiments or over email, and really wants her students to do well. She went out of her way to offer advice on what to expect on the final. Also, she's really easy to have a conversation with!", + "pos": 0.233, + "neu": 0.767, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614dc" + } + }, + { + "text": "She is amazing! I loved her course, it was clear, precise, and wonderful to be in. She made it easy to earn your grade and you definitely left learning more about orgo by the end. Cannot recommend her enough!", + "pos": 0.372, + "neu": 0.589, + "neg": 0.039, + "_id": { + "$oid": "6711d7ddcd60fca157e614dd" + } + }, + { + "text": "She is an amazing TA and I honesty wished she was the lecturer for the class as well! She tell you what she wants in the lab report and if you follow it, its an easy A on the reports. She also gave practice problems for the mid term and final. She always asked us questions and explain critical areas to make sure we understood the lab and lecture.", + "pos": 0.179, + "neu": 0.76, + "neg": 0.061, + "_id": { + "$oid": "6711d7ddcd60fca157e614de" + } + }, + { + "text": "She was honestly amazing. I took her for Spring 2016 Orgo 1 lab, and she was one of the best TAs I have ever come across. If you have the option of taking her, DO IT! If not, move your schedule around so you can get her. She tells you exactly what she wants in the lab write up and is an easy grader. My lab partner and I were always late though...", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614df" + } + }, + { + "text": "Search no further... She is the best LAB TA.. 60% of your class grade comes from her. She guides you so that you don't screw yourself up. She is patient, super super helpful. Her instructions are very clear. You won't even need a lab book if you listen to her. Magda. You're the BEST !!!!!!!!!", + "pos": 0.338, + "neu": 0.633, + "neg": 0.03, + "_id": { + "$oid": "6711d7ddcd60fca157e614e0" + } + }, + { + "text": "She is definitely the best TA ever. May God bless her. Take her. She goes out of her way to help you. She cares about her students, she makes review sheets and does review session, she wants everyone to get As, and tries her best to make that happen.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614e1" + } + }, + { + "text": "Great organic chem lab TA!", + "pos": 0.523, + "neu": 0.477, + "neg": 0.0, + "_id": { + "$oid": "6711d7ddcd60fca157e614e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7decd60fca157e614e4" + }, + "professor_name": "Evan Friss", + "rating": 4.8, + "department": "History department", + "comments": [ + { + "text": "I admit I had little love for this class because of the subject matter and it's timing, but the professor was surprisingly lenient on me. I got an A despite never reading the text, and not completing all the questions on the final. He must have liked my writing because I got good grades on my papers. Good class I guess but wouldn't do it again.", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614e5" + } + }, + { + "text": "AWESOME PROFESSOR. HIGHLY RECOMMENDED. KNOWS HOW TO KEEP THE CLASS INTERESTED AND IS FUNNY. VERY UNDERSTANDING IN TERMS OF PERSONALITY. JUST DO THE READINGS AND THE TERMS PAPERS AND YOU WILL BE FINE.", + "pos": 0.327, + "neu": 0.673, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614e6" + } + }, + { + "text": "He's one of the best professor i've ever had.You're learn so much about US history and if you do the work,you\"ll get a good grade.The very best,you should rush to take his class!", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614e7" + } + }, + { + "text": "If you enjoy Ross from Friends, you'll enjoy this professor. He is a nice, easy going person. You must do the readings to enoy the class, pass the final, and pass quizzes. I recommend him.", + "pos": 0.379, + "neu": 0.621, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614e8" + } + }, + { + "text": "Very knowledgeable. I tend to not be interested in US history but he makes it quite interesting. Very laid back and easy going: creates a pleasant classroom atmosphere. 3 Papers. Random quizzes. And a final. Make sure to do the reading and you will do fine.", + "pos": 0.331, + "neu": 0.642, + "neg": 0.027, + "_id": { + "$oid": "6711d7decd60fca157e614e9" + } + }, + { + "text": "easy goin....", + "pos": 0.744, + "neu": 0.256, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7decd60fca157e614ec" + }, + "professor_name": "Lindsay Fleishman", + "rating": 3.7, + "department": "Psychology department", + "comments": [ + { + "text": "She is a great teacher for experimental psych and made the class a fun and learning class to go to.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614ed" + } + }, + { + "text": "She is a great teacher for experimental psych and really made the class a fun and learning class to come to.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614ee" + } + }, + { + "text": "Amazing teacher", + "pos": 0.792, + "neu": 0.208, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614ef" + } + }, + { + "text": "Favorite teacher @ City College", + "pos": 0.429, + "neu": 0.571, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614f0" + } + }, + { + "text": "Don't waste your time.", + "pos": 0.437, + "neu": 0.563, + "neg": 0.0, + "_id": { + "$oid": "6711d7decd60fca157e614f1" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7decd60fca157e614f2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dfcd60fca157e614f4" + }, + "professor_name": "A Teutschel", + "rating": 3.2, + "department": "Speech department", + "comments": [ + { + "text": "Not professional, Noisy, harsh grader, not motivational. Take another prof.", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e614f5" + } + }, + { + "text": "Such a hard grader. AVOID!!!", + "pos": 0.0, + "neu": 0.365, + "neg": 0.635, + "_id": { + "$oid": "6711d7dfcd60fca157e614f6" + } + }, + { + "text": "She is nice but theres something about her teaching methods that makes me dislike her. even though youre suppose to give feedback she did in a way that made people not want to participate. this is suppose to be an easy gpa booster. shes goes too hard on this course. take another prof", + "pos": 0.096, + "neu": 0.799, + "neg": 0.105, + "_id": { + "$oid": "6711d7dfcd60fca157e614f7" + } + }, + { + "text": "She is a really good professor. I really hate talking in front of people , but she creates a very warm environment. Just give your speeches , and do your work and you will be fine. I would totally recommend taking her.", + "pos": 0.259, + "neu": 0.693, + "neg": 0.048, + "_id": { + "$oid": "6711d7dfcd60fca157e614f8" + } + }, + { + "text": "Expectations are very clear. Follows the syllabus. Very helpful and fair grader. Great professor. I would suggest taking her.", + "pos": 0.457, + "neu": 0.543, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e614f9" + } + }, + { + "text": "Nice Professor. Do all her work and come on time and this class will be easy. Uses the book for homework reading and few times for class work. Is an easy grader. Most of class time spent on classmates performing speeches.", + "pos": 0.185, + "neu": 0.815, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e614fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dfcd60fca157e614fc" + }, + "professor_name": "Dimitrios Giannakoudakis", + "rating": 4.3, + "department": "Chemistry department", + "comments": [ + { + "text": "He is a good & fair professor. He also curves on the tests, especially if most of the class got a question wrong, but expect it to be repeated. Always study from the slides, all recitation problems, all recommended homework and some of the book. It also help to watch videos on YouTube if youre still confused. Practice a lot and dont be lazy", + "pos": 0.157, + "neu": 0.731, + "neg": 0.112, + "_id": { + "$oid": "6711d7dfcd60fca157e614fd" + } + }, + { + "text": "He thinks he funny but he not .. but he is not bad just sit in the front cause he don't have a mike and it's hard to hear him in the lecture hall. I took the summer session so Idk if it's different but he gives way too many tests but he curves and is pretty generous if you only care about the grades.", + "pos": 0.233, + "neu": 0.719, + "neg": 0.048, + "_id": { + "$oid": "6711d7dfcd60fca157e614fe" + } + }, + { + "text": "Be well prepared before start the lab. He asking to bring a safety lab sheet at the beginning of the lab.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e614ff" + } + }, + { + "text": "Just take the lab with him!!! He is very helpful and try to learn you how to find the solutions on your own. If you spent some time at home and give attention in the class you will have no problem!", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e61500" + } + }, + { + "text": "He want from you to understand that you will do before start you lab experiment. He is unswearing only to questions which are meaningful. You must know to use the word and excel very good! He grade also the form of the lab reports! He is responding and trying to help! You will learn a lot at his lab...", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e61501" + } + }, + { + "text": "Very helpful guy. He cares in lab to make us learn what we are doing and not just \"cook\" following the book. He is replying very fast to the emails. Take the lab with him!!!", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e61502" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7dfcd60fca157e61504" + }, + "professor_name": "Shiyo Kaku", + "rating": 4.8, + "department": "Japanese department", + "comments": [ + { + "text": "You get vocabulary quizzes and tests at least once a week, but every language class has that. Kaku sensei is a great teacher that wants everyone to learn and will notice and try to help if she sees that you're having trouble with the material. All of her lessons will be posted online and she makes everyone participate. Attendance super important.", + "pos": 0.22, + "neu": 0.734, + "neg": 0.047, + "_id": { + "$oid": "6711d7dfcd60fca157e61505" + } + }, + { + "text": "She is a fantastic professor! She is very fun and energetic. She is very helpful and available outside of the classroom. The work starts off pretty easy but gets hard fast, so you MUST attend every class and do all of the hw. She gives detailed review sheets before exams so if you study the review sheet you should do fine on the exams.", + "pos": 0.21, + "neu": 0.769, + "neg": 0.022, + "_id": { + "$oid": "6711d7dfcd60fca157e61506" + } + }, + { + "text": "I love her! She is super nice & fun. I always looked forward to going to her class. Our final project was a skit that we had to create & act out & it was awesome. Her exams are extremely fair & she gives review sheets prior to them. I highly recommend her.", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e61507" + } + }, + { + "text": "Second semester: I totally love her class!! She is super nice and is always willing to listen to questions. If you want to know how to say something in Japanese, she will tell you. She uses powerpoint slides and gives a review sheet for exams. Most of the class is a class activity, usually after a short lesson. If you dont study, you wont do well.", + "pos": 0.172, + "neu": 0.804, + "neg": 0.024, + "_id": { + "$oid": "6711d7dfcd60fca157e61508" + } + }, + { + "text": "Love her she soo Friendly and really gets out of her way to help students during her office hours.She's a really a good Japanese professor although there is soo much she can do is a Japanese class so is hard.I really recommend her if you plan on taking Japanese :)", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e61509" + } + }, + { + "text": "Good, thorough happy teacher. Later on in the course the study gets more intensive so, if you paid attention at the beginning you should do fine. She also does powerpoints so you can use those to study.", + "pos": 0.198, + "neu": 0.802, + "neg": 0.0, + "_id": { + "$oid": "6711d7dfcd60fca157e6150a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e0cd60fca157e6150c" + }, + "professor_name": "Calvert Jones", + "rating": 4.6, + "department": "Political Science department", + "comments": [ + { + "text": "I didn't find the course that interesting but it was an easy class. Everything was very clear and the tests were fair. Attendance is a must. Would recommend.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e6150d" + } + }, + { + "text": "I absolutely loved her and the class. She explains everything very clearly and gives you a lot of time to copy notes. The readings she gives are extremely interesting and she goes over them in class. She is extremely intelligent and relates the subject to students by including current examples and pop culture references. She is AMAZING.", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e6150e" + } + }, + { + "text": "Easy lecture class. Attendance not taken ever. Three easy tests of multiple choice and a cumulative final. Homework reading material is summarized in class, expanded and explained in lecture. Does not send slides but gives ample time to copy information. Textbook helpful but not necessary.", + "pos": 0.153, + "neu": 0.847, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e6150f" + } + }, + { + "text": "Lots of reading, test straight from the lectures, so I don't recommend missing class. Lectures are fun and interesting. Short answer quizzes, pretty simple if you go to all the lectures and read your assignments.", + "pos": 0.293, + "neu": 0.654, + "neg": 0.054, + "_id": { + "$oid": "6711d7e0cd60fca157e61510" + } + }, + { + "text": "Professor Jones is a great professor, but I realized that her 20 page nightly readings actually aren't necessary to do, because she goes over the important stuff in class. She uses pop culture to give examples. Your grade only comes from 3 (20% each) quizzes and the final (40%). Willing to help you understand anything you need. Great class!", + "pos": 0.206, + "neu": 0.794, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e61511" + } + }, + { + "text": "She's a genius of world politics. If you're at all into politics or international relations, you will thoroughly enjoy this class. 3 quizzes and a final. She will put questions on the tests that she doesn't fully cover in class so you really should read to get an A, but it's generally an easy class.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e61512" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e0cd60fca157e61514" + }, + "professor_name": "Lance Brown", + "rating": 4.6, + "department": "Architecture department", + "comments": [ + { + "text": "This gentleman is a the embodiment of the architect. Extremely knowledgeable, passionate, involved, approachable, and professional in all he does. I am in awe after just one class and would definitely take him for any other class.", + "pos": 0.154, + "neu": 0.846, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e61515" + } + }, + { + "text": "He is an excellent professor and I really enjoyed his class", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e61516" + } + }, + { + "text": "GREAT PROFESSOR. LOVES TO TALK BUT ALWAYS INTERESTING. THE KIND OF PROF. YOU WANT TO STAY FRIENDS WITH AFTER GRADUATION. THE GOD FATHER OF ARCHITECTURE", + "pos": 0.468, + "neu": 0.532, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e61517" + } + }, + { + "text": "very intelligent man, knows a whole lot about everything!! ask him anything about new york and youll get the best answer, garanteed", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d7e0cd60fca157e61518" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7e0cd60fca157e61519" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7e0cd60fca157e6151a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e0cd60fca157e6151c" + }, + "professor_name": "Sarah Town", + "rating": 2.6, + "department": "Music department", + "comments": [ + { + "text": "No real complaints. There IS a lot of writing involved but its doable. She is accessible by email if you ever have questions and accessibility is a big plus for me. Had her for 101 and 102.", + "pos": 0.043, + "neu": 0.916, + "neg": 0.042, + "_id": { + "$oid": "6711d7e0cd60fca157e6151d" + } + }, + { + "text": "DO NOT TAKE HER! Her music class is like an essay class, she takes off points for little errors in your essay. Eventho her quizzes are really easy, you have to read almost the whole book to pass the midterm & Final. This was the worst class I took so far in College. BORING. TOO much reading. Alot of Memorization and Essays. Hard Grader!", + "pos": 0.076, + "neu": 0.774, + "neg": 0.15, + "_id": { + "$oid": "6711d7e0cd60fca157e6151e" + } + }, + { + "text": "Her class is not so interesting and related to music actually. but she is a nice teacher and gives you a fair grade.", + "pos": 0.233, + "neu": 0.7, + "neg": 0.067, + "_id": { + "$oid": "6711d7e0cd60fca157e6151f" + } + }, + { + "text": "dont take her save ur life from work ..boring...work .. paper. papers..paper.if u like music then u will get tired wit music one day .n prolly u mite wanna chage ur major from music but yeah dont take her", + "pos": 0.105, + "neu": 0.808, + "neg": 0.087, + "_id": { + "$oid": "6711d7e0cd60fca157e61520" + } + }, + { + "text": "ok.....first thing i let u knw DO NOT TAKE HER. FOR MUSIC IS NOT MUSIC IT IS A ENGLISH CLASS FOR HER. I WROTE 5 PAPERS ND OTHER LOTTA CLASS WORK BUT STILL WAS NOT SATISFIED WIT GRADE ..ALL OTHER PROF WILL GIVE U A+ OR A NO LESS THAN THT ..so donot take her to save ur life from work", + "pos": 0.061, + "neu": 0.828, + "neg": 0.11, + "_id": { + "$oid": "6711d7e0cd60fca157e61521" + } + }, + { + "text": "I wasn't satisfied with her. She is not knowledgeable enough for a college professor and is not able to explain material properly. Such an easy class(MUS 101) she made so confusing. Not recommended!", + "pos": 0.075, + "neu": 0.746, + "neg": 0.179, + "_id": { + "$oid": "6711d7e0cd60fca157e61522" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e1cd60fca157e61524" + }, + "professor_name": "Pascale Vassy", + "rating": 4.4, + "department": "French department", + "comments": [ + { + "text": "Best French teacher at City College. She is incredibly dedicated in helping her students. Plus, she makes learning French grammar fun!", + "pos": 0.444, + "neu": 0.556, + "neg": 0.0, + "_id": { + "$oid": "6711d7e1cd60fca157e61525" + } + }, + { + "text": "Dedicated to teaching her students. She WILL get you to participate. There is NO being quiet in her class! The textbook and workbook are major parts of the course. The tests are just like to reviews so study those and you shall receive a good grade.", + "pos": 0.162, + "neu": 0.783, + "neg": 0.055, + "_id": { + "$oid": "6711d7e1cd60fca157e61526" + } + }, + { + "text": "This lady is by far hands down one of the better Prof. I have had at City College! I took during the Fall 2008 semester, and can actually say that I learned something. I plan on continuing French through self-study now. Great Professor!", + "pos": 0.156, + "neu": 0.844, + "neg": 0.0, + "_id": { + "$oid": "6711d7e1cd60fca157e61527" + } + }, + { + "text": "she is a really good teacher and she really does care about students learning .... she moves very very fast ... I'm not a native speaker so it was hard for me through out the whole semester BUT she passed me she gives alot of reading and papers so if u do poorly on test you can gain extra points through papers and DONT be late she hates that i took", + "pos": 0.112, + "neu": 0.824, + "neg": 0.065, + "_id": { + "$oid": "6711d7e1cd60fca157e61528" + } + }, + { + "text": "has a \"french\" attitude yet not as bad as many of the other teachers...class is not bad she helps out and if you do your work you'll be fine =]", + "pos": 0.271, + "neu": 0.671, + "neg": 0.059, + "_id": { + "$oid": "6711d7e1cd60fca157e61529" + } + }, + { + "text": "Awesome Professor. She is very french and flamboyant. But she gets to know her students very well and truly teaches teach the language. Her class is a tough class because she doesn't take laziness or lack of trying. She really believes her students can do well. She gives quite a few exams but if you attend class you'll do fine. Fun oral exam.", + "pos": 0.243, + "neu": 0.697, + "neg": 0.06, + "_id": { + "$oid": "6711d7e1cd60fca157e6152a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e1cd60fca157e6152c" + }, + "professor_name": "Sayi Neufeld", + "rating": 4.3, + "department": "Education department", + "comments": [ + { + "text": "It was an absolute joy having professor Neufeld. She is very relateable, gives a clear explanation of concepts using her everyday experiences, and always engage us in lively discussions. I can tell you for sure she knows the subject matter. She is very professional and was well respected by everyone in the class. I wish she was doing 202.", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d7e1cd60fca157e6152d" + } + }, + { + "text": "I Took this class in SPR15 Correction! For the record, 3 classes were cancelled due to the severe snow conditions in Feb & Mar! HWEVR, Prf Neufeld is a great Prf Exactly what this SPED prgm needs She alwys gave feed back & was avlb via phone, email, office hours, & after class for addtnl support YOU WILL LEARN A LOT, I PROMISE! Take her class ASAP!", + "pos": 0.142, + "neu": 0.799, + "neg": 0.059, + "_id": { + "$oid": "6711d7e1cd60fca157e6152e" + } + }, + { + "text": "I took Neufeld two semesters in a row. Despite teaching multiple classes, she always makes time to help her students with additional support, in office hours, texts, or email. The work was straightforward and she gives multiple opportunities to correct work. Overall, she is awesome as a person and professor and I would absolutely take her again", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d7e1cd60fca157e6152f" + } + }, + { + "text": "I took this class & it was an excellent experience Prof Neufeld is very knowledgeable about the subject she teaches She has had real life classroom experience & teaches what she has practiced i.e. HOW TO DIFFERENTIATE She gave great & timely feedback & allowed us the opportunity to make corrections to our work If you want to learn take her class!!", + "pos": 0.177, + "neu": 0.823, + "neg": 0.0, + "_id": { + "$oid": "6711d7e1cd60fca157e61530" + } + }, + { + "text": "This professor was understanding and extremely fair. I apprecisted her feedback and work ethic.", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d7e1cd60fca157e61531" + } + }, + { + "text": "She cancels class a lot. Most of the time class only runs for an hour. She did not give clear instruction of assignments til more than half way through the semester. She would say she would e-mail the class and then did not follow through.", + "pos": 0.0, + "neu": 0.913, + "neg": 0.087, + "_id": { + "$oid": "6711d7e1cd60fca157e61532" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e1cd60fca157e61534" + }, + "professor_name": "Jeehey Kim", + "rating": 2.6, + "department": "Asian Studies department", + "comments": [ + { + "text": "Had her at Montclair State for art in non western societies. For a 101 class it is pretty tough you have to take very good notes because lectures are long and she goes pretty fast. Good thing is that she shows boring youtube unesco videos but it does sometimes reinforce the material that is being learned. Also if you miss more than 2 classes Fail", + "pos": 0.11, + "neu": 0.762, + "neg": 0.128, + "_id": { + "$oid": "6711d7e1cd60fca157e61535" + } + }, + { + "text": "Easy A class for Korean films.remember most of the dates of the historic events she talks about. Films are boring but the work she bases her grades on IS EASY! So take this class if you want an easy A. I took it during the fall semester. Just sit, watch and take notes of the dates. goodluck :D", + "pos": 0.252, + "neu": 0.725, + "neg": 0.023, + "_id": { + "$oid": "6711d7e1cd60fca157e61536" + } + }, + { + "text": "this professor is a bit hard, she doesnt curve the grade, the review paper is worth 50%, her midterm and final are hard, the questions are very specific, she got lots of notes, its really hard to memorize all these notes and at the same time need to remember the books and films!no presentation, only midterm final and review paper!", + "pos": 0.03, + "neu": 0.889, + "neg": 0.081, + "_id": { + "$oid": "6711d7e1cd60fca157e61537" + } + }, + { + "text": "Teaches at a level and pace for a college student, but fails in the attempt to cover more material that a semester can handle. With the back and forth of notes, you can get easily confused, but she's very flexible and approachable. If you ask for help, she'll give you in the right direction.", + "pos": 0.145, + "neu": 0.753, + "neg": 0.102, + "_id": { + "$oid": "6711d7e1cd60fca157e61538" + } + }, + { + "text": "She is soooo tough n yet I'm stuck wit her for another semester because she's teaching the class I want to take! There is NO WAY to get an A in her class!!!! Neverrrrr!", + "pos": 0.033, + "neu": 0.771, + "neg": 0.195, + "_id": { + "$oid": "6711d7e1cd60fca157e61539" + } + }, + { + "text": "Expects way too much from her students. Assigned 3 books to read, and 4 films to watch. Films were nearly impossible to find. 1 midterm, 1 final, and a review essay. If you take this class, go every single day, and take VERY accurate notes. The midterm was 99% straight out of the notes. She seems like a mean person, but shes actually alright.", + "pos": 0.085, + "neu": 0.915, + "neg": 0.0, + "_id": { + "$oid": "6711d7e1cd60fca157e6153a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e2cd60fca157e6153c" + }, + "professor_name": "Edwart Camp", + "rating": 4.8, + "department": "Engineering department", + "comments": [ + { + "text": "guys.. listen to my words.. this is the best professor in entire CUNY.. i am a CS student and met all horrible professors. When i took this class, i really felt that I am learning something in this college.. Camp is the best..", + "pos": 0.162, + "neu": 0.771, + "neg": 0.067, + "_id": { + "$oid": "6711d7e2cd60fca157e6153d" + } + }, + { + "text": "Loads of homework,try not to use your brain to do the homework you might end up in a bad grade.just copy and paste it straight from the textbook.Project presentation is the only thing that decideds your grade for the course.He is a fair grader.", + "pos": 0.086, + "neu": 0.842, + "neg": 0.072, + "_id": { + "$oid": "6711d7e2cd60fca157e6153e" + } + }, + { + "text": "he is a very good professor. heteaches clearly and the material is very helpful.", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d7e2cd60fca157e6153f" + } + }, + { + "text": "He is a good professor. He is well organized. he always gives homework assignments.the attendance is extremely important.overall he is very good one.", + "pos": 0.291, + "neu": 0.709, + "neg": 0.0, + "_id": { + "$oid": "6711d7e2cd60fca157e61540" + } + }, + { + "text": "Excellent prof", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d7e2cd60fca157e61541" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7e2cd60fca157e61542" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e2cd60fca157e61544" + }, + "professor_name": "Stuart Elster", + "rating": 4.9, + "department": "Art department", + "comments": [ + { + "text": "I thoroughly enjoyed having Stuart as my painting professor. He has helped put me in a clearer direction with my work through his inspiring love of art knowledge. He is also very considerate, always wanting to make he has you on the right page with your work. He's rigid with intent, yet flexible to your needs. Absolutely interesting to listen to", + "pos": 0.252, + "neu": 0.728, + "neg": 0.02, + "_id": { + "$oid": "6711d7e2cd60fca157e61545" + } + }, + { + "text": "Very very good and detailed teacher of drawing. Knows his stuff and really tries to get through and explain concepts and ways to do things. Motivating and never ovepowering in class. And kinda hot?!", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d7e2cd60fca157e61546" + } + }, + { + "text": "Very sweet professor. Although he go on and on and on with the lectures,in the end it really did help me understand how to draw. Great guy!", + "pos": 0.308, + "neu": 0.692, + "neg": 0.0, + "_id": { + "$oid": "6711d7e2cd60fca157e61547" + } + }, + { + "text": "he's a great teacher uses crazy illustration to illustrate his point and it works, like a standing tree with one eye, he only requires u to buuy alot of stuff but u do use it all, It was a great experience and he's very helpful and fun not a stressful class at all.", + "pos": 0.32, + "neu": 0.655, + "neg": 0.024, + "_id": { + "$oid": "6711d7e2cd60fca157e61548" + } + }, + { + "text": "I was very excited to take this class and Elster made the class worthwhile. It was entertaining & informative. We covered many concepts of art - he covered a lot of material. I felt that the class was worth my time. He doesn't give much HW, but attendance, CW & final are important. Make sure to hand in all of your work in the end. I got an A+!!!", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d7e2cd60fca157e61549" + } + }, + { + "text": "nice and very specified. Not a lot of homework, he spends a long time giving lectures.", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d7e2cd60fca157e6154a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e3cd60fca157e6154c" + }, + "professor_name": "Alexandra Miletta", + "rating": 4.6, + "department": "Education department", + "comments": [ + { + "text": "Man, oh man! Xandra clearly has a passion for social studies and she has such a vibrant spirit, however, the the unit plan that she designed for the syllabus is difficult and lengthy. She does not spend enough class time explaining how to complete it and does not give feedback in a timely manner! Beware of the concept formation lesson!", + "pos": 0.169, + "neu": 0.795, + "neg": 0.036, + "_id": { + "$oid": "6711d7e3cd60fca157e6154d" + } + }, + { + "text": "She is an incredible professor who challenges you to think outside of the box. I had her for fiqws arts and imagination and she was brilliant. What really got me about her is that she has such a warm and bubbly personality that you don't even feel like you're in a class. She's the best! Other teachers bore me to death by not Professor Miletta.", + "pos": 0.151, + "neu": 0.746, + "neg": 0.103, + "_id": { + "$oid": "6711d7e3cd60fca157e6154e" + } + }, + { + "text": "SHE IS THE BOMB!! NICEST PERSON I HAVE EVER MET IN THE PLANET!! YOU HAVE FUN AND MOST IMPORTANTLY YOU LEARN!!", + "pos": 0.47, + "neu": 0.53, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e6154f" + } + }, + { + "text": "She was a wonderful professor who was always understanding and always pushing my thinking further. She is also very supportive and helpful. This is my second time taking a class she that she is teaching. She is a beautiful and intelligent professor who inspires others including myself. I hope City College realizes how fortunate they are for having", + "pos": 0.332, + "neu": 0.668, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e61550" + } + }, + { + "text": "Prof. Milleta is well informed in the education field. She is very supportive and shares an abundance of knowledge with her students. This course does requires a lot of diligent work. I recommend more individual conferences instead of class meetings.", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e61551" + } + }, + { + "text": "This class is challenging because students must write original research. Prof. Miletta is very knowledgeable about conducting and writing original research and she encourages students consider various approaches to writing their final report. She has high expections, but is fair and accessible.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e61552" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e3cd60fca157e61554" + }, + "professor_name": "Hamidat Abdul-Wahab", + "rating": 4.8, + "department": "Mathematics department", + "comments": [ + { + "text": "She is an amazing teacher plus she is funny so the class is always up.She is very helpful and I learned a lot. Do your work and pass the tests and you will do just fine.", + "pos": 0.266, + "neu": 0.734, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e61555" + } + }, + { + "text": "shes alright, helpful and makes the class fun, i didnt take it seriously but i still did okay. i think if you need help in learning basic math and you wanna be able to get a good grade you should take her.", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e61556" + } + }, + { + "text": "She is a great teacher! Very helpful..can go off topic but you learn something new everyday not only in math but the outside world! She is funny also, I recommend her!:)", + "pos": 0.273, + "neu": 0.727, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e61557" + } + }, + { + "text": "Good teacher, to the point, but can sometimes go off on a tangent. Overall good class.", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d7e3cd60fca157e61558" + } + }, + { + "text": "She is great. Only bad thing about her is that she talks a lot! I mean she gonna tell you about -almost- everything happened and going on in her life. But she makes sure that you pass the department final. Got an A plus thanks to her great reviews and motivation.", + "pos": 0.28, + "neu": 0.686, + "neg": 0.034, + "_id": { + "$oid": "6711d7e3cd60fca157e61559" + } + }, + { + "text": "she is great! easy on grades. gives extra credit assignments. Her class is way too easy and that makes you think that you'd butcher the department's final exam, but you'll find out that the final is even easier after her teachings. she is funny and HOT! i would most certainly have a crash on her if she wasn't my professor ;)", + "pos": 0.257, + "neu": 0.671, + "neg": 0.072, + "_id": { + "$oid": "6711d7e3cd60fca157e6155a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e4cd60fca157e6155c" + }, + "professor_name": "Laila Diaz", + "rating": 3.4, + "department": "Theater department", + "comments": [ + { + "text": "Good looking professor. Had her for Culture acting. I went on a trip to Ghana afterwards (that of which she was the chaperone) and my culture acting learnings from her class taught me a lot about how to operate in the Ghanaian setting and how to be culturally sensitive.", + "pos": 0.057, + "neu": 0.943, + "neg": 0.0, + "_id": { + "$oid": "6711d7e4cd60fca157e6155d" + } + }, + { + "text": "Very spontaneous professor. She took us all on a snowboarding trip! Injured her arm there :( but a great effort to teach us how to perform our own stunts! I've never seen a professor/teacher go this over the top to teach their students. good looking too.", + "pos": 0.215, + "neu": 0.718, + "neg": 0.067, + "_id": { + "$oid": "6711d7e4cd60fca157e6155e" + } + }, + { + "text": "I had her for theater modeling. She taught us to present ourselves on theater in terms of appearance, confidence etc. She may be short, but she can work them heels. good looking too ;) I developed so much confidence from this class and now I feel empowered to potentially consider a career in fashion modeling. Also, she taught us martial arts!", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d7e4cd60fca157e6155f" + } + }, + { + "text": "As noted, the professor did not use the textbook at ALL, but she did cover the classics in lecture such as the Connery Bond movies, Austin Powers, and Spy Kids. If you can get past the semi-frequent altercations with students (combined with the professor's intimidating good looks), this is easily the most rewarding theater class you will ever take.", + "pos": 0.169, + "neu": 0.776, + "neg": 0.054, + "_id": { + "$oid": "6711d7e4cd60fca157e61560" + } + }, + { + "text": "I took this class with prof. Diaz and it was so much fun! Although she was the hardest theater professor I have come across at CCNY I must say it all paid off. Especially when I got the lead roll as \"majnun\" in our end of the semester play titled \"Laila and Majnun\" inspired by Prof. Diaz's Arab cultural roots", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d7e4cd60fca157e61561" + } + }, + { + "text": "A real attractive woman and great teacher who taught me how I can get into spy roles in films. A little intimidating at times. She does make you buy a textbook which she NEVER uses. I did enjoy acting out Bourne Identity Fight scenes. Shes like the next Joao Hwang but for fight scene acting. HIGHLY recommended!", + "pos": 0.181, + "neu": 0.717, + "neg": 0.102, + "_id": { + "$oid": "6711d7e4cd60fca157e61562" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e4cd60fca157e61564" + }, + "professor_name": "James Fritton", + "rating": 2.3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Really strict about his exam policies. Really wants you to learn the content and randomly calls on students every lecture so be prepared to read. Gives vague and unclear explanations to questions in class but super helpful if you give him time to prepare for explanations in Office hours so def go to them. Too much hw to do but it helps in learning", + "pos": 0.188, + "neu": 0.776, + "neg": 0.036, + "_id": { + "$oid": "6711d7e4cd60fca157e61565" + } + }, + { + "text": "Is up there with the worst lecturers in the school. Begs for involvement but shuts down students with his terrible attitude if they ask questions. Mandatory online textbook sucks. With any teacher you will watch better professors online, but at least with other 330 classes the curve is reasonable.", + "pos": 0.089, + "neu": 0.743, + "neg": 0.168, + "_id": { + "$oid": "6711d7e4cd60fca157e61566" + } + }, + { + "text": "Very harsh grader. Make sure to do all the HWs as it's 30% of the grade. Make sure to study for your exams.", + "pos": 0.166, + "neu": 0.72, + "neg": 0.115, + "_id": { + "$oid": "6711d7e4cd60fca157e61567" + } + }, + { + "text": "ME 33000 is a class with heavy material leaving no room for example problems to be done in class but Fritton does a good job of teaching and explaining the material albeit in a droning voice. Be sure to go to his office hours to ask for practice questions and HW help. and yea, there's a lot of hw. do it as much of it best as you can", + "pos": 0.196, + "neu": 0.763, + "neg": 0.042, + "_id": { + "$oid": "6711d7e4cd60fca157e61568" + } + }, + { + "text": "This is not an easy class. However, Professor Fritton simplifies everything and like to get the class engaged. Test questions were similar to Hw questions.", + "pos": 0.176, + "neu": 0.743, + "neg": 0.081, + "_id": { + "$oid": "6711d7e4cd60fca157e61569" + } + }, + { + "text": "Good professor with moral ethics but avoid at all costs. Take Professor Jackie Li instead if you would like to pass and learn as well. Both of them are equally proficient but if you're aiming to pass take someone else.", + "pos": 0.168, + "neu": 0.772, + "neg": 0.06, + "_id": { + "$oid": "6711d7e4cd60fca157e6156a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e4cd60fca157e6156c" + }, + "professor_name": "Elizabeth Matthews", + "rating": 2.2, + "department": "Psychology department", + "comments": [ + { + "text": "I do not recommend Professor Matthews if you are a busy person or someone who might miss an assignment. She does not allow a chance to do the work over and gives no 2nd chances. It sucks because the class itself is really interesting but it wasn't a fun experience with her. She has no intention of giving you a chance to do better for your grade.", + "pos": 0.14, + "neu": 0.659, + "neg": 0.202, + "_id": { + "$oid": "6711d7e4cd60fca157e6156d" + } + }, + { + "text": "I highly recommend you take this course with a different instructor. As mentioned in previous reviews, she does not explain assignments well and grades terribly. When you reach out through email she does not respond or is very rude. She is not empathetic and her grading is all over the place. I second you find a different Professor if you can", + "pos": 0.056, + "neu": 0.787, + "neg": 0.157, + "_id": { + "$oid": "6711d7e4cd60fca157e6156e" + } + }, + { + "text": "Terrible Professor taking her now. I do not recommend, she is very dismissive and straight up condescending.", + "pos": 0.101, + "neu": 0.655, + "neg": 0.244, + "_id": { + "$oid": "6711d7e4cd60fca157e6156f" + } + }, + { + "text": "Prof. Matthews seems very knowledgeable and the content, syllabus, assignments and readings were good. I just don't think she's adapted to teaching remotely very well. She is either not very technologically adept or extremely inflexible about methods used. She lacked empathy, was very unclear about expectations, and became frustrated with students.", + "pos": 0.091, + "neu": 0.811, + "neg": 0.098, + "_id": { + "$oid": "6711d7e4cd60fca157e61570" + } + }, + { + "text": "Disregard the negative review-Professor M has standards for her students. Her goal is to help you learn, not give you an easy A. While some may consider her a 'tough grader', as long as you read the rubric she provides and take advantage of extra resources she posts on blackboard you'll be fine (office hrs too). She gives great feedback--use it!", + "pos": 0.186, + "neu": 0.715, + "neg": 0.099, + "_id": { + "$oid": "6711d7e4cd60fca157e61571" + } + }, + { + "text": "I received the worse grade from her in my entire college life while I was doing pretty much the same in other class. She gave me a bad score while not allowing me to resubmit or not giving any chance of extra credit. Once you receive a bad score without knowing exactly what needed, this is it. She does not help a student who want to do better.", + "pos": 0.119, + "neu": 0.689, + "neg": 0.192, + "_id": { + "$oid": "6711d7e4cd60fca157e61572" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e5cd60fca157e61574" + }, + "professor_name": "Braelyn Hendricks", + "rating": 5, + "department": "Sociology department", + "comments": [ + { + "text": "Great professor! Had a few readings, some in-class activities, weekly discussion posts (not hard at all), midterm, and a final paper that piggy-backed off of the midterm. Shes very understanding, gives extra credit. She gave out two surveys, one to determine what would be considered an A and the other of when to meet for class. Take her!", + "pos": 0.135, + "neu": 0.865, + "neg": 0.0, + "_id": { + "$oid": "6711d7e5cd60fca157e61575" + } + }, + { + "text": "Professor Hendricks was a great professor. We only had to do a few readings and in-class activities. The midterm had three small assignments and a paper. That paper helped with the final paper as we were allowed to keep the same topic but add a theory.", + "pos": 0.054, + "neu": 0.946, + "neg": 0.0, + "_id": { + "$oid": "6711d7e5cd60fca157e61576" + } + }, + { + "text": "I really enjoyed taking Professor Hendrick's class! Not only was the class interesting and fun, but she offered a lot of extra credit. A lot of people struggle with online learning and she was very understanding about that. We had weekly discussion posts, class once a week (non-mandatory attendance, recorded), and a project.", + "pos": 0.164, + "neu": 0.788, + "neg": 0.048, + "_id": { + "$oid": "6711d7e5cd60fca157e61577" + } + }, + { + "text": "Prof Hendricks is super generous with grading! She had us take a survey in the beginning of the course to see what we thought is needed to get an A--she changed the grading to reflect the survey results. Discussion posts are not long and you don't have to respond to 2 classmates, hooray! You will be pretty stress free with this class :)", + "pos": 0.259, + "neu": 0.705, + "neg": 0.035, + "_id": { + "$oid": "6711d7e5cd60fca157e61578" + } + }, + { + "text": "This professor is very chill and understanding. She gives soo much extra credit so there shouldnt be any reason you fall behind in class. If you cant make a deadline, just go talk to her and shell give you an extension.", + "pos": 0.061, + "neu": 0.939, + "neg": 0.0, + "_id": { + "$oid": "6711d7e5cd60fca157e61579" + } + }, + { + "text": "LOVE HER! Take her! so nice and smart. SO much extra credit opportunities and easily the most generous professor i've ever had. her class is that class that you feel like you can breathe and aren't always stressing. really interesting topics and she's very knowledgeable. actually teaches doesnt just read off slides. u will not regret her class", + "pos": 0.421, + "neu": 0.579, + "neg": 0.0, + "_id": { + "$oid": "6711d7e5cd60fca157e6157a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e5cd60fca157e6157c" + }, + "professor_name": "Elena Goycochea", + "rating": 4, + "department": "Spanish department", + "comments": [ + { + "text": "Prof Goycochea, is super nice and is genuinely interested in the topic that she teaches. Rather than weighing down the class with heavy readings, she used films, music videos, and short stories to illustrate the week's main point. She also gives good feedback, so don't hesitate to ask questions. She also responds to emails in a timely manner.", + "pos": 0.214, + "neu": 0.786, + "neg": 0.0, + "_id": { + "$oid": "6711d7e5cd60fca157e6157d" + } + }, + { + "text": "I would come to this class like maybe once a week, got grades on quizzes (3 of them, online, in class) with 70s, got a D on the midterm because i got everything wrong in one section, missed out on a group presentation due to my absence or even being aware from my peers, but somehow passed with an A. We praise the most high", + "pos": 0.093, + "neu": 0.856, + "neg": 0.051, + "_id": { + "$oid": "6711d7e5cd60fca157e6157e" + } + }, + { + "text": "I would say participate once in a while. She uses a mix of media to teach it was actually kind of fun in her class cause she uses games and a lot of group work as well as movies to teach. Theres online homework and 4 exams and 2 group presentations. She's caring just make sure you do the work!", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d7e5cd60fca157e6157f" + } + }, + { + "text": "She's really nice. As long as you show up, do the work and participate every once in while, you're good. She's an easy A to me, but if you're really lazy then forget it. She cares about students and recognizes the ones that try. I recommend her.", + "pos": 0.221, + "neu": 0.671, + "neg": 0.108, + "_id": { + "$oid": "6711d7e5cd60fca157e61580" + } + }, + { + "text": "The professor is super nice, but she almost never speaks english in class, and considering its still and introductory class it can be very confusing. She's is always available outside of class if you need help. She's great as a person but not the best teacher", + "pos": 0.223, + "neu": 0.657, + "neg": 0.121, + "_id": { + "$oid": "6711d7e5cd60fca157e61581" + } + }, + { + "text": "There is a Spanish online homework system, five compositions, 3 exams, 2 oral exams, 1 midterm and 1 final. She allows up to 5 absences. This class is not hard but she speaks a lot of Spanish throughout the class. Reliable via email. There is a textbook, she goes over activities from the textbook in class. I would take this professor again!", + "pos": 0.023, + "neu": 0.977, + "neg": 0.0, + "_id": { + "$oid": "6711d7e5cd60fca157e61582" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e5cd60fca157e61584" + }, + "professor_name": "Krisia Ayala Ortiz", + "rating": 2.2, + "department": "Art department", + "comments": [ + { + "text": "She doesnt know what she is talking about half of the time. She is very difficult to work with. She is very judgmental. She gives you lots of unnecesary work. I question her teaching abilities. The class made a group text and we were frequentlyleft confused about the assignments.", + "pos": 0.038, + "neu": 0.866, + "neg": 0.096, + "_id": { + "$oid": "6711d7e5cd60fca157e61585" + } + }, + { + "text": "the worst professor I had at this school. completely inconsiderate of any external conflicts you may have outside of class and when I tried to talk to her about it she insulted me and my work even though i tried my best. I would've dropped it right then and there if I didn't need the credits. take LITERALLY anyone else.", + "pos": 0.057, + "neu": 0.735, + "neg": 0.208, + "_id": { + "$oid": "6711d7e5cd60fca157e61586" + } + }, + { + "text": "We had a group project with a student who wasn't doing any collab work but the group was penalized for it. Me not doing good is one thing but don't hold my grade accountable for someone else not doing their part. She was also super unclear with her explanations of assignments which led other students in the class to have the same issues.", + "pos": 0.075, + "neu": 0.846, + "neg": 0.079, + "_id": { + "$oid": "6711d7e5cd60fca157e61587" + } + }, + { + "text": "She's not the worst but she's usually unclear on the criteria of the assignment. Although, even if you do bad she uses midterms and finals to redo your assignment for a better grades. Gave way too much work for finals ( Group magazine project for 3 weeks + 3 hour exam with paragraphs and drawings + submission of final portfolio of all the work)", + "pos": 0.082, + "neu": 0.819, + "neg": 0.099, + "_id": { + "$oid": "6711d7e5cd60fca157e61588" + } + }, + { + "text": "She's not suited for online teaching, a lot of her lectures made sense but there were a lot of technical difficulties and information about important assignments that were unclear. She's a bit defensive when you tell her that she was unclear in her explanation. You will improve quite a bit as the semester goes on though.", + "pos": 0.111, + "neu": 0.769, + "neg": 0.12, + "_id": { + "$oid": "6711d7e5cd60fca157e61589" + } + }, + { + "text": "You can defiantly learn a lot stuff from her lectures and assignments. she is very friendly and sweet. She also invite other artists come to give speech. she has very clearly and detailed weekly assignments. Not super crazy assignments, you do need to put a lot of time on it. You will make a wonderful portfolio through this course.", + "pos": 0.237, + "neu": 0.72, + "neg": 0.044, + "_id": { + "$oid": "6711d7e5cd60fca157e6158a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e6cd60fca157e6158c" + }, + "professor_name": "Kevin Daniels", + "rating": 3.8, + "department": "Speech department", + "comments": [ + { + "text": "Hate him. Took him in fall 2021. Participation is key in his class. I wish I could tell you what I faced in this class. Hit me up on ig: @itz._.fredericaa for more details about him. Makes jokes and mimics mickey mouse and thinks he's funny. Easy class. Graded me unfairly. Doesn't answer emails. Wouldn't recommend him to anyone.", + "pos": 0.151, + "neu": 0.765, + "neg": 0.084, + "_id": { + "$oid": "6711d7e6cd60fca157e6158d" + } + }, + { + "text": "Love professor Daniels! He is such a good professor. His lectures aren't long and are engaging. He thoroughly explains topics and tries to connect with his students on a personal level. He truly cares about his students and tries to help them as much as possible not just in his class but other classes and life in general. Easy grader and relaxed.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e6158e" + } + }, + { + "text": "He is a great teacher. He makes class enjoyable and really cares about getting to know the students personally. I would definitely take this class again because he meets you where you're at and isn't a hard grader.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e6158f" + } + }, + { + "text": "With COVID it was nice to have a teacher, especially one of Color, who focused on the course outside the context of the white institution. They used current news and culture to connect the discussion. They displayed a great desire for student success. Literally helped me to create my speech. If you don't show up or don't try then you won't pass.", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e61590" + } + }, + { + "text": "He places a strong emphasis on participation but provides productive feedback on how I approach public speaking. Lots of external forms of communication available to talk to him with any matter and you will get a good grade if you put effort into the work.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e61591" + } + }, + { + "text": "Pretends to care about you but really doesn't. Takes off points for the most obscure things. He takes forever to respond to emails and doesn't even provide any useful feedback. He even likes to brag about how he went to Yale yet his grammar says otherwise. Choose another professor", + "pos": 0.173, + "neu": 0.806, + "neg": 0.021, + "_id": { + "$oid": "6711d7e6cd60fca157e61592" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e6cd60fca157e61594" + }, + "professor_name": "Ilia Ilmer", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "Prof. Ilmer always presented the content well and uploaded PDFs of lecture notes online. Exams and quizzes are based on practice sheets. Gives a lot of partial credit on both and is always accessible outside of class if there are any concerns.", + "pos": 0.105, + "neu": 0.895, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e61595" + } + }, + { + "text": "Long story short, best professor I could ever get. He is very caring, respectful, and constantly giving feedback. You need to know how to solve the problems from the practice sheets he gave it out. Beware of pop quizzes, but he allow you re-take it if you don't satisfied with your grade. Overall, recommended!", + "pos": 0.23, + "neu": 0.695, + "neg": 0.075, + "_id": { + "$oid": "6711d7e6cd60fca157e61596" + } + }, + { + "text": "Great Professor, just make sure you know how to do the questions on practice sheet.\nHe literally copies at least one question from the practice sheet", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e61597" + } + }, + { + "text": "Most likely one of the best teachers you will have during your CS career. Professor Ilmer is caring, respectful, and actually wants you to learn the material and will answer any question you have about something in class.\n\nFor the tests just repeatedly do the practice sheets and you will do just fine. Super fair grader.", + "pos": 0.269, + "neu": 0.731, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e61598" + } + }, + { + "text": "This man is the definition of what a professor should be. He's respectful, he responds to emails, and overall he is someone that wants you to LEARN (he's very invested in what he teaches). He gives points on tests graciously so long as you show that you tried a problem on a test. Take this man, your mental health and GPA will thank you.", + "pos": 0.123, + "neu": 0.839, + "neg": 0.038, + "_id": { + "$oid": "6711d7e6cd60fca157e61599" + } + }, + { + "text": "He is genuinely so great. The class grading, though, is 50% midterm and 50% final but there is nothing on those exams that you haven't seen in practice sheets or lectures. He records all lectures and is always available via slack for questions, and is overall a really nice person and lenient with grading exams. Gives extra credit too", + "pos": 0.195, + "neu": 0.805, + "neg": 0.0, + "_id": { + "$oid": "6711d7e6cd60fca157e6159a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e7cd60fca157e6159c" + }, + "professor_name": "Simon Kostelanetz", + "rating": 5, + "department": "Foreign Languages amp Literature department", + "comments": [ + { + "text": "Easy A class. Great energy, he loves to talk -- not just about French culture but pop culture, music, astrology and films (he's a filmbro and a Swiftie :)) Take him he's great and very passionate about what he teaches !!", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e6159d" + } + }, + { + "text": "simoncakes is a wonderful professor + this is a wonderful class to fulfill that last french 3 requirement. i took french 1+3 with him + he's one of the most understanding and intelligent professors. hw on connect, short papers about movies, + exams are ok. be cool, stay in school, and dont be a fool; take his class!", + "pos": 0.263, + "neu": 0.737, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e6159e" + } + }, + { + "text": "He's funny lmao. I learned so much French I became French myself. There are essays to write (based on movies), homework, and three exams (you can do corrections). Class is alright, I was never bored. Pay attention in class and do the homework and you will be set for the exams. Participation is key.", + "pos": 0.196, + "neu": 0.804, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e6159f" + } + }, + { + "text": "Taking Prof. Simons class was the only class I looked up to. The class atmosphere is super laid back. Simon wants us to try and learn French. He would crack jokes and encourage us to speak French. Overall, his class was a fun learning experience. P.S be a Giannis fan hell give you extra credit.", + "pos": 0.249, + "neu": 0.686, + "neg": 0.066, + "_id": { + "$oid": "6711d7e7cd60fca157e615a0" + } + }, + { + "text": "Hes my favorite Professor that Ive had in the 4 years Ive been at CCNY. Simon is that Professor you want to be friends with, hes cares about his students and makes sure his class knows whats going on. I definitely recommend taking his French course, his lectures are great!", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615a1" + } + }, + { + "text": "Professor Simon was an amazing professor. The exams are somewhat tough, but he gives ample opportunities for students to succeed with exam corrections and office hours, he really wants us all to succeed. In addition he is very relaxed and chill with the students which makes for an enjoyable learning environment. 10/10.", + "pos": 0.333, + "neu": 0.651, + "neg": 0.016, + "_id": { + "$oid": "6711d7e7cd60fca157e615a2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e7cd60fca157e615a4" + }, + "professor_name": "Deena Ecker", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "Her lecturers are great. 2 exams you have to study for it. Before the exam she gives out study guide. Also, rewrite for papers are available.", + "pos": 0.141, + "neu": 0.859, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615a5" + } + }, + { + "text": "She's great and very passionate about history! She appreciates when people participates and tries to initiate class conversations as much as she can. She is very understanding towards extension and is usually available to speak before and after class. She's a good professor and I wish her the best!", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615a6" + } + }, + { + "text": "one of the best professors in CCNY. please take this class you'll love it.", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615a7" + } + }, + { + "text": "Best Professor I have ever had. She loves history and is exited to share the information to you. Easy discussion board to do about once a week, short paper, midterm was take home I believe, then a long paper to do. Also just one presentation to do You can ask for extensions. Be there last day for hints for final. You can Rewrite Papers", + "pos": 0.178, + "neu": 0.822, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615a8" + } + }, + { + "text": "PHENOMENAL!!! she is so kind, caring, really takes the time to want to hear about us. She is very understanding. I had a lot family issues going on throughout the semester and she was so kind about it. Love her! Would def take her class again!", + "pos": 0.315, + "neu": 0.685, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615a9" + } + }, + { + "text": "Ms. Ecker is a professor that loves her job, and her goal is for you to love or just understand history. Very kind and understanding. I personally get bored in her lectures but participation matters. She remembers names quickly. Textbook is online called yawp and is free. She shares class slides on bb. If you need an extensionSheWill giveInAdvance", + "pos": 0.227, + "neu": 0.751, + "neg": 0.022, + "_id": { + "$oid": "6711d7e7cd60fca157e615aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e7cd60fca157e615ac" + }, + "professor_name": "Donald Partyka", + "rating": 4.4, + "department": "Art department", + "comments": [ + { + "text": "Amazing Professor. While this class involves A LOT of work, I improved as a designer with each assignment. The Professor is also very encouraging and gives good feedback. This class helped a lot in terms of resume and portfolio as well. I definitely recommend taking this class if you want to improve your design skills.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615ad" + } + }, + { + "text": "Amazing professor. All of his assignments will help you to become a better designer. I enjoyed taking his class, I learned so much about typography and design. He pushes you to be bold within your own style. Gives you great feedback. He is one of the best professors I have taken.", + "pos": 0.349, + "neu": 0.651, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615ae" + } + }, + { + "text": "Amazing professor and gives helpful tips on Indesign to help with the assignments. He always critics the assignments, and he makes sure that students understand. I love his class, and I learn so much about typography and how to use it creatively in my work. If you work hard, you will see big improvements in your work.", + "pos": 0.285, + "neu": 0.665, + "neg": 0.05, + "_id": { + "$oid": "6711d7e7cd60fca157e615af" + } + }, + { + "text": "My experience with this professor wasn't all that great. He didn't really consider the fact that some people came into the class with little to no experience. He's very picky & sometimes not clear. Lastly he doesn't tell you how good you're doing until the very end which isn't ideal for anyone. You could be failing the class and he won't tell you.", + "pos": 0.04, + "neu": 0.777, + "neg": 0.184, + "_id": { + "$oid": "6711d7e7cd60fca157e615b0" + } + }, + { + "text": "Excellent teacher, he is attentive and nice. Has a nice time line of his work, uses his time wisely, doesn't go off tangents. Even navigates you thru some indesign which is helpful. Very laid back but he expects your work to be brought in to class. Will make posters, business cards, your own font even a field trip too. Would take again if I could.", + "pos": 0.142, + "neu": 0.858, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615b1" + } + }, + { + "text": "Assignments require effort, but it's worth it because you actually learn from them. The critiques at the start of class are useful because he pinpoints what you can improve. Answers emails promptly. Would love it if every professor is like him. Has a genuine passion for typography that made me love it too!", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d7e7cd60fca157e615b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e8cd60fca157e615b4" + }, + "professor_name": "Frank Tomasulo", + "rating": 3.5, + "department": "Humanities department", + "comments": [ + { + "text": "Students who have not mastered the English language & refuse to visit the Writing Center will not do well in Dr. T's Independent Film class. Once I realized that instructions were clear and high standards were in place, I upped my game and got an \"A.\" Dr. T even helped me get my term paper PUBLISHED, thus allowing to leave CCNY & get into Columbia!", + "pos": 0.038, + "neu": 0.883, + "neg": 0.08, + "_id": { + "$oid": "6711d7e8cd60fca157e615b5" + } + }, + { + "text": "Dr. T is an interesting and bright professor, especially in his field of Film. Really opened my eyes to independent films. He is a fair grader and papers were 5-7 pages, however he does help you with them when needed. I would take him again.", + "pos": 0.205, + "neu": 0.795, + "neg": 0.0, + "_id": { + "$oid": "6711d7e8cd60fca157e615b6" + } + }, + { + "text": "He is one of the worst professors I've had. He's not clear on what's expected and worries way too much about the writing portion. The essay lengths range from 8-10 pages and if you don't do the research, you'll suffer. Very harsh grader & a tough class but if you work really REALLLLLLY hard like I did, you can get through it!", + "pos": 0.051, + "neu": 0.754, + "neg": 0.195, + "_id": { + "$oid": "6711d7e8cd60fca157e615b7" + } + }, + { + "text": "He is vague in what he expects. As the content professor of the course, he cares too much about the writing especially compared to the writing professor. He thinks he's funny, but he really isn't. The material should be easy to grasp. This is a class you should waive if you can. It's almost like it's meant to bring your GPA down.", + "pos": 0.154, + "neu": 0.828, + "neg": 0.017, + "_id": { + "$oid": "6711d7e8cd60fca157e615b8" + } + }, + { + "text": "He is a great guy, and is very knowledgeable about his subject. He is entertaining, if you like his type of humor. Although a rather strict grader, he awards you your grade based on effort. If you try, you will do well.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d7e8cd60fca157e615b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e8cd60fca157e615bb" + }, + "professor_name": "Reuben Thomas", + "rating": 4.9, + "department": "Sociology department", + "comments": [ + { + "text": "Prof Thomas is a very good professor. I thought it was going to be a difficult class, but it was pretty easy for me. Assignments were easy. Not alot of work. I wouldn't suggest buying the textbook, Making Sense of the Social World. (think its correct) Hardly ever used it. Overall, great professor", + "pos": 0.288, + "neu": 0.686, + "neg": 0.026, + "_id": { + "$oid": "6711d7e8cd60fca157e615bc" + } + }, + { + "text": "Very helpful! Gives the chance to re-do all of your assignments to improve your grade.", + "pos": 0.408, + "neu": 0.592, + "neg": 0.0, + "_id": { + "$oid": "6711d7e8cd60fca157e615bd" + } + }, + { + "text": "Thomas assigns you the PDF files he expects you to read for your group discussions, so no book. His voice is as foxy as Morgan Freeman's. Heard it's rare for people to get A's, I however did. Just show an interest in your class. He responds to e-mails ASAP! Love this guy", + "pos": 0.126, + "neu": 0.825, + "neg": 0.048, + "_id": { + "$oid": "6711d7e8cd60fca157e615be" + } + }, + { + "text": "I had him for methods. Be sure to be on time and hand your work on time. Super strict with that. He is a great teacher, he reviews material before test and the test (if you know the material) is easy. No need for the book. Never used it and got an A. Know what he is talking about for the test and understand the assignments and you will do fine.", + "pos": 0.216, + "neu": 0.758, + "neg": 0.026, + "_id": { + "$oid": "6711d7e8cd60fca157e615bf" + } + }, + { + "text": "Extremely helpful professor! Returns e-mails the same day, sometimes even within an hour!! He manages to make hard things easier. Great Professor! Highly recommended! If you are looking for an easy A this is the wrong professor!", + "pos": 0.319, + "neu": 0.592, + "neg": 0.089, + "_id": { + "$oid": "6711d7e8cd60fca157e615c0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e8cd60fca157e615c2" + }, + "professor_name": "Myna Joseph", + "rating": 4.5, + "department": "Media Arts department", + "comments": [ + { + "text": "Great Prof", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d7e8cd60fca157e615c3" + } + }, + { + "text": "THE best class for perspectives.Her papers take a lot of time, but they are very doable. The professor is extremely helpful. Just pay attention in class and copy her notes (they are pure gold) and you will ace the exams. Skim thru the textbook just to orient yourself and you will see how much fun this class is. Did I mention she's stunning?", + "pos": 0.178, + "neu": 0.795, + "neg": 0.027, + "_id": { + "$oid": "6711d7e8cd60fca157e615c4" + } + }, + { + "text": "A demanding professor! But undeniably brilliant and absolutely beautiful.", + "pos": 0.602, + "neu": 0.32, + "neg": 0.077, + "_id": { + "$oid": "6711d7e8cd60fca157e615c5" + } + }, + { + "text": "She is very passionate about the subject. Expects you to participate and discuss the films that are screened. 2 papers, which I found to be difficult. She expects a lot from you, so you will need to go to the Writing Center and do major analysis on the films. She gives a review sheet of things she expects you to know on the exam, so that helps out", + "pos": 0.089, + "neu": 0.878, + "neg": 0.034, + "_id": { + "$oid": "6711d7e8cd60fca157e615c6" + } + }, + { + "text": "Very organized and responsive professor who follows the syllabus. The student is always aware of what is expected in the class. Two analysis papers, a midterm and a final. High expectations from students, but is very helpful in assisting student in meeting those expectations. Films screened are sometimes boring, but class discussions are engaging.", + "pos": 0.147, + "neu": 0.806, + "neg": 0.048, + "_id": { + "$oid": "6711d7e8cd60fca157e615c7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e9cd60fca157e615c9" + }, + "professor_name": "Valentine Gurfinkel", + "rating": 2.9, + "department": "English department", + "comments": [ + { + "text": "Very unsatisfied with this professor. He grades his essays VERY harshly. He also gives pop quizzes and expects students to read books in very small amounts of time. Homework is not too difficult but very time consuming. Make sure to allot a good amount of your time to this class if you have to take it.", + "pos": 0.134, + "neu": 0.834, + "neg": 0.032, + "_id": { + "$oid": "6711d7e9cd60fca157e615ca" + } + }, + { + "text": "Horrible Professor!! dont take him !!", + "pos": 0.0, + "neu": 0.517, + "neg": 0.483, + "_id": { + "$oid": "6711d7e9cd60fca157e615cb" + } + }, + { + "text": "I am very impressed by Professor Gurfinkel. He is always prepared, you can email him work and he will print it out himself and grade it and return it. Im taking bio AND chem and I find this class manageable. Yes it can get boring at times but he always adds little jokes. I would recommend him, plus 85+ is an A and 82-85 is an A- , which is great :D", + "pos": 0.251, + "neu": 0.73, + "neg": 0.019, + "_id": { + "$oid": "6711d7e9cd60fca157e615cc" + } + }, + { + "text": "Way to many assignments and the class gets kinda boring, if Bio or Chem is on your schedule, avoid this class!", + "pos": 0.0, + "neu": 0.809, + "neg": 0.191, + "_id": { + "$oid": "6711d7e9cd60fca157e615cd" + } + }, + { + "text": "Too many assignments. He is not that bad, but if do not like to turn in 2 or 3 hw every class, avoid him.", + "pos": 0.068, + "neu": 0.74, + "neg": 0.192, + "_id": { + "$oid": "6711d7e9cd60fca157e615ce" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e9cd60fca157e615d0" + }, + "professor_name": "Soe Hlaing", + "rating": 3.8, + "department": "Engineering department", + "comments": [ + { + "text": "Great engineering teacher. He solves lots of problems in class unlike many other \"teachers.\" I definitely recommend him and I will take any other of his classes. You will get a good grade as long as you show up to classes, do your homework, etc. He is a FAIR grader.", + "pos": 0.275, + "neu": 0.682, + "neg": 0.043, + "_id": { + "$oid": "6711d7e9cd60fca157e615d1" + } + }, + { + "text": "stay away from him.....I dropped this class...thank god I did that.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d7e9cd60fca157e615d2" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7e9cd60fca157e615d3" + } + }, + { + "text": "He's a Doctorate student but teaches better than a lot of other professors.He is friendly to the students and sometimes funny.But if you dont keep up with the class, it really piles up in the end because the final is cumulative.", + "pos": 0.173, + "neu": 0.827, + "neg": 0.0, + "_id": { + "$oid": "6711d7e9cd60fca157e615d4" + } + }, + { + "text": "He explain things very well. He knows the material and always come prepared. Willing to help students. However, he has a little thick accent. Take with him you will learn a lot.", + "pos": 0.194, + "neu": 0.806, + "neg": 0.0, + "_id": { + "$oid": "6711d7e9cd60fca157e615d5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7e9cd60fca157e615d7" + }, + "professor_name": "Shara Moon", + "rating": 3.9, + "department": "English department", + "comments": [ + { + "text": "Shara Moon is one of the most friendliest professors at City. Most importantly, she cares if you care. In a nutshell, her class is not difficult at all. To get an A just participate, make sure you're attentive, and speak to her after class. Get to know her and make sure she knows you to seal the deal to a well deserved grade.", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d7e9cd60fca157e615d8" + } + }, + { + "text": "It was a bit boring, but not so bad. 4 essays and research paper You will not stress out All you have to do is show up to class, participate a little and just write the essays Average amount of work for an A", + "pos": 0.156, + "neu": 0.812, + "neg": 0.033, + "_id": { + "$oid": "6711d7e9cd60fca157e615d9" + } + }, + { + "text": "Such a boring class. She is very narrow minded, doesn't seem very knowledgeable or experienced in her field. She is also disorganized, alway forgets something, you have to remind her about things a dozen times. also too tough of a grader for a freshman composition class.", + "pos": 0.0, + "neu": 0.878, + "neg": 0.122, + "_id": { + "$oid": "6711d7e9cd60fca157e615da" + } + }, + { + "text": "She's a nice professor. If you show up to class, do your homework on time and participate in class (at least minimally) you shouldn't have any problems with her. The amount of homework is very doable. She is helpful with assignments and gives good feedback.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d7e9cd60fca157e615db" + } + }, + { + "text": "Pretty decent teacher. Took her the first semester she taught. Gave reasonable amount of work for intro eng comp class.", + "pos": 0.144, + "neu": 0.856, + "neg": 0.0, + "_id": { + "$oid": "6711d7e9cd60fca157e615dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eacd60fca157e615de" + }, + "professor_name": "Obinna Igbe", + "rating": 4.4, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Take this class if u wanna learn and know the material PLUS good grade.", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d7eacd60fca157e615df" + } + }, + { + "text": "Obinna is the man.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7eacd60fca157e615e0" + } + }, + { + "text": "tactful and smart", + "pos": 0.574, + "neu": 0.426, + "neg": 0.0, + "_id": { + "$oid": "6711d7eacd60fca157e615e1" + } + }, + { + "text": "If you want an A in security. You have to work for it. He will teach you the class, and you have to put in the effort. Overall he's an okay professor. Expect to work as a team to get the job done. Expect lecture that are detailed and to pay attention.", + "pos": 0.102, + "neu": 0.873, + "neg": 0.025, + "_id": { + "$oid": "6711d7eacd60fca157e615e2" + } + }, + { + "text": "Igbe is chill guy. He graduated from CCNY with a master so he understands the struggles students go to. Will be taking him again for EE lab.", + "pos": 0.0, + "neu": 0.912, + "neg": 0.088, + "_id": { + "$oid": "6711d7eacd60fca157e615e3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eacd60fca157e615e5" + }, + "professor_name": "Ricky Zhu", + "rating": 3.8, + "department": "Biology department", + "comments": [ + { + "text": "He is a tough grader. You won't get back your assignments until midterms or later. This sucks because you won't learn, since you don't know what you did wrong. BUT He is fair, passionate, funny. If you genuinely work hard, participate, ask questions after class, he will do all he can to help you learn. If you work hard, you should be fine.", + "pos": 0.218, + "neu": 0.674, + "neg": 0.107, + "_id": { + "$oid": "6711d7eacd60fca157e615e6" + } + }, + { + "text": "You can give Ricky a draft and he'll give you edits, but once you give the final product with all of the edits, you'll still get a bad grade. He's very sarcastic and humorous at times, and he also made me into a better writer. But there are definitely better T.A's.", + "pos": 0.222, + "neu": 0.664, + "neg": 0.114, + "_id": { + "$oid": "6711d7eacd60fca157e615e7" + } + }, + { + "text": "Ricky is a really smart guy and he's actually pretty funny. But he is a super tough grader when it comes to lab reports !! Tests were ok and quizzes helped for the 2 lab exams. But he is such a tough grader when it comes to writing. Lit's of hw and quizzes every lab day. Not an easy A for sure", + "pos": 0.229, + "neu": 0.685, + "neg": 0.085, + "_id": { + "$oid": "6711d7eacd60fca157e615e8" + } + }, + { + "text": "Ricky is awesome!!! He knows his stuff. I enjoyed his lab section. Quizzes are given everyday at the beginning of the class. It's not an easy A definitely, you have to work hard for an A, but you gain knowledge.", + "pos": 0.246, + "neu": 0.695, + "neg": 0.059, + "_id": { + "$oid": "6711d7eacd60fca157e615e9" + } + }, + { + "text": "I really enjoyed lab class with Ricky. However, the class has a lot of homework and he does not give feedback on your homework until half the semester is over. Try to get his feedback as soon as you hand in your homework. Also he notes down which students participate frequently. If you don't participate, then try to sit in the front.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d7eacd60fca157e615ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ebcd60fca157e615ec" + }, + "professor_name": "Roberta Davanzo", + "rating": 4.6, + "department": "Italian department", + "comments": [ + { + "text": "She is so nice and helpful, even if you didnt take italian part 1 she will help you. All of the notes are from the textbook so the exams are fair.", + "pos": 0.302, + "neu": 0.698, + "neg": 0.0, + "_id": { + "$oid": "6711d7ebcd60fca157e615ed" + } + }, + { + "text": "She's one of the best professors I ever had in city college. She's extremely helpful and she enjoys what she teaches. She cares about her students and takes the class serious. Avoid being late or absent without an excuse.", + "pos": 0.27, + "neu": 0.636, + "neg": 0.094, + "_id": { + "$oid": "6711d7ebcd60fca157e615ee" + } + }, + { + "text": "SHES AWESOME!!! Very lineant, you could get 20 things wrong on the test and still get a 98%, occasional 20 min quizzes 1 class prior to actual exam helps you understand alot. \"COMPITI\" is the magic word the ends the class", + "pos": 0.168, + "neu": 0.769, + "neg": 0.063, + "_id": { + "$oid": "6711d7ebcd60fca157e615ef" + } + }, + { + "text": "she is the best!!!!!i had her class at 8.00am and it was the only class i enjoyed even thought early in the morning!!!!", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d7ebcd60fca157e615f0" + } + }, + { + "text": "Very helpful regardless of prior knowledge or interest level; grading values more participation and less arbitrary percentages. However the emphasis on the class is conversational so if you don't know a Romance language you might get lost with the grammar.", + "pos": 0.179, + "neu": 0.714, + "neg": 0.107, + "_id": { + "$oid": "6711d7ebcd60fca157e615f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ebcd60fca157e615f3" + }, + "professor_name": "Edgar Mercado", + "rating": 5, + "department": "Spanish department", + "comments": [ + { + "text": "My Condolences Go out to his family... May he Rest In Peace. He was truly a great professor, he would surely be missed!!!!", + "pos": 0.419, + "neu": 0.518, + "neg": 0.063, + "_id": { + "$oid": "6711d7ebcd60fca157e615f4" + } + }, + { + "text": "He's been one of the most special proffesoors I ever had and I give my condolences to his family.", + "pos": 0.143, + "neu": 0.857, + "neg": 0.0, + "_id": { + "$oid": "6711d7ebcd60fca157e615f5" + } + }, + { + "text": "Very helpful and patient. Really cares and wants students to learn. Great smile.", + "pos": 0.591, + "neu": 0.409, + "neg": 0.0, + "_id": { + "$oid": "6711d7ebcd60fca157e615f6" + } + }, + { + "text": "A very helpful professor. He made me feel comfortable in class, and I picked up more Spanish than I expected. His exercises are innovative, and he really takes the time to make sure you understand the work. I would highly recommend him.", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d7ebcd60fca157e615f7" + } + }, + { + "text": "He's pretty easy, very nice and really wants his students to get it. He's hot because he dresses nice, and his shoes are on point which is very important for every man to know. over all great class and I really don't want to learn the language.", + "pos": 0.305, + "neu": 0.67, + "neg": 0.025, + "_id": { + "$oid": "6711d7ebcd60fca157e615f8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ebcd60fca157e615fa" + }, + "professor_name": "Carolina Franco", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "She is a very nice person. At times it appeared she didn't have a great grasp of the material but her tests were easy just read the book (2 of them non cumulative). The only other assignment was an easy final paper at the end.", + "pos": 0.184, + "neu": 0.775, + "neg": 0.041, + "_id": { + "$oid": "6711d7ebcd60fca157e615fb" + } + }, + { + "text": "She is so nice!", + "pos": 0.566, + "neu": 0.434, + "neg": 0.0, + "_id": { + "$oid": "6711d7ebcd60fca157e615fc" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7ebcd60fca157e615fd" + } + }, + { + "text": "Very nice!", + "pos": 0.772, + "neu": 0.228, + "neg": 0.0, + "_id": { + "$oid": "6711d7ebcd60fca157e615fe" + } + }, + { + "text": "Prof. Franco's course is interesting. She talks a lot, but - it's because she's very youthful and loves the topic. She gives a review for exams, but sometimes leaves out information, so study EVERYTHING. She does not like tardiness (but that's a double standard) and will knock off points for not attending. Lots of reading, little writing. Focus!", + "pos": 0.162, + "neu": 0.798, + "neg": 0.039, + "_id": { + "$oid": "6711d7ebcd60fca157e615ff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eccd60fca157e61601" + }, + "professor_name": "Joseph Hart", + "rating": 4.3, + "department": "Art department", + "comments": [ + { + "text": "You draw a lot in his class, which I really enjoyed! The professor cares about how much time and effort you put into each project. As long as you do them, youll be fine. We start each project with sketches then drafts then final. Critiquing can get boring at times. The professor likes it when students participate!", + "pos": 0.178, + "neu": 0.787, + "neg": 0.035, + "_id": { + "$oid": "6711d7eccd60fca157e61602" + } + }, + { + "text": "When I signed up for this class I had no idea it was an actual drawing class. The first couple of projects were okay but the ones later in the semester I actually enjoyed doing. We spend half of the class critiquing and the other half working on our projects. He is very strict on attendance and will mark you absent if you're late twice.", + "pos": 0.085, + "neu": 0.892, + "neg": 0.023, + "_id": { + "$oid": "6711d7eccd60fca157e61603" + } + }, + { + "text": "One of the most helpful professors I've had in regards to the reality of being a working artist. Funny but serious about his work and the work of whoever enters his classroom. Plus he's SMOKIN'!", + "pos": 0.114, + "neu": 0.848, + "neg": 0.038, + "_id": { + "$oid": "6711d7eccd60fca157e61604" + } + }, + { + "text": "He's really nice but a hard grader. You need to put a lot of effort to gain an A. However, otherwise you can still enjoy his class. Most of his class is about critique and he focuses on hand-drawing illustration rather than computer based one. I really loved this class and recommend anyone who love to draw! He's cool and fair.", + "pos": 0.374, + "neu": 0.608, + "neg": 0.019, + "_id": { + "$oid": "6711d7eccd60fca157e61605" + } + }, + { + "text": "Amazing professor. extremely fun class you will learn different techniques. He is awesome.", + "pos": 0.535, + "neu": 0.465, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e61606" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eccd60fca157e61608" + }, + "professor_name": "Rebecca Siefert", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "I am a freshman at BMCC. Professor Siefert was our substitute professor for art history. I thoroughly enjoyed her knowledge, confidence and personalable approach to todays lesson. I was very inspired to pursue my passion as an art historian after her lecture. Hope she is able to come back! I would definitely sign up for one of her courses!", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e61609" + } + }, + { + "text": "becky.. where do I start? she was such a pleasure to have as a professor.. very accessible and always there for me! I miss her a lot! what a great educator", + "pos": 0.221, + "neu": 0.737, + "neg": 0.042, + "_id": { + "$oid": "6711d7eccd60fca157e6160a" + } + }, + { + "text": "Awesome Professor! By far the best professor I've had since being at Brooklyn College. Each session had me engrossed in the material she was presenting. And she had a way of making everyone want to participate in the class. She gets 10 out of 5!", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e6160b" + } + }, + { + "text": "She's a very sweet and nice professor. She's just there for her students to help.", + "pos": 0.43, + "neu": 0.57, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e6160c" + } + }, + { + "text": "i love becky!!! so sweet and smart!! definitely take her!!!", + "pos": 0.705, + "neu": 0.295, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e6160d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eccd60fca157e6160f" + }, + "professor_name": "Jiyoung Yoon", + "rating": 4.4, + "department": "Economics department", + "comments": [ + { + "text": "You won't learn anything. There's nothing else I can say.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e61610" + } + }, + { + "text": "She is one of the BEST professors from econ dept. she actually cares about how your doing and wants you to do well in her class. She will explain something you don't understand over and over again. I highly recommend to take her. I took her twice. You won't regret it.", + "pos": 0.248, + "neu": 0.752, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e61611" + } + }, + { + "text": "Tells you on the first day she doesn't give anyone below B-, tells you not to buy txbk because everything will be from lecture. Don't be discouraged by hard hw, she grades check/+/- on effort and it doesnt count really toward grade. You're allowed equation sheet where you can basically put everything. Gives tons of excred (like for coming to class)", + "pos": 0.074, + "neu": 0.904, + "neg": 0.022, + "_id": { + "$oid": "6711d7eccd60fca157e61612" + } + }, + { + "text": "Lecture can be overwhelming, but she is not a tough grader. Its worth the time. You will learn so many things. Great Prof!", + "pos": 0.339, + "neu": 0.661, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e61613" + } + }, + { + "text": "Wish I had the opportunity to take more classes with her as the teacher.", + "pos": 0.314, + "neu": 0.686, + "neg": 0.0, + "_id": { + "$oid": "6711d7eccd60fca157e61614" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7edcd60fca157e61616" + }, + "professor_name": "Adrienne Williams", + "rating": 4.7, + "department": "Speech department", + "comments": [ + { + "text": "One of the best prof.s at CCNY. Great sense of humor, amazing personality, and the most importantly HONEST. She tells you exactly what you need to work on to improve your acting tools and succeed in this business. She knows a lot about the business and wants you to be a successful actor. You will truly learn A LOT from her. In general, AMAZING PROF", + "pos": 0.416, + "neu": 0.584, + "neg": 0.0, + "_id": { + "$oid": "6711d7edcd60fca157e61617" + } + }, + { + "text": "Prof. Williams is a funny and kind hearted professor. She is stern with people's acting, but knows what she wants. Adrienne will give advice to help us do better and encourage us to not give up. I recommend her", + "pos": 0.368, + "neu": 0.632, + "neg": 0.0, + "_id": { + "$oid": "6711d7edcd60fca157e61618" + } + }, + { + "text": "She is funny, outstanding and a great professor. Her jokes or ways of expressing the class is amazing and find her one of the best I've seen. Definitely recommend her", + "pos": 0.544, + "neu": 0.456, + "neg": 0.0, + "_id": { + "$oid": "6711d7edcd60fca157e61619" + } + }, + { + "text": "Professor Williams is funny, cool and quirky. She'll grade your speeches pretty tough so just meet her expectations.", + "pos": 0.351, + "neu": 0.586, + "neg": 0.063, + "_id": { + "$oid": "6711d7edcd60fca157e6161a" + } + }, + { + "text": "Prof. Williams' speech course is excellent for everyone from experienced speakers to those shy in public. For the experienced, she gives you many ideas to fine tune your skills and the class is an easy A. For the inexperienced, she really makes you come out of your shell and you learn real ways to be more comfortable in front of people.", + "pos": 0.171, + "neu": 0.8, + "neg": 0.029, + "_id": { + "$oid": "6711d7edcd60fca157e6161b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7edcd60fca157e6161d" + }, + "professor_name": "Dimitrios Fafalis", + "rating": 4.2, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Although some may say Fafalis is great at teaching, he is an unfair grader. Fafalis has bias when grading. I received a higher cumulative grade than another student, yet that other student had a letter grade higher than I did. His bias grading was shown throughout the rest of the semester through homeworks. If asked for a grade change he avoids it.", + "pos": 0.06, + "neu": 0.83, + "neg": 0.111, + "_id": { + "$oid": "6711d7edcd60fca157e6161e" + } + }, + { + "text": "Simply the best professor Ive had at city college, Dimitrios inspired me to pursue a concentration in structural engineering due to how enjoyable he made mechanics of materials. If I could take him for advanced structures and materials classes I would sign up for every one he taught.", + "pos": 0.218, + "neu": 0.782, + "neg": 0.0, + "_id": { + "$oid": "6711d7edcd60fca157e6161f" + } + }, + { + "text": "Prof Fafalis is drop dead AMAZING! His lectures make you really learn the material and appreciate the concepts behind coding. While the homework seems tough and long and hard, it is always manageable with extra help and consistent focus in class. Pay attention in class, take it seriously, and you will LEARN and get a high grade!", + "pos": 0.14, + "neu": 0.677, + "neg": 0.183, + "_id": { + "$oid": "6711d7edcd60fca157e61620" + } + }, + { + "text": "Professor Fafalis is the best. The homework assignments seem hard but they are actually doable, you just have to think about them more. Tests are very fair,. He gives good feedback on assignments, very understanding, and very reasonable. Not an easy A but not a hard A either if you put effort in. You will learn a lot in the class.", + "pos": 0.16, + "neu": 0.779, + "neg": 0.061, + "_id": { + "$oid": "6711d7edcd60fca157e61621" + } + }, + { + "text": "Fafalis is drop dead amazing! His lectures, while fast, are straight to the point. He always makes sure to help any students in need. He is great at explaining hard concepts in simple ways. LOVE HIMM", + "pos": 0.365, + "neu": 0.492, + "neg": 0.142, + "_id": { + "$oid": "6711d7edcd60fca157e61622" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eecd60fca157e61624" + }, + "professor_name": "Kyungjin Jo", + "rating": 3.4, + "department": "Asian Studies department", + "comments": [ + { + "text": "She's supper sweet and understanding. Take this class only if you like to read and if you're interested in learning about Japan, China, and Korea. participation and attendance is 30 midterm 20 , easy if you actually study and take good notes in class she will mention what's gonna be on it presentation 20 final 30 take home 2 essay 3pgs each", + "pos": 0.197, + "neu": 0.803, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61625" + } + }, + { + "text": "She is very kind and knows most of the material. Although her teaching is not consistant with the syllabus. She says there will be pop quizzes but there were none for my class. This class is great if you want and East A but honestly it was just boring. No notes were required and she barely took attendance.", + "pos": 0.189, + "neu": 0.73, + "neg": 0.081, + "_id": { + "$oid": "6711d7eecd60fca157e61626" + } + }, + { + "text": "She is very caring and super sweet! We had a small class (15), so we had to do 2 presentations, lots of readings, & 10 page paper final. SHE DOES NOT LECTURE! Her class is based on class discussions and you have to read an article for almost every class. She doesnt reply to emails, do not miss a lot of classes, she will call you out on it.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61627" + } + }, + { + "text": "Professor Jo is very insightful, caring and gives good feedback on your presentation but she does not lecture. Her class is heavily based on student discussion and if you don't have much to say, there could be lots of awkward silences. She does try her hardest to engage the class. You wont be graded on many things so attendance is very important!", + "pos": 0.148, + "neu": 0.825, + "neg": 0.027, + "_id": { + "$oid": "6711d7eecd60fca157e61628" + } + }, + { + "text": "She gives a midterm, one reading response, and a presentation only. She is intelligent and caring, however, she DOES NOT LECTURE. All the classes are dedicated to movies or student response to the readings (which she bases her small lecture around). There is no effort put into things by her basically. At least she's nice!", + "pos": 0.191, + "neu": 0.775, + "neg": 0.034, + "_id": { + "$oid": "6711d7eecd60fca157e61629" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eecd60fca157e6162b" + }, + "professor_name": "Paul Kim", + "rating": 3.8, + "department": "Economics department", + "comments": [ + { + "text": "Rumors have it that he got in trouble for his grading. Students had no idea what there grade was until he posted it on CunyFirst. He says he responds to emails but he doesnt. I like his style of teaching but he does not understand every student is different. His criticism is very hypocritical, and he belittles students the wrong way. Mixed emotion", + "pos": 0.0, + "neu": 0.754, + "neg": 0.246, + "_id": { + "$oid": "6711d7eecd60fca157e6162c" + } + }, + { + "text": "He is a great life lesson instructor who will guide you towards your goal. He isnt like any prof at CCNY and actually makes you work for your grade NEVERTHELESS his style of teaching is very hypocritical. His grading is not described towards a specific metric and he downgrades students the wrong way. He got in trouble for his grading criteria", + "pos": 0.058, + "neu": 0.785, + "neg": 0.157, + "_id": { + "$oid": "6711d7eecd60fca157e6162d" + } + }, + { + "text": "Paul is one of those professors other people will tell you not to take because his class is a lot of work. If you want to actually learn about real-world tasks and skills you will need, TAKE HIS CLASS. If you don't want to work for it don't waste his time. He tells you what you need to hear not what you want to. Simply put, he is one of the best.", + "pos": 0.101, + "neu": 0.867, + "neg": 0.032, + "_id": { + "$oid": "6711d7eecd60fca157e6162e" + } + }, + { + "text": "Best prof. I have every had at City. Life changing class. He tells you the truth of how it is and you can actually believe him bc he is successful outside the academia. Kim is fun and give a TON of good and practical life advice ( I wish I heard this freshmen year but Im happy someone gave me the talks he did now) Best class ever. Life changing!!", + "pos": 0.279, + "neu": 0.721, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e6162f" + } + }, + { + "text": "Took him for Applied Investing. Awesome professor. Always gives students life advice and teaches things that actually matter.", + "pos": 0.245, + "neu": 0.755, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61630" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7eecd60fca157e61632" + }, + "professor_name": "Lynne Scott-Jackson", + "rating": 4.2, + "department": "Media Arts department", + "comments": [ + { + "text": "You can tell how passionate she is as a teacher and how much she cares for her students. There is a lot of work and reading, but less than Appelbaum's class from what I have heard. If you learn to manage your time and read the textbook, you'll be alright. Despite the work, she was my favorite professor of the semester.", + "pos": 0.145, + "neu": 0.855, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61633" + } + }, + { + "text": "A true gem of CCNY's MCA department. She utilizes her own life experience and personality to enrich the curriculum. Yes, you have to do work! She genuinely cares about her students. Wish I had taken her classes earlier!", + "pos": 0.257, + "neu": 0.743, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61634" + } + }, + { + "text": "Lectures are fun and engaging, strong emphasis on current events in the world and the PR industry. Lectures have little to do with the material you learn in the textbook, so to really succeed you will have to read the textbook on your own.", + "pos": 0.242, + "neu": 0.758, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61635" + } + }, + { + "text": "She's great professor and has a passion in the field of Public Relations. She gives great insight in Public Relations and makes sure that her students are up to date on PR news. Make sure you read the textbook throughout the semester.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61636" + } + }, + { + "text": "I had her for intro to PR. She is very involved with her students. You can tell she is for and will go to bat for students. Not much work, its a work like environment with her class. Stay up to date on current news. If you ask a question or advice be prepared to sit, she can talk and it is useful its just a lot. Overall was class, READ CHAPTERS!!!!", + "pos": 0.109, + "neu": 0.891, + "neg": 0.0, + "_id": { + "$oid": "6711d7eecd60fca157e61637" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7efcd60fca157e61639" + }, + "professor_name": "Nathan Oglesby", + "rating": 5, + "department": "Latin department", + "comments": [ + { + "text": "I really miss him as my Latin teacher :( He was an amazing teacher... even got the \"lazy\" kids in the class to like Latin and get their grades up! He grades based on effort rather than specifics... it was an easy but he inspired me to learn more about the subject :) Super chill and rapped for us in Latin, he's a fun teacher that made Latin fun!", + "pos": 0.316, + "neu": 0.628, + "neg": 0.056, + "_id": { + "$oid": "6711d7efcd60fca157e6163a" + } + }, + { + "text": "Probably the best teacher out there ; grades based on your understanding of the subject, and not specifics. Cares if the student understands the topic generally.", + "pos": 0.137, + "neu": 0.782, + "neg": 0.081, + "_id": { + "$oid": "6711d7efcd60fca157e6163b" + } + }, + { + "text": "This professor is super chill but you have to do the reading. He gets angry when he senses the class hasn't read (and he should be) and gives pop quizzes. The readings are reasonable and he gives extensions on papers. A little disorganized and goes on tangents but super nice if you show an effort. Genuinely cares for his students. & super cute!!", + "pos": 0.292, + "neu": 0.63, + "neg": 0.078, + "_id": { + "$oid": "6711d7efcd60fca157e6163c" + } + }, + { + "text": "Great lecturer. Tries his darndest to make the topic interesting, compelling, and meaningful to our lives today. Cute. I would beat.", + "pos": 0.467, + "neu": 0.533, + "neg": 0.0, + "_id": { + "$oid": "6711d7efcd60fca157e6163d" + } + }, + { + "text": "Mad chill and extremely funny. I definitely learned a lot.", + "pos": 0.376, + "neu": 0.428, + "neg": 0.196, + "_id": { + "$oid": "6711d7efcd60fca157e6163e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7efcd60fca157e61640" + }, + "professor_name": "Curt Sankar", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "He is a very nice professor. He make the materials very details and clear. If you just know him, you think he is very sticky professor. But, it's not true. He will give you some chance to improve your grade if you get low grade of your test. He is a logical person. He will remind you prepare your test and tell you what contents you need to review.", + "pos": 0.131, + "neu": 0.798, + "neg": 0.072, + "_id": { + "$oid": "6711d7efcd60fca157e61641" + } + }, + { + "text": "The best TA ever!!! Super laid back, engaging with the students, but also takes his work seriously. Show up with a good attitude, do the lab work and study and youll definitely get an A. His midterm and finals are legit, but fair (heard other TAs had simpler tests). If you dont take Curt, youre only making it less fun/more difficult for yourself", + "pos": 0.231, + "neu": 0.706, + "neg": 0.063, + "_id": { + "$oid": "6711d7efcd60fca157e61642" + } + }, + { + "text": "BEST TA IN CITY COLLEGE! HE ALWAYS THERE TO HELP AND DOES HIS BEST TO MAKE THINGS SIMPLE FOR STUDENTS TO SUCCEED.", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d7efcd60fca157e61643" + } + }, + { + "text": "Such a great lab instructor! Overall very straight forward. He gives easy to follow powerpoint slides instead of referring to the lab manual lab instructions, which are very confusing. Also gives a lot of support (review sheets and guidelines) for lab exams and lab reports, follow those and an A is very feasible.", + "pos": 0.195, + "neu": 0.77, + "neg": 0.035, + "_id": { + "$oid": "6711d7efcd60fca157e61644" + } + }, + { + "text": "Simply the best. If you dont take him, you are making poor choices in life.", + "pos": 0.207, + "neu": 0.64, + "neg": 0.153, + "_id": { + "$oid": "6711d7efcd60fca157e61645" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7efcd60fca157e61647" + }, + "professor_name": "Jane Bolster", + "rating": 4.6, + "department": "English department", + "comments": [ + { + "text": "One of the best Professors at City. Her class is very writing heavy which is obvious given the course name. But her projects are fun, they make you think and if you're stuck she's always willing to help out and give feedback. She replies to her emails within a day. Take her if you like to read + write, and even if you don't this is a great intro.", + "pos": 0.229, + "neu": 0.741, + "neg": 0.029, + "_id": { + "$oid": "6711d7efcd60fca157e61648" + } + }, + { + "text": "Jane was a delight to have but if you don't like to write papers, do not take her writing for the sciences course. Aside from the papers that you have due probably every other week, you have weekly discussion post a two monthly journal entries and while none of it is too difficult you will spend a lot time writing, reflecting, and rewriting.", + "pos": 0.036, + "neu": 0.878, + "neg": 0.087, + "_id": { + "$oid": "6711d7efcd60fca157e61649" + } + }, + { + "text": "Not bad, shes an interesting professor and her assignments are easy as you follow the guidelines and samples provided. HOWEVER, a lot of essays... she graded your attendance so try not to miss any classes as you only meet once a week. No exams but lots of writing assignments: 5 papers, weekly discussions, peer reviews, etc.", + "pos": 0.117, + "neu": 0.856, + "neg": 0.027, + "_id": { + "$oid": "6711d7efcd60fca157e6164a" + } + }, + { + "text": "Her class is well structured and she is one of the best professors I've had thus far. For ENGL 21003, she assigns a few papers and a group assignment. I would say that she is a very fair grader and if you are able to complete all the assignment you'll receive a good grade. There are NO TEST OR QUIZ in this class which is definitely a positive.", + "pos": 0.221, + "neu": 0.744, + "neg": 0.036, + "_id": { + "$oid": "6711d7efcd60fca157e6164b" + } + }, + { + "text": "SHE IS THE BEST. I RECCOMEND THAT YOU TAKE HER FOR YOUR WRITING FOR THE SCIENCES CLASS.", + "pos": 0.208, + "neu": 0.792, + "neg": 0.0, + "_id": { + "$oid": "6711d7efcd60fca157e6164c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f0cd60fca157e6164e" + }, + "professor_name": "Christine Chrissian", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Dr. Chrissian remembers what it's like to be an undergrad and cares about teaching well.", + "pos": 0.388, + "neu": 0.612, + "neg": 0.0, + "_id": { + "$oid": "6711d7f0cd60fca157e6164f" + } + }, + { + "text": "TAKE HER SHE IS AMAZING. SUCH A GOOD HUMAN TOO. THIS IS WHY WE NEED YOUNG AND COMPASSIONATE PROFESSORS LIKE HER WHO KNOWS THE STRUGGLES OF THIS GENERATION AND NOT THE OLD RAGS.. FROM WHEN THE ALPHABETS WERE FIRST INVENTED.", + "pos": 0.248, + "neu": 0.701, + "neg": 0.05, + "_id": { + "$oid": "6711d7f0cd60fca157e61650" + } + }, + { + "text": "Clear layout of the class, 25% assignment, 25% participation and 50% (25%&25%) 2 exams. She gives amazing feedbacks and genuinely wants you to do well. Exams are all multiple choice questions coming straight from the slides, would be a bit tricky to understand but ask her and she will clarify. LOVE HER!!", + "pos": 0.237, + "neu": 0.742, + "neg": 0.021, + "_id": { + "$oid": "6711d7f0cd60fca157e61651" + } + }, + { + "text": "A real gem. She's honestly changed my mind and made me love the sciences all over again. Her different style of teaching made me incorporate it in other classes and they have all gone really well this semester. It's only an \"easy A\" because of the way she teaches the class. Very easy to talk to outside of class, and extremely understanding. TAKEHER", + "pos": 0.213, + "neu": 0.787, + "neg": 0.0, + "_id": { + "$oid": "6711d7f0cd60fca157e61652" + } + }, + { + "text": "Exams are only 20% of your grade with her, projects and papers consist of the rest. Her exams are 20 mc that come straight from her slides. Take her if you want an easy B+/A- in this course. I barely tried on the exams and still did well because she is an easy grader. She went to CCNY as a student so she genuinely tries to not be like the others!", + "pos": 0.145, + "neu": 0.828, + "neg": 0.027, + "_id": { + "$oid": "6711d7f0cd60fca157e61653" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f0cd60fca157e61655" + }, + "professor_name": "Stephanie Lish", + "rating": 1, + "department": "Art department", + "comments": [ + { + "text": "By far the worst professor I've ever taken. Came off rude and even narcissistic at times, and as another reviewer said talking to her about grades or assignments is like talking to a brick wall. She has no sympathy and 90% of the class ended up dropping it throughout the semester. I could write a book about how horrible she was. BEWARE.", + "pos": 0.035, + "neu": 0.789, + "neg": 0.176, + "_id": { + "$oid": "6711d7f0cd60fca157e61656" + } + }, + { + "text": "This class is hard, she is terrible she does not teach , she won't help you if you have questions and she blames it all on you", + "pos": 0.0, + "neu": 0.709, + "neg": 0.291, + "_id": { + "$oid": "6711d7f0cd60fca157e61657" + } + }, + { + "text": "She comes off very snobby. She makes it be known that shes the professor and youre the student. Very opinionated and talking to her about grades/assignments is like talking to a brick wall.", + "pos": 0.069, + "neu": 0.849, + "neg": 0.082, + "_id": { + "$oid": "6711d7f0cd60fca157e61658" + } + }, + { + "text": "Grades really harshly, but didn't give any feedback and doesn't accept resubmitted work or give extra credit. Class is all lecture and she has, on several occasions, said things wrong/been unsure and I found it really confusing. Doesn't give enough time for tests/quizzes. Not really the nicest person either, opinionated and lowkey rude.", + "pos": 0.051, + "neu": 0.71, + "neg": 0.239, + "_id": { + "$oid": "6711d7f0cd60fca157e61659" + } + }, + { + "text": "She is terrible", + "pos": 0.0, + "neu": 0.392, + "neg": 0.608, + "_id": { + "$oid": "6711d7f0cd60fca157e6165a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f0cd60fca157e6165c" + }, + "professor_name": "James Fama", + "rating": 4.2, + "department": "Education department", + "comments": [ + { + "text": "Professor Fama is an amazing professor. He truly cares about the subject he teaches and his interest/passion show through his lectures. He grades very fair. Getting good grades is very easy, and he's honestly a pleasure, take him!!", + "pos": 0.464, + "neu": 0.536, + "neg": 0.0, + "_id": { + "$oid": "6711d7f0cd60fca157e6165d" + } + }, + { + "text": "He acts like he cares but doesn't really. he has a attitude problem. he tries to make jokes but comes off so weird. this semester was not his best.", + "pos": 0.134, + "neu": 0.587, + "neg": 0.28, + "_id": { + "$oid": "6711d7f0cd60fca157e6165e" + } + }, + { + "text": "A real gem in the Education Dept. Do not hesitate to enroll in his course. Just heed his directions and you shall pass. He's also very kind-hearted and courteous to everyone including the students that did not take his course seriously. An easy A. Nuff said.", + "pos": 0.159, + "neu": 0.808, + "neg": 0.033, + "_id": { + "$oid": "6711d7f0cd60fca157e6165f" + } + }, + { + "text": "Professor James has very good lessons and information. I just wish he would post this information on blackboard for future use and help towards discussions. He can be unorganized but will still get on task. 15hr for field work required. Graded on case study, reading discussion notes and 2 more papers.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d7f0cd60fca157e61660" + } + }, + { + "text": "Prof Fama is amazing and super funny. He makes class very fun and is a teacher in a elementary school during the day time. He is caring and accessible via email at all times. The work load is reasonable and doable and he is a easy grader. I love this class and I am glad I took it with him. I learned a lot from his class.", + "pos": 0.318, + "neu": 0.682, + "neg": 0.0, + "_id": { + "$oid": "6711d7f0cd60fca157e61661" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f1cd60fca157e61663" + }, + "professor_name": "Joseph Mansky", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Good professor! Willing to work with your needs.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d7f1cd60fca157e61664" + } + }, + { + "text": "great professor. there are a lot of readings but they are all really interesting choices. you can tell he is really passionate about teaching and he gives good feedback. just beware that he expects participation, there are pop quizzes and a group project", + "pos": 0.283, + "neu": 0.717, + "neg": 0.0, + "_id": { + "$oid": "6711d7f1cd60fca157e61665" + } + }, + { + "text": "He gives off Petter Parker vibes from the first Spiderman movie so, I guess that's why some find him attractive. Fair professor overall the only thing is the large amount of reading. For this class, we had to read 8 books and some of them were ancient which was even harder. Other than that he is very helpful and at times can be very funny.", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d7f1cd60fca157e61666" + } + }, + { + "text": "One of the best English teachers/professors I have ever taken! He gives very useful and detailed feedback. He is always there to help you and all of his assignments are quite useful to your learning. Do your assignments and participate, you will easily get an A. Take him, you won't regret it!", + "pos": 0.288, + "neu": 0.712, + "neg": 0.0, + "_id": { + "$oid": "6711d7f1cd60fca157e61667" + } + }, + { + "text": "easy", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7f1cd60fca157e61668" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f1cd60fca157e6166a" + }, + "professor_name": "Han Jun Jeon", + "rating": 2.5, + "department": "Biology department", + "comments": [ + { + "text": "WORST PROFESSOR EVER! HE DOESNT CARE ABOUT CLASS. HE DOESNT TEACHS. IF YOU WANNA FAIL CLASS TAKE HIM!!!!", + "pos": 0.0, + "neu": 0.568, + "neg": 0.432, + "_id": { + "$oid": "6711d7f1cd60fca157e6166b" + } + }, + { + "text": "I took Professor Jeon for Bio 1001 lab spring of 2022, honestly a great professor. Fair with grading, if you disagree with the way your quiz was graded he would go over it with you and give you points back. Gave my class extra credit when he saw some students struggling. The quizzes were very fair straight from the slides.", + "pos": 0.226, + "neu": 0.701, + "neg": 0.073, + "_id": { + "$oid": "6711d7f1cd60fca157e6166c" + } + }, + { + "text": "he is so mean and vague and really doesn't care about his students. he should be fired and disgraced. he was rude to students during class and barely helped anyone who asked. hes honestly just doesn't care and seemed so lost and confused the whole semester. like he couldn't figure out what we were doing and buddy its well 10.", + "pos": 0.096, + "neu": 0.621, + "neg": 0.283, + "_id": { + "$oid": "6711d7f1cd60fca157e6166d" + } + }, + { + "text": "Got a 45 out 50. Pretty chill professor. Class quizzes and practical was open book. He blesses it at the end of the semester. Lot of reviews criticize him but if you failing online and its open book. He mends the rules a lot in favor of students. A group didnt even do an experiment and he said hed ignore that they didnt do it. What a G", + "pos": 0.1, + "neu": 0.78, + "neg": 0.12, + "_id": { + "$oid": "6711d7f1cd60fca157e6166e" + } + }, + { + "text": "He is the worst teacher he gives very vague instructions and tells us to refer to the syllabus when it is as vague as he is. He grades his quizzes so harshly. He does not like to help out his students and overall dose not care about us. His lectures are so boring and he has a monotone voice. He takes way to long to get back to out emails. FIRE HIM.", + "pos": 0.0, + "neu": 0.759, + "neg": 0.241, + "_id": { + "$oid": "6711d7f1cd60fca157e6166f" + } + }, + { + "text": "Han JunJeon was a tough lab instructor and his grading in the beginning was tough. He seemed confused during the whole semester and could not explain well. However, towards the end he did bless everyone's grade. I would say to avoid him if you can. He is also very rude at times and is a tough grader in the beginning of the semester.", + "pos": 0.039, + "neu": 0.765, + "neg": 0.196, + "_id": { + "$oid": "6711d7f1cd60fca157e61670" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f1cd60fca157e61672" + }, + "professor_name": "Stephanie Rose", + "rating": 2.2, + "department": "Education department", + "comments": [ + { + "text": "If struggling in class, let her know. She's really sweet and helps. Attendance is mandatory. You can't even be a minute late (this is not an exaggeration, she will mark you late). She gave a 1 question quiz the first 5 minutes of class. If you're late, you miss it which will also affect your grade. Gave extra points opportunity in midterm & final.", + "pos": 0.141, + "neu": 0.798, + "neg": 0.061, + "_id": { + "$oid": "6711d7f1cd60fca157e61673" + } + }, + { + "text": "heavy on attendance for no reason, not understanding. Ok professor but would not take again. Harsh grader and gives way too many assignments with little to no clear instructions.", + "pos": 0.092, + "neu": 0.707, + "neg": 0.202, + "_id": { + "$oid": "6711d7f1cd60fca157e61674" + } + }, + { + "text": "As a professor she was ok, heavy in attendance, not very understanding with attendance- doesnt understand we cant always be on time, mta is not in our hands takes many points off. unorganized, doesnt grade work on time nor check work carefully. would not take again", + "pos": 0.0, + "neu": 0.97, + "neg": 0.03, + "_id": { + "$oid": "6711d7f1cd60fca157e61675" + } + }, + { + "text": "Stressful. Okay as a professor. Will have you outside for class no matter even if it's raining. Spent from first day of class to late October outside. The amount of work will be stressful. Tried to take her second time for another class. Had to drop was to stressful.Had to observe a tree for a semester and watch it change and grow.", + "pos": 0.028, + "neu": 0.83, + "neg": 0.142, + "_id": { + "$oid": "6711d7f1cd60fca157e61676" + } + }, + { + "text": "As a person, she is very kind and is respectful. As a professor, she gives a lot of work ... one after another. There are also many times in which she is not clear on what she is asking us to do. Also, she is BIG on attendance. If you are late, it will affect your grade. Do the work, ask for help and show up and you'll be fine.", + "pos": 0.143, + "neu": 0.829, + "neg": 0.028, + "_id": { + "$oid": "6711d7f1cd60fca157e61677" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f2cd60fca157e61679" + }, + "professor_name": "Cassim Shepard", + "rating": 4.8, + "department": "Architecture department", + "comments": [ + { + "text": "The professor spoke clearly and loudly, making the material easy to understand. The final paper involves a lot of writing, but everything is fair. He is kind and gives reasonable extensions when requested. Although he may be a little slow to post things on Blackboard and may not fully understand the final assignment until much later; I recommend.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e6167a" + } + }, + { + "text": "I could have gotten an A on the final paper, but I go sloppy. Clear class and clear instructions. The readings may be a little much, but you can take what you need from a select few. Great professor!", + "pos": 0.261, + "neu": 0.739, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e6167b" + } + }, + { + "text": "Friendly, and gives good lectures", + "pos": 0.67, + "neu": 0.33, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e6167c" + } + }, + { + "text": "Extremely professional and informative on the topic of housing justice and its history.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e6167d" + } + }, + { + "text": "3-4 2 page response papers, and one 10 page paper as a final which is all done at home. Attend class and these assignments should be easy. Very nice guy who is caring and listens.", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e6167e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f2cd60fca157e61680" + }, + "professor_name": "Jizhong Xiao", + "rating": 3.6, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Dr. Xiao is a great professor and researcher. He is a very kind person, and would do anything to help his students. He is my favorite at CCNY.", + "pos": 0.36, + "neu": 0.64, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e61681" + } + }, + { + "text": "may learn lots of matlab if interested", + "pos": 0.31, + "neu": 0.69, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e61682" + } + }, + { + "text": "Awesome teacher", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d7f2cd60fca157e61683" + } + }, + { + "text": "This person doesn't know how to teach period. Class may be easy to get a descent grade. But in terms of actually learning not good at all.", + "pos": 0.065, + "neu": 0.832, + "neg": 0.103, + "_id": { + "$oid": "6711d7f2cd60fca157e61684" + } + }, + { + "text": "THis guy is hard to understand, he expects you to have a huge background knowledge, he doesn't help at all...gives you hw to do,but hes doesn't grade them at all.", + "pos": 0.07, + "neu": 0.819, + "neg": 0.111, + "_id": { + "$oid": "6711d7f2cd60fca157e61685" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f3cd60fca157e61687" + }, + "professor_name": "Andrew Worthington", + "rating": 4.3, + "department": "English department", + "comments": [ + { + "text": "check him out, your grade will thank you!", + "pos": 0.285, + "neu": 0.715, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e61688" + } + }, + { + "text": "Creative writing course was fun although sort of vague. Professor was smart and funny. I liked this class overall", + "pos": 0.498, + "neu": 0.444, + "neg": 0.058, + "_id": { + "$oid": "6711d7f3cd60fca157e61689" + } + }, + { + "text": "Professor was very clear and thoughtful. Helped the class through the material. A lot of modern writers but that was a good thing. Most important, helped me learn a thesis. Kinda cute too!", + "pos": 0.337, + "neu": 0.663, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e6168a" + } + }, + { + "text": "The readings were a little difficult to get through, but Professor helped us and made sure the class understood the material. This class was a requirement and though I'm not a huge reader, I enjoyed his class. I recommend him a lot. Also, we had 2 papers and one final paper/project that was very easy!", + "pos": 0.223, + "neu": 0.718, + "neg": 0.059, + "_id": { + "$oid": "6711d7f3cd60fca157e6168b" + } + }, + { + "text": "if you can understand the readings you have to do like plato and your a good writer you will do well-if not such a great writer will not be able to understand the reading will have a harder time doing the papers/assignments", + "pos": 0.113, + "neu": 0.818, + "neg": 0.069, + "_id": { + "$oid": "6711d7f3cd60fca157e6168c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f3cd60fca157e6168e" + }, + "professor_name": "Emily Mangione", + "rating": 1.2, + "department": "Art department", + "comments": [ + { + "text": "IMPOSSIBLE TO PLEASE. am i supposed to write a whole masters level response to even get decent points", + "pos": 0.151, + "neu": 0.849, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e6168f" + } + }, + { + "text": "Harsh grader but accessible whenever to answer questions or concerns. Would not take again", + "pos": 0.0, + "neu": 0.87, + "neg": 0.13, + "_id": { + "$oid": "6711d7f3cd60fca157e61690" + } + }, + { + "text": "she is such a hard grader and impossible to please. a introductory course should not be this hard !!", + "pos": 0.106, + "neu": 0.734, + "neg": 0.16, + "_id": { + "$oid": "6711d7f3cd60fca157e61691" + } + }, + { + "text": "The professor seems very passionate about Art but the lecture is very boring. There is either a quiz or discussion board due every Sunday and a semester-long exhibition assignment. The course load is manageable but she grades harshly especially for an introductory course.", + "pos": 0.05, + "neu": 0.877, + "neg": 0.073, + "_id": { + "$oid": "6711d7f3cd60fca157e61692" + } + }, + { + "text": "Harsh grader. Gives random grades completely not based on rubric. Gives 5 minutes break for a 2 hour 50 min class.", + "pos": 0.0, + "neu": 0.873, + "neg": 0.127, + "_id": { + "$oid": "6711d7f3cd60fca157e61693" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f3cd60fca157e61695" + }, + "professor_name": "Bill Drewes", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "Professor Drewes is the best! The class was online and he provided the textbooks. We worked in a team and had inspirational speakers in the lectures!", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e61696" + } + }, + { + "text": "Professor Drewes is one of my favorite professor in CCNY each lecture he brings in guest speakers who teach us about their professions and teaches us the importance of networking. Thanks to Professor Drewes connections I was able to get a Marketing Internship. Work load is do able and this class is a great way to boost your grade!", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e61697" + } + }, + { + "text": "Professor Drewes is truly an expert in his field. I felt confident in the material he covered & appreciated the speakers, who were also experts in their field, he invited to speak to the class. It really helped to have real people come in to share their entrepreneurial journey and experiences rather than just reading case studies in a text book.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e61698" + } + }, + { + "text": "Bill has been one of the best Professors that I have been taught by. He truly cares for his students and his classes are well put together and very interesting. He invites a lot of guest speakers to speak about their ventures as well as giving students opportunities to expand their horizons. Expect to read every week, group projects, and to laugh.", + "pos": 0.352, + "neu": 0.648, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e61699" + } + }, + { + "text": "Professor Drewes is one of a kind! Bill is your guy if you're looking to learn practical skills that schools tend not to teach. He invites his extensive network of professionals as guests to his lectures. You will learn teamwork and meet people from many different backgrounds. His kindness and expertise make the class the BEST at CCNY.", + "pos": 0.174, + "neu": 0.826, + "neg": 0.0, + "_id": { + "$oid": "6711d7f3cd60fca157e6169a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f4cd60fca157e6169c" + }, + "professor_name": "Irma Ostroff", + "rating": 4.3, + "department": "Architecture department", + "comments": [ + { + "text": "very verrrry sweet and kind woman! She will teach you valuable lessons to help you in your design future. Genuinely wants her students to do well. Def recommend", + "pos": 0.441, + "neu": 0.559, + "neg": 0.0, + "_id": { + "$oid": "6711d7f4cd60fca157e6169d" + } + }, + { + "text": "Professor Ostroff is one of the best professors that I have ever had. She is very encouraging and gives great feedback to her students. She is a true to herself and present her materials and techniques in a very understanding way.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d7f4cd60fca157e6169e" + } + }, + { + "text": "Great field trips. Will teach you how to \"see\" things.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d7f4cd60fca157e6169f" + } + }, + { + "text": "awesome profess. passionate teacher. MT/FINAL = presentation of completed drawings. very helpful easy class, she lets you leave early if you completed your work, very sweet/kind. i definately reccomend her. EZ A!!!", + "pos": 0.397, + "neu": 0.577, + "neg": 0.027, + "_id": { + "$oid": "6711d7f4cd60fca157e616a0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f4cd60fca157e616a2" + }, + "professor_name": "Heidi Goodson", + "rating": 4.9, + "department": "Mathematics department", + "comments": [ + { + "text": "She is nice to look at while she is lecturing :-). Very helpful and knowledgeable.", + "pos": 0.312, + "neu": 0.688, + "neg": 0.0, + "_id": { + "$oid": "6711d7f4cd60fca157e616a3" + } + }, + { + "text": "SHE IS A VERY GOOD PROF. SHE IS THERE TO TEACH NOT TELL YOU ABOUT HERSELF AND HER GRADES WHEN SHE WAS IN COLLEGE. eXCELLENT.", + "pos": 0.267, + "neu": 0.733, + "neg": 0.0, + "_id": { + "$oid": "6711d7f4cd60fca157e616a4" + } + }, + { + "text": "She is so amazing. She is fun and lovely. She will explaine everything to her student. She is one of the most wonderful prof I have every had in my life. I loved her voice and she is also pretty. So, if you are looking for a fun-loving prof, you should choose her. Good luck.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d7f4cd60fca157e616a5" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7f4cd60fca157e616a6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f4cd60fca157e616a8" + }, + "professor_name": "Oriana Moltisanti", + "rating": 5, + "department": "Languages department", + "comments": [ + { + "text": "Great professor--really enjoyed her class and is quite helpful in answering questions both during and after class. Not too much homework, but prepare to work hard and you'll be rewarded fairly--I did very well in this course but definitely put in at least 8-10 hours a week studying, reviewing, etc...if you put in the time, you'll get an A or B.", + "pos": 0.241, + "neu": 0.737, + "neg": 0.022, + "_id": { + "$oid": "6711d7f4cd60fca157e616a9" + } + }, + { + "text": "Prof. Moltisanti is amazing - she really makes you want to learn the Italian language. She assigns a moderate amount of homework but she's very understanding of people's difficulty with foreign languages and is always available for extra help. Love her!", + "pos": 0.254, + "neu": 0.687, + "neg": 0.059, + "_id": { + "$oid": "6711d7f4cd60fca157e616aa" + } + }, + { + "text": "She is smoking hot, I hope I can take Italian 2 with her again. Very nice professor, Attendance mandatory, HW every day, but it's not that arduous. She even help you with the Hw. But DON'T TAKE ADVANTAGE of HER kindness, that's what happened to my class. Otherwise, you will end up ruin yourself.", + "pos": 0.187, + "neu": 0.693, + "neg": 0.12, + "_id": { + "$oid": "6711d7f4cd60fca157e616ab" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7f4cd60fca157e616ac" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f5cd60fca157e616ae" + }, + "professor_name": "G Petro", + "rating": 2.1, + "department": "Psychology department", + "comments": [ + { + "text": "She isn't helpful, she is absent a lot, she takes forever to put up your grades, she doesn't answer your questions and she never responds to your emails. I would pick any TA but her.", + "pos": 0.0, + "neu": 0.953, + "neg": 0.047, + "_id": { + "$oid": "6711d7f5cd60fca157e616af" + } + }, + { + "text": "she tells us to always \"put things in our own words\" and not use the same words from the textbook when doing our hw but when she teaches, she uses the same words from the textbook, so a bit hypocritical IMO.", + "pos": 0.0, + "neu": 0.901, + "neg": 0.099, + "_id": { + "$oid": "6711d7f5cd60fca157e616b0" + } + }, + { + "text": "Real sweet, and helpful if you ask the right questions. If you dont read the required text youll be totally lost, as it should be.", + "pos": 0.191, + "neu": 0.724, + "neg": 0.085, + "_id": { + "$oid": "6711d7f5cd60fca157e616b1" + } + }, + { + "text": "she knows just as much as you aftrer reading the chapter.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7f5cd60fca157e616b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f5cd60fca157e616b4" + }, + "professor_name": "Elisabeth Zerofsky", + "rating": 4.8, + "department": "French department", + "comments": [ + { + "text": "So shes a little though at first.. but she is no doubt one of the sweetest prof around.. especially in the FRENCH DEPT!! She gets u to break out of ur shell and practice ur french! She however expects u to do ur hw study and participate! Merci madame zerofsky!", + "pos": 0.073, + "neu": 0.927, + "neg": 0.0, + "_id": { + "$oid": "6711d7f5cd60fca157e616b5" + } + }, + { + "text": "She is an amazing professor. interesting class. i actually learned some french. she's not intimidating just do her homework and participate in class and you will do well on her tests. DON\"T use google translate for writing her assignments. VERY manageable class.", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d7f5cd60fca157e616b6" + } + }, + { + "text": "She is really nice and helpful...Do your homework...participate in class...", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d7f5cd60fca157e616b7" + } + }, + { + "text": "Great professor, can't believe she didn't have an entry. Very helpful & helps class engage with one another in a comfortable environment. She's a fair grader but MAKE SURE TO DO your HW ASSIGNMENTS. That's def the reason I didn't earn an A in both Fren I&II with her.", + "pos": 0.277, + "neu": 0.723, + "neg": 0.0, + "_id": { + "$oid": "6711d7f5cd60fca157e616b8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f5cd60fca157e616ba" + }, + "professor_name": "Konstantinos Syngros", + "rating": 3.4, + "department": "Civil Engineering department", + "comments": [ + { + "text": "He is a really GREAT professor! Very nice and helpful. But you need to study everyday, cause his homework is a lot and the project is challenging. If you study hard and understand every concept and example, you will get a good grade.", + "pos": 0.255, + "neu": 0.715, + "neg": 0.031, + "_id": { + "$oid": "6711d7f5cd60fca157e616bb" + } + }, + { + "text": "This is not an easy class. I really like him because he was very nice and helpful. His exams are challenging, you need to know the material very well, he will not give you a simple problem from the book. :)", + "pos": 0.295, + "neu": 0.611, + "neg": 0.094, + "_id": { + "$oid": "6711d7f5cd60fca157e616bc" + } + }, + { + "text": "It's 100% possible to do very well in statics if you work hard to understand the subject. Unfortunately most fail to do this, and expect to pass the class by copying the solution manual for homework questions, and memorizing how to do problems for exams. Syngros is alright, but the most important thing is to give the subject the time it deserves.", + "pos": 0.109, + "neu": 0.787, + "neg": 0.104, + "_id": { + "$oid": "6711d7f5cd60fca157e616bd" + } + }, + { + "text": "study and you will pass, but you need to study every day", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7f5cd60fca157e616be" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f6cd60fca157e616c0" + }, + "professor_name": "Allison Deane", + "rating": 4, + "department": "Music department", + "comments": [ + { + "text": "Grades you based off of how well youve practiced since the last class. Pretty intimidating to perform pieces and scales for. Doesnt really pay attention to your posture at the piano.", + "pos": 0.186, + "neu": 0.735, + "neg": 0.079, + "_id": { + "$oid": "6711d7f6cd60fca157e616c1" + } + }, + { + "text": "She's a unique Piano teacher. Everything is so easy, not what you'd expect from classical music. With a few words in two minutes, she could give you enough ideas and materials to work on for weeks. A truly life-changing, influential teacher.", + "pos": 0.201, + "neu": 0.799, + "neg": 0.0, + "_id": { + "$oid": "6711d7f6cd60fca157e616c2" + } + }, + { + "text": "SHE IS GREAT!!!!! THE BEST TEACHER THAT I CAN EVER HAVE. SHE HELPS YOU UNDERSTAND THE BASICS OF MUSIC AND HOW TO CONTINUE IT FOR THE REST OF YOU LEARNING EXPERIENCE!!!!! TAKE HER!!!!", + "pos": 0.287, + "neu": 0.713, + "neg": 0.0, + "_id": { + "$oid": "6711d7f6cd60fca157e616c3" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7f6cd60fca157e616c4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f6cd60fca157e616c6" + }, + "professor_name": "Kate Mogulescu", + "rating": 4.6, + "department": "Political Science department", + "comments": [ + { + "text": "INSPIRATIONAL, GET READY TO READ, GIVES EXTRA CREDIT, AND HILARIOUS. 20% Participation including attendance (once a week class) 40% short response papers (four papers- 2 pages max each)40% research (final) paper -topic of your choice but relevant to class Went to night court (awesome-just once) and the NYC Bar association. She is one of the best", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d7f6cd60fca157e616c7" + } + }, + { + "text": "Prof. Mogulescu is such a great individual that you can feel comfortable speaking to and receive great advice from. People who are considering legal studies should really take an interest on her professional career. Her lectures were very interactive and not boring at all! Attendance and participating mattered since the class was once a week.", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d7f6cd60fca157e616c8" + } + }, + { + "text": "Participate in class, 4 response papers of 2 pgs each, the class was once a week for 2 hours and let me tell you that you wont even notice when those two hours pass.. she is fun, clear and straight to the point... your final exam is a 10 page research paper that she gives you at the beginning of the semester, so you have all semester to do this pap", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d7f6cd60fca157e616c9" + } + }, + { + "text": "She's not a professor, she's an attorney - for starters. Likes to do a lot of case studies and bases everything around NYC, which is great if that's what you're interested in. There are a couple of papers and a court-visitation assignment, but it's pretty simple. She can be a little too sarcastic, which is unnecessary.", + "pos": 0.166, + "neu": 0.801, + "neg": 0.033, + "_id": { + "$oid": "6711d7f6cd60fca157e616ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f6cd60fca157e616cc" + }, + "professor_name": "Jason Stohler", + "rating": 2.9, + "department": "World Civilizations department", + "comments": [ + { + "text": "too sarcastic. way too much reading. countless articles ranging from 30-100 pages. plus a book report which i think is a waste of time because he gives us so many other things to read. enthusiastic about what he teaches, just does not know how to teach without making jokes about everything", + "pos": 0.056, + "neu": 0.828, + "neg": 0.115, + "_id": { + "$oid": "6711d7f6cd60fca157e616cd" + } + }, + { + "text": "GREAT TEACHER!!! very understanding and requirements are doable.", + "pos": 0.449, + "neu": 0.551, + "neg": 0.0, + "_id": { + "$oid": "6711d7f6cd60fca157e616ce" + } + }, + { + "text": "This teacher was so boring. I always felt like i didn't know what he was exactly talking about. His requirements are easy, but his teaching skills aren't good. He's sarcastic and in my opinion it's annoying. If you have a question he finds obvious he'll be like \"what don't you get\" and pretty much won't answer it.", + "pos": 0.188, + "neu": 0.69, + "neg": 0.122, + "_id": { + "$oid": "6711d7f6cd60fca157e616cf" + } + }, + { + "text": "He is an interesting professor...Sometimes his class can be boring but other times he has you laughing..He can be sarcastic but it isnt offensive at all...He assigned two papers not long at all and then he had us do an outline over the thanksgiving break but it was very easy, better than writing a 7 page paper like other professors.", + "pos": 0.228, + "neu": 0.716, + "neg": 0.056, + "_id": { + "$oid": "6711d7f6cd60fca157e616d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f7cd60fca157e616d2" + }, + "professor_name": "Ihsan Shahwan", + "rating": 3.9, + "department": "Engineering department", + "comments": [ + { + "text": "One of the nicer professors at CCNY. He is not there to trick you. Attend class do the homeworks and you will do well on his tests.", + "pos": 0.204, + "neu": 0.796, + "neg": 0.0, + "_id": { + "$oid": "6711d7f7cd60fca157e616d3" + } + }, + { + "text": "He's not bad, and his tests are very fair and reasonable. But he lacks mastery of English, and so there is a lot of extra information that's missing that might be there with a native speaker. He's relatively pleasant once he warms up. There's no reason to avoid him, but if there's someone better, you should try to get them.", + "pos": 0.195, + "neu": 0.693, + "neg": 0.112, + "_id": { + "$oid": "6711d7f7cd60fca157e616d4" + } + }, + { + "text": "Fun class and fun professor. Follow the instruction and follow the professor you get an easy A and learn the subject.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d7f7cd60fca157e616d5" + } + }, + { + "text": "Fun Class. The instructor is very lazy. He he is in the mood to teach, you will learn. Otherwise, you will walk in and do whatever it says on the lab manual. O don't anger him, he gets really mad and yells.", + "pos": 0.125, + "neu": 0.751, + "neg": 0.124, + "_id": { + "$oid": "6711d7f7cd60fca157e616d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f7cd60fca157e616d8" + }, + "professor_name": "Andrea Simon", + "rating": 5, + "department": "Freshman Year Experience department", + "comments": [ + { + "text": "She is amazing! Very warm and understanding! Not hard at all! She helped us format all of our papers out! I would want her again because she is that amazing! :)", + "pos": 0.398, + "neu": 0.602, + "neg": 0.0, + "_id": { + "$oid": "6711d7f7cd60fca157e616d9" + } + }, + { + "text": "I FRICKIN LOVE ANDREA! I took her for creative writing 1 and she was amazing! She gave out weekly assignments. She was very easy going and her in-class prompts were outstandingly creative. She taught us how to take criticism and treated us like true writers. That's what you get when an actual published author teaches your class. Absolute amazement!", + "pos": 0.35, + "neu": 0.615, + "neg": 0.036, + "_id": { + "$oid": "6711d7f7cd60fca157e616da" + } + }, + { + "text": "Easy work. she goes hard. you can literally write anything you want and she will find something positive to say about it.. like you dont understand.... you can write ANYTHING you want to...... seriously", + "pos": 0.278, + "neu": 0.647, + "neg": 0.074, + "_id": { + "$oid": "6711d7f7cd60fca157e616db" + } + }, + { + "text": "Best Professor I had for my first semester! She's so warm hearted and knows what she is talking about grammar and writing. Not hard at all! She's amazing!", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d7f7cd60fca157e616dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f8cd60fca157e616de" + }, + "professor_name": "Pisheng Ding", + "rating": 2.9, + "department": "Mathematics department", + "comments": [ + { + "text": "all exams takehome. felt like a midsummer night's dream.", + "pos": 0.391, + "neu": 0.609, + "neg": 0.0, + "_id": { + "$oid": "6711d7f8cd60fca157e616df" + } + }, + { + "text": "had him last summer. smart guy, rock-solid stuff, but a gentle grader. Was expecting a B- by his grading policy, got a B+ in the end. looked for his classes fall and spring, never saw him again.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d7f8cd60fca157e616e0" + } + }, + { + "text": "Brilliant guy but tough as a rock. You have to be a few chapters ahead or at least familiar with the topic at hand before taking the course with this professor. This guy is no joke. Why I gave him such a low grade? He put a really tough algebraic question in the final that was worth 25% of the test instead of any of the 391 topics we covered.", + "pos": 0.112, + "neu": 0.778, + "neg": 0.11, + "_id": { + "$oid": "6711d7f8cd60fca157e616e1" + } + }, + { + "text": "One of the worst math professors I have taken. He is brilliant but extremely condescending! Also his brilliance does not translate into teaching as he is on able to pass on his knowledge. Most students that did well, spent a lot of time studying on their own. Not at all caring if you're struggling and extremely into theory.", + "pos": 0.148, + "neu": 0.718, + "neg": 0.134, + "_id": { + "$oid": "6711d7f8cd60fca157e616e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f8cd60fca157e616e4" + }, + "professor_name": "Rajakumar Saha", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "This teacher is horrible, if you take his class you are going to be lost, and this is coming from a person who loves math!!!", + "pos": 0.114, + "neu": 0.68, + "neg": 0.206, + "_id": { + "$oid": "6711d7f8cd60fca157e616e5" + } + }, + { + "text": "Dude like people who criticize this young instructor. This instructor is a boss. It is always at the end of each semester when you see your final grade that u know how cool or not ur instructor was. I know many instructors who are \"experienced\" but who will assign you a grade based on your skin color for example. Tough but Fair grader, its priceles", + "pos": 0.091, + "neu": 0.858, + "neg": 0.051, + "_id": { + "$oid": "6711d7f8cd60fca157e616e6" + } + }, + { + "text": "Pretty sure it was his first time teaching. It can be hard to understand what he is teaching or what he is saying. They key is to do all the homeworks and make sure to research anything you don't understand. Go to his office hours.", + "pos": 0.155, + "neu": 0.817, + "neg": 0.028, + "_id": { + "$oid": "6711d7f8cd60fca157e616e7" + } + }, + { + "text": "Caring person but not a great teacher. Prepare to self study.", + "pos": 0.135, + "neu": 0.579, + "neg": 0.286, + "_id": { + "$oid": "6711d7f8cd60fca157e616e8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f8cd60fca157e616ea" + }, + "professor_name": "Jack Chiu", + "rating": 3.5, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Jack is a cool lab instructor. We learned a lot in his class, MANY programming assignments. Quiz every week based on HW, very easy. Pay attention in class and you will be fine. Take home exams are next level PHD INSANITY, they are extremely hard, don't even think that you will able to find answers online, don't even waste time searching. FOCUS !", + "pos": 0.135, + "neu": 0.76, + "neg": 0.106, + "_id": { + "$oid": "6711d7f8cd60fca157e616eb" + } + }, + { + "text": "Professor Chiu really knows his statics. Very good at explaining the material and makes sure students get the material. quiz every class is worth 10% of grade, 10% is online Connect HW. Overall, good professor if you want to learn.", + "pos": 0.249, + "neu": 0.751, + "neg": 0.0, + "_id": { + "$oid": "6711d7f8cd60fca157e616ec" + } + }, + { + "text": "Chiu is a smart guy. He really knows statics material well and does a ton of problems in class. Quizzes are 10% and are at the beginning of every class. Tests are curved if the avg is low. He makes his own probs. so it's open book but doesn't help much. HW is 10% and online (Mcgraw Hill). He's solid- it was his first semester but he was pretty good", + "pos": 0.165, + "neu": 0.759, + "neg": 0.077, + "_id": { + "$oid": "6711d7f8cd60fca157e616ed" + } + }, + { + "text": "Granted he was a substitute professor for this course, the course started one entire month later. The coursework was extremely unstructured. Class consisted of him telling us some things then doing an example for the next two classes. The worst part is that he isn't even a professor, he's a grad student.", + "pos": 0.036, + "neu": 0.891, + "neg": 0.073, + "_id": { + "$oid": "6711d7f8cd60fca157e616ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f9cd60fca157e616f0" + }, + "professor_name": "Russell Floersch", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "This professor has taught me a lot more than just drawing principles. Even if you think you can't draw, he really encourages you to do your best and gives you good feedback. This is a chance to really foster your creativity. Don't be afraid to try new things! He's open to unconventional ideas for your assignments and lets you re-do drawings.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e616f1" + } + }, + { + "text": "Love this professor, he genuinely wants to see his students improve their art and gives constructive criticism on work. Definitely improved and learned a lot from this class, also appreciated his chill attitude and flexibility with redos", + "pos": 0.361, + "neu": 0.583, + "neg": 0.056, + "_id": { + "$oid": "6711d7f9cd60fca157e616f2" + } + }, + { + "text": "Professor Floersch is great! He is laid-back and really just wants to see his students put in the effort and improve their skills. The outside of class drawing assignments (1 per week) take a lot of time and he can tell when you only put in an hour of work. He let's you redo/further develop all work for the midterm and final.", + "pos": 0.108, + "neu": 0.892, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e616f3" + } + }, + { + "text": "Amazing professor! Give great feedbacks on homework. And he accepts redo assignments & midterm.", + "pos": 0.488, + "neu": 0.512, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e616f4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f9cd60fca157e616f6" + }, + "professor_name": "Christy Crawford", + "rating": 4.8, + "department": "Education department", + "comments": [ + { + "text": "Great Professor. Would highly recommend her. She is a professor that will challenge you. Her work is not a walk in the park. But I definitely learned a lot in her class; even though the grade didn't reflect it :-(", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e616f7" + } + }, + { + "text": "Christy is one of the best teachers ever! I learned so much from her. I wish the rest of City College had professors and courses as stimulating as this one :) You all need to take this class!", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e616f8" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7f9cd60fca157e616f9" + } + }, + { + "text": "Urban Schools in a Diverse Society. Excellent teacher! Christy knows multicultural education issues inside and out. Highly recommended. Just be ready to read A LOT. Very challenging, informative, and worthwhile class.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e616fa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7f9cd60fca157e616fc" + }, + "professor_name": "Simon Kelly", + "rating": 4.8, + "department": "Biomedical department", + "comments": [ + { + "text": "Great quizzes, great midterm, great homework but takes a while to complete. Final is HARD but as long as you do well throughout the semester you'l be fine. SO NICE! Labs may be tedious, but overall a superb class", + "pos": 0.437, + "neu": 0.518, + "neg": 0.045, + "_id": { + "$oid": "6711d7f9cd60fca157e616fd" + } + }, + { + "text": "Great guy, very friendly and approachable (just like all the BME professors). Made the class go by easily, not that it was a difficult subject anyway, just requires a lot of practice. Don't be alarmed if you have him for a class, consider it a blessing.", + "pos": 0.299, + "neu": 0.658, + "neg": 0.042, + "_id": { + "$oid": "6711d7f9cd60fca157e616fe" + } + }, + { + "text": "Awesome professor! He is friendly and teaches the material very well. Instead of just using slides,he is one of the few professors here that is actually aware of the existence of the chalkboard and goes though examples step by step. And he is good looking, so win-win!", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e616ff" + } + }, + { + "text": "Great Professor, don't really need the textbook every things in the slides. He's very friendly makes sure you understand the material. Quizzes are weekly so study slides. Overall one of the best, and it doesn't hurt that hes hot.", + "pos": 0.335, + "neu": 0.665, + "neg": 0.0, + "_id": { + "$oid": "6711d7f9cd60fca157e61700" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7facd60fca157e61702" + }, + "professor_name": "Virginia Mosquera", + "rating": 5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "She is wonderful. It is very inspiring to see such a successful young woman like her who first is an immigrant, 2 has a PhD in Engineering, 3 has a PE, 4 is only 33 years old, 5 Is Smoking Hot and Gorgeous, 6 Works in a private Engineering Company, 7 Did her Masters and PhD in an Ivy League School (Columbia University). I strongly recommend her!!", + "pos": 0.271, + "neu": 0.729, + "neg": 0.0, + "_id": { + "$oid": "6711d7facd60fca157e61703" + } + }, + { + "text": "She's a good professor and very smart, but she does not know how to teach. Her tests come out of the Hibbeler textbook and most of the students cheat through the PDF solutions. She needs to make her own, harder tests. Not fair professor for the kids who actually tried to study yet did not succeed.", + "pos": 0.091, + "neu": 0.759, + "neg": 0.15, + "_id": { + "$oid": "6711d7facd60fca157e61704" + } + }, + { + "text": "Awesome professor!! She is very clear even though she has an accent. I did not get what I expected because of my own fault. Highly highly highly recommended! And she is beautiful. Never found so much quality in one professor!", + "pos": 0.28, + "neu": 0.668, + "neg": 0.052, + "_id": { + "$oid": "6711d7facd60fca157e61705" + } + }, + { + "text": "When it comes to taking Civil Engineering Statics, you have to take the class with this professor. She will make you understand the material like no other professor. And her classnotes are AMAZING!! And it only gets better; she is smoking hot!", + "pos": 0.212, + "neu": 0.745, + "neg": 0.043, + "_id": { + "$oid": "6711d7facd60fca157e61706" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7facd60fca157e61708" + }, + "professor_name": "Henry Lin", + "rating": 4.5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Very straightforward! Amazing lecturer, easily accessible professor & he thrives for his student's success. Oh and don't expect him to go the extra mile and help you if you are not serious about learning & succeeding (he could distinguish that ), intellectuale individual.", + "pos": 0.322, + "neu": 0.678, + "neg": 0.0, + "_id": { + "$oid": "6711d7facd60fca157e61709" + } + }, + { + "text": "I like the way he explains things, very helpful he is patient and available outside of class", + "pos": 0.272, + "neu": 0.728, + "neg": 0.0, + "_id": { + "$oid": "6711d7facd60fca157e6170a" + } + }, + { + "text": "This is not a super easy class, but he is good at explaining; as long as you take good notes you'll be fine. He is quite nice and he's not boring. I think he's a new to teaching so he understands his students. I would definitely consider taking him again. Thanks Professor !", + "pos": 0.336, + "neu": 0.612, + "neg": 0.052, + "_id": { + "$oid": "6711d7facd60fca157e6170b" + } + }, + { + "text": "In one sentence: \"He understands the student struggle\". Make sure you take detailed notes, know your basic derivations : )", + "pos": 0.157, + "neu": 0.742, + "neg": 0.1, + "_id": { + "$oid": "6711d7facd60fca157e6170c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7facd60fca157e6170e" + }, + "professor_name": "Arianna Kuhn", + "rating": 4.8, + "department": "Biology department", + "comments": [ + { + "text": "Great lab TA, her lectures are clear and she gives useful feedback, she's a great choice to take as your bio lab TA!!!!! I will take her again if I have a chance.", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d7facd60fca157e6170f" + } + }, + { + "text": "Arianna is a great TA. She speaks quickly, but will slow down and answer as many questions as you like. Her exams are fair since she emphasizes anything you need to know beforehand. The only issue is that she is REALLY slow with getting back your lab reports back for rewrites. I know she has a life, too, but girl.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d7facd60fca157e61710" + } + }, + { + "text": "She is amazing!!! Incredibly knowledgeable, lightning fast and she is stunningly beautiful.", + "pos": 0.462, + "neu": 0.538, + "neg": 0.0, + "_id": { + "$oid": "6711d7facd60fca157e61711" + } + }, + { + "text": "Arianna speaks really fast but if you don't understand her all you have to do is ask her any question, she'll explain it perfectly in easy to understand terms. She grades fairly and her grades are almost always on time. She's really easy to talk to though so just ask her any questions you have and she'll help you out, she's understanding.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d7facd60fca157e61712" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fbcd60fca157e61714" + }, + "professor_name": "Amy Veach", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "very rude", + "pos": 0.0, + "neu": 0.233, + "neg": 0.767, + "_id": { + "$oid": "6711d7fbcd60fca157e61715" + } + }, + { + "text": "Professor Veach is very dedicated and puts in a lot of effort to ensure that all her students understand the essence of the lesson. She is well prepared and clear in her instructions. She always made time for me when I needed extra help.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d7fbcd60fca157e61716" + } + }, + { + "text": "WORST TEACHER EVER!", + "pos": 0.0, + "neu": 0.313, + "neg": 0.687, + "_id": { + "$oid": "6711d7fbcd60fca157e61717" + } + }, + { + "text": "An amazing reservoir of energy in her 5'1 frame: I had her class at 8:00 AM, and she was never late, absent, or sluggish. Her class is easy. You write assignments, you post it online or email it to her, you do 1 quick oral presentation on your favorite author. And viola: an A or B grade. She's a very nice young lady, one you can easily talk to.", + "pos": 0.211, + "neu": 0.756, + "neg": 0.033, + "_id": { + "$oid": "6711d7fbcd60fca157e61718" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fbcd60fca157e6171a" + }, + "professor_name": "Angelo Mariano", + "rating": 4.5, + "department": "Italian department", + "comments": [ + { + "text": "Italian grammar has always been my greatest challange. But thanks to Professor Mariano, I have a better grip in understanding of Italian grammar structures. His lectures are always important. Take good notes & study!", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d7fbcd60fca157e6171b" + } + }, + { + "text": "The professor is great. His classes are engaging, and the exams are fair. I have learned a lot by paying attention to his lectures. In general, homework is very useful to learn the language.", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d7fbcd60fca157e6171c" + } + }, + { + "text": "Gives 4 exams. 1 oral exam. 8 or more quizzes. Tons of Pages and packets of homework. He doesnt want to give it out but he does because its required by the department.", + "pos": 0.0, + "neu": 0.966, + "neg": 0.034, + "_id": { + "$oid": "6711d7fbcd60fca157e6171d" + } + }, + { + "text": "First time engaging in the Italian language and he made it easy to grasp. Having no prior exposure to romance languages the beginning was a bit tough but after getting the hang of it, its not so bad. He is a funny professor and cares about his students. I would recommend his class highly.", + "pos": 0.314, + "neu": 0.645, + "neg": 0.041, + "_id": { + "$oid": "6711d7fbcd60fca157e6171e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fbcd60fca157e61720" + }, + "professor_name": "Timothy Elmore", + "rating": 2.9, + "department": "Psychology department", + "comments": [ + { + "text": "He posts all of his lecture slide powerpoints on blackboard so if you miss a class you can go back and read the lecture slides. The answer for his homeworks and quizzes can directly be found in the lecture slides and the textbook. This class isn't easy but if you go to class everyday and pay attentions you should be fine.", + "pos": 0.034, + "neu": 0.892, + "neg": 0.074, + "_id": { + "$oid": "6711d7fbcd60fca157e61721" + } + }, + { + "text": "He has an amazing personality and really wants you to learn the material. Wasn't an easy A and he makes you work for your grade. He gives homeworks and quizzes every week on blackboard. The quizzes are timed. He also has one midterm and a final that are multiple choice but so difficult and so many questions. Midterm:50 questions. Final:100 question", + "pos": 0.036, + "neu": 0.873, + "neg": 0.091, + "_id": { + "$oid": "6711d7fbcd60fca157e61722" + } + }, + { + "text": "Goo professor tests r a lil hard but if you actually keep up ull b fine", + "pos": 0.126, + "neu": 0.805, + "neg": 0.069, + "_id": { + "$oid": "6711d7fbcd60fca157e61723" + } + }, + { + "text": "For your sanity, do not take this class. I took this class in the Spring of 2013 and this professor was teaching for the first time at CCNY. He is awful. All he does is read off the slides, which were not informative in the least bit. His exams are super difficult and he doesn't provide a review sheet or any help. Don't take him.", + "pos": 0.09, + "neu": 0.834, + "neg": 0.075, + "_id": { + "$oid": "6711d7fbcd60fca157e61724" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fccd60fca157e61726" + }, + "professor_name": "Massimo Tommasoli", + "rating": 4.5, + "department": "International Studies department", + "comments": [ + { + "text": "His lectures are very thorough and super helpful to anyone looking to work in IR/IS. However, his papers are super long.", + "pos": 0.376, + "neu": 0.624, + "neg": 0.0, + "_id": { + "$oid": "6711d7fccd60fca157e61727" + } + }, + { + "text": "Worth every penny! Don't think I have ever taken a class that is more useful for real world and your professional life. He gives you the tools to ace your resume and cover letter game. Great info on how UN & NGOs work. Bonus- free insider tour of UN! Class could get boring since it's lecture heavy but it's worth it. Wonderful & knowledgeable person", + "pos": 0.24, + "neu": 0.739, + "neg": 0.021, + "_id": { + "$oid": "6711d7fccd60fca157e61728" + } + }, + { + "text": "There are two major assignments: a policy memo, and a long, independent research paper. But don't worry though. Just follow the directions and give him what he wants in the assignment. You will do well.", + "pos": 0.149, + "neu": 0.851, + "neg": 0.0, + "_id": { + "$oid": "6711d7fccd60fca157e61729" + } + }, + { + "text": "Professor Tommasoli is absolutely amazing at what he does. He is able to teach his students with passion, and really pass his knowledge on with a clear and interesting approach. You will learn a lot from him and be extremely engaged at his lectures. He is one of the best professors at CCNY. Take him!", + "pos": 0.289, + "neu": 0.711, + "neg": 0.0, + "_id": { + "$oid": "6711d7fccd60fca157e6172a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fccd60fca157e6172c" + }, + "professor_name": "Stuart Wright", + "rating": 4.8, + "department": "Anthropology department", + "comments": [ + { + "text": "Readings get pretty dense and lengthy, but that's more so because of the content of the course. His lectures are fine but he can get a bit disorganized and repetitive for the asynchronous lesson. Overall, a great guy that really cares about the topic and is willing to help.", + "pos": 0.275, + "neu": 0.644, + "neg": 0.081, + "_id": { + "$oid": "6711d7fccd60fca157e6172d" + } + }, + { + "text": "You have to do 3 short papers and he gives you a list of questions to choose from and he will also provide what readings you should use along with how to answer the questions. He is so sweet and you will have a lot of discussions in class but they are super interesting. If you are looking for an easy A class, this class is for you!!!!", + "pos": 0.203, + "neu": 0.797, + "neg": 0.0, + "_id": { + "$oid": "6711d7fccd60fca157e6172e" + } + }, + { + "text": "Amazing professor a real gem I actually got sad when class ended. Professor Wright is extremely caring and does his best to ensure that his students are understanding the material and doing well. Never once had an issue with him. The workload was interesting and manageable. I learned so much all with the help of the Professor. Love this British man", + "pos": 0.319, + "neu": 0.643, + "neg": 0.038, + "_id": { + "$oid": "6711d7fccd60fca157e6172f" + } + }, + { + "text": "Hes a great professor. Understanding and make sure his students understand the class. Always willing to help any way he can. Hes a bit of a tough grader.", + "pos": 0.263, + "neu": 0.694, + "neg": 0.043, + "_id": { + "$oid": "6711d7fccd60fca157e61730" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fccd60fca157e61732" + }, + "professor_name": "Jacqueline Edwards", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "One of the best professors out there! The class is remote and consists of three essays and two short assignments! Definitely take her!", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d7fccd60fca157e61733" + } + }, + { + "text": "SHE IS GREAT. Such a kind prof who cares about your grade. she will give you many opportunities to raise your grade. She is understanding and caring. Highly recommend", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d7fccd60fca157e61734" + } + }, + { + "text": "Professor Edwards is hands-down one of the best professors I've had. Her lectures are engaging, she encourages discussion, and she goes at a good pace. Her assignments are difficult and are easy if you show that you really care about the topic you've chosen. She was my favorite professor this semester. Take her, she's funny, cool, and caring!", + "pos": 0.381, + "neu": 0.588, + "neg": 0.031, + "_id": { + "$oid": "6711d7fccd60fca157e61735" + } + }, + { + "text": "Even though it was her first semester teaching and classes are online, she was extremely accommodating and kind. I wasn't really interested in art history, but she's very knowledgeable on the subject and made lectures fun and interesting. She did assign textbook readings, but you only need to pay attention to her lectures.", + "pos": 0.168, + "neu": 0.778, + "neg": 0.054, + "_id": { + "$oid": "6711d7fccd60fca157e61736" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fdcd60fca157e61738" + }, + "professor_name": "michael neumeister", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "This professor is one of the best I've had, he is very patient with you and if you read what's been assigned and do the work and weekly quizzes you will get an A in this class.", + "pos": 0.104, + "neu": 0.896, + "neg": 0.0, + "_id": { + "$oid": "6711d7fdcd60fca157e61739" + } + }, + { + "text": "Class was very easy and interesting. Weekly quiz that is straight forward from the lecture, two interesting papers, midterm and final. Also he gives extra credit.", + "pos": 0.389, + "neu": 0.611, + "neg": 0.0, + "_id": { + "$oid": "6711d7fdcd60fca157e6173a" + } + }, + { + "text": "Great lecturer, really passionate about the art he talks about. Made online classes easier with a very clear layout of the semester and specific about the guidelines for his papers. Easy weekly MC quizzes if you watch the lectures and 3 analysis papers throughout the course. Highly recommend.", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d7fdcd60fca157e6173b" + } + }, + { + "text": "The course was very interesting and I enjoyed the lectures they were very informative. The course itself is very easy all you have to do is get a good grade on the weekly quiz and there is only 2 essays", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d7fdcd60fca157e6173c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fdcd60fca157e6173e" + }, + "professor_name": "Kim Wales", + "rating": 3, + "department": "Economics department", + "comments": [ + { + "text": "She was condescending for most of the class. Students were usually lost. She made us buy her book and never discussed it in class or had any class material about it. She is very monotone during lectures and typically talks about things that are unnecessary. She was a easy grader tho if you can tolerate her attitude.", + "pos": 0.048, + "neu": 0.914, + "neg": 0.038, + "_id": { + "$oid": "6711d7fdcd60fca157e6173f" + } + }, + { + "text": "By no means is Wales a horrible prof, but she gets a bit boring. in terms of content, tests and homework are easy. For an entrepreneurship type of class, it is very disorganized and not inspirational. If you are looking for an easy elective, then i recommend taking her. Business Plan and projects have to be done her way. ok, but not great. 3/5", + "pos": 0.13, + "neu": 0.655, + "neg": 0.215, + "_id": { + "$oid": "6711d7fdcd60fca157e61740" + } + }, + { + "text": "Excellent class.", + "pos": 0.787, + "neu": 0.213, + "neg": 0.0, + "_id": { + "$oid": "6711d7fdcd60fca157e61741" + } + }, + { + "text": "Professor Wales isnt a poor Professor. The internet is your best friend when taking her course as everything down to her daily objectives can be found online. Often found myself reading along with her as she did her lectures. Lots of reading. In depth homework assignments. But overall a great Professor. Witty and funny and engaging. Pop quizzes.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d7fdcd60fca157e61742" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fecd60fca157e61744" + }, + "professor_name": "Ahu Aydogan", + "rating": 4.5, + "department": "Architecture department", + "comments": [ + { + "text": "Construction tech 3/environmental systems is a very poorly constructed class, which is not all Aydogan's fault as many professors teach it.", + "pos": 0.101, + "neu": 0.899, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e61745" + } + }, + { + "text": "she's one of my favorite studio professors", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e61746" + } + }, + { + "text": "Dr. Ahu Aydogan is truly a distinguished professor at Spitzer School of Architecture. Her approach to the Architectural Design is truly unique since she combines science, engineering and design to the application of the physical principles that must respond to and address the larger issues surrounding environments. Her personality is AWESOME !", + "pos": 0.182, + "neu": 0.818, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e61747" + } + }, + { + "text": "I had her for my first year and she is AMAZING!! She has never taught first years before but she wasn't too tough on us. She was super clear when telling us what she wanted us to fix and how she thinks we could do better. I definitely learned a lot from her and I am excited to take her again in the future! 1000% recommend for a chill studio", + "pos": 0.309, + "neu": 0.691, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e61748" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fecd60fca157e6174a" + }, + "professor_name": "Ian Heller", + "rating": 4.5, + "department": "Political Science department", + "comments": [ + { + "text": "He has weekly readings for you to read and complete a journal before every class. Be sure to come with questions because it's a discussion-based class and attendance counts. There's only one paper which is the final. I highly recommend taking his class especially if you are a poli-sci/pre-law major.", + "pos": 0.096, + "neu": 0.904, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e6174b" + } + }, + { + "text": "Professor Heller himself is a very cool professor, however if youre not a reader dont take this class. Weekly readings and reflections, along with a midterm and paper at the end. Not an easy A, just do everything on time.", + "pos": 0.06, + "neu": 0.884, + "neg": 0.056, + "_id": { + "$oid": "6711d7fecd60fca157e6174c" + } + }, + { + "text": "One of the best professors in this whole school. This is the second class I take of his. His lectures are very clear and informative and relevant. There are a lot of readings for this class, some difficult, but all used in class and assignments. He's genuinely concerned how students are learning so he never makes students feel bad for asking.", + "pos": 0.067, + "neu": 0.838, + "neg": 0.096, + "_id": { + "$oid": "6711d7fecd60fca157e6174d" + } + }, + { + "text": "Hes one of the best professors Ive had at CCNY. Hes available outside of class, is good with online learning and he is always down for feedback about his class. There was a group assignment and he makes peers review final papers to make sure you get an A. Mandatory readings and journals.", + "pos": 0.179, + "neu": 0.821, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e6174e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7fecd60fca157e61750" + }, + "professor_name": "Martin Vasas", + "rating": 1.5, + "department": "Computer Science department", + "comments": [ + { + "text": "He seems like a nice guy but he didn't really teach well. I didn't understand a single thing he said, his hand writing on the white board wasn't great and hard to read and he was also extremely unprofessional in the sense that he had terrible hygiene. I passed the course but I wouldn't take him again.", + "pos": 0.126, + "neu": 0.659, + "neg": 0.215, + "_id": { + "$oid": "6711d7fecd60fca157e61751" + } + }, + { + "text": "Marty tries his best to help and is a hilarious guy but he cannot teach. He will use the whiteboard as a terminal to teach how to program in c++. :joy:", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e61752" + } + }, + { + "text": "He cannot teach at all. I taught everything myself.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d7fecd60fca157e61753" + } + }, + { + "text": "Great guy, but can't really teach which is disappointing when the recitation is longer than the lecture class. Takes attendance although the syllabus says it isn't required. Definitely tries his best to help us comprehend topics needed to know to complete projects.", + "pos": 0.212, + "neu": 0.66, + "neg": 0.128, + "_id": { + "$oid": "6711d7fecd60fca157e61754" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ffcd60fca157e61756" + }, + "professor_name": "Benjamin Swett", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "The most amazing and laid-back person! If you can connect with him, do it. His \"Introductory Workshops in Creative Writing\" class at CCNY was fantastic during the 2023 Fall Term. He grades based on effort, holds accessible office hours, and teaches how to publish work, and he is the coolest, if you have the chance take his class.", + "pos": 0.193, + "neu": 0.807, + "neg": 0.0, + "_id": { + "$oid": "6711d7ffcd60fca157e61757" + } + }, + { + "text": "He was the best English teacher! Hes so caring and really gives you good feedback. Theres a group project and a couple of papers , just do the work and youll obey good scores.", + "pos": 0.328, + "neu": 0.672, + "neg": 0.0, + "_id": { + "$oid": "6711d7ffcd60fca157e61758" + } + }, + { + "text": "Lenient professor, gives feedback with almost all assignments on blackboard. There is a group project and individual project where you have to create websites, I found this a little challenging so make sure you ask questions. This class wasn't hard, there are no tests, some in class writing assignments (hybrid class). A good class to take", + "pos": 0.193, + "neu": 0.772, + "neg": 0.035, + "_id": { + "$oid": "6711d7ffcd60fca157e61759" + } + }, + { + "text": "Professor Swett is a great professor. We only had two major essays, one group project, and a final reflection. Short reading assignments were given as well but those were easy. Overall, easy class and the professor is very caring. I would suggest taking him.", + "pos": 0.298, + "neu": 0.702, + "neg": 0.0, + "_id": { + "$oid": "6711d7ffcd60fca157e6175a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ffcd60fca157e6175c" + }, + "professor_name": "Sooran Choi", + "rating": 4.5, + "department": "Art department", + "comments": [ + { + "text": "It was a privilege to take this class with Professor Choi, a rising star in the field of art history. The class is tremendous and course requirements are clear from the outset. She also builds into grading extra credit opportunities. Professor Choi truly really wants her students to succeed, and she is disability friendly.", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d7ffcd60fca157e6175d" + } + }, + { + "text": "She's a quite nice professor; almost all her classes are 3 hours long and gives extra credits if you come to class early. There is also a film that you can watch and write an essay about it for EC. There's 1 written/oral reading response, 1 Midterm Exam, 1 Final Exam, 1 Final Paper Presentation, and 1 Final paper. She also records her zoom class.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d7ffcd60fca157e6175e" + } + }, + { + "text": "I've taken Prof Choi for both Avant-garde& East Asia history classes and I have to say this Avant-garde class is much harder and couldn't grasp some concepts. I would recommend taking ART21054 instead of ART31923. Her class contains lots of readings, but you could pass without reading them. Make sure to review her recordings to get the gist of it.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d7ffcd60fca157e6175f" + } + }, + { + "text": "This is a lecture class, she gives a lot of long readings. I read none but still passed. Theres 1 paper/presentation off a reading you choose at the start of the semester, a midterm & a final thats just a summary of all the readings. She posts powerpoints with the summaries and she gives a month to finish each. You have to try to fail, just show up", + "pos": 0.0, + "neu": 0.934, + "neg": 0.066, + "_id": { + "$oid": "6711d7ffcd60fca157e61760" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d7ffcd60fca157e61762" + }, + "professor_name": "June Williamson", + "rating": 3, + "department": "Architecture department", + "comments": [ + { + "text": "She is really sweet but scary. Since she's the head of the school she is super critical of your work and expects pretty much perfection. She will nit pick at every little thing you present. Her lectures are super long and boring but the assignments are kinda fun (if you understand them). Overall, I would take her again but she still scares me.", + "pos": 0.282, + "neu": 0.57, + "neg": 0.147, + "_id": { + "$oid": "6711d7ffcd60fca157e61763" + } + }, + { + "text": "Professor Williamson is a disaster. She took over the second half of the semester, and from the beginning constantly interrupted the other lecturer, had unrealistic and demanding expectations for the homework, and gave the impression of high self-importance for a relatively unimportant class. Dolores Umbridge comes to mind. Avoid if possible.", + "pos": 0.032, + "neu": 0.755, + "neg": 0.213, + "_id": { + "$oid": "6711d7ffcd60fca157e61764" + } + }, + { + "text": "Professor Willaimson is great if you are enthusiastic about your work and architecture; If you are, she will help you along in any way you can. Side note: will act like your mother at times, take that as you will.", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d7ffcd60fca157e61765" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d7ffcd60fca157e61766" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d800cd60fca157e61768" + }, + "professor_name": "Edsn Kensington", + "rating": 4.8, + "department": "Computer Science department", + "comments": [ + { + "text": "He's clear with his grading and always gives additional opportunities for students to improve their grades. Breaks down difficult concepts so that students can understand. The class consisted of a midterm, final, group project, and labs. Wish CCNY had more professors like him. Definitely take him!", + "pos": 0.285, + "neu": 0.672, + "neg": 0.043, + "_id": { + "$oid": "6711d800cd60fca157e61769" + } + }, + { + "text": "He is the Recitation leader for CSC104 and the best one at that. Always explains the topics and problems clearly, and will always try his best to explain the topic if you don't understand. One of the best professors I've met, and always a pleasure being in his class.", + "pos": 0.294, + "neu": 0.665, + "neg": 0.042, + "_id": { + "$oid": "6711d800cd60fca157e6176a" + } + }, + { + "text": "Recitation for CSC 104. Ended up learning more from his class than the actual lecture class. Very clear at breaking down complex topics. Assigns homework problems identical to textbook questions. Always makes sure the class understands what he's teaching before continuing.", + "pos": 0.113, + "neu": 0.828, + "neg": 0.059, + "_id": { + "$oid": "6711d800cd60fca157e6176b" + } + }, + { + "text": "He does recitation for 104 and he's pretty good at explaining quite difficult topics into easy understandable ones. He's alright.", + "pos": 0.382, + "neu": 0.521, + "neg": 0.097, + "_id": { + "$oid": "6711d800cd60fca157e6176c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d800cd60fca157e6176e" + }, + "professor_name": "Kylee Pastore", + "rating": 4.5, + "department": "English department", + "comments": [ + { + "text": "WHUM 101: She's a good teacher, but attendance was mandatory. Even if you were 2-5 minutes late to class, it would count towards an absence (2 late = 1 absence). It was a lot of reading to do, three books the entire semester. Final project at the end which was 3 short essays + 30-minute presentation. The reading can be intense/ very long.", + "pos": 0.075, + "neu": 0.925, + "neg": 0.0, + "_id": { + "$oid": "6711d800cd60fca157e6176f" + } + }, + { + "text": "Loves the class , she gives us time before class ends to start on our homework assignment. Best professor ever.", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d800cd60fca157e61770" + } + }, + { + "text": "Loves the class and gives us time before class ends to start on our homework assignment. Best professor ever.", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d800cd60fca157e61771" + } + }, + { + "text": "Honestly an amazing teacher. Loved the class. As long as you pay attention you should be able to pass the class. Really caring and respectful teacher. Loves helping out. 5/5 recommend.", + "pos": 0.525, + "neu": 0.447, + "neg": 0.028, + "_id": { + "$oid": "6711d800cd60fca157e61772" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d800cd60fca157e61774" + }, + "professor_name": "Hailey Wojcik", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "She's so incredibly sweet, her lectures are interesting and the assignments you get are all super easy, and even quite fun. Such a kind and well spirited person, I would love to take her again.", + "pos": 0.524, + "neu": 0.476, + "neg": 0.0, + "_id": { + "$oid": "6711d800cd60fca157e61775" + } + }, + { + "text": "Amazing professor. Very understanding and nice!! You'll learn a lot. Readings are a little long, but mostly interesting!", + "pos": 0.371, + "neu": 0.629, + "neg": 0.0, + "_id": { + "$oid": "6711d800cd60fca157e61776" + } + }, + { + "text": "Very fun. Got to learn a bunch of new techniques and activities that could be implemented in child therapy. Typical class was 30 minutes of lecture 30 minutes of activity and 15 minutes of reflection. A new way of learning, I loved it.", + "pos": 0.155, + "neu": 0.845, + "neg": 0.0, + "_id": { + "$oid": "6711d800cd60fca157e61777" + } + }, + { + "text": "5-page final paper, 2 reflections and peer responses, and attendance/participation. Everything was super easy. Hailey is super kind, sweet, and understanding. Her lectures were very interesting and fun. Easy A course. Take her, you wont regret it!", + "pos": 0.51, + "neu": 0.49, + "neg": 0.0, + "_id": { + "$oid": "6711d800cd60fca157e61778" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d801cd60fca157e6177a" + }, + "professor_name": "Brian Vant-Hull", + "rating": 4.3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "The semester started off a bit rocky, but he gives so much room for improvement. He is kind and always available to answer questions. I had to ask him one question three times on separate days and every time I asked he was still nice about it. His test questions can be a bit wordy, but once you get it you get it. His class was a good challenge.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d801cd60fca157e6177b" + } + }, + { + "text": "Didn't feel like I learned that much in his class. His exams were basically exactly what we covered in lecture. Though he said to watch recorded lectures as well, they are not really relevant to his exams (though certainly help you better grasp the material). Group project throughout the semester is manageable.", + "pos": 0.171, + "neu": 0.794, + "neg": 0.036, + "_id": { + "$oid": "6711d801cd60fca157e6177c" + } + }, + { + "text": "Overall enjoyed this class. Tries to stick the syllabus as closely as possible, enjoyable lectures and overall a great professor. Make sure to read as there are some questions in the exam that he will want you to explain something but he will provide review sheets and practice problems. The only negative is that there aren't many practice material", + "pos": 0.135, + "neu": 0.742, + "neg": 0.123, + "_id": { + "$oid": "6711d801cd60fca157e6177d" + } + }, + { + "text": "Prof. Vant Hull cares about his students. He makes sure that we understand the concept behind the coding so we are ready to perform data analysis under any circumstances. Prof. Vant-Hull gives precise feedbacks so we know where to find our errors. Definitely will take a class with him again!", + "pos": 0.189, + "neu": 0.77, + "neg": 0.041, + "_id": { + "$oid": "6711d801cd60fca157e6177e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d801cd60fca157e61780" + }, + "professor_name": "Nectarios Limnatis", + "rating": 3.5, + "department": "Philosophy department", + "comments": [ + { + "text": "Do not take him. Makes you write 4 papers during the semester. To get an A in a paper, you must write at least 2300 words. Very nasty attitude. Makes a big deal if you do not have your camera on during the lecture.", + "pos": 0.0, + "neu": 0.917, + "neg": 0.083, + "_id": { + "$oid": "6711d801cd60fca157e61781" + } + }, + { + "text": "This dude is awesome, he was crystal clear and actually made philosophy easy to learn, though he has quite a few papers you have to write but you don't have to take the midterm and final if you do well on the papers, he is amazing, take him to actually learn something and have an awesome semester", + "pos": 0.28, + "neu": 0.72, + "neg": 0.0, + "_id": { + "$oid": "6711d801cd60fca157e61782" + } + }, + { + "text": "He is very lenient when it comes to taking the midterm or final, as long as you complete majority of the chapter summary essays. Every week he assigned a essay of the previously discussed chapter. I took him once a week for 2 hrs and a half and the lectures were really helpful, so take good notes for a good paper.", + "pos": 0.169, + "neu": 0.831, + "neg": 0.0, + "_id": { + "$oid": "6711d801cd60fca157e61783" + } + }, + { + "text": "Great Professor! I learned so much from his lectures. Midterm is optional if you do the papers. Make sure you do the readings beforehand and the textbook is your best friend for papers. He is really hard on you about lateness and absences. Overall he is passionate about philosophy and the class is very interesting.", + "pos": 0.292, + "neu": 0.684, + "neg": 0.024, + "_id": { + "$oid": "6711d801cd60fca157e61784" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d801cd60fca157e61786" + }, + "professor_name": "Jean Park", + "rating": 5, + "department": "Humanities department", + "comments": [ + { + "text": "Prof. Park is amazing as always. 204 centers on student discussions (less of her lecturing), each person provides close reading notes for a week's reading. 2 small writing assignments and 10-12 pg policy paper at the end. dense readings, sometime overwhelming, manage your time well. If you want help, she's available. Doable A, but not an easy A.", + "pos": 0.11, + "neu": 0.84, + "neg": 0.049, + "_id": { + "$oid": "6711d801cd60fca157e61787" + } + }, + { + "text": "Prof Park is kind and if you communicate your need will accommodate you. 3 papers, the 1st 2 are medium length, last 1 10-12 pages. 1 group presentation about final paper topic, 1 individual presentation abt the reading that week (1 person per week). Late work not accepted, attendance strongly required, optional discussion boards for participation", + "pos": 0.057, + "neu": 0.883, + "neg": 0.06, + "_id": { + "$oid": "6711d801cd60fca157e61788" + } + }, + { + "text": "The best professor. I took her twice in 10201 and 20401 and she does gives a lot of assignments but it's doable. Overall, a very sweet professor and nice to talk to.", + "pos": 0.27, + "neu": 0.73, + "neg": 0.0, + "_id": { + "$oid": "6711d801cd60fca157e61789" + } + }, + { + "text": "Professor Park is an amazing professor. So sweet, enthusiastic, caring, hilarious, and nice to talk to. There are a few class trips to museums that accompany the content learned in class. Do note that there is a good amount of work to do, but it isn't overwhelming. Pace yourself and remember to have fun. You will not regret taking her seminar.", + "pos": 0.299, + "neu": 0.701, + "neg": 0.0, + "_id": { + "$oid": "6711d801cd60fca157e6178a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d802cd60fca157e6178c" + }, + "professor_name": "Mardi Jaskot", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "Mardi is an awesome professor. She's there for you when you need help. Not an easy graders you need to focus and do well on assignments to get a good grade. However, she is helpful and generous. I would recommend", + "pos": 0.372, + "neu": 0.584, + "neg": 0.044, + "_id": { + "$oid": "6711d802cd60fca157e6178d" + } + }, + { + "text": "A very harsh grader! But she will help you! If you go to her she will be more then glad to explain what it is that she has assigned. She is neither rude nor mean! Take her! She will help you improve the understanding of your writing skills.", + "pos": 0.309, + "neu": 0.658, + "neg": 0.033, + "_id": { + "$oid": "6711d802cd60fca157e6178e" + } + }, + { + "text": "She is the worst instructor I have ever had. She is not mean or rude, but very lethargic and extremely un-engaging. Her class is very unstructured, not inducive to learning, and she turns interesting material into boring agony. True, this class is a mandatory one, but please, for the sake of your sanity, take it with another instructor.", + "pos": 0.179, + "neu": 0.655, + "neg": 0.166, + "_id": { + "$oid": "6711d802cd60fca157e6178f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d802cd60fca157e61791" + }, + "professor_name": "Natalie Hung", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "Very interesting class, the professor is very helpful. exams aren't hard as long as you do the reading. The semester is coming to an end and so far I have an A in the class and I'm a very lazy person. So buy the book online it's cheaper and it's actually pretty interesting. 2 exams some hw 3 practice quizzes and 1 paper", + "pos": 0.182, + "neu": 0.78, + "neg": 0.038, + "_id": { + "$oid": "6711d802cd60fca157e61792" + } + }, + { + "text": "She is a very nice professor. Her exams are not that hard if you read the textbook and study and do the practice quizzes. Do NOT try to just memorize the answers for the quizzes because the questions on the exams are different. There are hws but it's very easy that only takes about 10-15 mins. overall, I would recommend her", + "pos": 0.158, + "neu": 0.842, + "neg": 0.0, + "_id": { + "$oid": "6711d802cd60fca157e61793" + } + }, + { + "text": "She's very sweet and patient. I admire how much she tried to engage the students in the material. 2 exams, 1 paper and some hw. Her tests aren't too bad, but you MUST read the book if you want to do well and understand everything fully. She's a fairer prof. than the other guy who teaches abnormal for sure.", + "pos": 0.222, + "neu": 0.778, + "neg": 0.0, + "_id": { + "$oid": "6711d802cd60fca157e61794" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d802cd60fca157e61796" + }, + "professor_name": "Frankie Camacho", + "rating": 3.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Camacho is an excellent teacher. He teaches in a way that allows students practice both in class and out, and he makes the difficult concepts in calculus (implicit anything can go to hell) bearable. He grades fairly and from discussions with fellow STEM majors, his final tends to be easier than others' in the department. I recommend taking his clas", + "pos": 0.127, + "neu": 0.774, + "neg": 0.1, + "_id": { + "$oid": "6711d802cd60fca157e61797" + } + }, + { + "text": "This professor is simply the worst. Doesnt know how to teach. Only 10 people out of 40 used to show up. He is good person but a horrible teacher. You literally wont learn anything from this guy.", + "pos": 0.045, + "neu": 0.786, + "neg": 0.169, + "_id": { + "$oid": "6711d802cd60fca157e61798" + } + }, + { + "text": "Awesome!", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d802cd60fca157e61799" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d803cd60fca157e6179b" + }, + "professor_name": "Simon Nawrot", + "rating": 4.5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Funny guy. Teaches his jokes very well. Very Practical, relates a lot to REAL WORLD application. However, a bit disorganized and repetitive on teaching EE312 topics. Does not go over examples at all. Therefore, his homework and exams are SUPER-SUPER-SUPER HARD.", + "pos": 0.15, + "neu": 0.72, + "neg": 0.13, + "_id": { + "$oid": "6711d803cd60fca157e6179c" + } + }, + { + "text": "Great professor in EE dept if u really want to learn then go with this professor exams are all about his notes so nothin to worry highly recommended!!!!!!!!", + "pos": 0.248, + "neu": 0.664, + "neg": 0.088, + "_id": { + "$oid": "6711d803cd60fca157e6179d" + } + }, + { + "text": "very explanative.. exams are hard. have to attend all classes. good professor!!", + "pos": 0.234, + "neu": 0.672, + "neg": 0.094, + "_id": { + "$oid": "6711d803cd60fca157e6179e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d803cd60fca157e617a0" + }, + "professor_name": "Satabdi Mukherjee", + "rating": 2.5, + "department": "Mathematics department", + "comments": [ + { + "text": "I took the 8 am class, and she was 90 per of the time 30, 45 mins late. She was not clear at all and she likes to jump from topic to topic. She states that she is available to talk if you email her, but she never responded. Her tests are difficult, and even when she gives you the answers to the tests after you taken them, its still very confusing.", + "pos": 0.025, + "neu": 0.877, + "neg": 0.098, + "_id": { + "$oid": "6711d803cd60fca157e617a1" + } + }, + { + "text": "Honestly, sure she was tardy sometimes but come on it's 8AM, everyone was late. She cared so much about us and was a tough grader but when the final came, it was easier than her questions so it helped so much! She was so nice and would stay after class if we had any questions! Overall, an awesome professor!", + "pos": 0.295, + "neu": 0.682, + "neg": 0.023, + "_id": { + "$oid": "6711d803cd60fca157e617a2" + } + }, + { + "text": "Had her for an 8-940AM math class, she always showed up 30-40 minutes late (all throughout the semester). When we ask for clarification, she talks about something completely different despite how many times we tell her. She gives \"answer keys\" for an exam, literally at 12:30 am the night before the exam. Gives NO partial credit on test questions.", + "pos": 0.0, + "neu": 0.918, + "neg": 0.082, + "_id": { + "$oid": "6711d803cd60fca157e617a3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d804cd60fca157e617a5" + }, + "professor_name": "Anlys Olivera", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "I took Cognitive Psychology & Learning at CUNY SPS with Prof Olivera. The class wasn't overly hard but it wasn't super easy either. She provides very clear feedback on every assignment she gives. I think her grading is pretty fair, she makes you think and provide tangible explanations for your work. Simply copying and pasting will not work w/ her.", + "pos": 0.166, + "neu": 0.734, + "neg": 0.1, + "_id": { + "$oid": "6711d804cd60fca157e617a6" + } + }, + { + "text": "I took her at CUNY SPS for a Research Methods class... NO JOKE! Her instructions were always unclear and a little all over the place. Honestly, people ask a million questions because the majority of the class is clueless. She sounds defensive in her responses as if she's annoyed that people are asking questions about her UNCLEAR instructions...", + "pos": 0.06, + "neu": 0.729, + "neg": 0.211, + "_id": { + "$oid": "6711d804cd60fca157e617a7" + } + }, + { + "text": "The beginning was a little tough, but she is a really kind and caring professor. A nice person overall, her thorough knowledge of course material is extremely helpful. Take her!", + "pos": 0.406, + "neu": 0.569, + "neg": 0.025, + "_id": { + "$oid": "6711d804cd60fca157e617a8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d804cd60fca157e617aa" + }, + "professor_name": "Hee Chan Kim", + "rating": 4.8, + "department": "Art department", + "comments": [ + { + "text": "Amazing professor!", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d804cd60fca157e617ab" + } + }, + { + "text": "More than a professor he is a friend. Projects are made during class and you can also work during open hours. He focus more on the process of making the project because learning is more important than result. Great professor, I recommend you to take his class.", + "pos": 0.217, + "neu": 0.783, + "neg": 0.0, + "_id": { + "$oid": "6711d804cd60fca157e617ac" + } + }, + { + "text": "This guy was my favorite professor this whole semester. Great dude, super laid back, it's all about getting the work done - he will push you and challenge you right away. No homework, all work in class. \" it is not about the grade, is about what you learn\" enough said - take him you will have so much fun and your brain will GROW! :))", + "pos": 0.206, + "neu": 0.766, + "neg": 0.028, + "_id": { + "$oid": "6711d804cd60fca157e617ad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d804cd60fca157e617af" + }, + "professor_name": "Christopher Weimer", + "rating": 5, + "department": "Languages department", + "comments": [ + { + "text": "He is the best prof in the language department. he will help you in any situation and he always try to make class more funnier and easier to learn.", + "pos": 0.341, + "neu": 0.659, + "neg": 0.0, + "_id": { + "$oid": "6711d804cd60fca157e617b0" + } + }, + { + "text": "He gave difficult tests but as long as you showed that you actually tried you would pass with flying colors. He is also very encouraging whether or not you know the information.", + "pos": 0.137, + "neu": 0.815, + "neg": 0.048, + "_id": { + "$oid": "6711d804cd60fca157e617b1" + } + }, + { + "text": "Really good guy. Listens to the students problems. He also cares about every individual student. Works with us on the work. Honestly wish I took Latin with him from the very beginning. Glad he is at CCNY now. Hopefully he stays and takes over classics when the time comes and continues to grow and flourish. Definitely take this class.", + "pos": 0.277, + "neu": 0.687, + "neg": 0.036, + "_id": { + "$oid": "6711d804cd60fca157e617b2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d805cd60fca157e617b4" + }, + "professor_name": "Karen Williams", + "rating": 4.3, + "department": "History department", + "comments": [ + { + "text": "She makes herself available to students. You have one research paper, midterm and final. Does not give unnecessary homework. Nightly homework is just to read the textbook. If you don't do well on the midterm there was an extra credit option. Make sure you participate as best as possible and always pay attention to items on Blackboard.", + "pos": 0.141, + "neu": 0.809, + "neg": 0.05, + "_id": { + "$oid": "6711d805cd60fca157e617b5" + } + }, + { + "text": "It's very important to go to her class because if you miss one of her lecture, you will be in deep trouble when it comes to the midterm and the final exam. Overall, I love her attitude and the environment in the class because I'm always awake during her lecture, her sassiness is funny, and she is so helpful with students.", + "pos": 0.178, + "neu": 0.763, + "neg": 0.06, + "_id": { + "$oid": "6711d805cd60fca157e617b6" + } + }, + { + "text": "ALOT of notes. There is a Midterm, research paper and Final. Both midterm and final are the same: ten IDs (paragraph for each) and an essay (final has two essays). Great lecturer, very clear, but too many IDs to study for, gives 95-100 terms (IDs) to study for and only chooses 10 in exams. Gives extra credit for paper if you go to writing center.", + "pos": 0.113, + "neu": 0.887, + "neg": 0.0, + "_id": { + "$oid": "6711d805cd60fca157e617b7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d805cd60fca157e617b9" + }, + "professor_name": "Joey Small", + "rating": 5, + "department": "Judaic Studies department", + "comments": [ + { + "text": "rabbi joey small is a great person he is so inspirational what a guy 10/10 5 out of 5 stars", + "pos": 0.317, + "neu": 0.683, + "neg": 0.0, + "_id": { + "$oid": "6711d805cd60fca157e617ba" + } + }, + { + "text": "Best professor I ever had! Besides for being super cute and a great build he is an amazing teacher and an inspiring person. He knows his material and makes it interesting for everyone!", + "pos": 0.491, + "neu": 0.509, + "neg": 0.0, + "_id": { + "$oid": "6711d805cd60fca157e617bb" + } + }, + { + "text": "Prof is awesome! Readings are challenging but are discussed thoroughly in class. Tells u exactly what is expected & flexible! Important not to miss a class b/c lets u know from day 1 important key words & people that will be on the final. Youtube will most likely be his best friend (always fun). over all a great professor & loves feedback!", + "pos": 0.429, + "neu": 0.571, + "neg": 0.0, + "_id": { + "$oid": "6711d805cd60fca157e617bc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d805cd60fca157e617be" + }, + "professor_name": "Ricky Sharma", + "rating": 3.7, + "department": "Mathematics department", + "comments": [ + { + "text": "Horrible experience. He was not prepared to take this class. His exams are pretty hard. you have to have a very good understanding. He is not organized at all.", + "pos": 0.173, + "neu": 0.649, + "neg": 0.178, + "_id": { + "$oid": "6711d805cd60fca157e617bf" + } + }, + { + "text": "practice the end of section questions as much as possible..He really prepares you for the final..he always give one or two trick questions on his quizzes..pay very close attention to those because those are question you would likely find on the Final. His grading style is very student friendly.", + "pos": 0.067, + "neu": 0.909, + "neg": 0.023, + "_id": { + "$oid": "6711d805cd60fca157e617c0" + } + }, + { + "text": "He is very patient, and you can always ask him questions. I was horrible at curve sketching, but after taking the class, I learnt so much. However, the textbook is mandatory. He assigns problems for homework. Don't be surprised that some of the hard text questions appear in his exams. Just pay attention and practice a lot.", + "pos": 0.023, + "neu": 0.804, + "neg": 0.173, + "_id": { + "$oid": "6711d805cd60fca157e617c1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d806cd60fca157e617c3" + }, + "professor_name": "Thierry Saintine", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Amazing professor! The class was very student centered and he always offered feedback and gave clarity. Very inspirational, perfect example of what a good teacher should be. A lot of reading ad participation.", + "pos": 0.381, + "neu": 0.619, + "neg": 0.0, + "_id": { + "$oid": "6711d806cd60fca157e617c4" + } + }, + { + "text": "Mr. Saintine is an extraordinary teacher. He made a huge impact on my life. I took his class at Rowan University my first semester. He gave me a whole new outlook on writing. He has taught me so much, and i can not wait to use it in my future writing. I recommend you take this class, because you will not only learn from him but be inspired by him.", + "pos": 0.103, + "neu": 0.897, + "neg": 0.0, + "_id": { + "$oid": "6711d806cd60fca157e617c5" + } + }, + { + "text": "Prof. Saintine was excellent at the beginning of the semester but petered out towards the end. If you're looking for an easy grade I'd take his class, but if you're looking to actually learn how to write - you should look elsewhere. A solid ENG 110 foundation is essential for those of us who never learned to write essays/etc. in high school.", + "pos": 0.121, + "neu": 0.879, + "neg": 0.0, + "_id": { + "$oid": "6711d806cd60fca157e617c6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d806cd60fca157e617c8" + }, + "professor_name": "William Henning", + "rating": 3, + "department": "Humanities department", + "comments": [ + { + "text": "Knows his stuff. If you desire real world first hand knowledge of union and labor matters Henning's class is where to be. Stickler for grammar, and good writing so proofread and then proofread again! I would say his instruction style is a bit lazy but overall I think he's a strong professor.", + "pos": 0.197, + "neu": 0.774, + "neg": 0.029, + "_id": { + "$oid": "6711d806cd60fca157e617c9" + } + }, + { + "text": "Knows his stuff. If you desire real world first hand knowledge of union and labor matters Henning's class is where to be. Stickler for grammar, and good writing so proofread and then proofread again! I would say his instruction style is a bit lazy but overall I think he's a stron professor.", + "pos": 0.129, + "neu": 0.839, + "neg": 0.031, + "_id": { + "$oid": "6711d806cd60fca157e617ca" + } + }, + { + "text": "Unless you are in the Union you will not be able to relate in this class. Hardly looked at the book he required us to read. He gives a list of topics for you to choose to present in class. If you have errors in your presentation he will tell you your wrong but we never went over it. Would not recommend this teacher.", + "pos": 0.0, + "neu": 0.905, + "neg": 0.095, + "_id": { + "$oid": "6711d806cd60fca157e617cb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d806cd60fca157e617cd" + }, + "professor_name": "Sihong Wang", + "rating": 3.7, + "department": "Biomedical department", + "comments": [ + { + "text": "Dr. Wang is a very understanding and receptive professor when you first get to know her in class and in her office. Her TA and herself are lenient and generous in terms of grading and testing. In the lab however, she can be strict and demanding. I guess professors are different when you work under them for research..", + "pos": 0.087, + "neu": 0.883, + "neg": 0.03, + "_id": { + "$oid": "6711d806cd60fca157e617ce" + } + }, + { + "text": "She is such a sweet professor! You do have to follow along and come to see her regularly to keep a tab on the course, otherwise completely approachable and understandable.", + "pos": 0.102, + "neu": 0.898, + "neg": 0.0, + "_id": { + "$oid": "6711d806cd60fca157e617cf" + } + }, + { + "text": "Assumes you are following, and exams are tricky.", + "pos": 0.0, + "neu": 0.814, + "neg": 0.186, + "_id": { + "$oid": "6711d806cd60fca157e617d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d807cd60fca157e617d2" + }, + "professor_name": "Dorothy Striplin", + "rating": 2.2, + "department": "Education department", + "comments": [ + { + "text": "I do agree that some instructions were a bit unclear, especially for a summer course but Dr. Striplin was always available to answer any question. Dr. Spriplin was a wonderful teacher great understanding on the topics. I enjoyed her class. She made sure to answer the class's questions and concerns. The articles we read in class were insightful.", + "pos": 0.271, + "neu": 0.709, + "neg": 0.02, + "_id": { + "$oid": "6711d807cd60fca157e617d3" + } + }, + { + "text": "She is by far the WORST professor at CCNY. She has no idea what she is doing and is so confusing. She does not respond to emails and does not really care about her students. Try not to take her because you will be super stressed out with the way she teaches. Half of the time she gives students the wrong information. STAY AWAY!", + "pos": 0.049, + "neu": 0.721, + "neg": 0.23, + "_id": { + "$oid": "6711d807cd60fca157e617d4" + } + }, + { + "text": "Just Horrible. I can't believe this woman teaches education classes.", + "pos": 0.0, + "neu": 0.72, + "neg": 0.28, + "_id": { + "$oid": "6711d807cd60fca157e617d5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d807cd60fca157e617d7" + }, + "professor_name": "Denisse Andrade", + "rating": 1, + "department": "International Studies department", + "comments": [ + { + "text": "She is a great person and has a huge heart, however she is not cut out to be a professor. Her grading criteria was non exsistent, the class had no structure throughout the entire semester. As one of the mandatory International Studies major class I was trully looking forward to taking this class, however I feel as if I came out knowing nothing.", + "pos": 0.188, + "neu": 0.782, + "neg": 0.03, + "_id": { + "$oid": "6711d807cd60fca157e617d8" + } + }, + { + "text": "Horrible teacher !! I advise you DO NOT TAKE HER CLASS !! Readings are all based on Latin America in a Global Perspective class. She seems nice and easy going but don't be fooled. She gives two readings for the week which ranges from 15 - 30 pages long and you have to write a response to 4 of them. More of a discussion class.", + "pos": 0.11, + "neu": 0.859, + "neg": 0.032, + "_id": { + "$oid": "6711d807cd60fca157e617d9" + } + }, + { + "text": "The worst professor ever, I emailed her several times for help with mid-term and the class in general but she never responded. Never answers anyone's emails, posts readings late, gives ridiculous assignments, and the class is a GLOBAL PERSPECTIVE but she focuses on Latin America the whole semester. DON'T TAKE HER, SHELL RUIN YOU!!!!!", + "pos": 0.028, + "neu": 0.768, + "neg": 0.204, + "_id": { + "$oid": "6711d807cd60fca157e617da" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d808cd60fca157e617dc" + }, + "professor_name": "Andrew Goldberg", + "rating": 3.5, + "department": "Theater department", + "comments": [ + { + "text": "Professor Goldberg is a really great teacher. I took theatre history with him and it was more than I expected. He's a director and he focuses a lot on that because you can tell he really likes what he does. I liked him a lot easy A. Nothing hard about his class except maybe that you have to write a couple of papers. Easy.", + "pos": 0.231, + "neu": 0.769, + "neg": 0.0, + "_id": { + "$oid": "6711d808cd60fca157e617dd" + } + }, + { + "text": "great guy but tough grader when it comes to papers, and final papers. 2 group projects also. Attendance is mandatory, quiz during first 10 mins in almost every classes based on the given reading assignments.", + "pos": 0.106, + "neu": 0.848, + "neg": 0.046, + "_id": { + "$oid": "6711d808cd60fca157e617de" + } + }, + { + "text": "makes attendance VERY big deal, give quiz out during first 10 mins of class based on the reading assignments (heavy). 3 response papers (2 pages), 2 group projects, and one final paper (6pages+)", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d808cd60fca157e617df" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d808cd60fca157e617e1" + }, + "professor_name": "Jennifer Holmes", + "rating": 4.8, + "department": "Theater department", + "comments": [ + { + "text": "I've never had any professor care about me as much as she does. Also she's so engaging and tells great stories that aren't off topic but make me understand the material better. Didn't expect to love this class but it's my fave. Not even a theater major!", + "pos": 0.244, + "neu": 0.68, + "neg": 0.076, + "_id": { + "$oid": "6711d808cd60fca157e617e2" + } + }, + { + "text": "This class is maybe the best in the department. Really tough on feedback and a lot al lot of info but amazing. Class is big because everyone wants in. Wish it was smaller but she makes it work with alot of attention and office hour conferences. Totally available and inspiring professor", + "pos": 0.246, + "neu": 0.732, + "neg": 0.022, + "_id": { + "$oid": "6711d808cd60fca157e617e3" + } + }, + { + "text": "At first the workload seemed overwhelming, but it evenly spread throughout the semester. She is very interested in theatre and it shows. Expect group projects and quizzes every few weeks. Shes such a cool professor and she kept the students engaged in the work, so it was all fun and interesting stuff", + "pos": 0.282, + "neu": 0.718, + "neg": 0.0, + "_id": { + "$oid": "6711d808cd60fca157e617e4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d808cd60fca157e617e6" + }, + "professor_name": "Eric Fertuck Fertuck", + "rating": 4.2, + "department": "Psychology department", + "comments": [ + { + "text": "The professor is extremely helpful. His tests are exactly based on what he teaches so no surprises. no papers. Lectures are very clear. grades are based on exams and participation. Very Helpful.", + "pos": 0.311, + "neu": 0.641, + "neg": 0.048, + "_id": { + "$oid": "6711d808cd60fca157e617e7" + } + }, + { + "text": "His exams are really hard! He sometimes seems to be confused about what's going on. He gives you four different books to read and it's impossible to catch up with everything if you are taking other difficult classes. His final was what saved my grade. Take him only if you have easy classes along with it.", + "pos": 0.09, + "neu": 0.803, + "neg": 0.107, + "_id": { + "$oid": "6711d808cd60fca157e617e8" + } + }, + { + "text": "Hes a nice professor. Its only my 1st semester at CCNY so i cant say \"hes the best professor in ccny\" but he was nice. Dont buy the expensive textbooks, he uploads each ch. on blackboard for you. Study the chapters thoroughly, all test material comes fro text and videos watched in class. The class is not too hard. just do what he says.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d808cd60fca157e617e9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d809cd60fca157e617eb" + }, + "professor_name": "Yvel Crevecoeur", + "rating": 3.9, + "department": "Education department", + "comments": [ + { + "text": "Prof. Crev was fantastic instructor. His lessons were very helpful!", + "pos": 0.466, + "neu": 0.534, + "neg": 0.0, + "_id": { + "$oid": "6711d809cd60fca157e617ec" + } + }, + { + "text": "Dr. Crevecoeur really goes above and beyond for his students. He is caring, involved and his students' biggest advocate. Super accessible, both in person and via email. He takes a lot of time to explain concepts individually, and is always willing to help whether its a class issue, or something related to your major.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d809cd60fca157e617ed" + } + }, + { + "text": "What is lacking in Dr. Crevecoeur is what is lacking in many education courses: emphasis is on reviewing articles and discussing theory rather than giving teachers practical solutions to difficulties they are experiencing in their classrooms. He knows how to write curriculum and conduct research but not much else.", + "pos": 0.06, + "neu": 0.908, + "neg": 0.032, + "_id": { + "$oid": "6711d809cd60fca157e617ee" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d809cd60fca157e617f0" + }, + "professor_name": "Stacey Holman", + "rating": 3.5, + "department": "Media Arts department", + "comments": [ + { + "text": "Her class is a little like being thrown out into the wild. If you like more structure in your courses, this may not be for you. Also nothing is ever really broken down, so if you have no prior production experience you may be a little lost at times. She's a cool professor and overall pretty nice, but doesn't provide much guidance.", + "pos": 0.132, + "neu": 0.791, + "neg": 0.078, + "_id": { + "$oid": "6711d809cd60fca157e617f1" + } + }, + { + "text": "Professor Holman was great! Class was a bit early so make sure you have your morning Joe or she'll definitely call the class out on it. Not many Powerpoint lectures. Lots of movies, films to watch. Wouldn't advise that you are late because she does lock the door. She's very passionate about her work which enables you to be as well.", + "pos": 0.216, + "neu": 0.784, + "neg": 0.0, + "_id": { + "$oid": "6711d809cd60fca157e617f2" + } + }, + { + "text": "Easy production class if you have some experience. If you have no prior experience with video productions, consider taking another professor. Holman offers very little guidance in teaching you the technical aspects of video productions. Much of the content is self-learned from the assigned book read outside of class. No exams, just make 4 videos.", + "pos": 0.049, + "neu": 0.877, + "neg": 0.074, + "_id": { + "$oid": "6711d809cd60fca157e617f3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d809cd60fca157e617f5" + }, + "professor_name": "Sobha K. Paredes", + "rating": 4, + "department": "Education department", + "comments": [ + { + "text": "EDCE 0700A Absolutely amazing. Definitely HARD WORK but very worth it!", + "pos": 0.467, + "neu": 0.429, + "neg": 0.104, + "_id": { + "$oid": "6711d809cd60fca157e617f6" + } + }, + { + "text": "I had Professor Paredes for Speech class and she is one of the best teachers I have ever had. She makes the class interesting and not boring at all. She teaches things that you can carry on for life. I definitely recommend Professor Paredes for anyone interested in taking a Speech class! =)", + "pos": 0.306, + "neu": 0.694, + "neg": 0.0, + "_id": { + "$oid": "6711d809cd60fca157e617f7" + } + }, + { + "text": "She's a stickler for attendance. It is manadatory to regurgitate EXACT information spoken during lecture. If you have an opinion Don't Take This Professor!!!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d809cd60fca157e617f8" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80acd60fca157e617fa" + }, + "professor_name": "Dan Steingart", + "rating": 2.8, + "department": "Chemical Engineering department", + "comments": [ + { + "text": "Difficult class. He is okay. The thing you'll suffer the most with is HW. Like what the person before me wrote. Try to solve the HW together in groups. it'll help a lot.", + "pos": 0.212, + "neu": 0.644, + "neg": 0.143, + "_id": { + "$oid": "6711d80acd60fca157e617fb" + } + }, + { + "text": "He's a good professor. I think that at the begging it was really difficult for us to understand what he was talking about. But we're getting the hang of it now. As for the HW, we do it in groups.Also, the class itself requires python, matlab, excel. He told us we can use whichever we want. Overall i think he's great. He also isn't a grade butcher.", + "pos": 0.17, + "neu": 0.806, + "neg": 0.025, + "_id": { + "$oid": "6711d80acd60fca157e617fc" + } + }, + { + "text": "It's a self-study class really. HW not related to test. You use a program called python to do HW. Asking him questions won't help because he won't answer. more like he tries to answer but doesn't know the answer himself. maybe because it's his first time teaching this class. But he's a nice person. Good luck with the unsolvable HWs.", + "pos": 0.165, + "neu": 0.787, + "neg": 0.047, + "_id": { + "$oid": "6711d80acd60fca157e617fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80acd60fca157e617ff" + }, + "professor_name": "Naraelle Hohensee", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She's super awesome! She makes Art History fun and enjoyable. She relates to her students and is very understanding. I'm taking another required art history class and I just keep wishing she was the one teaching my class because she's THAT Awesome!! I love her because most of the things she taught me actually stayed in my head! So, take her!", + "pos": 0.321, + "neu": 0.679, + "neg": 0.0, + "_id": { + "$oid": "6711d80acd60fca157e61800" + } + }, + { + "text": "best teacher I ever had! wonderful class,she understands and communicates with the students a lot", + "pos": 0.387, + "neu": 0.613, + "neg": 0.0, + "_id": { + "$oid": "6711d80acd60fca157e61801" + } + }, + { + "text": "She is the one of the best professors ive ever had...she has such a great personality and she knows her art history...just show up and her tests r the power point just memorize them and youre fine! shes sweet and intelligent:)", + "pos": 0.313, + "neu": 0.687, + "neg": 0.0, + "_id": { + "$oid": "6711d80acd60fca157e61802" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80acd60fca157e61804" + }, + "professor_name": "Caty Bartholomew", + "rating": 3.8, + "department": "Art department", + "comments": [ + { + "text": "She's very easy and sweet. You'll most likely never see her angry. She gives different assignments for illustration which are all pretty different and will get you to experiment with different mediums. Overall an easy A class.", + "pos": 0.323, + "neu": 0.677, + "neg": 0.0, + "_id": { + "$oid": "6711d80acd60fca157e61805" + } + }, + { + "text": "She's good teacher and easy grader but she's not clear about what she wants. Very laid back which can be bad sometimes.Very strict about attendance. If you want a easy grade then go for it but if really want to learn more about design and the real world? pass on her.", + "pos": 0.177, + "neu": 0.703, + "neg": 0.12, + "_id": { + "$oid": "6711d80acd60fca157e61806" + } + }, + { + "text": "She is very good and nice teacher. She understands students and listens students a lot", + "pos": 0.325, + "neu": 0.675, + "neg": 0.0, + "_id": { + "$oid": "6711d80acd60fca157e61807" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80bcd60fca157e61809" + }, + "professor_name": "Utko Sezgin", + "rating": 4.8, + "department": "Political Science department", + "comments": [ + { + "text": "A pretty straightforward professor with a lot to offer. Not one of those people who doesn't remember what it was like to be a student, very understanding and helpful. Interesting class, no text book but a lot of articles, great lectures but it helps to read. Reviews for tests. 2 tests, 2 papers, easy A.", + "pos": 0.298, + "neu": 0.679, + "neg": 0.023, + "_id": { + "$oid": "6711d80bcd60fca157e6180a" + } + }, + { + "text": "the best prof Ive ever had, smart,fun,interesting and a very fair grader, awesome guy", + "pos": 0.504, + "neu": 0.496, + "neg": 0.0, + "_id": { + "$oid": "6711d80bcd60fca157e6180b" + } + }, + { + "text": "Easy, laid back professor. Very helpful if you talk to him. Readings are important and make class easier if you do them--but he covers everything you need to know in class. He takes attendance almost everyday so try to attend. Two, two page papers (Single spaced)--one was based on articles and another on a documentary, a midterm and final.", + "pos": 0.161, + "neu": 0.839, + "neg": 0.0, + "_id": { + "$oid": "6711d80bcd60fca157e6180c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80bcd60fca157e6180e" + }, + "professor_name": "Elizabeth Donato", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Donato is a very sweet and easy professor. Very relaxed class, if you're late or absent a few times it won't destroy your chance of getting an A. I got away with not using the textbook at all and got an A in the class. Just participate a lot, take good notes to use for the midterm & final, and put a lot of effort in the papers.", + "pos": 0.198, + "neu": 0.78, + "neg": 0.022, + "_id": { + "$oid": "6711d80bcd60fca157e6180f" + } + }, + { + "text": "She is very knowledgeable and helpful. She will make time after class if you need to talk to her about upcoming assignments.", + "pos": 0.127, + "neu": 0.873, + "neg": 0.0, + "_id": { + "$oid": "6711d80bcd60fca157e61810" + } + }, + { + "text": "She's amazing and sweet! She knows her stuff! She tries to make the class fun and work with you if you need help. 3 papers, a midterm and a final.", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d80bcd60fca157e61811" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80bcd60fca157e61813" + }, + "professor_name": "Tina Lee", + "rating": 4.8, + "department": "English department", + "comments": [ + { + "text": "Okay, she's a baddie but that won't distract you from how great of a professor she is. No nonsense all around great teacher and her inquiry seminar made me want to pursue a career in the literary arts. I'm considering her to be my advisor too. Standard, three papers and a final, her grading is tough but that's only because she sets the bar high.", + "pos": 0.245, + "neu": 0.733, + "neg": 0.022, + "_id": { + "$oid": "6711d80bcd60fca157e61814" + } + }, + { + "text": "Great Professor at CCNY and gives great feedback, but she's a harsh grader.", + "pos": 0.269, + "neu": 0.528, + "neg": 0.203, + "_id": { + "$oid": "6711d80bcd60fca157e61815" + } + }, + { + "text": "She is a great professor. She gives a lot of feedback on paper drafts which helped me get good grades on my papers. You do have to work for a good grade but she does help when you ask for it. I would recommend you to take her.", + "pos": 0.236, + "neu": 0.764, + "neg": 0.0, + "_id": { + "$oid": "6711d80bcd60fca157e61816" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80ccd60fca157e61818" + }, + "professor_name": "Katherine Mendis", + "rating": 4.7, + "department": "Philosophy department", + "comments": [ + { + "text": "Prof Mendis is very knowledgable. This is a 3000 level course & she treats it as such, but she understands that this is the 1st phil class for many & tries to ease us into it. The readings aren't easy, but doable & fair. Select 1 reading to write a 5 page paper, one to create a presentation. 2 exams: MC, T/F, short response, & essay. Easy grader!", + "pos": 0.164, + "neu": 0.796, + "neg": 0.039, + "_id": { + "$oid": "6711d80ccd60fca157e61819" + } + }, + { + "text": "Shes extremely fair, if you dont get an A then youre just a lazy person. one 5 page paper, one presentation on a topic that you choose from a list, a midterm and final which arent cumulative. She does give a lot of reading though but she discusses it during class so it isnt mandatory. Just read the articles and you should receive an easy A.", + "pos": 0.079, + "neu": 0.872, + "neg": 0.049, + "_id": { + "$oid": "6711d80ccd60fca157e6181a" + } + }, + { + "text": "I loved this professor. You have the opportunity to get full points in one paper and one presentation the entire semester. Full points. Same goes for exams which were super easy. Just come to lectures for attendance and also pay attention but her slides &readings are always posted so you can be lenient. Also, she sparks interest on the subject.", + "pos": 0.221, + "neu": 0.761, + "neg": 0.017, + "_id": { + "$oid": "6711d80ccd60fca157e6181b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80ccd60fca157e6181d" + }, + "professor_name": "Matthew Paczkowski", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "WOW. Fantastic professor. Real nice grader and very understanding, personable guy. Considering it was an introductory English course, I even learned a solid amount. Would definitely recommend.", + "pos": 0.458, + "neu": 0.542, + "neg": 0.0, + "_id": { + "$oid": "6711d80ccd60fca157e6181e" + } + }, + { + "text": "This prof is amazing! He was so helpful, and even though it's an introductory English class, I learned so much. He's very understanding and clear. None of the assignments were too difficult. I would definitely take him again.", + "pos": 0.272, + "neu": 0.677, + "neg": 0.051, + "_id": { + "$oid": "6711d80ccd60fca157e6181f" + } + }, + { + "text": "Undeniably, the best professor I've ever had! Tries to make the class fun and allows rewrites on essays for a better grade. Makes sure that everybody understands each topic before moving on. Responds quickly to emails and is willing to help you to become a better writer. In the end, he would treat the whole class with snacks. You will learn a lot!", + "pos": 0.278, + "neu": 0.722, + "neg": 0.0, + "_id": { + "$oid": "6711d80ccd60fca157e61820" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80ccd60fca157e61822" + }, + "professor_name": "Subhashini Poola", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "This class is lectures. You are responsible for your own grade. The lab portion was mostly self taught (be a responsible student and do the work during the lab hours.) Gives powerpoint reviews before test. Everything on those PP's will be on the test, learn the material on them. Answers all questions, wants you to succeed.", + "pos": 0.128, + "neu": 0.872, + "neg": 0.0, + "_id": { + "$oid": "6711d80ccd60fca157e61823" + } + }, + { + "text": "She tells you exactly what will be on the exams and final. She also cares about her students and wants them to succeed. It's a shame that she will not be teaching in our school anymore.", + "pos": 0.147, + "neu": 0.78, + "neg": 0.073, + "_id": { + "$oid": "6711d80ccd60fca157e61824" + } + }, + { + "text": "She teaches you only what you need to know for your MCAT makes it very clear at the beginning of the class. Also states it in the syllabus. She give you the answers to the exams in keywords but for some reason you actually learn everything you need to learn without a problem. She's genius. Her classes get books fast so be ready to fight for a seat", + "pos": 0.112, + "neu": 0.843, + "neg": 0.045, + "_id": { + "$oid": "6711d80ccd60fca157e61825" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80dcd60fca157e61827" + }, + "professor_name": "Fernanda Vidal", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "I took the course, Psychology of People in Places, a few years ago during my junior/senior year at CCNY. This class really changed my life. I have continued to make reference and reflect on the ideas I learned. I will never forget what an inspiration Professor Vidal was to me in my own journey as both a creative and psychologist.", + "pos": 0.123, + "neu": 0.877, + "neg": 0.0, + "_id": { + "$oid": "6711d80dcd60fca157e61828" + } + }, + { + "text": "Prof Vidal is very sweet and her class is fun. There are 2 papers, a midterm, and some small assignments. She is not a harsh grader whatsoever. She assigns readings for class discussion (not pop quizzes). Just make sure to come to class since attendance counts! I highly recommend taking this course with her.", + "pos": 0.227, + "neu": 0.773, + "neg": 0.0, + "_id": { + "$oid": "6711d80dcd60fca157e61829" + } + }, + { + "text": "This class was nice. She gives many assignments to do but they were do-able. The readings were too much. Every week there were 50+ pages to read. She is really nice though. You do have to read because she gives pop quizzes every time you meet. Good luck.", + "pos": 0.24, + "neu": 0.76, + "neg": 0.0, + "_id": { + "$oid": "6711d80dcd60fca157e6182a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80dcd60fca157e6182c" + }, + "professor_name": "Christopher Fritton", + "rating": 3, + "department": "Biomedical Engineering department", + "comments": [ + { + "text": "Class is tough but he is dedicated to students. Study and do ALL your homework, attend office hours if you have trouble. He REALLY hates cheaters, don't cheat or he'll make exam conditions more complicated. If you wanna cheat or be lazy, find a different professor. If you want to learn Mechanics of Materials, he'll teach it to you.", + "pos": 0.106, + "neu": 0.614, + "neg": 0.279, + "_id": { + "$oid": "6711d80dcd60fca157e6182d" + } + }, + { + "text": "Fritton is a pretty solid guy. He knows his material well in addition to a load of experience to support him. The class material is stressful but Fritton's grading policy provides a lot of yield. In addition, there is a lot of topics to go over, therefore he is unable to do examples in class but leaves time before and after to go over questions.", + "pos": 0.099, + "neu": 0.87, + "neg": 0.031, + "_id": { + "$oid": "6711d80dcd60fca157e6182e" + } + }, + { + "text": "Seems nice and knowledgeable about what he teaches but his classes were very boring. He is very monotone so it's easy to fall asleep. His exams were ok but the class was so boring it was hard to absorb much. He also isn't very good on answering student questions. Taught exactly what was on slides with little time for practice Q?s during class", + "pos": 0.116, + "neu": 0.724, + "neg": 0.16, + "_id": { + "$oid": "6711d80dcd60fca157e6182f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80dcd60fca157e61831" + }, + "professor_name": "Frederick Tucker", + "rating": 4.3, + "department": "Sociology department", + "comments": [ + { + "text": "I implore you not to take this class if youve ever had any unoriginal thought. He thinks every single word that isnt yours is plagiarism. Also if you arent good at math stay away, theres statistics where you wouldnt expect and it will mess with you. Hes kind of nice, but that only gets you so far as a student when hes such a harsh grader.", + "pos": 0.025, + "neu": 0.873, + "neg": 0.103, + "_id": { + "$oid": "6711d80dcd60fca157e61832" + } + }, + { + "text": "Really interesting lectures, very organized, cares about students, overall just a great professor. Heavier workload than a typical sociology class, but I learned more because of that. I recommend.", + "pos": 0.284, + "neu": 0.716, + "neg": 0.0, + "_id": { + "$oid": "6711d80dcd60fca157e61833" + } + }, + { + "text": "Professor Tucker is a great professor. He is caring, invested, helpful, accessible, and engaging. If you do all the reading and come to class prepared you will do well. After the first class I was scared of the \"abstract\" homework assignments but I am so glad I stuck it out and I am a better student and writer for it. Highly recommend.", + "pos": 0.301, + "neu": 0.638, + "neg": 0.061, + "_id": { + "$oid": "6711d80dcd60fca157e61834" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80ecd60fca157e61836" + }, + "professor_name": "Christopher Leishman", + "rating": 3.3, + "department": "Chemistry department", + "comments": [ + { + "text": "This professor is a whole lot clearer than other chem professors here at CCNY. He knows the subject is hard so he does his best to explain. He curves his exams as well as letting us know if we should drop the course or not. I recommend since its easier than other chem professors.", + "pos": 0.145, + "neu": 0.765, + "neg": 0.089, + "_id": { + "$oid": "6711d80ecd60fca157e61837" + } + }, + { + "text": "Its likely his first time teaching a class, since there is no history of him teaching anywhere else. Not a perfect lecturer, but he does clarify a lot of things from the textbook. You just need to come up to him and ask him questions, he is very nice and approachable. He curved his exams since he made them harder and longer than other professors'.", + "pos": 0.059, + "neu": 0.889, + "neg": 0.052, + "_id": { + "$oid": "6711d80ecd60fca157e61838" + } + }, + { + "text": "Eh, i feel a BIT bad for him. He is a researcher and the school had him fill for some professor who got fired. He didn't know how to teach and I heard from a higher up he didnt care. Exams are just like his practice ones, so easy get good grades on them. Online HW's/readings are annoying but doable. Final like previous dept finals, not too hard.", + "pos": 0.14, + "neu": 0.755, + "neg": 0.105, + "_id": { + "$oid": "6711d80ecd60fca157e61839" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80ecd60fca157e6183b" + }, + "professor_name": "Aaron Welt", + "rating": 5, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Took his Jewish history class at St. John's. Best professor ever, he's so sweet and caring and really wants us to succeed. A lot of reading and not many grades. 2 midterms, film review, and final. The only downfall is he reads off a tablet so it can be boring. Super nice would take again and the class is interesting.", + "pos": 0.308, + "neu": 0.663, + "neg": 0.029, + "_id": { + "$oid": "6711d80ecd60fca157e6183c" + } + }, + { + "text": "Prof. Welt is one of the best professors at Hunter. I took his Gender in Modern Jewish History class online, and it was amazing! The lectures were very interesting and he is very helpful when it comes to questions about assignments or the class in general. He gives extra credit options, and really wants his students to do well in his class. 100/100", + "pos": 0.251, + "neu": 0.749, + "neg": 0.0, + "_id": { + "$oid": "6711d80ecd60fca157e6183d" + } + }, + { + "text": "Aaron Welt's Jewish Life in NY class is extremely easy. Do the readings just for the midterm. For the final, it is an 8-10 page paper on a topic of your choosing. Participate here and there and all is fine. You do not have to pay attention or do the readings often as he simply reads his notes/regurgitates the info from the readings.", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d80ecd60fca157e6183e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80ecd60fca157e61840" + }, + "professor_name": "Anna Nicolaou", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "She is such a great lecturer! The class was very fun and informative with the guest speakers they brought in. The assignments consisted of debates and papers, not hard, with clear guidelines. Their personal journalism experiences and knowledge integrated with text provided significant insight into mass media and politics.", + "pos": 0.194, + "neu": 0.768, + "neg": 0.038, + "_id": { + "$oid": "6711d80ecd60fca157e61841" + } + }, + { + "text": "Interesting topics and the professor makes it easy to understand / follow. Be prepared for in class debates.", + "pos": 0.333, + "neu": 0.667, + "neg": 0.0, + "_id": { + "$oid": "6711d80ecd60fca157e61842" + } + }, + { + "text": "Great professor and caring of her students. Highly recommend to take this class. Professor Nicolaou's approachability and dedication to helping students grasp complex concepts make her classes not only informative but also enjoyable.", + "pos": 0.3, + "neu": 0.7, + "neg": 0.0, + "_id": { + "$oid": "6711d80ecd60fca157e61843" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80fcd60fca157e61845" + }, + "professor_name": "Shanelle Matthews", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "I took Narrative Power in The Black Radical Tradition fall semester and I'm glad I did, she does an excellent job at making you challenge your beliefs and worldview. This course requires a lot of reading and that can be intimidating but without reading you can never understand the ideologies that these black activists wrote about. 100% recommend.", + "pos": 0.137, + "neu": 0.832, + "neg": 0.031, + "_id": { + "$oid": "6711d80fcd60fca157e61846" + } + }, + { + "text": "Shanelle is an amazing, very educated and caring professor. Prepare to be inspired and not want to be in another class again because she sparks a fire in you, you couldn't even imagine. She will fight for you and make you rethink how you've been taught your whole life.", + "pos": 0.175, + "neu": 0.72, + "neg": 0.104, + "_id": { + "$oid": "6711d80fcd60fca157e61847" + } + }, + { + "text": "I took ANTH 21505 with Shanelle Matthews at CCNY. Learned a-lot about the power of black narratives and i am forever grateful for that opportunity. Matthews is very understanding and very relatable. Communication is key! Had a fun time in class discussions too. Would totally take again!!!", + "pos": 0.189, + "neu": 0.811, + "neg": 0.0, + "_id": { + "$oid": "6711d80fcd60fca157e61848" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80fcd60fca157e6184a" + }, + "professor_name": "Sobha Kavanakudiyil", + "rating": 3.3, + "department": "Education department", + "comments": [ + { + "text": "This professor was okay. Took her over the summer. We worked in groups throughout the entire semester. Expect to stay until the last minute of class. She went on vacation and left us a sub. Fair grader, nice lady.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d80fcd60fca157e6184b" + } + }, + { + "text": "She is awesome! She knows her craft and she's great at giving 'teaching tidbits' to her students. I learned a lot in her class (Drama in Education). She gives course works that are reasonable and assignments that would support her students in a long run(not just for her class or for the semester). I would definitely take her again next semester. :)", + "pos": 0.256, + "neu": 0.744, + "neg": 0.0, + "_id": { + "$oid": "6711d80fcd60fca157e6184c" + } + }, + { + "text": "Confusing No cohesion in the curriculum Bad time management", + "pos": 0.0, + "neu": 0.441, + "neg": 0.559, + "_id": { + "$oid": "6711d80fcd60fca157e6184d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d80fcd60fca157e6184f" + }, + "professor_name": "Jack Abel", + "rating": 1.3, + "department": "Mechanical Engineering department", + "comments": [ + { + "text": "Confusing, unclear, and has high expectations. However he's negotiable with deadlines and assignments so long as you negotiate when he first assigns it.", + "pos": 0.0, + "neu": 0.843, + "neg": 0.157, + "_id": { + "$oid": "6711d80fcd60fca157e61850" + } + }, + { + "text": "Avoid at all cost. Not consistence in any area.", + "pos": 0.0, + "neu": 0.784, + "neg": 0.216, + "_id": { + "$oid": "6711d80fcd60fca157e61851" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d810cd60fca157e61853" + }, + "professor_name": "Michael Gillespie", + "rating": 2.5, + "department": "African-American Studies department", + "comments": [ + { + "text": "I took him for the Art of Black film. Watch the movies and you'll be fine. you dont watch the movies during class time, you have to do it on your own. Term paper is the only thing you're graded on for the semester but he might give extra credit assignments. Hard grader with the term paper but gives you time to revise before final grades are due.", + "pos": 0.067, + "neu": 0.91, + "neg": 0.022, + "_id": { + "$oid": "6711d810cd60fca157e61854" + } + }, + { + "text": "Strict about attendance yet its ok for him to show late + gave last minute notices about class cancellations. Didn't like laptop use + wanted paper print outs for the semester. What a waste of money + paper when tech's available. he's allowed to have his though; forget that we're the ones paying to be there. Very sarcastic and rude at times", + "pos": 0.031, + "neu": 0.794, + "neg": 0.175, + "_id": { + "$oid": "6711d810cd60fca157e61855" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d810cd60fca157e61857" + }, + "professor_name": "Victoria Cox", + "rating": 1.5, + "department": "Economics department", + "comments": [ + { + "text": "I took her last semester as well. I did So well And ended up with C+ wtf, I am going to go see her next semester. It was an elective but gosh she cant teach or communicate with students at all", + "pos": 0.078, + "neu": 0.867, + "neg": 0.055, + "_id": { + "$oid": "6711d810cd60fca157e61858" + } + }, + { + "text": "She started good and cant manage students so she ended being nasty later on,dont buy book", + "pos": 0.141, + "neu": 0.683, + "neg": 0.176, + "_id": { + "$oid": "6711d810cd60fca157e61859" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d811cd60fca157e6185b" + }, + "professor_name": "Ondrea Ackerman", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "I really liked her. She knows her stuff, though she seems a bit aloof when addressing her students. Her lectures can be fascinating, however. I liked the book selection, \"Lolita\" and \"Americana\" were great. She expects work, but she's really a good, well-informed professor.", + "pos": 0.25, + "neu": 0.75, + "neg": 0.0, + "_id": { + "$oid": "6711d811cd60fca157e6185c" + } + }, + { + "text": "20th Cent US Rep Writers This is THE most boring class EVER. The book selection is HORRIBLE. Her expectations are somewhat unreasonable and she's a hard grader. Her questions do not make sense. I Did not enjoy the class at all.", + "pos": 0.0, + "neu": 0.773, + "neg": 0.227, + "_id": { + "$oid": "6711d811cd60fca157e6185d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d811cd60fca157e6185f" + }, + "professor_name": "Stephen Ogumah", + "rating": 3, + "department": "Latin department", + "comments": [ + { + "text": "If you want to learn Latin, take this professor; that being said if you want to get an easy A do not take this class. He is a great instructor and he takes the time to help his students fully understand the language. However, if you don't study the vocabulary, conjugations / declensions, and translations you will not pass.", + "pos": 0.186, + "neu": 0.814, + "neg": 0.0, + "_id": { + "$oid": "6711d811cd60fca157e61860" + } + }, + { + "text": "He doesn't teach for the most part. He expects you to read it all yourself. When he does teach, he is hard to understand and confusing. Plus, he tricks you on tests. Took him for my final class, and ruined my almost perfect GPA. I would definitely avoid him if possible.", + "pos": 0.101, + "neu": 0.731, + "neg": 0.168, + "_id": { + "$oid": "6711d811cd60fca157e61861" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d811cd60fca157e61863" + }, + "professor_name": "Chantell Dail", + "rating": 1.5, + "department": "Psychology department", + "comments": [ + { + "text": "The professor literally knows as much as you in the class and shes the teacher.. she will also lie to you a lot, you can do all the work and pass with 80s and above but if you miss a couple of classes, she will give you a C, it dont matter how much work you did. And she wont tell you that even if you ask her about the grade.", + "pos": 0.0, + "neu": 0.958, + "neg": 0.042, + "_id": { + "$oid": "6711d811cd60fca157e61864" + } + }, + { + "text": "Professor did not follow the syllabus, & had no organizational skills. Professor didn't know the material, & was unable to answer simple questions even when the answers were on the presentation slides. Upon completion of the semester, gave out incorrect grades, & claimed to have left the country to avoid an investigation, which is still ongoing.", + "pos": 0.0, + "neu": 0.925, + "neg": 0.075, + "_id": { + "$oid": "6711d811cd60fca157e61865" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d812cd60fca157e61867" + }, + "professor_name": "Judy Hilkey", + "rating": 5, + "department": "American Studies department", + "comments": [ + { + "text": "Even though Hilkey can come off as boring in the beginning, the class is not that bad. Shes an easy grader and very understanding. Take her class it's really not that hard at all.", + "pos": 0.185, + "neu": 0.757, + "neg": 0.058, + "_id": { + "$oid": "6711d812cd60fca157e61868" + } + }, + { + "text": "Great professor. I enjoyed taking the class immensely. Expect to do a lot of reading & writing. Submit your assignments & projects on time & you will do just fine. My writing has drastically improved while taking her class. She gives clear advise on what needs improvement. Constructive Criticism. I would love to take 1 of her classes again.", + "pos": 0.291, + "neu": 0.671, + "neg": 0.038, + "_id": { + "$oid": "6711d812cd60fca157e61869" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d812cd60fca157e6186b" + }, + "professor_name": "Joby Earle", + "rating": 4, + "department": "Speech department", + "comments": [ + { + "text": "Super cool and comforting. Had a speech almost every 2 weeks. If your super shy then this class will be very frightening to have so many eyes staring at you . If you are not then you will be great. Must practice speeches ahead of time or else he instantly catches you through your speech. NEVER BE ON YOUR PHONE, HE GETS SUPER ANGRY LOL.", + "pos": 0.28, + "neu": 0.614, + "neg": 0.106, + "_id": { + "$oid": "6711d812cd60fca157e6186c" + } + }, + { + "text": "Excellent professor, respected and caring. You do it job and you be fine.", + "pos": 0.567, + "neu": 0.433, + "neg": 0.0, + "_id": { + "$oid": "6711d812cd60fca157e6186d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d812cd60fca157e6186f" + }, + "professor_name": "Michelle Juarez", + "rating": 3.5, + "department": "Biology department", + "comments": [ + { + "text": "I took her in JJAY for Bio 103 and 104. She is a really sweet professor, but I feel like the way she lectures is not helping me and my classmates. She has her powerpoints but all she does is read from them, which i could do from home. She tries her best to help you with grades as much as possible but her teaching style was not for me.", + "pos": 0.18, + "neu": 0.792, + "neg": 0.028, + "_id": { + "$oid": "6711d812cd60fca157e61870" + } + }, + { + "text": "She is the sweetest professor ever. She knows her subject is difficult and have a lot of studying, so she makes her best to help the students. She takes random attendance, so it is better to go every day.", + "pos": 0.212, + "neu": 0.736, + "neg": 0.053, + "_id": { + "$oid": "6711d812cd60fca157e61871" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d813cd60fca157e61873" + }, + "professor_name": "Marija Krstic", + "rating": 3, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Beware of this Ph.D. student. She is a very tough cookie. Her lab reports must be perfect exactly how she wants the. And the final, for the love of God majority of us, are not Civil Engineering. It is so freaking hard. She makes us think that we know everything about bridges. This class makes me wanna build a bridge and jump.", + "pos": 0.137, + "neu": 0.766, + "neg": 0.097, + "_id": { + "$oid": "6711d813cd60fca157e61874" + } + }, + { + "text": "She has a super heavy accent, so her lectures won't make much sense. Lab reports were an easy A if you followed the criteria. Usually made up the data and pretended to do the expierment.", + "pos": 0.171, + "neu": 0.829, + "neg": 0.0, + "_id": { + "$oid": "6711d813cd60fca157e61875" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d813cd60fca157e61877" + }, + "professor_name": "Andrew Stout", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "This was the best math teacher ever.. hes hot.. very nice.. and doesnt even take attendance.. just do the hw and show up for tests.. and be nice and he will be nice.. i wish i had him in high school.. math would have been a lot easier. =) and everything hes says is referenced to the text book.. and somethings. hes liek w.e if its not really usefull", + "pos": 0.258, + "neu": 0.742, + "neg": 0.0, + "_id": { + "$oid": "6711d813cd60fca157e61878" + } + }, + { + "text": "He's hot, but smells and dresses like a hobo. Even the doormen on park avenue lower their head in shame when they see him, but man can he do the quadratic formula!", + "pos": 0.082, + "neu": 0.734, + "neg": 0.183, + "_id": { + "$oid": "6711d813cd60fca157e61879" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d813cd60fca157e6187b" + }, + "professor_name": "Carol Hamilton", + "rating": 3.5, + "department": "Art department", + "comments": [ + { + "text": "I took Professor Carol Hamilton for Digital Design Portfolio. She was very nice, provided good feedback, and genuinely cared about helping you create the best portfolio possible.", + "pos": 0.455, + "neu": 0.545, + "neg": 0.0, + "_id": { + "$oid": "6711d813cd60fca157e6187c" + } + }, + { + "text": "I wish I haven't taken her, because I found myself working hard for her class, and it never paid off at the end. she wants things to be perfect, so if it does not get ready to redo it . she saw i try my hardest, i thought that matter but i was wrong. i would avoid her if i was you. first project , app project design, infographic, and book.", + "pos": 0.066, + "neu": 0.811, + "neg": 0.123, + "_id": { + "$oid": "6711d813cd60fca157e6187d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d814cd60fca157e6187f" + }, + "professor_name": "Shayesteh Mahani", + "rating": 1, + "department": "Civil Engineering department", + "comments": [ + { + "text": "Worst professor in CCNY Civil Dept, no partial grades, lot of hard homework, boring lab works for useless 3 hours....", + "pos": 0.0, + "neu": 0.54, + "neg": 0.46, + "_id": { + "$oid": "6711d814cd60fca157e61880" + } + }, + { + "text": "This professor is the worst professor that you can see in CCNY. her accent is terrible and she does not explain anything clear.", + "pos": 0.0, + "neu": 0.681, + "neg": 0.319, + "_id": { + "$oid": "6711d814cd60fca157e61881" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d814cd60fca157e61883" + }, + "professor_name": "Carolyn Eisenberg", + "rating": 3.5, + "department": "History department", + "comments": [ + { + "text": "Not a very nice person. Enjoys ridiculing and is bias.", + "pos": 0.218, + "neu": 0.368, + "neg": 0.414, + "_id": { + "$oid": "6711d814cd60fca157e61884" + } + }, + { + "text": "Professor Eisenberg is the best professor I have ever had. Her class dicussions are deep and made me hungry for more knowledge. There is a lot of reading, but you will have better understanding of the topic at hand. It was well worth it! I recommended her to many friends who also enjoyed taking her class. It is nice to know that City College still", + "pos": 0.353, + "neu": 0.647, + "neg": 0.0, + "_id": { + "$oid": "6711d814cd60fca157e61885" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d814cd60fca157e61887" + }, + "professor_name": "Clarence McMaster", + "rating": 2.5, + "department": "Business department", + "comments": [ + { + "text": "He wasn't able to follow lesson plans and became over whelmed when aked questions. He maybe the most useless professor I ever had. I had him at LIM college for Accounting.", + "pos": 0.0, + "neu": 0.907, + "neg": 0.093, + "_id": { + "$oid": "6711d814cd60fca157e61888" + } + }, + { + "text": "Mr, Clarence Mcmaster you have been on of the greatest business teaches who has ever thought me well. I hope you are comfortable with your rating. I enjoyed learning about business management. I can't wait to test this major in college and make you proud.My favorite day was presentation day. You made business a miracle towards the presentation.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d814cd60fca157e61889" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d815cd60fca157e6188b" + }, + "professor_name": "Deok Yang Kim", + "rating": 4.5, + "department": "Chemistry department", + "comments": [ + { + "text": "He's a great teacher, very helpful. He takes time out to help his students and always answers his emails. His lectures are actually very useful and when it comes to tests he drops the lowest one.", + "pos": 0.28, + "neu": 0.664, + "neg": 0.056, + "_id": { + "$oid": "6711d815cd60fca157e6188c" + } + }, + { + "text": "I really learn from his lecture. He explained the material clearly, do give extra help,and reply to email. Exams are a little hard. He cares his students, and listen to suggestions. However, for chem class, you really need to give a lot of effort if you wants a good grade.", + "pos": 0.15, + "neu": 0.83, + "neg": 0.02, + "_id": { + "$oid": "6711d815cd60fca157e6188d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d815cd60fca157e6188f" + }, + "professor_name": "Harry Applegate", + "rating": 3.8, + "department": "Mathematics department", + "comments": [ + { + "text": "You are and will be sorely missed by your students...", + "pos": 0.0, + "neu": 0.804, + "neg": 0.196, + "_id": { + "$oid": "6711d815cd60fca157e61890" + } + }, + { + "text": "Tends to be clear in class. However, infrequently he gets confused with simple matters. Exams are easy if you are a mathematically mature student and carefully study the practice exams. Good professor over all.", + "pos": 0.32, + "neu": 0.626, + "neg": 0.053, + "_id": { + "$oid": "6711d815cd60fca157e61891" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d815cd60fca157e61893" + }, + "professor_name": "Alison Weaver", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "amazing professor, very helpful, midterms and finals are not hard, just study, teaches very enthusiatically.", + "pos": 0.406, + "neu": 0.594, + "neg": 0.0, + "_id": { + "$oid": "6711d815cd60fca157e61894" + } + }, + { + "text": "amazing & very nice professor. Had class once a week and it didn't take her a long time to know me. She is not a hard grader. She is extremely helpful because she tells you what she wants for her papers and she tells you what to expect on the midterm and final, which were not hard at all, just make sure to study. if you love art take this class.", + "pos": 0.23, + "neu": 0.77, + "neg": 0.0, + "_id": { + "$oid": "6711d815cd60fca157e61895" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d816cd60fca157e61897" + }, + "professor_name": "Georgia Rapti", + "rating": 1, + "department": "Science department", + "comments": [ + { + "text": "So mean, rude, and confusing! Seems to have forgotten this course is for NON-SCIENCE MAJORS.", + "pos": 0.0, + "neu": 0.62, + "neg": 0.38, + "_id": { + "$oid": "6711d816cd60fca157e61898" + } + }, + { + "text": "Professor Rapti is, by far, the meanest professor I've met at CCNY. She expects you to know everything and be able to pick anything up at any time. She also puts you on the spot and has no problem embarrassing you and making you feel dumb. Not helpful at all.", + "pos": 0.079, + "neu": 0.82, + "neg": 0.1, + "_id": { + "$oid": "6711d816cd60fca157e61899" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d816cd60fca157e6189b" + }, + "professor_name": "Robert Leaver", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "HE WAS OKAY,CLEAR MOST OF THE TIME", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d816cd60fca157e6189c" + } + }, + { + "text": "i didnt really learn anything", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d816cd60fca157e6189d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d816cd60fca157e6189f" + }, + "professor_name": "Susan McCullough", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "I've taken several Art Ed classes with her (about 5?). I love how clear her assignments are and her feedback is always helpful. She scans the readings. I thought because I took so many classes with her I could get away with being a bit lazy and that landed me with an A- once, haha. Be prepared to read and share out. She goes overtime sometimes.", + "pos": 0.214, + "neu": 0.754, + "neg": 0.032, + "_id": { + "$oid": "6711d816cd60fca157e618a0" + } + }, + { + "text": "She is one of the best professor ever! She is always available via email and the assignments are easy!", + "pos": 0.311, + "neu": 0.689, + "neg": 0.0, + "_id": { + "$oid": "6711d816cd60fca157e618a1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d817cd60fca157e618a3" + }, + "professor_name": "Arthur Szlam", + "rating": 4.3, + "department": "Mathematics department", + "comments": [ + { + "text": "Good Professor, Good Course (Convex Optimization)", + "pos": 0.737, + "neu": 0.263, + "neg": 0.0, + "_id": { + "$oid": "6711d817cd60fca157e618a4" + } + }, + { + "text": "Professor Szlam is a math genius. But he can't explain well the lecture and sometimes go off the topic. Despite this, if you can follow his teaching style, you can do really well in his class. Btw, doing homework is a must since the test questions are primarily based on that.", + "pos": 0.057, + "neu": 0.902, + "neg": 0.041, + "_id": { + "$oid": "6711d817cd60fca157e618a5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d817cd60fca157e618a7" + }, + "professor_name": "Stephanie Vella", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "I've never taken a theater class before but learned a lot from Prof Vella. She was passionate about the subject matter and made her classes interactive and informative. Show up do the readings, participate in discussions, do the hw (6) 1-2 page response papers and a few 3-5 pg essay papers and you'll be fine.", + "pos": 0.133, + "neu": 0.867, + "neg": 0.0, + "_id": { + "$oid": "6711d817cd60fca157e618a8" + } + }, + { + "text": "Professor Vella makes theater history fun even for theater novices. I learned how to be more analytical and see more than what's presented on the stage. It was a pleasure to take this class. Her desire to engage with the students make the class less of a class and more like friends talking theater.", + "pos": 0.276, + "neu": 0.724, + "neg": 0.0, + "_id": { + "$oid": "6711d817cd60fca157e618a9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d817cd60fca157e618ab" + }, + "professor_name": "Krystal Hall", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "Very good professor, judges your performance based on your own level of dance. Beginners are welcomed but must show interest in dancing. For advance learners, she will give you more difficult material to improve yourself. She helps students with anything that may be unclear and will work out the routine with you if you need the extra help.", + "pos": 0.249, + "neu": 0.669, + "neg": 0.083, + "_id": { + "$oid": "6711d817cd60fca157e618ac" + } + }, + { + "text": "SHE IS AMAZINGG!!!! Her approach to modern dance is genius! Take a class wirh her!!", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d817cd60fca157e618ad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d818cd60fca157e618af" + }, + "professor_name": "Jenna Young", + "rating": 3.3, + "department": "English department", + "comments": [ + { + "text": "I had a completely different experience as the other person. YES, there was a lot of writing involved, but it is a writing course, so what did you expect? The papers due every class were no more than 1 pg with 4 5pg papers sprinkled throughout the semester. I would take another class w. her, enjoyable, clear, super helpful, interactive, nurturing.", + "pos": 0.284, + "neu": 0.681, + "neg": 0.035, + "_id": { + "$oid": "6711d818cd60fca157e618b0" + } + }, + { + "text": "Don't Take any classes with her... you'll regret it!!! She gives ALOT of work and is unreasonable. Every class a paper is due and two long assignments are due. She expects TOO much from her students! And is not helpful at all...", + "pos": 0.0, + "neu": 0.864, + "neg": 0.136, + "_id": { + "$oid": "6711d818cd60fca157e618b1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d818cd60fca157e618b3" + }, + "professor_name": "Nancy Mariano", + "rating": 3.8, + "department": "Spanish department", + "comments": [ + { + "text": "Took her in Hunter College and she was my favorite out of 3 other professors I've taken in the spanish department. She really cares about how you're doing in class, she gives good feedback on your homework, tests, and gives extra credit for tests. There was one group presentation, exams, some pop quizzes (easy), homeworks. She's such a sweet heart", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d818cd60fca157e618b4" + } + }, + { + "text": "She is not nicest professor in terms of class. If you ask her questions she either responds with attitude or tells you to look in the book. If you choose to take this class when you already speak Spanish just for you to get an easy A and she catches it, she will treat you as if you don't know anything. If their is talking in class she calls you out", + "pos": 0.073, + "neu": 0.892, + "neg": 0.034, + "_id": { + "$oid": "6711d818cd60fca157e618b5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d818cd60fca157e618b7" + }, + "professor_name": "Emily Gibson", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "For a graduate level art studio class, there is a lot of busy work.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d818cd60fca157e618b8" + } + }, + { + "text": "Great teacher!!", + "pos": 0.824, + "neu": 0.176, + "neg": 0.0, + "_id": { + "$oid": "6711d818cd60fca157e618b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d819cd60fca157e618bb" + }, + "professor_name": "Joanne Schultz", + "rating": 4.5, + "department": "Theater department", + "comments": [ + { + "text": "Honestly, she seems nice. But the class is a lot of work. We have to attend 4 CCNY plays and one professional one, that we have to write a 5 page paper for. She is passionate but gives us long scripts to read and then quizzes us on them. Honestly, I regretted taking this class because of the amount of work and research. Save yourself the torture.", + "pos": 0.213, + "neu": 0.686, + "neg": 0.102, + "_id": { + "$oid": "6711d819cd60fca157e618bc" + } + }, + { + "text": "Took the class as an elective but do not regret. Prof Schultz is such a sweet heart. She's passionate about theatre and also very knowledgeable. Even though she's a tough grader there are two extra credit words for the end of the semester. I really enjoyed my time in the class. Attendance is mandatory!!", + "pos": 0.367, + "neu": 0.61, + "neg": 0.023, + "_id": { + "$oid": "6711d819cd60fca157e618bd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d819cd60fca157e618bf" + }, + "professor_name": "Annie Khan", + "rating": 3.8, + "department": "History department", + "comments": [ + { + "text": "Professor Khan was okay. What really matters is her mid term and her final. Grades are also based on participation and attendance. This class is easy to pass", + "pos": 0.199, + "neu": 0.801, + "neg": 0.0, + "_id": { + "$oid": "6711d819cd60fca157e618c0" + } + }, + { + "text": "A great professor, who truly does her best to make her students AWARE of the world. Taking Comparative Slavery has changed my views & my outlook in life. I would not have imagined taking away so much from this class, but I did. Prof is humorous, kind, fair & intelligent. Do the readings & assignment. Gives detailed info of what is on test. Study.", + "pos": 0.258, + "neu": 0.706, + "neg": 0.037, + "_id": { + "$oid": "6711d819cd60fca157e618c1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d819cd60fca157e618c3" + }, + "professor_name": "Jennifer Spivak", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "She is a great professor. Her Internet Marketing class is more on the technical and practical side than the theoretical. I really appreciated that her HW's were designed to give students an understanding of how internet marketing works through interactive methods. If you're going to take a winter class, I 100% recommend Prof. Spivak.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d819cd60fca157e618c4" + } + }, + { + "text": "This professor is GREAT! I would definitely re-take her class. 70% of the class is being graded from the HWS - 10% Attendance - 20% Midterms. She is mostly concerned with HWS, make sure to get it done and be as creative as possible because that's all she cares about. Just go above and beyond your limits. You will learn a lot!", + "pos": 0.223, + "neu": 0.777, + "neg": 0.0, + "_id": { + "$oid": "6711d819cd60fca157e618c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81acd60fca157e618c7" + }, + "professor_name": "Dawn Marczak", + "rating": 5, + "department": "Advisor department", + "comments": [ + { + "text": "She was the best advisor I ever had. She really cared about her students.", + "pos": 0.378, + "neu": 0.622, + "neg": 0.0, + "_id": { + "$oid": "6711d81acd60fca157e618c8" + } + }, + { + "text": "No Comments", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d81acd60fca157e618c9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81acd60fca157e618cb" + }, + "professor_name": "Loren Peer", + "rating": 4.3, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Teacher is nice and language class is pretty slow compared to others. Some kids are lazy, but there is no reason not to get an a on her tests.", + "pos": 0.119, + "neu": 0.745, + "neg": 0.136, + "_id": { + "$oid": "6711d81acd60fca157e618cc" + } + }, + { + "text": "i think her class is great,fun, interesting, entertaining. her singing is great and it opens you up to new things. if u go to class you will pass,one of the best ccny has got to offer as well as most people in the jwst department!!", + "pos": 0.293, + "neu": 0.707, + "neg": 0.0, + "_id": { + "$oid": "6711d81acd60fca157e618cd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81acd60fca157e618cf" + }, + "professor_name": "Nancy Tag", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "She is probably one of the best professors in the MCA department. Very passionate about what she teaches and extremely helpful. She may be strict but that is a great way to learn about the whole PR/Advertising industry. Just hand in your work on time because she has strict deadlines", + "pos": 0.274, + "neu": 0.726, + "neg": 0.0, + "_id": { + "$oid": "6711d81acd60fca157e618d0" + } + }, + { + "text": "She is a great professor and she really knows and love what she is talking about. The class is not as easy than with other teachers but you really learn with her! She is willing to help her students. If you do your homework and the assignments you will get a good grade. She is funny too!", + "pos": 0.245, + "neu": 0.73, + "neg": 0.024, + "_id": { + "$oid": "6711d81acd60fca157e618d1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81bcd60fca157e618d3" + }, + "professor_name": "Brian Davis", + "rating": 4.8, + "department": "Psychology department", + "comments": [ + { + "text": "Brian Davis is by far one of the best Professor's I had throughout my education career. He gives a lot of work but he is so hard working himself, it's impressive! He constantly provides feedback and really detailed feedback. He cares how you progress, always checking on you and provides assistance if needed. Amazing Professor!!!", + "pos": 0.292, + "neu": 0.677, + "neg": 0.032, + "_id": { + "$oid": "6711d81bcd60fca157e618d4" + } + }, + { + "text": "I took Davis over the summer! He is so sweet and helpful. I highly recommend him to everyone. We learned stats through textbook use and not computers. If that's the way you like learning, then this class is for you. We probably used the computer like 2 times throughout the two months. You will learn a lot from him! EASY A!!!", + "pos": 0.262, + "neu": 0.738, + "neg": 0.0, + "_id": { + "$oid": "6711d81bcd60fca157e618d5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81bcd60fca157e618d7" + }, + "professor_name": "Juan Leon", + "rating": 4.8, + "department": "Engineering department", + "comments": [ + { + "text": "One of a kind, this professor is really passionate on what he does. I recommend him any time.", + "pos": 0.39, + "neu": 0.61, + "neg": 0.0, + "_id": { + "$oid": "6711d81bcd60fca157e618d8" + } + }, + { + "text": "He is so helpful and very good looking i never miss a class. he likes to help students to give the best. simply the best!!", + "pos": 0.558, + "neu": 0.442, + "neg": 0.0, + "_id": { + "$oid": "6711d81bcd60fca157e618d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81bcd60fca157e618db" + }, + "professor_name": "David Parsons", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "Hands down one of the best professors I have ever had and has made taking history classes worthwhile. Easy grader, one midterm, one final and participation optional but strongly encouraged. Hilarious guy who is so passionate about history. I've taken him twice and adore him. Even if you don't enjoy history, his class is not boring.", + "pos": 0.37, + "neu": 0.586, + "neg": 0.044, + "_id": { + "$oid": "6711d81bcd60fca157e618dc" + } + }, + { + "text": "Wonderful Professor. He is helpful and respond to emails very quickly. He gives there papers, one midterm, and one final. He is a funny and nice guy and have you listen to his talk for half of the class and have you do a little and short writing in the other half of the class. A great professor and I highly recommend taking his class!", + "pos": 0.247, + "neu": 0.753, + "neg": 0.0, + "_id": { + "$oid": "6711d81bcd60fca157e618dd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81ccd60fca157e618df" + }, + "professor_name": "Anil Yazici", + "rating": 4.5, + "department": "Civil Engineering department", + "comments": [ + { + "text": "good professor but class was ridiculously hard if you have no background in economics. ended up failing his class when I shouldn't have even registered for his class, destroyed my gpa and chances at remaining at CCNY graduate school. otherwise, good professor, explains a lot of material but expected to know a lot before hand. hard class.", + "pos": 0.159, + "neu": 0.609, + "neg": 0.231, + "_id": { + "$oid": "6711d81ccd60fca157e618e0" + } + }, + { + "text": "Anil goes the extra mile to allow students to understand transportation economics. He is passionate about the topic and knows how to transmit his knowledge. Great asset to City College where most professors don't care at all -at least in the graduate program of civil engineering-.", + "pos": 0.213, + "neu": 0.735, + "neg": 0.052, + "_id": { + "$oid": "6711d81ccd60fca157e618e1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81ccd60fca157e618e3" + }, + "professor_name": "Jason Collins", + "rating": 5, + "department": "Humanities department", + "comments": [ + { + "text": "he is a great professor, he makes class interesting and is not afraid to speak his mind, which i love", + "pos": 0.393, + "neu": 0.607, + "neg": 0.0, + "_id": { + "$oid": "6711d81ccd60fca157e618e4" + } + }, + { + "text": "Amazing teacher. Very funny, insightful and smart man.", + "pos": 0.66, + "neu": 0.34, + "neg": 0.0, + "_id": { + "$oid": "6711d81ccd60fca157e618e5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81ccd60fca157e618e7" + }, + "professor_name": "Jaimie Krause", + "rating": 4.5, + "department": "Psychology department", + "comments": [ + { + "text": "I really appreciate Jaimie as a professor. She is really funny but also knows her stuff. She provides real world examples and shoots you straight. I feel better prepared to enter the workforce now.", + "pos": 0.304, + "neu": 0.696, + "neg": 0.0, + "_id": { + "$oid": "6711d81ccd60fca157e618e8" + } + }, + { + "text": "She is really insightful for a young professor and genuinely cares about her students. I would take her for every class. Annnd, she's nice to look at.", + "pos": 0.188, + "neu": 0.812, + "neg": 0.0, + "_id": { + "$oid": "6711d81ccd60fca157e618e9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81dcd60fca157e618eb" + }, + "professor_name": "Josiah Boornazian", + "rating": 3.8, + "department": "Music department", + "comments": [ + { + "text": "Not an easy A. He is a hard grader but he LOVES music and is very knowledgeable.", + "pos": 0.267, + "neu": 0.607, + "neg": 0.126, + "_id": { + "$oid": "6711d81dcd60fca157e618ec" + } + }, + { + "text": "He locks the door five min after class starts, doesn't care if your commute is crazy far he would shut the door on your face if he could. he grades the papers as if were majoring in music, which I'm sure none of us are because it's a intro class. he swears no one in the class can write, including english majors.", + "pos": 0.052, + "neu": 0.842, + "neg": 0.107, + "_id": { + "$oid": "6711d81dcd60fca157e618ed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81dcd60fca157e618ef" + }, + "professor_name": "Rachel Varra", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "EXCELLENT PROFESSOR. VERY REASONABLE.", + "pos": 0.552, + "neu": 0.448, + "neg": 0.0, + "_id": { + "$oid": "6711d81dcd60fca157e618f0" + } + }, + { + "text": "Great Professor! This not an easy class, but the professor is excellent. Very dedicated and extremely knowledgeable.", + "pos": 0.456, + "neu": 0.481, + "neg": 0.063, + "_id": { + "$oid": "6711d81dcd60fca157e618f1" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81dcd60fca157e618f3" + }, + "professor_name": "Jin Chung", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "Bright, smart professor that cares about his students. Clear explanation of concepts, lots of examples that help. Talks about career prospects and what you can do with the degree even if you aren't econ. Will go out of his way to help a student. Would definitely take his class again!", + "pos": 0.342, + "neu": 0.658, + "neg": 0.0, + "_id": { + "$oid": "6711d81dcd60fca157e618f4" + } + }, + { + "text": "Guy is very smart, knows his stuff inside out. Gives great notes. Tells you what to focus on. Midterm is 50%, and final is 50%. Attend class, show your face, ask questions, do the HW (not graded), and you will get an A. Also gives advice for career and anything Economics related outside of class.", + "pos": 0.118, + "neu": 0.882, + "neg": 0.0, + "_id": { + "$oid": "6711d81dcd60fca157e618f5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81ecd60fca157e618f7" + }, + "professor_name": "Roberto Valenti", + "rating": 4.8, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "He explaines lextures and lab assignments with clear and detailed slides!! Serious, friendly, and knowledgeble.", + "pos": 0.324, + "neu": 0.61, + "neg": 0.066, + "_id": { + "$oid": "6711d81ecd60fca157e618f8" + } + }, + { + "text": "Cool guy! He helps a lot during the lab experiments but he wants you to understand.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d81ecd60fca157e618f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81ecd60fca157e618fb" + }, + "professor_name": "Grace Ali", + "rating": 5, + "department": "Literature department", + "comments": [ + { + "text": "I enjoyed every single class lots of participation and films.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d81ecd60fca157e618fc" + } + }, + { + "text": "Professor Ali has been one of my favorite professors so far. Her class is tough but you'll enjoy it. I would recommend taking a class with her.", + "pos": 0.283, + "neu": 0.68, + "neg": 0.037, + "_id": { + "$oid": "6711d81ecd60fca157e618fd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81ecd60fca157e618ff" + }, + "professor_name": "Dana Vessio", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Very kind teacher. Understanding and helpful. Responds to all emails. Doesn't grade harshly. She always says that she just wants to see that you're trying. Textbook was used but it is easily found online.", + "pos": 0.192, + "neu": 0.808, + "neg": 0.0, + "_id": { + "$oid": "6711d81ecd60fca157e61900" + } + }, + { + "text": "where do I start from? Hands down one of the best professors that CCNY could have had. She is amazing. She cares for each and every one of her students. She doesn't give much work and understands that we have other classes. There is a final exam which she goes over. WOULD DEFINITELY TAKE ANY CLASS THAT SHE IS THE PROFESSOR IN!", + "pos": 0.202, + "neu": 0.798, + "neg": 0.0, + "_id": { + "$oid": "6711d81ecd60fca157e61901" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81fcd60fca157e61903" + }, + "professor_name": "Sarah Constantine", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "She is lecturing by reading off PowerPoint. She has not enough knowledge of what she's teaching, cause she's does not have answers to the questions about the course material; but she gives extra credit.", + "pos": 0.093, + "neu": 0.907, + "neg": 0.0, + "_id": { + "$oid": "6711d81fcd60fca157e61904" + } + }, + { + "text": "one of the best professor's I've had thus far. she's clear in her lectures, everything she teaches is exactly on the exams. she offers extra credit and she's flexible with homework.", + "pos": 0.295, + "neu": 0.705, + "neg": 0.0, + "_id": { + "$oid": "6711d81fcd60fca157e61905" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81fcd60fca157e61907" + }, + "professor_name": "Yoonhee Kang", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Prof. Kang is an amazing professor. She explains things in a way that you will eventually understand even if you don't at first. Shows materials from movies to help you understand. She has answered many late night emails about a paper/assignment that was due the following day. You will work hard and read a lot. Also, she brings snacks:)", + "pos": 0.102, + "neu": 0.876, + "neg": 0.022, + "_id": { + "$oid": "6711d81fcd60fca157e61908" + } + }, + { + "text": "Professor Kang is an awesome professor. Logic seemed so boring but the way she breaks things down makes everything very clear. She's also very funny and will say examples like \"Professor Kang is the most beautiful ever\" then provide reasons for why that is or isn't avalid or sound argument. Her examples are relatable. I agree with her example \ufffd\ufffd", + "pos": 0.286, + "neu": 0.648, + "neg": 0.065, + "_id": { + "$oid": "6711d81fcd60fca157e61909" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d81fcd60fca157e6190b" + }, + "professor_name": "Jason Kim", + "rating": 4, + "department": "Architecture department", + "comments": [ + { + "text": "My experience with Jason as a 1st yr set the pace for my architecture classes going forward. Demanding professor, toughest of the 1st years, LOTS of late nights, but thats nothing compared to future semesters. It was an early wakeup call we didnt know we needed but it was a required adjustment", + "pos": 0.0, + "neu": 0.951, + "neg": 0.049, + "_id": { + "$oid": "6711d81fcd60fca157e6190c" + } + }, + { + "text": "Jason is a great professor!! He ALWAYS help you if you're stuck and don't know what to do, He knows what he's doing and you learn a lot from him! TAKE HIM!", + "pos": 0.204, + "neu": 0.744, + "neg": 0.051, + "_id": { + "$oid": "6711d81fcd60fca157e6190d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d820cd60fca157e6190f" + }, + "professor_name": "Elaine Tomassetti", + "rating": 3.5, + "department": "Engineering department", + "comments": [ + { + "text": "Harsh grader.", + "pos": 0.0, + "neu": 0.256, + "neg": 0.744, + "_id": { + "$oid": "6711d820cd60fca157e61910" + } + }, + { + "text": "she is the best professor I have ever seen.... she always tries to make you participate which is part of the grade. there is a lot of reading though, so be prepared to read...", + "pos": 0.166, + "neu": 0.834, + "neg": 0.0, + "_id": { + "$oid": "6711d820cd60fca157e61911" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d820cd60fca157e61913" + }, + "professor_name": "Demir Purisic", + "rating": 3.7, + "department": "Architecture department", + "comments": [ + { + "text": "He allows creative freedom but many things couldve been better. AlotOfUnnecessaryModelMaking. He can be impatient and lack professionalism so be careful. One instance he yelled at us saying if we didnt fix an error on our site plan he would throw our computer out the window. Had plagiarism issues by our group member that also was dismissed by him.", + "pos": 0.191, + "neu": 0.729, + "neg": 0.081, + "_id": { + "$oid": "6711d820cd60fca157e61914" + } + }, + { + "text": "He was my first studio professor. And in all honesty he grows on you. Definitely stay around and discuss the work with other peers because he does say things that could be confusing, or needs some deciphering. Leads you into very abstract directions, which makes projects more interesting. His favorite question is, why", + "pos": 0.196, + "neu": 0.773, + "neg": 0.031, + "_id": { + "$oid": "6711d820cd60fca157e61915" + } + }, + { + "text": "Generally a great professor. As long as you communicate you will do fine. He's always glad to answer questions and give you feedback. He wants to see you succeed.", + "pos": 0.326, + "neu": 0.674, + "neg": 0.0, + "_id": { + "$oid": "6711d820cd60fca157e61916" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d821cd60fca157e61918" + }, + "professor_name": "Ahmed Rady", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Great prof. Would def take again", + "pos": 0.451, + "neu": 0.549, + "neg": 0.0, + "_id": { + "$oid": "6711d821cd60fca157e61919" + } + }, + { + "text": "He is a wonderful professor.", + "pos": 0.481, + "neu": 0.519, + "neg": 0.0, + "_id": { + "$oid": "6711d821cd60fca157e6191a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d821cd60fca157e6191c" + }, + "professor_name": "Jana LaSorte", + "rating": 2.5, + "department": "Media Arts department", + "comments": [ + { + "text": "There were no grading guidelines or rubrics for any assignment. The grades you receive (if she does get assignments back to you) will surprise you time and time. She often told us \"there are no rules\" but clearly there were rules that you found out about after receiving your grade. Overall lack of clarity on the course objectives and assignments.", + "pos": 0.126, + "neu": 0.785, + "neg": 0.089, + "_id": { + "$oid": "6711d821cd60fca157e6191d" + } + }, + { + "text": "Tough cookie. Wants students to learn, but also makes them work. She also has a great personality, and is funny.", + "pos": 0.342, + "neu": 0.613, + "neg": 0.045, + "_id": { + "$oid": "6711d821cd60fca157e6191e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d821cd60fca157e61920" + }, + "professor_name": "Benjamin Black", + "rating": 3.5, + "department": "Earth Science department", + "comments": [ + { + "text": "The class was easy enough to follow for the first weeks, but one month into the semester he started slacking on teaching the main content and on explaining in better detail how to complete the labs which make up 40% of the grade. He also has the bad habit of replying to emails late or not at all and ignoring messages in the chat during lecture.", + "pos": 0.076, + "neu": 0.815, + "neg": 0.109, + "_id": { + "$oid": "6711d821cd60fca157e61921" + } + }, + { + "text": "Incredibly caring and helpful, and for anyone interested in learning more about MATLAB, taking him is a must. In the midst of the pandemic, he really is the most understanding professor I've had. Lecture isn't mandatory and he continuously extends due dates. Sometimes puts you on the spot, but he'll help you out and make sure you know the material", + "pos": 0.204, + "neu": 0.78, + "neg": 0.016, + "_id": { + "$oid": "6711d821cd60fca157e61922" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d822cd60fca157e61924" + }, + "professor_name": "Oren Bassik", + "rating": 4, + "department": "Mathematics department", + "comments": [ + { + "text": "Professor Bassik is chill and approachable, always willing to help during office hours. His generosity stands out, as he tries to give partial credit when deserved. While his relaxed teaching style can lead to less structured and messy lectures, his helpfulness more than makes up for it. Definitely take his class if you have the option!", + "pos": 0.257, + "neu": 0.711, + "neg": 0.032, + "_id": { + "$oid": "6711d822cd60fca157e61925" + } + }, + { + "text": "Good professor. Would extent homework if we ask him and was not a strict grader", + "pos": 0.172, + "neu": 0.828, + "neg": 0.0, + "_id": { + "$oid": "6711d822cd60fca157e61926" + } + }, + { + "text": "Professor Bassik is nonchalant and an easy grader, however he lacks teaching skills. He would begin examples and never solve them. He is very understanding and can answer questions a bit clearer if you ask him it one-to-one. If you plan on learning on your own, and want to be free from crazy pressure to do homework or participate, take him!", + "pos": 0.113, + "neu": 0.797, + "neg": 0.09, + "_id": { + "$oid": "6711d822cd60fca157e61927" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d822cd60fca157e61929" + }, + "professor_name": "Michael Garral", + "rating": 4.5, + "department": "Philosophy department", + "comments": [ + { + "text": "He is super laid back I would def take his class again. He is an easy grader as well. The assignments are easy and the due dates are very reasonable. Had 3 essays and 3 tests and he curved most. He def does not like trump lol he be using him as examples during class and they're all just dissing him.", + "pos": 0.166, + "neu": 0.772, + "neg": 0.062, + "_id": { + "$oid": "6711d822cd60fca157e6192a" + } + }, + { + "text": "Pretty easy class, u just have a one page essay to write every other week and a philosophy article every week", + "pos": 0.243, + "neu": 0.757, + "neg": 0.0, + "_id": { + "$oid": "6711d822cd60fca157e6192b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d822cd60fca157e6192d" + }, + "professor_name": "Paul Ruppert", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "He is definitely super specific when it comes to grading drawings and he does talk a lot. but overall he is an amazing person and really easy to come to when you need help with an assignment. I had him online so things might have been different if we were in person but definitely recommend!!", + "pos": 0.34, + "neu": 0.66, + "neg": 0.0, + "_id": { + "$oid": "6711d822cd60fca157e6192e" + } + }, + { + "text": "Professor Ruppert is very detail and you will learn everything you need as a first year student. He is always reachable outside of class and give good feedbacks on your works. Cold outside but very responsible.", + "pos": 0.136, + "neu": 0.864, + "neg": 0.0, + "_id": { + "$oid": "6711d822cd60fca157e6192f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d823cd60fca157e61931" + }, + "professor_name": "Kelly McIntosh", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "prof Kelly is an amazing professor. I had her for FIQWS English composition. her class was asynchronous and she gave a lot of work, but it was in the syllabus. she gives amazing feedback and will always allow you to revise. if you need help or an extension, email her and she will set up a personal meeting. she is a caring, accessible, easy to pass.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d823cd60fca157e61932" + } + }, + { + "text": "no exams!, journal entries and papers through out the semester a total of five discussion board post. she does try to send blackboard announcements to remind you of assignments. Wastes thirty minutes in- in class writing a lot of the time. Will make herself available if you need it. Does not really know too much about science.", + "pos": 0.0, + "neu": 0.957, + "neg": 0.043, + "_id": { + "$oid": "6711d823cd60fca157e61933" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d823cd60fca157e61935" + }, + "professor_name": "Richard VanNort", + "rating": 3.5, + "department": "World Civilizations department", + "comments": [ + { + "text": "VanNort is a easy pass. What gave me an \"A\" was doing my assignments on time, the more you write the higher your grade, and show up. 10/10.", + "pos": 0.097, + "neu": 0.903, + "neg": 0.0, + "_id": { + "$oid": "6711d823cd60fca157e61936" + } + }, + { + "text": "He gives 3 papers in a semester. He's an easy grader. During lectures, he starts talking about many things, that sometimes the students don't really understand. Very boring. Wouldn't recommend.", + "pos": 0.083, + "neu": 0.769, + "neg": 0.149, + "_id": { + "$oid": "6711d823cd60fca157e61937" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d824cd60fca157e61939" + }, + "professor_name": "John Cunningham", + "rating": 4.5, + "department": "Architecture department", + "comments": [ + { + "text": "He is very direct with his comments and gives good feedback. Instead of saying vague suggestions, he gives you ideas and precedents to look at for inspiration. Puts heavy emphasis on detail drawings which is good because it simultaneously inspires you to look more deep into the inner workings of your structural system. Try your best #QGTM", + "pos": 0.237, + "neu": 0.742, + "neg": 0.02, + "_id": { + "$oid": "6711d824cd60fca157e6193a" + } + }, + { + "text": "Professor Cunningham is a great professor who pushes your skills to the test when it comes to studio and design. He can be tough at first but he has a deep understanding of his craft and pushes you to continue exploring design. It can be a tough course but by the end of it, you want to continue being a better architect than what you started as.", + "pos": 0.108, + "neu": 0.851, + "neg": 0.041, + "_id": { + "$oid": "6711d824cd60fca157e6193b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d824cd60fca157e6193d" + }, + "professor_name": "Tawana Hayes", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Great", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d824cd60fca157e6193e" + } + }, + { + "text": "GREAT TEACHER", + "pos": 0.804, + "neu": 0.196, + "neg": 0.0, + "_id": { + "$oid": "6711d824cd60fca157e6193f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d824cd60fca157e61941" + }, + "professor_name": "Boris Kalmatsky", + "rating": 4.5, + "department": "Chemistry department", + "comments": [ + { + "text": "He explains the lab thoroughly meaning that he gave context to the lab and puts effort in connecting it to what you learned in lecture. Labs with Kalmatsky were comfortable because I could spend time making mistakes and asking questions and he would patiently give good feedback.", + "pos": 0.118, + "neu": 0.835, + "neg": 0.047, + "_id": { + "$oid": "6711d824cd60fca157e61942" + } + }, + { + "text": "Great lab professor, explains concepts well, assists you if you're having difficulty understanding, easy going but will make you work for your grade. Definitely recommend.", + "pos": 0.383, + "neu": 0.566, + "neg": 0.051, + "_id": { + "$oid": "6711d824cd60fca157e61943" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d825cd60fca157e61945" + }, + "professor_name": "Tzippora Chwat-Edelstein", + "rating": 5, + "department": "Biology department", + "comments": [ + { + "text": "She's been so kind and considerate the entire semester long. I have learned more from her than my actual professor. She explains everything carefully and makes sure we understand before continuing to the next topic. She's really sweet and I wish I could have her as my TA for all my other bIology classes.", + "pos": 0.265, + "neu": 0.735, + "neg": 0.0, + "_id": { + "$oid": "6711d825cd60fca157e61946" + } + }, + { + "text": "She's my current TA for Bio and she's the only reason why I'm not loosing my mind with this class. She is very kind and tries her best to explain everything thoroughly. She's great and I would definitely take her again!", + "pos": 0.292, + "neu": 0.708, + "neg": 0.0, + "_id": { + "$oid": "6711d825cd60fca157e61947" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d825cd60fca157e61949" + }, + "professor_name": "Sam Bellamy", + "rating": 5, + "department": "Freshman Year Experience department", + "comments": [ + { + "text": "Profesor Bellamy or Sam you can call her is a very nice and wonderful , she is very chill and helpful when it comes to the big assignment there only 3 and journals based on reading your opinion mostly ,if I she could be my professor throughout college I would be happy the best professor every , her feedback on work is very helpful and she super", + "pos": 0.294, + "neu": 0.706, + "neg": 0.0, + "_id": { + "$oid": "6711d825cd60fca157e6194a" + } + }, + { + "text": "Amazing professor, she's a real gem. She is so kind & understanding & gives you weeks to finish assignments. Very clear on grading & what to do. Gives examples of what she's expecting & even stays back after hours to help you if you request it. I wish I can take her again.", + "pos": 0.255, + "neu": 0.745, + "neg": 0.0, + "_id": { + "$oid": "6711d825cd60fca157e6194b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d825cd60fca157e6194d" + }, + "professor_name": "Rachel Connolly", + "rating": 5, + "department": "Computer Science department", + "comments": [ + { + "text": "She's amazing and knowledgeable in data science. You learn a lot, without going through hell.", + "pos": 0.365, + "neu": 0.635, + "neg": 0.0, + "_id": { + "$oid": "6711d825cd60fca157e6194e" + } + }, + { + "text": "Great professor. Hands down one of the top professor of CCNY", + "pos": 0.396, + "neu": 0.604, + "neg": 0.0, + "_id": { + "$oid": "6711d825cd60fca157e6194f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d826cd60fca157e61951" + }, + "professor_name": "Pauline Decarmo", + "rating": 2, + "department": "Fine Arts department", + "comments": [ + { + "text": "Not too bad, but she can be overbearing, she was just a bit too strict and particular for an intro course especially considering most students weren't even art majors. Even for me who is an art major her instruction was a bit confusing and contradicting at times. She did offer good advice and explanation for improving my drawings so not the worst.", + "pos": 0.189, + "neu": 0.741, + "neg": 0.07, + "_id": { + "$oid": "6711d826cd60fca157e61952" + } + }, + { + "text": "I took introduction to drawing to better my drawing skills for fun. Taking this professor was my worst college mistake. She is BEYOND strict about attendance and classwork. She'll tell you to try your best, but all she wants is perfection. Her \"examples\"/explanation are NOT helpful and doesn't teach you anything. GOOD LUCK if you take her :/", + "pos": 0.272, + "neu": 0.599, + "neg": 0.129, + "_id": { + "$oid": "6711d826cd60fca157e61953" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d826cd60fca157e61955" + }, + "professor_name": "Emma Arvedon", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Amazing teacher, she isn't a harsh grader she is very understanding if you are quiet, she will never force you to speak up. She is pretty young, but very caring. This is an easy class to take just trustttttttt I got u guys :)", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d826cd60fca157e61956" + } + }, + { + "text": "AHH! A QUEEN. she's new to ccny but she's so good at her job as a philo professor. She's motivating, Caring, respectful, such a warm sunshine. \n\n\n Take her, I PROMISE U WON'T REGRET!!", + "pos": 0.57, + "neu": 0.43, + "neg": 0.0, + "_id": { + "$oid": "6711d826cd60fca157e61957" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d826cd60fca157e61959" + }, + "professor_name": "Tyler Survant", + "rating": 5, + "department": "Architecture department", + "comments": [ + { + "text": "Tyler is definitely a caring professor who gives attention to each student and does his best to help each one of us to improve. He is also a professor who is strong with details and knowledge, so he does expect a lot, but it motivates the students to become more passionate and hard working towards their work. \nVery sweet mentor! Totally recommend!!", + "pos": 0.33, + "neu": 0.646, + "neg": 0.025, + "_id": { + "$oid": "6711d826cd60fca157e6195a" + } + }, + { + "text": "Tyler is the best teacher I have ever had in my life! Take him!\nHe has high expectation, but very helpful when students don't understand something. \nHe also likes to roast people.", + "pos": 0.275, + "neu": 0.725, + "neg": 0.0, + "_id": { + "$oid": "6711d826cd60fca157e6195b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d827cd60fca157e6195d" + }, + "professor_name": "Rebeca Pineda", + "rating": 4.8, + "department": "Spanish department", + "comments": [ + { + "text": "Rebeca is AMAZING! I took all 3 Spanish classes with her and she was great for all of them. So nice and understanding and really just wants to see you try. I had more fun learning a language with her than I ever thought I would. She's so nice and funny and just makes you feel good. Online we only had compositions due, but in person was short tests.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d827cd60fca157e6195e" + } + }, + { + "text": "This professor is there for the needs of her students. she goes above and beyond to make sure her students, the textbook isnt very clear so she creates worksheets on her own with better clarification. you still need the textbook though because there are activities in it that you go through in class.", + "pos": 0.128, + "neu": 0.831, + "neg": 0.041, + "_id": { + "$oid": "6711d827cd60fca157e6195f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d827cd60fca157e61961" + }, + "professor_name": "Luke (Luan) Nguyen", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "We were graded on 3 hw, one midterm, one final presentation, one final paper and attendance. The hw are diff sections of the final paper that he gives feedback on. We also had presentations throughout the semester (ungraded) on the hw. Overall, he's a great prof, just a bit nit picky but follow his sample hw that he uploads and you should be fine.", + "pos": 0.071, + "neu": 0.929, + "neg": 0.0, + "_id": { + "$oid": "6711d827cd60fca157e61962" + } + }, + { + "text": "I just started taking Professor Nguyen this Fall 2023 for Adv. Psych Research and I find him to be a really good, caring, informative and high quality professor so far! Still finishing semester, but so far I find him to be a very high caliber and knowledgeable, qualified educator!", + "pos": 0.095, + "neu": 0.905, + "neg": 0.0, + "_id": { + "$oid": "6711d827cd60fca157e61963" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d827cd60fca157e61965" + }, + "professor_name": "Marcela Restrepo", + "rating": 2.5, + "department": "Anthropology department", + "comments": [ + { + "text": "Prof. Restrepo conducted a pretty boring class. The content itself was very bland and her lectures didn't do anything to make them anymore interesting. All the work done in this class was done in group settings. She was a nice person but the class just wasn't great", + "pos": 0.108, + "neu": 0.779, + "neg": 0.113, + "_id": { + "$oid": "6711d827cd60fca157e61966" + } + }, + { + "text": "Attending INTL 20100 Global Perspective at CCNY, I found success by completing readings and group assignments. The hybrid class, held Wednesdays 2-3:15 PM, required a short response midterm based on readings, three group tasks, and a 25-min final presentation. The professor is fair, making it an accessible and rewarding experience.", + "pos": 0.167, + "neu": 0.833, + "neg": 0.0, + "_id": { + "$oid": "6711d827cd60fca157e61967" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d828cd60fca157e61969" + }, + "professor_name": "Jennifer Lavayen", + "rating": 5, + "department": "Economics department", + "comments": [ + { + "text": "Was very nice and understanding. I appreciated her flexibility. Only thing about the course is that it is more math intensive than I thought. Other than that she is great.", + "pos": 0.331, + "neu": 0.669, + "neg": 0.0, + "_id": { + "$oid": "6711d828cd60fca157e6196a" + } + }, + { + "text": "Graded on midterm project, final project, and final exam. The projects are done in groups. Very generous with grading and responds to emails quickly. She wants you to pass. Attendance for lectures is not necessary, just the three assignments on blackboard.", + "pos": 0.082, + "neu": 0.918, + "neg": 0.0, + "_id": { + "$oid": "6711d828cd60fca157e6196b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d828cd60fca157e6196d" + }, + "professor_name": "LAUREL WRIGHT", + "rating": 3, + "department": "Psychology department", + "comments": [ + { + "text": "She spends most of your time with her talking about how great she is. She talks a big game about supporting you, but she does not follow through. She expects you to read her mind without her communicating with you. She expects you to do things her way or the high way. She send very abusive emails and is constantly yelling at her students.", + "pos": 0.063, + "neu": 0.85, + "neg": 0.087, + "_id": { + "$oid": "6711d828cd60fca157e6196e" + } + }, + { + "text": "Classes in the CASAC track can be kind of bland and this is a foundations class--you'll learn a lot you didn't know, and the final paper/structure of the class is way more helpful than most.", + "pos": 0.083, + "neu": 0.917, + "neg": 0.0, + "_id": { + "$oid": "6711d828cd60fca157e6196f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d828cd60fca157e61971" + }, + "professor_name": "Anthony Damian Sim", + "rating": 4.5, + "department": "Music department", + "comments": [ + { + "text": "Great professor|| Loves jazz. Makes it easy to understand the history of music. Gives plenty of extra credit opportunities for those who are less musically inclined. Uses an online blog to review material from class (super helpful). All exams & quizzes are fair. Only material that is covered in class is fair game for tests/midterms/finals .WAVY~", + "pos": 0.367, + "neu": 0.633, + "neg": 0.0, + "_id": { + "$oid": "6711d828cd60fca157e61972" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d829cd60fca157e61974" + }, + "professor_name": "Yitzchak Schwartz", + "rating": 4, + "department": "History department", + "comments": [ + { + "text": "His class mainly consists of him sitting or standing at the front of the room lecturing. Everything on the tests is from the lectures, the reading barely helps. Its very easy material to learn if youve ever studied US history. He would often get off track and tell us about his life, but its not a problem. Wont fail his class due to absences ;)", + "pos": 0.175, + "neu": 0.825, + "neg": 0.0, + "_id": { + "$oid": "6711d829cd60fca157e61975" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d829cd60fca157e61977" + }, + "professor_name": "Laura Yan", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Took this class in Spring 2019 thinking that it would dive into poetry, but it wasn't that. Rather, it focuses on descriptive journalism, techniques of that nature, and workshopping pieces. Prof Yan is very flexible and understanding as long as you show a willingness to improve your writing. Be prepared to write an article w/ interview!", + "pos": 0.187, + "neu": 0.813, + "neg": 0.0, + "_id": { + "$oid": "6711d829cd60fca157e61978" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d829cd60fca157e6197a" + }, + "professor_name": "David Castro", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "This is my first time doing this because I think he deserves to be known, he's such a good professor and his class is so easy but it might seem like is not but if you do all your work which mostly writing papers with your opinion and quizzes that are from what you are assigned to read you will definitely pass with an A... Take him!!", + "pos": 0.157, + "neu": 0.843, + "neg": 0.0, + "_id": { + "$oid": "6711d829cd60fca157e6197b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82acd60fca157e6197d" + }, + "professor_name": "Rouzbeh Nazari", + "rating": 5, + "department": "Earth Science department", + "comments": [ + { + "text": "He was the best science professor I have ever had. Loved his class.", + "pos": 0.424, + "neu": 0.576, + "neg": 0.0, + "_id": { + "$oid": "6711d82acd60fca157e6197e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82acd60fca157e61980" + }, + "professor_name": "Tricia Gordon", + "rating": 2.5, + "department": "Education department", + "comments": [ + { + "text": "There's a LOT of work in this class, and the prof doesn't seem to understand what she's assigning, or how much work it truly is (she inherited the syllabus from another prof). But if you just do it, she is a very easy grader. Her lectures are supremely boring, and tend to include a lot of anecdotes about her son. Also: several expensive textbooks.", + "pos": 0.152, + "neu": 0.808, + "neg": 0.04, + "_id": { + "$oid": "6711d82acd60fca157e61981" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82acd60fca157e61983" + }, + "professor_name": "David Hotson", + "rating": 4, + "department": "Architecture department", + "comments": [ + { + "text": "SO HOT like his name. Gives right amount of push to produce good work & helpful in developing good concepts in design.", + "pos": 0.401, + "neu": 0.599, + "neg": 0.0, + "_id": { + "$oid": "6711d82acd60fca157e61984" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82bcd60fca157e61986" + }, + "professor_name": "Lin Zheng", + "rating": 3, + "department": "Economics department", + "comments": [ + { + "text": "This professor's class is not interesting.", + "pos": 0.0, + "neu": 0.689, + "neg": 0.311, + "_id": { + "$oid": "6711d82bcd60fca157e61987" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82bcd60fca157e61989" + }, + "professor_name": "Diedre Anglin", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Very nice professor. Get on her good side you'll be fine.", + "pos": 0.493, + "neu": 0.507, + "neg": 0.0, + "_id": { + "$oid": "6711d82bcd60fca157e6198a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82bcd60fca157e6198c" + }, + "professor_name": "Deidre Anglin", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Professor Anglin was amazing! She is super nice and pays attention to whether you understand the material. It was all conceptual information and some details added. You create your own experiment and write about it throughout the entire semester. There are a few quizzes, 3 papers and a cumulative final. I found this class pretty easy to handle.", + "pos": 0.268, + "neu": 0.732, + "neg": 0.0, + "_id": { + "$oid": "6711d82ccd60fca157e6198d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82ccd60fca157e6198f" + }, + "professor_name": "Liu Him", + "rating": 1, + "department": "Computer Science department", + "comments": [ + { + "text": "He might know the materials but be doesn't know how to teach. Doesn't have any interaction with students. Not helpful at all. Drop him while you can. And if you do take him, its all you!!", + "pos": 0.0, + "neu": 0.845, + "neg": 0.155, + "_id": { + "$oid": "6711d82ccd60fca157e61990" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82ccd60fca157e61992" + }, + "professor_name": "Jeffrey Benvenuto", + "rating": 3, + "department": "Political Science department", + "comments": [ + { + "text": "On one hand he's chill and his class is an easy A, but on the other hand he was also extremely unavailable outside of class and always ended it 15 minutes early because he \"didn't want to miss his train home to New Jersey\". Only got one quiz back, the other assignments have disappeared in the abyss. Not very professional in my opinion.", + "pos": 0.142, + "neu": 0.806, + "neg": 0.052, + "_id": { + "$oid": "6711d82ccd60fca157e61993" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82dcd60fca157e61995" + }, + "professor_name": "Adam Qureshi", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "He's the best TA ever. So lenient . Very understanding and very fun . Take him", + "pos": 0.448, + "neu": 0.552, + "neg": 0.0, + "_id": { + "$oid": "6711d82dcd60fca157e61996" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82dcd60fca157e61998" + }, + "professor_name": "Wilson Valentin", + "rating": 1, + "department": "English department", + "comments": [ + { + "text": "will not learn anything that you don't already know about writing. Grades you on things he never taught. DO NOT BUY THE TEXTBOOK! you'll never use it. Holds grudges and comments on your work extremely unprofessionally. Replies late to all emails. You won't learn anything, 80% of class time is dedicated to reading silently or writing silently.", + "pos": 0.056, + "neu": 0.944, + "neg": 0.0, + "_id": { + "$oid": "6711d82dcd60fca157e61999" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82dcd60fca157e6199b" + }, + "professor_name": "Irving Estevez", + "rating": 1, + "department": "Biology department", + "comments": [ + { + "text": "Of the TAs in this course, he is the only one to give pop quizzes. He has an attitude if you ask any questions and gives ridiculous exams in comparison to other TAs. If I could give him a 0/5 on the rating, I would.", + "pos": 0.0, + "neu": 0.946, + "neg": 0.054, + "_id": { + "$oid": "6711d82dcd60fca157e6199c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82ecd60fca157e6199e" + }, + "professor_name": "David Whitcraft", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "His class will mostly focus in expression of concepts through typography and the design of a book. This class only used one font, if you are looking for a more creative/adventurous class I would not recommend. Little presentations throughout the semester + final ( final book design that will be bound in class.)", + "pos": 0.0, + "neu": 0.961, + "neg": 0.039, + "_id": { + "$oid": "6711d82ecd60fca157e6199f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82ecd60fca157e619a1" + }, + "professor_name": "Boris Genzer", + "rating": 4, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82ecd60fca157e619a3" + }, + "professor_name": "Robert Siebert", + "rating": 3.5, + "department": "Anthropology department", + "comments": [ + { + "text": "Gives pretty boring lectures, however he makes his class extremely passable. The entire semester, he gave only two tests and two quizzes, the quizzes helped prepare you for his tests. As long as you don't drift off in his class and write down key terms he puts on the board, you will get an A! DO THE EXTRA CREDIT, YOUR GPA WILL THANK YOU!", + "pos": 0.142, + "neu": 0.826, + "neg": 0.032, + "_id": { + "$oid": "6711d82ecd60fca157e619a4" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82ecd60fca157e619a6" + }, + "professor_name": "Vansh Tewari", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "New adjunct Professor to the CCNY Dr Tiwari is very nice he takes time out to explain something that you don't understand He gives 3 test all multiple choice He does not curve DO THE EXTRA CREDIT YOU CAN ADD UP TP 5 POINTS ON FINAL GRADE The Final is cumulative.", + "pos": 0.116, + "neu": 0.884, + "neg": 0.0, + "_id": { + "$oid": "6711d82ecd60fca157e619a7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82fcd60fca157e619a9" + }, + "professor_name": "Liz Donato", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "She's amazing! She knows her stuff and if she's not sure about your question, she will definitely go out of her way to get an answer for you. Basically read the textbook, there's 2 papers that she will assign. I did not have much of an interest going into the class because it was a liberal art I had to take, but I do not regret it! She's great!", + "pos": 0.197, + "neu": 0.785, + "neg": 0.018, + "_id": { + "$oid": "6711d82fcd60fca157e619aa" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d82fcd60fca157e619ac" + }, + "professor_name": "Justin Berry", + "rating": 1.5, + "department": "Art department", + "comments": [ + { + "text": "I don't like his way of teaching. way too fast. he talked a lot of non-sense staff not related to the class. as a beginner he expect us to be professional when he knows we use the program once. He never finish to tackle the whole lecture. His grading from midterm won't change in the finals. His critiques are useless and takes too much class time.", + "pos": 0.0, + "neu": 0.929, + "neg": 0.071, + "_id": { + "$oid": "6711d82fcd60fca157e619ad" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d830cd60fca157e619af" + }, + "professor_name": "Jaime Manrique", + "rating": 5, + "department": "Spanish department", + "comments": [ + { + "text": "Professor Manrique, not only knows how to write, he can help students improve their skills. I learned a great deal and improved as a writer and I also saw improvement, sometimes dramatic improvement in the work of my classmates. Although this class was writing in Spanish, Professor Manrique also teaches creative writing in English. Take his class.", + "pos": 0.303, + "neu": 0.697, + "neg": 0.0, + "_id": { + "$oid": "6711d830cd60fca157e619b0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d830cd60fca157e619b2" + }, + "professor_name": "Gustavo Gonzalez", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "a difficult but worthwhile OLD SCHOOL intro to black & white DARKROOM FILM photography. loved the work I completed but it was a lottttta time in the darkroom. beware. if you are continuing with art/design/photo it's great, but this is not an easy class.", + "pos": 0.243, + "neu": 0.673, + "neg": 0.084, + "_id": { + "$oid": "6711d830cd60fca157e619b3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d830cd60fca157e619b5" + }, + "professor_name": "Rhoda Ismail", + "rating": 3.5, + "department": "Arabic department", + "comments": [ + { + "text": "she's an amazing professor. you have to complete online hw and sometimes hand in hw too. you must attend lectures. she tries to help students and make them understand. she's easy to reach and contact whenever help is needed. show her you care about the class and read the book and you can get an A", + "pos": 0.286, + "neu": 0.714, + "neg": 0.0, + "_id": { + "$oid": "6711d830cd60fca157e619b6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d830cd60fca157e619b8" + }, + "professor_name": "Carolina Artistico", + "rating": 3.5, + "department": "English As A Second Language department", + "comments": [ + { + "text": "Prof Artistico is very knowledgeable about her subject. She is rigorous, focused, and MAKES her students do work. If your goal is an easy class, stay away. If you want a good, challenging intro to linguistics or language, take her.", + "pos": 0.238, + "neu": 0.717, + "neg": 0.044, + "_id": { + "$oid": "6711d830cd60fca157e619b9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d831cd60fca157e619bb" + }, + "professor_name": "A. Buchanan", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "She is a really nice prof. She is very patient and very determined to have her students understand what's being taught in her class. She definitely gave me a clear understanding of the fundamentals of music. SHE IS THE BEST!!!!!", + "pos": 0.329, + "neu": 0.671, + "neg": 0.0, + "_id": { + "$oid": "6711d831cd60fca157e619bc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d831cd60fca157e619be" + }, + "professor_name": "Georgina Falu", + "rating": 1.5, + "department": "African-American Studies department", + "comments": [ + { + "text": "This Professor should NOT fit to be in Academia. She is an extremely harsh grader. She makes you buy a textbook she's written and published with TONS of grammatical errors. She's also unavailable throughout the entire term. Babbles on and on about her personal experience and is EXTREMEMLY disorganized. Good luck! You're going to need it.", + "pos": 0.089, + "neu": 0.756, + "neg": 0.154, + "_id": { + "$oid": "6711d831cd60fca157e619bf" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d831cd60fca157e619c1" + }, + "professor_name": "Maija Garcia", + "rating": 5, + "department": "Theater department", + "comments": [ + { + "text": "Easy A, show up and pass. You have to do a few dance projects but it shouldn't drain much of your time. She's really nice too!", + "pos": 0.21, + "neu": 0.79, + "neg": 0.0, + "_id": { + "$oid": "6711d831cd60fca157e619c2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d832cd60fca157e619c4" + }, + "professor_name": "Alezandra Melendrez", + "rating": 1.5, + "department": "Education department", + "comments": [ + { + "text": "She is passive-agressive! She gives too much work and is not very helpful. She is very unorganized and is very boring. She give like 15 reading notes, two lesson plans(EXTREMELY LONG),an assistive technology paper. She has no life! Please make sure this is the only class you take because the work is overload! She had to change the syllabus 3 times!", + "pos": 0.067, + "neu": 0.752, + "neg": 0.181, + "_id": { + "$oid": "6711d832cd60fca157e619c5" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d832cd60fca157e619c7" + }, + "professor_name": "Alberto Tonizzo", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d832cd60fca157e619c9" + }, + "professor_name": "Anwar Hussain", + "rating": 2, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "You can see he's a young prof. TA. First day class he tries to show how tough he is by slamming my desk saying PAY ATTENTION. I had MATLAB open already,no one else didnt so I decided to go on my phone. Guy marks you absent if youre literally a minute late. Has attitude problem. Quiz every 2 weeks,easy if you look at lec notes! Main prof much better", + "pos": 0.039, + "neu": 0.872, + "neg": 0.089, + "_id": { + "$oid": "6711d832cd60fca157e619ca" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d833cd60fca157e619cc" + }, + "professor_name": "Michael Montagna", + "rating": 4, + "department": "English department", + "comments": [ + { + "text": "Advanced Grammar 300+ class. He is a great professor. Lots of homework, random quizzes, journals, one or two mini paper and a midterm and final. I came to this class with little knowledge on grammar and now, I've learned a lot about it. He makes class interesting. We only had one mini textbook that we bring to class. I would def recommend.", + "pos": 0.163, + "neu": 0.837, + "neg": 0.0, + "_id": { + "$oid": "6711d833cd60fca157e619cd" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d833cd60fca157e619cf" + }, + "professor_name": "Bhavani Murugesan", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Avg. professors know their material and have knowledge in his/her field; but this doesn't mean they're good instructors. This exceptional professor has a valuable skill of effective verbal communication apart from her knowledge in the field making you understand & break down concepts w/ utmost clarity. Very kind & helpful, one of the best I've had", + "pos": 0.34, + "neu": 0.621, + "neg": 0.039, + "_id": { + "$oid": "6711d833cd60fca157e619d0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d833cd60fca157e619d2" + }, + "professor_name": "Emily Lubicich", + "rating": 4, + "department": "Earth Science department", + "comments": [ + { + "text": "This lab instructor is amazing. You must show up for attendance. Labs are easy if you follow the instructions. The final was based on the review sheet.", + "pos": 0.211, + "neu": 0.789, + "neg": 0.0, + "_id": { + "$oid": "6711d833cd60fca157e619d3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d834cd60fca157e619d5" + }, + "professor_name": "Varan Singh", + "rating": 1.5, + "department": "Biology department", + "comments": [ + { + "text": "Varan was a TA for Bio 350: Microbiology. The guy knows his biology content very well, but he is a lousy lab instructor. He was very demanding and sometimes arrogant . He would confuse students by giving too much information that was irrelevant when explaining laboratory procedures. One of the worst TA's I have had in 14 bio courses taken.", + "pos": 0.062, + "neu": 0.683, + "neg": 0.256, + "_id": { + "$oid": "6711d834cd60fca157e619d6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d834cd60fca157e619d8" + }, + "professor_name": "Andrew Dublin", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "This is a great teacher for those willing to work. He's available, a hard but fair grader. He listens is interested in the success of his students and gives great helpful feedback. I'd take any class he offered in the future.", + "pos": 0.4, + "neu": 0.58, + "neg": 0.02, + "_id": { + "$oid": "6711d834cd60fca157e619d9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d834cd60fca157e619db" + }, + "professor_name": "Carl Fudge", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "This professor is by far one of the best. He is understanding and cool. There were about 5 assignments throughout the semester. All the assignments take a lot of time, sometimes up to 3 classes for 1 assignment. I recommend going to lab hours to finish your work. The final was portfolio of all your work. This class was really fun!", + "pos": 0.184, + "neu": 0.816, + "neg": 0.0, + "_id": { + "$oid": "6711d834cd60fca157e619dc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d835cd60fca157e619de" + }, + "professor_name": "Lawrence Vu", + "rating": 1, + "department": "Mathematics department", + "comments": [ + { + "text": "He is not a permanent prof, so hopefully no one needs this. I did not like this class at all. He was not clear in his lessons and the homework given was way easier than the class work and tests. If you have a choice I do not recommend this class at all.", + "pos": 0.101, + "neu": 0.756, + "neg": 0.143, + "_id": { + "$oid": "6711d835cd60fca157e619df" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d835cd60fca157e619e1" + }, + "professor_name": "Jose Rivera Mendez", + "rating": 3, + "department": "Spanish department", + "comments": [ + { + "text": "Very nice guy, not a great professor. In class he teaches quite well, and encourages everyone to participate, but he never grades anything on time, and is generally very disorganized. I don't think he updated blackboard once.", + "pos": 0.135, + "neu": 0.741, + "neg": 0.125, + "_id": { + "$oid": "6711d835cd60fca157e619e2" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d835cd60fca157e619e4" + }, + "professor_name": "Alejandro Oceguera", + "rating": 5, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d836cd60fca157e619e6" + }, + "professor_name": "Kevin Zhou", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "Makes learning chemistry easier than you'd ever imagine. Great TA.", + "pos": 0.463, + "neu": 0.537, + "neg": 0.0, + "_id": { + "$oid": "6711d836cd60fca157e619e7" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d836cd60fca157e619e9" + }, + "professor_name": "Pamela Ralat", + "rating": 5, + "department": "Media Arts department", + "comments": [ + { + "text": "She is a such a sweetheart and always has a smile on her face. She sincerely wants you to do a good job as well as improve your skills in editing. Definitely one of the best professors at CCNY.", + "pos": 0.443, + "neu": 0.557, + "neg": 0.0, + "_id": { + "$oid": "6711d836cd60fca157e619ea" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d836cd60fca157e619ec" + }, + "professor_name": "Christian Anderson", + "rating": 5, + "department": "International Studies department", + "comments": [ + { + "text": "THIS DUDE IS AWESOME! HE IS MY FAVORITE PROFESSOR YET! HE IS FAIR, ENTERTAINING, HIGHLY INFORMED, AND HAS A UNIQUE APPROACH TO TEACHING. HE IS SO WELL AT WHAT HE DOES YOU BARELY NEED THE BOOK AND MAKES YOU THINK AND LEARN EFFORTLESSLY. GET IN HIS CLASS BEFORE ITS TO LATE, YOU WONT REGRET IT. I FEEL LUCKY TO HAVE BEEN ABLE TO BE HIS STUDENT = )", + "pos": 0.305, + "neu": 0.695, + "neg": 0.0, + "_id": { + "$oid": "6711d836cd60fca157e619ed" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d837cd60fca157e619ef" + }, + "professor_name": "Yakov Krayn", + "rating": 4.5, + "department": "Economics department", + "comments": [ + { + "text": "I have exam anxiety, but professor's fare grading policy saved me though I flunked the midterm. Actually I have got a pretty good grade. I have got all above 93, except that I have got 52 in the midterm, and 77 in class participation (20% of the grade). Yet he gave me a B+. He goes over the nearly-exact stuffs that come in his exams.", + "pos": 0.153, + "neu": 0.776, + "neg": 0.071, + "_id": { + "$oid": "6711d837cd60fca157e619f0" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d837cd60fca157e619f2" + }, + "professor_name": "Elizabeth Weybright", + "rating": 5, + "department": "Literature department", + "comments": [ + { + "text": "She is amazing!!! She helps everyone out and looks at her students as normal humans who can have some trouble in life. She always gives specific feedback. Her class is generally easy as long as you do the readings she gives. The class is all about Jane Austen and this young professor is so passionate that it will make you love her. Take her 100%", + "pos": 0.233, + "neu": 0.733, + "neg": 0.034, + "_id": { + "$oid": "6711d837cd60fca157e619f3" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d837cd60fca157e619f5" + }, + "professor_name": "moira wilkinson", + "rating": 3, + "department": "Education department", + "comments": [ + { + "text": "her class is very long and therefore it gets boring sometimes but if you participate and stay active you'll enjoy. she is tough grader and her instructions are very confusing. alot of reading and papers are required. as soon as you submit everything on time and attend her class you'll get an A but you have to work hard for it.", + "pos": 0.111, + "neu": 0.779, + "neg": 0.11, + "_id": { + "$oid": "6711d837cd60fca157e619f6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d838cd60fca157e619f8" + }, + "professor_name": "Shalini Singh", + "rating": 4, + "department": "Psychology department", + "comments": [ + { + "text": "She is great! She explains until you get it. She cares about learning.", + "pos": 0.402, + "neu": 0.598, + "neg": 0.0, + "_id": { + "$oid": "6711d838cd60fca157e619f9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d838cd60fca157e619fb" + }, + "professor_name": "Kate Ritchie", + "rating": 5, + "department": "Philosophy department", + "comments": [ + { + "text": "Pop quizzes are easy, as long as you do the readings you'll pass. She really loves when you participate in class (Yes it matters,) and does care a lot if you pass or not (curves exams and offers extra credit.) Philosophy is a difficult topic to read, but she made it understandable and the class was fun. :)", + "pos": 0.28, + "neu": 0.696, + "neg": 0.025, + "_id": { + "$oid": "6711d838cd60fca157e619fc" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d838cd60fca157e619fe" + }, + "professor_name": "Elizabeth Boyman", + "rating": 5, + "department": "Chemistry department", + "comments": [ + { + "text": "TA for chem 10301. She was an absolute gem. She took 4/5 classes while TAing for a professor who seemed to not give two dams. She is the reason most of us past. God bless her. Explained things well, was happy to help, always had office hours. Her classes gave a review each week with practice, took questions, easy take home quizzes. Also, HOT!!", + "pos": 0.225, + "neu": 0.775, + "neg": 0.0, + "_id": { + "$oid": "6711d838cd60fca157e619ff" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d839cd60fca157e61a01" + }, + "professor_name": "Cyril Ghosh", + "rating": 5, + "department": "Political Science department", + "comments": [ + { + "text": "Although he's only a visiting professor, I really wish he could stay at CCNY for good. Very knowledgeable, respects his students a lot and always tries to address every single one of their questions. Very opinionated, so discussions with him are super interesting. Some people were born with a purpose to be educators: he's one of such people.", + "pos": 0.221, + "neu": 0.779, + "neg": 0.0, + "_id": { + "$oid": "6711d839cd60fca157e61a02" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d839cd60fca157e61a04" + }, + "professor_name": "Esther Schick", + "rating": 1, + "department": "Biology department", + "comments": [ + { + "text": "She was just terrible. Absolutely no idea what she is doing. She just hands out awful grades in lab reports with no reason. Useless.", + "pos": 0.073, + "neu": 0.591, + "neg": 0.336, + "_id": { + "$oid": "6711d839cd60fca157e61a05" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d839cd60fca157e61a07" + }, + "professor_name": "Mina Garcia", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "She is the worst ever, she doesn't do any thing but watching you doing her job. At the first day she will distribute the books and assigned every one a chapter to facilitate and doing activities about it, and she will set watching you,and if you finish early the class is over since she doesn't anything to add. two quizzes are expected so get ready", + "pos": 0.053, + "neu": 0.91, + "neg": 0.037, + "_id": { + "$oid": "6711d839cd60fca157e61a08" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83acd60fca157e61a0a" + }, + "professor_name": "Matt Paczkowski", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Overall easy A.", + "pos": 0.592, + "neu": 0.408, + "neg": 0.0, + "_id": { + "$oid": "6711d83acd60fca157e61a0b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83acd60fca157e61a0d" + }, + "professor_name": "Sherry He", + "rating": 4, + "department": "Art department", + "comments": [ + { + "text": "Professor He is probably starting her teachings but she isn't too bad. Her assignments and projects are fairly easy, you just have to follow the instructions and you'll be okay. She gives mock quizzes every other week so you don't forget what you learned about typefaces. Her assignments/homework can be hard because she isn't specific but ask Q's!", + "pos": 0.181, + "neu": 0.743, + "neg": 0.076, + "_id": { + "$oid": "6711d83acd60fca157e61a0e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83acd60fca157e61a10" + }, + "professor_name": "Doug Spitzer", + "rating": 5, + "department": "Communication department", + "comments": [ + { + "text": "He is by far one of my favorite professors. He really cares about helping you get your work to where you want it to be and his feedback is always helpful. Hes big on collaboration and making sure everyone has the opportunity to share their opinion which makes for an interesting class each week. Would love to take this class again.", + "pos": 0.347, + "neu": 0.653, + "neg": 0.0, + "_id": { + "$oid": "6711d83acd60fca157e61a11" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83bcd60fca157e61a13" + }, + "professor_name": "Katya Rozanova", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "This prof. is one of the best! You work on one project for the whole semester. She lets you choose any type of subject/issue to work on creating/designing an app. Her feedback is great! Its up to you wether you like to change or not. She is overall a great person, she is accessible outside of class and helps you with anything you need.", + "pos": 0.235, + "neu": 0.765, + "neg": 0.0, + "_id": { + "$oid": "6711d83bcd60fca157e61a14" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83bcd60fca157e61a16" + }, + "professor_name": "Robert Majeska", + "rating": 1, + "department": "Biomedical department", + "comments": [ + { + "text": "he is unorganized and he gave too much hw and quizzes before lectures. Quizzes are meant to test what you learned from lectures not before it. He lectured for a max of 1H per week which not enough for this hardest subject. You will get lost toward the mid of semester plus you will get shocked by a final which is designed for medical schools.", + "pos": 0.0, + "neu": 0.932, + "neg": 0.068, + "_id": { + "$oid": "6711d83bcd60fca157e61a17" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83bcd60fca157e61a19" + }, + "professor_name": "Jeffrey Yoskowitz", + "rating": 5, + "department": "Judaic Studies department", + "comments": [ + { + "text": "Professor Yoskowitz is a great and fun professor. The class is really interesting and he makes the lectures very engaging.", + "pos": 0.45, + "neu": 0.55, + "neg": 0.0, + "_id": { + "$oid": "6711d83bcd60fca157e61a1a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83ccd60fca157e61a1c" + }, + "professor_name": "Tina Liu", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "She is a great professor. Very helpful. You can reach her anytime you want with her email. Can discuss any issues. No matter what she would listen to you and solve your problem.", + "pos": 0.277, + "neu": 0.632, + "neg": 0.092, + "_id": { + "$oid": "6711d83ccd60fca157e61a1d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83ccd60fca157e61a1f" + }, + "professor_name": "Samantha Farinella", + "rating": 5, + "department": "Communication department", + "comments": [ + { + "text": "She is a real gem. knows how to make lectures and readings interesting. Always gives good feedback. BEST PROFESSOR at hunter ! take her class, you wont regret it.", + "pos": 0.345, + "neu": 0.655, + "neg": 0.0, + "_id": { + "$oid": "6711d83ccd60fca157e61a20" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83ccd60fca157e61a22" + }, + "professor_name": "Ira Feldman", + "rating": 2, + "department": "Environment department", + "comments": [ + { + "text": "Prof. Feldman is a nice person but very self-centered. He tends to get lost in his lectures and has no consideration of the students time. There are intensive readings and writing throughout the course and he doesn't grade anything nor give any feedback. Course was composed of weekly posts and comments, and two team projects (may replace by exams)", + "pos": 0.03, + "neu": 0.88, + "neg": 0.09, + "_id": { + "$oid": "6711d83ccd60fca157e61a23" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83dcd60fca157e61a25" + }, + "professor_name": "Colleen Oppenzato", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Very amazing professor. Clear instructions and very helpful. Gives clear feedback and you very helpful. She changed a lot of the syllabus to accommodate to our needs and help us during the pandemic. I would recommend every and anyone to take such an amazing professor. I love her and so would you.", + "pos": 0.404, + "neu": 0.596, + "neg": 0.0, + "_id": { + "$oid": "6711d83dcd60fca157e61a26" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83dcd60fca157e61a28" + }, + "professor_name": "Rosa Tubio", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Rosa was the discussion leader in recitation. She was always so kind and a joy to learn from! She simplified the topics that we learned from Professor Horvitz during lecture and made it even easier to understand. She provides good practice and review for exams and topics covered during the week. Overall, just a wonderful TA and human being!", + "pos": 0.252, + "neu": 0.748, + "neg": 0.0, + "_id": { + "$oid": "6711d83dcd60fca157e61a29" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83dcd60fca157e61a2b" + }, + "professor_name": "Mohammed Bzeih", + "rating": 3.7, + "department": "Business department", + "comments": [ + { + "text": "I'm basically dorming here.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d83dcd60fca157e61a2c" + } + }, + { + "text": "Mr professor told us to come to class 15 minutes earlier, mind you this class is 2 hours and 30 mins ON A FRIDAY, SO uk boom everyone is in class and waiting 4;45 is when he wanted us here everyone is here, he still not here. As im typing this it has been A FUDGING HOUR. so great professor. really great.", + "pos": 0.138, + "neu": 0.862, + "neg": 0.0, + "_id": { + "$oid": "6711d83dcd60fca157e61a2d" + } + }, + { + "text": "Engaging lectures and pretty easy tests. Disorganized at times and takes a while to grade", + "pos": 0.392, + "neu": 0.507, + "neg": 0.101, + "_id": { + "$oid": "6711d83dcd60fca157e61a2e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83dcd60fca157e61a30" + }, + "professor_name": "Naseem Navab", + "rating": 3, + "department": "Art department", + "comments": [ + { + "text": "I appreciate that the Professor gave us free range whatever we wanted too. I also appreciate how open the students were on giving feedback. I really liked how easy it was to communicate to the teacher, a really down to earth person. I also liked how creative the assignments were, and how enjoyable they were to do.", + "pos": 0.351, + "neu": 0.649, + "neg": 0.0, + "_id": { + "$oid": "6711d83dcd60fca157e61a31" + } + }, + { + "text": "Not good at teaching and is a drag.", + "pos": 0.0, + "neu": 0.582, + "neg": 0.418, + "_id": { + "$oid": "6711d83dcd60fca157e61a32" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83ecd60fca157e61a34" + }, + "professor_name": "Calvin Forde", + "rating": 4, + "department": "Biology department", + "comments": [ + { + "text": "I had professor Forde for the lab section of Biology so this is only in regards to the lab. The labs were done mostly online and we either had to do a simple worksheet or take a quiz after doing the lab. He was helpful in answering questions and the labs were lengthy but easy. We only got graded off lab and quizzes so do those and you'll be fine.", + "pos": 0.106, + "neu": 0.894, + "neg": 0.0, + "_id": { + "$oid": "6711d83ecd60fca157e61a35" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83ecd60fca157e61a37" + }, + "professor_name": "Tyrene Wright", + "rating": 1, + "department": "African-American Studies department", + "comments": [ + { + "text": "Professor Wright was very unorganized when it came to posting all the assignments and work on the blackboard. All of the work that was never posted was thrown the last 2 weeks of the semester Maybe things would be better in person, however, online learning was a mess. The class was 1 month behind on the syllabus. No feedback was given for any work", + "pos": 0.042, + "neu": 0.889, + "neg": 0.069, + "_id": { + "$oid": "6711d83ecd60fca157e61a38" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83ecd60fca157e61a3a" + }, + "professor_name": "Michelle Sasson", + "rating": 4, + "department": "Computer Science department", + "comments": [ + { + "text": "Prof. Sasson brought a whole new perspective to the class. You will learn a lot. However, she treats the students more like interns. Even the smallest mistakes will cost you a lot. She didn't grade the assignments and project promptly. So no feedback and no chance to improve. Make sure you spend a lot of time doing the final project. It's more li", + "pos": 0.111, + "neu": 0.791, + "neg": 0.099, + "_id": { + "$oid": "6711d83ecd60fca157e61a3b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83fcd60fca157e61a3d" + }, + "professor_name": "Oumarou Ouedraogo", + "rating": 1, + "department": "Economics department", + "comments": [ + { + "text": "He doesn't know how to teach and he doesn't know what he is doing. He knows his maths is wrong and he goes along with it. Avoid him.", + "pos": 0.0, + "neu": 0.831, + "neg": 0.169, + "_id": { + "$oid": "6711d83fcd60fca157e61a3e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83fcd60fca157e61a40" + }, + "professor_name": "Matthew Shreiber", + "rating": 5, + "department": "Music department", + "comments": [ + { + "text": "My overall experience taking professor Schreiber's course was amazing, educational, easy, fun, and I enjoyed it throughout the semester. He definitely is a professor I recommend paying to get taught by. He's helpful when it comes to assignments, very down to earth, respectful, humorous, smart, creative, and can teach you about the history of music.", + "pos": 0.425, + "neu": 0.575, + "neg": 0.0, + "_id": { + "$oid": "6711d83fcd60fca157e61a41" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d83fcd60fca157e61a43" + }, + "professor_name": "Saurabh Sachdeva", + "rating": 5, + "department": "Electrical Engineering department", + "comments": [ + { + "text": "Definitely the best option for lab. If you show you tried, he will be very understanding.", + "pos": 0.33, + "neu": 0.67, + "neg": 0.0, + "_id": { + "$oid": "6711d83fcd60fca157e61a44" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d840cd60fca157e61a46" + }, + "professor_name": "Jack Devine", + "rating": 5, + "department": "History department", + "comments": [ + { + "text": "Professor Devine is AMAZING!!! \nHe is very open with the class and talks to you at your level. Usually, i can feel a weird power dyanamic with professors but Devine guides, teaches, and helps you as a friend and you can tell that he really cares about his students. He is also super empathetic, a great conversationalist, and down to earth!", + "pos": 0.36, + "neu": 0.624, + "neg": 0.016, + "_id": { + "$oid": "6711d840cd60fca157e61a47" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d840cd60fca157e61a49" + }, + "professor_name": "Susan Ziegler", + "rating": 5, + "department": "Art History department", + "comments": [ + { + "text": "Susan is an extremely kind professor who pushes you to do well in her class. Im not a huge fan of art but I found this class to be enjoyable. Weekly journal assignments but they aren't tough and some are actually fun. I would love to have her as my professor again.", + "pos": 0.294, + "neu": 0.662, + "neg": 0.045, + "_id": { + "$oid": "6711d840cd60fca157e61a4a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d840cd60fca157e61a4c" + }, + "professor_name": "Ido Levy", + "rating": 4, + "department": "Chemistry department", + "comments": [ + { + "text": "If you just pay attention to lectures, end up doing the homework, and paying attention to recitations, you should easily pass. Take advantage of his office hours, no one goes and he's accessible.", + "pos": 0.119, + "neu": 0.784, + "neg": 0.097, + "_id": { + "$oid": "6711d840cd60fca157e61a4d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d841cd60fca157e61a4f" + }, + "professor_name": "Krystal Orwig", + "rating": 3, + "department": "English department", + "comments": [ + { + "text": "she is not a bad professor but before u take the class take in mind that her assignments are kinda difficult, I feel like she should keep it more simple. she post a lot of homework,, she have to understand that we have more classes and things to do, Her assignment are kinda long, it takes a lot of time to complete.", + "pos": 0.077, + "neu": 0.881, + "neg": 0.042, + "_id": { + "$oid": "6711d841cd60fca157e61a50" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d841cd60fca157e61a52" + }, + "professor_name": "Emma Bailey", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "One of the best professors I had. Qualities: kind, good at explaining daunting topics, willing to help, quick to respond, and lenient grader. It is not an easy A class but not very difficult either. You must be comfortable with MATLAB or Python to do the computer assignments. It is easy to follow her lectures and she is good at clarifying questions", + "pos": 0.32, + "neu": 0.658, + "neg": 0.022, + "_id": { + "$oid": "6711d841cd60fca157e61a53" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d841cd60fca157e61a55" + }, + "professor_name": "Alfonso Felix", + "rating": 5, + "department": "Spanish department", + "comments": [ + { + "text": "Professor Felix is a great teacher. Teaches very well, makes sure his students understands his lessons, helps those that are struggling, and very nice. He is available outside of class if you need more help. He always does reviews before tests, which are super helpful. Class does require lots of participation. Attendance matters so don't be late.", + "pos": 0.339, + "neu": 0.624, + "neg": 0.037, + "_id": { + "$oid": "6711d841cd60fca157e61a56" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d842cd60fca157e61a58" + }, + "professor_name": "Adam Mikhail", + "rating": 5, + "department": "Anthropology department", + "comments": [ + { + "text": "Great professor with interesting lectures", + "pos": 0.694, + "neu": 0.306, + "neg": 0.0, + "_id": { + "$oid": "6711d842cd60fca157e61a59" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d842cd60fca157e61a5b" + }, + "professor_name": "Michael Archer", + "rating": 1, + "department": "Theater department", + "comments": [ + { + "text": "Professor Archer is very strict and has no concern for how the students are feeling. You must always participate and get really high grades in your speech to pass. Does not use blackboard and does everything in a very old-fashioned way. Asking for grades? \"you should know how you do in class\" will be his reply.", + "pos": 0.026, + "neu": 0.936, + "neg": 0.038, + "_id": { + "$oid": "6711d842cd60fca157e61a5c" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d842cd60fca157e61a5e" + }, + "professor_name": "Martin Nolan", + "rating": 5, + "department": "Engineering department", + "comments": [ + { + "text": "Professor Nolan is a dedicated engineering professor with the most amazing character. He actually enjoys what he does. Every week we had a lab but it is very doable and educational. I aspire to be like him.", + "pos": 0.232, + "neu": 0.768, + "neg": 0.0, + "_id": { + "$oid": "6711d842cd60fca157e61a5f" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d843cd60fca157e61a61" + }, + "professor_name": "Julio Ortiz", + "rating": 1, + "department": "Languages department", + "comments": [ + { + "text": "This professor is the worst professor to take for Spanish 124.He gave me a zero on a assignment because it wasnt the response that he wanted and brought my potential grade from a 96 to a 78. He is the worst i would have never taken him if i knew how bad of a professor he is. DONT TAKE HIM.", + "pos": 0.0, + "neu": 0.83, + "neg": 0.17, + "_id": { + "$oid": "6711d843cd60fca157e61a62" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d843cd60fca157e61a64" + }, + "professor_name": "Claude Telesford", + "rating": 4, + "department": "Physics department", + "comments": [ + { + "text": "Excellent lectures and in-class demonstrations. \nChallenging Physics questions which uses your reading comprehension ability and math skills. \nGreat class environment.", + "pos": 0.422, + "neu": 0.578, + "neg": 0.0, + "_id": { + "$oid": "6711d843cd60fca157e61a65" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d843cd60fca157e61a67" + }, + "professor_name": "Molly Mosher", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "Amazing", + "pos": 1.0, + "neu": 0.0, + "neg": 0.0, + "_id": { + "$oid": "6711d843cd60fca157e61a68" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d844cd60fca157e61a6a" + }, + "professor_name": "Erica Shires", + "rating": 5, + "department": "Art department", + "comments": [ + { + "text": "Professor Shires is a very warm person, she cares about everyone in her class. The class is fun and interesting, for sure you will lean a lot from her class, she never gave heavy homework but you have to be active practicing in class. I would def take her again she's AMAZING!", + "pos": 0.301, + "neu": 0.699, + "neg": 0.0, + "_id": { + "$oid": "6711d844cd60fca157e61a6b" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d844cd60fca157e61a6d" + }, + "professor_name": "Elvine Etogho", + "rating": 5, + "department": "Psychology department", + "comments": [ + { + "text": "Prof Elvine is genuinely a sweet professor. Since it's an online course, many people weren't ready to put in the work. She was available after class to review the exams and she provided practice exams that were exactly similar to lecture exams. She dropped many assignments to help people and was understanding of everyone's situation.Def take her", + "pos": 0.092, + "neu": 0.874, + "neg": 0.034, + "_id": { + "$oid": "6711d844cd60fca157e61a6e" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d844cd60fca157e61a70" + }, + "professor_name": "Marco Morazan", + "rating": 1, + "department": "Computer Science department", + "comments": [ + { + "text": "The entire class got a 0 on his midterm.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d844cd60fca157e61a71" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d845cd60fca157e61a73" + }, + "professor_name": "Maximilliana Rifkin", + "rating": 1, + "department": "Philosophy department", + "comments": [ + { + "text": "While the first few technical difficulties was understandable, it became a common thing which runs Into lecture time.Her lectures are incredibly hard to understand, she talks fast even when asked to slow down and cuts off students who are trying to clarify other ask questions.While the content of is hard her lectures don't help, at all.", + "pos": 0.0, + "neu": 0.839, + "neg": 0.161, + "_id": { + "$oid": "6711d845cd60fca157e61a74" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d845cd60fca157e61a76" + }, + "professor_name": "Katherine Stefatos", + "rating": 4, + "department": "Anthropology department", + "comments": [ + { + "text": "There were two journal assignments, a midterm and a final. The midterm and final are essays based on the case studies and articles she provides. Overall its an easy class just requires a lot of writing. She's a generous grader.", + "pos": 0.14, + "neu": 0.86, + "neg": 0.0, + "_id": { + "$oid": "6711d845cd60fca157e61a77" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d845cd60fca157e61a79" + }, + "professor_name": "Sayi Figueroa", + "rating": 1, + "department": "Education department", + "comments": [ + { + "text": "Prof Figueroa is unclear about assignments-offers the rubric but no clear instructions. She is unorganized & spends class talking about the syllabus instead of the topic. When I reached out with issues about assignments communication was unclear & confusing. This was online & the quality of the lessons was poor. I don't feel like I learned anything", + "pos": 0.024, + "neu": 0.74, + "neg": 0.236, + "_id": { + "$oid": "6711d845cd60fca157e61a7a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d846cd60fca157e61a7c" + }, + "professor_name": "Marcol Rodriguez", + "rating": 5, + "department": "Education department", + "comments": [ + { + "text": "Marcol is great. I really enjoy his classes. He is great on zoom, and I would imagine even better in person. Really understanding. Gives good and clear feedback. My one complaint is that he is a little late to give back grades. Otherwise, highly reccomend.", + "pos": 0.336, + "neu": 0.628, + "neg": 0.036, + "_id": { + "$oid": "6711d846cd60fca157e61a7d" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d846cd60fca157e61a7f" + }, + "professor_name": "Minghao Deng", + "rating": 1, + "department": "Economics department", + "comments": [ + { + "text": "Just a bad professor, no actual help. Useless with explanations. When asked for help hell say \"Im not a calculator\". Don't waste your time, might as well just stay home.", + "pos": 0.16, + "neu": 0.494, + "neg": 0.345, + "_id": { + "$oid": "6711d846cd60fca157e61a80" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d847cd60fca157e61a82" + }, + "professor_name": "Kara Pernicano", + "rating": null, + "department": "Administration department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d847cd60fca157e61a84" + }, + "professor_name": "Lei Fang", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d847cd60fca157e61a86" + }, + "professor_name": "Yunerys Robles Peralta A", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d847cd60fca157e61a88" + }, + "professor_name": "Nancy Palubniak", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d848cd60fca157e61a8a" + }, + "professor_name": "Margaret Duffy", + "rating": null, + "department": "Speech department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d848cd60fca157e61a8c" + }, + "professor_name": "Fatjon Kaja", + "rating": null, + "department": "Economics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d848cd60fca157e61a8e" + }, + "professor_name": "Richard Smigielski", + "rating": null, + "department": "Media Arts department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d848cd60fca157e61a90" + }, + "professor_name": "Michele Duguay", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d849cd60fca157e61a92" + }, + "professor_name": "Aisha Sidibe", + "rating": null, + "department": "Liberal Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d849cd60fca157e61a94" + }, + "professor_name": "William Hooper", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d849cd60fca157e61a96" + }, + "professor_name": "Alyssa Filoramo", + "rating": null, + "department": "Freshman Year Experience department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84acd60fca157e61a98" + }, + "professor_name": "Michael Elias", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84acd60fca157e61a9a" + }, + "professor_name": "Saboshchuk Ina", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84acd60fca157e61a9c" + }, + "professor_name": "Sara Abedi", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84acd60fca157e61a9e" + }, + "professor_name": "Ronald Ademaj", + "rating": null, + "department": "Civil Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84bcd60fca157e61aa0" + }, + "professor_name": "Gara LaMarche", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84bcd60fca157e61aa2" + }, + "professor_name": "William Ye", + "rating": null, + "department": "Health Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84bcd60fca157e61aa4" + }, + "professor_name": "Jeffrey Roberson", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84ccd60fca157e61aa6" + }, + "professor_name": "Vincent Tedeschi", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84ccd60fca157e61aa8" + }, + "professor_name": "Orlando Hernandez", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84ccd60fca157e61aaa" + }, + "professor_name": "Armineh Hallaran", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84ccd60fca157e61aac" + }, + "professor_name": "Sasha Rudenstein", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84dcd60fca157e61aae" + }, + "professor_name": "Lattica James", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84dcd60fca157e61ab0" + }, + "professor_name": "Kaitlin Faherty", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84dcd60fca157e61ab2" + }, + "professor_name": "Jeremy Edmiston", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84dcd60fca157e61ab4" + }, + "professor_name": "Sami Sauma", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84ecd60fca157e61ab6" + }, + "professor_name": "Sandy Tak", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84ecd60fca157e61ab8" + }, + "professor_name": "Jenny Labuga-Rumenik", + "rating": 5, + "department": "English department", + "comments": [ + { + "text": "She is a cool professor she is engaging and very nice, and she is clear and lenient about the work she expects from you. As long as you do your job you'll easily pass the class. She is very fair about attendance. Additionally, the writing prompts at the beginning of class were always entertaining.", + "pos": 0.307, + "neu": 0.693, + "neg": 0.0, + "_id": { + "$oid": "6711d84ecd60fca157e61ab9" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84ecd60fca157e61abb" + }, + "professor_name": "Nicolas Minas", + "rating": null, + "department": "Speech department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84fcd60fca157e61abd" + }, + "professor_name": "Jovensel Ngamaleu", + "rating": null, + "department": "Foreign Languages & Literature department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84fcd60fca157e61abf" + }, + "professor_name": "Erika Nelson", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d84fcd60fca157e61ac1" + }, + "professor_name": "David McMullen", + "rating": null, + "department": "Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d850cd60fca157e61ac3" + }, + "professor_name": "Elizabeth Rorschach", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d850cd60fca157e61ac5" + }, + "professor_name": "Mary Lutz", + "rating": null, + "department": "Sociology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d850cd60fca157e61ac7" + }, + "professor_name": "Feng Hu", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d850cd60fca157e61ac9" + }, + "professor_name": "Amber Khan", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d851cd60fca157e61acb" + }, + "professor_name": "Tashuna Albritton", + "rating": null, + "department": "Medicine department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d851cd60fca157e61acd" + }, + "professor_name": "Clayton Hartmann", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d851cd60fca157e61acf" + }, + "professor_name": "Yasmin Gur", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d852cd60fca157e61ad1" + }, + "professor_name": "Christian Martos", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d852cd60fca157e61ad3" + }, + "professor_name": "Tanni Das", + "rating": null, + "department": "Health Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d852cd60fca157e61ad5" + }, + "professor_name": "Brandt Graves", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d853cd60fca157e61ad7" + }, + "professor_name": "David Schmeitzer", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d853cd60fca157e61ad9" + }, + "professor_name": "Eva Leighton", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d853cd60fca157e61adb" + }, + "professor_name": "Shoaib Ahamed", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d854cd60fca157e61add" + }, + "professor_name": "Zaynab Jaber", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d854cd60fca157e61adf" + }, + "professor_name": "Salah Salah Salah", + "rating": null, + "department": "Chemistry department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d854cd60fca157e61ae1" + }, + "professor_name": "Rebecca McCarthy", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d854cd60fca157e61ae3" + }, + "professor_name": "Salvatore Di Bartolo", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d855cd60fca157e61ae5" + }, + "professor_name": "Lyndon Hayes", + "rating": 5, + "department": "Mathematics department", + "comments": [ + { + "text": "Prof. Haynes always figures out a way to maximize your grade. Sarcastic and humorous with slight boomer vibes. Cares a lot about his students and taught algebra II in two weeks. 89 on 1st exam, 88 on 2nd exam, 57 on 3rd exam, and managed to get a 92 on final exam (95 with extra credit).", + "pos": 0.128, + "neu": 0.84, + "neg": 0.032, + "_id": { + "$oid": "6711d855cd60fca157e61ae6" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d855cd60fca157e61ae8" + }, + "professor_name": "Yonatan Weiss", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d855cd60fca157e61aea" + }, + "professor_name": "Niloufar Nouri", + "rating": null, + "department": "Civil Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d855cd60fca157e61aec" + }, + "professor_name": "Kendra James", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d856cd60fca157e61aee" + }, + "professor_name": "Briana Jackson", + "rating": null, + "department": "Art department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d856cd60fca157e61af0" + }, + "professor_name": "Tzu-Hao Huang", + "rating": null, + "department": "Mechanical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d856cd60fca157e61af2" + }, + "professor_name": "Mohammed Khan", + "rating": null, + "department": "Biology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d856cd60fca157e61af4" + }, + "professor_name": "Alice Shepard", + "rating": null, + "department": "Advisor department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d857cd60fca157e61af6" + }, + "professor_name": "Amita Gupta", + "rating": null, + "department": "Education department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d857cd60fca157e61af8" + }, + "professor_name": "Jerome Haferd", + "rating": null, + "department": "Architecture department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d857cd60fca157e61afa" + }, + "professor_name": "Monika Cooney", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "This professor does not know how to teach. We spend too many days on the same unit and run out of time to work on other topics that would. ACTUALLY be on the exam. Near exams week, something happened in the campus and we had to go remote for about 1-2 weeks. Her dog was barking 24/7 and she rushed. I ended up failing the course because of this.", + "pos": 0.0, + "neu": 0.954, + "neg": 0.046, + "_id": { + "$oid": "6711d857cd60fca157e61afb" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d858cd60fca157e61afd" + }, + "professor_name": "Julie Lozano", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d858cd60fca157e61aff" + }, + "professor_name": "Bo Wang", + "rating": null, + "department": "Mechanical Engineering department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d858cd60fca157e61b01" + }, + "professor_name": "Edward Vessel", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d858cd60fca157e61b03" + }, + "professor_name": "James LePree", + "rating": null, + "department": "History department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d859cd60fca157e61b05" + }, + "professor_name": "Victor Plavitu", + "rating": null, + "department": "Design department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d859cd60fca157e61b07" + }, + "professor_name": "Michael Elster", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85acd60fca157e61b09" + }, + "professor_name": "Abdullah Haydar", + "rating": null, + "department": "Computer Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85acd60fca157e61b0b" + }, + "professor_name": "Sharon Youngblood", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85acd60fca157e61b0d" + }, + "professor_name": "Anuradha Herath", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85acd60fca157e61b0f" + }, + "professor_name": "Pamela Venegas", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85bcd60fca157e61b11" + }, + "professor_name": "Felix Esser", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85bcd60fca157e61b13" + }, + "professor_name": "Luis Nieto", + "rating": null, + "department": "Anthropology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85bcd60fca157e61b15" + }, + "professor_name": "Lyndon Nicholas", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85ccd60fca157e61b17" + }, + "professor_name": "Susan Rutter", + "rating": 2, + "department": "Mathematics department", + "comments": [ + { + "text": "she just can't teach.", + "pos": 0.0, + "neu": 1.0, + "neg": 0.0, + "_id": { + "$oid": "6711d85ccd60fca157e61b18" + } + }, + { + "text": "Professor Susan's lectures might be hard to understand for some but this is calculus 2 and like any other course, you will have to self teach at times. But she's very nice and helpful and will even give test corrections. She scales her tests too. Great professor if you want to really learn the theory behind everything you're doing.", + "pos": 0.255, + "neu": 0.728, + "neg": 0.016, + "_id": { + "$oid": "6711d85ccd60fca157e61b19" + } + }, + { + "text": "no comment", + "pos": 0.0, + "neu": 0.312, + "neg": 0.688, + "_id": { + "$oid": "6711d85ccd60fca157e61b1a" + } + } + ], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85ccd60fca157e61b1c" + }, + "professor_name": "Katherine Ramirez", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85ccd60fca157e61b1e" + }, + "professor_name": "Carlos Torres", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85dcd60fca157e61b20" + }, + "professor_name": "John Lin", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85dcd60fca157e61b22" + }, + "professor_name": "Mark Olsen", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85dcd60fca157e61b24" + }, + "professor_name": "Nathan Catlin", + "rating": null, + "department": "Fine Arts department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85ecd60fca157e61b26" + }, + "professor_name": "Dahye Lee", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85ecd60fca157e61b28" + }, + "professor_name": "Sudheesh Srivastava", + "rating": null, + "department": "Physics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85ecd60fca157e61b2a" + }, + "professor_name": "Kayla Mascall", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85ecd60fca157e61b2c" + }, + "professor_name": "Elizabeth Simonen", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85fcd60fca157e61b2e" + }, + "professor_name": "Stefano Morello", + "rating": null, + "department": "English department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85fcd60fca157e61b30" + }, + "professor_name": "June Kasi", + "rating": null, + "department": "Political Science department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d85fcd60fca157e61b32" + }, + "professor_name": "Brett Radke", + "rating": null, + "department": "Theater department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d860cd60fca157e61b34" + }, + "professor_name": "Abdul-Qasir Islam", + "rating": null, + "department": "African-American Studies department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d860cd60fca157e61b36" + }, + "professor_name": "Melissa Lora", + "rating": null, + "department": "Spanish department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d860cd60fca157e61b38" + }, + "professor_name": "Jeanne Salvatore", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d861cd60fca157e61b3a" + }, + "professor_name": "Sameeullah Sher", + "rating": null, + "department": "Administration department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d861cd60fca157e61b3c" + }, + "professor_name": "Haralabos Stafylakis", + "rating": null, + "department": "Music department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d861cd60fca157e61b3e" + }, + "professor_name": "Elvine Etogho", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d862cd60fca157e61b40" + }, + "professor_name": "Garry Pierre-Pierre", + "rating": null, + "department": "Communication department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d862cd60fca157e61b42" + }, + "professor_name": "Luis Lopez", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d862cd60fca157e61b44" + }, + "professor_name": "Evan Scott", + "rating": null, + "department": "Mathematics department", + "comments": [], + "__v": 0 + }, + { + "_id": { + "$oid": "6711d862cd60fca157e61b46" + }, + "professor_name": "Jason Cabral", + "rating": null, + "department": "Psychology department", + "comments": [], + "__v": 0 + } +] diff --git a/src/lib/api/database/database.routes.ts b/src/lib/api/database/database.routes.ts new file mode 100644 index 0000000..9690820 --- /dev/null +++ b/src/lib/api/database/database.routes.ts @@ -0,0 +1,31 @@ +import scraped_comments from 'scraped_comments.json'; +import { sendRMPSummarySentiment, sendRMPDataToDataBase } from './database.services'; +import { Router } from 'express'; + +// set the router +// TODO : define routes for making get request to send to client side as well +// HINT : look into findMany method within prisma +const databaseRouter = Router(); +databaseRouter.post('/sendRMPData', async (req, res, next) => { + try { + await sendRMPDataToDataBase(scraped_comments); + res.status(200).send('Data Sent Successfully!'); + } catch (err) { + console.error(err); + res.status(500).send('Internal Server Error!'); + next(err); + } +}); + +databaseRouter.post('/sendRMPSummary', async (req, res, next) => { + try { + await sendRMPSummarySentiment(scraped_comments); + } catch (err) { + console.error(err); + res.status(500).send('Internal Server Error'); + next(err); + } +}); + +// export out the router containing the post routes we have just defined +export default databaseRouter; diff --git a/src/lib/api/database/database.services.ts b/src/lib/api/database/database.services.ts new file mode 100644 index 0000000..fe11bb1 --- /dev/null +++ b/src/lib/api/database/database.services.ts @@ -0,0 +1,141 @@ +import { db } from '@/lib/utils/db'; +/** + * TODO : Implement this + * Purpose of this file is to take the information from Nur's File + * Store it within the database + * Alongside the information regarding the comments + * Simplifying existing logic + */ + +// import the data we will be parsing +import * as rmp from 'ratemyprofessor-api'; +import { Prisma } from '@prisma/client'; + +// NOTE : returns 3359 rows worth of data +// Meaning this function is working as intended +export const sendRMPDataToDataBase = async (jsonObject: any) => { + const school = await rmp.searchSchool('City College of New York'); + // initialize school id to be 0 + let schoolId = ''; + if (school !== undefined) { + schoolId = school[0].node.id.toString(); + } + jsonObject.forEach(async (individual_data) => { + // NOTE : data should reset here + //console.log(`Current sentime data is : ${sentiments}`); + // individual_data.comments.forEach((comment) => { + // store_comments.push(comment.text); + // // push the data as an array + // // divided based on their index for the positive, neutral and negative analysis value/percentage + // const sentimentData = [ + // { + // positiveSentiment: comment.pos, + // neutralSentiment: comment.neu, + // negativeSentiment: comment.neg, + // }, + // ] as Prisma.JsonArray; + // // test to see if this throws any kind of error + // sentiments.push(sentimentData); + // }); + + // retrieve data about the professor based on the information collected + // get the data about the current professor + const getProfessorRating = await rmp.getProfessorRatingAtSchoolId( + individual_data.professor_name, + schoolId + ); + + // console.log(`Current Sentiment Data is : ${sentiments}`); + + // now we push the data onto the database + // use ternary operator to determine where to extract data from + const currentData = await db.rateMyProfessorData.create({ + data: { + department: individual_data.department + ? individual_data.department + : getProfessorRating.department, + + professorName: individual_data.professor_name + ? individual_data.professor_name + : getProfessorRating.formattedName, + + avgDifficulty: getProfessorRating.avgDifficulty ? getProfessorRating.avgDifficulty : -1.0, + + // a value of -1.00 indicates no such data exists + avgRatings: getProfessorRating.avgRating ? getProfessorRating.avgRating : -1.0, + + wouldTakeAgain: getProfessorRating.wouldTakeAgainPercent + ? getProfessorRating.wouldTakeAgainPercent + '%' + : 'unknown', + + numRatings: getProfessorRating.numRatings ? getProfessorRating.numRatings : 0, + + // this has been trasferred over to the next table + // place the stored comments within the database + // comments: store_comments, + // sentimentData: sentiments, + }, + }); + console.log(`The current data is ${currentData}`); + }); +}; + +// // the data that's being passed in is the json object +export const sendRMPSummarySentiment = async (jsonData: any) => { + // this should first find the professor by their name + // and their department + // then store the corresponding comments + // and sentimenet analysis per professor + jsonData.forEach(async (individual_data: any) => { + // we want to make sure we reset them each time + const store_comments: string[] = []; + const sentiments: any[] = []; + const findId = await db.rateMyProfessorData.findFirst({ + where: { + professorName: individual_data.professor_name, + department: individual_data.department, + }, + }); + + // query should return an object + // printing out data successfully + // TODO : Remove later, intended for testing purpose + console.log(`Result of findId is : ${JSON.stringify(findId)}`); + // if id exist, we parse throguh the comments + // so that we can link it to the foregn id + individual_data.comments.forEach(async (comment) => { + store_comments.push(comment.text); + const sentimentData = [ + { + positiveSentiment: comment.pos, + neutralSentiment: comment.neu, + negativeSentiment: comment.neg, + }, + ] as Prisma.JsonArray; + // test to see if this throws any kind of error + sentiments.push(sentimentData); + // TODO : remove later, intended for testing purposes + console.log(`Current sentiment data : ${JSON.stringify(sentimentData)}`); + }); + + // create the data + // remove the one-to-one relation for now + if (findId) { + // NOTE : make sure to add await, otherwise, data object will be empty + const newData = await db.rateMyProfessorComments.create({ + data: { + // findId will always have a value + professor_name: individual_data.professor_name, + department: individual_data.department, + comments: store_comments, + sentimentData: sentiments, + // set id + foreign_linker_id: findId.id, + }, + }); + + // TODO : Remove later + console.log(`Created New Data Table : ${JSON.stringify(newData)}`); + } + }); +}; diff --git a/src/lib/api/server.ts b/src/lib/api/server.ts index 0f41083..caea4ee 100644 --- a/src/lib/api/server.ts +++ b/src/lib/api/server.ts @@ -1,11 +1,15 @@ +// import scraped_comments from 'scraped_comments.json'; // needs import authRouter from './auth/auth.routes'; import express from 'express'; import userRouter from './users/users.routes'; import onboardingRouter from './onboarding/onboarding.routes'; +import databaseRouter from './database/database.routes'; //import { createMap, gatherSummaryByDepartment } from '../utils/RMPScraper'; //import { gatherRMPSummary } from '../utils/RMPScraper'; -import { department_list, department_professor_object } from '../utils/data/constants'; -import { completeProfessorSummary, createMap } from '../utils/RMPScraper'; +// import { department_list, department_professor_object } from '../utils/data/constants'; +// import { sendRMPDataToDataBase, sendRMPSummarySentiment } from '../utils/RMPData'; + +// import fs from 'fs'; const app = express(); // ** needed to add express.json() @@ -13,21 +17,44 @@ app.use(express.json()); //@see https://medium.com/@pierrephilip/better-route-registration-with-express-js-740c0f342c10 const router = express.Router(); router.use(express.json()); -router.use('/auth', authRouter); + +// attach the routes to router +router.use('/auth', authRouter); // /auth/ --> example usage router.use('/users', userRouter); router.use('/onboarding', onboardingRouter); +router.use('/data', databaseRouter); //http://localhost:4001/auth/register --> example API call + +// attach the router to app app.use(router); +// TODO : Remove app.get('/test', (req, res) => { console.log('hello world'); res.send('Hello from A!').status(200); }); +// this is temporary, just to get a better understanding of what the stored data looks like +// eslint-disable-next-line @typescript-eslint/no-unused-vars +// const saveToJson = async () => { +// // TODO : call on the final function here +// //await gatherSummaryByDepartment(inputMap, 'american studies'); --> this function gets called in the scraper itself +// const inputMap = await createMap(department_list, department_professor_object); +// const result: string[][] = await completeProfessorSummary(inputMap); +// const test = sendToDatabase(result); +// console.log(`Current JSON Data : ${test}`); +// // test using the newly created function +// const result_json = JSON.stringify(result); +// fs.writeFile('results.json', result_json, (err) => { +// if (err) { +// console.error('Error writting to file : ', err); +// } else { +// console.log('successfull!'); +// } +// }); +// }; app.listen('4001', async () => { - // TODO : call on the final function here - //await gatherSummaryByDepartment(inputMap, 'american studies'); --> this function gets called in the scraper itself - const inputMap = await createMap(department_list, department_professor_object); - const result: string[][] = await completeProfessorSummary(inputMap); - console.log(`Result is ${JSON.stringify(result)}`); // tested and worked - console.log(`Listening to port 4001`); + //await sendSummaryAndCommentsToDatabase(); + // await searchDatabase('Micheal Grove', 'English'); + // await sendRMPDataToDataBase(scraped_comments); + // await sendRMPSummarySentiment(scraped_comments); }); diff --git a/src/lib/utils/RMPData.ts b/src/lib/utils/RMPData.ts new file mode 100644 index 0000000..9c2b8a2 --- /dev/null +++ b/src/lib/utils/RMPData.ts @@ -0,0 +1,141 @@ +// import { db } from './db'; +// /** +// * TODO : Implement this +// * Purpose of this file is to take the information from Nur's File +// * Store it within the database +// * Alongside the information regarding the comments +// * Simplifying existing logic +// */ + +// // import the data we will be parsing +// import * as rmp from 'ratemyprofessor-api'; +// import { Prisma } from '@prisma/client'; + +// // NOTE : returns 3359 rows worth of data +// // Meaning this function is working as intended +// export const sendRMPDataToDataBase = async (jsonObject: any) => { +// const school = await rmp.searchSchool('City College of New York'); +// // initialize school id to be 0 +// let schoolId = ''; +// if (school !== undefined) { +// schoolId = school[0].node.id.toString(); +// } +// jsonObject.forEach(async (individual_data) => { +// // NOTE : data should reset here +// //console.log(`Current sentime data is : ${sentiments}`); +// // individual_data.comments.forEach((comment) => { +// // store_comments.push(comment.text); +// // // push the data as an array +// // // divided based on their index for the positive, neutral and negative analysis value/percentage +// // const sentimentData = [ +// // { +// // positiveSentiment: comment.pos, +// // neutralSentiment: comment.neu, +// // negativeSentiment: comment.neg, +// // }, +// // ] as Prisma.JsonArray; +// // // test to see if this throws any kind of error +// // sentiments.push(sentimentData); +// // }); + +// // retrieve data about the professor based on the information collected +// // get the data about the current professor +// const getProfessorRating = await rmp.getProfessorRatingAtSchoolId( +// individual_data.professor_name, +// schoolId +// ); + +// // console.log(`Current Sentiment Data is : ${sentiments}`); + +// // now we push the data onto the database +// // use ternary operator to determine where to extract data from +// const currentData = await db.rateMyProfessorData.create({ +// data: { +// department: individual_data.department +// ? individual_data.department +// : getProfessorRating.department, + +// professorName: individual_data.professor_name +// ? individual_data.professor_name +// : getProfessorRating.formattedName, + +// avgDifficulty: getProfessorRating.avgDifficulty ? getProfessorRating.avgDifficulty : -1.0, + +// // a value of -1.00 indicates no such data exists +// avgRatings: getProfessorRating.avgRating ? getProfessorRating.avgRating : -1.0, + +// wouldTakeAgain: getProfessorRating.wouldTakeAgainPercent +// ? getProfessorRating.wouldTakeAgainPercent + '%' +// : 'unknown', + +// numRatings: getProfessorRating.numRatings ? getProfessorRating.numRatings : 0, + +// // this has been trasferred over to the next table +// // place the stored comments within the database +// // comments: store_comments, +// // sentimentData: sentiments, +// }, +// }); +// console.log(`The current data is ${currentData}`); +// }); +// }; + +// // // the data that's being passed in is the json object +// export const sendRMPSummarySentiment = async (jsonData: any) => { +// // this should first find the professor by their name +// // and their department +// // then store the corresponding comments +// // and sentimenet analysis per professor +// jsonData.forEach(async (individual_data: any) => { +// // we want to make sure we reset them each time +// const store_comments: string[] = []; +// const sentiments: any[] = []; +// const findId = await db.rateMyProfessorData.findFirst({ +// where: { +// professorName: individual_data.professor_name, +// department: individual_data.department, +// }, +// }); + +// // query should return an object +// // printing out data successfully +// // TODO : Remove later, intended for testing purpose +// console.log(`Result of findId is : ${JSON.stringify(findId)}`); +// // if id exist, we parse throguh the comments +// // so that we can link it to the foregn id +// individual_data.comments.forEach(async (comment) => { +// store_comments.push(comment.text); +// const sentimentData = [ +// { +// positiveSentiment: comment.pos, +// neutralSentiment: comment.neu, +// negativeSentiment: comment.neg, +// }, +// ] as Prisma.JsonArray; +// // test to see if this throws any kind of error +// sentiments.push(sentimentData); +// // TODO : remove later, intended for testing purposes +// console.log(`Current sentiment data : ${JSON.stringify(sentimentData)}`); +// }); + +// // create the data +// // remove the one-to-one relation for now +// if (findId) { +// // NOTE : make sure to add await, otherwise, data object will be empty +// const newData = await db.rateMyProfessorComments.create({ +// data: { +// // findId will always have a value +// professor_name: individual_data.professor_name, +// department: individual_data.department, +// comments: store_comments, +// sentimentData: sentiments, +// // set id +// foreign_linker_id: findId.id, +// }, +// }); + +// // TODO : Remove later +// console.log(`Created New Data Table : ${JSON.stringify(newData)}`); +// } +// }); +// }; diff --git a/src/lib/utils/RMPScraper.ts b/src/lib/utils/RMPScraper.ts index 30e8cc8..8b0bc07 100644 --- a/src/lib/utils/RMPScraper.ts +++ b/src/lib/utils/RMPScraper.ts @@ -4,49 +4,38 @@ // TODO : Integreate nur's machine learning scraped data later as something to be more scalable. import * as rmp from 'ratemyprofessor-api'; -import { department_professor_object_type } from './data/constants'; +import { department_professor_object_type } from './data/constants'; // interface for professor object import { db } from './db'; -// Given the scope of this project, the ideal thing would be to simply use the text file nur has and store the values via a hashmap +import comments from 'comments.json'; // we then parse the hashmap and then store the data as a cache - // This is intended to provide a summary for the data from rate my professor. // we want to be able to dynamically retrieve the data for the professor - // in terms of flow, we will retrieve the name of the professor from the previous mode, and then plug in that information into this function, and execute it for each of the flatlist values we need +// randomize data for list of professors export const arrayShuffler = (inputArray: string[]) => { for (let iterator = inputArray.length - 1; iterator > 0; iterator--) { - // determine a random index to serve as the shuffler const secondIterator = Math.floor(Math.random() * (iterator + 1)); - // perform a simple in-place swap [inputArray[iterator], inputArray[secondIterator]] = [ inputArray[secondIterator], inputArray[iterator], ]; - // TODO : Remove later - console.log(`Shuffled Array : ${inputArray}`); return inputArray; } }; export const createMap = (inputArray: string[], inputObject: department_professor_object_type) => { - // TODO : Modify based on what's listed on RMP // list of professors per division - // NOTE : Names of professors are case sensetive // we will use this within the teacher's list itself - // we will have this as in inner function for now // INTENT : randomize the ordering of the department through which we search and render // unfortunately, for now, the hashmap will need to be re-constructed every time the re-rendering occurs // NOTE : the shuffling logic should take place when the map is created, so that the keys within the map matches - // eslint-disable-next-line @typescript-eslint/no-unused-vars - const shuffledArray: string[] | undefined = arrayShuffler(inputArray); - // NOTE : the reason this is hardcoded right now is because we have no method of actually collecting data on them + const shuffledArray: string[] | undefined = arrayShuffler(inputArray); // once the setup for collecting data on particular professors is setup, we won't need this, however, the hashamp will still be helpful // these datas should be globally accessible as well - // TODO : make these data globally accessible and migrate them somehwere else // this is how we dynamically set interface types in typeScript //@see https://stackoverflow.com/questions/55831886/typescript-an-index-signature-parameter-must-be-a-string-or-number-when-try @@ -58,7 +47,6 @@ export const createMap = (inputArray: string[], inputObject: department_professo department_professor_map.set( // ensure that all the keys are set to lower case // this will reduce the issue regarding case sensetive issues arising - // TODO : see how to remove trailing commas and whitespaces if possible as well --> we can achieve this using another functon as well shuffledArray[i].toLowerCase(), inputObject[inputArray[i]] ); @@ -68,8 +56,8 @@ export const createMap = (inputArray: string[], inputObject: department_professo return department_professor_map; }; -// TODO : Later on, if this project is expanded for other collges, we can simply have a parameter that will be updated based on the form input export const getSpecificProfessorData = async (professorName: string) => { + // school name will remain unchnaged const school = await rmp.searchSchool('City College of New York'); if (school !== undefined) { @@ -80,6 +68,7 @@ export const getSpecificProfessorData = async (professorName: string) => { } }; +// not very useful of a function export const getSchoolId = async (nameOfSchool: string) => { const school = await rmp.searchSchool(nameOfSchool); if (school) { @@ -87,6 +76,8 @@ export const getSchoolId = async (nameOfSchool: string) => { } return 'undefined'; }; + +// not very useful of a function export const searchByProfessor = async (professorName: string, nameOfSchool: string) => { const searchResults = await rmp.searchProfessorsAtSchoolId( professorName, @@ -109,7 +100,9 @@ export const gatherSummaryByDepartment = async ( inputMap: Map, department: string ) => { + // variable where data is being stored in array format const departmentResult: any = []; + // search to check if department exist const doesKeyExist: boolean = inputMap.has(department); if (doesKeyExist) { const teacherListByDepartment = inputMap.get(department); @@ -164,13 +157,90 @@ export const sendToDatabase = async (data: string[][]) => { // @see https://www.prisma.io/docs/orm/prisma-client/setup-and-configuration/introduction#3-importing-prisma-client // NOTE : we are working with list of objects in this case - for (let iterator = 0; iterator < data.length; iterator++) { - /* - const newProfessorSummary = await db.RateMyProfessorDataSummary.create({ - - }) */ + // first array contains the array containing professors regarding a particular department + + // list of keys are --> avgRating,avgDifficulty,wouldTakeAgainPercent,numRatings,formattedName,department,link + + for (const row of data) { + // item in this case is the json object + for (const item of row) { + const currentItem: any = item; + const professors_data = await db.rateMyProfessorDataSummary.create({ + data: { + professorName: currentItem.formattedName, + avgRatings: parseFloat(currentItem.avgRating), + avgDifficulty: parseFloat(currentItem.avgDifficulty), + numRatings: parseInt(currentItem.numRatings), + wouldTakeAgain: currentItem.wouldTakeAgainPercent + '%', + department: currentItem.department, + }, + }); + } } }; + +// find unique doesn't work because +export const searchDatabase = async (professorName: string, departmentName: string) => { + // search database by name of professor + // as a test run + // this test run works + const result = await db.rateMyProfessorDataSummary.findFirst({ + where: { + professorName: professorName, + department: departmentName, + }, + }); + + console.log(result?.id); + return result?.id; +}; + +export const sendSummaryAndCommentsToDatabase = async () => { + // this will directly load the json file + // parse the json file + // retrieve the name + // comments + // rating + // department + // the linking value + // comments represents an array of Json Object + // we can ignore this error since it's working at the moment + // at printing out the id + + // define an inner function to store the comments per professor in the form of an array + // the remaining information will be stored as an outer loop + // comments is in the form of array of strings + comments.forEach(async (comment) => { + // reset the data record here + const store_comments: string[] = []; + comment.comments.forEach((individual_comment) => { + //console.log(`Individual comments : ${JSON.stringify(individual_comment.text)}`); + store_comments.push(individual_comment.text); + }); + + // TODO : create the data record here + // this should work once all the data has been pushed to database + const foreignKeyData = searchDatabase(comment.professor_name, comment.department); + console.log(`Foregin key data id : ${foreignKeyData}`); + const + const professor_comments_data = await db.rateMyProfessorCompleteData.create({ + data: { + professor_name: comment.professor_name, + rating: parseFloat(comment.rating), + department: comment.department, + comments: store_comments, + foreign_linker_id: foreignKeyData?.id, + }, + }); + }); + console.log(`Data Saved Successfully!`); +}; + +// // console.log(`stored comments are : ${store_comments[26295]}`); +// // console.log('End of function execution'); +// }; + +// define a function to map the RMPSummary id with the /** * Logic that I am trying to implement here is the following: * step 1 : Hardcode the list of departments --> partially complete diff --git a/src/lib/utils/data/constants.ts b/src/lib/utils/data/constants.ts index 1511633..3fa1d1f 100644 --- a/src/lib/utils/data/constants.ts +++ b/src/lib/utils/data/constants.ts @@ -204,7 +204,38 @@ const department_professor_object: department_professor_object_type = { 'Alan Cation', 'Ruo Jia', ], - //Art: [''], + Art: [ + 'Manal Abu-Shaheen', + 'Amy Adams', + 'Mark Addison Smith', + 'Becca Albee', + 'Krisia Ayala Ortiz', + 'Erica Bailey', + 'Meyken Barreto', + 'Patterson Beckwith', + 'Phillip Birch', + 'Reade Bryan', + 'Bernardo Campoy', + 'Nathan Catlin', + 'Micheal Caudo', + 'Colin Chase', + 'Royal Chen', + 'Peggy Chiang', + 'Paulina Choh', + 'So-Yoon Choi', + 'Sooran Choi', + 'Tyler Coburn', + 'Joshua I. Cohen', + 'Jayne Cole', + 'Pauline Decarmo', + 'Rose Deler', + 'Marit Dewhurst', + 'Robert Diamond', + 'Roberta Dorsett', + 'Molly E. Emma Aitken', + 'Eileen Emond', + 'Alessandro Facente', + ], //'Art History': [''], //'Asian Studies': [''], // Astronomy: [''], diff --git a/tsconfig.json b/tsconfig.json index a7c3c90..2dc7e0f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,6 +11,7 @@ "compilerOptions": { "module": "NodeNext", "moduleResolution": "NodeNext", + "resolveJsonModule": true, "strict": true, "baseUrl": "./", "jsx": "react-jsx", diff --git a/yarn.lock b/yarn.lock index 9a1af04..4200e82 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5285,6 +5285,15 @@ fresh@0.5.2: resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== +fs-extra@^11.2.0: + version "11.2.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" @@ -5294,7 +5303,17 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0, fs-extra@^9.1.0: +fs-extra@^9.0.0: + version "9.1.0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==